Remove dwarf2_per_cu_data::objfile ()
[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
5bfd760d 108static const struct objfile_key<dwarf2_per_objfile> dwarf2_objfile_data_key;
6502dd73 109
f1e6e072
TT
110/* The "aclass" indices for various kinds of computed DWARF symbols. */
111
112static int dwarf2_locexpr_index;
113static int dwarf2_loclist_index;
114static int dwarf2_locexpr_block_index;
115static int dwarf2_loclist_block_index;
116
41144253 117/* Size of .debug_loclists section header for 32-bit DWARF format. */
118#define LOCLIST_HEADER_SIZE32 12
119
120/* Size of .debug_loclists section header for 64-bit DWARF format. */
121#define LOCLIST_HEADER_SIZE64 20
122
3f563c84
PA
123/* An index into a (C++) symbol name component in a symbol name as
124 recorded in the mapped_index's symbol table. For each C++ symbol
125 in the symbol table, we record one entry for the start of each
126 component in the symbol in a table of name components, and then
127 sort the table, in order to be able to binary search symbol names,
128 ignoring leading namespaces, both completion and regular look up.
129 For example, for symbol "A::B::C", we'll have an entry that points
130 to "A::B::C", another that points to "B::C", and another for "C".
131 Note that function symbols in GDB index have no parameter
132 information, just the function/method names. You can convert a
133 name_component to a "const char *" using the
134 'mapped_index::symbol_name_at(offset_type)' method. */
135
136struct name_component
137{
138 /* Offset in the symbol name where the component starts. Stored as
139 a (32-bit) offset instead of a pointer to save memory and improve
140 locality on 64-bit architectures. */
141 offset_type name_offset;
142
143 /* The symbol's index in the symbol and constant pool tables of a
144 mapped_index. */
145 offset_type idx;
146};
147
44ed8f3e
PA
148/* Base class containing bits shared by both .gdb_index and
149 .debug_name indexes. */
150
151struct mapped_index_base
152{
22ca247e
TT
153 mapped_index_base () = default;
154 DISABLE_COPY_AND_ASSIGN (mapped_index_base);
155
44ed8f3e
PA
156 /* The name_component table (a sorted vector). See name_component's
157 description above. */
158 std::vector<name_component> name_components;
159
160 /* How NAME_COMPONENTS is sorted. */
161 enum case_sensitivity name_components_casing;
162
163 /* Return the number of names in the symbol table. */
164 virtual size_t symbol_name_count () const = 0;
165
166 /* Get the name of the symbol at IDX in the symbol table. */
167 virtual const char *symbol_name_at (offset_type idx) const = 0;
168
169 /* Return whether the name at IDX in the symbol table should be
170 ignored. */
171 virtual bool symbol_name_slot_invalid (offset_type idx) const
172 {
173 return false;
174 }
175
176 /* Build the symbol name component sorted vector, if we haven't
177 yet. */
178 void build_name_components ();
179
180 /* Returns the lower (inclusive) and upper (exclusive) bounds of the
181 possible matches for LN_NO_PARAMS in the name component
182 vector. */
183 std::pair<std::vector<name_component>::const_iterator,
184 std::vector<name_component>::const_iterator>
3b00ef10
TT
185 find_name_components_bounds (const lookup_name_info &ln_no_params,
186 enum language lang) const;
44ed8f3e
PA
187
188 /* Prevent deleting/destroying via a base class pointer. */
189protected:
190 ~mapped_index_base() = default;
191};
192
9291a0cd
TT
193/* A description of the mapped index. The file format is described in
194 a comment by the code that writes the index. */
fc898b42 195struct mapped_index final : public mapped_index_base
9291a0cd 196{
f00a2de2
PA
197 /* A slot/bucket in the symbol table hash. */
198 struct symbol_table_slot
199 {
200 const offset_type name;
201 const offset_type vec;
202 };
203
559a7a62 204 /* Index data format version. */
3063847f 205 int version = 0;
559a7a62 206
f00a2de2
PA
207 /* The address table data. */
208 gdb::array_view<const gdb_byte> address_table;
b11b1f88 209
3876f04e 210 /* The symbol table, implemented as a hash table. */
f00a2de2 211 gdb::array_view<symbol_table_slot> symbol_table;
b11b1f88 212
9291a0cd 213 /* A pointer to the constant pool. */
3063847f 214 const char *constant_pool = nullptr;
3f563c84 215
44ed8f3e
PA
216 bool symbol_name_slot_invalid (offset_type idx) const override
217 {
218 const auto &bucket = this->symbol_table[idx];
9ab08412 219 return bucket.name == 0 && bucket.vec == 0;
44ed8f3e 220 }
5c58de74 221
3f563c84
PA
222 /* Convenience method to get at the name of the symbol at IDX in the
223 symbol table. */
44ed8f3e 224 const char *symbol_name_at (offset_type idx) const override
f00a2de2 225 { return this->constant_pool + MAYBE_SWAP (this->symbol_table[idx].name); }
5c58de74 226
44ed8f3e
PA
227 size_t symbol_name_count () const override
228 { return this->symbol_table.size (); }
9291a0cd
TT
229};
230
927aa2e7
JK
231/* A description of the mapped .debug_names.
232 Uninitialized map has CU_COUNT 0. */
fc898b42 233struct mapped_debug_names final : public mapped_index_base
927aa2e7 234{
ed2dc618
SM
235 mapped_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile_)
236 : dwarf2_per_objfile (dwarf2_per_objfile_)
237 {}
238
239 struct dwarf2_per_objfile *dwarf2_per_objfile;
927aa2e7
JK
240 bfd_endian dwarf5_byte_order;
241 bool dwarf5_is_dwarf64;
242 bool augmentation_is_gdb;
243 uint8_t offset_size;
244 uint32_t cu_count = 0;
245 uint32_t tu_count, bucket_count, name_count;
246 const gdb_byte *cu_table_reordered, *tu_table_reordered;
247 const uint32_t *bucket_table_reordered, *hash_table_reordered;
248 const gdb_byte *name_table_string_offs_reordered;
249 const gdb_byte *name_table_entry_offs_reordered;
250 const gdb_byte *entry_pool;
251
252 struct index_val
253 {
254 ULONGEST dwarf_tag;
255 struct attr
256 {
257 /* Attribute name DW_IDX_*. */
258 ULONGEST dw_idx;
259
260 /* Attribute form DW_FORM_*. */
261 ULONGEST form;
262
263 /* Value if FORM is DW_FORM_implicit_const. */
264 LONGEST implicit_const;
265 };
266 std::vector<attr> attr_vec;
267 };
268
269 std::unordered_map<ULONGEST, index_val> abbrev_map;
270
271 const char *namei_to_name (uint32_t namei) const;
44ed8f3e
PA
272
273 /* Implementation of the mapped_index_base virtual interface, for
274 the name_components cache. */
275
276 const char *symbol_name_at (offset_type idx) const override
277 { return namei_to_name (idx); }
278
279 size_t symbol_name_count () const override
280 { return this->name_count; }
927aa2e7
JK
281};
282
cd4fb1b2 283/* See dwarf2read.h. */
ed2dc618 284
cd4fb1b2 285dwarf2_per_objfile *
ed2dc618
SM
286get_dwarf2_per_objfile (struct objfile *objfile)
287{
5bfd760d 288 return dwarf2_objfile_data_key.get (objfile);
ed2dc618 289}
c906108c 290
251d32d9 291/* Default names of the debugging sections. */
c906108c 292
233a11ab
CS
293/* Note that if the debugging section has been compressed, it might
294 have a name like .zdebug_info. */
295
9cdd5dbd
DE
296static const struct dwarf2_debug_sections dwarf2_elf_names =
297{
251d32d9
TG
298 { ".debug_info", ".zdebug_info" },
299 { ".debug_abbrev", ".zdebug_abbrev" },
300 { ".debug_line", ".zdebug_line" },
301 { ".debug_loc", ".zdebug_loc" },
43988095 302 { ".debug_loclists", ".zdebug_loclists" },
251d32d9 303 { ".debug_macinfo", ".zdebug_macinfo" },
cf2c3c16 304 { ".debug_macro", ".zdebug_macro" },
251d32d9 305 { ".debug_str", ".zdebug_str" },
18a8505e 306 { ".debug_str_offsets", ".zdebug_str_offsets" },
43988095 307 { ".debug_line_str", ".zdebug_line_str" },
251d32d9 308 { ".debug_ranges", ".zdebug_ranges" },
43988095 309 { ".debug_rnglists", ".zdebug_rnglists" },
251d32d9 310 { ".debug_types", ".zdebug_types" },
3019eac3 311 { ".debug_addr", ".zdebug_addr" },
251d32d9
TG
312 { ".debug_frame", ".zdebug_frame" },
313 { ".eh_frame", NULL },
24d3216f 314 { ".gdb_index", ".zgdb_index" },
927aa2e7
JK
315 { ".debug_names", ".zdebug_names" },
316 { ".debug_aranges", ".zdebug_aranges" },
24d3216f 317 23
251d32d9 318};
c906108c 319
80626a55 320/* List of DWO/DWP sections. */
3019eac3 321
80626a55 322static const struct dwop_section_names
3019eac3
DE
323{
324 struct dwarf2_section_names abbrev_dwo;
325 struct dwarf2_section_names info_dwo;
326 struct dwarf2_section_names line_dwo;
327 struct dwarf2_section_names loc_dwo;
43988095 328 struct dwarf2_section_names loclists_dwo;
09262596
DE
329 struct dwarf2_section_names macinfo_dwo;
330 struct dwarf2_section_names macro_dwo;
3019eac3
DE
331 struct dwarf2_section_names str_dwo;
332 struct dwarf2_section_names str_offsets_dwo;
333 struct dwarf2_section_names types_dwo;
80626a55
DE
334 struct dwarf2_section_names cu_index;
335 struct dwarf2_section_names tu_index;
3019eac3 336}
80626a55 337dwop_section_names =
3019eac3
DE
338{
339 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
340 { ".debug_info.dwo", ".zdebug_info.dwo" },
341 { ".debug_line.dwo", ".zdebug_line.dwo" },
342 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
43988095 343 { ".debug_loclists.dwo", ".zdebug_loclists.dwo" },
09262596
DE
344 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
345 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
3019eac3
DE
346 { ".debug_str.dwo", ".zdebug_str.dwo" },
347 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
348 { ".debug_types.dwo", ".zdebug_types.dwo" },
80626a55
DE
349 { ".debug_cu_index", ".zdebug_cu_index" },
350 { ".debug_tu_index", ".zdebug_tu_index" },
3019eac3
DE
351};
352
c906108c
SS
353/* local data types */
354
41144253 355/* The location list section (.debug_loclists) begins with a header,
356 which contains the following information. */
357struct loclist_header
358{
359 /* A 4-byte or 12-byte length containing the length of the
360 set of entries for this compilation unit, not including the
361 length field itself. */
362 unsigned int length;
363
364 /* A 2-byte version identifier. */
365 short version;
366
367 /* A 1-byte unsigned integer containing the size in bytes of an address on
368 the target system. */
369 unsigned char addr_size;
370
371 /* A 1-byte unsigned integer containing the size in bytes of a segment selector
372 on the target system. */
373 unsigned char segment_collector_size;
374
375 /* A 4-byte count of the number of offsets that follow the header. */
376 unsigned int offset_entry_count;
377};
378
3da10d80
KS
379/* Type used for delaying computation of method physnames.
380 See comments for compute_delayed_physnames. */
381struct delayed_method_info
382{
383 /* The type to which the method is attached, i.e., its parent class. */
384 struct type *type;
385
386 /* The index of the method in the type's function fieldlists. */
387 int fnfield_index;
388
389 /* The index of the method in the fieldlist. */
390 int index;
391
392 /* The name of the DIE. */
393 const char *name;
394
395 /* The DIE associated with this method. */
396 struct die_info *die;
397};
398
e7c27a73
DJ
399/* Internal state when decoding a particular compilation unit. */
400struct dwarf2_cu
401{
9e021579
SM
402 explicit dwarf2_cu (dwarf2_per_cu_data *per_cu,
403 dwarf2_per_objfile *per_objfile);
fcd3b13d
SM
404 ~dwarf2_cu ();
405
406 DISABLE_COPY_AND_ASSIGN (dwarf2_cu);
407
c24bdb02
KS
408 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
409 Create the set of symtabs used by this TU, or if this TU is sharing
410 symtabs with another TU and the symtabs have already been created
411 then restore those symtabs in the line header.
412 We don't need the pc/line-number mapping for type units. */
413 void setup_type_unit_groups (struct die_info *die);
414
415 /* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
416 buildsym_compunit constructor. */
417 struct compunit_symtab *start_symtab (const char *name,
418 const char *comp_dir,
419 CORE_ADDR low_pc);
420
421 /* Reset the builder. */
422 void reset_builder () { m_builder.reset (); }
423
293e7e51
SM
424 /* Return a type that is a generic pointer type, the size of which
425 matches the address size given in the compilation unit header for
426 this CU. */
427 struct type *addr_type () const;
428
429 /* Find an integer type the same size as the address size given in
430 the compilation unit header for this CU. UNSIGNED_P controls if
431 the integer is unsigned or not. */
432 struct type *addr_sized_int_type (bool unsigned_p) const;
433
d00adf39 434 /* The header of the compilation unit. */
fcd3b13d 435 struct comp_unit_head header {};
e142c38c 436
d00adf39 437 /* Base address of this compilation unit. */
2b24b6e4 438 gdb::optional<CORE_ADDR> base_address;
d00adf39 439
e142c38c 440 /* The language we are debugging. */
fcd3b13d
SM
441 enum language language = language_unknown;
442 const struct language_defn *language_defn = nullptr;
e142c38c 443
fcd3b13d 444 const char *producer = nullptr;
b0f35d58 445
c24bdb02 446private:
804d2729
TT
447 /* The symtab builder for this CU. This is only non-NULL when full
448 symbols are being read. */
c24bdb02 449 std::unique_ptr<buildsym_compunit> m_builder;
804d2729 450
c24bdb02 451public:
e142c38c
DJ
452 /* The generic symbol table building routines have separate lists for
453 file scope symbols and all all other scopes (local scopes). So
454 we need to select the right one to pass to add_symbol_to_list().
455 We do it by keeping a pointer to the correct list in list_in_scope.
456
457 FIXME: The original dwarf code just treated the file scope as the
458 first local scope, and all other local scopes as nested local
459 scopes, and worked fine. Check to see if we really need to
460 distinguish these in buildsym.c. */
fcd3b13d 461 struct pending **list_in_scope = nullptr;
e142c38c 462
b64f50a1
JK
463 /* Hash table holding all the loaded partial DIEs
464 with partial_die->offset.SECT_OFF as hash. */
fcd3b13d 465 htab_t partial_dies = nullptr;
72bf9492
DJ
466
467 /* Storage for things with the same lifetime as this read-in compilation
468 unit, including partial DIEs. */
fcd3b13d 469 auto_obstack comp_unit_obstack;
72bf9492 470
ae038cb0
DJ
471 /* When multiple dwarf2_cu structures are living in memory, this field
472 chains them all together, so that they can be released efficiently.
473 We will probably also want a generation counter so that most-recently-used
474 compilation units are cached... */
fcd3b13d 475 struct dwarf2_per_cu_data *read_in_chain = nullptr;
ae038cb0 476
69d751e3 477 /* Backlink to our per_cu entry. */
ae038cb0
DJ
478 struct dwarf2_per_cu_data *per_cu;
479
9e021579
SM
480 /* The dwarf2_per_objfile that owns this. */
481 struct dwarf2_per_objfile *per_objfile;
482
ae038cb0 483 /* How many compilation units ago was this CU last referenced? */
fcd3b13d 484 int last_used = 0;
ae038cb0 485
b64f50a1
JK
486 /* A hash table of DIE cu_offset for following references with
487 die_info->offset.sect_off as hash. */
fcd3b13d 488 htab_t die_hash = nullptr;
10b3939b
DJ
489
490 /* Full DIEs if read in. */
fcd3b13d 491 struct die_info *dies = nullptr;
10b3939b
DJ
492
493 /* A set of pointers to dwarf2_per_cu_data objects for compilation
494 units referenced by this one. Only set during full symbol processing;
495 partial symbol tables do not have dependencies. */
fcd3b13d 496 htab_t dependencies = nullptr;
10b3939b 497
cb1df416 498 /* Header data from the line table, during full symbol processing. */
fcd3b13d 499 struct line_header *line_header = nullptr;
4c8aa72d 500 /* Non-NULL if LINE_HEADER is owned by this DWARF_CU. Otherwise,
5989a64e 501 it's owned by dwarf2_per_bfd::line_header_hash. If non-NULL,
4c8aa72d
PA
502 this is the DW_TAG_compile_unit die for this CU. We'll hold on
503 to the line header as long as this DIE is being processed. See
504 process_die_scope. */
fcd3b13d 505 die_info *line_header_die_owner = nullptr;
cb1df416 506
3da10d80
KS
507 /* A list of methods which need to have physnames computed
508 after all type information has been read. */
c89b44cd 509 std::vector<delayed_method_info> method_list;
3da10d80 510
96408a79 511 /* To be copied to symtab->call_site_htab. */
fcd3b13d 512 htab_t call_site_htab = nullptr;
96408a79 513
034e5797
DE
514 /* Non-NULL if this CU came from a DWO file.
515 There is an invariant here that is important to remember:
516 Except for attributes copied from the top level DIE in the "main"
517 (or "stub") file in preparation for reading the DWO file
18a8505e 518 (e.g., DW_AT_addr_base), we KISS: there is only *one* CU.
034e5797
DE
519 Either there isn't a DWO file (in which case this is NULL and the point
520 is moot), or there is and either we're not going to read it (in which
521 case this is NULL) or there is and we are reading it (in which case this
522 is non-NULL). */
fcd3b13d 523 struct dwo_unit *dwo_unit = nullptr;
3019eac3 524
18a8505e 525 /* The DW_AT_addr_base (DW_AT_GNU_addr_base) attribute if present.
1dbab08b 526 Note this value comes from the Fission stub CU/TU's DIE. */
18a8505e 527 gdb::optional<ULONGEST> addr_base;
3019eac3 528
18a8505e 529 /* The DW_AT_rnglists_base attribute if present.
1dbab08b 530 Note this value comes from the Fission stub CU/TU's DIE.
2e3cf129 531 Also note that the value is zero in the non-DWO case so this value can
ab435259
DE
532 be used without needing to know whether DWO files are in use or not.
533 N.B. This does not apply to DW_AT_ranges appearing in
534 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
535 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
18a8505e 536 DW_AT_rnglists_base *would* have to be applied, and we'd have to care
ab435259 537 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
fcd3b13d 538 ULONGEST ranges_base = 0;
2e3cf129 539
41144253 540 /* The DW_AT_loclists_base attribute if present. */
541 ULONGEST loclist_base = 0;
542
c9317f21
TT
543 /* When reading debug info generated by older versions of rustc, we
544 have to rewrite some union types to be struct types with a
545 variant part. This rewriting must be done after the CU is fully
546 read in, because otherwise at the point of rewriting some struct
547 type might not have been fully processed. So, we keep a list of
548 all such types here and process them after expansion. */
549 std::vector<struct type *> rust_unions;
550
18a8505e
AT
551 /* The DW_AT_str_offsets_base attribute if present. For DWARF 4 version DWO
552 files, the value is implicitly zero. For DWARF 5 version DWO files, the
553 value is often implicit and is the size of the header of
554 .debug_str_offsets section (8 or 4, depending on the address size). */
555 gdb::optional<ULONGEST> str_offsets_base;
556
ae038cb0 557 /* Mark used when releasing cached dies. */
9068261f 558 bool mark : 1;
ae038cb0 559
8be455d7
JK
560 /* This CU references .debug_loc. See the symtab->locations_valid field.
561 This test is imperfect as there may exist optimized debug code not using
562 any location list and still facing inlining issues if handled as
563 unoptimized code. For a future better test see GCC PR other/32998. */
9068261f 564 bool has_loclist : 1;
ba919b58 565
9068261f 566 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is true
1b80a9fa
JK
567 if all the producer_is_* fields are valid. This information is cached
568 because profiling CU expansion showed excessive time spent in
569 producer_is_gxx_lt_4_6. */
9068261f
AB
570 bool checked_producer : 1;
571 bool producer_is_gxx_lt_4_6 : 1;
572 bool producer_is_gcc_lt_4_3 : 1;
eb77c9df 573 bool producer_is_icc : 1;
9068261f 574 bool producer_is_icc_lt_14 : 1;
c258c396 575 bool producer_is_codewarrior : 1;
4d4ec4e5 576
9068261f 577 /* When true, the file that we're processing is known to have
4d4ec4e5
TT
578 debugging info for C++ namespaces. GCC 3.3.x did not produce
579 this information, but later versions do. */
580
9068261f 581 bool processing_has_namespace_info : 1;
d590ff25
YQ
582
583 struct partial_die_info *find_partial_die (sect_offset sect_off);
c24bdb02
KS
584
585 /* If this CU was inherited by another CU (via specification,
586 abstract_origin, etc), this is the ancestor CU. */
587 dwarf2_cu *ancestor;
588
589 /* Get the buildsym_compunit for this CU. */
590 buildsym_compunit *get_builder ()
591 {
592 /* If this CU has a builder associated with it, use that. */
593 if (m_builder != nullptr)
594 return m_builder.get ();
595
596 /* Otherwise, search ancestors for a valid builder. */
597 if (ancestor != nullptr)
598 return ancestor->get_builder ();
599
600 return nullptr;
601 }
e7c27a73
DJ
602};
603
094b34ac
DE
604/* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
605 This includes type_unit_group and quick_file_names. */
606
607struct stmt_list_hash
608{
609 /* The DWO unit this table is from or NULL if there is none. */
610 struct dwo_unit *dwo_unit;
611
612 /* Offset in .debug_line or .debug_line.dwo. */
9c541725 613 sect_offset line_sect_off;
094b34ac
DE
614};
615
5989a64e 616/* Each element of dwarf2_per_bfd->type_unit_groups is a pointer to
f4dc4d17
DE
617 an object of this type. */
618
619struct type_unit_group
620{
0186c6a7 621 /* dwarf2read.c's main "handle" on a TU symtab.
f4dc4d17
DE
622 To simplify things we create an artificial CU that "includes" all the
623 type units using this stmt_list so that the rest of the code still has
197400e8 624 a "per_cu" handle on the symtab. */
094b34ac
DE
625 struct dwarf2_per_cu_data per_cu;
626
0186c6a7
DE
627 /* The TUs that share this DW_AT_stmt_list entry.
628 This is added to while parsing type units to build partial symtabs,
629 and is deleted afterwards and not used again. */
a8b3b8e9 630 std::vector<signatured_type *> *tus;
f4dc4d17 631
43f3e411 632 /* The compunit symtab.
094b34ac 633 Type units in a group needn't all be defined in the same source file,
43f3e411
DE
634 so we create an essentially anonymous symtab as the compunit symtab. */
635 struct compunit_symtab *compunit_symtab;
f4dc4d17 636
094b34ac
DE
637 /* The data used to construct the hash key. */
638 struct stmt_list_hash hash;
f4dc4d17 639
f4dc4d17
DE
640 /* The symbol tables for this TU (obtained from the files listed in
641 DW_AT_stmt_list).
642 WARNING: The order of entries here must match the order of entries
643 in the line header. After the first TU using this type_unit_group, the
644 line header for the subsequent TUs is recreated from this. This is done
645 because we need to use the same symtabs for each TU using the same
646 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
647 there's no guarantee the line header doesn't have duplicate entries. */
648 struct symtab **symtabs;
649};
650
73869dc2 651/* These sections are what may appear in a (real or virtual) DWO file. */
3019eac3
DE
652
653struct dwo_sections
654{
655 struct dwarf2_section_info abbrev;
3019eac3
DE
656 struct dwarf2_section_info line;
657 struct dwarf2_section_info loc;
43988095 658 struct dwarf2_section_info loclists;
09262596
DE
659 struct dwarf2_section_info macinfo;
660 struct dwarf2_section_info macro;
3019eac3
DE
661 struct dwarf2_section_info str;
662 struct dwarf2_section_info str_offsets;
80626a55
DE
663 /* In the case of a virtual DWO file, these two are unused. */
664 struct dwarf2_section_info info;
fd5866f6 665 std::vector<dwarf2_section_info> types;
3019eac3
DE
666};
667
c88ee1f0 668/* CUs/TUs in DWP/DWO files. */
3019eac3
DE
669
670struct dwo_unit
671{
672 /* Backlink to the containing struct dwo_file. */
673 struct dwo_file *dwo_file;
674
675 /* The "id" that distinguishes this CU/TU.
676 .debug_info calls this "dwo_id", .debug_types calls this "signature".
677 Since signatures came first, we stick with it for consistency. */
678 ULONGEST signature;
679
680 /* The section this CU/TU lives in, in the DWO file. */
8a0459fd 681 struct dwarf2_section_info *section;
3019eac3 682
9c541725
PA
683 /* Same as dwarf2_per_cu_data:{sect_off,length} but in the DWO section. */
684 sect_offset sect_off;
3019eac3
DE
685 unsigned int length;
686
687 /* For types, offset in the type's DIE of the type defined by this TU. */
688 cu_offset type_offset_in_tu;
689};
690
73869dc2
DE
691/* include/dwarf2.h defines the DWP section codes.
692 It defines a max value but it doesn't define a min value, which we
693 use for error checking, so provide one. */
694
695enum dwp_v2_section_ids
696{
697 DW_SECT_MIN = 1
698};
699
80626a55 700/* Data for one DWO file.
57d63ce2
DE
701
702 This includes virtual DWO files (a virtual DWO file is a DWO file as it
703 appears in a DWP file). DWP files don't really have DWO files per se -
704 comdat folding of types "loses" the DWO file they came from, and from
705 a high level view DWP files appear to contain a mass of random types.
706 However, to maintain consistency with the non-DWP case we pretend DWP
707 files contain virtual DWO files, and we assign each TU with one virtual
708 DWO file (generally based on the line and abbrev section offsets -
709 a heuristic that seems to work in practice). */
3019eac3
DE
710
711struct dwo_file
712{
51ac9db5
SM
713 dwo_file () = default;
714 DISABLE_COPY_AND_ASSIGN (dwo_file);
715
18a8505e 716 /* The DW_AT_GNU_dwo_name or DW_AT_dwo_name attribute.
80626a55
DE
717 For virtual DWO files the name is constructed from the section offsets
718 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
719 from related CU+TUs. */
51ac9db5 720 const char *dwo_name = nullptr;
0ac5b59e
DE
721
722 /* The DW_AT_comp_dir attribute. */
51ac9db5 723 const char *comp_dir = nullptr;
3019eac3 724
80626a55
DE
725 /* The bfd, when the file is open. Otherwise this is NULL.
726 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
fb1eb2f9 727 gdb_bfd_ref_ptr dbfd;
3019eac3 728
73869dc2
DE
729 /* The sections that make up this DWO file.
730 Remember that for virtual DWO files in DWP V2, these are virtual
731 sections (for lack of a better name). */
51ac9db5 732 struct dwo_sections sections {};
3019eac3 733
33c5cd75
DB
734 /* The CUs in the file.
735 Each element is a struct dwo_unit. Multiple CUs per DWO are supported as
736 an extension to handle LLVM's Link Time Optimization output (where
737 multiple source files may be compiled into a single object/dwo pair). */
b0b6a987 738 htab_up cus;
3019eac3
DE
739
740 /* Table of TUs in the file.
741 Each element is a struct dwo_unit. */
b0b6a987 742 htab_up tus;
3019eac3
DE
743};
744
80626a55
DE
745/* These sections are what may appear in a DWP file. */
746
747struct dwp_sections
748{
73869dc2 749 /* These are used by both DWP version 1 and 2. */
80626a55
DE
750 struct dwarf2_section_info str;
751 struct dwarf2_section_info cu_index;
752 struct dwarf2_section_info tu_index;
73869dc2
DE
753
754 /* These are only used by DWP version 2 files.
755 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
756 sections are referenced by section number, and are not recorded here.
757 In DWP version 2 there is at most one copy of all these sections, each
758 section being (effectively) comprised of the concatenation of all of the
759 individual sections that exist in the version 1 format.
760 To keep the code simple we treat each of these concatenated pieces as a
761 section itself (a virtual section?). */
762 struct dwarf2_section_info abbrev;
763 struct dwarf2_section_info info;
764 struct dwarf2_section_info line;
765 struct dwarf2_section_info loc;
766 struct dwarf2_section_info macinfo;
767 struct dwarf2_section_info macro;
768 struct dwarf2_section_info str_offsets;
769 struct dwarf2_section_info types;
80626a55
DE
770};
771
73869dc2
DE
772/* These sections are what may appear in a virtual DWO file in DWP version 1.
773 A virtual DWO file is a DWO file as it appears in a DWP file. */
80626a55 774
73869dc2 775struct virtual_v1_dwo_sections
80626a55
DE
776{
777 struct dwarf2_section_info abbrev;
778 struct dwarf2_section_info line;
779 struct dwarf2_section_info loc;
780 struct dwarf2_section_info macinfo;
781 struct dwarf2_section_info macro;
782 struct dwarf2_section_info str_offsets;
783 /* Each DWP hash table entry records one CU or one TU.
8a0459fd 784 That is recorded here, and copied to dwo_unit.section. */
80626a55
DE
785 struct dwarf2_section_info info_or_types;
786};
787
73869dc2
DE
788/* Similar to virtual_v1_dwo_sections, but for DWP version 2.
789 In version 2, the sections of the DWO files are concatenated together
790 and stored in one section of that name. Thus each ELF section contains
791 several "virtual" sections. */
792
793struct virtual_v2_dwo_sections
794{
795 bfd_size_type abbrev_offset;
796 bfd_size_type abbrev_size;
797
798 bfd_size_type line_offset;
799 bfd_size_type line_size;
800
801 bfd_size_type loc_offset;
802 bfd_size_type loc_size;
803
804 bfd_size_type macinfo_offset;
805 bfd_size_type macinfo_size;
806
807 bfd_size_type macro_offset;
808 bfd_size_type macro_size;
809
810 bfd_size_type str_offsets_offset;
811 bfd_size_type str_offsets_size;
812
813 /* Each DWP hash table entry records one CU or one TU.
814 That is recorded here, and copied to dwo_unit.section. */
815 bfd_size_type info_or_types_offset;
816 bfd_size_type info_or_types_size;
817};
818
80626a55
DE
819/* Contents of DWP hash tables. */
820
821struct dwp_hash_table
822{
73869dc2 823 uint32_t version, nr_columns;
80626a55 824 uint32_t nr_units, nr_slots;
73869dc2
DE
825 const gdb_byte *hash_table, *unit_table;
826 union
827 {
828 struct
829 {
830 const gdb_byte *indices;
831 } v1;
832 struct
833 {
834 /* This is indexed by column number and gives the id of the section
835 in that column. */
836#define MAX_NR_V2_DWO_SECTIONS \
837 (1 /* .debug_info or .debug_types */ \
838 + 1 /* .debug_abbrev */ \
839 + 1 /* .debug_line */ \
840 + 1 /* .debug_loc */ \
841 + 1 /* .debug_str_offsets */ \
842 + 1 /* .debug_macro or .debug_macinfo */)
843 int section_ids[MAX_NR_V2_DWO_SECTIONS];
844 const gdb_byte *offsets;
845 const gdb_byte *sizes;
846 } v2;
847 } section_pool;
80626a55
DE
848};
849
850/* Data for one DWP file. */
851
852struct dwp_file
853{
400174b1
TT
854 dwp_file (const char *name_, gdb_bfd_ref_ptr &&abfd)
855 : name (name_),
856 dbfd (std::move (abfd))
857 {
858 }
859
80626a55
DE
860 /* Name of the file. */
861 const char *name;
862
73869dc2 863 /* File format version. */
400174b1 864 int version = 0;
73869dc2 865
93417882 866 /* The bfd. */
400174b1 867 gdb_bfd_ref_ptr dbfd;
80626a55
DE
868
869 /* Section info for this file. */
400174b1 870 struct dwp_sections sections {};
80626a55 871
57d63ce2 872 /* Table of CUs in the file. */
400174b1 873 const struct dwp_hash_table *cus = nullptr;
80626a55
DE
874
875 /* Table of TUs in the file. */
400174b1 876 const struct dwp_hash_table *tus = nullptr;
80626a55 877
19ac8c2e 878 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
48b490f2
TT
879 htab_up loaded_cus;
880 htab_up loaded_tus;
80626a55 881
73869dc2
DE
882 /* Table to map ELF section numbers to their sections.
883 This is only needed for the DWP V1 file format. */
400174b1
TT
884 unsigned int num_sections = 0;
885 asection **elf_sections = nullptr;
80626a55
DE
886};
887
0963b4bd
MS
888/* Struct used to pass misc. parameters to read_die_and_children, et
889 al. which are used for both .debug_info and .debug_types dies.
890 All parameters here are unchanging for the life of the call. This
dee91e82 891 struct exists to abstract away the constant parameters of die reading. */
93311388
DE
892
893struct die_reader_specs
894{
a32a8923 895 /* The bfd of die_section. */
93311388
DE
896 bfd* abfd;
897
898 /* The CU of the DIE we are parsing. */
899 struct dwarf2_cu *cu;
900
80626a55 901 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
3019eac3
DE
902 struct dwo_file *dwo_file;
903
dee91e82 904 /* The section the die comes from.
3019eac3 905 This is either .debug_info or .debug_types, or the .dwo variants. */
dee91e82
DE
906 struct dwarf2_section_info *die_section;
907
908 /* die_section->buffer. */
d521ce57 909 const gdb_byte *buffer;
f664829e
DE
910
911 /* The end of the buffer. */
912 const gdb_byte *buffer_end;
a2ce51a0 913
685af9cd
TT
914 /* The abbreviation table to use when reading the DIEs. */
915 struct abbrev_table *abbrev_table;
93311388
DE
916};
917
c0ab21c2
TT
918/* A subclass of die_reader_specs that holds storage and has complex
919 constructor and destructor behavior. */
920
921class cutu_reader : public die_reader_specs
922{
923public:
924
ab432490
SM
925 cutu_reader (dwarf2_per_cu_data *this_cu,
926 dwarf2_per_objfile *per_objfile,
c0ab21c2 927 struct abbrev_table *abbrev_table,
6751ebae 928 int use_existing_cu,
c0ab21c2
TT
929 bool skip_partial);
930
931 explicit cutu_reader (struct dwarf2_per_cu_data *this_cu,
ab432490 932 dwarf2_per_objfile *per_objfile,
c0ab21c2
TT
933 struct dwarf2_cu *parent_cu = nullptr,
934 struct dwo_file *dwo_file = nullptr);
935
c0ab21c2
TT
936 DISABLE_COPY_AND_ASSIGN (cutu_reader);
937
938 const gdb_byte *info_ptr = nullptr;
939 struct die_info *comp_unit_die = nullptr;
c0ab21c2
TT
940 bool dummy_p = false;
941
6751ebae
TT
942 /* Release the new CU, putting it on the chain. This cannot be done
943 for dummy CUs. */
944 void keep ();
945
c0ab21c2 946private:
9e021579
SM
947 void init_tu_and_read_dwo_dies (dwarf2_per_cu_data *this_cu,
948 dwarf2_per_objfile *per_objfile,
6751ebae 949 int use_existing_cu);
c0ab21c2
TT
950
951 struct dwarf2_per_cu_data *m_this_cu;
c0ab21c2
TT
952 std::unique_ptr<dwarf2_cu> m_new_cu;
953
954 /* The ordinary abbreviation table. */
955 abbrev_table_up m_abbrev_table_holder;
956
957 /* The DWO abbreviation table. */
958 abbrev_table_up m_dwo_abbrev_table;
959};
dee91e82 960
c906108c 961/* When we construct a partial symbol table entry we only
0963b4bd 962 need this much information. */
6f06d47b 963struct partial_die_info : public allocate_on_obstack
c906108c 964 {
6f06d47b
YQ
965 partial_die_info (sect_offset sect_off, struct abbrev_info *abbrev);
966
967 /* Disable assign but still keep copy ctor, which is needed
968 load_partial_dies. */
969 partial_die_info& operator=(const partial_die_info& rhs) = delete;
970
52356b79
YQ
971 /* Adjust the partial die before generating a symbol for it. This
972 function may set the is_external flag or change the DIE's
973 name. */
974 void fixup (struct dwarf2_cu *cu);
975
48fbe735
YQ
976 /* Read a minimal amount of information into the minimal die
977 structure. */
978 const gdb_byte *read (const struct die_reader_specs *reader,
979 const struct abbrev_info &abbrev,
980 const gdb_byte *info_ptr);
981
72bf9492 982 /* Offset of this DIE. */
6f06d47b 983 const sect_offset sect_off;
72bf9492
DJ
984
985 /* DWARF-2 tag for this DIE. */
6f06d47b 986 const ENUM_BITFIELD(dwarf_tag) tag : 16;
72bf9492 987
72bf9492 988 /* Assorted flags describing the data found in this DIE. */
6f06d47b
YQ
989 const unsigned int has_children : 1;
990
72bf9492
DJ
991 unsigned int is_external : 1;
992 unsigned int is_declaration : 1;
993 unsigned int has_type : 1;
994 unsigned int has_specification : 1;
995 unsigned int has_pc_info : 1;
481860b3 996 unsigned int may_be_inlined : 1;
72bf9492 997
0c1b455e
TT
998 /* This DIE has been marked DW_AT_main_subprogram. */
999 unsigned int main_subprogram : 1;
1000
72bf9492
DJ
1001 /* Flag set if the SCOPE field of this structure has been
1002 computed. */
1003 unsigned int scope_set : 1;
1004
fa4028e9
JB
1005 /* Flag set if the DIE has a byte_size attribute. */
1006 unsigned int has_byte_size : 1;
1007
ff908ebf
AW
1008 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1009 unsigned int has_const_value : 1;
1010
98bfdba5
PA
1011 /* Flag set if any of the DIE's children are template arguments. */
1012 unsigned int has_template_arguments : 1;
1013
52356b79 1014 /* Flag set if fixup has been called on this die. */
abc72ce4
DE
1015 unsigned int fixup_called : 1;
1016
36586728
TT
1017 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1018 unsigned int is_dwz : 1;
1019
1020 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1021 unsigned int spec_is_dwz : 1;
1022
72bf9492 1023 /* The name of this DIE. Normally the value of DW_AT_name, but
94af9270 1024 sometimes a default name for unnamed DIEs. */
6f06d47b 1025 const char *name = nullptr;
72bf9492 1026
abc72ce4 1027 /* The linkage name, if present. */
6f06d47b 1028 const char *linkage_name = nullptr;
abc72ce4 1029
72bf9492
DJ
1030 /* The scope to prepend to our children. This is generally
1031 allocated on the comp_unit_obstack, so will disappear
1032 when this compilation unit leaves the cache. */
6f06d47b 1033 const char *scope = nullptr;
72bf9492 1034
95554aad
TT
1035 /* Some data associated with the partial DIE. The tag determines
1036 which field is live. */
1037 union
1038 {
1039 /* The location description associated with this DIE, if any. */
1040 struct dwarf_block *locdesc;
1041 /* The offset of an import, for DW_TAG_imported_unit. */
9c541725 1042 sect_offset sect_off;
6f06d47b 1043 } d {};
72bf9492
DJ
1044
1045 /* If HAS_PC_INFO, the PC range associated with this DIE. */
6f06d47b
YQ
1046 CORE_ADDR lowpc = 0;
1047 CORE_ADDR highpc = 0;
72bf9492 1048
93311388 1049 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
72bf9492 1050 DW_AT_sibling, if any. */
48fbe735
YQ
1051 /* NOTE: This member isn't strictly necessary, partial_die_info::read
1052 could return DW_AT_sibling values to its caller load_partial_dies. */
6f06d47b 1053 const gdb_byte *sibling = nullptr;
72bf9492
DJ
1054
1055 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1056 DW_AT_specification (or DW_AT_abstract_origin or
1057 DW_AT_extension). */
6f06d47b 1058 sect_offset spec_offset {};
72bf9492
DJ
1059
1060 /* Pointers to this DIE's parent, first child, and next sibling,
1061 if any. */
6f06d47b
YQ
1062 struct partial_die_info *die_parent = nullptr;
1063 struct partial_die_info *die_child = nullptr;
1064 struct partial_die_info *die_sibling = nullptr;
1065
1066 friend struct partial_die_info *
1067 dwarf2_cu::find_partial_die (sect_offset sect_off);
1068
1069 private:
1070 /* Only need to do look up in dwarf2_cu::find_partial_die. */
1071 partial_die_info (sect_offset sect_off)
1072 : partial_die_info (sect_off, DW_TAG_padding, 0)
1073 {
1074 }
1075
1076 partial_die_info (sect_offset sect_off_, enum dwarf_tag tag_,
1077 int has_children_)
1078 : sect_off (sect_off_), tag (tag_), has_children (has_children_)
1079 {
1080 is_external = 0;
1081 is_declaration = 0;
1082 has_type = 0;
1083 has_specification = 0;
1084 has_pc_info = 0;
1085 may_be_inlined = 0;
1086 main_subprogram = 0;
1087 scope_set = 0;
1088 has_byte_size = 0;
1089 has_const_value = 0;
1090 has_template_arguments = 0;
1091 fixup_called = 0;
1092 is_dwz = 0;
1093 spec_is_dwz = 0;
1094 }
c906108c
SS
1095 };
1096
c906108c
SS
1097/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1098 but this would require a corresponding change in unpack_field_as_long
1099 and friends. */
1100static int bits_per_byte = 8;
1101
9c6a1327
TT
1102struct variant_part_builder;
1103
1104/* When reading a variant, we track a bit more information about the
1105 field, and store it in an object of this type. */
2ddeaf8a
TT
1106
1107struct variant_field
1108{
9c6a1327
TT
1109 int first_field = -1;
1110 int last_field = -1;
1111
1112 /* A variant can contain other variant parts. */
1113 std::vector<variant_part_builder> variant_parts;
1114
2ddeaf8a
TT
1115 /* If we see a DW_TAG_variant, then this will be set if this is the
1116 default branch. */
9c6a1327
TT
1117 bool default_branch = false;
1118 /* If we see a DW_AT_discr_value, then this will be the discriminant
1119 value. */
1120 ULONGEST discriminant_value = 0;
1121 /* If we see a DW_AT_discr_list, then this is a pointer to the list
1122 data. */
1123 struct dwarf_block *discr_list_data = nullptr;
1124};
1125
1126/* This represents a DW_TAG_variant_part. */
1127
1128struct variant_part_builder
1129{
1130 /* The offset of the discriminant field. */
1131 sect_offset discriminant_offset {};
1132
1133 /* Variants that are direct children of this variant part. */
1134 std::vector<variant_field> variants;
1135
1136 /* True if we're currently reading a variant. */
1137 bool processing_variant = false;
2ddeaf8a
TT
1138};
1139
52059ffd
TT
1140struct nextfield
1141{
be2daae6
TT
1142 int accessibility = 0;
1143 int virtuality = 0;
9c6a1327
TT
1144 /* Variant parts need to find the discriminant, which is a DIE
1145 reference. We track the section offset of each field to make
1146 this link. */
1147 sect_offset offset;
be2daae6 1148 struct field field {};
52059ffd
TT
1149};
1150
1151struct fnfieldlist
1152{
be2daae6
TT
1153 const char *name = nullptr;
1154 std::vector<struct fn_field> fnfields;
52059ffd
TT
1155};
1156
c906108c
SS
1157/* The routines that read and process dies for a C struct or C++ class
1158 pass lists of data member fields and lists of member function fields
1159 in an instance of a field_info structure, as defined below. */
1160struct field_info
c5aa993b 1161 {
0963b4bd 1162 /* List of data member and baseclasses fields. */
be2daae6
TT
1163 std::vector<struct nextfield> fields;
1164 std::vector<struct nextfield> baseclasses;
c906108c 1165
85102364 1166 /* Set if the accessibility of one of the fields is not public. */
be2daae6 1167 int non_public_fields = 0;
c906108c 1168
c5aa993b
JM
1169 /* Member function fieldlist array, contains name of possibly overloaded
1170 member function, number of overloaded member functions and a pointer
1171 to the head of the member function field chain. */
be2daae6 1172 std::vector<struct fnfieldlist> fnfieldlists;
98751a41
JK
1173
1174 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1175 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
be2daae6 1176 std::vector<struct decl_field> typedef_field_list;
883fd55a
KS
1177
1178 /* Nested types defined by this class and the number of elements in this
1179 list. */
be2daae6 1180 std::vector<struct decl_field> nested_types_list;
317f7127 1181
9c6a1327
TT
1182 /* If non-null, this is the variant part we are currently
1183 reading. */
1184 variant_part_builder *current_variant_part = nullptr;
1185 /* This holds all the top-level variant parts attached to the type
1186 we're reading. */
1187 std::vector<variant_part_builder> variant_parts;
1188
317f7127
TT
1189 /* Return the total number of fields (including baseclasses). */
1190 int nfields () const
1191 {
1192 return fields.size () + baseclasses.size ();
1193 }
c5aa993b 1194 };
c906108c 1195
ae038cb0
DJ
1196/* Loaded secondary compilation units are kept in memory until they
1197 have not been referenced for the processing of this many
1198 compilation units. Set this to zero to disable caching. Cache
1199 sizes of up to at least twenty will improve startup time for
1200 typical inter-CU-reference binaries, at an obvious memory cost. */
b4f54984 1201static int dwarf_max_cache_age = 5;
920d2a44 1202static void
b4f54984
DE
1203show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1204 struct cmd_list_element *c, const char *value)
920d2a44 1205{
3e43a32a 1206 fprintf_filtered (file, _("The upper bound on the age of cached "
b4f54984 1207 "DWARF compilation units is %s.\n"),
920d2a44
AC
1208 value);
1209}
4390d890 1210\f
c906108c
SS
1211/* local function prototypes */
1212
918dd910
JK
1213static void dwarf2_find_base_address (struct die_info *die,
1214 struct dwarf2_cu *cu);
1215
891813be 1216static dwarf2_psymtab *create_partial_symtab
7aa104c4
SM
1217 (dwarf2_per_cu_data *per_cu, dwarf2_per_objfile *per_objfile,
1218 const char *name);
0018ea6f 1219
f1902523
JK
1220static void build_type_psymtabs_reader (const struct die_reader_specs *reader,
1221 const gdb_byte *info_ptr,
3e225074 1222 struct die_info *type_unit_die);
f1902523 1223
ed2dc618
SM
1224static void dwarf2_build_psymtabs_hard
1225 (struct dwarf2_per_objfile *dwarf2_per_objfile);
c906108c 1226
72bf9492
DJ
1227static void scan_partial_symbols (struct partial_die_info *,
1228 CORE_ADDR *, CORE_ADDR *,
5734ee8b 1229 int, struct dwarf2_cu *);
c906108c 1230
72bf9492
DJ
1231static void add_partial_symbol (struct partial_die_info *,
1232 struct dwarf2_cu *);
63d06c5c 1233
72bf9492
DJ
1234static void add_partial_namespace (struct partial_die_info *pdi,
1235 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 1236 int set_addrmap, struct dwarf2_cu *cu);
63d06c5c 1237
5d7cb8df 1238static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 1239 CORE_ADDR *highpc, int set_addrmap,
5d7cb8df
JK
1240 struct dwarf2_cu *cu);
1241
72bf9492
DJ
1242static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1243 struct dwarf2_cu *cu);
91c24f0a 1244
bc30ff58
JB
1245static void add_partial_subprogram (struct partial_die_info *pdi,
1246 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5734ee8b 1247 int need_pc, struct dwarf2_cu *cu);
bc30ff58 1248
d521ce57 1249static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
6caca83c 1250
dee91e82 1251static struct partial_die_info *load_partial_dies
d521ce57 1252 (const struct die_reader_specs *, const gdb_byte *, int);
72bf9492 1253
fb816e8b
TV
1254/* A pair of partial_die_info and compilation unit. */
1255struct cu_partial_die_info
1256{
1257 /* The compilation unit of the partial_die_info. */
1258 struct dwarf2_cu *cu;
1259 /* A partial_die_info. */
1260 struct partial_die_info *pdi;
122cf0f2
AB
1261
1262 cu_partial_die_info (struct dwarf2_cu *cu, struct partial_die_info *pdi)
1263 : cu (cu),
1264 pdi (pdi)
405feb71 1265 { /* Nothing. */ }
122cf0f2
AB
1266
1267private:
1268 cu_partial_die_info () = delete;
fb816e8b
TV
1269};
1270
122cf0f2
AB
1271static const struct cu_partial_die_info find_partial_die (sect_offset, int,
1272 struct dwarf2_cu *);
72bf9492 1273
d521ce57
TT
1274static const gdb_byte *read_attribute (const struct die_reader_specs *,
1275 struct attribute *, struct attr_abbrev *,
18a8505e
AT
1276 const gdb_byte *, bool *need_reprocess);
1277
1278static void read_attribute_reprocess (const struct die_reader_specs *reader,
1279 struct attribute *attr);
1280
1281static CORE_ADDR read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index);
a8329558 1282
ed2dc618
SM
1283static sect_offset read_abbrev_offset
1284 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1285 struct dwarf2_section_info *, sect_offset);
f4dc4d17 1286
ed2dc618
SM
1287static const char *read_indirect_string
1288 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1289 const struct comp_unit_head *, unsigned int *);
4bdf3d34 1290
ed2dc618 1291static const char *read_indirect_string_at_offset
4f44ae6c 1292 (struct dwarf2_per_objfile *dwarf2_per_objfile, LONGEST str_offset);
927aa2e7 1293
d521ce57
TT
1294static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1295 const gdb_byte *,
3019eac3
DE
1296 unsigned int *);
1297
18a8505e
AT
1298static const char *read_dwo_str_index (const struct die_reader_specs *reader,
1299 ULONGEST str_index);
1300
1301static const char *read_stub_str_index (struct dwarf2_cu *cu,
1302 ULONGEST str_index);
3019eac3 1303
e142c38c 1304static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 1305
e142c38c
DJ
1306static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1307 struct dwarf2_cu *);
c906108c 1308
7d45c7c3
KB
1309static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1310 struct dwarf2_cu *cu);
1311
a084a2a6
AT
1312static const char *dwarf2_dwo_name (struct die_info *die, struct dwarf2_cu *cu);
1313
05cf31d1
JB
1314static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1315 struct dwarf2_cu *cu);
1316
e142c38c 1317static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 1318
e142c38c 1319static struct die_info *die_specification (struct die_info *die,
f2f0e013 1320 struct dwarf2_cu **);
63d06c5c 1321
9c541725 1322static line_header_up dwarf_decode_line_header (sect_offset sect_off,
fff8551c 1323 struct dwarf2_cu *cu);
debd256d 1324
f3f5162e 1325static void dwarf_decode_lines (struct line_header *, const char *,
891813be 1326 struct dwarf2_cu *, dwarf2_psymtab *,
527f3840 1327 CORE_ADDR, int decode_mapping);
c906108c 1328
804d2729
TT
1329static void dwarf2_start_subfile (struct dwarf2_cu *, const char *,
1330 const char *);
c906108c 1331
a14ed312 1332static struct symbol *new_symbol (struct die_info *, struct type *,
5e2db402 1333 struct dwarf2_cu *, struct symbol * = NULL);
34eaf542 1334
ff39bb5e 1335static void dwarf2_const_value (const struct attribute *, struct symbol *,
e7c27a73 1336 struct dwarf2_cu *);
c906108c 1337
ff39bb5e 1338static void dwarf2_const_value_attr (const struct attribute *attr,
98bfdba5
PA
1339 struct type *type,
1340 const char *name,
1341 struct obstack *obstack,
12df843f 1342 struct dwarf2_cu *cu, LONGEST *value,
d521ce57 1343 const gdb_byte **bytes,
98bfdba5 1344 struct dwarf2_locexpr_baton **baton);
2df3850c 1345
e7c27a73 1346static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 1347
b4ba55a1
JB
1348static int need_gnat_info (struct dwarf2_cu *);
1349
3e43a32a
MS
1350static struct type *die_descriptive_type (struct die_info *,
1351 struct dwarf2_cu *);
b4ba55a1
JB
1352
1353static void set_descriptive_type (struct type *, struct die_info *,
1354 struct dwarf2_cu *);
1355
e7c27a73
DJ
1356static struct type *die_containing_type (struct die_info *,
1357 struct dwarf2_cu *);
c906108c 1358
ff39bb5e 1359static struct type *lookup_die_type (struct die_info *, const struct attribute *,
673bfd45 1360 struct dwarf2_cu *);
c906108c 1361
f792889a 1362static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 1363
673bfd45
DE
1364static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1365
0d5cff50 1366static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 1367
6e70227d 1368static char *typename_concat (struct obstack *obs, const char *prefix,
f55ee35c
JK
1369 const char *suffix, int physname,
1370 struct dwarf2_cu *cu);
63d06c5c 1371
e7c27a73 1372static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1373
348e048f
DE
1374static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1375
e7c27a73 1376static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1377
e7c27a73 1378static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1379
96408a79
SA
1380static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1381
71a3c369
TT
1382static void read_variable (struct die_info *die, struct dwarf2_cu *cu);
1383
ff013f42 1384static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
891813be 1385 struct dwarf2_cu *, dwarf2_psymtab *);
ff013f42 1386
41144253 1387/* Return the .debug_loclists section to use for cu. */
1388static struct dwarf2_section_info *cu_debug_loc_section (struct dwarf2_cu *cu);
1389
3a2b436a 1390/* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
e385593e 1391 values. Keep the items ordered with increasing constraints compliance. */
3a2b436a
JK
1392enum pc_bounds_kind
1393{
e385593e 1394 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
3a2b436a
JK
1395 PC_BOUNDS_NOT_PRESENT,
1396
e385593e
JK
1397 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1398 were present but they do not form a valid range of PC addresses. */
1399 PC_BOUNDS_INVALID,
1400
3a2b436a
JK
1401 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1402 PC_BOUNDS_RANGES,
1403
1404 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1405 PC_BOUNDS_HIGH_LOW,
1406};
1407
1408static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1409 CORE_ADDR *, CORE_ADDR *,
1410 struct dwarf2_cu *,
891813be 1411 dwarf2_psymtab *);
c906108c 1412
fae299cd
DC
1413static void get_scope_pc_bounds (struct die_info *,
1414 CORE_ADDR *, CORE_ADDR *,
1415 struct dwarf2_cu *);
1416
801e3a5b
JB
1417static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1418 CORE_ADDR, struct dwarf2_cu *);
1419
a14ed312 1420static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 1421 struct dwarf2_cu *);
c906108c 1422
a14ed312 1423static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 1424 struct type *, struct dwarf2_cu *);
c906108c 1425
a14ed312 1426static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 1427 struct die_info *, struct type *,
e7c27a73 1428 struct dwarf2_cu *);
c906108c 1429
a14ed312 1430static void dwarf2_attach_fn_fields_to_type (struct field_info *,
3e43a32a
MS
1431 struct type *,
1432 struct dwarf2_cu *);
c906108c 1433
134d01f1 1434static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1435
e7c27a73 1436static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 1437
e7c27a73 1438static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 1439
5d7cb8df
JK
1440static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1441
804d2729 1442static struct using_direct **using_directives (struct dwarf2_cu *cu);
22cee43f 1443
27aa8d6a
SW
1444static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1445
74921315
KS
1446static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1447
f55ee35c
JK
1448static struct type *read_module_type (struct die_info *die,
1449 struct dwarf2_cu *cu);
1450
38d518c9 1451static const char *namespace_name (struct die_info *die,
e142c38c 1452 int *is_anonymous, struct dwarf2_cu *);
38d518c9 1453
134d01f1 1454static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1455
7d79de9a
TT
1456static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *,
1457 bool * = nullptr);
c906108c 1458
6e70227d 1459static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
7ca2d3a3
DL
1460 struct dwarf2_cu *);
1461
bf6af496 1462static struct die_info *read_die_and_siblings_1
d521ce57 1463 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
bf6af496 1464 struct die_info *);
639d11d3 1465
dee91e82 1466static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
d521ce57
TT
1467 const gdb_byte *info_ptr,
1468 const gdb_byte **new_info_ptr,
639d11d3
DC
1469 struct die_info *parent);
1470
d521ce57
TT
1471static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1472 struct die_info **, const gdb_byte *,
3e225074 1473 int);
3019eac3 1474
d521ce57 1475static const gdb_byte *read_full_die (const struct die_reader_specs *,
3e225074 1476 struct die_info **, const gdb_byte *);
93311388 1477
e7c27a73 1478static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 1479
15d034d0 1480static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
be1e3d3e 1481 struct objfile *);
71c25dea 1482
15d034d0 1483static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 1484
15d034d0 1485static const char *dwarf2_full_name (const char *name,
98bfdba5
PA
1486 struct die_info *die,
1487 struct dwarf2_cu *cu);
1488
ca69b9e6
DE
1489static const char *dwarf2_physname (const char *name, struct die_info *die,
1490 struct dwarf2_cu *cu);
1491
e142c38c 1492static struct die_info *dwarf2_extension (struct die_info *die,
f2f0e013 1493 struct dwarf2_cu **);
9219021c 1494
d97bc12b
DE
1495static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1496
1497static void dump_die_for_error (struct die_info *);
1498
1499static void dump_die_1 (struct ui_file *, int level, int max_level,
1500 struct die_info *);
c906108c 1501
d97bc12b 1502/*static*/ void dump_die (struct die_info *, int max_level);
c906108c 1503
51545339 1504static void store_in_ref_table (struct die_info *,
10b3939b 1505 struct dwarf2_cu *);
c906108c 1506
348e048f 1507static struct die_info *follow_die_ref_or_sig (struct die_info *,
ff39bb5e 1508 const struct attribute *,
348e048f
DE
1509 struct dwarf2_cu **);
1510
10b3939b 1511static struct die_info *follow_die_ref (struct die_info *,
ff39bb5e 1512 const struct attribute *,
f2f0e013 1513 struct dwarf2_cu **);
c906108c 1514
348e048f 1515static struct die_info *follow_die_sig (struct die_info *,
ff39bb5e 1516 const struct attribute *,
348e048f
DE
1517 struct dwarf2_cu **);
1518
ac9ec31b
DE
1519static struct type *get_signatured_type (struct die_info *, ULONGEST,
1520 struct dwarf2_cu *);
1521
1522static struct type *get_DW_AT_signature_type (struct die_info *,
ff39bb5e 1523 const struct attribute *,
ac9ec31b
DE
1524 struct dwarf2_cu *);
1525
ab432490
SM
1526static void load_full_type_unit (dwarf2_per_cu_data *per_cu,
1527 dwarf2_per_objfile *per_objfile);
348e048f 1528
ab432490
SM
1529static void read_signatured_type (signatured_type *sig_type,
1530 dwarf2_per_objfile *per_objfile);
348e048f 1531
63e43d3a
PMR
1532static int attr_to_dynamic_prop (const struct attribute *attr,
1533 struct die_info *die, struct dwarf2_cu *cu,
9a49df9d 1534 struct dynamic_prop *prop, struct type *type);
63e43d3a 1535
c906108c
SS
1536/* memory allocation interface */
1537
7b5a2f43 1538static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1539
b60c80d6 1540static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
c906108c 1541
43f3e411 1542static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
2e276125 1543
8cf6f0b1
TT
1544static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1545 struct dwarf2_loclist_baton *baton,
ff39bb5e 1546 const struct attribute *attr);
8cf6f0b1 1547
ff39bb5e 1548static void dwarf2_symbol_mark_computed (const struct attribute *attr,
93e7bd98 1549 struct symbol *sym,
f1e6e072
TT
1550 struct dwarf2_cu *cu,
1551 int is_block);
4c2df51b 1552
d521ce57
TT
1553static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1554 const gdb_byte *info_ptr,
1555 struct abbrev_info *abbrev);
4bb7a0a7 1556
72bf9492
DJ
1557static hashval_t partial_die_hash (const void *item);
1558
1559static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1560
ae038cb0 1561static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
ed2dc618
SM
1562 (sect_offset sect_off, unsigned int offset_in_dwz,
1563 struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1564
9816fde3 1565static void prepare_one_comp_unit (struct dwarf2_cu *cu,
95554aad
TT
1566 struct die_info *comp_unit_die,
1567 enum language pretend_language);
93311388 1568
ed2dc618 1569static void age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1570
dee91e82 1571static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
ae038cb0 1572
f792889a
DJ
1573static struct type *set_die_type (struct die_info *, struct type *,
1574 struct dwarf2_cu *);
1c379e20 1575
ed2dc618 1576static void create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1577
ed2dc618 1578static int create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1fd400ff 1579
ab432490
SM
1580static void load_full_comp_unit (dwarf2_per_cu_data *per_cu,
1581 dwarf2_per_objfile *per_objfile,
1582 bool skip_partial,
1583 enum language pretend_language);
10b3939b 1584
47b14e86
SM
1585static void process_full_comp_unit (dwarf2_per_cu_data *per_cu,
1586 dwarf2_per_objfile *per_objfile,
1587 enum language pretend_language);
10b3939b 1588
47b14e86
SM
1589static void process_full_type_unit (dwarf2_per_cu_data *per_cu,
1590 dwarf2_per_objfile *per_objfile,
1591 enum language pretend_language);
f4dc4d17 1592
10b3939b
DJ
1593static void dwarf2_add_dependence (struct dwarf2_cu *,
1594 struct dwarf2_per_cu_data *);
1595
ae038cb0
DJ
1596static void dwarf2_mark (struct dwarf2_cu *);
1597
1598static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1599
b64f50a1 1600static struct type *get_die_type_at_offset (sect_offset,
ac9ec31b 1601 struct dwarf2_per_cu_data *);
673bfd45 1602
f792889a 1603static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
72019c9c 1604
95554aad
TT
1605static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1606 enum language pretend_language);
1607
ed2dc618 1608static void process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile);
9291a0cd 1609
b303c6f6
AB
1610/* Class, the destructor of which frees all allocated queue entries. This
1611 will only have work to do if an error was thrown while processing the
1612 dwarf. If no error was thrown then the queue entries should have all
1613 been processed, and freed, as we went along. */
1614
1615class dwarf2_queue_guard
1616{
1617public:
39856def
TT
1618 explicit dwarf2_queue_guard (dwarf2_per_objfile *per_objfile)
1619 : m_per_objfile (per_objfile)
1620 {
1621 }
b303c6f6
AB
1622
1623 /* Free any entries remaining on the queue. There should only be
1624 entries left if we hit an error while processing the dwarf. */
1625 ~dwarf2_queue_guard ()
1626 {
39856def
TT
1627 /* Ensure that no memory is allocated by the queue. */
1628 std::queue<dwarf2_queue_item> empty;
5989a64e 1629 std::swap (m_per_objfile->per_bfd->queue, empty);
39856def 1630 }
b303c6f6 1631
39856def 1632 DISABLE_COPY_AND_ASSIGN (dwarf2_queue_guard);
b303c6f6 1633
39856def
TT
1634private:
1635 dwarf2_per_objfile *m_per_objfile;
b303c6f6
AB
1636};
1637
39856def
TT
1638dwarf2_queue_item::~dwarf2_queue_item ()
1639{
1640 /* Anything still marked queued is likely to be in an
1641 inconsistent state, so discard it. */
1642 if (per_cu->queued)
1643 {
1644 if (per_cu->cu != NULL)
1645 free_one_cached_comp_unit (per_cu);
1646 per_cu->queued = 0;
1647 }
1648}
1649
d721ba37
PA
1650/* The return type of find_file_and_directory. Note, the enclosed
1651 string pointers are only valid while this object is valid. */
1652
1653struct file_and_directory
1654{
1655 /* The filename. This is never NULL. */
1656 const char *name;
1657
1658 /* The compilation directory. NULL if not known. If we needed to
1659 compute a new string, this points to COMP_DIR_STORAGE, otherwise,
1660 points directly to the DW_AT_comp_dir string attribute owned by
1661 the obstack that owns the DIE. */
1662 const char *comp_dir;
1663
1664 /* If we needed to build a new string for comp_dir, this is what
1665 owns the storage. */
1666 std::string comp_dir_storage;
1667};
1668
1669static file_and_directory find_file_and_directory (struct die_info *die,
1670 struct dwarf2_cu *cu);
9291a0cd 1671
298e9637 1672static htab_up allocate_signatured_type_table ();
1fd400ff 1673
298e9637 1674static htab_up allocate_dwo_unit_table ();
3019eac3 1675
57d63ce2 1676static struct dwo_unit *lookup_dwo_unit_in_dwp
ed2dc618
SM
1677 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1678 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 1679 ULONGEST signature, int is_debug_types);
a2ce51a0 1680
ed2dc618
SM
1681static struct dwp_file *get_dwp_file
1682 (struct dwarf2_per_objfile *dwarf2_per_objfile);
a2ce51a0 1683
3019eac3 1684static struct dwo_unit *lookup_dwo_comp_unit
4ab09049
SM
1685 (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
1686 ULONGEST signature);
3019eac3
DE
1687
1688static struct dwo_unit *lookup_dwo_type_unit
4ab09049 1689 (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir);
3019eac3 1690
89e63ee4
DE
1691static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
1692
263db9a1
TT
1693/* A unique pointer to a dwo_file. */
1694
51ac9db5 1695typedef std::unique_ptr<struct dwo_file> dwo_file_up;
263db9a1 1696
ed2dc618 1697static void process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile);
95554aad 1698
1b80a9fa 1699static void check_producer (struct dwarf2_cu *cu);
527f3840
JK
1700
1701static void free_line_header_voidp (void *arg);
4390d890
DE
1702\f
1703/* Various complaints about symbol reading that don't abort the process. */
1704
4390d890
DE
1705static void
1706dwarf2_debug_line_missing_file_complaint (void)
1707{
b98664d3 1708 complaint (_(".debug_line section has line data without a file"));
4390d890
DE
1709}
1710
1711static void
1712dwarf2_debug_line_missing_end_sequence_complaint (void)
1713{
b98664d3 1714 complaint (_(".debug_line section has line "
4390d890
DE
1715 "program sequence without an end"));
1716}
1717
1718static void
1719dwarf2_complex_location_expr_complaint (void)
1720{
b98664d3 1721 complaint (_("location expression too complex"));
4390d890
DE
1722}
1723
1724static void
1725dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1726 int arg3)
1727{
b98664d3 1728 complaint (_("const value length mismatch for '%s', got %d, expected %d"),
4390d890
DE
1729 arg1, arg2, arg3);
1730}
1731
4390d890
DE
1732static void
1733dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1734{
b98664d3 1735 complaint (_("invalid attribute class or form for '%s' in '%s'"),
4390d890
DE
1736 arg1, arg2);
1737}
527f3840
JK
1738
1739/* Hash function for line_header_hash. */
1740
1741static hashval_t
1742line_header_hash (const struct line_header *ofs)
1743{
9c541725 1744 return to_underlying (ofs->sect_off) ^ ofs->offset_in_dwz;
527f3840
JK
1745}
1746
1747/* Hash function for htab_create_alloc_ex for line_header_hash. */
1748
1749static hashval_t
1750line_header_hash_voidp (const void *item)
1751{
9a3c8263 1752 const struct line_header *ofs = (const struct line_header *) item;
527f3840
JK
1753
1754 return line_header_hash (ofs);
1755}
1756
1757/* Equality function for line_header_hash. */
1758
1759static int
1760line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
1761{
9a3c8263
SM
1762 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
1763 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
527f3840 1764
9c541725 1765 return (ofs_lhs->sect_off == ofs_rhs->sect_off
527f3840
JK
1766 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
1767}
1768
4390d890 1769\f
9291a0cd 1770
330cdd98
PA
1771/* See declaration. */
1772
5989a64e
SM
1773dwarf2_per_bfd::dwarf2_per_bfd (bfd *obfd, const dwarf2_debug_sections *names,
1774 bool can_copy_)
c3699833
SM
1775 : obfd (obfd),
1776 can_copy (can_copy_)
330cdd98
PA
1777{
1778 if (names == NULL)
1779 names = &dwarf2_elf_names;
1780
330cdd98
PA
1781 for (asection *sec = obfd->sections; sec != NULL; sec = sec->next)
1782 locate_sections (obfd, sec, *names);
1783}
1784
5989a64e 1785dwarf2_per_bfd::~dwarf2_per_bfd ()
330cdd98
PA
1786{
1787 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
1788 free_cached_comp_units ();
1789
b76e467d 1790 for (dwarf2_per_cu_data *per_cu : all_comp_units)
ae640021 1791 per_cu->imported_symtabs_free ();
fc8e7e75 1792
b2bdb8cf 1793 for (signatured_type *sig_type : all_type_units)
ae640021 1794 sig_type->per_cu.imported_symtabs_free ();
fc8e7e75 1795
5989a64e 1796 /* Everything else should be on this->obstack. */
330cdd98
PA
1797}
1798
1799/* See declaration. */
1800
1801void
5989a64e 1802dwarf2_per_bfd::free_cached_comp_units ()
330cdd98
PA
1803{
1804 dwarf2_per_cu_data *per_cu = read_in_chain;
1805 dwarf2_per_cu_data **last_chain = &read_in_chain;
1806 while (per_cu != NULL)
1807 {
1808 dwarf2_per_cu_data *next_cu = per_cu->cu->read_in_chain;
1809
fcd3b13d 1810 delete per_cu->cu;
330cdd98
PA
1811 *last_chain = next_cu;
1812 per_cu = next_cu;
1813 }
1814}
1815
11ed8cad
TT
1816/* A helper class that calls free_cached_comp_units on
1817 destruction. */
1818
1819class free_cached_comp_units
1820{
1821public:
1822
1823 explicit free_cached_comp_units (dwarf2_per_objfile *per_objfile)
1824 : m_per_objfile (per_objfile)
1825 {
1826 }
1827
1828 ~free_cached_comp_units ()
1829 {
5989a64e 1830 m_per_objfile->per_bfd->free_cached_comp_units ();
11ed8cad
TT
1831 }
1832
1833 DISABLE_COPY_AND_ASSIGN (free_cached_comp_units);
1834
1835private:
1836
1837 dwarf2_per_objfile *m_per_objfile;
1838};
1839
af758d11
SM
1840/* See read.h. */
1841
1842bool
1843dwarf2_per_objfile::symtab_set_p (const dwarf2_per_cu_data *per_cu) const
1844{
1845 gdb_assert (per_cu->index < this->m_symtabs.size ());
1846
1847 return this->m_symtabs[per_cu->index] != nullptr;
1848}
1849
1850/* See read.h. */
1851
1852compunit_symtab *
1853dwarf2_per_objfile::get_symtab (const dwarf2_per_cu_data *per_cu) const
1854{
1855 gdb_assert (per_cu->index < this->m_symtabs.size ());
1856
1857 return this->m_symtabs[per_cu->index];
1858}
1859
1860/* See read.h. */
1861
1862void
1863dwarf2_per_objfile::set_symtab (const dwarf2_per_cu_data *per_cu,
1864 compunit_symtab *symtab)
1865{
1866 gdb_assert (per_cu->index < this->m_symtabs.size ());
1867 gdb_assert (this->m_symtabs[per_cu->index] == nullptr);
1868
1869 this->m_symtabs[per_cu->index] = symtab;
1870}
1871
c906108c 1872/* Try to locate the sections we need for DWARF 2 debugging
251d32d9
TG
1873 information and return true if we have enough to do something.
1874 NAMES points to the dwarf2 section names, or is NULL if the standard
4b610737
TT
1875 ELF names are used. CAN_COPY is true for formats where symbol
1876 interposition is possible and so symbol values must follow copy
1877 relocation rules. */
c906108c
SS
1878
1879int
251d32d9 1880dwarf2_has_info (struct objfile *objfile,
4b610737
TT
1881 const struct dwarf2_debug_sections *names,
1882 bool can_copy)
c906108c 1883{
97cbe998
SDJ
1884 if (objfile->flags & OBJF_READNEVER)
1885 return 0;
1886
ed2dc618
SM
1887 struct dwarf2_per_objfile *dwarf2_per_objfile
1888 = get_dwarf2_per_objfile (objfile);
1889
1890 if (dwarf2_per_objfile == NULL)
5989a64e
SM
1891 {
1892 /* For now, each dwarf2_per_objfile owns its own dwarf2_per_bfd (no
1893 sharing yet). */
1894 dwarf2_per_bfd *per_bfd = new dwarf2_per_bfd (objfile->obfd, names, can_copy);
1895
1896 dwarf2_per_objfile = dwarf2_objfile_data_key.emplace (objfile, objfile, per_bfd);
1897 }
5bfd760d 1898
5989a64e
SM
1899 return (!dwarf2_per_objfile->per_bfd->info.is_virtual
1900 && dwarf2_per_objfile->per_bfd->info.s.section != NULL
1901 && !dwarf2_per_objfile->per_bfd->abbrev.is_virtual
1902 && dwarf2_per_objfile->per_bfd->abbrev.s.section != NULL);
73869dc2
DE
1903}
1904
251d32d9
TG
1905/* When loading sections, we look either for uncompressed section or for
1906 compressed section names. */
233a11ab
CS
1907
1908static int
251d32d9
TG
1909section_is_p (const char *section_name,
1910 const struct dwarf2_section_names *names)
233a11ab 1911{
251d32d9
TG
1912 if (names->normal != NULL
1913 && strcmp (section_name, names->normal) == 0)
1914 return 1;
1915 if (names->compressed != NULL
1916 && strcmp (section_name, names->compressed) == 0)
1917 return 1;
1918 return 0;
233a11ab
CS
1919}
1920
330cdd98 1921/* See declaration. */
c906108c 1922
330cdd98 1923void
5989a64e
SM
1924dwarf2_per_bfd::locate_sections (bfd *abfd, asection *sectp,
1925 const dwarf2_debug_sections &names)
c906108c 1926{
fd361982 1927 flagword aflag = bfd_section_flags (sectp);
251d32d9 1928
dc7650b8
JK
1929 if ((aflag & SEC_HAS_CONTENTS) == 0)
1930 {
1931 }
950b7495
KS
1932 else if (elf_section_data (sectp)->this_hdr.sh_size
1933 > bfd_get_file_size (abfd))
1934 {
1935 bfd_size_type size = elf_section_data (sectp)->this_hdr.sh_size;
1936 warning (_("Discarding section %s which has a section size (%s"
1937 ") larger than the file size [in module %s]"),
1938 bfd_section_name (sectp), phex_nz (size, sizeof (size)),
1939 bfd_get_filename (abfd));
1940 }
330cdd98 1941 else if (section_is_p (sectp->name, &names.info))
c906108c 1942 {
330cdd98 1943 this->info.s.section = sectp;
fd361982 1944 this->info.size = bfd_section_size (sectp);
c906108c 1945 }
330cdd98 1946 else if (section_is_p (sectp->name, &names.abbrev))
c906108c 1947 {
330cdd98 1948 this->abbrev.s.section = sectp;
fd361982 1949 this->abbrev.size = bfd_section_size (sectp);
c906108c 1950 }
330cdd98 1951 else if (section_is_p (sectp->name, &names.line))
c906108c 1952 {
330cdd98 1953 this->line.s.section = sectp;
fd361982 1954 this->line.size = bfd_section_size (sectp);
c906108c 1955 }
330cdd98 1956 else if (section_is_p (sectp->name, &names.loc))
c906108c 1957 {
330cdd98 1958 this->loc.s.section = sectp;
fd361982 1959 this->loc.size = bfd_section_size (sectp);
c906108c 1960 }
330cdd98 1961 else if (section_is_p (sectp->name, &names.loclists))
43988095 1962 {
330cdd98 1963 this->loclists.s.section = sectp;
fd361982 1964 this->loclists.size = bfd_section_size (sectp);
43988095 1965 }
330cdd98 1966 else if (section_is_p (sectp->name, &names.macinfo))
c906108c 1967 {
330cdd98 1968 this->macinfo.s.section = sectp;
fd361982 1969 this->macinfo.size = bfd_section_size (sectp);
c906108c 1970 }
330cdd98 1971 else if (section_is_p (sectp->name, &names.macro))
cf2c3c16 1972 {
330cdd98 1973 this->macro.s.section = sectp;
fd361982 1974 this->macro.size = bfd_section_size (sectp);
cf2c3c16 1975 }
330cdd98 1976 else if (section_is_p (sectp->name, &names.str))
c906108c 1977 {
330cdd98 1978 this->str.s.section = sectp;
fd361982 1979 this->str.size = bfd_section_size (sectp);
c906108c 1980 }
18a8505e
AT
1981 else if (section_is_p (sectp->name, &names.str_offsets))
1982 {
1983 this->str_offsets.s.section = sectp;
1984 this->str_offsets.size = bfd_section_size (sectp);
1985 }
330cdd98 1986 else if (section_is_p (sectp->name, &names.line_str))
43988095 1987 {
330cdd98 1988 this->line_str.s.section = sectp;
fd361982 1989 this->line_str.size = bfd_section_size (sectp);
43988095 1990 }
330cdd98 1991 else if (section_is_p (sectp->name, &names.addr))
3019eac3 1992 {
330cdd98 1993 this->addr.s.section = sectp;
fd361982 1994 this->addr.size = bfd_section_size (sectp);
3019eac3 1995 }
330cdd98 1996 else if (section_is_p (sectp->name, &names.frame))
b6af0555 1997 {
330cdd98 1998 this->frame.s.section = sectp;
fd361982 1999 this->frame.size = bfd_section_size (sectp);
b6af0555 2000 }
330cdd98 2001 else if (section_is_p (sectp->name, &names.eh_frame))
b6af0555 2002 {
330cdd98 2003 this->eh_frame.s.section = sectp;
fd361982 2004 this->eh_frame.size = bfd_section_size (sectp);
b6af0555 2005 }
330cdd98 2006 else if (section_is_p (sectp->name, &names.ranges))
af34e669 2007 {
330cdd98 2008 this->ranges.s.section = sectp;
fd361982 2009 this->ranges.size = bfd_section_size (sectp);
af34e669 2010 }
330cdd98 2011 else if (section_is_p (sectp->name, &names.rnglists))
43988095 2012 {
330cdd98 2013 this->rnglists.s.section = sectp;
fd361982 2014 this->rnglists.size = bfd_section_size (sectp);
43988095 2015 }
330cdd98 2016 else if (section_is_p (sectp->name, &names.types))
348e048f 2017 {
8b70b953
TT
2018 struct dwarf2_section_info type_section;
2019
2020 memset (&type_section, 0, sizeof (type_section));
049412e3 2021 type_section.s.section = sectp;
fd361982 2022 type_section.size = bfd_section_size (sectp);
8b70b953 2023
fd5866f6 2024 this->types.push_back (type_section);
348e048f 2025 }
330cdd98 2026 else if (section_is_p (sectp->name, &names.gdb_index))
9291a0cd 2027 {
330cdd98 2028 this->gdb_index.s.section = sectp;
fd361982 2029 this->gdb_index.size = bfd_section_size (sectp);
9291a0cd 2030 }
927aa2e7
JK
2031 else if (section_is_p (sectp->name, &names.debug_names))
2032 {
2033 this->debug_names.s.section = sectp;
fd361982 2034 this->debug_names.size = bfd_section_size (sectp);
927aa2e7
JK
2035 }
2036 else if (section_is_p (sectp->name, &names.debug_aranges))
2037 {
2038 this->debug_aranges.s.section = sectp;
fd361982 2039 this->debug_aranges.size = bfd_section_size (sectp);
927aa2e7 2040 }
dce234bc 2041
fd361982
AM
2042 if ((bfd_section_flags (sectp) & (SEC_LOAD | SEC_ALLOC))
2043 && bfd_section_vma (sectp) == 0)
330cdd98 2044 this->has_section_at_zero = true;
c906108c
SS
2045}
2046
dce234bc 2047/* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
0963b4bd 2048 SECTION_NAME. */
af34e669 2049
dce234bc 2050void
3017a003
TG
2051dwarf2_get_section_info (struct objfile *objfile,
2052 enum dwarf2_section_enum sect,
d521ce57 2053 asection **sectp, const gdb_byte **bufp,
dce234bc
PP
2054 bfd_size_type *sizep)
2055{
5bfd760d 2056 struct dwarf2_per_objfile *data = dwarf2_objfile_data_key.get (objfile);
dce234bc 2057 struct dwarf2_section_info *info;
a3b2a86b
TT
2058
2059 /* We may see an objfile without any DWARF, in which case we just
2060 return nothing. */
2061 if (data == NULL)
2062 {
2063 *sectp = NULL;
2064 *bufp = NULL;
2065 *sizep = 0;
2066 return;
2067 }
3017a003
TG
2068 switch (sect)
2069 {
2070 case DWARF2_DEBUG_FRAME:
5989a64e 2071 info = &data->per_bfd->frame;
3017a003
TG
2072 break;
2073 case DWARF2_EH_FRAME:
5989a64e 2074 info = &data->per_bfd->eh_frame;
3017a003
TG
2075 break;
2076 default:
2077 gdb_assert_not_reached ("unexpected section");
2078 }
dce234bc 2079
96b79293 2080 info->read (objfile);
dce234bc 2081
96b79293 2082 *sectp = info->get_bfd_section ();
dce234bc
PP
2083 *bufp = info->buffer;
2084 *sizep = info->size;
2085}
2086
36586728
TT
2087/* A helper function to find the sections for a .dwz file. */
2088
2089static void
2090locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2091{
9a3c8263 2092 struct dwz_file *dwz_file = (struct dwz_file *) arg;
36586728
TT
2093
2094 /* Note that we only support the standard ELF names, because .dwz
2095 is ELF-only (at the time of writing). */
2096 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2097 {
049412e3 2098 dwz_file->abbrev.s.section = sectp;
fd361982 2099 dwz_file->abbrev.size = bfd_section_size (sectp);
36586728
TT
2100 }
2101 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2102 {
049412e3 2103 dwz_file->info.s.section = sectp;
fd361982 2104 dwz_file->info.size = bfd_section_size (sectp);
36586728
TT
2105 }
2106 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2107 {
049412e3 2108 dwz_file->str.s.section = sectp;
fd361982 2109 dwz_file->str.size = bfd_section_size (sectp);
36586728
TT
2110 }
2111 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2112 {
049412e3 2113 dwz_file->line.s.section = sectp;
fd361982 2114 dwz_file->line.size = bfd_section_size (sectp);
36586728
TT
2115 }
2116 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2117 {
049412e3 2118 dwz_file->macro.s.section = sectp;
fd361982 2119 dwz_file->macro.size = bfd_section_size (sectp);
36586728 2120 }
2ec9a5e0
TT
2121 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2122 {
049412e3 2123 dwz_file->gdb_index.s.section = sectp;
fd361982 2124 dwz_file->gdb_index.size = bfd_section_size (sectp);
2ec9a5e0 2125 }
927aa2e7
JK
2126 else if (section_is_p (sectp->name, &dwarf2_elf_names.debug_names))
2127 {
2128 dwz_file->debug_names.s.section = sectp;
fd361982 2129 dwz_file->debug_names.size = bfd_section_size (sectp);
927aa2e7 2130 }
36586728
TT
2131}
2132
c4973306 2133/* See dwarf2read.h. */
36586728 2134
c4973306 2135struct dwz_file *
c3699833 2136dwarf2_get_dwz_file (dwarf2_per_bfd *per_bfd)
36586728 2137{
36586728 2138 const char *filename;
acd13123 2139 bfd_size_type buildid_len_arg;
dc294be5
TT
2140 size_t buildid_len;
2141 bfd_byte *buildid;
36586728 2142
c3699833
SM
2143 if (per_bfd->dwz_file != NULL)
2144 return per_bfd->dwz_file.get ();
36586728 2145
4db1a1dc 2146 bfd_set_error (bfd_error_no_error);
791afaa2 2147 gdb::unique_xmalloc_ptr<char> data
c3699833 2148 (bfd_get_alt_debug_link_info (per_bfd->obfd,
791afaa2 2149 &buildid_len_arg, &buildid));
4db1a1dc
TT
2150 if (data == NULL)
2151 {
2152 if (bfd_get_error () == bfd_error_no_error)
2153 return NULL;
2154 error (_("could not read '.gnu_debugaltlink' section: %s"),
2155 bfd_errmsg (bfd_get_error ()));
2156 }
791afaa2
TT
2157
2158 gdb::unique_xmalloc_ptr<bfd_byte> buildid_holder (buildid);
36586728 2159
acd13123
TT
2160 buildid_len = (size_t) buildid_len_arg;
2161
791afaa2 2162 filename = data.get ();
d721ba37
PA
2163
2164 std::string abs_storage;
36586728
TT
2165 if (!IS_ABSOLUTE_PATH (filename))
2166 {
14278e1f 2167 gdb::unique_xmalloc_ptr<char> abs
c3699833 2168 = gdb_realpath (bfd_get_filename (per_bfd->obfd));
36586728 2169
14278e1f 2170 abs_storage = ldirname (abs.get ()) + SLASH_STRING + filename;
d721ba37 2171 filename = abs_storage.c_str ();
36586728
TT
2172 }
2173
dc294be5
TT
2174 /* First try the file name given in the section. If that doesn't
2175 work, try to use the build-id instead. */
ad80db5b 2176 gdb_bfd_ref_ptr dwz_bfd (gdb_bfd_open (filename, gnutarget));
dc294be5 2177 if (dwz_bfd != NULL)
36586728 2178 {
192b62ce 2179 if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
0f58c9e8 2180 dwz_bfd.reset (nullptr);
36586728
TT
2181 }
2182
dc294be5
TT
2183 if (dwz_bfd == NULL)
2184 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2185
0d79cdc4
AM
2186 if (dwz_bfd == nullptr)
2187 {
2188 gdb::unique_xmalloc_ptr<char> alt_filename;
c3699833 2189 const char *origname = bfd_get_filename (per_bfd->obfd);
0d79cdc4
AM
2190
2191 scoped_fd fd (debuginfod_debuginfo_query (buildid,
2192 buildid_len,
2193 origname,
2194 &alt_filename));
2195
2196 if (fd.get () >= 0)
2197 {
2198 /* File successfully retrieved from server. */
ad80db5b 2199 dwz_bfd = gdb_bfd_open (alt_filename.get (), gnutarget);
0d79cdc4
AM
2200
2201 if (dwz_bfd == nullptr)
2202 warning (_("File \"%s\" from debuginfod cannot be opened as bfd"),
2203 alt_filename.get ());
2204 else if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
2205 dwz_bfd.reset (nullptr);
2206 }
2207 }
2208
dc294be5
TT
2209 if (dwz_bfd == NULL)
2210 error (_("could not find '.gnu_debugaltlink' file for %s"),
c3699833 2211 bfd_get_filename (per_bfd->obfd));
dc294be5 2212
7ff8cb8c
TT
2213 std::unique_ptr<struct dwz_file> result
2214 (new struct dwz_file (std::move (dwz_bfd)));
36586728 2215
7ff8cb8c
TT
2216 bfd_map_over_sections (result->dwz_bfd.get (), locate_dwz_sections,
2217 result.get ());
36586728 2218
c3699833
SM
2219 gdb_bfd_record_inclusion (per_bfd->obfd, result->dwz_bfd.get ());
2220 per_bfd->dwz_file = std::move (result);
2221 return per_bfd->dwz_file.get ();
36586728 2222}
9291a0cd 2223\f
7b9f3c50
DE
2224/* DWARF quick_symbols_functions support. */
2225
2226/* TUs can share .debug_line entries, and there can be a lot more TUs than
2227 unique line tables, so we maintain a separate table of all .debug_line
2228 derived entries to support the sharing.
2229 All the quick functions need is the list of file names. We discard the
2230 line_header when we're done and don't need to record it here. */
2231struct quick_file_names
2232{
094b34ac
DE
2233 /* The data used to construct the hash key. */
2234 struct stmt_list_hash hash;
7b9f3c50
DE
2235
2236 /* The number of entries in file_names, real_names. */
2237 unsigned int num_file_names;
2238
2239 /* The file names from the line table, after being run through
2240 file_full_name. */
2241 const char **file_names;
2242
2243 /* The file names from the line table after being run through
2244 gdb_realpath. These are computed lazily. */
2245 const char **real_names;
2246};
2247
2248/* When using the index (and thus not using psymtabs), each CU has an
2249 object of this type. This is used to hold information needed by
2250 the various "quick" methods. */
2251struct dwarf2_per_cu_quick_data
2252{
2253 /* The file table. This can be NULL if there was no file table
2254 or it's currently not read in.
5989a64e 2255 NOTE: This points into dwarf2_per_objfile->per_bfd->quick_file_names_table. */
7b9f3c50
DE
2256 struct quick_file_names *file_names;
2257
7b9f3c50
DE
2258 /* A temporary mark bit used when iterating over all CUs in
2259 expand_symtabs_matching. */
2260 unsigned int mark : 1;
2261
2262 /* True if we've tried to read the file table and found there isn't one.
2263 There will be no point in trying to read it again next time. */
2264 unsigned int no_file_data : 1;
2265};
2266
094b34ac
DE
2267/* Utility hash function for a stmt_list_hash. */
2268
2269static hashval_t
2270hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2271{
2272 hashval_t v = 0;
2273
2274 if (stmt_list_hash->dwo_unit != NULL)
2275 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
9c541725 2276 v += to_underlying (stmt_list_hash->line_sect_off);
094b34ac
DE
2277 return v;
2278}
2279
2280/* Utility equality function for a stmt_list_hash. */
2281
2282static int
2283eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2284 const struct stmt_list_hash *rhs)
2285{
2286 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2287 return 0;
2288 if (lhs->dwo_unit != NULL
2289 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2290 return 0;
2291
9c541725 2292 return lhs->line_sect_off == rhs->line_sect_off;
094b34ac
DE
2293}
2294
7b9f3c50
DE
2295/* Hash function for a quick_file_names. */
2296
2297static hashval_t
2298hash_file_name_entry (const void *e)
2299{
9a3c8263
SM
2300 const struct quick_file_names *file_data
2301 = (const struct quick_file_names *) e;
7b9f3c50 2302
094b34ac 2303 return hash_stmt_list_entry (&file_data->hash);
7b9f3c50
DE
2304}
2305
2306/* Equality function for a quick_file_names. */
2307
2308static int
2309eq_file_name_entry (const void *a, const void *b)
2310{
9a3c8263
SM
2311 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2312 const struct quick_file_names *eb = (const struct quick_file_names *) b;
7b9f3c50 2313
094b34ac 2314 return eq_stmt_list_entry (&ea->hash, &eb->hash);
7b9f3c50
DE
2315}
2316
2317/* Delete function for a quick_file_names. */
2318
2319static void
2320delete_file_name_entry (void *e)
2321{
9a3c8263 2322 struct quick_file_names *file_data = (struct quick_file_names *) e;
7b9f3c50
DE
2323 int i;
2324
2325 for (i = 0; i < file_data->num_file_names; ++i)
2326 {
2327 xfree ((void*) file_data->file_names[i]);
2328 if (file_data->real_names)
2329 xfree ((void*) file_data->real_names[i]);
2330 }
2331
45940949
TT
2332 /* The space for the struct itself lives on the obstack, so we don't
2333 free it here. */
7b9f3c50
DE
2334}
2335
2336/* Create a quick_file_names hash table. */
2337
5895093f 2338static htab_up
7b9f3c50
DE
2339create_quick_file_names_table (unsigned int nr_initial_entries)
2340{
5895093f
TT
2341 return htab_up (htab_create_alloc (nr_initial_entries,
2342 hash_file_name_entry, eq_file_name_entry,
2343 delete_file_name_entry, xcalloc, xfree));
7b9f3c50 2344}
9291a0cd 2345
ab432490
SM
2346/* Read in CU (dwarf2_cu object) for PER_CU in the context of PER_OBJFILE. This
2347 function is unrelated to symtabs, symtab would have to be created afterwards.
2348 You should call age_cached_comp_units after processing the CU. */
918dd910
JK
2349
2350static void
ab432490
SM
2351load_cu (dwarf2_per_cu_data *per_cu, dwarf2_per_objfile *per_objfile,
2352 bool skip_partial)
918dd910 2353{
3019eac3 2354 if (per_cu->is_debug_types)
ab432490 2355 load_full_type_unit (per_cu, per_objfile);
918dd910 2356 else
ab432490 2357 load_full_comp_unit (per_cu, per_objfile, skip_partial, language_minimal);
918dd910 2358
cc12ce38
DE
2359 if (per_cu->cu == NULL)
2360 return; /* Dummy CU. */
2dc860c0
DE
2361
2362 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
918dd910
JK
2363}
2364
97a1449a 2365/* Read in the symbols for PER_CU in the context of DWARF"_PER_OBJFILE. */
2fdf6df6 2366
9291a0cd 2367static void
97a1449a
SM
2368dw2_do_instantiate_symtab (dwarf2_per_cu_data *per_cu,
2369 dwarf2_per_objfile *dwarf2_per_objfile,
2370 bool skip_partial)
9291a0cd 2371{
f4dc4d17
DE
2372 /* Skip type_unit_groups, reading the type units they contain
2373 is handled elsewhere. */
197400e8 2374 if (per_cu->type_unit_group_p ())
f4dc4d17
DE
2375 return;
2376
b303c6f6
AB
2377 /* The destructor of dwarf2_queue_guard frees any entries left on
2378 the queue. After this point we're guaranteed to leave this function
2379 with the dwarf queue empty. */
39856def 2380 dwarf2_queue_guard q_guard (dwarf2_per_objfile);
9291a0cd 2381
af758d11 2382 if (!dwarf2_per_objfile->symtab_set_p (per_cu))
95554aad
TT
2383 {
2384 queue_comp_unit (per_cu, language_minimal);
ab432490 2385 load_cu (per_cu, dwarf2_per_objfile, skip_partial);
89e63ee4
DE
2386
2387 /* If we just loaded a CU from a DWO, and we're working with an index
2388 that may badly handle TUs, load all the TUs in that DWO as well.
2389 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2390 if (!per_cu->is_debug_types
cc12ce38 2391 && per_cu->cu != NULL
89e63ee4 2392 && per_cu->cu->dwo_unit != NULL
5989a64e
SM
2393 && dwarf2_per_objfile->per_bfd->index_table != NULL
2394 && dwarf2_per_objfile->per_bfd->index_table->version <= 7
89e63ee4 2395 /* DWP files aren't supported yet. */
ed2dc618 2396 && get_dwp_file (dwarf2_per_objfile) == NULL)
89e63ee4 2397 queue_and_load_all_dwo_tus (per_cu);
95554aad 2398 }
9291a0cd 2399
ed2dc618 2400 process_queue (dwarf2_per_objfile);
9291a0cd
TT
2401
2402 /* Age the cache, releasing compilation units that have not
2403 been used recently. */
ed2dc618 2404 age_cached_comp_units (dwarf2_per_objfile);
9291a0cd
TT
2405}
2406
97a1449a
SM
2407/* Ensure that the symbols for PER_CU have been read in. DWARF2_PER_OBJFILE is
2408 the per-objfile for which this symtab is instantiated.
2409
2410 Returns the resulting symbol table. */
2fdf6df6 2411
43f3e411 2412static struct compunit_symtab *
97a1449a
SM
2413dw2_instantiate_symtab (dwarf2_per_cu_data *per_cu,
2414 dwarf2_per_objfile *dwarf2_per_objfile,
2415 bool skip_partial)
9291a0cd 2416{
5989a64e 2417 gdb_assert (dwarf2_per_objfile->per_bfd->using_index);
af758d11
SM
2418
2419 if (!dwarf2_per_objfile->symtab_set_p (per_cu))
9291a0cd 2420 {
11ed8cad 2421 free_cached_comp_units freer (dwarf2_per_objfile);
c83dd867 2422 scoped_restore decrementer = increment_reading_symtab ();
97a1449a 2423 dw2_do_instantiate_symtab (per_cu, dwarf2_per_objfile, skip_partial);
ed2dc618 2424 process_cu_includes (dwarf2_per_objfile);
9291a0cd 2425 }
f194fefb 2426
af758d11 2427 return dwarf2_per_objfile->get_symtab (per_cu);
9291a0cd
TT
2428}
2429
ff4c9fec 2430/* See declaration. */
f4dc4d17 2431
ff4c9fec 2432dwarf2_per_cu_data *
5989a64e 2433dwarf2_per_bfd::get_cutu (int index)
ff4c9fec 2434{
b76e467d 2435 if (index >= this->all_comp_units.size ())
ff4c9fec 2436 {
b76e467d 2437 index -= this->all_comp_units.size ();
b2bdb8cf 2438 gdb_assert (index < this->all_type_units.size ());
ff4c9fec
SM
2439 return &this->all_type_units[index]->per_cu;
2440 }
f4dc4d17 2441
ff4c9fec
SM
2442 return this->all_comp_units[index];
2443}
f4dc4d17 2444
ff4c9fec 2445/* See declaration. */
2fdf6df6 2446
ff4c9fec 2447dwarf2_per_cu_data *
5989a64e 2448dwarf2_per_bfd::get_cu (int index)
1fd400ff 2449{
b76e467d 2450 gdb_assert (index >= 0 && index < this->all_comp_units.size ());
f4dc4d17 2451
ff4c9fec 2452 return this->all_comp_units[index];
f4dc4d17
DE
2453}
2454
ff4c9fec 2455/* See declaration. */
f4dc4d17 2456
ff4c9fec 2457signatured_type *
5989a64e 2458dwarf2_per_bfd::get_tu (int index)
f4dc4d17 2459{
b2bdb8cf 2460 gdb_assert (index >= 0 && index < this->all_type_units.size ());
f4dc4d17 2461
ff4c9fec 2462 return this->all_type_units[index];
1fd400ff
TT
2463}
2464
d3473f0c
TT
2465/* See read.h. */
2466
2467dwarf2_per_cu_data *
5989a64e 2468dwarf2_per_bfd::allocate_per_cu ()
d3473f0c
TT
2469{
2470 dwarf2_per_cu_data *result = OBSTACK_ZALLOC (&obstack, dwarf2_per_cu_data);
1859c670 2471 result->per_bfd = this;
d3473f0c
TT
2472 result->index = m_num_psymtabs++;
2473 return result;
2474}
2475
2476/* See read.h. */
2477
2478signatured_type *
5989a64e 2479dwarf2_per_bfd::allocate_signatured_type ()
d3473f0c
TT
2480{
2481 signatured_type *result = OBSTACK_ZALLOC (&obstack, signatured_type);
1859c670 2482 result->per_cu.per_bfd = this;
d3473f0c
TT
2483 result->per_cu.index = m_num_psymtabs++;
2484 return result;
2485}
2486
45940949
TT
2487/* Return a new dwarf2_per_cu_data allocated on the dwarf2_per_objfile
2488 obstack, and constructed with the specified field values. */
4b514bc8
JK
2489
2490static dwarf2_per_cu_data *
ed2dc618 2491create_cu_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
4b514bc8
JK
2492 struct dwarf2_section_info *section,
2493 int is_dwz,
2494 sect_offset sect_off, ULONGEST length)
2495{
5989a64e 2496 dwarf2_per_cu_data *the_cu = dwarf2_per_objfile->per_bfd->allocate_per_cu ();
4b514bc8
JK
2497 the_cu->sect_off = sect_off;
2498 the_cu->length = length;
e3b94546 2499 the_cu->dwarf2_per_objfile = dwarf2_per_objfile;
4b514bc8 2500 the_cu->section = section;
5989a64e 2501 the_cu->v.quick = OBSTACK_ZALLOC (&dwarf2_per_objfile->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
12359b5e 2511create_cus_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
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
ed2dc618
SM
2526 = create_cu_from_index_list (dwarf2_per_objfile, section, is_dwz,
2527 sect_off, length);
5989a64e 2528 dwarf2_per_objfile->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
74a0d9f6 2533 the CU objects for this objfile. */
2ec9a5e0 2534
74a0d9f6 2535static void
12359b5e 2536create_cus_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
2ec9a5e0
TT
2537 const gdb_byte *cu_list, offset_type cu_list_elements,
2538 const gdb_byte *dwz_list, offset_type dwz_elements)
2539{
5989a64e
SM
2540 gdb_assert (dwarf2_per_objfile->per_bfd->all_comp_units.empty ());
2541 dwarf2_per_objfile->per_bfd->all_comp_units.reserve
b76e467d 2542 ((cu_list_elements + dwz_elements) / 2);
2ec9a5e0 2543
12359b5e 2544 create_cus_from_index_list (dwarf2_per_objfile, cu_list, cu_list_elements,
5989a64e 2545 &dwarf2_per_objfile->per_bfd->info, 0);
2ec9a5e0
TT
2546
2547 if (dwz_elements == 0)
74a0d9f6 2548 return;
2ec9a5e0 2549
c3699833 2550 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
12359b5e 2551 create_cus_from_index_list (dwarf2_per_objfile, dwz_list, dwz_elements,
b76e467d 2552 &dwz->info, 1);
2ec9a5e0
TT
2553}
2554
1fd400ff 2555/* Create the signatured type hash table from the index. */
673bfd45 2556
74a0d9f6 2557static void
12359b5e
SM
2558create_signatured_type_table_from_index
2559 (struct dwarf2_per_objfile *dwarf2_per_objfile,
2560 struct dwarf2_section_info *section,
2561 const gdb_byte *bytes,
2562 offset_type elements)
1fd400ff 2563{
5989a64e
SM
2564 gdb_assert (dwarf2_per_objfile->per_bfd->all_type_units.empty ());
2565 dwarf2_per_objfile->per_bfd->all_type_units.reserve (elements / 3);
1fd400ff 2566
298e9637 2567 htab_up sig_types_hash = allocate_signatured_type_table ();
1fd400ff 2568
12359b5e 2569 for (offset_type i = 0; i < elements; i += 3)
1fd400ff 2570 {
52dc124a 2571 struct signatured_type *sig_type;
9c541725 2572 ULONGEST signature;
1fd400ff 2573 void **slot;
9c541725 2574 cu_offset type_offset_in_tu;
1fd400ff 2575
74a0d9f6 2576 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
2577 sect_offset sect_off
2578 = (sect_offset) extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2579 type_offset_in_tu
2580 = (cu_offset) extract_unsigned_integer (bytes + 8, 8,
2581 BFD_ENDIAN_LITTLE);
1fd400ff
TT
2582 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2583 bytes += 3 * 8;
2584
5989a64e 2585 sig_type = dwarf2_per_objfile->per_bfd->allocate_signatured_type ();
52dc124a 2586 sig_type->signature = signature;
9c541725 2587 sig_type->type_offset_in_tu = type_offset_in_tu;
3019eac3 2588 sig_type->per_cu.is_debug_types = 1;
8a0459fd 2589 sig_type->per_cu.section = section;
9c541725 2590 sig_type->per_cu.sect_off = sect_off;
e3b94546 2591 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
52dc124a 2592 sig_type->per_cu.v.quick
5989a64e 2593 = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
1fd400ff
TT
2594 struct dwarf2_per_cu_quick_data);
2595
b0b6a987 2596 slot = htab_find_slot (sig_types_hash.get (), sig_type, INSERT);
52dc124a 2597 *slot = sig_type;
1fd400ff 2598
5989a64e 2599 dwarf2_per_objfile->per_bfd->all_type_units.push_back (sig_type);
1fd400ff
TT
2600 }
2601
5989a64e 2602 dwarf2_per_objfile->per_bfd->signatured_types = std::move (sig_types_hash);
1fd400ff
TT
2603}
2604
927aa2e7
JK
2605/* Create the signatured type hash table from .debug_names. */
2606
2607static void
2608create_signatured_type_table_from_debug_names
ed2dc618 2609 (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
2610 const mapped_debug_names &map,
2611 struct dwarf2_section_info *section,
2612 struct dwarf2_section_info *abbrev_section)
2613{
ed2dc618
SM
2614 struct objfile *objfile = dwarf2_per_objfile->objfile;
2615
96b79293
TT
2616 section->read (objfile);
2617 abbrev_section->read (objfile);
927aa2e7 2618
5989a64e
SM
2619 gdb_assert (dwarf2_per_objfile->per_bfd->all_type_units.empty ());
2620 dwarf2_per_objfile->per_bfd->all_type_units.reserve (map.tu_count);
927aa2e7 2621
298e9637 2622 htab_up sig_types_hash = allocate_signatured_type_table ();
927aa2e7
JK
2623
2624 for (uint32_t i = 0; i < map.tu_count; ++i)
2625 {
2626 struct signatured_type *sig_type;
927aa2e7 2627 void **slot;
927aa2e7
JK
2628
2629 sect_offset sect_off
2630 = (sect_offset) (extract_unsigned_integer
2631 (map.tu_table_reordered + i * map.offset_size,
2632 map.offset_size,
2633 map.dwarf5_byte_order));
2634
2635 comp_unit_head cu_header;
ed2dc618
SM
2636 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
2637 abbrev_section,
927aa2e7
JK
2638 section->buffer + to_underlying (sect_off),
2639 rcuh_kind::TYPE);
2640
5989a64e 2641 sig_type = dwarf2_per_objfile->per_bfd->allocate_signatured_type ();
927aa2e7
JK
2642 sig_type->signature = cu_header.signature;
2643 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
2644 sig_type->per_cu.is_debug_types = 1;
2645 sig_type->per_cu.section = section;
2646 sig_type->per_cu.sect_off = sect_off;
e3b94546 2647 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
927aa2e7 2648 sig_type->per_cu.v.quick
5989a64e 2649 = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
927aa2e7
JK
2650 struct dwarf2_per_cu_quick_data);
2651
b0b6a987 2652 slot = htab_find_slot (sig_types_hash.get (), sig_type, INSERT);
927aa2e7
JK
2653 *slot = sig_type;
2654
5989a64e 2655 dwarf2_per_objfile->per_bfd->all_type_units.push_back (sig_type);
927aa2e7
JK
2656 }
2657
5989a64e 2658 dwarf2_per_objfile->per_bfd->signatured_types = std::move (sig_types_hash);
927aa2e7
JK
2659}
2660
9291a0cd
TT
2661/* Read the address map data from the mapped index, and use it to
2662 populate the objfile's psymtabs_addrmap. */
2fdf6df6 2663
9291a0cd 2664static void
ed2dc618
SM
2665create_addrmap_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
2666 struct mapped_index *index)
9291a0cd 2667{
ed2dc618 2668 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 2669 struct gdbarch *gdbarch = objfile->arch ();
9291a0cd 2670 const gdb_byte *iter, *end;
9291a0cd 2671 struct addrmap *mutable_map;
9291a0cd
TT
2672 CORE_ADDR baseaddr;
2673
8268c778
PA
2674 auto_obstack temp_obstack;
2675
9291a0cd
TT
2676 mutable_map = addrmap_create_mutable (&temp_obstack);
2677
f00a2de2
PA
2678 iter = index->address_table.data ();
2679 end = iter + index->address_table.size ();
9291a0cd 2680
b3b3bada 2681 baseaddr = objfile->text_section_offset ();
9291a0cd
TT
2682
2683 while (iter < end)
2684 {
2685 ULONGEST hi, lo, cu_index;
2686 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2687 iter += 8;
2688 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2689 iter += 8;
2690 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2691 iter += 4;
f652bce2 2692
24a55014 2693 if (lo > hi)
f652bce2 2694 {
b98664d3 2695 complaint (_(".gdb_index address table has invalid range (%s - %s)"),
c0cd8254 2696 hex_string (lo), hex_string (hi));
24a55014 2697 continue;
f652bce2 2698 }
24a55014 2699
5989a64e 2700 if (cu_index >= dwarf2_per_objfile->per_bfd->all_comp_units.size ())
f652bce2 2701 {
b98664d3 2702 complaint (_(".gdb_index address table has invalid CU number %u"),
f652bce2 2703 (unsigned) cu_index);
24a55014 2704 continue;
f652bce2 2705 }
24a55014 2706
79748972
TT
2707 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr) - baseaddr;
2708 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr) - baseaddr;
ed2dc618 2709 addrmap_set_empty (mutable_map, lo, hi - 1,
5989a64e 2710 dwarf2_per_objfile->per_bfd->get_cu (cu_index));
9291a0cd
TT
2711 }
2712
d320c2b5 2713 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 2714 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
9291a0cd
TT
2715}
2716
927aa2e7
JK
2717/* Read the address map data from DWARF-5 .debug_aranges, and use it to
2718 populate the objfile's psymtabs_addrmap. */
2719
2720static void
ed2dc618 2721create_addrmap_from_aranges (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
2722 struct dwarf2_section_info *section)
2723{
ed2dc618 2724 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7 2725 bfd *abfd = objfile->obfd;
08feed99 2726 struct gdbarch *gdbarch = objfile->arch ();
b3b3bada 2727 const CORE_ADDR baseaddr = objfile->text_section_offset ();
927aa2e7
JK
2728
2729 auto_obstack temp_obstack;
2730 addrmap *mutable_map = addrmap_create_mutable (&temp_obstack);
2731
2732 std::unordered_map<sect_offset,
2733 dwarf2_per_cu_data *,
2734 gdb::hash_enum<sect_offset>>
2735 debug_info_offset_to_per_cu;
5989a64e 2736 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
927aa2e7 2737 {
927aa2e7
JK
2738 const auto insertpair
2739 = debug_info_offset_to_per_cu.emplace (per_cu->sect_off, per_cu);
2740 if (!insertpair.second)
2741 {
2742 warning (_("Section .debug_aranges in %s has duplicate "
9d8780f0
SM
2743 "debug_info_offset %s, ignoring .debug_aranges."),
2744 objfile_name (objfile), sect_offset_str (per_cu->sect_off));
927aa2e7
JK
2745 return;
2746 }
2747 }
2748
96b79293 2749 section->read (objfile);
927aa2e7
JK
2750
2751 const bfd_endian dwarf5_byte_order = gdbarch_byte_order (gdbarch);
2752
2753 const gdb_byte *addr = section->buffer;
2754
2755 while (addr < section->buffer + section->size)
2756 {
2757 const gdb_byte *const entry_addr = addr;
2758 unsigned int bytes_read;
2759
2760 const LONGEST entry_length = read_initial_length (abfd, addr,
2761 &bytes_read);
2762 addr += bytes_read;
2763
2764 const gdb_byte *const entry_end = addr + entry_length;
2765 const bool dwarf5_is_dwarf64 = bytes_read != 4;
2766 const uint8_t offset_size = dwarf5_is_dwarf64 ? 8 : 4;
2767 if (addr + entry_length > section->buffer + section->size)
2768 {
47e3f474 2769 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2770 "length %s exceeds section length %s, "
2771 "ignoring .debug_aranges."),
47e3f474
TV
2772 objfile_name (objfile),
2773 plongest (entry_addr - section->buffer),
927aa2e7
JK
2774 plongest (bytes_read + entry_length),
2775 pulongest (section->size));
2776 return;
2777 }
2778
2779 /* The version number. */
2780 const uint16_t version = read_2_bytes (abfd, addr);
2781 addr += 2;
2782 if (version != 2)
2783 {
47e3f474 2784 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2785 "has unsupported version %d, ignoring .debug_aranges."),
47e3f474
TV
2786 objfile_name (objfile),
2787 plongest (entry_addr - section->buffer), version);
927aa2e7
JK
2788 return;
2789 }
2790
2791 const uint64_t debug_info_offset
2792 = extract_unsigned_integer (addr, offset_size, dwarf5_byte_order);
2793 addr += offset_size;
2794 const auto per_cu_it
2795 = debug_info_offset_to_per_cu.find (sect_offset (debug_info_offset));
2796 if (per_cu_it == debug_info_offset_to_per_cu.cend ())
2797 {
47e3f474 2798 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2799 "debug_info_offset %s does not exists, "
2800 "ignoring .debug_aranges."),
47e3f474
TV
2801 objfile_name (objfile),
2802 plongest (entry_addr - section->buffer),
927aa2e7
JK
2803 pulongest (debug_info_offset));
2804 return;
2805 }
2806 dwarf2_per_cu_data *const per_cu = per_cu_it->second;
2807
2808 const uint8_t address_size = *addr++;
2809 if (address_size < 1 || address_size > 8)
2810 {
47e3f474 2811 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2812 "address_size %u is invalid, ignoring .debug_aranges."),
47e3f474
TV
2813 objfile_name (objfile),
2814 plongest (entry_addr - section->buffer), address_size);
927aa2e7
JK
2815 return;
2816 }
2817
2818 const uint8_t segment_selector_size = *addr++;
2819 if (segment_selector_size != 0)
2820 {
47e3f474 2821 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2822 "segment_selector_size %u is not supported, "
2823 "ignoring .debug_aranges."),
47e3f474
TV
2824 objfile_name (objfile),
2825 plongest (entry_addr - section->buffer),
927aa2e7
JK
2826 segment_selector_size);
2827 return;
2828 }
2829
2830 /* Must pad to an alignment boundary that is twice the address
2831 size. It is undocumented by the DWARF standard but GCC does
2832 use it. */
2833 for (size_t padding = ((-(addr - section->buffer))
2834 & (2 * address_size - 1));
2835 padding > 0; padding--)
2836 if (*addr++ != 0)
2837 {
47e3f474 2838 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2839 "padding is not zero, ignoring .debug_aranges."),
47e3f474
TV
2840 objfile_name (objfile),
2841 plongest (entry_addr - section->buffer));
927aa2e7
JK
2842 return;
2843 }
2844
2845 for (;;)
2846 {
2847 if (addr + 2 * address_size > entry_end)
2848 {
47e3f474 2849 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2850 "address list is not properly terminated, "
2851 "ignoring .debug_aranges."),
47e3f474
TV
2852 objfile_name (objfile),
2853 plongest (entry_addr - section->buffer));
927aa2e7
JK
2854 return;
2855 }
2856 ULONGEST start = extract_unsigned_integer (addr, address_size,
2857 dwarf5_byte_order);
2858 addr += address_size;
2859 ULONGEST length = extract_unsigned_integer (addr, address_size,
2860 dwarf5_byte_order);
2861 addr += address_size;
2862 if (start == 0 && length == 0)
2863 break;
5989a64e 2864 if (start == 0 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
927aa2e7
JK
2865 {
2866 /* Symbol was eliminated due to a COMDAT group. */
2867 continue;
2868 }
2869 ULONGEST end = start + length;
79748972
TT
2870 start = (gdbarch_adjust_dwarf2_addr (gdbarch, start + baseaddr)
2871 - baseaddr);
2872 end = (gdbarch_adjust_dwarf2_addr (gdbarch, end + baseaddr)
2873 - baseaddr);
927aa2e7
JK
2874 addrmap_set_empty (mutable_map, start, end - 1, per_cu);
2875 }
2876 }
2877
d320c2b5 2878 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 2879 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
927aa2e7
JK
2880}
2881
9291a0cd
TT
2882/* Find a slot in the mapped index INDEX for the object named NAME.
2883 If NAME is found, set *VEC_OUT to point to the CU vector in the
109483d9
PA
2884 constant pool and return true. If NAME cannot be found, return
2885 false. */
2fdf6df6 2886
109483d9 2887static bool
9291a0cd
TT
2888find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2889 offset_type **vec_out)
2890{
0cf03b49 2891 offset_type hash;
9291a0cd 2892 offset_type slot, step;
559a7a62 2893 int (*cmp) (const char *, const char *);
9291a0cd 2894
791afaa2 2895 gdb::unique_xmalloc_ptr<char> without_params;
0cf03b49 2896 if (current_language->la_language == language_cplus
45280282
IB
2897 || current_language->la_language == language_fortran
2898 || current_language->la_language == language_d)
0cf03b49
JK
2899 {
2900 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
2901 not contain any. */
a8719064 2902
72998fb3 2903 if (strchr (name, '(') != NULL)
0cf03b49 2904 {
109483d9 2905 without_params = cp_remove_params (name);
0cf03b49 2906
72998fb3 2907 if (without_params != NULL)
791afaa2 2908 name = without_params.get ();
0cf03b49
JK
2909 }
2910 }
2911
559a7a62 2912 /* Index version 4 did not support case insensitive searches. But the
feea76c2 2913 indices for case insensitive languages are built in lowercase, therefore
559a7a62
JK
2914 simulate our NAME being searched is also lowercased. */
2915 hash = mapped_index_string_hash ((index->version == 4
2916 && case_sensitivity == case_sensitive_off
2917 ? 5 : index->version),
2918 name);
2919
f00a2de2
PA
2920 slot = hash & (index->symbol_table.size () - 1);
2921 step = ((hash * 17) & (index->symbol_table.size () - 1)) | 1;
559a7a62 2922 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
9291a0cd
TT
2923
2924 for (;;)
2925 {
9291a0cd 2926 const char *str;
f00a2de2
PA
2927
2928 const auto &bucket = index->symbol_table[slot];
2929 if (bucket.name == 0 && bucket.vec == 0)
109483d9 2930 return false;
9291a0cd 2931
f00a2de2 2932 str = index->constant_pool + MAYBE_SWAP (bucket.name);
559a7a62 2933 if (!cmp (name, str))
9291a0cd
TT
2934 {
2935 *vec_out = (offset_type *) (index->constant_pool
f00a2de2 2936 + MAYBE_SWAP (bucket.vec));
109483d9 2937 return true;
9291a0cd
TT
2938 }
2939
f00a2de2 2940 slot = (slot + step) & (index->symbol_table.size () - 1);
9291a0cd
TT
2941 }
2942}
2943
4485a1c1
SM
2944/* A helper function that reads the .gdb_index from BUFFER and fills
2945 in MAP. FILENAME is the name of the file containing the data;
d33bc52e 2946 it is used for error reporting. DEPRECATED_OK is true if it is
2ec9a5e0
TT
2947 ok to use deprecated sections.
2948
2949 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2950 out parameters that are filled in with information about the CU and
2951 TU lists in the section.
2952
4485a1c1 2953 Returns true if all went well, false otherwise. */
2fdf6df6 2954
d33bc52e 2955static bool
3810f182 2956read_gdb_index_from_buffer (const char *filename,
4485a1c1
SM
2957 bool deprecated_ok,
2958 gdb::array_view<const gdb_byte> buffer,
2959 struct mapped_index *map,
2960 const gdb_byte **cu_list,
2961 offset_type *cu_list_elements,
2962 const gdb_byte **types_list,
2963 offset_type *types_list_elements)
2964{
2965 const gdb_byte *addr = &buffer[0];
82430852 2966
9291a0cd 2967 /* Version check. */
4485a1c1 2968 offset_type version = MAYBE_SWAP (*(offset_type *) addr);
987d643c 2969 /* Versions earlier than 3 emitted every copy of a psymbol. This
a6e293d1 2970 causes the index to behave very poorly for certain requests. Version 3
831adc1f 2971 contained incomplete addrmap. So, it seems better to just ignore such
481860b3 2972 indices. */
831adc1f 2973 if (version < 4)
481860b3
GB
2974 {
2975 static int warning_printed = 0;
2976 if (!warning_printed)
2977 {
2978 warning (_("Skipping obsolete .gdb_index section in %s."),
2ec9a5e0 2979 filename);
481860b3
GB
2980 warning_printed = 1;
2981 }
2982 return 0;
2983 }
2984 /* Index version 4 uses a different hash function than index version
2985 5 and later.
2986
2987 Versions earlier than 6 did not emit psymbols for inlined
2988 functions. Using these files will cause GDB not to be able to
2989 set breakpoints on inlined functions by name, so we ignore these
e615022a
DE
2990 indices unless the user has done
2991 "set use-deprecated-index-sections on". */
2ec9a5e0 2992 if (version < 6 && !deprecated_ok)
481860b3
GB
2993 {
2994 static int warning_printed = 0;
2995 if (!warning_printed)
2996 {
e615022a
DE
2997 warning (_("\
2998Skipping deprecated .gdb_index section in %s.\n\
2999Do \"set use-deprecated-index-sections on\" before the file is read\n\
3000to use the section anyway."),
2ec9a5e0 3001 filename);
481860b3
GB
3002 warning_printed = 1;
3003 }
3004 return 0;
3005 }
796a7ff8 3006 /* Version 7 indices generated by gold refer to the CU for a symbol instead
8943b874
DE
3007 of the TU (for symbols coming from TUs),
3008 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3009 Plus gold-generated indices can have duplicate entries for global symbols,
3010 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3011 These are just performance bugs, and we can't distinguish gdb-generated
3012 indices from gold-generated ones, so issue no warning here. */
796a7ff8 3013
481860b3 3014 /* Indexes with higher version than the one supported by GDB may be no
594e8718 3015 longer backward compatible. */
796a7ff8 3016 if (version > 8)
594e8718 3017 return 0;
9291a0cd 3018
559a7a62 3019 map->version = version;
9291a0cd 3020
4485a1c1 3021 offset_type *metadata = (offset_type *) (addr + sizeof (offset_type));
1fd400ff 3022
4485a1c1 3023 int i = 0;
2ec9a5e0
TT
3024 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3025 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3026 / 8);
1fd400ff
TT
3027 ++i;
3028
2ec9a5e0
TT
3029 *types_list = addr + MAYBE_SWAP (metadata[i]);
3030 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3031 - MAYBE_SWAP (metadata[i]))
3032 / 8);
987d643c 3033 ++i;
1fd400ff 3034
f00a2de2
PA
3035 const gdb_byte *address_table = addr + MAYBE_SWAP (metadata[i]);
3036 const gdb_byte *address_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3037 map->address_table
3038 = gdb::array_view<const gdb_byte> (address_table, address_table_end);
1fd400ff
TT
3039 ++i;
3040
f00a2de2
PA
3041 const gdb_byte *symbol_table = addr + MAYBE_SWAP (metadata[i]);
3042 const gdb_byte *symbol_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3043 map->symbol_table
3044 = gdb::array_view<mapped_index::symbol_table_slot>
3045 ((mapped_index::symbol_table_slot *) symbol_table,
3046 (mapped_index::symbol_table_slot *) symbol_table_end);
9291a0cd 3047
f00a2de2 3048 ++i;
f9d83a0b 3049 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
1fd400ff 3050
2ec9a5e0
TT
3051 return 1;
3052}
3053
4485a1c1
SM
3054/* Callback types for dwarf2_read_gdb_index. */
3055
3056typedef gdb::function_view
5989a64e 3057 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_bfd *)>
4485a1c1
SM
3058 get_gdb_index_contents_ftype;
3059typedef gdb::function_view
3060 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
3061 get_gdb_index_contents_dwz_ftype;
3062
927aa2e7 3063/* Read .gdb_index. If everything went ok, initialize the "quick"
2ec9a5e0
TT
3064 elements of all the CUs and return 1. Otherwise, return 0. */
3065
3066static int
4485a1c1
SM
3067dwarf2_read_gdb_index
3068 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3069 get_gdb_index_contents_ftype get_gdb_index_contents,
3070 get_gdb_index_contents_dwz_ftype get_gdb_index_contents_dwz)
2ec9a5e0 3071{
2ec9a5e0
TT
3072 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3073 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
4db1a1dc 3074 struct dwz_file *dwz;
12359b5e 3075 struct objfile *objfile = dwarf2_per_objfile->objfile;
2ec9a5e0 3076
4485a1c1 3077 gdb::array_view<const gdb_byte> main_index_contents
5989a64e 3078 = get_gdb_index_contents (objfile, dwarf2_per_objfile->per_bfd);
4485a1c1
SM
3079
3080 if (main_index_contents.empty ())
3081 return 0;
3082
3063847f 3083 std::unique_ptr<struct mapped_index> map (new struct mapped_index);
3810f182 3084 if (!read_gdb_index_from_buffer (objfile_name (objfile),
4485a1c1
SM
3085 use_deprecated_index_sections,
3086 main_index_contents, map.get (), &cu_list,
3087 &cu_list_elements, &types_list,
3088 &types_list_elements))
2ec9a5e0
TT
3089 return 0;
3090
0fefef59 3091 /* Don't use the index if it's empty. */
3063847f 3092 if (map->symbol_table.empty ())
0fefef59
DE
3093 return 0;
3094
2ec9a5e0
TT
3095 /* If there is a .dwz file, read it so we can get its CU list as
3096 well. */
c3699833 3097 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
4db1a1dc 3098 if (dwz != NULL)
2ec9a5e0 3099 {
2ec9a5e0
TT
3100 struct mapped_index dwz_map;
3101 const gdb_byte *dwz_types_ignore;
3102 offset_type dwz_types_elements_ignore;
3103
4485a1c1
SM
3104 gdb::array_view<const gdb_byte> dwz_index_content
3105 = get_gdb_index_contents_dwz (objfile, dwz);
3106
3107 if (dwz_index_content.empty ())
3108 return 0;
3109
3810f182 3110 if (!read_gdb_index_from_buffer (bfd_get_filename (dwz->dwz_bfd.get ()),
00f93c44 3111 1, dwz_index_content, &dwz_map,
4485a1c1
SM
3112 &dwz_list, &dwz_list_elements,
3113 &dwz_types_ignore,
3114 &dwz_types_elements_ignore))
2ec9a5e0
TT
3115 {
3116 warning (_("could not read '.gdb_index' section from %s; skipping"),
00f93c44 3117 bfd_get_filename (dwz->dwz_bfd.get ()));
2ec9a5e0
TT
3118 return 0;
3119 }
3120 }
3121
12359b5e
SM
3122 create_cus_from_index (dwarf2_per_objfile, cu_list, cu_list_elements,
3123 dwz_list, dwz_list_elements);
1fd400ff 3124
8b70b953
TT
3125 if (types_list_elements)
3126 {
8b70b953
TT
3127 /* We can only handle a single .debug_types when we have an
3128 index. */
5989a64e 3129 if (dwarf2_per_objfile->per_bfd->types.size () != 1)
8b70b953
TT
3130 return 0;
3131
5989a64e 3132 dwarf2_section_info *section = &dwarf2_per_objfile->per_bfd->types[0];
8b70b953 3133
12359b5e
SM
3134 create_signatured_type_table_from_index (dwarf2_per_objfile, section,
3135 types_list, types_list_elements);
8b70b953 3136 }
9291a0cd 3137
3063847f 3138 create_addrmap_from_index (dwarf2_per_objfile, map.get ());
9291a0cd 3139
5989a64e
SM
3140 dwarf2_per_objfile->per_bfd->index_table = std::move (map);
3141 dwarf2_per_objfile->per_bfd->using_index = 1;
3142 dwarf2_per_objfile->per_bfd->quick_file_names_table =
3143 create_quick_file_names_table (dwarf2_per_objfile->per_bfd->all_comp_units.size ());
9291a0cd
TT
3144
3145 return 1;
3146}
3147
dee91e82 3148/* die_reader_func for dw2_get_file_names. */
2fdf6df6 3149
dee91e82
DE
3150static void
3151dw2_get_file_names_reader (const struct die_reader_specs *reader,
d521ce57 3152 const gdb_byte *info_ptr,
3e225074 3153 struct die_info *comp_unit_die)
9291a0cd 3154{
dee91e82 3155 struct dwarf2_cu *cu = reader->cu;
ed2dc618 3156 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
5e22e966 3157 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
094b34ac 3158 struct dwarf2_per_cu_data *lh_cu;
9291a0cd 3159 struct attribute *attr;
7b9f3c50
DE
3160 void **slot;
3161 struct quick_file_names *qfn;
9291a0cd 3162
0186c6a7
DE
3163 gdb_assert (! this_cu->is_debug_types);
3164
07261596
TT
3165 /* Our callers never want to match partial units -- instead they
3166 will match the enclosing full CU. */
3167 if (comp_unit_die->tag == DW_TAG_partial_unit)
3168 {
3169 this_cu->v.quick->no_file_data = 1;
3170 return;
3171 }
3172
0186c6a7 3173 lh_cu = this_cu;
7b9f3c50 3174 slot = NULL;
dee91e82 3175
fff8551c 3176 line_header_up lh;
9c541725 3177 sect_offset line_offset {};
fff8551c 3178
dee91e82 3179 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
435d3d88 3180 if (attr != nullptr)
9291a0cd 3181 {
7b9f3c50
DE
3182 struct quick_file_names find_entry;
3183
9c541725 3184 line_offset = (sect_offset) DW_UNSND (attr);
7b9f3c50
DE
3185
3186 /* We may have already read in this line header (TU line header sharing).
3187 If we have we're done. */
094b34ac 3188 find_entry.hash.dwo_unit = cu->dwo_unit;
9c541725 3189 find_entry.hash.line_sect_off = line_offset;
5989a64e 3190 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->quick_file_names_table.get (),
7b9f3c50
DE
3191 &find_entry, INSERT);
3192 if (*slot != NULL)
3193 {
9a3c8263 3194 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
dee91e82 3195 return;
7b9f3c50
DE
3196 }
3197
3019eac3 3198 lh = dwarf_decode_line_header (line_offset, cu);
9291a0cd
TT
3199 }
3200 if (lh == NULL)
3201 {
094b34ac 3202 lh_cu->v.quick->no_file_data = 1;
dee91e82 3203 return;
9291a0cd
TT
3204 }
3205
5989a64e 3206 qfn = XOBNEW (&dwarf2_per_objfile->per_bfd->obstack, struct quick_file_names);
094b34ac 3207 qfn->hash.dwo_unit = cu->dwo_unit;
9c541725 3208 qfn->hash.line_sect_off = line_offset;
7b9f3c50
DE
3209 gdb_assert (slot != NULL);
3210 *slot = qfn;
9291a0cd 3211
d721ba37 3212 file_and_directory fnd = find_file_and_directory (comp_unit_die, cu);
9291a0cd 3213
aa391654
TT
3214 int offset = 0;
3215 if (strcmp (fnd.name, "<unknown>") != 0)
3216 ++offset;
3217
7ba99d21 3218 qfn->num_file_names = offset + lh->file_names_size ();
8d749320 3219 qfn->file_names =
5989a64e 3220 XOBNEWVEC (&dwarf2_per_objfile->per_bfd->obstack, const char *,
45940949 3221 qfn->num_file_names);
aa391654
TT
3222 if (offset != 0)
3223 qfn->file_names[0] = xstrdup (fnd.name);
7ba99d21 3224 for (int i = 0; i < lh->file_names_size (); ++i)
03075812
TT
3225 qfn->file_names[i + offset] = lh->file_full_name (i + 1,
3226 fnd.comp_dir).release ();
7b9f3c50 3227 qfn->real_names = NULL;
9291a0cd 3228
094b34ac 3229 lh_cu->v.quick->file_names = qfn;
dee91e82
DE
3230}
3231
3232/* A helper for the "quick" functions which attempts to read the line
3233 table for THIS_CU. */
3234
3235static struct quick_file_names *
ab432490
SM
3236dw2_get_file_names (dwarf2_per_cu_data *this_cu,
3237 dwarf2_per_objfile *per_objfile)
dee91e82 3238{
0186c6a7
DE
3239 /* This should never be called for TUs. */
3240 gdb_assert (! this_cu->is_debug_types);
3241 /* Nor type unit groups. */
197400e8 3242 gdb_assert (! this_cu->type_unit_group_p ());
f4dc4d17 3243
dee91e82
DE
3244 if (this_cu->v.quick->file_names != NULL)
3245 return this_cu->v.quick->file_names;
3246 /* If we know there is no line data, no point in looking again. */
3247 if (this_cu->v.quick->no_file_data)
3248 return NULL;
3249
ab432490 3250 cutu_reader reader (this_cu, per_objfile);
c0ab21c2 3251 if (!reader.dummy_p)
3e225074 3252 dw2_get_file_names_reader (&reader, reader.info_ptr, reader.comp_unit_die);
dee91e82
DE
3253
3254 if (this_cu->v.quick->no_file_data)
3255 return NULL;
3256 return this_cu->v.quick->file_names;
9291a0cd
TT
3257}
3258
3259/* A helper for the "quick" functions which computes and caches the
7b9f3c50 3260 real path for a given file name from the line table. */
2fdf6df6 3261
9291a0cd 3262static const char *
45940949 3263dw2_get_real_path (struct dwarf2_per_objfile *dwarf2_per_objfile,
7b9f3c50 3264 struct quick_file_names *qfn, int index)
9291a0cd 3265{
7b9f3c50 3266 if (qfn->real_names == NULL)
5989a64e 3267 qfn->real_names = OBSTACK_CALLOC (&dwarf2_per_objfile->per_bfd->obstack,
26f2dc30 3268 qfn->num_file_names, const char *);
9291a0cd 3269
7b9f3c50 3270 if (qfn->real_names[index] == NULL)
14278e1f 3271 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]).release ();
9291a0cd 3272
7b9f3c50 3273 return qfn->real_names[index];
9291a0cd
TT
3274}
3275
3276static struct symtab *
3277dw2_find_last_source_symtab (struct objfile *objfile)
3278{
ed2dc618
SM
3279 struct dwarf2_per_objfile *dwarf2_per_objfile
3280 = get_dwarf2_per_objfile (objfile);
5989a64e 3281 dwarf2_per_cu_data *dwarf_cu = dwarf2_per_objfile->per_bfd->all_comp_units.back ();
97a1449a
SM
3282 compunit_symtab *cust
3283 = dw2_instantiate_symtab (dwarf_cu, dwarf2_per_objfile, false);
ae2de4f8 3284
43f3e411
DE
3285 if (cust == NULL)
3286 return NULL;
ed2dc618 3287
43f3e411 3288 return compunit_primary_filetab (cust);
9291a0cd
TT
3289}
3290
7b9f3c50
DE
3291/* Traversal function for dw2_forget_cached_source_info. */
3292
3293static int
3294dw2_free_cached_file_names (void **slot, void *info)
9291a0cd 3295{
7b9f3c50 3296 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
9291a0cd 3297
7b9f3c50 3298 if (file_data->real_names)
9291a0cd 3299 {
7b9f3c50 3300 int i;
9291a0cd 3301
7b9f3c50 3302 for (i = 0; i < file_data->num_file_names; ++i)
9291a0cd 3303 {
7b9f3c50
DE
3304 xfree ((void*) file_data->real_names[i]);
3305 file_data->real_names[i] = NULL;
9291a0cd
TT
3306 }
3307 }
7b9f3c50
DE
3308
3309 return 1;
3310}
3311
3312static void
3313dw2_forget_cached_source_info (struct objfile *objfile)
3314{
ed2dc618
SM
3315 struct dwarf2_per_objfile *dwarf2_per_objfile
3316 = get_dwarf2_per_objfile (objfile);
7b9f3c50 3317
5989a64e 3318 htab_traverse_noresize (dwarf2_per_objfile->per_bfd->quick_file_names_table.get (),
7b9f3c50 3319 dw2_free_cached_file_names, NULL);
9291a0cd
TT
3320}
3321
f8eba3c6
TT
3322/* Helper function for dw2_map_symtabs_matching_filename that expands
3323 the symtabs and calls the iterator. */
3324
3325static int
3326dw2_map_expand_apply (struct objfile *objfile,
3327 struct dwarf2_per_cu_data *per_cu,
f5b95b50 3328 const char *name, const char *real_path,
14bc53a8 3329 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 3330{
43f3e411 3331 struct compunit_symtab *last_made = objfile->compunit_symtabs;
f8eba3c6
TT
3332
3333 /* Don't visit already-expanded CUs. */
af758d11
SM
3334 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3335 if (per_objfile->symtab_set_p (per_cu))
f8eba3c6
TT
3336 return 0;
3337
3338 /* This may expand more than one symtab, and we want to iterate over
3339 all of them. */
97a1449a 3340 dw2_instantiate_symtab (per_cu, per_objfile, false);
f8eba3c6 3341
14bc53a8
PA
3342 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
3343 last_made, callback);
f8eba3c6
TT
3344}
3345
3346/* Implementation of the map_symtabs_matching_filename method. */
3347
14bc53a8
PA
3348static bool
3349dw2_map_symtabs_matching_filename
3350 (struct objfile *objfile, const char *name, const char *real_path,
3351 gdb::function_view<bool (symtab *)> callback)
9291a0cd 3352{
c011a4f4 3353 const char *name_basename = lbasename (name);
ed2dc618
SM
3354 struct dwarf2_per_objfile *dwarf2_per_objfile
3355 = get_dwarf2_per_objfile (objfile);
ae2de4f8 3356
848e3e78
DE
3357 /* The rule is CUs specify all the files, including those used by
3358 any TU, so there's no need to scan TUs here. */
f4dc4d17 3359
5989a64e 3360 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
9291a0cd 3361 {
3d7bb9d9 3362 /* We only need to look at symtabs not already expanded. */
af758d11 3363 if (dwarf2_per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3364 continue;
3365
ab432490
SM
3366 quick_file_names *file_data
3367 = dw2_get_file_names (per_cu, dwarf2_per_objfile);
7b9f3c50 3368 if (file_data == NULL)
9291a0cd
TT
3369 continue;
3370
b76e467d 3371 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3372 {
7b9f3c50 3373 const char *this_name = file_data->file_names[j];
da235a7c 3374 const char *this_real_name;
9291a0cd 3375
af529f8f 3376 if (compare_filenames_for_search (this_name, name))
9291a0cd 3377 {
f5b95b50 3378 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3379 callback))
3380 return true;
288e77a7 3381 continue;
4aac40c8 3382 }
9291a0cd 3383
c011a4f4
DE
3384 /* Before we invoke realpath, which can get expensive when many
3385 files are involved, do a quick comparison of the basenames. */
3386 if (! basenames_may_differ
3387 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3388 continue;
3389
45940949
TT
3390 this_real_name = dw2_get_real_path (dwarf2_per_objfile,
3391 file_data, j);
da235a7c 3392 if (compare_filenames_for_search (this_real_name, name))
9291a0cd 3393 {
da235a7c 3394 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3395 callback))
3396 return true;
288e77a7 3397 continue;
da235a7c 3398 }
9291a0cd 3399
da235a7c
JK
3400 if (real_path != NULL)
3401 {
af529f8f
JK
3402 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3403 gdb_assert (IS_ABSOLUTE_PATH (name));
7b9f3c50 3404 if (this_real_name != NULL
af529f8f 3405 && FILENAME_CMP (real_path, this_real_name) == 0)
9291a0cd 3406 {
f5b95b50 3407 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3408 callback))
3409 return true;
288e77a7 3410 continue;
9291a0cd
TT
3411 }
3412 }
3413 }
3414 }
3415
14bc53a8 3416 return false;
9291a0cd
TT
3417}
3418
da51c347
DE
3419/* Struct used to manage iterating over all CUs looking for a symbol. */
3420
3421struct dw2_symtab_iterator
9291a0cd 3422{
ed2dc618
SM
3423 /* The dwarf2_per_objfile owning the CUs we are iterating on. */
3424 struct dwarf2_per_objfile *dwarf2_per_objfile;
2b79f376
SM
3425 /* If set, only look for symbols that match that block. Valid values are
3426 GLOBAL_BLOCK and STATIC_BLOCK. */
c7f839cb 3427 gdb::optional<block_enum> block_index;
da51c347
DE
3428 /* The kind of symbol we're looking for. */
3429 domain_enum domain;
3430 /* The list of CUs from the index entry of the symbol,
3431 or NULL if not found. */
3432 offset_type *vec;
3433 /* The next element in VEC to look at. */
3434 int next;
3435 /* The number of elements in VEC, or zero if there is no match. */
3436 int length;
8943b874
DE
3437 /* Have we seen a global version of the symbol?
3438 If so we can ignore all further global instances.
3439 This is to work around gold/15646, inefficient gold-generated
3440 indices. */
3441 int global_seen;
da51c347 3442};
9291a0cd 3443
2b79f376 3444/* Initialize the index symtab iterator ITER. */
2fdf6df6 3445
9291a0cd 3446static void
da51c347 3447dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
ed2dc618 3448 struct dwarf2_per_objfile *dwarf2_per_objfile,
c7f839cb 3449 gdb::optional<block_enum> block_index,
da51c347
DE
3450 domain_enum domain,
3451 const char *name)
3452{
ed2dc618 3453 iter->dwarf2_per_objfile = dwarf2_per_objfile;
da51c347
DE
3454 iter->block_index = block_index;
3455 iter->domain = domain;
3456 iter->next = 0;
8943b874 3457 iter->global_seen = 0;
da51c347 3458
5989a64e 3459 mapped_index *index = dwarf2_per_objfile->per_bfd->index_table.get ();
ed2dc618
SM
3460
3461 /* index is NULL if OBJF_READNOW. */
3462 if (index != NULL && find_slot_in_mapped_hash (index, name, &iter->vec))
da51c347
DE
3463 iter->length = MAYBE_SWAP (*iter->vec);
3464 else
3465 {
3466 iter->vec = NULL;
3467 iter->length = 0;
3468 }
3469}
3470
3471/* Return the next matching CU or NULL if there are no more. */
3472
3473static struct dwarf2_per_cu_data *
3474dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3475{
ed2dc618
SM
3476 struct dwarf2_per_objfile *dwarf2_per_objfile = iter->dwarf2_per_objfile;
3477
da51c347
DE
3478 for ( ; iter->next < iter->length; ++iter->next)
3479 {
3480 offset_type cu_index_and_attrs =
3481 MAYBE_SWAP (iter->vec[iter->next + 1]);
3482 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
da51c347
DE
3483 gdb_index_symbol_kind symbol_kind =
3484 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3485 /* Only check the symbol attributes if they're present.
3486 Indices prior to version 7 don't record them,
3487 and indices >= 7 may elide them for certain symbols
3488 (gold does this). */
3489 int attrs_valid =
5989a64e 3490 (dwarf2_per_objfile->per_bfd->index_table->version >= 7
da51c347
DE
3491 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3492
3190f0c6 3493 /* Don't crash on bad data. */
5989a64e
SM
3494 if (cu_index >= (dwarf2_per_objfile->per_bfd->all_comp_units.size ()
3495 + dwarf2_per_objfile->per_bfd->all_type_units.size ()))
3190f0c6 3496 {
b98664d3 3497 complaint (_(".gdb_index entry has bad CU index"
4262abfb
JK
3498 " [in module %s]"),
3499 objfile_name (dwarf2_per_objfile->objfile));
3190f0c6
DE
3500 continue;
3501 }
3502
5989a64e 3503 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->per_bfd->get_cutu (cu_index);
3190f0c6 3504
da51c347 3505 /* Skip if already read in. */
af758d11 3506 if (dwarf2_per_objfile->symtab_set_p (per_cu))
da51c347
DE
3507 continue;
3508
8943b874
DE
3509 /* Check static vs global. */
3510 if (attrs_valid)
3511 {
2b79f376
SM
3512 bool is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3513
3514 if (iter->block_index.has_value ())
3515 {
3516 bool want_static = *iter->block_index == STATIC_BLOCK;
3517
3518 if (is_static != want_static)
3519 continue;
3520 }
3521
8943b874
DE
3522 /* Work around gold/15646. */
3523 if (!is_static && iter->global_seen)
3524 continue;
3525 if (!is_static)
3526 iter->global_seen = 1;
3527 }
da51c347
DE
3528
3529 /* Only check the symbol's kind if it has one. */
3530 if (attrs_valid)
3531 {
3532 switch (iter->domain)
3533 {
3534 case VAR_DOMAIN:
3535 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3536 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3537 /* Some types are also in VAR_DOMAIN. */
3538 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3539 continue;
3540 break;
3541 case STRUCT_DOMAIN:
3542 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3543 continue;
3544 break;
3545 case LABEL_DOMAIN:
3546 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3547 continue;
3548 break;
59c35742
AB
3549 case MODULE_DOMAIN:
3550 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3551 continue;
3552 break;
da51c347
DE
3553 default:
3554 break;
3555 }
3556 }
3557
3558 ++iter->next;
3559 return per_cu;
3560 }
3561
3562 return NULL;
3563}
3564
43f3e411 3565static struct compunit_symtab *
c7f839cb 3566dw2_lookup_symbol (struct objfile *objfile, block_enum block_index,
da51c347 3567 const char *name, domain_enum domain)
9291a0cd 3568{
43f3e411 3569 struct compunit_symtab *stab_best = NULL;
ed2dc618
SM
3570 struct dwarf2_per_objfile *dwarf2_per_objfile
3571 = get_dwarf2_per_objfile (objfile);
9291a0cd 3572
b5ec771e
PA
3573 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
3574
ed2dc618
SM
3575 struct dw2_symtab_iterator iter;
3576 struct dwarf2_per_cu_data *per_cu;
da51c347 3577
2b79f376 3578 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, block_index, domain, name);
9291a0cd 3579
ed2dc618
SM
3580 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3581 {
3582 struct symbol *sym, *with_opaque = NULL;
97a1449a
SM
3583 struct compunit_symtab *stab
3584 = dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, false);
ed2dc618 3585 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 3586 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
da51c347 3587
ed2dc618
SM
3588 sym = block_find_symbol (block, name, domain,
3589 block_find_non_opaque_type_preferred,
3590 &with_opaque);
b2e2f908 3591
ed2dc618
SM
3592 /* Some caution must be observed with overloaded functions
3593 and methods, since the index will not contain any overload
3594 information (but NAME might contain it). */
da51c347 3595
ed2dc618
SM
3596 if (sym != NULL
3597 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
3598 return stab;
3599 if (with_opaque != NULL
3600 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
3601 stab_best = stab;
da51c347 3602
ed2dc618 3603 /* Keep looking through other CUs. */
9291a0cd 3604 }
9291a0cd 3605
da51c347 3606 return stab_best;
9291a0cd
TT
3607}
3608
3609static void
3610dw2_print_stats (struct objfile *objfile)
3611{
ed2dc618
SM
3612 struct dwarf2_per_objfile *dwarf2_per_objfile
3613 = get_dwarf2_per_objfile (objfile);
5989a64e
SM
3614 int total = (dwarf2_per_objfile->per_bfd->all_comp_units.size ()
3615 + dwarf2_per_objfile->per_bfd->all_type_units.size ());
ed2dc618 3616 int count = 0;
9291a0cd 3617
ed2dc618 3618 for (int i = 0; i < total; ++i)
9291a0cd 3619 {
5989a64e 3620 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->per_bfd->get_cutu (i);
9291a0cd 3621
af758d11 3622 if (!dwarf2_per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3623 ++count;
3624 }
e4a48d9d 3625 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
9291a0cd
TT
3626 printf_filtered (_(" Number of unread CUs: %d\n"), count);
3627}
3628
779bd270
DE
3629/* This dumps minimal information about the index.
3630 It is called via "mt print objfiles".
3631 One use is to verify .gdb_index has been loaded by the
3632 gdb.dwarf2/gdb-index.exp testcase. */
3633
9291a0cd
TT
3634static void
3635dw2_dump (struct objfile *objfile)
3636{
ed2dc618
SM
3637 struct dwarf2_per_objfile *dwarf2_per_objfile
3638 = get_dwarf2_per_objfile (objfile);
3639
5989a64e 3640 gdb_assert (dwarf2_per_objfile->per_bfd->using_index);
779bd270 3641 printf_filtered (".gdb_index:");
5989a64e 3642 if (dwarf2_per_objfile->per_bfd->index_table != NULL)
779bd270
DE
3643 {
3644 printf_filtered (" version %d\n",
5989a64e 3645 dwarf2_per_objfile->per_bfd->index_table->version);
779bd270
DE
3646 }
3647 else
3648 printf_filtered (" faked for \"readnow\"\n");
3649 printf_filtered ("\n");
9291a0cd
TT
3650}
3651
9291a0cd
TT
3652static void
3653dw2_expand_symtabs_for_function (struct objfile *objfile,
3654 const char *func_name)
3655{
ed2dc618
SM
3656 struct dwarf2_per_objfile *dwarf2_per_objfile
3657 = get_dwarf2_per_objfile (objfile);
da51c347 3658
ed2dc618
SM
3659 struct dw2_symtab_iterator iter;
3660 struct dwarf2_per_cu_data *per_cu;
da51c347 3661
2b79f376 3662 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, {}, VAR_DOMAIN, func_name);
da51c347 3663
ed2dc618 3664 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
97a1449a 3665 dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, false);
da51c347 3666
9291a0cd
TT
3667}
3668
3669static void
3670dw2_expand_all_symtabs (struct objfile *objfile)
3671{
ed2dc618
SM
3672 struct dwarf2_per_objfile *dwarf2_per_objfile
3673 = get_dwarf2_per_objfile (objfile);
5989a64e
SM
3674 int total_units = (dwarf2_per_objfile->per_bfd->all_comp_units.size ()
3675 + dwarf2_per_objfile->per_bfd->all_type_units.size ());
9291a0cd 3676
ed2dc618 3677 for (int i = 0; i < total_units; ++i)
9291a0cd 3678 {
5989a64e 3679 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->per_bfd->get_cutu (i);
9291a0cd 3680
58f0c718
TT
3681 /* We don't want to directly expand a partial CU, because if we
3682 read it with the wrong language, then assertion failures can
3683 be triggered later on. See PR symtab/23010. So, tell
3684 dw2_instantiate_symtab to skip partial CUs -- any important
3685 partial CU will be read via DW_TAG_imported_unit anyway. */
97a1449a 3686 dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, true);
9291a0cd
TT
3687 }
3688}
3689
3690static void
652a8996
JK
3691dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3692 const char *fullname)
9291a0cd 3693{
ed2dc618
SM
3694 struct dwarf2_per_objfile *dwarf2_per_objfile
3695 = get_dwarf2_per_objfile (objfile);
d4637a04
DE
3696
3697 /* We don't need to consider type units here.
3698 This is only called for examining code, e.g. expand_line_sal.
3699 There can be an order of magnitude (or more) more type units
3700 than comp units, and we avoid them if we can. */
3701
5989a64e 3702 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
9291a0cd 3703 {
3d7bb9d9 3704 /* We only need to look at symtabs not already expanded. */
af758d11 3705 if (dwarf2_per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3706 continue;
3707
ab432490
SM
3708 quick_file_names *file_data
3709 = dw2_get_file_names (per_cu, dwarf2_per_objfile);
7b9f3c50 3710 if (file_data == NULL)
9291a0cd
TT
3711 continue;
3712
b76e467d 3713 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3714 {
652a8996
JK
3715 const char *this_fullname = file_data->file_names[j];
3716
3717 if (filename_cmp (this_fullname, fullname) == 0)
9291a0cd 3718 {
97a1449a 3719 dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, false);
9291a0cd
TT
3720 break;
3721 }
3722 }
3723 }
3724}
3725
9a0bacfb
TV
3726static void
3727dw2_expand_symtabs_matching_symbol
3728 (mapped_index_base &index,
3729 const lookup_name_info &lookup_name_in,
3730 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
3731 enum search_domain kind,
3732 gdb::function_view<bool (offset_type)> match_callback);
3733
3734static void
3735dw2_expand_symtabs_matching_one
97a1449a
SM
3736 (dwarf2_per_cu_data *per_cu,
3737 dwarf2_per_objfile *per_objfile,
9a0bacfb
TV
3738 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
3739 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify);
3740
9291a0cd 3741static void
199b4314
TT
3742dw2_map_matching_symbols
3743 (struct objfile *objfile,
b054970d 3744 const lookup_name_info &name, domain_enum domain,
199b4314
TT
3745 int global,
3746 gdb::function_view<symbol_found_callback_ftype> callback,
199b4314 3747 symbol_compare_ftype *ordered_compare)
9291a0cd 3748{
1aa98955
TV
3749 /* Used for Ada. */
3750 struct dwarf2_per_objfile *dwarf2_per_objfile
3751 = get_dwarf2_per_objfile (objfile);
3752
9a0bacfb
TV
3753 const block_enum block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
3754
5989a64e 3755 if (dwarf2_per_objfile->per_bfd->index_table != nullptr)
1aa98955
TV
3756 {
3757 /* Ada currently doesn't support .gdb_index (see PR24713). We can get
3758 here though if the current language is Ada for a non-Ada objfile
9a0bacfb 3759 using GNU index. */
5989a64e 3760 mapped_index &index = *dwarf2_per_objfile->per_bfd->index_table;
1aa98955 3761
9a0bacfb
TV
3762 const char *match_name = name.ada ().lookup_name ().c_str ();
3763 auto matcher = [&] (const char *symname)
3764 {
3765 if (ordered_compare == nullptr)
3766 return true;
3767 return ordered_compare (symname, match_name) == 0;
3768 };
3769
3770 dw2_expand_symtabs_matching_symbol (index, name, matcher, ALL_DOMAIN,
3771 [&] (offset_type namei)
3772 {
3773 struct dw2_symtab_iterator iter;
3774 struct dwarf2_per_cu_data *per_cu;
3775
3776 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, block_kind, domain,
3777 match_name);
3778 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
97a1449a
SM
3779 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile, nullptr,
3780 nullptr);
9a0bacfb
TV
3781 return true;
3782 });
3783 }
3784 else
3785 {
3786 /* We have -readnow: no .gdb_index, but no partial symtabs either. So,
3787 proceed assuming all symtabs have been read in. */
3788 }
1aa98955
TV
3789
3790 for (compunit_symtab *cust : objfile->compunits ())
3791 {
3792 const struct block *block;
3793
3794 if (cust == NULL)
3795 continue;
3796 block = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), block_kind);
3797 if (!iterate_over_symbols_terminated (block, name,
3798 domain, callback))
3799 return;
3800 }
9291a0cd
TT
3801}
3802
e1ef7d7a
PA
3803/* Starting from a search name, return the string that finds the upper
3804 bound of all strings that start with SEARCH_NAME in a sorted name
3805 list. Returns the empty string to indicate that the upper bound is
3806 the end of the list. */
3807
3808static std::string
3809make_sort_after_prefix_name (const char *search_name)
3810{
3811 /* When looking to complete "func", we find the upper bound of all
3812 symbols that start with "func" by looking for where we'd insert
3813 the closest string that would follow "func" in lexicographical
3814 order. Usually, that's "func"-with-last-character-incremented,
3815 i.e. "fund". Mind non-ASCII characters, though. Usually those
3816 will be UTF-8 multi-byte sequences, but we can't be certain.
3817 Especially mind the 0xff character, which is a valid character in
3818 non-UTF-8 source character sets (e.g. Latin1 'ÿ'), and we can't
3819 rule out compilers allowing it in identifiers. Note that
3820 conveniently, strcmp/strcasecmp are specified to compare
3821 characters interpreted as unsigned char. So what we do is treat
3822 the whole string as a base 256 number composed of a sequence of
3823 base 256 "digits" and add 1 to it. I.e., adding 1 to 0xff wraps
3824 to 0, and carries 1 to the following more-significant position.
3825 If the very first character in SEARCH_NAME ends up incremented
3826 and carries/overflows, then the upper bound is the end of the
3827 list. The string after the empty string is also the empty
3828 string.
3829
3830 Some examples of this operation:
3831
3832 SEARCH_NAME => "+1" RESULT
3833
3834 "abc" => "abd"
3835 "ab\xff" => "ac"
3836 "\xff" "a" "\xff" => "\xff" "b"
3837 "\xff" => ""
3838 "\xff\xff" => ""
3839 "" => ""
3840
3841 Then, with these symbols for example:
3842
3843 func
3844 func1
3845 fund
3846
3847 completing "func" looks for symbols between "func" and
3848 "func"-with-last-character-incremented, i.e. "fund" (exclusive),
3849 which finds "func" and "func1", but not "fund".
3850
3851 And with:
3852
3853 funcÿ (Latin1 'ÿ' [0xff])
3854 funcÿ1
3855 fund
3856
3857 completing "funcÿ" looks for symbols between "funcÿ" and "fund"
3858 (exclusive), which finds "funcÿ" and "funcÿ1", but not "fund".
3859
3860 And with:
3861
3862 ÿÿ (Latin1 'ÿ' [0xff])
3863 ÿÿ1
3864
3865 completing "ÿ" or "ÿÿ" looks for symbols between between "ÿÿ" and
3866 the end of the list.
3867 */
3868 std::string after = search_name;
3869 while (!after.empty () && (unsigned char) after.back () == 0xff)
3870 after.pop_back ();
3871 if (!after.empty ())
3872 after.back () = (unsigned char) after.back () + 1;
3873 return after;
3874}
3875
5c58de74 3876/* See declaration. */
61d96d7e 3877
5c58de74
PA
3878std::pair<std::vector<name_component>::const_iterator,
3879 std::vector<name_component>::const_iterator>
44ed8f3e 3880mapped_index_base::find_name_components_bounds
3b00ef10 3881 (const lookup_name_info &lookup_name_without_params, language lang) const
3f563c84 3882{
5c58de74
PA
3883 auto *name_cmp
3884 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3f563c84 3885
3b00ef10 3886 const char *lang_name
e0802d59 3887 = lookup_name_without_params.language_lookup_name (lang);
9291a0cd 3888
3f563c84
PA
3889 /* Comparison function object for lower_bound that matches against a
3890 given symbol name. */
3891 auto lookup_compare_lower = [&] (const name_component &elem,
3892 const char *name)
3893 {
5c58de74 3894 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
3895 const char *elem_name = elem_qualified + elem.name_offset;
3896 return name_cmp (elem_name, name) < 0;
3897 };
3898
3899 /* Comparison function object for upper_bound that matches against a
3900 given symbol name. */
3901 auto lookup_compare_upper = [&] (const char *name,
3902 const name_component &elem)
3903 {
5c58de74 3904 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
3905 const char *elem_name = elem_qualified + elem.name_offset;
3906 return name_cmp (name, elem_name) < 0;
3907 };
3908
5c58de74
PA
3909 auto begin = this->name_components.begin ();
3910 auto end = this->name_components.end ();
3f563c84
PA
3911
3912 /* Find the lower bound. */
3913 auto lower = [&] ()
3914 {
3b00ef10 3915 if (lookup_name_without_params.completion_mode () && lang_name[0] == '\0')
3f563c84
PA
3916 return begin;
3917 else
3b00ef10 3918 return std::lower_bound (begin, end, lang_name, lookup_compare_lower);
3f563c84
PA
3919 } ();
3920
3921 /* Find the upper bound. */
3922 auto upper = [&] ()
3923 {
5c58de74 3924 if (lookup_name_without_params.completion_mode ())
3f563c84 3925 {
e1ef7d7a
PA
3926 /* In completion mode, we want UPPER to point past all
3927 symbols names that have the same prefix. I.e., with
3928 these symbols, and completing "func":
3929
3930 function << lower bound
3931 function1
3932 other_function << upper bound
3933
3934 We find the upper bound by looking for the insertion
3935 point of "func"-with-last-character-incremented,
3936 i.e. "fund". */
3b00ef10 3937 std::string after = make_sort_after_prefix_name (lang_name);
e1ef7d7a 3938 if (after.empty ())
3f563c84 3939 return end;
e6b2f5ef
PA
3940 return std::lower_bound (lower, end, after.c_str (),
3941 lookup_compare_lower);
3f563c84
PA
3942 }
3943 else
3b00ef10 3944 return std::upper_bound (lower, end, lang_name, lookup_compare_upper);
3f563c84
PA
3945 } ();
3946
5c58de74
PA
3947 return {lower, upper};
3948}
3949
3950/* See declaration. */
3951
3952void
44ed8f3e 3953mapped_index_base::build_name_components ()
5c58de74
PA
3954{
3955 if (!this->name_components.empty ())
3956 return;
3957
3958 this->name_components_casing = case_sensitivity;
3959 auto *name_cmp
3960 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3961
3962 /* The code below only knows how to break apart components of C++
3963 symbol names (and other languages that use '::' as
3b00ef10 3964 namespace/module separator) and Ada symbol names. */
44ed8f3e
PA
3965 auto count = this->symbol_name_count ();
3966 for (offset_type idx = 0; idx < count; idx++)
5c58de74 3967 {
44ed8f3e 3968 if (this->symbol_name_slot_invalid (idx))
5c58de74
PA
3969 continue;
3970
3971 const char *name = this->symbol_name_at (idx);
3972
3973 /* Add each name component to the name component table. */
3974 unsigned int previous_len = 0;
3b00ef10
TT
3975
3976 if (strstr (name, "::") != nullptr)
3977 {
3978 for (unsigned int current_len = cp_find_first_component (name);
3979 name[current_len] != '\0';
3980 current_len += cp_find_first_component (name + current_len))
3981 {
3982 gdb_assert (name[current_len] == ':');
3983 this->name_components.push_back ({previous_len, idx});
3984 /* Skip the '::'. */
3985 current_len += 2;
3986 previous_len = current_len;
3987 }
3988 }
3989 else
5c58de74 3990 {
3b00ef10
TT
3991 /* Handle the Ada encoded (aka mangled) form here. */
3992 for (const char *iter = strstr (name, "__");
3993 iter != nullptr;
3994 iter = strstr (iter, "__"))
3995 {
3996 this->name_components.push_back ({previous_len, idx});
3997 iter += 2;
3998 previous_len = iter - name;
3999 }
5c58de74 4000 }
3b00ef10 4001
5c58de74
PA
4002 this->name_components.push_back ({previous_len, idx});
4003 }
4004
4005 /* Sort name_components elements by name. */
4006 auto name_comp_compare = [&] (const name_component &left,
4007 const name_component &right)
4008 {
4009 const char *left_qualified = this->symbol_name_at (left.idx);
4010 const char *right_qualified = this->symbol_name_at (right.idx);
4011
4012 const char *left_name = left_qualified + left.name_offset;
4013 const char *right_name = right_qualified + right.name_offset;
4014
4015 return name_cmp (left_name, right_name) < 0;
4016 };
4017
4018 std::sort (this->name_components.begin (),
4019 this->name_components.end (),
4020 name_comp_compare);
4021}
4022
4023/* Helper for dw2_expand_symtabs_matching that works with a
44ed8f3e
PA
4024 mapped_index_base instead of the containing objfile. This is split
4025 to a separate function in order to be able to unit test the
4026 name_components matching using a mock mapped_index_base. For each
5c58de74 4027 symbol name that matches, calls MATCH_CALLBACK, passing it the
44ed8f3e 4028 symbol's index in the mapped_index_base symbol table. */
5c58de74
PA
4029
4030static void
4031dw2_expand_symtabs_matching_symbol
44ed8f3e 4032 (mapped_index_base &index,
5c58de74
PA
4033 const lookup_name_info &lookup_name_in,
4034 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4035 enum search_domain kind,
3b00ef10 4036 gdb::function_view<bool (offset_type)> match_callback)
5c58de74
PA
4037{
4038 lookup_name_info lookup_name_without_params
4039 = lookup_name_in.make_ignore_params ();
5c58de74
PA
4040
4041 /* Build the symbol name component sorted vector, if we haven't
4042 yet. */
4043 index.build_name_components ();
4044
3f563c84
PA
4045 /* The same symbol may appear more than once in the range though.
4046 E.g., if we're looking for symbols that complete "w", and we have
4047 a symbol named "w1::w2", we'll find the two name components for
4048 that same symbol in the range. To be sure we only call the
4049 callback once per symbol, we first collect the symbol name
4050 indexes that matched in a temporary vector and ignore
4051 duplicates. */
4052 std::vector<offset_type> matches;
3f563c84 4053
3b00ef10
TT
4054 struct name_and_matcher
4055 {
4056 symbol_name_matcher_ftype *matcher;
ecc6c606 4057 const char *name;
3b00ef10
TT
4058
4059 bool operator== (const name_and_matcher &other) const
3f563c84 4060 {
ecc6c606 4061 return matcher == other.matcher && strcmp (name, other.name) == 0;
3b00ef10
TT
4062 }
4063 };
4064
4065 /* A vector holding all the different symbol name matchers, for all
4066 languages. */
4067 std::vector<name_and_matcher> matchers;
4068
4069 for (int i = 0; i < nr_languages; i++)
4070 {
4071 enum language lang_e = (enum language) i;
4072
4073 const language_defn *lang = language_def (lang_e);
4074 symbol_name_matcher_ftype *name_matcher
4075 = get_symbol_name_matcher (lang, lookup_name_without_params);
3f563c84 4076
3b00ef10
TT
4077 name_and_matcher key {
4078 name_matcher,
4079 lookup_name_without_params.language_lookup_name (lang_e)
4080 };
4081
4082 /* Don't insert the same comparison routine more than once.
4083 Note that we do this linear walk. This is not a problem in
4084 practice because the number of supported languages is
4085 low. */
4086 if (std::find (matchers.begin (), matchers.end (), key)
4087 != matchers.end ())
9291a0cd 4088 continue;
3b00ef10
TT
4089 matchers.push_back (std::move (key));
4090
4091 auto bounds
4092 = index.find_name_components_bounds (lookup_name_without_params,
4093 lang_e);
4094
4095 /* Now for each symbol name in range, check to see if we have a name
4096 match, and if so, call the MATCH_CALLBACK callback. */
4097
4098 for (; bounds.first != bounds.second; ++bounds.first)
4099 {
4100 const char *qualified = index.symbol_name_at (bounds.first->idx);
4101
4102 if (!name_matcher (qualified, lookup_name_without_params, NULL)
4103 || (symbol_matcher != NULL && !symbol_matcher (qualified)))
4104 continue;
9291a0cd 4105
3b00ef10
TT
4106 matches.push_back (bounds.first->idx);
4107 }
3f563c84
PA
4108 }
4109
4110 std::sort (matches.begin (), matches.end ());
4111
4112 /* Finally call the callback, once per match. */
4113 ULONGEST prev = -1;
4114 for (offset_type idx : matches)
4115 {
4116 if (prev != idx)
4117 {
3b00ef10
TT
4118 if (!match_callback (idx))
4119 break;
3f563c84
PA
4120 prev = idx;
4121 }
4122 }
4123
4124 /* Above we use a type wider than idx's for 'prev', since 0 and
4125 (offset_type)-1 are both possible values. */
4126 static_assert (sizeof (prev) > sizeof (offset_type), "");
4127}
4128
c62446b1
PA
4129#if GDB_SELF_TEST
4130
4131namespace selftests { namespace dw2_expand_symtabs_matching {
4132
a3c5fafd
PA
4133/* A mock .gdb_index/.debug_names-like name index table, enough to
4134 exercise dw2_expand_symtabs_matching_symbol, which works with the
4135 mapped_index_base interface. Builds an index from the symbol list
4136 passed as parameter to the constructor. */
4137class mock_mapped_index : public mapped_index_base
c62446b1
PA
4138{
4139public:
a3c5fafd
PA
4140 mock_mapped_index (gdb::array_view<const char *> symbols)
4141 : m_symbol_table (symbols)
c62446b1
PA
4142 {}
4143
a3c5fafd 4144 DISABLE_COPY_AND_ASSIGN (mock_mapped_index);
c62446b1 4145
a3c5fafd 4146 /* Return the number of names in the symbol table. */
632e107b 4147 size_t symbol_name_count () const override
c62446b1 4148 {
a3c5fafd 4149 return m_symbol_table.size ();
c62446b1
PA
4150 }
4151
a3c5fafd 4152 /* Get the name of the symbol at IDX in the symbol table. */
632e107b 4153 const char *symbol_name_at (offset_type idx) const override
a3c5fafd
PA
4154 {
4155 return m_symbol_table[idx];
4156 }
c62446b1 4157
a3c5fafd
PA
4158private:
4159 gdb::array_view<const char *> m_symbol_table;
c62446b1
PA
4160};
4161
4162/* Convenience function that converts a NULL pointer to a "<null>"
4163 string, to pass to print routines. */
4164
4165static const char *
4166string_or_null (const char *str)
4167{
4168 return str != NULL ? str : "<null>";
4169}
4170
4171/* Check if a lookup_name_info built from
4172 NAME/MATCH_TYPE/COMPLETION_MODE matches the symbols in the mock
4173 index. EXPECTED_LIST is the list of expected matches, in expected
4174 matching order. If no match expected, then an empty list is
4175 specified. Returns true on success. On failure prints a warning
4176 indicating the file:line that failed, and returns false. */
4177
4178static bool
4179check_match (const char *file, int line,
4180 mock_mapped_index &mock_index,
4181 const char *name, symbol_name_match_type match_type,
4182 bool completion_mode,
4183 std::initializer_list<const char *> expected_list)
4184{
4185 lookup_name_info lookup_name (name, match_type, completion_mode);
4186
4187 bool matched = true;
4188
4189 auto mismatch = [&] (const char *expected_str,
4190 const char *got)
4191 {
4192 warning (_("%s:%d: match_type=%s, looking-for=\"%s\", "
4193 "expected=\"%s\", got=\"%s\"\n"),
4194 file, line,
4195 (match_type == symbol_name_match_type::FULL
4196 ? "FULL" : "WILD"),
4197 name, string_or_null (expected_str), string_or_null (got));
4198 matched = false;
4199 };
4200
4201 auto expected_it = expected_list.begin ();
4202 auto expected_end = expected_list.end ();
4203
a3c5fafd 4204 dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
c62446b1
PA
4205 NULL, ALL_DOMAIN,
4206 [&] (offset_type idx)
4207 {
a3c5fafd 4208 const char *matched_name = mock_index.symbol_name_at (idx);
c62446b1
PA
4209 const char *expected_str
4210 = expected_it == expected_end ? NULL : *expected_it++;
4211
4212 if (expected_str == NULL || strcmp (expected_str, matched_name) != 0)
4213 mismatch (expected_str, matched_name);
3b00ef10 4214 return true;
c62446b1
PA
4215 });
4216
4217 const char *expected_str
4218 = expected_it == expected_end ? NULL : *expected_it++;
4219 if (expected_str != NULL)
4220 mismatch (expected_str, NULL);
4221
4222 return matched;
4223}
4224
4225/* The symbols added to the mock mapped_index for testing (in
4226 canonical form). */
4227static const char *test_symbols[] = {
4228 "function",
4229 "std::bar",
4230 "std::zfunction",
4231 "std::zfunction2",
4232 "w1::w2",
4233 "ns::foo<char*>",
4234 "ns::foo<int>",
4235 "ns::foo<long>",
a20714ff
PA
4236 "ns2::tmpl<int>::foo2",
4237 "(anonymous namespace)::A::B::C",
c62446b1 4238
e1ef7d7a
PA
4239 /* These are used to check that the increment-last-char in the
4240 matching algorithm for completion doesn't match "t1_fund" when
4241 completing "t1_func". */
4242 "t1_func",
4243 "t1_func1",
4244 "t1_fund",
4245 "t1_fund1",
4246
4247 /* A UTF-8 name with multi-byte sequences to make sure that
4248 cp-name-parser understands this as a single identifier ("função"
4249 is "function" in PT). */
4250 u8"u8função",
4251
4252 /* \377 (0xff) is Latin1 'ÿ'. */
4253 "yfunc\377",
4254
4255 /* \377 (0xff) is Latin1 'ÿ'. */
4256 "\377",
4257 "\377\377123",
4258
c62446b1
PA
4259 /* A name with all sorts of complications. Starts with "z" to make
4260 it easier for the completion tests below. */
4261#define Z_SYM_NAME \
4262 "z::std::tuple<(anonymous namespace)::ui*, std::bar<(anonymous namespace)::ui> >" \
4263 "::tuple<(anonymous namespace)::ui*, " \
4264 "std::default_delete<(anonymous namespace)::ui>, void>"
4265
4266 Z_SYM_NAME
4267};
4268
a3c5fafd
PA
4269/* Returns true if the mapped_index_base::find_name_component_bounds
4270 method finds EXPECTED_SYMS in INDEX when looking for SEARCH_NAME,
4271 in completion mode. */
5c58de74
PA
4272
4273static bool
a3c5fafd 4274check_find_bounds_finds (mapped_index_base &index,
5c58de74
PA
4275 const char *search_name,
4276 gdb::array_view<const char *> expected_syms)
4277{
4278 lookup_name_info lookup_name (search_name,
4279 symbol_name_match_type::FULL, true);
4280
3b00ef10
TT
4281 auto bounds = index.find_name_components_bounds (lookup_name,
4282 language_cplus);
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;
4291 const char *qualified = index.symbol_name_at (nc_elem->idx);
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
a3c5fafd 4307 mock_index.build_name_components ();
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
a3c5fafd 4317 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4318 "t1_func", expected_syms));
4319 }
4320
4321 /* Check that the increment-last-char in the name matching algorithm
4322 for completion doesn't get confused with Ansi1 'ÿ' / 0xff. */
4323 {
4324 static const char *expected_syms1[] = {
4325 "\377",
4326 "\377\377123",
4327 };
a3c5fafd 4328 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4329 "\377", expected_syms1));
4330
4331 static const char *expected_syms2[] = {
4332 "\377\377123",
4333 };
a3c5fafd 4334 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4335 "\377\377", expected_syms2));
4336 }
4337}
4338
4339/* Test dw2_expand_symtabs_matching_symbol. */
4340
4341static void
4342test_dw2_expand_symtabs_matching_symbol ()
c62446b1
PA
4343{
4344 mock_mapped_index mock_index (test_symbols);
4345
4346 /* We let all tests run until the end even if some fails, for debug
4347 convenience. */
4348 bool any_mismatch = false;
4349
4350 /* Create the expected symbols list (an initializer_list). Needed
4351 because lists have commas, and we need to pass them to CHECK,
4352 which is a macro. */
4353#define EXPECT(...) { __VA_ARGS__ }
4354
4355 /* Wrapper for check_match that passes down the current
4356 __FILE__/__LINE__. */
4357#define CHECK_MATCH(NAME, MATCH_TYPE, COMPLETION_MODE, EXPECTED_LIST) \
4358 any_mismatch |= !check_match (__FILE__, __LINE__, \
4359 mock_index, \
4360 NAME, MATCH_TYPE, COMPLETION_MODE, \
4361 EXPECTED_LIST)
4362
4363 /* Identity checks. */
4364 for (const char *sym : test_symbols)
4365 {
4366 /* Should be able to match all existing symbols. */
4367 CHECK_MATCH (sym, symbol_name_match_type::FULL, false,
4368 EXPECT (sym));
4369
4370 /* Should be able to match all existing symbols with
4371 parameters. */
4372 std::string with_params = std::string (sym) + "(int)";
4373 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4374 EXPECT (sym));
4375
4376 /* Should be able to match all existing symbols with
4377 parameters and qualifiers. */
4378 with_params = std::string (sym) + " ( int ) const";
4379 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4380 EXPECT (sym));
4381
4382 /* This should really find sym, but cp-name-parser.y doesn't
4383 know about lvalue/rvalue qualifiers yet. */
4384 with_params = std::string (sym) + " ( int ) &&";
4385 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4386 {});
4387 }
4388
e1ef7d7a
PA
4389 /* Check that the name matching algorithm for completion doesn't get
4390 confused with Latin1 'ÿ' / 0xff. */
4391 {
4392 static const char str[] = "\377";
4393 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4394 EXPECT ("\377", "\377\377123"));
4395 }
4396
4397 /* Check that the increment-last-char in the matching algorithm for
4398 completion doesn't match "t1_fund" when completing "t1_func". */
4399 {
4400 static const char str[] = "t1_func";
4401 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4402 EXPECT ("t1_func", "t1_func1"));
4403 }
4404
c62446b1
PA
4405 /* Check that completion mode works at each prefix of the expected
4406 symbol name. */
4407 {
4408 static const char str[] = "function(int)";
4409 size_t len = strlen (str);
4410 std::string lookup;
4411
4412 for (size_t i = 1; i < len; i++)
4413 {
4414 lookup.assign (str, i);
4415 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4416 EXPECT ("function"));
4417 }
4418 }
4419
4420 /* While "w" is a prefix of both components, the match function
4421 should still only be called once. */
4422 {
4423 CHECK_MATCH ("w", symbol_name_match_type::FULL, true,
4424 EXPECT ("w1::w2"));
a20714ff
PA
4425 CHECK_MATCH ("w", symbol_name_match_type::WILD, true,
4426 EXPECT ("w1::w2"));
c62446b1
PA
4427 }
4428
4429 /* Same, with a "complicated" symbol. */
4430 {
4431 static const char str[] = Z_SYM_NAME;
4432 size_t len = strlen (str);
4433 std::string lookup;
4434
4435 for (size_t i = 1; i < len; i++)
4436 {
4437 lookup.assign (str, i);
4438 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4439 EXPECT (Z_SYM_NAME));
4440 }
4441 }
4442
4443 /* In FULL mode, an incomplete symbol doesn't match. */
4444 {
4445 CHECK_MATCH ("std::zfunction(int", symbol_name_match_type::FULL, false,
4446 {});
4447 }
4448
4449 /* A complete symbol with parameters matches any overload, since the
4450 index has no overload info. */
4451 {
4452 CHECK_MATCH ("std::zfunction(int)", symbol_name_match_type::FULL, true,
4453 EXPECT ("std::zfunction", "std::zfunction2"));
a20714ff
PA
4454 CHECK_MATCH ("zfunction(int)", symbol_name_match_type::WILD, true,
4455 EXPECT ("std::zfunction", "std::zfunction2"));
4456 CHECK_MATCH ("zfunc", symbol_name_match_type::WILD, true,
4457 EXPECT ("std::zfunction", "std::zfunction2"));
c62446b1
PA
4458 }
4459
4460 /* Check that whitespace is ignored appropriately. A symbol with a
4461 template argument list. */
4462 {
4463 static const char expected[] = "ns::foo<int>";
4464 CHECK_MATCH ("ns :: foo < int > ", symbol_name_match_type::FULL, false,
4465 EXPECT (expected));
a20714ff
PA
4466 CHECK_MATCH ("foo < int > ", symbol_name_match_type::WILD, false,
4467 EXPECT (expected));
c62446b1
PA
4468 }
4469
4470 /* Check that whitespace is ignored appropriately. A symbol with a
4471 template argument list that includes a pointer. */
4472 {
4473 static const char expected[] = "ns::foo<char*>";
4474 /* Try both completion and non-completion modes. */
4475 static const bool completion_mode[2] = {false, true};
4476 for (size_t i = 0; i < 2; i++)
4477 {
4478 CHECK_MATCH ("ns :: foo < char * >", symbol_name_match_type::FULL,
4479 completion_mode[i], EXPECT (expected));
a20714ff
PA
4480 CHECK_MATCH ("foo < char * >", symbol_name_match_type::WILD,
4481 completion_mode[i], EXPECT (expected));
c62446b1
PA
4482
4483 CHECK_MATCH ("ns :: foo < char * > (int)", symbol_name_match_type::FULL,
4484 completion_mode[i], EXPECT (expected));
a20714ff
PA
4485 CHECK_MATCH ("foo < char * > (int)", symbol_name_match_type::WILD,
4486 completion_mode[i], EXPECT (expected));
c62446b1
PA
4487 }
4488 }
4489
4490 {
4491 /* Check method qualifiers are ignored. */
4492 static const char expected[] = "ns::foo<char*>";
4493 CHECK_MATCH ("ns :: foo < char * > ( int ) const",
4494 symbol_name_match_type::FULL, true, EXPECT (expected));
4495 CHECK_MATCH ("ns :: foo < char * > ( int ) &&",
4496 symbol_name_match_type::FULL, true, EXPECT (expected));
a20714ff
PA
4497 CHECK_MATCH ("foo < char * > ( int ) const",
4498 symbol_name_match_type::WILD, true, EXPECT (expected));
4499 CHECK_MATCH ("foo < char * > ( int ) &&",
4500 symbol_name_match_type::WILD, true, EXPECT (expected));
c62446b1
PA
4501 }
4502
4503 /* Test lookup names that don't match anything. */
4504 {
a20714ff
PA
4505 CHECK_MATCH ("bar2", symbol_name_match_type::WILD, false,
4506 {});
4507
c62446b1
PA
4508 CHECK_MATCH ("doesntexist", symbol_name_match_type::FULL, false,
4509 {});
4510 }
4511
a20714ff
PA
4512 /* Some wild matching tests, exercising "(anonymous namespace)",
4513 which should not be confused with a parameter list. */
4514 {
4515 static const char *syms[] = {
4516 "A::B::C",
4517 "B::C",
4518 "C",
4519 "A :: B :: C ( int )",
4520 "B :: C ( int )",
4521 "C ( int )",
4522 };
4523
4524 for (const char *s : syms)
4525 {
4526 CHECK_MATCH (s, symbol_name_match_type::WILD, false,
4527 EXPECT ("(anonymous namespace)::A::B::C"));
4528 }
4529 }
4530
4531 {
4532 static const char expected[] = "ns2::tmpl<int>::foo2";
4533 CHECK_MATCH ("tmp", symbol_name_match_type::WILD, true,
4534 EXPECT (expected));
4535 CHECK_MATCH ("tmpl<", symbol_name_match_type::WILD, true,
4536 EXPECT (expected));
4537 }
4538
c62446b1
PA
4539 SELF_CHECK (!any_mismatch);
4540
4541#undef EXPECT
4542#undef CHECK_MATCH
4543}
4544
5c58de74
PA
4545static void
4546run_test ()
4547{
4548 test_mapped_index_find_name_component_bounds ();
4549 test_dw2_expand_symtabs_matching_symbol ();
4550}
4551
c62446b1
PA
4552}} // namespace selftests::dw2_expand_symtabs_matching
4553
4554#endif /* GDB_SELF_TEST */
4555
4b514bc8
JK
4556/* If FILE_MATCHER is NULL or if PER_CU has
4557 dwarf2_per_cu_quick_data::MARK set (see
4558 dw_expand_symtabs_matching_file_matcher), expand the CU and call
4559 EXPANSION_NOTIFY on it. */
4560
4561static void
4562dw2_expand_symtabs_matching_one
97a1449a
SM
4563 (dwarf2_per_cu_data *per_cu,
4564 dwarf2_per_objfile *per_objfile,
4b514bc8
JK
4565 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
4566 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify)
4567{
4568 if (file_matcher == NULL || per_cu->v.quick->mark)
4569 {
af758d11 4570 bool symtab_was_null = !per_objfile->symtab_set_p (per_cu);
4b514bc8 4571
97a1449a
SM
4572 compunit_symtab *symtab
4573 = dw2_instantiate_symtab (per_cu, per_objfile, false);
af758d11 4574 gdb_assert (symtab != nullptr);
4b514bc8 4575
af758d11
SM
4576 if (expansion_notify != NULL && symtab_was_null)
4577 expansion_notify (symtab);
4b514bc8
JK
4578 }
4579}
4580
3f563c84
PA
4581/* Helper for dw2_expand_matching symtabs. Called on each symbol
4582 matched, to expand corresponding CUs that were marked. IDX is the
4583 index of the symbol name that matched. */
4584
4585static void
4586dw2_expand_marked_cus
97a1449a 4587 (dwarf2_per_objfile *dwarf2_per_objfile, offset_type idx,
3f563c84
PA
4588 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
4589 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
4590 search_domain kind)
4591{
3f563c84
PA
4592 offset_type *vec, vec_len, vec_idx;
4593 bool global_seen = false;
5989a64e 4594 mapped_index &index = *dwarf2_per_objfile->per_bfd->index_table;
3f563c84 4595
61920122 4596 vec = (offset_type *) (index.constant_pool
f00a2de2 4597 + MAYBE_SWAP (index.symbol_table[idx].vec));
61920122
PA
4598 vec_len = MAYBE_SWAP (vec[0]);
4599 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
4600 {
61920122
PA
4601 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
4602 /* This value is only valid for index versions >= 7. */
4603 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
4604 gdb_index_symbol_kind symbol_kind =
4605 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
4606 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
4607 /* Only check the symbol attributes if they're present.
4608 Indices prior to version 7 don't record them,
4609 and indices >= 7 may elide them for certain symbols
4610 (gold does this). */
4611 int attrs_valid =
4612 (index.version >= 7
4613 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
4614
4615 /* Work around gold/15646. */
4616 if (attrs_valid)
9291a0cd 4617 {
61920122
PA
4618 if (!is_static && global_seen)
4619 continue;
4620 if (!is_static)
4621 global_seen = true;
4622 }
3190f0c6 4623
61920122
PA
4624 /* Only check the symbol's kind if it has one. */
4625 if (attrs_valid)
4626 {
4627 switch (kind)
8943b874 4628 {
61920122
PA
4629 case VARIABLES_DOMAIN:
4630 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
4631 continue;
4632 break;
4633 case FUNCTIONS_DOMAIN:
4634 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
8943b874 4635 continue;
61920122
PA
4636 break;
4637 case TYPES_DOMAIN:
4638 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4639 continue;
4640 break;
59c35742
AB
4641 case MODULES_DOMAIN:
4642 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
4643 continue;
4644 break;
61920122
PA
4645 default:
4646 break;
8943b874 4647 }
61920122 4648 }
8943b874 4649
61920122 4650 /* Don't crash on bad data. */
5989a64e
SM
4651 if (cu_index >= (dwarf2_per_objfile->per_bfd->all_comp_units.size ()
4652 + dwarf2_per_objfile->per_bfd->all_type_units.size ()))
61920122 4653 {
b98664d3 4654 complaint (_(".gdb_index entry has bad CU index"
ed2dc618
SM
4655 " [in module %s]"),
4656 objfile_name (dwarf2_per_objfile->objfile));
61920122
PA
4657 continue;
4658 }
4659
5989a64e 4660 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->per_bfd->get_cutu (cu_index);
97a1449a 4661 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile, file_matcher,
4b514bc8 4662 expansion_notify);
61920122
PA
4663 }
4664}
4665
4b514bc8
JK
4666/* If FILE_MATCHER is non-NULL, set all the
4667 dwarf2_per_cu_quick_data::MARK of the current DWARF2_PER_OBJFILE
4668 that match FILE_MATCHER. */
4669
61920122 4670static void
4b514bc8 4671dw_expand_symtabs_matching_file_matcher
ed2dc618
SM
4672 (struct dwarf2_per_objfile *dwarf2_per_objfile,
4673 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher)
61920122 4674{
4b514bc8 4675 if (file_matcher == NULL)
61920122
PA
4676 return;
4677
4b514bc8
JK
4678 htab_up visited_found (htab_create_alloc (10, htab_hash_pointer,
4679 htab_eq_pointer,
4680 NULL, xcalloc, xfree));
4681 htab_up visited_not_found (htab_create_alloc (10, htab_hash_pointer,
61920122
PA
4682 htab_eq_pointer,
4683 NULL, xcalloc, xfree));
61920122 4684
4b514bc8
JK
4685 /* The rule is CUs specify all the files, including those used by
4686 any TU, so there's no need to scan TUs here. */
61920122 4687
5989a64e 4688 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
927aa2e7 4689 {
927aa2e7
JK
4690 QUIT;
4691
4692 per_cu->v.quick->mark = 0;
4693
4694 /* We only need to look at symtabs not already expanded. */
af758d11 4695 if (dwarf2_per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4696 continue;
4697
ab432490
SM
4698 quick_file_names *file_data
4699 = dw2_get_file_names (per_cu, dwarf2_per_objfile);
927aa2e7
JK
4700 if (file_data == NULL)
4701 continue;
4702
4703 if (htab_find (visited_not_found.get (), file_data) != NULL)
4704 continue;
4705 else if (htab_find (visited_found.get (), file_data) != NULL)
4706 {
4707 per_cu->v.quick->mark = 1;
4708 continue;
4709 }
4710
b76e467d 4711 for (int j = 0; j < file_data->num_file_names; ++j)
927aa2e7
JK
4712 {
4713 const char *this_real_name;
4714
4715 if (file_matcher (file_data->file_names[j], false))
4716 {
4717 per_cu->v.quick->mark = 1;
4718 break;
4719 }
4720
4721 /* Before we invoke realpath, which can get expensive when many
4722 files are involved, do a quick comparison of the basenames. */
4723 if (!basenames_may_differ
4724 && !file_matcher (lbasename (file_data->file_names[j]),
4725 true))
4726 continue;
4727
45940949
TT
4728 this_real_name = dw2_get_real_path (dwarf2_per_objfile,
4729 file_data, j);
927aa2e7
JK
4730 if (file_matcher (this_real_name, false))
4731 {
4732 per_cu->v.quick->mark = 1;
4733 break;
4734 }
4735 }
4736
b76e467d
SM
4737 void **slot = htab_find_slot (per_cu->v.quick->mark
4738 ? visited_found.get ()
4739 : visited_not_found.get (),
4740 file_data, INSERT);
927aa2e7
JK
4741 *slot = file_data;
4742 }
4743}
4744
4745static void
4746dw2_expand_symtabs_matching
4747 (struct objfile *objfile,
4748 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
c1a66c06 4749 const lookup_name_info *lookup_name,
927aa2e7
JK
4750 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4751 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
4752 enum search_domain kind)
4753{
ed2dc618
SM
4754 struct dwarf2_per_objfile *dwarf2_per_objfile
4755 = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
4756
4757 /* index_table is NULL if OBJF_READNOW. */
5989a64e 4758 if (!dwarf2_per_objfile->per_bfd->index_table)
927aa2e7
JK
4759 return;
4760
ed2dc618 4761 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
927aa2e7 4762
c1a66c06
TV
4763 if (symbol_matcher == NULL && lookup_name == NULL)
4764 {
5989a64e 4765 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
c1a66c06
TV
4766 {
4767 QUIT;
4768
97a1449a
SM
4769 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile,
4770 file_matcher, expansion_notify);
c1a66c06
TV
4771 }
4772 return;
4773 }
4774
5989a64e 4775 mapped_index &index = *dwarf2_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 {
ed2dc618 4781 dw2_expand_marked_cus (dwarf2_per_objfile, idx, file_matcher,
927aa2e7 4782 expansion_notify, kind);
3b00ef10 4783 return true;
927aa2e7
JK
4784 });
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{
ed2dc618
SM
4850 struct dwarf2_per_objfile *dwarf2_per_objfile
4851 = get_dwarf2_per_objfile (objfile);
927aa2e7 4852
5989a64e 4853 if (!dwarf2_per_objfile->per_bfd->filenames_cache)
927aa2e7 4854 {
5989a64e 4855 dwarf2_per_objfile->per_bfd->filenames_cache.emplace ();
927aa2e7
JK
4856
4857 htab_up visited (htab_create_alloc (10,
4858 htab_hash_pointer, htab_eq_pointer,
4859 NULL, xcalloc, xfree));
4860
4861 /* The rule is CUs specify all the files, including those used
4862 by any TU, so there's no need to scan TUs here. We can
4863 ignore file names coming from already-expanded CUs. */
4864
5989a64e 4865 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
927aa2e7 4866 {
af758d11 4867 if (dwarf2_per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4868 {
4869 void **slot = htab_find_slot (visited.get (),
4870 per_cu->v.quick->file_names,
4871 INSERT);
4872
4873 *slot = per_cu->v.quick->file_names;
4874 }
4875 }
4876
5989a64e 4877 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
927aa2e7 4878 {
927aa2e7 4879 /* We only need to look at symtabs not already expanded. */
af758d11 4880 if (dwarf2_per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4881 continue;
4882
ab432490
SM
4883 quick_file_names *file_data
4884 = dw2_get_file_names (per_cu, dwarf2_per_objfile);
927aa2e7
JK
4885 if (file_data == NULL)
4886 continue;
4887
b76e467d 4888 void **slot = htab_find_slot (visited.get (), file_data, INSERT);
927aa2e7
JK
4889 if (*slot)
4890 {
4891 /* Already visited. */
4892 continue;
4893 }
4894 *slot = file_data;
4895
4896 for (int j = 0; j < file_data->num_file_names; ++j)
4897 {
4898 const char *filename = file_data->file_names[j];
5989a64e 4899 dwarf2_per_objfile->per_bfd->filenames_cache->seen (filename);
927aa2e7
JK
4900 }
4901 }
4902 }
4903
5989a64e 4904 dwarf2_per_objfile->per_bfd->filenames_cache->traverse ([&] (const char *filename)
927aa2e7
JK
4905 {
4906 gdb::unique_xmalloc_ptr<char> this_real_name;
4907
4908 if (need_fullname)
4909 this_real_name = gdb_realpath (filename);
4910 (*fun) (filename, this_real_name.get (), data);
4911 });
4912}
4913
4914static int
4915dw2_has_symbols (struct objfile *objfile)
4916{
4917 return 1;
4918}
4919
4920const struct quick_symbol_functions dwarf2_gdb_index_functions =
4921{
4922 dw2_has_symbols,
4923 dw2_find_last_source_symtab,
4924 dw2_forget_cached_source_info,
4925 dw2_map_symtabs_matching_filename,
4926 dw2_lookup_symbol,
d3214198 4927 NULL,
927aa2e7
JK
4928 dw2_print_stats,
4929 dw2_dump,
927aa2e7
JK
4930 dw2_expand_symtabs_for_function,
4931 dw2_expand_all_symtabs,
4932 dw2_expand_symtabs_with_fullname,
4933 dw2_map_matching_symbols,
4934 dw2_expand_symtabs_matching,
4935 dw2_find_pc_sect_compunit_symtab,
4936 NULL,
4937 dw2_map_symbol_filenames
4938};
4939
4940/* DWARF-5 debug_names reader. */
4941
4942/* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. */
4943static const gdb_byte dwarf5_augmentation[] = { 'G', 'D', 'B', 0 };
4944
4945/* A helper function that reads the .debug_names section in SECTION
4946 and fills in MAP. FILENAME is the name of the file containing the
4947 section; it is used for error reporting.
4948
4949 Returns true if all went well, false otherwise. */
4950
4951static bool
4952read_debug_names_from_section (struct objfile *objfile,
4953 const char *filename,
4954 struct dwarf2_section_info *section,
4955 mapped_debug_names &map)
4956{
96b79293 4957 if (section->empty ())
927aa2e7
JK
4958 return false;
4959
4960 /* Older elfutils strip versions could keep the section in the main
4961 executable while splitting it for the separate debug info file. */
96b79293 4962 if ((section->get_flags () & SEC_HAS_CONTENTS) == 0)
927aa2e7
JK
4963 return false;
4964
96b79293 4965 section->read (objfile);
927aa2e7 4966
08feed99 4967 map.dwarf5_byte_order = gdbarch_byte_order (objfile->arch ());
927aa2e7
JK
4968
4969 const gdb_byte *addr = section->buffer;
4970
96b79293 4971 bfd *const abfd = section->get_bfd_owner ();
927aa2e7
JK
4972
4973 unsigned int bytes_read;
4974 LONGEST length = read_initial_length (abfd, addr, &bytes_read);
4975 addr += bytes_read;
4976
4977 map.dwarf5_is_dwarf64 = bytes_read != 4;
4978 map.offset_size = map.dwarf5_is_dwarf64 ? 8 : 4;
4979 if (bytes_read + length != section->size)
4980 {
4981 /* There may be multiple per-CU indices. */
4982 warning (_("Section .debug_names in %s length %s does not match "
4983 "section length %s, ignoring .debug_names."),
4984 filename, plongest (bytes_read + length),
4985 pulongest (section->size));
4986 return false;
4987 }
4988
4989 /* The version number. */
4990 uint16_t version = read_2_bytes (abfd, addr);
4991 addr += 2;
4992 if (version != 5)
4993 {
4994 warning (_("Section .debug_names in %s has unsupported version %d, "
4995 "ignoring .debug_names."),
4996 filename, version);
4997 return false;
4998 }
4999
5000 /* Padding. */
5001 uint16_t padding = read_2_bytes (abfd, addr);
5002 addr += 2;
5003 if (padding != 0)
5004 {
5005 warning (_("Section .debug_names in %s has unsupported padding %d, "
5006 "ignoring .debug_names."),
5007 filename, padding);
5008 return false;
5009 }
5010
5011 /* comp_unit_count - The number of CUs in the CU list. */
5012 map.cu_count = read_4_bytes (abfd, addr);
5013 addr += 4;
5014
5015 /* local_type_unit_count - The number of TUs in the local TU
5016 list. */
5017 map.tu_count = read_4_bytes (abfd, addr);
5018 addr += 4;
5019
5020 /* foreign_type_unit_count - The number of TUs in the foreign TU
5021 list. */
5022 uint32_t foreign_tu_count = read_4_bytes (abfd, addr);
5023 addr += 4;
5024 if (foreign_tu_count != 0)
5025 {
5026 warning (_("Section .debug_names in %s has unsupported %lu foreign TUs, "
5027 "ignoring .debug_names."),
5028 filename, static_cast<unsigned long> (foreign_tu_count));
5029 return false;
5030 }
5031
5032 /* bucket_count - The number of hash buckets in the hash lookup
5033 table. */
5034 map.bucket_count = read_4_bytes (abfd, addr);
5035 addr += 4;
5036
5037 /* name_count - The number of unique names in the index. */
5038 map.name_count = read_4_bytes (abfd, addr);
5039 addr += 4;
5040
5041 /* abbrev_table_size - The size in bytes of the abbreviations
5042 table. */
5043 uint32_t abbrev_table_size = read_4_bytes (abfd, addr);
5044 addr += 4;
5045
5046 /* augmentation_string_size - The size in bytes of the augmentation
5047 string. This value is rounded up to a multiple of 4. */
5048 uint32_t augmentation_string_size = read_4_bytes (abfd, addr);
5049 addr += 4;
5050 map.augmentation_is_gdb = ((augmentation_string_size
5051 == sizeof (dwarf5_augmentation))
5052 && memcmp (addr, dwarf5_augmentation,
5053 sizeof (dwarf5_augmentation)) == 0);
5054 augmentation_string_size += (-augmentation_string_size) & 3;
5055 addr += augmentation_string_size;
5056
5057 /* List of CUs */
5058 map.cu_table_reordered = addr;
5059 addr += map.cu_count * map.offset_size;
5060
5061 /* List of Local TUs */
5062 map.tu_table_reordered = addr;
5063 addr += map.tu_count * map.offset_size;
5064
5065 /* Hash Lookup Table */
5066 map.bucket_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5067 addr += map.bucket_count * 4;
5068 map.hash_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5069 addr += map.name_count * 4;
5070
5071 /* Name Table */
5072 map.name_table_string_offs_reordered = addr;
5073 addr += map.name_count * map.offset_size;
5074 map.name_table_entry_offs_reordered = addr;
5075 addr += map.name_count * map.offset_size;
5076
5077 const gdb_byte *abbrev_table_start = addr;
5078 for (;;)
5079 {
927aa2e7
JK
5080 const ULONGEST index_num = read_unsigned_leb128 (abfd, addr, &bytes_read);
5081 addr += bytes_read;
5082 if (index_num == 0)
5083 break;
5084
5085 const auto insertpair
5086 = map.abbrev_map.emplace (index_num, mapped_debug_names::index_val ());
5087 if (!insertpair.second)
5088 {
5089 warning (_("Section .debug_names in %s has duplicate index %s, "
5090 "ignoring .debug_names."),
5091 filename, pulongest (index_num));
5092 return false;
5093 }
5094 mapped_debug_names::index_val &indexval = insertpair.first->second;
5095 indexval.dwarf_tag = read_unsigned_leb128 (abfd, addr, &bytes_read);
5096 addr += bytes_read;
5097
5098 for (;;)
5099 {
5100 mapped_debug_names::index_val::attr attr;
5101 attr.dw_idx = read_unsigned_leb128 (abfd, addr, &bytes_read);
5102 addr += bytes_read;
5103 attr.form = read_unsigned_leb128 (abfd, addr, &bytes_read);
5104 addr += bytes_read;
5105 if (attr.form == DW_FORM_implicit_const)
5106 {
5107 attr.implicit_const = read_signed_leb128 (abfd, addr,
5108 &bytes_read);
5109 addr += bytes_read;
5110 }
5111 if (attr.dw_idx == 0 && attr.form == 0)
5112 break;
5113 indexval.attr_vec.push_back (std::move (attr));
5114 }
5115 }
5116 if (addr != abbrev_table_start + abbrev_table_size)
5117 {
5118 warning (_("Section .debug_names in %s has abbreviation_table "
47e3f474
TV
5119 "of size %s vs. written as %u, ignoring .debug_names."),
5120 filename, plongest (addr - abbrev_table_start),
5121 abbrev_table_size);
927aa2e7
JK
5122 return false;
5123 }
5124 map.entry_pool = addr;
5125
5126 return true;
5127}
5128
5129/* A helper for create_cus_from_debug_names that handles the MAP's CU
5130 list. */
5131
5132static void
ed2dc618 5133create_cus_from_debug_names_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5134 const mapped_debug_names &map,
5135 dwarf2_section_info &section,
b76e467d 5136 bool is_dwz)
927aa2e7 5137{
3ee6bb11
TV
5138 if (!map.augmentation_is_gdb)
5139 {
5140 for (uint32_t i = 0; i < map.cu_count; ++i)
5141 {
5142 sect_offset sect_off
5143 = (sect_offset) (extract_unsigned_integer
5144 (map.cu_table_reordered + i * map.offset_size,
5145 map.offset_size,
5146 map.dwarf5_byte_order));
5147 /* We don't know the length of the CU, because the CU list in a
5148 .debug_names index can be incomplete, so we can't use the start of
5149 the next CU as end of this CU. We create the CUs here with length 0,
5150 and in cutu_reader::cutu_reader we'll fill in the actual length. */
5151 dwarf2_per_cu_data *per_cu
5152 = create_cu_from_index_list (dwarf2_per_objfile, &section, is_dwz,
5153 sect_off, 0);
5989a64e 5154 dwarf2_per_objfile->per_bfd->all_comp_units.push_back (per_cu);
3ee6bb11
TV
5155 }
5156 }
5157
927aa2e7
JK
5158 sect_offset sect_off_prev;
5159 for (uint32_t i = 0; i <= map.cu_count; ++i)
5160 {
5161 sect_offset sect_off_next;
5162 if (i < map.cu_count)
5163 {
5164 sect_off_next
5165 = (sect_offset) (extract_unsigned_integer
5166 (map.cu_table_reordered + i * map.offset_size,
5167 map.offset_size,
5168 map.dwarf5_byte_order));
5169 }
5170 else
5171 sect_off_next = (sect_offset) section.size;
5172 if (i >= 1)
5173 {
5174 const ULONGEST length = sect_off_next - sect_off_prev;
b76e467d 5175 dwarf2_per_cu_data *per_cu
ed2dc618 5176 = create_cu_from_index_list (dwarf2_per_objfile, &section, is_dwz,
927aa2e7 5177 sect_off_prev, length);
5989a64e 5178 dwarf2_per_objfile->per_bfd->all_comp_units.push_back (per_cu);
927aa2e7
JK
5179 }
5180 sect_off_prev = sect_off_next;
5181 }
5182}
5183
5184/* Read the CU list from the mapped index, and use it to create all
ed2dc618 5185 the CU objects for this dwarf2_per_objfile. */
927aa2e7
JK
5186
5187static void
ed2dc618 5188create_cus_from_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5189 const mapped_debug_names &map,
5190 const mapped_debug_names &dwz_map)
5191{
5989a64e
SM
5192 gdb_assert (dwarf2_per_objfile->per_bfd->all_comp_units.empty ());
5193 dwarf2_per_objfile->per_bfd->all_comp_units.reserve (map.cu_count + dwz_map.cu_count);
927aa2e7 5194
ed2dc618 5195 create_cus_from_debug_names_list (dwarf2_per_objfile, map,
5989a64e 5196 dwarf2_per_objfile->per_bfd->info,
b76e467d 5197 false /* is_dwz */);
927aa2e7
JK
5198
5199 if (dwz_map.cu_count == 0)
5200 return;
5201
c3699833 5202 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
ed2dc618 5203 create_cus_from_debug_names_list (dwarf2_per_objfile, dwz_map, dwz->info,
b76e467d 5204 true /* is_dwz */);
927aa2e7
JK
5205}
5206
5207/* Read .debug_names. If everything went ok, initialize the "quick"
5208 elements of all the CUs and return true. Otherwise, return false. */
5209
5210static bool
ed2dc618 5211dwarf2_read_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile)
927aa2e7 5212{
22ca247e
TT
5213 std::unique_ptr<mapped_debug_names> map
5214 (new mapped_debug_names (dwarf2_per_objfile));
ed2dc618
SM
5215 mapped_debug_names dwz_map (dwarf2_per_objfile);
5216 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7
JK
5217
5218 if (!read_debug_names_from_section (objfile, objfile_name (objfile),
5989a64e 5219 &dwarf2_per_objfile->per_bfd->debug_names,
22ca247e 5220 *map))
927aa2e7
JK
5221 return false;
5222
5223 /* Don't use the index if it's empty. */
22ca247e 5224 if (map->name_count == 0)
927aa2e7
JK
5225 return false;
5226
5227 /* If there is a .dwz file, read it so we can get its CU list as
5228 well. */
c3699833 5229 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
927aa2e7
JK
5230 if (dwz != NULL)
5231 {
5232 if (!read_debug_names_from_section (objfile,
00f93c44 5233 bfd_get_filename (dwz->dwz_bfd.get ()),
927aa2e7
JK
5234 &dwz->debug_names, dwz_map))
5235 {
5236 warning (_("could not read '.debug_names' section from %s; skipping"),
00f93c44 5237 bfd_get_filename (dwz->dwz_bfd.get ()));
927aa2e7
JK
5238 return false;
5239 }
5240 }
5241
22ca247e 5242 create_cus_from_debug_names (dwarf2_per_objfile, *map, dwz_map);
927aa2e7 5243
22ca247e 5244 if (map->tu_count != 0)
927aa2e7
JK
5245 {
5246 /* We can only handle a single .debug_types when we have an
5247 index. */
5989a64e 5248 if (dwarf2_per_objfile->per_bfd->types.size () != 1)
927aa2e7
JK
5249 return false;
5250
5989a64e 5251 dwarf2_section_info *section = &dwarf2_per_objfile->per_bfd->types[0];
927aa2e7
JK
5252
5253 create_signatured_type_table_from_debug_names
5989a64e 5254 (dwarf2_per_objfile, *map, section, &dwarf2_per_objfile->per_bfd->abbrev);
927aa2e7
JK
5255 }
5256
ed2dc618 5257 create_addrmap_from_aranges (dwarf2_per_objfile,
5989a64e 5258 &dwarf2_per_objfile->per_bfd->debug_aranges);
927aa2e7 5259
5989a64e
SM
5260 dwarf2_per_objfile->per_bfd->debug_names_table = std::move (map);
5261 dwarf2_per_objfile->per_bfd->using_index = 1;
5262 dwarf2_per_objfile->per_bfd->quick_file_names_table =
5263 create_quick_file_names_table (dwarf2_per_objfile->per_bfd->all_comp_units.size ());
927aa2e7
JK
5264
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,
927aa2e7 5277 const char *name)
2b79f376 5278 : m_map (map), m_block_index (block_index), m_domain (domain),
927aa2e7
JK
5279 m_addr (find_vec_in_debug_names (map, name))
5280 {}
5281
5282 dw2_debug_names_iterator (const mapped_debug_names &map,
5283 search_domain search, uint32_t namei)
5284 : m_map (map),
5285 m_search (search),
5286 m_addr (find_vec_in_debug_names (map, namei))
5287 {}
5288
3b00ef10
TT
5289 dw2_debug_names_iterator (const mapped_debug_names &map,
5290 block_enum block_index, domain_enum domain,
5291 uint32_t namei)
5292 : m_map (map), m_block_index (block_index), m_domain (domain),
5293 m_addr (find_vec_in_debug_names (map, namei))
5294 {}
5295
927aa2e7
JK
5296 /* Return the next matching CU or NULL if there are no more. */
5297 dwarf2_per_cu_data *next ();
5298
5299private:
5300 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5301 const char *name);
5302 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5303 uint32_t namei);
5304
5305 /* The internalized form of .debug_names. */
5306 const mapped_debug_names &m_map;
5307
2b79f376
SM
5308 /* If set, only look for symbols that match that block. Valid values are
5309 GLOBAL_BLOCK and STATIC_BLOCK. */
5310 const gdb::optional<block_enum> m_block_index;
927aa2e7
JK
5311
5312 /* The kind of symbol we're looking for. */
5313 const domain_enum m_domain = UNDEF_DOMAIN;
5314 const search_domain m_search = ALL_DOMAIN;
5315
5316 /* The list of CUs from the index entry of the symbol, or NULL if
5317 not found. */
5318 const gdb_byte *m_addr;
5319};
5320
5321const char *
5322mapped_debug_names::namei_to_name (uint32_t namei) const
5323{
5324 const ULONGEST namei_string_offs
5325 = extract_unsigned_integer ((name_table_string_offs_reordered
5326 + namei * offset_size),
5327 offset_size,
5328 dwarf5_byte_order);
4f44ae6c
TT
5329 return read_indirect_string_at_offset (dwarf2_per_objfile,
5330 namei_string_offs);
927aa2e7
JK
5331}
5332
5333/* Find a slot in .debug_names for the object named NAME. If NAME is
5334 found, return pointer to its pool data. If NAME cannot be found,
5335 return NULL. */
5336
5337const gdb_byte *
5338dw2_debug_names_iterator::find_vec_in_debug_names
5339 (const mapped_debug_names &map, const char *name)
5340{
5341 int (*cmp) (const char *, const char *);
5342
54ee4252 5343 gdb::unique_xmalloc_ptr<char> without_params;
927aa2e7
JK
5344 if (current_language->la_language == language_cplus
5345 || current_language->la_language == language_fortran
5346 || current_language->la_language == language_d)
5347 {
5348 /* NAME is already canonical. Drop any qualifiers as
5349 .debug_names does not contain any. */
5350
5351 if (strchr (name, '(') != NULL)
5352 {
54ee4252 5353 without_params = cp_remove_params (name);
927aa2e7 5354 if (without_params != NULL)
54ee4252 5355 name = without_params.get ();
927aa2e7
JK
5356 }
5357 }
5358
5359 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
5360
5361 const uint32_t full_hash = dwarf5_djb_hash (name);
5362 uint32_t namei
5363 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5364 (map.bucket_table_reordered
5365 + (full_hash % map.bucket_count)), 4,
5366 map.dwarf5_byte_order);
5367 if (namei == 0)
5368 return NULL;
5369 --namei;
5370 if (namei >= map.name_count)
5371 {
b98664d3 5372 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5373 "[in module %s]"),
5374 namei, map.name_count,
ed2dc618 5375 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5376 return NULL;
5377 }
5378
5379 for (;;)
5380 {
5381 const uint32_t namei_full_hash
5382 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5383 (map.hash_table_reordered + namei), 4,
5384 map.dwarf5_byte_order);
5385 if (full_hash % map.bucket_count != namei_full_hash % map.bucket_count)
5386 return NULL;
5387
5388 if (full_hash == namei_full_hash)
5389 {
5390 const char *const namei_string = map.namei_to_name (namei);
5391
5392#if 0 /* An expensive sanity check. */
5393 if (namei_full_hash != dwarf5_djb_hash (namei_string))
5394 {
b98664d3 5395 complaint (_("Wrong .debug_names hash for string at index %u "
927aa2e7
JK
5396 "[in module %s]"),
5397 namei, objfile_name (dwarf2_per_objfile->objfile));
5398 return NULL;
5399 }
5400#endif
5401
5402 if (cmp (namei_string, name) == 0)
5403 {
5404 const ULONGEST namei_entry_offs
5405 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5406 + namei * map.offset_size),
5407 map.offset_size, map.dwarf5_byte_order);
5408 return map.entry_pool + namei_entry_offs;
5409 }
5410 }
5411
5412 ++namei;
5413 if (namei >= map.name_count)
5414 return NULL;
5415 }
5416}
5417
5418const gdb_byte *
5419dw2_debug_names_iterator::find_vec_in_debug_names
5420 (const mapped_debug_names &map, uint32_t namei)
5421{
5422 if (namei >= map.name_count)
5423 {
b98664d3 5424 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5425 "[in module %s]"),
5426 namei, map.name_count,
ed2dc618 5427 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5428 return NULL;
5429 }
5430
5431 const ULONGEST namei_entry_offs
5432 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5433 + namei * map.offset_size),
5434 map.offset_size, map.dwarf5_byte_order);
5435 return map.entry_pool + namei_entry_offs;
5436}
5437
5438/* See dw2_debug_names_iterator. */
5439
5440dwarf2_per_cu_data *
5441dw2_debug_names_iterator::next ()
5442{
5443 if (m_addr == NULL)
5444 return NULL;
5445
ed2dc618
SM
5446 struct dwarf2_per_objfile *dwarf2_per_objfile = m_map.dwarf2_per_objfile;
5447 struct objfile *objfile = dwarf2_per_objfile->objfile;
5448 bfd *const abfd = objfile->obfd;
927aa2e7
JK
5449
5450 again:
5451
5452 unsigned int bytes_read;
5453 const ULONGEST abbrev = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5454 m_addr += bytes_read;
5455 if (abbrev == 0)
5456 return NULL;
5457
5458 const auto indexval_it = m_map.abbrev_map.find (abbrev);
5459 if (indexval_it == m_map.abbrev_map.cend ())
5460 {
b98664d3 5461 complaint (_("Wrong .debug_names undefined abbrev code %s "
927aa2e7 5462 "[in module %s]"),
ed2dc618 5463 pulongest (abbrev), objfile_name (objfile));
927aa2e7
JK
5464 return NULL;
5465 }
5466 const mapped_debug_names::index_val &indexval = indexval_it->second;
beadd3e8
SM
5467 enum class symbol_linkage {
5468 unknown,
5469 static_,
5470 extern_,
23c13d42 5471 } symbol_linkage_ = symbol_linkage::unknown;
927aa2e7
JK
5472 dwarf2_per_cu_data *per_cu = NULL;
5473 for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec)
5474 {
5475 ULONGEST ull;
5476 switch (attr.form)
5477 {
5478 case DW_FORM_implicit_const:
5479 ull = attr.implicit_const;
5480 break;
5481 case DW_FORM_flag_present:
5482 ull = 1;
5483 break;
5484 case DW_FORM_udata:
5485 ull = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5486 m_addr += bytes_read;
5487 break;
6dc55ce9 5488 case DW_FORM_ref4:
5489 ull = read_4_bytes (abfd, m_addr);
5490 m_addr += 4;
5491 break;
5492 case DW_FORM_ref8:
5493 ull = read_8_bytes (abfd, m_addr);
5494 m_addr += 8;
5495 break;
5496 case DW_FORM_ref_sig8:
5497 ull = read_8_bytes (abfd, m_addr);
5498 m_addr += 8;
5499 break;
927aa2e7 5500 default:
b98664d3 5501 complaint (_("Unsupported .debug_names form %s [in module %s]"),
927aa2e7 5502 dwarf_form_name (attr.form),
ed2dc618 5503 objfile_name (objfile));
927aa2e7
JK
5504 return NULL;
5505 }
5506 switch (attr.dw_idx)
5507 {
5508 case DW_IDX_compile_unit:
5509 /* Don't crash on bad data. */
5989a64e 5510 if (ull >= dwarf2_per_objfile->per_bfd->all_comp_units.size ())
927aa2e7 5511 {
b98664d3 5512 complaint (_(".debug_names entry has bad CU index %s"
927aa2e7
JK
5513 " [in module %s]"),
5514 pulongest (ull),
5515 objfile_name (dwarf2_per_objfile->objfile));
5516 continue;
5517 }
5989a64e 5518 per_cu = dwarf2_per_objfile->per_bfd->get_cutu (ull);
927aa2e7 5519 break;
8af5c486
JK
5520 case DW_IDX_type_unit:
5521 /* Don't crash on bad data. */
5989a64e 5522 if (ull >= dwarf2_per_objfile->per_bfd->all_type_units.size ())
8af5c486 5523 {
b98664d3 5524 complaint (_(".debug_names entry has bad TU index %s"
8af5c486
JK
5525 " [in module %s]"),
5526 pulongest (ull),
5527 objfile_name (dwarf2_per_objfile->objfile));
5528 continue;
5529 }
5989a64e 5530 per_cu = &dwarf2_per_objfile->per_bfd->get_tu (ull)->per_cu;
8af5c486 5531 break;
6dc55ce9 5532 case DW_IDX_die_offset:
5533 /* In a per-CU index (as opposed to a per-module index), index
5534 entries without CU attribute implicitly refer to the single CU. */
5535 if (per_cu == NULL)
5989a64e 5536 per_cu = dwarf2_per_objfile->per_bfd->get_cu (0);
6dc55ce9 5537 break;
927aa2e7
JK
5538 case DW_IDX_GNU_internal:
5539 if (!m_map.augmentation_is_gdb)
5540 break;
23c13d42 5541 symbol_linkage_ = symbol_linkage::static_;
927aa2e7
JK
5542 break;
5543 case DW_IDX_GNU_external:
5544 if (!m_map.augmentation_is_gdb)
5545 break;
23c13d42 5546 symbol_linkage_ = symbol_linkage::extern_;
927aa2e7
JK
5547 break;
5548 }
5549 }
5550
5551 /* Skip if already read in. */
af758d11 5552 if (dwarf2_per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
5553 goto again;
5554
5555 /* Check static vs global. */
23c13d42 5556 if (symbol_linkage_ != symbol_linkage::unknown && m_block_index.has_value ())
927aa2e7 5557 {
2b79f376 5558 const bool want_static = *m_block_index == STATIC_BLOCK;
23c13d42
SM
5559 const bool symbol_is_static =
5560 symbol_linkage_ == symbol_linkage::static_;
beadd3e8 5561 if (want_static != symbol_is_static)
2b79f376 5562 goto again;
927aa2e7
JK
5563 }
5564
5565 /* Match dw2_symtab_iter_next, symbol_kind
5566 and debug_names::psymbol_tag. */
5567 switch (m_domain)
5568 {
5569 case VAR_DOMAIN:
5570 switch (indexval.dwarf_tag)
5571 {
5572 case DW_TAG_variable:
5573 case DW_TAG_subprogram:
5574 /* Some types are also in VAR_DOMAIN. */
5575 case DW_TAG_typedef:
5576 case DW_TAG_structure_type:
5577 break;
5578 default:
5579 goto again;
5580 }
5581 break;
5582 case STRUCT_DOMAIN:
5583 switch (indexval.dwarf_tag)
5584 {
5585 case DW_TAG_typedef:
5586 case DW_TAG_structure_type:
5587 break;
5588 default:
5589 goto again;
5590 }
5591 break;
5592 case LABEL_DOMAIN:
5593 switch (indexval.dwarf_tag)
5594 {
5595 case 0:
5596 case DW_TAG_variable:
5597 break;
5598 default:
5599 goto again;
5600 }
5601 break;
59c35742
AB
5602 case MODULE_DOMAIN:
5603 switch (indexval.dwarf_tag)
5604 {
5605 case DW_TAG_module:
5606 break;
5607 default:
5608 goto again;
5609 }
5610 break;
927aa2e7
JK
5611 default:
5612 break;
5613 }
5614
5615 /* Match dw2_expand_symtabs_matching, symbol_kind and
5616 debug_names::psymbol_tag. */
5617 switch (m_search)
4b514bc8 5618 {
927aa2e7
JK
5619 case VARIABLES_DOMAIN:
5620 switch (indexval.dwarf_tag)
4b514bc8 5621 {
927aa2e7
JK
5622 case DW_TAG_variable:
5623 break;
5624 default:
5625 goto again;
4b514bc8 5626 }
927aa2e7
JK
5627 break;
5628 case FUNCTIONS_DOMAIN:
5629 switch (indexval.dwarf_tag)
4b514bc8 5630 {
927aa2e7
JK
5631 case DW_TAG_subprogram:
5632 break;
5633 default:
5634 goto again;
4b514bc8 5635 }
927aa2e7
JK
5636 break;
5637 case TYPES_DOMAIN:
5638 switch (indexval.dwarf_tag)
5639 {
5640 case DW_TAG_typedef:
5641 case DW_TAG_structure_type:
5642 break;
5643 default:
5644 goto again;
5645 }
5646 break;
59c35742
AB
5647 case MODULES_DOMAIN:
5648 switch (indexval.dwarf_tag)
5649 {
5650 case DW_TAG_module:
5651 break;
5652 default:
5653 goto again;
5654 }
927aa2e7
JK
5655 default:
5656 break;
4b514bc8 5657 }
927aa2e7
JK
5658
5659 return per_cu;
4b514bc8 5660}
61920122 5661
927aa2e7 5662static struct compunit_symtab *
c7f839cb 5663dw2_debug_names_lookup_symbol (struct objfile *objfile, block_enum block_index,
927aa2e7 5664 const char *name, domain_enum domain)
4b514bc8 5665{
ed2dc618
SM
5666 struct dwarf2_per_objfile *dwarf2_per_objfile
5667 = get_dwarf2_per_objfile (objfile);
61920122 5668
5989a64e 5669 const auto &mapp = dwarf2_per_objfile->per_bfd->debug_names_table;
927aa2e7 5670 if (!mapp)
61920122 5671 {
927aa2e7
JK
5672 /* index is NULL if OBJF_READNOW. */
5673 return NULL;
5674 }
5675 const auto &map = *mapp;
9291a0cd 5676
2b79f376 5677 dw2_debug_names_iterator iter (map, block_index, domain, name);
9703b513 5678
927aa2e7
JK
5679 struct compunit_symtab *stab_best = NULL;
5680 struct dwarf2_per_cu_data *per_cu;
5681 while ((per_cu = iter.next ()) != NULL)
5682 {
5683 struct symbol *sym, *with_opaque = NULL;
97a1449a
SM
5684 compunit_symtab *stab
5685 = dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, false);
927aa2e7 5686 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 5687 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
9703b513 5688
927aa2e7
JK
5689 sym = block_find_symbol (block, name, domain,
5690 block_find_non_opaque_type_preferred,
5691 &with_opaque);
9703b513 5692
927aa2e7
JK
5693 /* Some caution must be observed with overloaded functions and
5694 methods, since the index will not contain any overload
5695 information (but NAME might contain it). */
a3ec0bb1 5696
927aa2e7 5697 if (sym != NULL
987012b8 5698 && strcmp_iw (sym->search_name (), name) == 0)
927aa2e7
JK
5699 return stab;
5700 if (with_opaque != NULL
987012b8 5701 && strcmp_iw (with_opaque->search_name (), name) == 0)
927aa2e7 5702 stab_best = stab;
9703b513 5703
927aa2e7 5704 /* Keep looking through other CUs. */
9703b513
TT
5705 }
5706
927aa2e7 5707 return stab_best;
9703b513
TT
5708}
5709
927aa2e7
JK
5710/* This dumps minimal information about .debug_names. It is called
5711 via "mt print objfiles". The gdb.dwarf2/gdb-index.exp testcase
5712 uses this to verify that .debug_names has been loaded. */
9291a0cd 5713
927aa2e7
JK
5714static void
5715dw2_debug_names_dump (struct objfile *objfile)
5716{
ed2dc618
SM
5717 struct dwarf2_per_objfile *dwarf2_per_objfile
5718 = get_dwarf2_per_objfile (objfile);
5719
5989a64e 5720 gdb_assert (dwarf2_per_objfile->per_bfd->using_index);
927aa2e7 5721 printf_filtered (".debug_names:");
5989a64e 5722 if (dwarf2_per_objfile->per_bfd->debug_names_table)
927aa2e7
JK
5723 printf_filtered (" exists\n");
5724 else
5725 printf_filtered (" faked for \"readnow\"\n");
5726 printf_filtered ("\n");
9291a0cd
TT
5727}
5728
9291a0cd 5729static void
927aa2e7
JK
5730dw2_debug_names_expand_symtabs_for_function (struct objfile *objfile,
5731 const char *func_name)
9291a0cd 5732{
ed2dc618
SM
5733 struct dwarf2_per_objfile *dwarf2_per_objfile
5734 = get_dwarf2_per_objfile (objfile);
ae2de4f8 5735
5989a64e
SM
5736 /* dwarf2_per_objfile->per_bfd->debug_names_table is NULL if OBJF_READNOW. */
5737 if (dwarf2_per_objfile->per_bfd->debug_names_table)
24c79950 5738 {
5989a64e 5739 const mapped_debug_names &map = *dwarf2_per_objfile->per_bfd->debug_names_table;
24c79950 5740
2b79f376 5741 dw2_debug_names_iterator iter (map, {}, VAR_DOMAIN, func_name);
24c79950 5742
927aa2e7
JK
5743 struct dwarf2_per_cu_data *per_cu;
5744 while ((per_cu = iter.next ()) != NULL)
97a1449a 5745 dw2_instantiate_symtab (per_cu, dwarf2_per_objfile, false);
927aa2e7
JK
5746 }
5747}
24c79950 5748
3b00ef10
TT
5749static void
5750dw2_debug_names_map_matching_symbols
5751 (struct objfile *objfile,
5752 const lookup_name_info &name, domain_enum domain,
5753 int global,
5754 gdb::function_view<symbol_found_callback_ftype> callback,
5755 symbol_compare_ftype *ordered_compare)
5756{
5757 struct dwarf2_per_objfile *dwarf2_per_objfile
5758 = get_dwarf2_per_objfile (objfile);
5759
5760 /* debug_names_table is NULL if OBJF_READNOW. */
5989a64e 5761 if (!dwarf2_per_objfile->per_bfd->debug_names_table)
3b00ef10
TT
5762 return;
5763
5989a64e 5764 mapped_debug_names &map = *dwarf2_per_objfile->per_bfd->debug_names_table;
3b00ef10
TT
5765 const block_enum block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
5766
5767 const char *match_name = name.ada ().lookup_name ().c_str ();
5768 auto matcher = [&] (const char *symname)
5769 {
5770 if (ordered_compare == nullptr)
5771 return true;
5772 return ordered_compare (symname, match_name) == 0;
5773 };
5774
5775 dw2_expand_symtabs_matching_symbol (map, name, matcher, ALL_DOMAIN,
5776 [&] (offset_type namei)
5777 {
5778 /* The name was matched, now expand corresponding CUs that were
5779 marked. */
5780 dw2_debug_names_iterator iter (map, block_kind, domain, namei);
5781
5782 struct dwarf2_per_cu_data *per_cu;
5783 while ((per_cu = iter.next ()) != NULL)
97a1449a
SM
5784 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile, nullptr,
5785 nullptr);
3b00ef10
TT
5786 return true;
5787 });
5788
5789 /* It's a shame we couldn't do this inside the
5790 dw2_expand_symtabs_matching_symbol callback, but that skips CUs
5791 that have already been expanded. Instead, this loop matches what
5792 the psymtab code does. */
5989a64e 5793 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
3b00ef10 5794 {
af758d11
SM
5795 compunit_symtab *symtab = dwarf2_per_objfile->get_symtab (per_cu);
5796 if (symtab != nullptr)
3b00ef10
TT
5797 {
5798 const struct block *block
af758d11 5799 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (symtab), block_kind);
3b00ef10
TT
5800 if (!iterate_over_symbols_terminated (block, name,
5801 domain, callback))
5802 break;
5803 }
5804 }
5805}
5806
927aa2e7
JK
5807static void
5808dw2_debug_names_expand_symtabs_matching
5809 (struct objfile *objfile,
5810 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
c1a66c06 5811 const lookup_name_info *lookup_name,
927aa2e7
JK
5812 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
5813 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5814 enum search_domain kind)
5815{
ed2dc618
SM
5816 struct dwarf2_per_objfile *dwarf2_per_objfile
5817 = get_dwarf2_per_objfile (objfile);
9291a0cd 5818
927aa2e7 5819 /* debug_names_table is NULL if OBJF_READNOW. */
5989a64e 5820 if (!dwarf2_per_objfile->per_bfd->debug_names_table)
927aa2e7 5821 return;
9291a0cd 5822
ed2dc618 5823 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
24c79950 5824
c1a66c06
TV
5825 if (symbol_matcher == NULL && lookup_name == NULL)
5826 {
5989a64e 5827 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
c1a66c06
TV
5828 {
5829 QUIT;
5830
97a1449a
SM
5831 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile,
5832 file_matcher, expansion_notify);
c1a66c06
TV
5833 }
5834 return;
5835 }
5836
5989a64e 5837 mapped_debug_names &map = *dwarf2_per_objfile->per_bfd->debug_names_table;
bbf2f4df 5838
c1a66c06 5839 dw2_expand_symtabs_matching_symbol (map, *lookup_name,
44ed8f3e
PA
5840 symbol_matcher,
5841 kind, [&] (offset_type namei)
927aa2e7 5842 {
927aa2e7
JK
5843 /* The name was matched, now expand corresponding CUs that were
5844 marked. */
5845 dw2_debug_names_iterator iter (map, kind, namei);
bbf2f4df 5846
927aa2e7
JK
5847 struct dwarf2_per_cu_data *per_cu;
5848 while ((per_cu = iter.next ()) != NULL)
97a1449a
SM
5849 dw2_expand_symtabs_matching_one (per_cu, dwarf2_per_objfile,
5850 file_matcher, expansion_notify);
3b00ef10 5851 return true;
44ed8f3e 5852 });
9291a0cd
TT
5853}
5854
927aa2e7 5855const struct quick_symbol_functions dwarf2_debug_names_functions =
9291a0cd
TT
5856{
5857 dw2_has_symbols,
5858 dw2_find_last_source_symtab,
5859 dw2_forget_cached_source_info,
f8eba3c6 5860 dw2_map_symtabs_matching_filename,
927aa2e7 5861 dw2_debug_names_lookup_symbol,
d3214198 5862 NULL,
9291a0cd 5863 dw2_print_stats,
927aa2e7 5864 dw2_debug_names_dump,
927aa2e7 5865 dw2_debug_names_expand_symtabs_for_function,
9291a0cd 5866 dw2_expand_all_symtabs,
652a8996 5867 dw2_expand_symtabs_with_fullname,
3b00ef10 5868 dw2_debug_names_map_matching_symbols,
927aa2e7 5869 dw2_debug_names_expand_symtabs_matching,
43f3e411 5870 dw2_find_pc_sect_compunit_symtab,
71a3c369 5871 NULL,
9291a0cd
TT
5872 dw2_map_symbol_filenames
5873};
5874
4485a1c1 5875/* Get the content of the .gdb_index section of OBJ. SECTION_OWNER should point
5989a64e 5876 to either a dwarf2_per_bfd or dwz_file object. */
4485a1c1
SM
5877
5878template <typename T>
5879static gdb::array_view<const gdb_byte>
5880get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
5881{
5882 dwarf2_section_info *section = &section_owner->gdb_index;
5883
96b79293 5884 if (section->empty ())
4485a1c1
SM
5885 return {};
5886
5887 /* Older elfutils strip versions could keep the section in the main
5888 executable while splitting it for the separate debug info file. */
96b79293 5889 if ((section->get_flags () & SEC_HAS_CONTENTS) == 0)
4485a1c1
SM
5890 return {};
5891
96b79293 5892 section->read (obj);
4485a1c1 5893
8bebfcda
PA
5894 /* dwarf2_section_info::size is a bfd_size_type, while
5895 gdb::array_view works with size_t. On 32-bit hosts, with
5896 --enable-64-bit-bfd, bfd_size_type is a 64-bit type, while size_t
5897 is 32-bit. So we need an explicit narrowing conversion here.
5898 This is fine, because it's impossible to allocate or mmap an
5899 array/buffer larger than what size_t can represent. */
5900 return gdb::make_array_view (section->buffer, section->size);
4485a1c1
SM
5901}
5902
87d6a7aa
SM
5903/* Lookup the index cache for the contents of the index associated to
5904 DWARF2_OBJ. */
5905
5906static gdb::array_view<const gdb_byte>
5989a64e 5907get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
87d6a7aa
SM
5908{
5909 const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
5910 if (build_id == nullptr)
5911 return {};
5912
5913 return global_index_cache.lookup_gdb_index (build_id,
5989a64e 5914 &dwarf2_per_bfd->index_cache_res);
87d6a7aa
SM
5915}
5916
5917/* Same as the above, but for DWZ. */
5918
5919static gdb::array_view<const gdb_byte>
5920get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
5921{
5922 const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
5923 if (build_id == nullptr)
5924 return {};
5925
5926 return global_index_cache.lookup_gdb_index (build_id, &dwz->index_cache_res);
5927}
5928
3c0aa29a 5929/* See symfile.h. */
9291a0cd 5930
3c0aa29a
PA
5931bool
5932dwarf2_initialize_objfile (struct objfile *objfile, dw_index_kind *index_kind)
9291a0cd 5933{
ed2dc618
SM
5934 struct dwarf2_per_objfile *dwarf2_per_objfile
5935 = get_dwarf2_per_objfile (objfile);
5936
9291a0cd
TT
5937 /* If we're about to read full symbols, don't bother with the
5938 indices. In this case we also don't care if some other debug
5939 format is making psymtabs, because they are all about to be
5940 expanded anyway. */
5941 if ((objfile->flags & OBJF_READNOW))
5942 {
5989a64e 5943 dwarf2_per_objfile->per_bfd->using_index = 1;
ed2dc618
SM
5944 create_all_comp_units (dwarf2_per_objfile);
5945 create_all_type_units (dwarf2_per_objfile);
5989a64e 5946 dwarf2_per_objfile->per_bfd->quick_file_names_table
b76e467d 5947 = create_quick_file_names_table
5989a64e 5948 (dwarf2_per_objfile->per_bfd->all_comp_units.size ());
af758d11 5949 dwarf2_per_objfile->resize_symtabs ();
9291a0cd 5950
5989a64e
SM
5951 for (int i = 0; i < (dwarf2_per_objfile->per_bfd->all_comp_units.size ()
5952 + dwarf2_per_objfile->per_bfd->all_type_units.size ()); ++i)
9291a0cd 5953 {
5989a64e 5954 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->per_bfd->get_cutu (i);
9291a0cd 5955
5989a64e 5956 per_cu->v.quick = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
e254ef6a 5957 struct dwarf2_per_cu_quick_data);
9291a0cd
TT
5958 }
5959
5960 /* Return 1 so that gdb sees the "quick" functions. However,
5961 these functions will be no-ops because we will have expanded
5962 all symtabs. */
3c0aa29a
PA
5963 *index_kind = dw_index_kind::GDB_INDEX;
5964 return true;
9291a0cd
TT
5965 }
5966
ed2dc618 5967 if (dwarf2_read_debug_names (dwarf2_per_objfile))
3c0aa29a
PA
5968 {
5969 *index_kind = dw_index_kind::DEBUG_NAMES;
af758d11 5970 dwarf2_per_objfile->resize_symtabs ();
3c0aa29a
PA
5971 return true;
5972 }
927aa2e7 5973
4485a1c1 5974 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
5989a64e 5975 get_gdb_index_contents_from_section<struct dwarf2_per_bfd>,
4485a1c1 5976 get_gdb_index_contents_from_section<dwz_file>))
3c0aa29a
PA
5977 {
5978 *index_kind = dw_index_kind::GDB_INDEX;
af758d11 5979 dwarf2_per_objfile->resize_symtabs ();
3c0aa29a
PA
5980 return true;
5981 }
9291a0cd 5982
87d6a7aa
SM
5983 /* ... otherwise, try to find the index in the index cache. */
5984 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
5985 get_gdb_index_contents_from_cache,
5986 get_gdb_index_contents_from_cache_dwz))
5987 {
5988 global_index_cache.hit ();
5989 *index_kind = dw_index_kind::GDB_INDEX;
af758d11 5990 dwarf2_per_objfile->resize_symtabs ();
87d6a7aa
SM
5991 return true;
5992 }
5993
5994 global_index_cache.miss ();
3c0aa29a 5995 return false;
9291a0cd
TT
5996}
5997
5998\f
5999
dce234bc
PP
6000/* Build a partial symbol table. */
6001
6002void
f29dff0a 6003dwarf2_build_psymtabs (struct objfile *objfile)
dce234bc 6004{
ed2dc618
SM
6005 struct dwarf2_per_objfile *dwarf2_per_objfile
6006 = get_dwarf2_per_objfile (objfile);
c9bf0622 6007
6eee24ce 6008 init_psymbol_list (objfile, 1024);
c906108c 6009
a70b8144 6010 try
c9bf0622
TT
6011 {
6012 /* This isn't really ideal: all the data we allocate on the
6013 objfile's obstack is still uselessly kept around. However,
6014 freeing it seems unsafe. */
906768f9 6015 psymtab_discarder psymtabs (objfile);
ed2dc618 6016 dwarf2_build_psymtabs_hard (dwarf2_per_objfile);
906768f9 6017 psymtabs.keep ();
87d6a7aa 6018
af758d11
SM
6019 dwarf2_per_objfile->resize_symtabs ();
6020
87d6a7aa
SM
6021 /* (maybe) store an index in the cache. */
6022 global_index_cache.store (dwarf2_per_objfile);
c9bf0622 6023 }
230d2906 6024 catch (const gdb_exception_error &except)
492d29ea
PA
6025 {
6026 exception_print (gdb_stderr, except);
6027 }
c906108c 6028}
c906108c 6029
3b80fe9b
DE
6030/* Find the base address of the compilation unit for range lists and
6031 location lists. It will normally be specified by DW_AT_low_pc.
6032 In DWARF-3 draft 4, the base address could be overridden by
6033 DW_AT_entry_pc. It's been removed, but GCC still uses this for
6034 compilation units with discontinuous ranges. */
6035
6036static void
6037dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
6038{
6039 struct attribute *attr;
6040
2b24b6e4 6041 cu->base_address.reset ();
3b80fe9b
DE
6042
6043 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
435d3d88 6044 if (attr != nullptr)
2b24b6e4 6045 cu->base_address = attr->value_as_address ();
3b80fe9b
DE
6046 else
6047 {
6048 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 6049 if (attr != nullptr)
2b24b6e4 6050 cu->base_address = attr->value_as_address ();
3b80fe9b
DE
6051 }
6052}
6053
36586728
TT
6054/* Helper function that returns the proper abbrev section for
6055 THIS_CU. */
6056
6057static struct dwarf2_section_info *
6058get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
6059{
6060 struct dwarf2_section_info *abbrev;
c3699833 6061 dwarf2_per_bfd *per_bfd = this_cu->per_bfd;
36586728
TT
6062
6063 if (this_cu->is_dwz)
c3699833 6064 abbrev = &dwarf2_get_dwz_file (per_bfd)->abbrev;
36586728 6065 else
c3699833 6066 abbrev = &per_bfd->abbrev;
36586728
TT
6067
6068 return abbrev;
6069}
6070
f4dc4d17
DE
6071/* Fetch the abbreviation table offset from a comp or type unit header. */
6072
6073static sect_offset
ed2dc618
SM
6074read_abbrev_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
6075 struct dwarf2_section_info *section,
9c541725 6076 sect_offset sect_off)
f4dc4d17 6077{
96b79293 6078 bfd *abfd = section->get_bfd_owner ();
d521ce57 6079 const gdb_byte *info_ptr;
ac298888 6080 unsigned int initial_length_size, offset_size;
43988095 6081 uint16_t version;
f4dc4d17 6082
96b79293 6083 section->read (dwarf2_per_objfile->objfile);
9c541725 6084 info_ptr = section->buffer + to_underlying (sect_off);
ac298888 6085 read_initial_length (abfd, info_ptr, &initial_length_size);
f4dc4d17 6086 offset_size = initial_length_size == 4 ? 4 : 8;
43988095
JK
6087 info_ptr += initial_length_size;
6088
6089 version = read_2_bytes (abfd, info_ptr);
6090 info_ptr += 2;
6091 if (version >= 5)
6092 {
6093 /* Skip unit type and address size. */
6094 info_ptr += 2;
6095 }
6096
24aa364d 6097 return (sect_offset) read_offset (abfd, info_ptr, offset_size);
f4dc4d17
DE
6098}
6099
b83470bf
TT
6100/* A partial symtab that is used only for include files. */
6101struct dwarf2_include_psymtab : public partial_symtab
6102{
6103 dwarf2_include_psymtab (const char *filename, struct objfile *objfile)
6104 : partial_symtab (filename, objfile)
6105 {
6106 }
6107
6108 void read_symtab (struct objfile *objfile) override
6109 {
194d088f
TV
6110 /* It's an include file, no symbols to read for it.
6111 Everything is in the includer symtab. */
6112
6113 /* The expansion of a dwarf2_include_psymtab is just a trigger for
6114 expansion of the includer psymtab. We use the dependencies[0] field to
6115 model the includer. But if we go the regular route of calling
6116 expand_psymtab here, and having expand_psymtab call expand_dependencies
6117 to expand the includer, we'll only use expand_psymtab on the includer
6118 (making it a non-toplevel psymtab), while if we expand the includer via
6119 another path, we'll use read_symtab (making it a toplevel psymtab).
6120 So, don't pretend a dwarf2_include_psymtab is an actual toplevel
6121 psymtab, and trigger read_symtab on the includer here directly. */
6122 includer ()->read_symtab (objfile);
b83470bf
TT
6123 }
6124
6125 void expand_psymtab (struct objfile *objfile) override
6126 {
194d088f
TV
6127 /* This is not called by read_symtab, and should not be called by any
6128 expand_dependencies. */
6129 gdb_assert (false);
b83470bf
TT
6130 }
6131
5717c425 6132 bool readin_p (struct objfile *objfile) const override
b83470bf 6133 {
5717c425 6134 return includer ()->readin_p (objfile);
b83470bf
TT
6135 }
6136
5717c425 6137 compunit_symtab *get_compunit_symtab (struct objfile *objfile) const override
b83470bf
TT
6138 {
6139 return nullptr;
6140 }
6141
6142private:
194d088f
TV
6143 partial_symtab *includer () const
6144 {
6145 /* An include psymtab has exactly one dependency: the psymtab that
6146 includes it. */
6147 gdb_assert (this->number_of_dependencies == 1);
6148 return this->dependencies[0];
6149 }
b83470bf
TT
6150};
6151
aaa75496
JB
6152/* Allocate a new partial symtab for file named NAME and mark this new
6153 partial symtab as being an include of PST. */
6154
6155static void
891813be 6156dwarf2_create_include_psymtab (const char *name, dwarf2_psymtab *pst,
aaa75496
JB
6157 struct objfile *objfile)
6158{
b83470bf 6159 dwarf2_include_psymtab *subpst = new dwarf2_include_psymtab (name, objfile);
aaa75496 6160
fbd9ab74 6161 if (!IS_ABSOLUTE_PATH (subpst->filename))
45940949 6162 subpst->dirname = pst->dirname;
fbd9ab74 6163
a9342b62 6164 subpst->dependencies = objfile->partial_symtabs->allocate_dependencies (1);
aaa75496
JB
6165 subpst->dependencies[0] = pst;
6166 subpst->number_of_dependencies = 1;
aaa75496
JB
6167}
6168
6169/* Read the Line Number Program data and extract the list of files
6170 included by the source file represented by PST. Build an include
d85a05f0 6171 partial symtab for each of these included files. */
aaa75496
JB
6172
6173static void
6174dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
dee91e82 6175 struct die_info *die,
891813be 6176 dwarf2_psymtab *pst)
aaa75496 6177{
fff8551c 6178 line_header_up lh;
d85a05f0 6179 struct attribute *attr;
aaa75496 6180
d85a05f0 6181 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
435d3d88 6182 if (attr != nullptr)
9c541725 6183 lh = dwarf_decode_line_header ((sect_offset) DW_UNSND (attr), cu);
aaa75496
JB
6184 if (lh == NULL)
6185 return; /* No linetable, so no includes. */
6186
79748972
TT
6187 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). Also note
6188 that we pass in the raw text_low here; that is ok because we're
6189 only decoding the line table to make include partial symtabs, and
6190 so the addresses aren't really used. */
4ae976d1 6191 dwarf_decode_lines (lh.get (), pst->dirname, cu, pst,
79748972 6192 pst->raw_text_low (), 1);
aaa75496
JB
6193}
6194
348e048f 6195static hashval_t
52dc124a 6196hash_signatured_type (const void *item)
348e048f 6197{
9a3c8263
SM
6198 const struct signatured_type *sig_type
6199 = (const struct signatured_type *) item;
9a619af0 6200
348e048f 6201 /* This drops the top 32 bits of the signature, but is ok for a hash. */
52dc124a 6202 return sig_type->signature;
348e048f
DE
6203}
6204
6205static int
52dc124a 6206eq_signatured_type (const void *item_lhs, const void *item_rhs)
348e048f 6207{
9a3c8263
SM
6208 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
6209 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
9a619af0 6210
348e048f
DE
6211 return lhs->signature == rhs->signature;
6212}
6213
1fd400ff
TT
6214/* Allocate a hash table for signatured types. */
6215
b0b6a987 6216static htab_up
298e9637 6217allocate_signatured_type_table ()
1fd400ff 6218{
b0b6a987
TT
6219 return htab_up (htab_create_alloc (41,
6220 hash_signatured_type,
6221 eq_signatured_type,
6222 NULL, xcalloc, xfree));
1fd400ff
TT
6223}
6224
d467dd73 6225/* A helper function to add a signatured type CU to a table. */
1fd400ff
TT
6226
6227static int
d467dd73 6228add_signatured_type_cu_to_table (void **slot, void *datum)
1fd400ff 6229{
9a3c8263 6230 struct signatured_type *sigt = (struct signatured_type *) *slot;
b2bdb8cf
SM
6231 std::vector<signatured_type *> *all_type_units
6232 = (std::vector<signatured_type *> *) datum;
1fd400ff 6233
b2bdb8cf 6234 all_type_units->push_back (sigt);
1fd400ff
TT
6235
6236 return 1;
6237}
6238
78d4d2c5 6239/* A helper for create_debug_types_hash_table. Read types from SECTION
43988095
JK
6240 and fill them into TYPES_HTAB. It will process only type units,
6241 therefore DW_UT_type. */
c88ee1f0 6242
78d4d2c5 6243static void
ed2dc618
SM
6244create_debug_type_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6245 struct dwo_file *dwo_file,
b0b6a987 6246 dwarf2_section_info *section, htab_up &types_htab,
43988095 6247 rcuh_kind section_kind)
348e048f 6248{
3019eac3 6249 struct objfile *objfile = dwarf2_per_objfile->objfile;
4bdcc0c1 6250 struct dwarf2_section_info *abbrev_section;
78d4d2c5
JK
6251 bfd *abfd;
6252 const gdb_byte *info_ptr, *end_ptr;
348e048f 6253
4bdcc0c1
DE
6254 abbrev_section = (dwo_file != NULL
6255 ? &dwo_file->sections.abbrev
5989a64e 6256 : &dwarf2_per_objfile->per_bfd->abbrev);
4bdcc0c1 6257
b4f54984 6258 if (dwarf_read_debug)
43988095 6259 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
96b79293
TT
6260 section->get_name (),
6261 abbrev_section->get_file_name ());
09406207 6262
96b79293 6263 section->read (objfile);
78d4d2c5 6264 info_ptr = section->buffer;
348e048f 6265
78d4d2c5
JK
6266 if (info_ptr == NULL)
6267 return;
348e048f 6268
78d4d2c5
JK
6269 /* We can't set abfd until now because the section may be empty or
6270 not present, in which case the bfd is unknown. */
96b79293 6271 abfd = section->get_bfd_owner ();
348e048f 6272
c0ab21c2
TT
6273 /* We don't use cutu_reader here because we don't need to read
6274 any dies: the signature is in the header. */
3019eac3 6275
78d4d2c5
JK
6276 end_ptr = info_ptr + section->size;
6277 while (info_ptr < end_ptr)
6278 {
78d4d2c5
JK
6279 struct signatured_type *sig_type;
6280 struct dwo_unit *dwo_tu;
6281 void **slot;
6282 const gdb_byte *ptr = info_ptr;
6283 struct comp_unit_head header;
6284 unsigned int length;
8b70b953 6285
9c541725 6286 sect_offset sect_off = (sect_offset) (ptr - section->buffer);
348e048f 6287
a49dd8dd
JK
6288 /* Initialize it due to a false compiler warning. */
6289 header.signature = -1;
9c541725 6290 header.type_cu_offset_in_tu = (cu_offset) -1;
a49dd8dd 6291
78d4d2c5
JK
6292 /* We need to read the type's signature in order to build the hash
6293 table, but we don't need anything else just yet. */
348e048f 6294
ed2dc618 6295 ptr = read_and_check_comp_unit_head (dwarf2_per_objfile, &header, section,
43988095 6296 abbrev_section, ptr, section_kind);
348e048f 6297
4057dfde 6298 length = header.get_length ();
6caca83c 6299
78d4d2c5
JK
6300 /* Skip dummy type units. */
6301 if (ptr >= info_ptr + length
43988095
JK
6302 || peek_abbrev_code (abfd, ptr) == 0
6303 || header.unit_type != DW_UT_type)
78d4d2c5
JK
6304 {
6305 info_ptr += length;
6306 continue;
6307 }
dee91e82 6308
78d4d2c5
JK
6309 if (types_htab == NULL)
6310 {
6311 if (dwo_file)
298e9637 6312 types_htab = allocate_dwo_unit_table ();
78d4d2c5 6313 else
298e9637 6314 types_htab = allocate_signatured_type_table ();
78d4d2c5 6315 }
8b70b953 6316
78d4d2c5
JK
6317 if (dwo_file)
6318 {
6319 sig_type = NULL;
5989a64e 6320 dwo_tu = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
78d4d2c5
JK
6321 struct dwo_unit);
6322 dwo_tu->dwo_file = dwo_file;
43988095 6323 dwo_tu->signature = header.signature;
9c541725 6324 dwo_tu->type_offset_in_tu = header.type_cu_offset_in_tu;
78d4d2c5 6325 dwo_tu->section = section;
9c541725 6326 dwo_tu->sect_off = sect_off;
78d4d2c5
JK
6327 dwo_tu->length = length;
6328 }
6329 else
6330 {
6331 /* N.B.: type_offset is not usable if this type uses a DWO file.
6332 The real type_offset is in the DWO file. */
6333 dwo_tu = NULL;
5989a64e 6334 sig_type = dwarf2_per_objfile->per_bfd->allocate_signatured_type ();
43988095 6335 sig_type->signature = header.signature;
9c541725 6336 sig_type->type_offset_in_tu = header.type_cu_offset_in_tu;
e3b94546 6337 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
78d4d2c5
JK
6338 sig_type->per_cu.is_debug_types = 1;
6339 sig_type->per_cu.section = section;
9c541725 6340 sig_type->per_cu.sect_off = sect_off;
78d4d2c5
JK
6341 sig_type->per_cu.length = length;
6342 }
6343
b0b6a987 6344 slot = htab_find_slot (types_htab.get (),
78d4d2c5
JK
6345 dwo_file ? (void*) dwo_tu : (void *) sig_type,
6346 INSERT);
6347 gdb_assert (slot != NULL);
6348 if (*slot != NULL)
6349 {
9c541725 6350 sect_offset dup_sect_off;
0349ea22 6351
3019eac3
DE
6352 if (dwo_file)
6353 {
78d4d2c5
JK
6354 const struct dwo_unit *dup_tu
6355 = (const struct dwo_unit *) *slot;
6356
9c541725 6357 dup_sect_off = dup_tu->sect_off;
3019eac3
DE
6358 }
6359 else
6360 {
78d4d2c5
JK
6361 const struct signatured_type *dup_tu
6362 = (const struct signatured_type *) *slot;
6363
9c541725 6364 dup_sect_off = dup_tu->per_cu.sect_off;
3019eac3 6365 }
8b70b953 6366
b98664d3 6367 complaint (_("debug type entry at offset %s is duplicate to"
9d8780f0
SM
6368 " the entry at offset %s, signature %s"),
6369 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
43988095 6370 hex_string (header.signature));
78d4d2c5
JK
6371 }
6372 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
3019eac3 6373
78d4d2c5 6374 if (dwarf_read_debug > 1)
9d8780f0
SM
6375 fprintf_unfiltered (gdb_stdlog, " offset %s, signature %s\n",
6376 sect_offset_str (sect_off),
43988095 6377 hex_string (header.signature));
3019eac3 6378
78d4d2c5
JK
6379 info_ptr += length;
6380 }
6381}
3019eac3 6382
78d4d2c5
JK
6383/* Create the hash table of all entries in the .debug_types
6384 (or .debug_types.dwo) section(s).
6385 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
6386 otherwise it is NULL.
b3c8eb43 6387
78d4d2c5 6388 The result is a pointer to the hash table or NULL if there are no types.
348e048f 6389
78d4d2c5 6390 Note: This function processes DWO files only, not DWP files. */
348e048f 6391
78d4d2c5 6392static void
ed2dc618
SM
6393create_debug_types_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6394 struct dwo_file *dwo_file,
fd5866f6 6395 gdb::array_view<dwarf2_section_info> type_sections,
b0b6a987 6396 htab_up &types_htab)
78d4d2c5 6397{
fd5866f6
SM
6398 for (dwarf2_section_info &section : type_sections)
6399 create_debug_type_hash_table (dwarf2_per_objfile, dwo_file, &section,
ed2dc618 6400 types_htab, rcuh_kind::TYPE);
3019eac3
DE
6401}
6402
6403/* Create the hash table of all entries in the .debug_types section,
6404 and initialize all_type_units.
6405 The result is zero if there is an error (e.g. missing .debug_types section),
6406 otherwise non-zero. */
6407
6408static int
ed2dc618 6409create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
3019eac3 6410{
b0b6a987 6411 htab_up types_htab;
3019eac3 6412
ed2dc618 6413 create_debug_type_hash_table (dwarf2_per_objfile, NULL,
5989a64e 6414 &dwarf2_per_objfile->per_bfd->info, types_htab,
43988095 6415 rcuh_kind::COMPILE);
ed2dc618 6416 create_debug_types_hash_table (dwarf2_per_objfile, NULL,
5989a64e 6417 dwarf2_per_objfile->per_bfd->types, types_htab);
3019eac3
DE
6418 if (types_htab == NULL)
6419 {
5989a64e 6420 dwarf2_per_objfile->per_bfd->signatured_types = NULL;
3019eac3
DE
6421 return 0;
6422 }
6423
5989a64e 6424 dwarf2_per_objfile->per_bfd->signatured_types = std::move (types_htab);
348e048f 6425
5989a64e
SM
6426 gdb_assert (dwarf2_per_objfile->per_bfd->all_type_units.empty ());
6427 dwarf2_per_objfile->per_bfd->all_type_units.reserve
6428 (htab_elements (dwarf2_per_objfile->per_bfd->signatured_types.get ()));
b2bdb8cf 6429
5989a64e 6430 htab_traverse_noresize (dwarf2_per_objfile->per_bfd->signatured_types.get (),
b0b6a987 6431 add_signatured_type_cu_to_table,
5989a64e 6432 &dwarf2_per_objfile->per_bfd->all_type_units);
1fd400ff 6433
348e048f
DE
6434 return 1;
6435}
6436
5989a64e 6437/* Add an entry for signature SIG to dwarf2_per_objfile->per_bfd->signatured_types.
6aa5f3a6
DE
6438 If SLOT is non-NULL, it is the entry to use in the hash table.
6439 Otherwise we find one. */
6440
6441static struct signatured_type *
ed2dc618
SM
6442add_type_unit (struct dwarf2_per_objfile *dwarf2_per_objfile, ULONGEST sig,
6443 void **slot)
6aa5f3a6 6444{
5989a64e
SM
6445 if (dwarf2_per_objfile->per_bfd->all_type_units.size ()
6446 == dwarf2_per_objfile->per_bfd->all_type_units.capacity ())
6447 ++dwarf2_per_objfile->per_bfd->tu_stats.nr_all_type_units_reallocs;
6aa5f3a6 6448
5989a64e 6449 signatured_type *sig_type = dwarf2_per_objfile->per_bfd->allocate_signatured_type ();
b2bdb8cf 6450
af758d11
SM
6451 dwarf2_per_objfile->resize_symtabs ();
6452
5989a64e 6453 dwarf2_per_objfile->per_bfd->all_type_units.push_back (sig_type);
6aa5f3a6
DE
6454 sig_type->signature = sig;
6455 sig_type->per_cu.is_debug_types = 1;
5989a64e 6456 if (dwarf2_per_objfile->per_bfd->using_index)
6aa5f3a6
DE
6457 {
6458 sig_type->per_cu.v.quick =
5989a64e 6459 OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
6aa5f3a6
DE
6460 struct dwarf2_per_cu_quick_data);
6461 }
6462
6463 if (slot == NULL)
6464 {
5989a64e 6465 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6
DE
6466 sig_type, INSERT);
6467 }
6468 gdb_assert (*slot == NULL);
6469 *slot = sig_type;
6470 /* The rest of sig_type must be filled in by the caller. */
6471 return sig_type;
6472}
6473
a2ce51a0
DE
6474/* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
6475 Fill in SIG_ENTRY with DWO_ENTRY. */
6476
6477static void
ed2dc618 6478fill_in_sig_entry_from_dwo_entry (struct dwarf2_per_objfile *dwarf2_per_objfile,
a2ce51a0
DE
6479 struct signatured_type *sig_entry,
6480 struct dwo_unit *dwo_entry)
6481{
1859c670
SM
6482 dwarf2_per_bfd *per_bfd = dwarf2_per_objfile->per_bfd;
6483
7ee85ab1 6484 /* Make sure we're not clobbering something we don't expect to. */
a2ce51a0
DE
6485 gdb_assert (! sig_entry->per_cu.queued);
6486 gdb_assert (sig_entry->per_cu.cu == NULL);
1859c670 6487 if (per_bfd->using_index)
6aa5f3a6
DE
6488 {
6489 gdb_assert (sig_entry->per_cu.v.quick != NULL);
af758d11 6490 gdb_assert (!dwarf2_per_objfile->symtab_set_p (&sig_entry->per_cu));
6aa5f3a6
DE
6491 }
6492 else
6493 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
a2ce51a0 6494 gdb_assert (sig_entry->signature == dwo_entry->signature);
9c541725 6495 gdb_assert (to_underlying (sig_entry->type_offset_in_section) == 0);
a2ce51a0 6496 gdb_assert (sig_entry->type_unit_group == NULL);
7ee85ab1
DE
6497 gdb_assert (sig_entry->dwo_unit == NULL);
6498
6499 sig_entry->per_cu.section = dwo_entry->section;
9c541725 6500 sig_entry->per_cu.sect_off = dwo_entry->sect_off;
7ee85ab1
DE
6501 sig_entry->per_cu.length = dwo_entry->length;
6502 sig_entry->per_cu.reading_dwo_directly = 1;
e3b94546 6503 sig_entry->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
1859c670 6504 sig_entry->per_cu.per_bfd = per_bfd;
a2ce51a0
DE
6505 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
6506 sig_entry->dwo_unit = dwo_entry;
6507}
6508
6509/* Subroutine of lookup_signatured_type.
7ee85ab1
DE
6510 If we haven't read the TU yet, create the signatured_type data structure
6511 for a TU to be read in directly from a DWO file, bypassing the stub.
6512 This is the "Stay in DWO Optimization": When there is no DWP file and we're
6513 using .gdb_index, then when reading a CU we want to stay in the DWO file
6514 containing that CU. Otherwise we could end up reading several other DWO
6515 files (due to comdat folding) to process the transitive closure of all the
6516 mentioned TUs, and that can be slow. The current DWO file will have every
6517 type signature that it needs.
a2ce51a0
DE
6518 We only do this for .gdb_index because in the psymtab case we already have
6519 to read all the DWOs to build the type unit groups. */
6520
6521static struct signatured_type *
6522lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6523{
5e22e966 6524 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
a2ce51a0
DE
6525 struct dwo_file *dwo_file;
6526 struct dwo_unit find_dwo_entry, *dwo_entry;
6527 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6528 void **slot;
a2ce51a0 6529
5989a64e 6530 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->per_bfd->using_index);
a2ce51a0 6531
6aa5f3a6
DE
6532 /* If TU skeletons have been removed then we may not have read in any
6533 TUs yet. */
5989a64e
SM
6534 if (dwarf2_per_objfile->per_bfd->signatured_types == NULL)
6535 dwarf2_per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
a2ce51a0
DE
6536
6537 /* We only ever need to read in one copy of a signatured type.
6aa5f3a6
DE
6538 Use the global signatured_types array to do our own comdat-folding
6539 of types. If this is the first time we're reading this TU, and
6540 the TU has an entry in .gdb_index, replace the recorded data from
6541 .gdb_index with this TU. */
a2ce51a0 6542
a2ce51a0 6543 find_sig_entry.signature = sig;
5989a64e 6544 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6 6545 &find_sig_entry, INSERT);
9a3c8263 6546 sig_entry = (struct signatured_type *) *slot;
7ee85ab1
DE
6547
6548 /* We can get here with the TU already read, *or* in the process of being
6aa5f3a6
DE
6549 read. Don't reassign the global entry to point to this DWO if that's
6550 the case. Also note that if the TU is already being read, it may not
6551 have come from a DWO, the program may be a mix of Fission-compiled
6552 code and non-Fission-compiled code. */
6553
6554 /* Have we already tried to read this TU?
6555 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
6556 needn't exist in the global table yet). */
6557 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
a2ce51a0
DE
6558 return sig_entry;
6559
6aa5f3a6
DE
6560 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
6561 dwo_unit of the TU itself. */
6562 dwo_file = cu->dwo_unit->dwo_file;
6563
a2ce51a0
DE
6564 /* Ok, this is the first time we're reading this TU. */
6565 if (dwo_file->tus == NULL)
6566 return NULL;
6567 find_dwo_entry.signature = sig;
b0b6a987
TT
6568 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus.get (),
6569 &find_dwo_entry);
a2ce51a0
DE
6570 if (dwo_entry == NULL)
6571 return NULL;
6572
6aa5f3a6
DE
6573 /* If the global table doesn't have an entry for this TU, add one. */
6574 if (sig_entry == NULL)
ed2dc618 6575 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
6aa5f3a6 6576
ed2dc618 6577 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
89e63ee4 6578 sig_entry->per_cu.tu_read = 1;
a2ce51a0
DE
6579 return sig_entry;
6580}
6581
a2ce51a0
DE
6582/* Subroutine of lookup_signatured_type.
6583 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
6aa5f3a6
DE
6584 then try the DWP file. If the TU stub (skeleton) has been removed then
6585 it won't be in .gdb_index. */
a2ce51a0
DE
6586
6587static struct signatured_type *
6588lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6589{
5e22e966 6590 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 6591 struct dwp_file *dwp_file = get_dwp_file (dwarf2_per_objfile);
a2ce51a0
DE
6592 struct dwo_unit *dwo_entry;
6593 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6594 void **slot;
a2ce51a0 6595
5989a64e 6596 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->per_bfd->using_index);
a2ce51a0
DE
6597 gdb_assert (dwp_file != NULL);
6598
6aa5f3a6
DE
6599 /* If TU skeletons have been removed then we may not have read in any
6600 TUs yet. */
5989a64e
SM
6601 if (dwarf2_per_objfile->per_bfd->signatured_types == NULL)
6602 dwarf2_per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
a2ce51a0 6603
6aa5f3a6 6604 find_sig_entry.signature = sig;
5989a64e 6605 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6 6606 &find_sig_entry, INSERT);
9a3c8263 6607 sig_entry = (struct signatured_type *) *slot;
6aa5f3a6
DE
6608
6609 /* Have we already tried to read this TU?
6610 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
6611 needn't exist in the global table yet). */
6612 if (sig_entry != NULL)
6613 return sig_entry;
6614
a2ce51a0
DE
6615 if (dwp_file->tus == NULL)
6616 return NULL;
ed2dc618 6617 dwo_entry = lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, NULL,
57d63ce2 6618 sig, 1 /* is_debug_types */);
a2ce51a0
DE
6619 if (dwo_entry == NULL)
6620 return NULL;
6621
ed2dc618
SM
6622 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
6623 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
a2ce51a0 6624
a2ce51a0
DE
6625 return sig_entry;
6626}
6627
380bca97 6628/* Lookup a signature based type for DW_FORM_ref_sig8.
5a8b3f62
DE
6629 Returns NULL if signature SIG is not present in the table.
6630 It is up to the caller to complain about this. */
348e048f
DE
6631
6632static struct signatured_type *
a2ce51a0 6633lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
348e048f 6634{
5e22e966 6635 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 6636
a2ce51a0 6637 if (cu->dwo_unit
5989a64e 6638 && dwarf2_per_objfile->per_bfd->using_index)
a2ce51a0
DE
6639 {
6640 /* We're in a DWO/DWP file, and we're using .gdb_index.
6641 These cases require special processing. */
ed2dc618 6642 if (get_dwp_file (dwarf2_per_objfile) == NULL)
a2ce51a0
DE
6643 return lookup_dwo_signatured_type (cu, sig);
6644 else
6645 return lookup_dwp_signatured_type (cu, sig);
6646 }
6647 else
6648 {
6649 struct signatured_type find_entry, *entry;
348e048f 6650
5989a64e 6651 if (dwarf2_per_objfile->per_bfd->signatured_types == NULL)
a2ce51a0
DE
6652 return NULL;
6653 find_entry.signature = sig;
9a3c8263 6654 entry = ((struct signatured_type *)
5989a64e 6655 htab_find (dwarf2_per_objfile->per_bfd->signatured_types.get (),
b0b6a987 6656 &find_entry));
a2ce51a0
DE
6657 return entry;
6658 }
348e048f 6659}
18a8505e 6660
42e7ad6c 6661/* Low level DIE reading support. */
348e048f 6662
d85a05f0
DJ
6663/* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
6664
6665static void
6666init_cu_die_reader (struct die_reader_specs *reader,
dee91e82 6667 struct dwarf2_cu *cu,
3019eac3 6668 struct dwarf2_section_info *section,
685af9cd
TT
6669 struct dwo_file *dwo_file,
6670 struct abbrev_table *abbrev_table)
d85a05f0 6671{
fceca515 6672 gdb_assert (section->readin && section->buffer != NULL);
96b79293 6673 reader->abfd = section->get_bfd_owner ();
d85a05f0 6674 reader->cu = cu;
3019eac3 6675 reader->dwo_file = dwo_file;
dee91e82
DE
6676 reader->die_section = section;
6677 reader->buffer = section->buffer;
f664829e 6678 reader->buffer_end = section->buffer + section->size;
685af9cd 6679 reader->abbrev_table = abbrev_table;
d85a05f0
DJ
6680}
6681
c0ab21c2 6682/* Subroutine of cutu_reader to simplify it.
b0c7bfa9 6683 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
c0ab21c2 6684 There's just a lot of work to do, and cutu_reader is big enough
b0c7bfa9
DE
6685 already.
6686
6687 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
6688 from it to the DIE in the DWO. If NULL we are skipping the stub.
a2ce51a0
DE
6689 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
6690 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
c54a1dd8
DE
6691 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
6692 STUB_COMP_DIR may be non-NULL.
3e225074 6693 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE
b0c7bfa9 6694 are filled in with the info of the DIE from the DWO file.
685af9cd
TT
6695 *RESULT_DWO_ABBREV_TABLE will be filled in with the abbrev table allocated
6696 from the dwo. Since *RESULT_READER references this abbrev table, it must be
6697 kept around for at least as long as *RESULT_READER.
6698
b0c7bfa9
DE
6699 The result is non-zero if a valid (non-dummy) DIE was found. */
6700
6701static int
4ab09049 6702read_cutu_die_from_dwo (dwarf2_cu *cu,
b0c7bfa9 6703 struct dwo_unit *dwo_unit,
b0c7bfa9 6704 struct die_info *stub_comp_unit_die,
a2ce51a0 6705 const char *stub_comp_dir,
b0c7bfa9 6706 struct die_reader_specs *result_reader,
d521ce57 6707 const gdb_byte **result_info_ptr,
b0c7bfa9 6708 struct die_info **result_comp_unit_die,
685af9cd 6709 abbrev_table_up *result_dwo_abbrev_table)
b0c7bfa9 6710{
4ab09049
SM
6711 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
6712 dwarf2_per_cu_data *per_cu = cu->per_cu;
b0c7bfa9 6713 struct objfile *objfile = dwarf2_per_objfile->objfile;
b0c7bfa9 6714 bfd *abfd;
d521ce57 6715 const gdb_byte *begin_info_ptr, *info_ptr;
b0c7bfa9
DE
6716 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
6717 int i,num_extra_attrs;
6718 struct dwarf2_section_info *dwo_abbrev_section;
b0c7bfa9
DE
6719 struct die_info *comp_unit_die;
6720
b0aeadb3
DE
6721 /* At most one of these may be provided. */
6722 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
a2ce51a0 6723
b0c7bfa9
DE
6724 /* These attributes aren't processed until later:
6725 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
0d60c288
DE
6726 DW_AT_comp_dir is used now, to find the DWO file, but it is also
6727 referenced later. However, these attributes are found in the stub
6728 which we won't have later. In order to not impose this complication
6729 on the rest of the code, we read them here and copy them to the
6730 DWO CU/TU die. */
b0c7bfa9
DE
6731
6732 stmt_list = NULL;
6733 low_pc = NULL;
6734 high_pc = NULL;
6735 ranges = NULL;
6736 comp_dir = NULL;
6737
6738 if (stub_comp_unit_die != NULL)
6739 {
6740 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
6741 DWO file. */
4ab09049 6742 if (!per_cu->is_debug_types)
b0c7bfa9
DE
6743 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
6744 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
6745 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
6746 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
6747 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
6748
a39fdb41 6749 cu->addr_base = stub_comp_unit_die->addr_base ();
b0c7bfa9 6750
18a8505e
AT
6751 /* There should be a DW_AT_rnglists_base (DW_AT_GNU_ranges_base) attribute
6752 here (if needed). We need the value before we can process
6753 DW_AT_ranges. */
a39fdb41 6754 cu->ranges_base = stub_comp_unit_die->ranges_base ();
b0c7bfa9 6755 }
a2ce51a0
DE
6756 else if (stub_comp_dir != NULL)
6757 {
6758 /* Reconstruct the comp_dir attribute to simplify the code below. */
8d749320 6759 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
a2ce51a0
DE
6760 comp_dir->name = DW_AT_comp_dir;
6761 comp_dir->form = DW_FORM_string;
6762 DW_STRING_IS_CANONICAL (comp_dir) = 0;
6763 DW_STRING (comp_dir) = stub_comp_dir;
6764 }
b0c7bfa9
DE
6765
6766 /* Set up for reading the DWO CU/TU. */
6767 cu->dwo_unit = dwo_unit;
685af9cd 6768 dwarf2_section_info *section = dwo_unit->section;
96b79293
TT
6769 section->read (objfile);
6770 abfd = section->get_bfd_owner ();
9c541725
PA
6771 begin_info_ptr = info_ptr = (section->buffer
6772 + to_underlying (dwo_unit->sect_off));
b0c7bfa9 6773 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
b0c7bfa9 6774
4ab09049 6775 if (per_cu->is_debug_types)
b0c7bfa9 6776 {
4ab09049 6777 signatured_type *sig_type = (struct signatured_type *) per_cu;
b0c7bfa9 6778
ed2dc618
SM
6779 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
6780 &cu->header, section,
b0c7bfa9 6781 dwo_abbrev_section,
43988095 6782 info_ptr, rcuh_kind::TYPE);
a2ce51a0 6783 /* This is not an assert because it can be caused by bad debug info. */
43988095 6784 if (sig_type->signature != cu->header.signature)
a2ce51a0
DE
6785 {
6786 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
9d8780f0 6787 " TU at offset %s [in module %s]"),
a2ce51a0 6788 hex_string (sig_type->signature),
43988095 6789 hex_string (cu->header.signature),
9d8780f0 6790 sect_offset_str (dwo_unit->sect_off),
a2ce51a0
DE
6791 bfd_get_filename (abfd));
6792 }
9c541725 6793 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
6794 /* For DWOs coming from DWP files, we don't know the CU length
6795 nor the type's offset in the TU until now. */
4057dfde 6796 dwo_unit->length = cu->header.get_length ();
9c541725 6797 dwo_unit->type_offset_in_tu = cu->header.type_cu_offset_in_tu;
b0c7bfa9
DE
6798
6799 /* Establish the type offset that can be used to lookup the type.
6800 For DWO files, we don't know it until now. */
9c541725
PA
6801 sig_type->type_offset_in_section
6802 = dwo_unit->sect_off + to_underlying (dwo_unit->type_offset_in_tu);
b0c7bfa9
DE
6803 }
6804 else
6805 {
ed2dc618
SM
6806 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
6807 &cu->header, section,
b0c7bfa9 6808 dwo_abbrev_section,
43988095 6809 info_ptr, rcuh_kind::COMPILE);
9c541725 6810 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
6811 /* For DWOs coming from DWP files, we don't know the CU length
6812 until now. */
4057dfde 6813 dwo_unit->length = cu->header.get_length ();
b0c7bfa9
DE
6814 }
6815
685af9cd 6816 *result_dwo_abbrev_table
86de1d91
TT
6817 = abbrev_table::read (objfile, dwo_abbrev_section,
6818 cu->header.abbrev_sect_off);
685af9cd
TT
6819 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file,
6820 result_dwo_abbrev_table->get ());
b0c7bfa9
DE
6821
6822 /* Read in the die, but leave space to copy over the attributes
6823 from the stub. This has the benefit of simplifying the rest of
6824 the code - all the work to maintain the illusion of a single
6825 DW_TAG_{compile,type}_unit DIE is done here. */
6826 num_extra_attrs = ((stmt_list != NULL)
6827 + (low_pc != NULL)
6828 + (high_pc != NULL)
6829 + (ranges != NULL)
6830 + (comp_dir != NULL));
6831 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
3e225074 6832 num_extra_attrs);
b0c7bfa9
DE
6833
6834 /* Copy over the attributes from the stub to the DIE we just read in. */
6835 comp_unit_die = *result_comp_unit_die;
6836 i = comp_unit_die->num_attrs;
6837 if (stmt_list != NULL)
6838 comp_unit_die->attrs[i++] = *stmt_list;
6839 if (low_pc != NULL)
6840 comp_unit_die->attrs[i++] = *low_pc;
6841 if (high_pc != NULL)
6842 comp_unit_die->attrs[i++] = *high_pc;
6843 if (ranges != NULL)
6844 comp_unit_die->attrs[i++] = *ranges;
6845 if (comp_dir != NULL)
6846 comp_unit_die->attrs[i++] = *comp_dir;
6847 comp_unit_die->num_attrs += num_extra_attrs;
6848
b4f54984 6849 if (dwarf_die_debug)
bf6af496
DE
6850 {
6851 fprintf_unfiltered (gdb_stdlog,
6852 "Read die from %s@0x%x of %s:\n",
96b79293 6853 section->get_name (),
bf6af496
DE
6854 (unsigned) (begin_info_ptr - section->buffer),
6855 bfd_get_filename (abfd));
b4f54984 6856 dump_die (comp_unit_die, dwarf_die_debug);
bf6af496
DE
6857 }
6858
b0c7bfa9
DE
6859 /* Skip dummy compilation units. */
6860 if (info_ptr >= begin_info_ptr + dwo_unit->length
6861 || peek_abbrev_code (abfd, info_ptr) == 0)
6862 return 0;
6863
6864 *result_info_ptr = info_ptr;
6865 return 1;
6866}
6867
a084a2a6
AT
6868/* Return the signature of the compile unit, if found. In DWARF 4 and before,
6869 the signature is in the DW_AT_GNU_dwo_id attribute. In DWARF 5 and later, the
6870 signature is part of the header. */
6871static gdb::optional<ULONGEST>
6872lookup_dwo_id (struct dwarf2_cu *cu, struct die_info* comp_unit_die)
6873{
6874 if (cu->header.version >= 5)
6875 return cu->header.signature;
6876 struct attribute *attr;
6877 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
6878 if (attr == nullptr)
6879 return gdb::optional<ULONGEST> ();
6880 return DW_UNSND (attr);
6881}
6882
c0ab21c2 6883/* Subroutine of cutu_reader to simplify it.
b0c7bfa9 6884 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
6a506a2d 6885 Returns NULL if the specified DWO unit cannot be found. */
b0c7bfa9
DE
6886
6887static struct dwo_unit *
4ab09049 6888lookup_dwo_unit (dwarf2_cu *cu, die_info *comp_unit_die, const char *dwo_name)
b0c7bfa9 6889{
4ab09049 6890 dwarf2_per_cu_data *per_cu = cu->per_cu;
b0c7bfa9 6891 struct dwo_unit *dwo_unit;
c0ab21c2 6892 const char *comp_dir;
b0c7bfa9 6893
a2ce51a0
DE
6894 gdb_assert (cu != NULL);
6895
b0c7bfa9 6896 /* Yeah, we look dwo_name up again, but it simplifies the code. */
a084a2a6 6897 dwo_name = dwarf2_dwo_name (comp_unit_die, cu);
7d45c7c3 6898 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
b0c7bfa9 6899
4ab09049
SM
6900 if (per_cu->is_debug_types)
6901 dwo_unit = lookup_dwo_type_unit (cu, dwo_name, comp_dir);
b0c7bfa9
DE
6902 else
6903 {
a084a2a6 6904 gdb::optional<ULONGEST> signature = lookup_dwo_id (cu, comp_unit_die);
4ab09049 6905
a084a2a6 6906 if (!signature.has_value ())
b0c7bfa9
DE
6907 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
6908 " [in module %s]"),
4ab09049
SM
6909 dwo_name, bfd_get_filename (per_cu->per_bfd->obfd));
6910
6911 dwo_unit = lookup_dwo_comp_unit (cu, dwo_name, comp_dir, *signature);
b0c7bfa9
DE
6912 }
6913
b0c7bfa9
DE
6914 return dwo_unit;
6915}
6916
c0ab21c2 6917/* Subroutine of cutu_reader to simplify it.
6aa5f3a6 6918 See it for a description of the parameters.
fcd3b13d 6919 Read a TU directly from a DWO file, bypassing the stub. */
a2ce51a0 6920
c0ab21c2 6921void
9e021579
SM
6922cutu_reader::init_tu_and_read_dwo_dies (dwarf2_per_cu_data *this_cu,
6923 dwarf2_per_objfile *per_objfile,
6751ebae 6924 int use_existing_cu)
a2ce51a0 6925{
a2ce51a0 6926 struct signatured_type *sig_type;
a2ce51a0
DE
6927
6928 /* Verify we can do the following downcast, and that we have the
6929 data we need. */
6930 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
6931 sig_type = (struct signatured_type *) this_cu;
6932 gdb_assert (sig_type->dwo_unit != NULL);
6933
6aa5f3a6
DE
6934 if (use_existing_cu && this_cu->cu != NULL)
6935 {
6936 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
6aa5f3a6 6937 /* There's no need to do the rereading_dwo_cu handling that
c0ab21c2 6938 cutu_reader does since we don't read the stub. */
6aa5f3a6
DE
6939 }
6940 else
6941 {
6942 /* If !use_existing_cu, this_cu->cu must be NULL. */
6943 gdb_assert (this_cu->cu == NULL);
9e021579 6944 m_new_cu.reset (new dwarf2_cu (this_cu, per_objfile));
6aa5f3a6
DE
6945 }
6946
6947 /* A future optimization, if needed, would be to use an existing
6948 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
6949 could share abbrev tables. */
a2ce51a0 6950
4ab09049 6951 if (read_cutu_die_from_dwo (this_cu->cu, sig_type->dwo_unit,
a2ce51a0
DE
6952 NULL /* stub_comp_unit_die */,
6953 sig_type->dwo_unit->dwo_file->comp_dir,
4ebe4877 6954 this, &info_ptr,
3e225074 6955 &comp_unit_die,
c0ab21c2 6956 &m_dwo_abbrev_table) == 0)
a2ce51a0
DE
6957 {
6958 /* Dummy die. */
c0ab21c2 6959 dummy_p = true;
a2ce51a0 6960 }
a2ce51a0
DE
6961}
6962
fd820528 6963/* Initialize a CU (or TU) and read its DIEs.
3019eac3 6964 If the CU defers to a DWO file, read the DWO file as well.
dee91e82 6965
f4dc4d17
DE
6966 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
6967 Otherwise the table specified in the comp unit header is read in and used.
6968 This is an optimization for when we already have the abbrev table.
6969
dee91e82 6970 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
6751ebae 6971 Otherwise, a new CU is allocated with xmalloc. */
aaa75496 6972
ab432490
SM
6973cutu_reader::cutu_reader (dwarf2_per_cu_data *this_cu,
6974 dwarf2_per_objfile *dwarf2_per_objfile,
c0ab21c2 6975 struct abbrev_table *abbrev_table,
6751ebae 6976 int use_existing_cu,
c0ab21c2
TT
6977 bool skip_partial)
6978 : die_reader_specs {},
6751ebae 6979 m_this_cu (this_cu)
c906108c 6980{
dee91e82 6981 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 6982 struct dwarf2_section_info *section = this_cu->section;
96b79293 6983 bfd *abfd = section->get_bfd_owner ();
dee91e82 6984 struct dwarf2_cu *cu;
c0ab21c2 6985 const gdb_byte *begin_info_ptr;
dee91e82 6986 struct signatured_type *sig_type = NULL;
4bdcc0c1 6987 struct dwarf2_section_info *abbrev_section;
42e7ad6c
DE
6988 /* Non-zero if CU currently points to a DWO file and we need to
6989 reread it. When this happens we need to reread the skeleton die
a2ce51a0 6990 before we can reread the DWO file (this only applies to CUs, not TUs). */
42e7ad6c 6991 int rereading_dwo_cu = 0;
c906108c 6992
b4f54984 6993 if (dwarf_die_debug)
9d8780f0 6994 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 6995 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 6996 sect_offset_str (this_cu->sect_off));
09406207 6997
a2ce51a0
DE
6998 /* If we're reading a TU directly from a DWO file, including a virtual DWO
6999 file (instead of going through the stub), short-circuit all of this. */
7000 if (this_cu->reading_dwo_directly)
7001 {
7002 /* Narrow down the scope of possibilities to have to understand. */
7003 gdb_assert (this_cu->is_debug_types);
7004 gdb_assert (abbrev_table == NULL);
9e021579 7005 init_tu_and_read_dwo_dies (this_cu, dwarf2_per_objfile, use_existing_cu);
a2ce51a0
DE
7006 return;
7007 }
7008
dee91e82 7009 /* This is cheap if the section is already read in. */
96b79293 7010 section->read (objfile);
dee91e82 7011
9c541725 7012 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
36586728
TT
7013
7014 abbrev_section = get_abbrev_section_for_cu (this_cu);
dee91e82
DE
7015
7016 if (use_existing_cu && this_cu->cu != NULL)
7017 {
7018 cu = this_cu->cu;
42e7ad6c
DE
7019 /* If this CU is from a DWO file we need to start over, we need to
7020 refetch the attributes from the skeleton CU.
7021 This could be optimized by retrieving those attributes from when we
7022 were here the first time: the previous comp_unit_die was stored in
7023 comp_unit_obstack. But there's no data yet that we need this
7024 optimization. */
7025 if (cu->dwo_unit != NULL)
7026 rereading_dwo_cu = 1;
dee91e82
DE
7027 }
7028 else
7029 {
7030 /* If !use_existing_cu, this_cu->cu must be NULL. */
7031 gdb_assert (this_cu->cu == NULL);
9e021579 7032 m_new_cu.reset (new dwarf2_cu (this_cu, dwarf2_per_objfile));
c0ab21c2 7033 cu = m_new_cu.get ();
42e7ad6c 7034 }
dee91e82 7035
b0c7bfa9 7036 /* Get the header. */
9c541725 7037 if (to_underlying (cu->header.first_die_cu_offset) != 0 && !rereading_dwo_cu)
42e7ad6c
DE
7038 {
7039 /* We already have the header, there's no need to read it in again. */
9c541725 7040 info_ptr += to_underlying (cu->header.first_die_cu_offset);
42e7ad6c
DE
7041 }
7042 else
7043 {
3019eac3 7044 if (this_cu->is_debug_types)
dee91e82 7045 {
ed2dc618
SM
7046 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7047 &cu->header, section,
4bdcc0c1 7048 abbrev_section, info_ptr,
43988095 7049 rcuh_kind::TYPE);
dee91e82 7050
42e7ad6c
DE
7051 /* Since per_cu is the first member of struct signatured_type,
7052 we can go from a pointer to one to a pointer to the other. */
7053 sig_type = (struct signatured_type *) this_cu;
43988095 7054 gdb_assert (sig_type->signature == cu->header.signature);
9c541725
PA
7055 gdb_assert (sig_type->type_offset_in_tu
7056 == cu->header.type_cu_offset_in_tu);
7057 gdb_assert (this_cu->sect_off == cu->header.sect_off);
dee91e82 7058
42e7ad6c
DE
7059 /* LENGTH has not been set yet for type units if we're
7060 using .gdb_index. */
4057dfde 7061 this_cu->length = cu->header.get_length ();
3019eac3
DE
7062
7063 /* Establish the type offset that can be used to lookup the type. */
9c541725
PA
7064 sig_type->type_offset_in_section =
7065 this_cu->sect_off + to_underlying (sig_type->type_offset_in_tu);
43988095
JK
7066
7067 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7068 }
7069 else
7070 {
ed2dc618
SM
7071 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7072 &cu->header, section,
4bdcc0c1 7073 abbrev_section,
43988095
JK
7074 info_ptr,
7075 rcuh_kind::COMPILE);
dee91e82 7076
9c541725 7077 gdb_assert (this_cu->sect_off == cu->header.sect_off);
3ee6bb11
TV
7078 if (this_cu->length == 0)
7079 this_cu->length = cu->header.get_length ();
7080 else
7081 gdb_assert (this_cu->length == cu->header.get_length ());
43988095 7082 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7083 }
7084 }
10b3939b 7085
6caca83c 7086 /* Skip dummy compilation units. */
dee91e82 7087 if (info_ptr >= begin_info_ptr + this_cu->length
6caca83c 7088 || peek_abbrev_code (abfd, info_ptr) == 0)
c0ab21c2
TT
7089 {
7090 dummy_p = true;
7091 return;
7092 }
6caca83c 7093
433df2d4
DE
7094 /* If we don't have them yet, read the abbrevs for this compilation unit.
7095 And if we need to read them now, make sure they're freed when we're
c0ab21c2 7096 done. */
f4dc4d17 7097 if (abbrev_table != NULL)
685af9cd
TT
7098 gdb_assert (cu->header.abbrev_sect_off == abbrev_table->sect_off);
7099 else
f4dc4d17 7100 {
c0ab21c2 7101 m_abbrev_table_holder
86de1d91
TT
7102 = abbrev_table::read (objfile, abbrev_section,
7103 cu->header.abbrev_sect_off);
c0ab21c2 7104 abbrev_table = m_abbrev_table_holder.get ();
42e7ad6c 7105 }
af703f96 7106
dee91e82 7107 /* Read the top level CU/TU die. */
c0ab21c2 7108 init_cu_die_reader (this, cu, section, NULL, abbrev_table);
3e225074 7109 info_ptr = read_full_die (this, &comp_unit_die, info_ptr);
93311388 7110
58f0c718 7111 if (skip_partial && comp_unit_die->tag == DW_TAG_partial_unit)
c0ab21c2
TT
7112 {
7113 dummy_p = true;
7114 return;
7115 }
58f0c718 7116
b0c7bfa9 7117 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
685af9cd
TT
7118 from the DWO file. read_cutu_die_from_dwo will allocate the abbreviation
7119 table from the DWO file and pass the ownership over to us. It will be
7120 referenced from READER, so we must make sure to free it after we're done
7121 with READER.
7122
b0c7bfa9
DE
7123 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
7124 DWO CU, that this test will fail (the attribute will not be present). */
a084a2a6 7125 const char *dwo_name = dwarf2_dwo_name (comp_unit_die, cu);
a084a2a6 7126 if (dwo_name != nullptr)
3019eac3 7127 {
3019eac3 7128 struct dwo_unit *dwo_unit;
b0c7bfa9 7129 struct die_info *dwo_comp_unit_die;
3019eac3 7130
3e225074 7131 if (comp_unit_die->has_children)
6a506a2d 7132 {
b98664d3 7133 complaint (_("compilation unit with DW_AT_GNU_dwo_name"
9d8780f0
SM
7134 " has children (offset %s) [in module %s]"),
7135 sect_offset_str (this_cu->sect_off),
7136 bfd_get_filename (abfd));
6a506a2d 7137 }
4ab09049 7138 dwo_unit = lookup_dwo_unit (cu, comp_unit_die, dwo_name);
6a506a2d 7139 if (dwo_unit != NULL)
3019eac3 7140 {
4ab09049 7141 if (read_cutu_die_from_dwo (cu, dwo_unit,
a2ce51a0 7142 comp_unit_die, NULL,
c0ab21c2 7143 this, &info_ptr,
3e225074 7144 &dwo_comp_unit_die,
c0ab21c2 7145 &m_dwo_abbrev_table) == 0)
6a506a2d
DE
7146 {
7147 /* Dummy die. */
c0ab21c2 7148 dummy_p = true;
6a506a2d
DE
7149 return;
7150 }
7151 comp_unit_die = dwo_comp_unit_die;
7152 }
7153 else
7154 {
7155 /* Yikes, we couldn't find the rest of the DIE, we only have
7156 the stub. A complaint has already been logged. There's
7157 not much more we can do except pass on the stub DIE to
7158 die_reader_func. We don't want to throw an error on bad
7159 debug info. */
3019eac3
DE
7160 }
7161 }
c0ab21c2 7162}
3019eac3 7163
6751ebae
TT
7164void
7165cutu_reader::keep ()
c0ab21c2 7166{
b0c7bfa9 7167 /* Done, clean up. */
6751ebae
TT
7168 gdb_assert (!dummy_p);
7169 if (m_new_cu != NULL)
348e048f 7170 {
e3beb21d
SM
7171 /* We know that m_this_cu->cu is set, since we are in the process of
7172 parsing the CU. */
7173 gdb_assert (m_this_cu->cu != nullptr);
7174 dwarf2_per_objfile *dwarf2_per_objfile = m_this_cu->cu->per_objfile;
7175
fcd3b13d 7176 /* Link this CU into read_in_chain. */
5989a64e
SM
7177 m_this_cu->cu->read_in_chain = dwarf2_per_objfile->per_bfd->read_in_chain;
7178 dwarf2_per_objfile->per_bfd->read_in_chain = m_this_cu;
fcd3b13d 7179 /* The chain owns it now. */
c0ab21c2 7180 m_new_cu.release ();
348e048f 7181 }
dee91e82
DE
7182}
7183
18a8505e
AT
7184/* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name (DW_AT_dwo_name)
7185 if present. DWO_FILE, if non-NULL, is the DWO file to read (the caller is
7186 assumed to have already done the lookup to find the DWO file).
dee91e82
DE
7187
7188 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
3019eac3 7189 THIS_CU->is_debug_types, but nothing else.
dee91e82
DE
7190
7191 We fill in THIS_CU->length.
7192
dee91e82 7193 THIS_CU->cu is always freed when done.
3019eac3 7194 This is done in order to not leave THIS_CU->cu in a state where we have
18a8505e
AT
7195 to care whether it refers to the "main" CU or the DWO CU.
7196
7197 When parent_cu is passed, it is used to provide a default value for
7198 str_offsets_base and addr_base from the parent. */
dee91e82 7199
ab432490
SM
7200cutu_reader::cutu_reader (dwarf2_per_cu_data *this_cu,
7201 dwarf2_per_objfile *dwarf2_per_objfile,
c0ab21c2
TT
7202 struct dwarf2_cu *parent_cu,
7203 struct dwo_file *dwo_file)
7204 : die_reader_specs {},
7205 m_this_cu (this_cu)
dee91e82
DE
7206{
7207 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 7208 struct dwarf2_section_info *section = this_cu->section;
96b79293 7209 bfd *abfd = section->get_bfd_owner ();
33e80786 7210 struct dwarf2_section_info *abbrev_section;
d521ce57 7211 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7212
b4f54984 7213 if (dwarf_die_debug)
9d8780f0 7214 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7215 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7216 sect_offset_str (this_cu->sect_off));
09406207 7217
dee91e82
DE
7218 gdb_assert (this_cu->cu == NULL);
7219
33e80786
DE
7220 abbrev_section = (dwo_file != NULL
7221 ? &dwo_file->sections.abbrev
7222 : get_abbrev_section_for_cu (this_cu));
7223
dee91e82 7224 /* This is cheap if the section is already read in. */
96b79293 7225 section->read (objfile);
dee91e82 7226
9e021579 7227 m_new_cu.reset (new dwarf2_cu (this_cu, dwarf2_per_objfile));
dee91e82 7228
9c541725 7229 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
ed2dc618 7230 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
c0ab21c2 7231 &m_new_cu->header, section,
4bdcc0c1 7232 abbrev_section, info_ptr,
43988095
JK
7233 (this_cu->is_debug_types
7234 ? rcuh_kind::TYPE
7235 : rcuh_kind::COMPILE));
dee91e82 7236
18a8505e
AT
7237 if (parent_cu != nullptr)
7238 {
c0ab21c2
TT
7239 m_new_cu->str_offsets_base = parent_cu->str_offsets_base;
7240 m_new_cu->addr_base = parent_cu->addr_base;
18a8505e 7241 }
4057dfde 7242 this_cu->length = m_new_cu->header.get_length ();
dee91e82
DE
7243
7244 /* Skip dummy compilation units. */
7245 if (info_ptr >= begin_info_ptr + this_cu->length
7246 || peek_abbrev_code (abfd, info_ptr) == 0)
c0ab21c2
TT
7247 {
7248 dummy_p = true;
7249 return;
7250 }
72bf9492 7251
c0ab21c2 7252 m_abbrev_table_holder
86de1d91
TT
7253 = abbrev_table::read (objfile, abbrev_section,
7254 m_new_cu->header.abbrev_sect_off);
dee91e82 7255
c0ab21c2
TT
7256 init_cu_die_reader (this, m_new_cu.get (), section, dwo_file,
7257 m_abbrev_table_holder.get ());
3e225074 7258 info_ptr = read_full_die (this, &comp_unit_die, info_ptr);
dee91e82
DE
7259}
7260
0018ea6f
DE
7261\f
7262/* Type Unit Groups.
dee91e82 7263
0018ea6f
DE
7264 Type Unit Groups are a way to collapse the set of all TUs (type units) into
7265 a more manageable set. The grouping is done by DW_AT_stmt_list entry
7266 so that all types coming from the same compilation (.o file) are grouped
7267 together. A future step could be to put the types in the same symtab as
7268 the CU the types ultimately came from. */
ff013f42 7269
f4dc4d17
DE
7270static hashval_t
7271hash_type_unit_group (const void *item)
7272{
9a3c8263
SM
7273 const struct type_unit_group *tu_group
7274 = (const struct type_unit_group *) item;
f4dc4d17 7275
094b34ac 7276 return hash_stmt_list_entry (&tu_group->hash);
f4dc4d17 7277}
348e048f
DE
7278
7279static int
f4dc4d17 7280eq_type_unit_group (const void *item_lhs, const void *item_rhs)
348e048f 7281{
9a3c8263
SM
7282 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
7283 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
348e048f 7284
094b34ac 7285 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
f4dc4d17 7286}
348e048f 7287
f4dc4d17
DE
7288/* Allocate a hash table for type unit groups. */
7289
eaa5fa8b 7290static htab_up
298e9637 7291allocate_type_unit_groups_table ()
f4dc4d17 7292{
eaa5fa8b
TT
7293 return htab_up (htab_create_alloc (3,
7294 hash_type_unit_group,
7295 eq_type_unit_group,
7296 NULL, xcalloc, xfree));
f4dc4d17 7297}
dee91e82 7298
f4dc4d17
DE
7299/* Type units that don't have DW_AT_stmt_list are grouped into their own
7300 partial symtabs. We combine several TUs per psymtab to not let the size
7301 of any one psymtab grow too big. */
7302#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
7303#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
dee91e82 7304
094b34ac 7305/* Helper routine for get_type_unit_group.
f4dc4d17
DE
7306 Create the type_unit_group object used to hold one or more TUs. */
7307
7308static struct type_unit_group *
094b34ac 7309create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
f4dc4d17 7310{
5e22e966 7311 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
1859c670 7312 dwarf2_per_bfd *per_bfd = dwarf2_per_objfile->per_bfd;
094b34ac 7313 struct dwarf2_per_cu_data *per_cu;
f4dc4d17 7314 struct type_unit_group *tu_group;
f4dc4d17 7315
5989a64e 7316 tu_group = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack,
f4dc4d17 7317 struct type_unit_group);
094b34ac 7318 per_cu = &tu_group->per_cu;
518817b3 7319 per_cu->dwarf2_per_objfile = dwarf2_per_objfile;
1859c670 7320 per_cu->per_bfd = per_bfd;
f4dc4d17 7321
1859c670 7322 if (per_bfd->using_index)
094b34ac 7323 {
1859c670 7324 per_cu->v.quick = OBSTACK_ZALLOC (&per_bfd->obstack,
094b34ac 7325 struct dwarf2_per_cu_quick_data);
094b34ac
DE
7326 }
7327 else
7328 {
9c541725 7329 unsigned int line_offset = to_underlying (line_offset_struct);
891813be 7330 dwarf2_psymtab *pst;
528e1572 7331 std::string name;
094b34ac
DE
7332
7333 /* Give the symtab a useful name for debug purposes. */
7334 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
528e1572
SM
7335 name = string_printf ("<type_units_%d>",
7336 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
094b34ac 7337 else
528e1572 7338 name = string_printf ("<type_units_at_0x%x>", line_offset);
094b34ac 7339
7aa104c4 7340 pst = create_partial_symtab (per_cu, dwarf2_per_objfile, name.c_str ());
6d94535f 7341 pst->anonymous = true;
094b34ac 7342 }
f4dc4d17 7343
094b34ac 7344 tu_group->hash.dwo_unit = cu->dwo_unit;
9c541725 7345 tu_group->hash.line_sect_off = line_offset_struct;
f4dc4d17
DE
7346
7347 return tu_group;
7348}
7349
094b34ac
DE
7350/* Look up the type_unit_group for type unit CU, and create it if necessary.
7351 STMT_LIST is a DW_AT_stmt_list attribute. */
f4dc4d17
DE
7352
7353static struct type_unit_group *
ff39bb5e 7354get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
f4dc4d17 7355{
5e22e966 7356 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
5989a64e 7357 struct tu_stats *tu_stats = &dwarf2_per_objfile->per_bfd->tu_stats;
f4dc4d17
DE
7358 struct type_unit_group *tu_group;
7359 void **slot;
7360 unsigned int line_offset;
7361 struct type_unit_group type_unit_group_for_lookup;
7362
5989a64e
SM
7363 if (dwarf2_per_objfile->per_bfd->type_unit_groups == NULL)
7364 dwarf2_per_objfile->per_bfd->type_unit_groups = allocate_type_unit_groups_table ();
f4dc4d17
DE
7365
7366 /* Do we need to create a new group, or can we use an existing one? */
7367
7368 if (stmt_list)
7369 {
7370 line_offset = DW_UNSND (stmt_list);
7371 ++tu_stats->nr_symtab_sharers;
7372 }
7373 else
7374 {
7375 /* Ugh, no stmt_list. Rare, but we have to handle it.
7376 We can do various things here like create one group per TU or
7377 spread them over multiple groups to split up the expansion work.
7378 To avoid worst case scenarios (too many groups or too large groups)
7379 we, umm, group them in bunches. */
7380 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
7381 | (tu_stats->nr_stmt_less_type_units
7382 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
7383 ++tu_stats->nr_stmt_less_type_units;
7384 }
7385
094b34ac 7386 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
9c541725 7387 type_unit_group_for_lookup.hash.line_sect_off = (sect_offset) line_offset;
5989a64e 7388 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->type_unit_groups.get (),
f4dc4d17
DE
7389 &type_unit_group_for_lookup, INSERT);
7390 if (*slot != NULL)
7391 {
9a3c8263 7392 tu_group = (struct type_unit_group *) *slot;
f4dc4d17
DE
7393 gdb_assert (tu_group != NULL);
7394 }
7395 else
7396 {
9c541725 7397 sect_offset line_offset_struct = (sect_offset) line_offset;
094b34ac 7398 tu_group = create_type_unit_group (cu, line_offset_struct);
f4dc4d17
DE
7399 *slot = tu_group;
7400 ++tu_stats->nr_symtabs;
7401 }
7402
7403 return tu_group;
7404}
0018ea6f
DE
7405\f
7406/* Partial symbol tables. */
7407
7408/* Create a psymtab named NAME and assign it to PER_CU.
7409
7410 The caller must fill in the following details:
7411 dirname, textlow, texthigh. */
7412
891813be 7413static dwarf2_psymtab *
7aa104c4
SM
7414create_partial_symtab (dwarf2_per_cu_data *per_cu,
7415 dwarf2_per_objfile *per_objfile,
7416 const char *name)
0018ea6f 7417{
7aa104c4 7418 struct objfile *objfile = per_objfile->objfile;
891813be 7419 dwarf2_psymtab *pst;
0018ea6f 7420
9f4e76a4 7421 pst = new dwarf2_psymtab (name, objfile, per_cu);
0018ea6f 7422
6d94535f 7423 pst->psymtabs_addrmap_supported = true;
0018ea6f
DE
7424
7425 /* This is the glue that links PST into GDB's symbol API. */
0018ea6f
DE
7426 per_cu->v.psymtab = pst;
7427
7428 return pst;
7429}
7430
c0ab21c2 7431/* DIE reader function for process_psymtab_comp_unit. */
0018ea6f
DE
7432
7433static void
7434process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 7435 const gdb_byte *info_ptr,
0018ea6f 7436 struct die_info *comp_unit_die,
c0ab21c2 7437 enum language pretend_language)
0018ea6f
DE
7438{
7439 struct dwarf2_cu *cu = reader->cu;
7aa104c4
SM
7440 dwarf2_per_objfile *per_objfile = cu->per_objfile;
7441 struct objfile *objfile = per_objfile->objfile;
08feed99 7442 struct gdbarch *gdbarch = objfile->arch ();
0018ea6f 7443 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0018ea6f
DE
7444 CORE_ADDR baseaddr;
7445 CORE_ADDR best_lowpc = 0, best_highpc = 0;
891813be 7446 dwarf2_psymtab *pst;
3a2b436a 7447 enum pc_bounds_kind cu_bounds_kind;
0018ea6f 7448 const char *filename;
0018ea6f 7449
0018ea6f
DE
7450 gdb_assert (! per_cu->is_debug_types);
7451
c0ab21c2 7452 prepare_one_comp_unit (cu, comp_unit_die, pretend_language);
0018ea6f 7453
0018ea6f 7454 /* Allocate a new partial symbol table structure. */
2e927613
TV
7455 gdb::unique_xmalloc_ptr<char> debug_filename;
7456 static const char artificial[] = "<artificial>";
7d45c7c3
KB
7457 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
7458 if (filename == NULL)
0018ea6f 7459 filename = "";
2e927613
TV
7460 else if (strcmp (filename, artificial) == 0)
7461 {
7462 debug_filename.reset (concat (artificial, "@",
85f0dd3c
TV
7463 sect_offset_str (per_cu->sect_off),
7464 (char *) NULL));
2e927613
TV
7465 filename = debug_filename.get ();
7466 }
0018ea6f 7467
7aa104c4 7468 pst = create_partial_symtab (per_cu, per_objfile, filename);
0018ea6f
DE
7469
7470 /* This must be done before calling dwarf2_build_include_psymtabs. */
7d45c7c3 7471 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
0018ea6f 7472
b3b3bada 7473 baseaddr = objfile->text_section_offset ();
0018ea6f
DE
7474
7475 dwarf2_find_base_address (comp_unit_die, cu);
7476
7477 /* Possibly set the default values of LOWPC and HIGHPC from
7478 `DW_AT_ranges'. */
3a2b436a
JK
7479 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
7480 &best_highpc, cu, pst);
7481 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
79748972
TT
7482 {
7483 CORE_ADDR low
7484 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr)
7485 - baseaddr);
7486 CORE_ADDR high
7487 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr)
7488 - baseaddr - 1);
7489 /* Store the contiguous range if it is not empty; it can be
7490 empty for CUs with no code. */
d320c2b5
TT
7491 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
7492 low, high, pst);
79748972 7493 }
0018ea6f
DE
7494
7495 /* Check if comp unit has_children.
7496 If so, read the rest of the partial symbols from this comp unit.
7497 If not, there's no more debug_info for this comp unit. */
3e225074 7498 if (comp_unit_die->has_children)
0018ea6f
DE
7499 {
7500 struct partial_die_info *first_die;
7501 CORE_ADDR lowpc, highpc;
7502
7503 lowpc = ((CORE_ADDR) -1);
7504 highpc = ((CORE_ADDR) 0);
7505
7506 first_die = load_partial_dies (reader, info_ptr, 1);
7507
7508 scan_partial_symbols (first_die, &lowpc, &highpc,
e385593e 7509 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
0018ea6f
DE
7510
7511 /* If we didn't find a lowpc, set it to highpc to avoid
7512 complaints from `maint check'. */
7513 if (lowpc == ((CORE_ADDR) -1))
7514 lowpc = highpc;
7515
7516 /* If the compilation unit didn't have an explicit address range,
7517 then use the information extracted from its child dies. */
e385593e 7518 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
0018ea6f
DE
7519 {
7520 best_lowpc = lowpc;
7521 best_highpc = highpc;
7522 }
7523 }
4ae976d1 7524 pst->set_text_low (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
7525 best_lowpc + baseaddr)
7526 - baseaddr);
4ae976d1 7527 pst->set_text_high (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
7528 best_highpc + baseaddr)
7529 - baseaddr);
0018ea6f 7530
8763cede 7531 end_psymtab_common (objfile, pst);
0018ea6f 7532
ae640021 7533 if (!cu->per_cu->imported_symtabs_empty ())
0018ea6f
DE
7534 {
7535 int i;
ae640021 7536 int len = cu->per_cu->imported_symtabs_size ();
0018ea6f
DE
7537
7538 /* Fill in 'dependencies' here; we fill in 'users' in a
7539 post-pass. */
7540 pst->number_of_dependencies = len;
a9342b62
TT
7541 pst->dependencies
7542 = objfile->partial_symtabs->allocate_dependencies (len);
ae640021
AB
7543 for (i = 0; i < len; ++i)
7544 {
7545 pst->dependencies[i]
7546 = cu->per_cu->imported_symtabs->at (i)->v.psymtab;
7547 }
0018ea6f 7548
ae640021 7549 cu->per_cu->imported_symtabs_free ();
0018ea6f
DE
7550 }
7551
7552 /* Get the list of files included in the current compilation unit,
7553 and build a psymtab for each of them. */
7554 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
7555
b4f54984 7556 if (dwarf_read_debug)
b926417a
TT
7557 fprintf_unfiltered (gdb_stdlog,
7558 "Psymtab for %s unit @%s: %s - %s"
7559 ", %d global, %d static syms\n",
7560 per_cu->is_debug_types ? "type" : "comp",
7561 sect_offset_str (per_cu->sect_off),
7562 paddress (gdbarch, pst->text_low (objfile)),
7563 paddress (gdbarch, pst->text_high (objfile)),
7564 pst->n_global_syms, pst->n_static_syms);
0018ea6f
DE
7565}
7566
7567/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
7568 Process compilation unit THIS_CU for a psymtab. */
7569
7570static void
ab432490
SM
7571process_psymtab_comp_unit (dwarf2_per_cu_data *this_cu,
7572 dwarf2_per_objfile *per_objfile,
135f5437 7573 bool want_partial_unit,
b93601f3 7574 enum language pretend_language)
0018ea6f
DE
7575{
7576 /* If this compilation unit was already read in, free the
7577 cached copy in order to read it in again. This is
7578 necessary because we skipped some symbols when we first
7579 read in the compilation unit (see load_partial_dies).
7580 This problem could be avoided, but the benefit is unclear. */
7581 if (this_cu->cu != NULL)
7582 free_one_cached_comp_unit (this_cu);
7583
ab432490 7584 cutu_reader reader (this_cu, per_objfile, NULL, 0, false);
c0ab21c2 7585
58990295
TV
7586 switch (reader.comp_unit_die->tag)
7587 {
7588 case DW_TAG_compile_unit:
7589 this_cu->unit_type = DW_UT_compile;
7590 break;
7591 case DW_TAG_partial_unit:
7592 this_cu->unit_type = DW_UT_partial;
7593 break;
7594 default:
7595 abort ();
7596 }
7597
c0ab21c2 7598 if (reader.dummy_p)
f1902523 7599 {
c0ab21c2 7600 /* Nothing. */
f1902523 7601 }
c0ab21c2 7602 else if (this_cu->is_debug_types)
3e225074
TT
7603 build_type_psymtabs_reader (&reader, reader.info_ptr,
7604 reader.comp_unit_die);
135f5437
TT
7605 else if (want_partial_unit
7606 || reader.comp_unit_die->tag != DW_TAG_partial_unit)
c0ab21c2
TT
7607 process_psymtab_comp_unit_reader (&reader, reader.info_ptr,
7608 reader.comp_unit_die,
c0ab21c2 7609 pretend_language);
0018ea6f 7610
58990295
TV
7611 this_cu->lang = this_cu->cu->language;
7612
0018ea6f 7613 /* Age out any secondary CUs. */
ed2dc618 7614 age_cached_comp_units (this_cu->dwarf2_per_objfile);
0018ea6f 7615}
f4dc4d17
DE
7616
7617/* Reader function for build_type_psymtabs. */
7618
7619static void
7620build_type_psymtabs_reader (const struct die_reader_specs *reader,
d521ce57 7621 const gdb_byte *info_ptr,
3e225074 7622 struct die_info *type_unit_die)
f4dc4d17 7623{
5e22e966 7624 struct dwarf2_per_objfile *dwarf2_per_objfile = reader->cu->per_objfile;
f4dc4d17
DE
7625 struct objfile *objfile = dwarf2_per_objfile->objfile;
7626 struct dwarf2_cu *cu = reader->cu;
7627 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0186c6a7 7628 struct signatured_type *sig_type;
f4dc4d17
DE
7629 struct type_unit_group *tu_group;
7630 struct attribute *attr;
7631 struct partial_die_info *first_die;
7632 CORE_ADDR lowpc, highpc;
891813be 7633 dwarf2_psymtab *pst;
f4dc4d17 7634
0186c6a7
DE
7635 gdb_assert (per_cu->is_debug_types);
7636 sig_type = (struct signatured_type *) per_cu;
f4dc4d17 7637
3e225074 7638 if (! type_unit_die->has_children)
f4dc4d17
DE
7639 return;
7640
052c8bb8 7641 attr = type_unit_die->attr (DW_AT_stmt_list);
094b34ac 7642 tu_group = get_type_unit_group (cu, attr);
f4dc4d17 7643
df07e2c7 7644 if (tu_group->tus == nullptr)
a8b3b8e9 7645 tu_group->tus = new std::vector<signatured_type *>;
df07e2c7 7646 tu_group->tus->push_back (sig_type);
f4dc4d17
DE
7647
7648 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
7aa104c4 7649 pst = create_partial_symtab (per_cu, dwarf2_per_objfile, "");
6d94535f 7650 pst->anonymous = true;
f4dc4d17
DE
7651
7652 first_die = load_partial_dies (reader, info_ptr, 1);
7653
7654 lowpc = (CORE_ADDR) -1;
7655 highpc = (CORE_ADDR) 0;
7656 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
7657
8763cede 7658 end_psymtab_common (objfile, pst);
f4dc4d17
DE
7659}
7660
73051182
DE
7661/* Struct used to sort TUs by their abbreviation table offset. */
7662
7663struct tu_abbrev_offset
7664{
b2bdb8cf
SM
7665 tu_abbrev_offset (signatured_type *sig_type_, sect_offset abbrev_offset_)
7666 : sig_type (sig_type_), abbrev_offset (abbrev_offset_)
7667 {}
7668
7669 signatured_type *sig_type;
73051182
DE
7670 sect_offset abbrev_offset;
7671};
7672
484cf504 7673/* Helper routine for build_type_psymtabs_1, passed to std::sort. */
73051182 7674
484cf504
TT
7675static bool
7676sort_tu_by_abbrev_offset (const struct tu_abbrev_offset &a,
7677 const struct tu_abbrev_offset &b)
73051182 7678{
484cf504 7679 return a.abbrev_offset < b.abbrev_offset;
73051182
DE
7680}
7681
7682/* Efficiently read all the type units.
7683 This does the bulk of the work for build_type_psymtabs.
7684
7685 The efficiency is because we sort TUs by the abbrev table they use and
7686 only read each abbrev table once. In one program there are 200K TUs
7687 sharing 8K abbrev tables.
7688
7689 The main purpose of this function is to support building the
5989a64e 7690 dwarf2_per_objfile->per_bfd->type_unit_groups table.
73051182
DE
7691 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
7692 can collapse the search space by grouping them by stmt_list.
7693 The savings can be significant, in the same program from above the 200K TUs
7694 share 8K stmt_list tables.
7695
7696 FUNC is expected to call get_type_unit_group, which will create the
7697 struct type_unit_group if necessary and add it to
5989a64e 7698 dwarf2_per_objfile->per_bfd->type_unit_groups. */
73051182
DE
7699
7700static void
ed2dc618 7701build_type_psymtabs_1 (struct dwarf2_per_objfile *dwarf2_per_objfile)
73051182 7702{
5989a64e 7703 struct tu_stats *tu_stats = &dwarf2_per_objfile->per_bfd->tu_stats;
685af9cd 7704 abbrev_table_up abbrev_table;
73051182 7705 sect_offset abbrev_offset;
73051182
DE
7706
7707 /* It's up to the caller to not call us multiple times. */
5989a64e 7708 gdb_assert (dwarf2_per_objfile->per_bfd->type_unit_groups == NULL);
73051182 7709
5989a64e 7710 if (dwarf2_per_objfile->per_bfd->all_type_units.empty ())
73051182
DE
7711 return;
7712
7713 /* TUs typically share abbrev tables, and there can be way more TUs than
7714 abbrev tables. Sort by abbrev table to reduce the number of times we
7715 read each abbrev table in.
7716 Alternatives are to punt or to maintain a cache of abbrev tables.
7717 This is simpler and efficient enough for now.
7718
7719 Later we group TUs by their DW_AT_stmt_list value (as this defines the
7720 symtab to use). Typically TUs with the same abbrev offset have the same
7721 stmt_list value too so in practice this should work well.
7722
7723 The basic algorithm here is:
7724
7725 sort TUs by abbrev table
7726 for each TU with same abbrev table:
7727 read abbrev table if first user
7728 read TU top level DIE
7729 [IWBN if DWO skeletons had DW_AT_stmt_list]
7730 call FUNC */
7731
b4f54984 7732 if (dwarf_read_debug)
73051182
DE
7733 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
7734
7735 /* Sort in a separate table to maintain the order of all_type_units
7736 for .gdb_index: TU indices directly index all_type_units. */
b2bdb8cf 7737 std::vector<tu_abbrev_offset> sorted_by_abbrev;
5989a64e 7738 sorted_by_abbrev.reserve (dwarf2_per_objfile->per_bfd->all_type_units.size ());
b2bdb8cf 7739
5989a64e 7740 for (signatured_type *sig_type : dwarf2_per_objfile->per_bfd->all_type_units)
b2bdb8cf
SM
7741 sorted_by_abbrev.emplace_back
7742 (sig_type, read_abbrev_offset (dwarf2_per_objfile,
7743 sig_type->per_cu.section,
7744 sig_type->per_cu.sect_off));
73051182 7745
484cf504
TT
7746 std::sort (sorted_by_abbrev.begin (), sorted_by_abbrev.end (),
7747 sort_tu_by_abbrev_offset);
73051182 7748
9c541725 7749 abbrev_offset = (sect_offset) ~(unsigned) 0;
73051182 7750
b2bdb8cf 7751 for (const tu_abbrev_offset &tu : sorted_by_abbrev)
73051182 7752 {
73051182
DE
7753 /* Switch to the next abbrev table if necessary. */
7754 if (abbrev_table == NULL
b2bdb8cf 7755 || tu.abbrev_offset != abbrev_offset)
73051182 7756 {
b2bdb8cf 7757 abbrev_offset = tu.abbrev_offset;
73051182 7758 abbrev_table =
86de1d91 7759 abbrev_table::read (dwarf2_per_objfile->objfile,
5989a64e 7760 &dwarf2_per_objfile->per_bfd->abbrev,
86de1d91 7761 abbrev_offset);
73051182
DE
7762 ++tu_stats->nr_uniq_abbrev_tables;
7763 }
7764
ab432490
SM
7765 cutu_reader reader (&tu.sig_type->per_cu, dwarf2_per_objfile,
7766 abbrev_table.get (), 0, false);
c0ab21c2
TT
7767 if (!reader.dummy_p)
7768 build_type_psymtabs_reader (&reader, reader.info_ptr,
3e225074 7769 reader.comp_unit_die);
73051182 7770 }
6aa5f3a6 7771}
73051182 7772
6aa5f3a6
DE
7773/* Print collected type unit statistics. */
7774
7775static void
ed2dc618 7776print_tu_stats (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6 7777{
5989a64e 7778 struct tu_stats *tu_stats = &dwarf2_per_objfile->per_bfd->tu_stats;
6aa5f3a6
DE
7779
7780 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
b2bdb8cf 7781 fprintf_unfiltered (gdb_stdlog, " %zu TUs\n",
5989a64e 7782 dwarf2_per_objfile->per_bfd->all_type_units.size ());
6aa5f3a6
DE
7783 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
7784 tu_stats->nr_uniq_abbrev_tables);
7785 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
7786 tu_stats->nr_symtabs);
7787 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
7788 tu_stats->nr_symtab_sharers);
7789 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
7790 tu_stats->nr_stmt_less_type_units);
7791 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
7792 tu_stats->nr_all_type_units_reallocs);
73051182
DE
7793}
7794
f4dc4d17
DE
7795/* Traversal function for build_type_psymtabs. */
7796
7797static int
7798build_type_psymtab_dependencies (void **slot, void *info)
7799{
ed2dc618
SM
7800 struct dwarf2_per_objfile *dwarf2_per_objfile
7801 = (struct dwarf2_per_objfile *) info;
f4dc4d17
DE
7802 struct objfile *objfile = dwarf2_per_objfile->objfile;
7803 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
094b34ac 7804 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
891813be 7805 dwarf2_psymtab *pst = per_cu->v.psymtab;
df07e2c7 7806 int len = (tu_group->tus == nullptr) ? 0 : tu_group->tus->size ();
f4dc4d17
DE
7807 int i;
7808
7809 gdb_assert (len > 0);
197400e8 7810 gdb_assert (per_cu->type_unit_group_p ());
f4dc4d17
DE
7811
7812 pst->number_of_dependencies = len;
a9342b62 7813 pst->dependencies = objfile->partial_symtabs->allocate_dependencies (len);
df07e2c7 7814 for (i = 0; i < len; ++i)
f4dc4d17 7815 {
df07e2c7 7816 struct signatured_type *iter = tu_group->tus->at (i);
0186c6a7
DE
7817 gdb_assert (iter->per_cu.is_debug_types);
7818 pst->dependencies[i] = iter->per_cu.v.psymtab;
796a7ff8 7819 iter->type_unit_group = tu_group;
f4dc4d17
DE
7820 }
7821
df07e2c7
AB
7822 delete tu_group->tus;
7823 tu_group->tus = nullptr;
348e048f
DE
7824
7825 return 1;
7826}
7827
7828/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
7829 Build partial symbol tables for the .debug_types comp-units. */
7830
7831static void
ed2dc618 7832build_type_psymtabs (struct dwarf2_per_objfile *dwarf2_per_objfile)
348e048f 7833{
ed2dc618 7834 if (! create_all_type_units (dwarf2_per_objfile))
348e048f
DE
7835 return;
7836
ed2dc618 7837 build_type_psymtabs_1 (dwarf2_per_objfile);
6aa5f3a6 7838}
f4dc4d17 7839
6aa5f3a6
DE
7840/* Traversal function for process_skeletonless_type_unit.
7841 Read a TU in a DWO file and build partial symbols for it. */
7842
7843static int
7844process_skeletonless_type_unit (void **slot, void *info)
7845{
7846 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
ed2dc618
SM
7847 struct dwarf2_per_objfile *dwarf2_per_objfile
7848 = (struct dwarf2_per_objfile *) info;
6aa5f3a6
DE
7849 struct signatured_type find_entry, *entry;
7850
7851 /* If this TU doesn't exist in the global table, add it and read it in. */
7852
5989a64e
SM
7853 if (dwarf2_per_objfile->per_bfd->signatured_types == NULL)
7854 dwarf2_per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
6aa5f3a6
DE
7855
7856 find_entry.signature = dwo_unit->signature;
5989a64e 7857 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->signatured_types.get (),
b0b6a987 7858 &find_entry, INSERT);
6aa5f3a6
DE
7859 /* If we've already seen this type there's nothing to do. What's happening
7860 is we're doing our own version of comdat-folding here. */
7861 if (*slot != NULL)
7862 return 1;
7863
7864 /* This does the job that create_all_type_units would have done for
7865 this TU. */
ed2dc618
SM
7866 entry = add_type_unit (dwarf2_per_objfile, dwo_unit->signature, slot);
7867 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, entry, dwo_unit);
6aa5f3a6
DE
7868 *slot = entry;
7869
7870 /* This does the job that build_type_psymtabs_1 would have done. */
ab432490 7871 cutu_reader reader (&entry->per_cu, dwarf2_per_objfile, NULL, 0, false);
c0ab21c2
TT
7872 if (!reader.dummy_p)
7873 build_type_psymtabs_reader (&reader, reader.info_ptr,
3e225074 7874 reader.comp_unit_die);
6aa5f3a6
DE
7875
7876 return 1;
7877}
7878
7879/* Traversal function for process_skeletonless_type_units. */
7880
7881static int
7882process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
7883{
7884 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
7885
7886 if (dwo_file->tus != NULL)
b0b6a987
TT
7887 htab_traverse_noresize (dwo_file->tus.get (),
7888 process_skeletonless_type_unit, info);
6aa5f3a6
DE
7889
7890 return 1;
7891}
7892
7893/* Scan all TUs of DWO files, verifying we've processed them.
7894 This is needed in case a TU was emitted without its skeleton.
7895 Note: This can't be done until we know what all the DWO files are. */
7896
7897static void
ed2dc618 7898process_skeletonless_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6
DE
7899{
7900 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
ed2dc618 7901 if (get_dwp_file (dwarf2_per_objfile) == NULL
5989a64e 7902 && dwarf2_per_objfile->per_bfd->dwo_files != NULL)
6aa5f3a6 7903 {
5989a64e 7904 htab_traverse_noresize (dwarf2_per_objfile->per_bfd->dwo_files.get (),
6aa5f3a6 7905 process_dwo_file_for_skeletonless_type_units,
ed2dc618 7906 dwarf2_per_objfile);
6aa5f3a6 7907 }
348e048f
DE
7908}
7909
ed2dc618 7910/* Compute the 'user' field for each psymtab in DWARF2_PER_OBJFILE. */
95554aad
TT
7911
7912static void
ed2dc618 7913set_partial_user (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 7914{
5989a64e 7915 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
95554aad 7916 {
891813be 7917 dwarf2_psymtab *pst = per_cu->v.psymtab;
95554aad 7918
36586728
TT
7919 if (pst == NULL)
7920 continue;
7921
b76e467d 7922 for (int j = 0; j < pst->number_of_dependencies; ++j)
95554aad
TT
7923 {
7924 /* Set the 'user' field only if it is not already set. */
7925 if (pst->dependencies[j]->user == NULL)
7926 pst->dependencies[j]->user = pst;
7927 }
7928 }
7929}
7930
93311388
DE
7931/* Build the partial symbol table by doing a quick pass through the
7932 .debug_info and .debug_abbrev sections. */
72bf9492 7933
93311388 7934static void
ed2dc618 7935dwarf2_build_psymtabs_hard (struct dwarf2_per_objfile *dwarf2_per_objfile)
93311388 7936{
ed2dc618 7937 struct objfile *objfile = dwarf2_per_objfile->objfile;
93311388 7938
b4f54984 7939 if (dwarf_read_debug)
45cfd468
DE
7940 {
7941 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
4262abfb 7942 objfile_name (objfile));
45cfd468
DE
7943 }
7944
76935768 7945 scoped_restore restore_reading_psyms
5989a64e 7946 = make_scoped_restore (&dwarf2_per_objfile->per_bfd->reading_partial_symbols,
76935768 7947 true);
98bfdba5 7948
5989a64e 7949 dwarf2_per_objfile->per_bfd->info.read (objfile);
91c24f0a 7950
93311388
DE
7951 /* Any cached compilation units will be linked by the per-objfile
7952 read_in_chain. Make sure to free them when we're done. */
11ed8cad 7953 free_cached_comp_units freer (dwarf2_per_objfile);
72bf9492 7954
ed2dc618 7955 build_type_psymtabs (dwarf2_per_objfile);
348e048f 7956
ed2dc618 7957 create_all_comp_units (dwarf2_per_objfile);
c906108c 7958
60606b2c
TT
7959 /* Create a temporary address map on a temporary obstack. We later
7960 copy this to the final obstack. */
8268c778 7961 auto_obstack temp_obstack;
791afaa2
TT
7962
7963 scoped_restore save_psymtabs_addrmap
d320c2b5 7964 = make_scoped_restore (&objfile->partial_symtabs->psymtabs_addrmap,
791afaa2 7965 addrmap_create_mutable (&temp_obstack));
72bf9492 7966
5989a64e 7967 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->per_bfd->all_comp_units)
3d5afab3
TV
7968 {
7969 if (per_cu->v.psymtab != NULL)
7970 /* In case a forward DW_TAG_imported_unit has read the CU already. */
7971 continue;
ab432490
SM
7972 process_psymtab_comp_unit (per_cu, dwarf2_per_objfile, false,
7973 language_minimal);
3d5afab3 7974 }
ff013f42 7975
6aa5f3a6 7976 /* This has to wait until we read the CUs, we need the list of DWOs. */
ed2dc618 7977 process_skeletonless_type_units (dwarf2_per_objfile);
6aa5f3a6
DE
7978
7979 /* Now that all TUs have been processed we can fill in the dependencies. */
5989a64e 7980 if (dwarf2_per_objfile->per_bfd->type_unit_groups != NULL)
6aa5f3a6 7981 {
5989a64e 7982 htab_traverse_noresize (dwarf2_per_objfile->per_bfd->type_unit_groups.get (),
ed2dc618 7983 build_type_psymtab_dependencies, dwarf2_per_objfile);
6aa5f3a6
DE
7984 }
7985
b4f54984 7986 if (dwarf_read_debug)
ed2dc618 7987 print_tu_stats (dwarf2_per_objfile);
6aa5f3a6 7988
ed2dc618 7989 set_partial_user (dwarf2_per_objfile);
95554aad 7990
d320c2b5
TT
7991 objfile->partial_symtabs->psymtabs_addrmap
7992 = addrmap_create_fixed (objfile->partial_symtabs->psymtabs_addrmap,
5923a04c 7993 objfile->partial_symtabs->obstack ());
791afaa2
TT
7994 /* At this point we want to keep the address map. */
7995 save_psymtabs_addrmap.release ();
ff013f42 7996
b4f54984 7997 if (dwarf_read_debug)
45cfd468 7998 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
4262abfb 7999 objfile_name (objfile));
ae038cb0
DJ
8000}
8001
dee91e82
DE
8002/* Load the partial DIEs for a secondary CU into memory.
8003 This is also used when rereading a primary CU with load_all_dies. */
c5b7e1cb 8004
dee91e82 8005static void
ab432490
SM
8006load_partial_comp_unit (dwarf2_per_cu_data *this_cu,
8007 dwarf2_per_objfile *per_objfile)
dee91e82 8008{
ab432490 8009 cutu_reader reader (this_cu, per_objfile, NULL, 1, false);
c0ab21c2
TT
8010
8011 if (!reader.dummy_p)
8012 {
8013 prepare_one_comp_unit (reader.cu, reader.comp_unit_die,
8014 language_minimal);
8015
8016 /* Check if comp unit has_children.
8017 If so, read the rest of the partial symbols from this comp unit.
8018 If not, there's no more debug_info for this comp unit. */
3e225074 8019 if (reader.comp_unit_die->has_children)
c0ab21c2 8020 load_partial_dies (&reader, reader.info_ptr, 0);
6751ebae
TT
8021
8022 reader.keep ();
c0ab21c2 8023 }
ae038cb0
DJ
8024}
8025
ae038cb0 8026static void
ed2dc618 8027read_comp_units_from_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
36586728 8028 struct dwarf2_section_info *section,
f1902523 8029 struct dwarf2_section_info *abbrev_section,
b76e467d 8030 unsigned int is_dwz)
ae038cb0 8031{
d521ce57 8032 const gdb_byte *info_ptr;
ed2dc618 8033 struct objfile *objfile = dwarf2_per_objfile->objfile;
be391dca 8034
b4f54984 8035 if (dwarf_read_debug)
bf6af496 8036 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
96b79293
TT
8037 section->get_name (),
8038 section->get_file_name ());
bf6af496 8039
96b79293 8040 section->read (objfile);
ae038cb0 8041
36586728 8042 info_ptr = section->buffer;
6e70227d 8043
36586728 8044 while (info_ptr < section->buffer + section->size)
ae038cb0 8045 {
ae038cb0 8046 struct dwarf2_per_cu_data *this_cu;
ae038cb0 8047
9c541725 8048 sect_offset sect_off = (sect_offset) (info_ptr - section->buffer);
ae038cb0 8049
f1902523 8050 comp_unit_head cu_header;
ed2dc618
SM
8051 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
8052 abbrev_section, info_ptr,
8053 rcuh_kind::COMPILE);
ae038cb0
DJ
8054
8055 /* Save the compilation unit for later lookup. */
f1902523 8056 if (cu_header.unit_type != DW_UT_type)
5989a64e 8057 this_cu = dwarf2_per_objfile->per_bfd->allocate_per_cu ();
f1902523
JK
8058 else
8059 {
5989a64e 8060 auto sig_type = dwarf2_per_objfile->per_bfd->allocate_signatured_type ();
f1902523
JK
8061 sig_type->signature = cu_header.signature;
8062 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
8063 this_cu = &sig_type->per_cu;
8064 }
8065 this_cu->is_debug_types = (cu_header.unit_type == DW_UT_type);
9c541725 8066 this_cu->sect_off = sect_off;
f1902523 8067 this_cu->length = cu_header.length + cu_header.initial_length_size;
36586728 8068 this_cu->is_dwz = is_dwz;
e3b94546 8069 this_cu->dwarf2_per_objfile = dwarf2_per_objfile;
8a0459fd 8070 this_cu->section = section;
ae038cb0 8071
5989a64e 8072 dwarf2_per_objfile->per_bfd->all_comp_units.push_back (this_cu);
ae038cb0
DJ
8073
8074 info_ptr = info_ptr + this_cu->length;
8075 }
36586728
TT
8076}
8077
8078/* Create a list of all compilation units in OBJFILE.
8079 This is only done for -readnow and building partial symtabs. */
8080
8081static void
ed2dc618 8082create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
36586728 8083{
5989a64e
SM
8084 gdb_assert (dwarf2_per_objfile->per_bfd->all_comp_units.empty ());
8085 read_comp_units_from_section (dwarf2_per_objfile, &dwarf2_per_objfile->per_bfd->info,
8086 &dwarf2_per_objfile->per_bfd->abbrev, 0);
36586728 8087
c3699833 8088 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
4db1a1dc 8089 if (dwz != NULL)
ed2dc618 8090 read_comp_units_from_section (dwarf2_per_objfile, &dwz->info, &dwz->abbrev,
b76e467d 8091 1);
c906108c
SS
8092}
8093
5734ee8b 8094/* Process all loaded DIEs for compilation unit CU, starting at
cdc07690 8095 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
5734ee8b 8096 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
cdc07690
YQ
8097 DW_AT_ranges). See the comments of add_partial_subprogram on how
8098 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
c906108c 8099
72bf9492
DJ
8100static void
8101scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
cdc07690
YQ
8102 CORE_ADDR *highpc, int set_addrmap,
8103 struct dwarf2_cu *cu)
c906108c 8104{
72bf9492 8105 struct partial_die_info *pdi;
c906108c 8106
91c24f0a
DC
8107 /* Now, march along the PDI's, descending into ones which have
8108 interesting children but skipping the children of the other ones,
8109 until we reach the end of the compilation unit. */
c906108c 8110
72bf9492 8111 pdi = first_die;
91c24f0a 8112
72bf9492
DJ
8113 while (pdi != NULL)
8114 {
52356b79 8115 pdi->fixup (cu);
c906108c 8116
f55ee35c 8117 /* Anonymous namespaces or modules have no name but have interesting
91c24f0a
DC
8118 children, so we need to look at them. Ditto for anonymous
8119 enums. */
933c6fe4 8120
72bf9492 8121 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
95554aad 8122 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
b1dc1806
XR
8123 || pdi->tag == DW_TAG_imported_unit
8124 || pdi->tag == DW_TAG_inlined_subroutine)
c906108c 8125 {
72bf9492 8126 switch (pdi->tag)
c906108c
SS
8127 {
8128 case DW_TAG_subprogram:
b1dc1806 8129 case DW_TAG_inlined_subroutine:
cdc07690 8130 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
c906108c 8131 break;
72929c62 8132 case DW_TAG_constant:
c906108c
SS
8133 case DW_TAG_variable:
8134 case DW_TAG_typedef:
91c24f0a 8135 case DW_TAG_union_type:
317d2668
TV
8136 if (!pdi->is_declaration
8137 || (pdi->tag == DW_TAG_variable && pdi->is_external))
63d06c5c 8138 {
72bf9492 8139 add_partial_symbol (pdi, cu);
63d06c5c
DC
8140 }
8141 break;
c906108c 8142 case DW_TAG_class_type:
680b30c7 8143 case DW_TAG_interface_type:
c906108c 8144 case DW_TAG_structure_type:
72bf9492 8145 if (!pdi->is_declaration)
c906108c 8146 {
72bf9492 8147 add_partial_symbol (pdi, cu);
c906108c 8148 }
b7fee5a3
KS
8149 if ((cu->language == language_rust
8150 || cu->language == language_cplus) && pdi->has_children)
e98c9e7c
TT
8151 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8152 set_addrmap, cu);
c906108c 8153 break;
91c24f0a 8154 case DW_TAG_enumeration_type:
72bf9492
DJ
8155 if (!pdi->is_declaration)
8156 add_partial_enumeration (pdi, cu);
c906108c
SS
8157 break;
8158 case DW_TAG_base_type:
a02abb62 8159 case DW_TAG_subrange_type:
c906108c 8160 /* File scope base type definitions are added to the partial
c5aa993b 8161 symbol table. */
72bf9492 8162 add_partial_symbol (pdi, cu);
c906108c 8163 break;
d9fa45fe 8164 case DW_TAG_namespace:
cdc07690 8165 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
91c24f0a 8166 break;
5d7cb8df 8167 case DW_TAG_module:
59c35742
AB
8168 if (!pdi->is_declaration)
8169 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
5d7cb8df 8170 break;
95554aad
TT
8171 case DW_TAG_imported_unit:
8172 {
8173 struct dwarf2_per_cu_data *per_cu;
8174
f4dc4d17
DE
8175 /* For now we don't handle imported units in type units. */
8176 if (cu->per_cu->is_debug_types)
8177 {
8178 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8179 " supported in type units [in module %s]"),
5e22e966 8180 objfile_name (cu->per_objfile->objfile));
f4dc4d17
DE
8181 }
8182
e3b94546 8183 per_cu = dwarf2_find_containing_comp_unit
5e22e966 8184 (pdi->d.sect_off, pdi->is_dwz, cu->per_objfile);
95554aad
TT
8185
8186 /* Go read the partial unit, if needed. */
8187 if (per_cu->v.psymtab == NULL)
ab432490
SM
8188 process_psymtab_comp_unit (per_cu, cu->per_objfile, true,
8189 cu->language);
95554aad 8190
ae640021 8191 cu->per_cu->imported_symtabs_push (per_cu);
95554aad
TT
8192 }
8193 break;
74921315
KS
8194 case DW_TAG_imported_declaration:
8195 add_partial_symbol (pdi, cu);
8196 break;
c906108c
SS
8197 default:
8198 break;
8199 }
8200 }
8201
72bf9492
DJ
8202 /* If the die has a sibling, skip to the sibling. */
8203
8204 pdi = pdi->die_sibling;
8205 }
8206}
8207
8208/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 8209
72bf9492 8210 Normally, this is simple. For C++, the parent DIE's fully scoped
9c37b5ae 8211 name is concatenated with "::" and the partial DIE's name.
72bf9492
DJ
8212 Enumerators are an exception; they use the scope of their parent
8213 enumeration type, i.e. the name of the enumeration type is not
8214 prepended to the enumerator.
91c24f0a 8215
72bf9492
DJ
8216 There are two complexities. One is DW_AT_specification; in this
8217 case "parent" means the parent of the target of the specification,
8218 instead of the direct parent of the DIE. The other is compilers
8219 which do not emit DW_TAG_namespace; in this case we try to guess
8220 the fully qualified name of structure types from their members'
8221 linkage names. This must be done using the DIE's children rather
8222 than the children of any DW_AT_specification target. We only need
8223 to do this for structures at the top level, i.e. if the target of
8224 any DW_AT_specification (if any; otherwise the DIE itself) does not
8225 have a parent. */
8226
8227/* Compute the scope prefix associated with PDI's parent, in
8228 compilation unit CU. The result will be allocated on CU's
8229 comp_unit_obstack, or a copy of the already allocated PDI->NAME
8230 field. NULL is returned if no prefix is necessary. */
15d034d0 8231static const char *
72bf9492
DJ
8232partial_die_parent_scope (struct partial_die_info *pdi,
8233 struct dwarf2_cu *cu)
8234{
15d034d0 8235 const char *grandparent_scope;
72bf9492 8236 struct partial_die_info *parent, *real_pdi;
91c24f0a 8237
72bf9492
DJ
8238 /* We need to look at our parent DIE; if we have a DW_AT_specification,
8239 then this means the parent of the specification DIE. */
8240
8241 real_pdi = pdi;
72bf9492 8242 while (real_pdi->has_specification)
fb816e8b 8243 {
122cf0f2
AB
8244 auto res = find_partial_die (real_pdi->spec_offset,
8245 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
8246 real_pdi = res.pdi;
8247 cu = res.cu;
8248 }
72bf9492
DJ
8249
8250 parent = real_pdi->die_parent;
8251 if (parent == NULL)
8252 return NULL;
8253
8254 if (parent->scope_set)
8255 return parent->scope;
8256
52356b79 8257 parent->fixup (cu);
72bf9492 8258
10b3939b 8259 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492 8260
acebe513
UW
8261 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
8262 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
8263 Work around this problem here. */
8264 if (cu->language == language_cplus
6e70227d 8265 && parent->tag == DW_TAG_namespace
acebe513
UW
8266 && strcmp (parent->name, "::") == 0
8267 && grandparent_scope == NULL)
8268 {
8269 parent->scope = NULL;
8270 parent->scope_set = 1;
8271 return NULL;
8272 }
8273
0a4b0913 8274 /* Nested subroutines in Fortran get a prefix. */
9c6c53f7
SA
8275 if (pdi->tag == DW_TAG_enumerator)
8276 /* Enumerators should not get the name of the enumeration as a prefix. */
8277 parent->scope = grandparent_scope;
8278 else if (parent->tag == DW_TAG_namespace
f55ee35c 8279 || parent->tag == DW_TAG_module
72bf9492
DJ
8280 || parent->tag == DW_TAG_structure_type
8281 || parent->tag == DW_TAG_class_type
680b30c7 8282 || parent->tag == DW_TAG_interface_type
ceeb3d5a 8283 || parent->tag == DW_TAG_union_type
0a4b0913
AB
8284 || parent->tag == DW_TAG_enumeration_type
8285 || (cu->language == language_fortran
8286 && parent->tag == DW_TAG_subprogram
8287 && pdi->tag == DW_TAG_subprogram))
72bf9492
DJ
8288 {
8289 if (grandparent_scope == NULL)
8290 parent->scope = parent->name;
8291 else
3e43a32a
MS
8292 parent->scope = typename_concat (&cu->comp_unit_obstack,
8293 grandparent_scope,
f55ee35c 8294 parent->name, 0, cu);
72bf9492 8295 }
72bf9492
DJ
8296 else
8297 {
8298 /* FIXME drow/2004-04-01: What should we be doing with
8299 function-local names? For partial symbols, we should probably be
8300 ignoring them. */
fa9c3fa0
TT
8301 complaint (_("unhandled containing DIE tag %s for DIE at %s"),
8302 dwarf_tag_name (parent->tag),
8303 sect_offset_str (pdi->sect_off));
72bf9492 8304 parent->scope = grandparent_scope;
c906108c
SS
8305 }
8306
72bf9492
DJ
8307 parent->scope_set = 1;
8308 return parent->scope;
8309}
8310
8311/* Return the fully scoped name associated with PDI, from compilation unit
8312 CU. The result will be allocated with malloc. */
4568ecf9 8313
43816ebc 8314static gdb::unique_xmalloc_ptr<char>
72bf9492
DJ
8315partial_die_full_name (struct partial_die_info *pdi,
8316 struct dwarf2_cu *cu)
8317{
15d034d0 8318 const char *parent_scope;
72bf9492 8319
98bfdba5
PA
8320 /* If this is a template instantiation, we can not work out the
8321 template arguments from partial DIEs. So, unfortunately, we have
8322 to go through the full DIEs. At least any work we do building
8323 types here will be reused if full symbols are loaded later. */
8324 if (pdi->has_template_arguments)
8325 {
52356b79 8326 pdi->fixup (cu);
98bfdba5
PA
8327
8328 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
8329 {
8330 struct die_info *die;
8331 struct attribute attr;
8332 struct dwarf2_cu *ref_cu = cu;
8333
b64f50a1 8334 /* DW_FORM_ref_addr is using section offset. */
b4069958 8335 attr.name = (enum dwarf_attribute) 0;
98bfdba5 8336 attr.form = DW_FORM_ref_addr;
9c541725 8337 attr.u.unsnd = to_underlying (pdi->sect_off);
98bfdba5
PA
8338 die = follow_die_ref (NULL, &attr, &ref_cu);
8339
43816ebc 8340 return make_unique_xstrdup (dwarf2_full_name (NULL, die, ref_cu));
98bfdba5
PA
8341 }
8342 }
8343
72bf9492
DJ
8344 parent_scope = partial_die_parent_scope (pdi, cu);
8345 if (parent_scope == NULL)
8346 return NULL;
8347 else
43816ebc
TT
8348 return gdb::unique_xmalloc_ptr<char> (typename_concat (NULL, parent_scope,
8349 pdi->name, 0, cu));
c906108c
SS
8350}
8351
8352static void
72bf9492 8353add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 8354{
5e22e966 8355 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 8356 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 8357 struct gdbarch *gdbarch = objfile->arch ();
c906108c 8358 CORE_ADDR addr = 0;
15d034d0 8359 const char *actual_name = NULL;
e142c38c
DJ
8360 CORE_ADDR baseaddr;
8361
b3b3bada 8362 baseaddr = objfile->text_section_offset ();
c906108c 8363
43816ebc
TT
8364 gdb::unique_xmalloc_ptr<char> built_actual_name
8365 = partial_die_full_name (pdi, cu);
15d034d0 8366 if (built_actual_name != NULL)
43816ebc 8367 actual_name = built_actual_name.get ();
63d06c5c 8368
72bf9492
DJ
8369 if (actual_name == NULL)
8370 actual_name = pdi->name;
8371
76e288d1
TT
8372 partial_symbol psymbol;
8373 memset (&psymbol, 0, sizeof (psymbol));
8374 psymbol.ginfo.set_language (cu->language, &objfile->objfile_obstack);
8375 psymbol.ginfo.section = -1;
8376
8377 /* The code below indicates that the psymbol should be installed by
8378 setting this. */
8379 gdb::optional<psymbol_placement> where;
8380
c906108c
SS
8381 switch (pdi->tag)
8382 {
b1dc1806 8383 case DW_TAG_inlined_subroutine:
c906108c 8384 case DW_TAG_subprogram:
79748972
TT
8385 addr = (gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr)
8386 - baseaddr);
0a4b0913
AB
8387 if (pdi->is_external
8388 || cu->language == language_ada
8389 || (cu->language == language_fortran
8390 && pdi->die_parent != NULL
8391 && pdi->die_parent->tag == DW_TAG_subprogram))
8392 {
8393 /* Normally, only "external" DIEs are part of the global scope.
8394 But in Ada and Fortran, we want to be able to access nested
8395 procedures globally. So all Ada and Fortran subprograms are
8396 stored in the global scope. */
76e288d1 8397 where = psymbol_placement::GLOBAL;
c906108c
SS
8398 }
8399 else
76e288d1
TT
8400 where = psymbol_placement::STATIC;
8401
8402 psymbol.domain = VAR_DOMAIN;
8403 psymbol.aclass = LOC_BLOCK;
8404 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8405 psymbol.ginfo.value.address = addr;
0c1b455e
TT
8406
8407 if (pdi->main_subprogram && actual_name != NULL)
8408 set_objfile_main_name (objfile, actual_name, cu->language);
c906108c 8409 break;
72929c62 8410 case DW_TAG_constant:
76e288d1
TT
8411 psymbol.domain = VAR_DOMAIN;
8412 psymbol.aclass = LOC_STATIC;
8413 where = (pdi->is_external
8414 ? psymbol_placement::GLOBAL
8415 : psymbol_placement::STATIC);
72929c62 8416 break;
c906108c 8417 case DW_TAG_variable:
95554aad
TT
8418 if (pdi->d.locdesc)
8419 addr = decode_locdesc (pdi->d.locdesc, cu);
caac4577 8420
95554aad 8421 if (pdi->d.locdesc
caac4577 8422 && addr == 0
5989a64e 8423 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
caac4577
JG
8424 {
8425 /* A global or static variable may also have been stripped
8426 out by the linker if unused, in which case its address
8427 will be nullified; do not add such variables into partial
8428 symbol table then. */
8429 }
8430 else if (pdi->is_external)
c906108c
SS
8431 {
8432 /* Global Variable.
8433 Don't enter into the minimal symbol tables as there is
8434 a minimal symbol table entry from the ELF symbols already.
8435 Enter into partial symbol table if it has a location
8436 descriptor or a type.
8437 If the location descriptor is missing, new_symbol will create
8438 a LOC_UNRESOLVED symbol, the address of the variable will then
8439 be determined from the minimal symbol table whenever the variable
8440 is referenced.
8441 The address for the partial symbol table entry is not
8442 used by GDB, but it comes in handy for debugging partial symbol
8443 table building. */
8444
95554aad 8445 if (pdi->d.locdesc || pdi->has_type)
76e288d1
TT
8446 {
8447 psymbol.domain = VAR_DOMAIN;
8448 psymbol.aclass = LOC_STATIC;
8449 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8450 psymbol.ginfo.value.address = addr;
8451 where = psymbol_placement::GLOBAL;
8452 }
c906108c
SS
8453 }
8454 else
8455 {
ff908ebf
AW
8456 int has_loc = pdi->d.locdesc != NULL;
8457
8458 /* Static Variable. Skip symbols whose value we cannot know (those
8459 without location descriptors or constant values). */
8460 if (!has_loc && !pdi->has_const_value)
43816ebc 8461 return;
ff908ebf 8462
76e288d1
TT
8463 psymbol.domain = VAR_DOMAIN;
8464 psymbol.aclass = LOC_STATIC;
8465 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8466 if (has_loc)
8467 psymbol.ginfo.value.address = addr;
8468 where = psymbol_placement::STATIC;
c906108c
SS
8469 }
8470 break;
8471 case DW_TAG_typedef:
8472 case DW_TAG_base_type:
a02abb62 8473 case DW_TAG_subrange_type:
76e288d1
TT
8474 psymbol.domain = VAR_DOMAIN;
8475 psymbol.aclass = LOC_TYPEDEF;
8476 where = psymbol_placement::STATIC;
c906108c 8477 break;
74921315 8478 case DW_TAG_imported_declaration:
72bf9492 8479 case DW_TAG_namespace:
76e288d1
TT
8480 psymbol.domain = VAR_DOMAIN;
8481 psymbol.aclass = LOC_TYPEDEF;
8482 where = psymbol_placement::GLOBAL;
72bf9492 8483 break;
530e8392 8484 case DW_TAG_module:
a5fd13a9
BH
8485 /* With Fortran 77 there might be a "BLOCK DATA" module
8486 available without any name. If so, we skip the module as it
8487 doesn't bring any value. */
8488 if (actual_name != nullptr)
76e288d1
TT
8489 {
8490 psymbol.domain = MODULE_DOMAIN;
8491 psymbol.aclass = LOC_TYPEDEF;
8492 where = psymbol_placement::GLOBAL;
8493 }
530e8392 8494 break;
c906108c 8495 case DW_TAG_class_type:
680b30c7 8496 case DW_TAG_interface_type:
c906108c
SS
8497 case DW_TAG_structure_type:
8498 case DW_TAG_union_type:
8499 case DW_TAG_enumeration_type:
fa4028e9
JB
8500 /* Skip external references. The DWARF standard says in the section
8501 about "Structure, Union, and Class Type Entries": "An incomplete
8502 structure, union or class type is represented by a structure,
8503 union or class entry that does not have a byte size attribute
8504 and that has a DW_AT_declaration attribute." */
8505 if (!pdi->has_byte_size && pdi->is_declaration)
43816ebc 8506 return;
fa4028e9 8507
63d06c5c
DC
8508 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
8509 static vs. global. */
76e288d1
TT
8510 psymbol.domain = STRUCT_DOMAIN;
8511 psymbol.aclass = LOC_TYPEDEF;
8512 where = (cu->language == language_cplus
8513 ? psymbol_placement::GLOBAL
8514 : psymbol_placement::STATIC);
c906108c
SS
8515 break;
8516 case DW_TAG_enumerator:
76e288d1
TT
8517 psymbol.domain = VAR_DOMAIN;
8518 psymbol.aclass = LOC_CONST;
8519 where = (cu->language == language_cplus
8520 ? psymbol_placement::GLOBAL
8521 : psymbol_placement::STATIC);
c906108c
SS
8522 break;
8523 default:
8524 break;
8525 }
76e288d1
TT
8526
8527 if (where.has_value ())
8528 {
f049a313
TT
8529 if (built_actual_name != nullptr)
8530 actual_name = objfile->intern (actual_name);
bcfe6157
TT
8531 if (pdi->linkage_name == nullptr || cu->language == language_ada)
8532 psymbol.ginfo.set_linkage_name (actual_name);
8533 else
8534 {
8535 psymbol.ginfo.set_demangled_name (actual_name,
8536 &objfile->objfile_obstack);
8537 psymbol.ginfo.set_linkage_name (pdi->linkage_name);
8538 }
76e288d1
TT
8539 add_psymbol_to_list (psymbol, *where, objfile);
8540 }
c906108c
SS
8541}
8542
5c4e30ca
DC
8543/* Read a partial die corresponding to a namespace; also, add a symbol
8544 corresponding to that namespace to the symbol table. NAMESPACE is
8545 the name of the enclosing namespace. */
91c24f0a 8546
72bf9492
DJ
8547static void
8548add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 8549 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 8550 int set_addrmap, struct dwarf2_cu *cu)
91c24f0a 8551{
72bf9492 8552 /* Add a symbol for the namespace. */
e7c27a73 8553
72bf9492 8554 add_partial_symbol (pdi, cu);
5c4e30ca
DC
8555
8556 /* Now scan partial symbols in that namespace. */
8557
91c24f0a 8558 if (pdi->has_children)
cdc07690 8559 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
91c24f0a
DC
8560}
8561
5d7cb8df
JK
8562/* Read a partial die corresponding to a Fortran module. */
8563
8564static void
8565add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 8566 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
5d7cb8df 8567{
530e8392
KB
8568 /* Add a symbol for the namespace. */
8569
8570 add_partial_symbol (pdi, cu);
8571
f55ee35c 8572 /* Now scan partial symbols in that module. */
5d7cb8df
JK
8573
8574 if (pdi->has_children)
cdc07690 8575 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
5d7cb8df
JK
8576}
8577
b1dc1806
XR
8578/* Read a partial die corresponding to a subprogram or an inlined
8579 subprogram and create a partial symbol for that subprogram.
8580 When the CU language allows it, this routine also defines a partial
8581 symbol for each nested subprogram that this subprogram contains.
8582 If SET_ADDRMAP is true, record the covered ranges in the addrmap.
8583 Set *LOWPC and *HIGHPC to the lowest and highest PC values found in PDI.
6e70227d 8584
cdc07690
YQ
8585 PDI may also be a lexical block, in which case we simply search
8586 recursively for subprograms defined inside that lexical block.
bc30ff58
JB
8587 Again, this is only performed when the CU language allows this
8588 type of definitions. */
8589
8590static void
8591add_partial_subprogram (struct partial_die_info *pdi,
8592 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 8593 int set_addrmap, struct dwarf2_cu *cu)
bc30ff58 8594{
b1dc1806 8595 if (pdi->tag == DW_TAG_subprogram || pdi->tag == DW_TAG_inlined_subroutine)
bc30ff58
JB
8596 {
8597 if (pdi->has_pc_info)
8598 {
8599 if (pdi->lowpc < *lowpc)
8600 *lowpc = pdi->lowpc;
8601 if (pdi->highpc > *highpc)
8602 *highpc = pdi->highpc;
cdc07690 8603 if (set_addrmap)
5734ee8b 8604 {
5e22e966 8605 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 8606 struct gdbarch *gdbarch = objfile->arch ();
3e29f34a 8607 CORE_ADDR baseaddr;
b926417a
TT
8608 CORE_ADDR this_highpc;
8609 CORE_ADDR this_lowpc;
5734ee8b 8610
b3b3bada 8611 baseaddr = objfile->text_section_offset ();
b926417a
TT
8612 this_lowpc
8613 = (gdbarch_adjust_dwarf2_addr (gdbarch,
8614 pdi->lowpc + baseaddr)
8615 - baseaddr);
8616 this_highpc
8617 = (gdbarch_adjust_dwarf2_addr (gdbarch,
8618 pdi->highpc + baseaddr)
8619 - baseaddr);
d320c2b5 8620 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
b926417a 8621 this_lowpc, this_highpc - 1,
9291a0cd 8622 cu->per_cu->v.psymtab);
5734ee8b 8623 }
481860b3
GB
8624 }
8625
8626 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
8627 {
bc30ff58 8628 if (!pdi->is_declaration)
e8d05480
JB
8629 /* Ignore subprogram DIEs that do not have a name, they are
8630 illegal. Do not emit a complaint at this point, we will
8631 do so when we convert this psymtab into a symtab. */
8632 if (pdi->name)
8633 add_partial_symbol (pdi, cu);
bc30ff58
JB
8634 }
8635 }
6e70227d 8636
bc30ff58
JB
8637 if (! pdi->has_children)
8638 return;
8639
0a4b0913 8640 if (cu->language == language_ada || cu->language == language_fortran)
bc30ff58
JB
8641 {
8642 pdi = pdi->die_child;
8643 while (pdi != NULL)
8644 {
52356b79 8645 pdi->fixup (cu);
bc30ff58 8646 if (pdi->tag == DW_TAG_subprogram
b1dc1806 8647 || pdi->tag == DW_TAG_inlined_subroutine
bc30ff58 8648 || pdi->tag == DW_TAG_lexical_block)
cdc07690 8649 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
bc30ff58
JB
8650 pdi = pdi->die_sibling;
8651 }
8652 }
8653}
8654
91c24f0a
DC
8655/* Read a partial die corresponding to an enumeration type. */
8656
72bf9492
DJ
8657static void
8658add_partial_enumeration (struct partial_die_info *enum_pdi,
8659 struct dwarf2_cu *cu)
91c24f0a 8660{
72bf9492 8661 struct partial_die_info *pdi;
91c24f0a
DC
8662
8663 if (enum_pdi->name != NULL)
72bf9492
DJ
8664 add_partial_symbol (enum_pdi, cu);
8665
8666 pdi = enum_pdi->die_child;
8667 while (pdi)
91c24f0a 8668 {
72bf9492 8669 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
b98664d3 8670 complaint (_("malformed enumerator DIE ignored"));
91c24f0a 8671 else
72bf9492
DJ
8672 add_partial_symbol (pdi, cu);
8673 pdi = pdi->die_sibling;
91c24f0a 8674 }
91c24f0a
DC
8675}
8676
6caca83c
CC
8677/* Return the initial uleb128 in the die at INFO_PTR. */
8678
8679static unsigned int
d521ce57 8680peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6caca83c
CC
8681{
8682 unsigned int bytes_read;
8683
8684 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8685}
8686
685af9cd
TT
8687/* Read the initial uleb128 in the die at INFO_PTR in compilation unit
8688 READER::CU. Use READER::ABBREV_TABLE to lookup any abbreviation.
8689
4bb7a0a7
DJ
8690 Return the corresponding abbrev, or NULL if the number is zero (indicating
8691 an empty DIE). In either case *BYTES_READ will be set to the length of
8692 the initial number. */
8693
8694static struct abbrev_info *
685af9cd
TT
8695peek_die_abbrev (const die_reader_specs &reader,
8696 const gdb_byte *info_ptr, unsigned int *bytes_read)
4bb7a0a7 8697{
685af9cd 8698 dwarf2_cu *cu = reader.cu;
5e22e966 8699 bfd *abfd = cu->per_objfile->objfile->obfd;
685af9cd
TT
8700 unsigned int abbrev_number
8701 = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4bb7a0a7
DJ
8702
8703 if (abbrev_number == 0)
8704 return NULL;
8705
685af9cd 8706 abbrev_info *abbrev = reader.abbrev_table->lookup_abbrev (abbrev_number);
4bb7a0a7
DJ
8707 if (!abbrev)
8708 {
422b9917 8709 error (_("Dwarf Error: Could not find abbrev number %d in %s"
9d8780f0 8710 " at offset %s [in module %s]"),
422b9917 8711 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
9d8780f0 8712 sect_offset_str (cu->header.sect_off), bfd_get_filename (abfd));
4bb7a0a7
DJ
8713 }
8714
8715 return abbrev;
8716}
8717
93311388
DE
8718/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
8719 Returns a pointer to the end of a series of DIEs, terminated by an empty
4bb7a0a7
DJ
8720 DIE. Any children of the skipped DIEs will also be skipped. */
8721
d521ce57
TT
8722static const gdb_byte *
8723skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
4bb7a0a7 8724{
4bb7a0a7
DJ
8725 while (1)
8726 {
685af9cd
TT
8727 unsigned int bytes_read;
8728 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
8729
4bb7a0a7
DJ
8730 if (abbrev == NULL)
8731 return info_ptr + bytes_read;
8732 else
dee91e82 8733 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
4bb7a0a7
DJ
8734 }
8735}
8736
93311388
DE
8737/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
8738 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4bb7a0a7
DJ
8739 abbrev corresponding to that skipped uleb128 should be passed in
8740 ABBREV. Returns a pointer to this DIE's sibling, skipping any
8741 children. */
8742
d521ce57
TT
8743static const gdb_byte *
8744skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
dee91e82 8745 struct abbrev_info *abbrev)
4bb7a0a7
DJ
8746{
8747 unsigned int bytes_read;
8748 struct attribute attr;
dee91e82
DE
8749 bfd *abfd = reader->abfd;
8750 struct dwarf2_cu *cu = reader->cu;
d521ce57 8751 const gdb_byte *buffer = reader->buffer;
f664829e 8752 const gdb_byte *buffer_end = reader->buffer_end;
4bb7a0a7
DJ
8753 unsigned int form, i;
8754
8755 for (i = 0; i < abbrev->num_attrs; i++)
8756 {
8757 /* The only abbrev we care about is DW_AT_sibling. */
8758 if (abbrev->attrs[i].name == DW_AT_sibling)
8759 {
18a8505e
AT
8760 bool ignored;
8761 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr,
8762 &ignored);
4bb7a0a7 8763 if (attr.form == DW_FORM_ref_addr)
b98664d3 8764 complaint (_("ignoring absolute DW_AT_sibling"));
4bb7a0a7 8765 else
b9502d3f 8766 {
0826b30a 8767 sect_offset off = attr.get_ref_die_offset ();
9c541725 8768 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
8769
8770 if (sibling_ptr < info_ptr)
b98664d3 8771 complaint (_("DW_AT_sibling points backwards"));
22869d73 8772 else if (sibling_ptr > reader->buffer_end)
a0194fa8 8773 reader->die_section->overflow_complaint ();
b9502d3f
WN
8774 else
8775 return sibling_ptr;
8776 }
4bb7a0a7
DJ
8777 }
8778
8779 /* If it isn't DW_AT_sibling, skip this attribute. */
8780 form = abbrev->attrs[i].form;
8781 skip_attribute:
8782 switch (form)
8783 {
4bb7a0a7 8784 case DW_FORM_ref_addr:
ae411497
TT
8785 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
8786 and later it is offset sized. */
8787 if (cu->header.version == 2)
8788 info_ptr += cu->header.addr_size;
8789 else
8790 info_ptr += cu->header.offset_size;
8791 break;
36586728
TT
8792 case DW_FORM_GNU_ref_alt:
8793 info_ptr += cu->header.offset_size;
8794 break;
ae411497 8795 case DW_FORM_addr:
4bb7a0a7
DJ
8796 info_ptr += cu->header.addr_size;
8797 break;
8798 case DW_FORM_data1:
8799 case DW_FORM_ref1:
8800 case DW_FORM_flag:
8fe0f950 8801 case DW_FORM_strx1:
4bb7a0a7
DJ
8802 info_ptr += 1;
8803 break;
2dc7f7b3 8804 case DW_FORM_flag_present:
43988095 8805 case DW_FORM_implicit_const:
2dc7f7b3 8806 break;
4bb7a0a7
DJ
8807 case DW_FORM_data2:
8808 case DW_FORM_ref2:
8fe0f950 8809 case DW_FORM_strx2:
4bb7a0a7
DJ
8810 info_ptr += 2;
8811 break;
8fe0f950
AT
8812 case DW_FORM_strx3:
8813 info_ptr += 3;
8814 break;
4bb7a0a7
DJ
8815 case DW_FORM_data4:
8816 case DW_FORM_ref4:
8fe0f950 8817 case DW_FORM_strx4:
4bb7a0a7
DJ
8818 info_ptr += 4;
8819 break;
8820 case DW_FORM_data8:
8821 case DW_FORM_ref8:
55f1336d 8822 case DW_FORM_ref_sig8:
4bb7a0a7
DJ
8823 info_ptr += 8;
8824 break;
0224619f
JK
8825 case DW_FORM_data16:
8826 info_ptr += 16;
8827 break;
4bb7a0a7 8828 case DW_FORM_string:
9b1c24c8 8829 read_direct_string (abfd, info_ptr, &bytes_read);
4bb7a0a7
DJ
8830 info_ptr += bytes_read;
8831 break;
2dc7f7b3 8832 case DW_FORM_sec_offset:
4bb7a0a7 8833 case DW_FORM_strp:
36586728 8834 case DW_FORM_GNU_strp_alt:
4bb7a0a7
DJ
8835 info_ptr += cu->header.offset_size;
8836 break;
2dc7f7b3 8837 case DW_FORM_exprloc:
4bb7a0a7
DJ
8838 case DW_FORM_block:
8839 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8840 info_ptr += bytes_read;
8841 break;
8842 case DW_FORM_block1:
8843 info_ptr += 1 + read_1_byte (abfd, info_ptr);
8844 break;
8845 case DW_FORM_block2:
8846 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
8847 break;
8848 case DW_FORM_block4:
8849 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
8850 break;
336d760d 8851 case DW_FORM_addrx:
cf532bd1 8852 case DW_FORM_strx:
4bb7a0a7
DJ
8853 case DW_FORM_sdata:
8854 case DW_FORM_udata:
8855 case DW_FORM_ref_udata:
3019eac3
DE
8856 case DW_FORM_GNU_addr_index:
8857 case DW_FORM_GNU_str_index:
18a8505e 8858 case DW_FORM_rnglistx:
41144253 8859 case DW_FORM_loclistx:
d521ce57 8860 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
4bb7a0a7
DJ
8861 break;
8862 case DW_FORM_indirect:
8863 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8864 info_ptr += bytes_read;
8865 /* We need to continue parsing from here, so just go back to
8866 the top. */
8867 goto skip_attribute;
8868
8869 default:
3e43a32a
MS
8870 error (_("Dwarf Error: Cannot handle %s "
8871 "in DWARF reader [in module %s]"),
4bb7a0a7
DJ
8872 dwarf_form_name (form),
8873 bfd_get_filename (abfd));
8874 }
8875 }
8876
8877 if (abbrev->has_children)
dee91e82 8878 return skip_children (reader, info_ptr);
4bb7a0a7
DJ
8879 else
8880 return info_ptr;
8881}
8882
93311388 8883/* Locate ORIG_PDI's sibling.
dee91e82 8884 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
91c24f0a 8885
d521ce57 8886static const gdb_byte *
dee91e82
DE
8887locate_pdi_sibling (const struct die_reader_specs *reader,
8888 struct partial_die_info *orig_pdi,
d521ce57 8889 const gdb_byte *info_ptr)
91c24f0a
DC
8890{
8891 /* Do we know the sibling already? */
72bf9492 8892
91c24f0a
DC
8893 if (orig_pdi->sibling)
8894 return orig_pdi->sibling;
8895
8896 /* Are there any children to deal with? */
8897
8898 if (!orig_pdi->has_children)
8899 return info_ptr;
8900
4bb7a0a7 8901 /* Skip the children the long way. */
91c24f0a 8902
dee91e82 8903 return skip_children (reader, info_ptr);
91c24f0a
DC
8904}
8905
257e7a09 8906/* Expand this partial symbol table into a full symbol table. SELF is
442e4d9c 8907 not NULL. */
c906108c 8908
891813be
TT
8909void
8910dwarf2_psymtab::read_symtab (struct objfile *objfile)
c906108c 8911{
ed2dc618
SM
8912 struct dwarf2_per_objfile *dwarf2_per_objfile
8913 = get_dwarf2_per_objfile (objfile);
8914
af758d11
SM
8915 gdb_assert (!dwarf2_per_objfile->symtab_set_p (per_cu_data));
8916
077cbab2
TT
8917 /* If this psymtab is constructed from a debug-only objfile, the
8918 has_section_at_zero flag will not necessarily be correct. We
8919 can get the correct value for this flag by looking at the data
8920 associated with the (presumably stripped) associated objfile. */
8921 if (objfile->separate_debug_objfile_backlink)
c906108c 8922 {
077cbab2
TT
8923 struct dwarf2_per_objfile *dpo_backlink
8924 = get_dwarf2_per_objfile (objfile->separate_debug_objfile_backlink);
c906108c 8925
5989a64e
SM
8926 dwarf2_per_objfile->per_bfd->has_section_at_zero
8927 = dpo_backlink->per_bfd->has_section_at_zero;
077cbab2 8928 }
98bfdba5 8929
8566b89b 8930 expand_psymtab (objfile);
95554aad 8931
ed2dc618 8932 process_cu_includes (dwarf2_per_objfile);
c906108c 8933}
9cdd5dbd
DE
8934\f
8935/* Reading in full CUs. */
c906108c 8936
10b3939b
DJ
8937/* Add PER_CU to the queue. */
8938
8939static void
95554aad
TT
8940queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
8941 enum language pretend_language)
10b3939b 8942{
10b3939b 8943 per_cu->queued = 1;
1859c670 8944 per_cu->per_bfd->queue.emplace (per_cu, pretend_language);
10b3939b
DJ
8945}
8946
89e63ee4
DE
8947/* If PER_CU is not yet queued, add it to the queue.
8948 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
8949 dependency.
0907af0c 8950 The result is non-zero if PER_CU was queued, otherwise the result is zero
69d751e3
DE
8951 meaning either PER_CU is already queued or it is already loaded.
8952
8953 N.B. There is an invariant here that if a CU is queued then it is loaded.
8954 The caller is required to load PER_CU if we return non-zero. */
0907af0c
DE
8955
8956static int
89e63ee4 8957maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
0907af0c
DE
8958 struct dwarf2_per_cu_data *per_cu,
8959 enum language pretend_language)
8960{
8961 /* We may arrive here during partial symbol reading, if we need full
8962 DIEs to process an unusual case (e.g. template arguments). Do
8963 not queue PER_CU, just tell our caller to load its DIEs. */
1859c670 8964 if (per_cu->per_bfd->reading_partial_symbols)
0907af0c
DE
8965 {
8966 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
8967 return 1;
8968 return 0;
8969 }
8970
8971 /* Mark the dependence relation so that we don't flush PER_CU
8972 too early. */
89e63ee4
DE
8973 if (dependent_cu != NULL)
8974 dwarf2_add_dependence (dependent_cu, per_cu);
0907af0c
DE
8975
8976 /* If it's already on the queue, we have nothing to do. */
8977 if (per_cu->queued)
8978 return 0;
8979
8980 /* If the compilation unit is already loaded, just mark it as
8981 used. */
8982 if (per_cu->cu != NULL)
8983 {
8984 per_cu->cu->last_used = 0;
8985 return 0;
8986 }
8987
8988 /* Add it to the queue. */
8989 queue_comp_unit (per_cu, pretend_language);
8990
8991 return 1;
8992}
8993
10b3939b
DJ
8994/* Process the queue. */
8995
8996static void
ed2dc618 8997process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile)
10b3939b 8998{
b4f54984 8999 if (dwarf_read_debug)
45cfd468
DE
9000 {
9001 fprintf_unfiltered (gdb_stdlog,
9002 "Expanding one or more symtabs of objfile %s ...\n",
4262abfb 9003 objfile_name (dwarf2_per_objfile->objfile));
45cfd468
DE
9004 }
9005
03dd20cc
DJ
9006 /* The queue starts out with one item, but following a DIE reference
9007 may load a new CU, adding it to the end of the queue. */
5989a64e 9008 while (!dwarf2_per_objfile->per_bfd->queue.empty ())
10b3939b 9009 {
5989a64e 9010 dwarf2_queue_item &item = dwarf2_per_objfile->per_bfd->queue.front ();
39856def 9011
af758d11 9012 if (!dwarf2_per_objfile->symtab_set_p (item.per_cu)
cc12ce38 9013 /* Skip dummy CUs. */
39856def 9014 && item.per_cu->cu != NULL)
f4dc4d17 9015 {
39856def 9016 struct dwarf2_per_cu_data *per_cu = item.per_cu;
73be47f5 9017 unsigned int debug_print_threshold;
247f5c4f 9018 char buf[100];
f4dc4d17 9019
247f5c4f 9020 if (per_cu->is_debug_types)
f4dc4d17 9021 {
247f5c4f
DE
9022 struct signatured_type *sig_type =
9023 (struct signatured_type *) per_cu;
9024
9d8780f0 9025 sprintf (buf, "TU %s at offset %s",
73be47f5 9026 hex_string (sig_type->signature),
9d8780f0 9027 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9028 /* There can be 100s of TUs.
9029 Only print them in verbose mode. */
9030 debug_print_threshold = 2;
f4dc4d17 9031 }
247f5c4f 9032 else
73be47f5 9033 {
9d8780f0
SM
9034 sprintf (buf, "CU at offset %s",
9035 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9036 debug_print_threshold = 1;
9037 }
247f5c4f 9038
b4f54984 9039 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9040 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
f4dc4d17
DE
9041
9042 if (per_cu->is_debug_types)
47b14e86
SM
9043 process_full_type_unit (per_cu, dwarf2_per_objfile,
9044 item.pretend_language);
f4dc4d17 9045 else
47b14e86
SM
9046 process_full_comp_unit (per_cu, dwarf2_per_objfile,
9047 item.pretend_language);
f4dc4d17 9048
b4f54984 9049 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9050 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
f4dc4d17 9051 }
10b3939b 9052
39856def 9053 item.per_cu->queued = 0;
5989a64e 9054 dwarf2_per_objfile->per_bfd->queue.pop ();
10b3939b
DJ
9055 }
9056
b4f54984 9057 if (dwarf_read_debug)
45cfd468
DE
9058 {
9059 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
4262abfb 9060 objfile_name (dwarf2_per_objfile->objfile));
45cfd468 9061 }
10b3939b
DJ
9062}
9063
10b3939b
DJ
9064/* Read in full symbols for PST, and anything it depends on. */
9065
8566b89b
TT
9066void
9067dwarf2_psymtab::expand_psymtab (struct objfile *objfile)
c906108c 9068{
af758d11 9069 gdb_assert (!readin_p (objfile));
95554aad 9070
48993951 9071 expand_dependencies (objfile);
aaa75496 9072
97a1449a
SM
9073 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9074 dw2_do_instantiate_symtab (per_cu_data, per_objfile, false);
5717c425 9075 gdb_assert (get_compunit_symtab (objfile) != nullptr);
10b3939b
DJ
9076}
9077
af758d11
SM
9078/* See psympriv.h. */
9079
9080bool
9081dwarf2_psymtab::readin_p (struct objfile *objfile) const
9082{
9083 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9084 return per_objfile->symtab_set_p (per_cu_data);
9085}
9086
9087/* See psympriv.h. */
9088
9089compunit_symtab *
9090dwarf2_psymtab::get_compunit_symtab (struct objfile *objfile) const
9091{
9092 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9093 return per_objfile->get_symtab (per_cu_data);
9094}
9095
dee91e82
DE
9096/* Trivial hash function for die_info: the hash value of a DIE
9097 is its offset in .debug_info for this objfile. */
10b3939b 9098
dee91e82
DE
9099static hashval_t
9100die_hash (const void *item)
10b3939b 9101{
9a3c8263 9102 const struct die_info *die = (const struct die_info *) item;
6502dd73 9103
9c541725 9104 return to_underlying (die->sect_off);
dee91e82 9105}
63d06c5c 9106
dee91e82
DE
9107/* Trivial comparison function for die_info structures: two DIEs
9108 are equal if they have the same offset. */
98bfdba5 9109
dee91e82
DE
9110static int
9111die_eq (const void *item_lhs, const void *item_rhs)
9112{
9a3c8263
SM
9113 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
9114 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
c906108c 9115
9c541725 9116 return die_lhs->sect_off == die_rhs->sect_off;
dee91e82 9117}
c906108c 9118
c0ab21c2 9119/* Load the DIEs associated with PER_CU into memory. */
c906108c 9120
dee91e82 9121static void
ab432490
SM
9122load_full_comp_unit (dwarf2_per_cu_data *this_cu,
9123 dwarf2_per_objfile *per_objfile,
c0ab21c2
TT
9124 bool skip_partial,
9125 enum language pretend_language)
dee91e82 9126{
c0ab21c2
TT
9127 gdb_assert (! this_cu->is_debug_types);
9128
ab432490 9129 cutu_reader reader (this_cu, per_objfile, NULL, 1, skip_partial);
c0ab21c2
TT
9130 if (reader.dummy_p)
9131 return;
9132
9133 struct dwarf2_cu *cu = reader.cu;
9134 const gdb_byte *info_ptr = reader.info_ptr;
6caca83c 9135
dee91e82
DE
9136 gdb_assert (cu->die_hash == NULL);
9137 cu->die_hash =
9138 htab_create_alloc_ex (cu->header.length / 12,
9139 die_hash,
9140 die_eq,
9141 NULL,
9142 &cu->comp_unit_obstack,
9143 hashtab_obstack_allocate,
9144 dummy_obstack_deallocate);
e142c38c 9145
3e225074 9146 if (reader.comp_unit_die->has_children)
c0ab21c2
TT
9147 reader.comp_unit_die->child
9148 = read_die_and_siblings (&reader, reader.info_ptr,
9149 &info_ptr, reader.comp_unit_die);
9150 cu->dies = reader.comp_unit_die;
dee91e82 9151 /* comp_unit_die is not stored in die_hash, no need. */
10b3939b
DJ
9152
9153 /* We try not to read any attributes in this function, because not
9cdd5dbd 9154 all CUs needed for references have been loaded yet, and symbol
10b3939b 9155 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
9156 or we won't be able to build types correctly.
9157 Similarly, if we do not read the producer, we can not apply
9158 producer-specific interpretation. */
c0ab21c2 9159 prepare_one_comp_unit (cu, cu->dies, pretend_language);
6751ebae
TT
9160
9161 reader.keep ();
10b3939b
DJ
9162}
9163
3da10d80
KS
9164/* Add a DIE to the delayed physname list. */
9165
9166static void
9167add_to_method_list (struct type *type, int fnfield_index, int index,
9168 const char *name, struct die_info *die,
9169 struct dwarf2_cu *cu)
9170{
9171 struct delayed_method_info mi;
9172 mi.type = type;
9173 mi.fnfield_index = fnfield_index;
9174 mi.index = index;
9175 mi.name = name;
9176 mi.die = die;
c89b44cd 9177 cu->method_list.push_back (mi);
3da10d80
KS
9178}
9179
3693fdb3
PA
9180/* Check whether [PHYSNAME, PHYSNAME+LEN) ends with a modifier like
9181 "const" / "volatile". If so, decrements LEN by the length of the
9182 modifier and return true. Otherwise return false. */
9183
9184template<size_t N>
9185static bool
9186check_modifier (const char *physname, size_t &len, const char (&mod)[N])
9187{
9188 size_t mod_len = sizeof (mod) - 1;
9189 if (len > mod_len && startswith (physname + (len - mod_len), mod))
9190 {
9191 len -= mod_len;
9192 return true;
9193 }
9194 return false;
9195}
9196
3da10d80
KS
9197/* Compute the physnames of any methods on the CU's method list.
9198
9199 The computation of method physnames is delayed in order to avoid the
9200 (bad) condition that one of the method's formal parameters is of an as yet
9201 incomplete type. */
9202
9203static void
9204compute_delayed_physnames (struct dwarf2_cu *cu)
9205{
3693fdb3 9206 /* Only C++ delays computing physnames. */
c89b44cd 9207 if (cu->method_list.empty ())
3693fdb3
PA
9208 return;
9209 gdb_assert (cu->language == language_cplus);
9210
52941706 9211 for (const delayed_method_info &mi : cu->method_list)
3da10d80 9212 {
1d06ead6 9213 const char *physname;
3da10d80 9214 struct fn_fieldlist *fn_flp
c89b44cd
TT
9215 = &TYPE_FN_FIELDLIST (mi.type, mi.fnfield_index);
9216 physname = dwarf2_physname (mi.name, mi.die, cu);
9217 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi.index)
005e54bb 9218 = physname ? physname : "";
3693fdb3
PA
9219
9220 /* Since there's no tag to indicate whether a method is a
9221 const/volatile overload, extract that information out of the
9222 demangled name. */
9223 if (physname != NULL)
9224 {
9225 size_t len = strlen (physname);
9226
9227 while (1)
9228 {
9229 if (physname[len] == ')') /* shortcut */
9230 break;
9231 else if (check_modifier (physname, len, " const"))
c89b44cd 9232 TYPE_FN_FIELD_CONST (fn_flp->fn_fields, mi.index) = 1;
3693fdb3 9233 else if (check_modifier (physname, len, " volatile"))
c89b44cd 9234 TYPE_FN_FIELD_VOLATILE (fn_flp->fn_fields, mi.index) = 1;
3693fdb3
PA
9235 else
9236 break;
9237 }
9238 }
3da10d80 9239 }
c89b44cd
TT
9240
9241 /* The list is no longer needed. */
9242 cu->method_list.clear ();
3da10d80
KS
9243}
9244
a766d390
DE
9245/* Go objects should be embedded in a DW_TAG_module DIE,
9246 and it's not clear if/how imported objects will appear.
9247 To keep Go support simple until that's worked out,
9248 go back through what we've read and create something usable.
9249 We could do this while processing each DIE, and feels kinda cleaner,
9250 but that way is more invasive.
9251 This is to, for example, allow the user to type "p var" or "b main"
9252 without having to specify the package name, and allow lookups
9253 of module.object to work in contexts that use the expression
9254 parser. */
9255
9256static void
9257fixup_go_packaging (struct dwarf2_cu *cu)
9258{
421d1616 9259 gdb::unique_xmalloc_ptr<char> package_name;
a766d390
DE
9260 struct pending *list;
9261 int i;
9262
c24bdb02 9263 for (list = *cu->get_builder ()->get_global_symbols ();
804d2729
TT
9264 list != NULL;
9265 list = list->next)
a766d390
DE
9266 {
9267 for (i = 0; i < list->nsyms; ++i)
9268 {
9269 struct symbol *sym = list->symbol[i];
9270
c1b5c1eb 9271 if (sym->language () == language_go
a766d390
DE
9272 && SYMBOL_CLASS (sym) == LOC_BLOCK)
9273 {
421d1616
TT
9274 gdb::unique_xmalloc_ptr<char> this_package_name
9275 (go_symbol_package_name (sym));
a766d390
DE
9276
9277 if (this_package_name == NULL)
9278 continue;
9279 if (package_name == NULL)
421d1616 9280 package_name = std::move (this_package_name);
a766d390
DE
9281 else
9282 {
5e22e966 9283 struct objfile *objfile = cu->per_objfile->objfile;
421d1616 9284 if (strcmp (package_name.get (), this_package_name.get ()) != 0)
b98664d3 9285 complaint (_("Symtab %s has objects from two different Go packages: %s and %s"),
08be3fe3
DE
9286 (symbol_symtab (sym) != NULL
9287 ? symtab_to_filename_for_display
9288 (symbol_symtab (sym))
e3b94546 9289 : objfile_name (objfile)),
421d1616 9290 this_package_name.get (), package_name.get ());
a766d390
DE
9291 }
9292 }
9293 }
9294 }
9295
9296 if (package_name != NULL)
9297 {
5e22e966 9298 struct objfile *objfile = cu->per_objfile->objfile;
be1e3d3e 9299 const char *saved_package_name = objfile->intern (package_name.get ());
19f392bc
UW
9300 struct type *type = init_type (objfile, TYPE_CODE_MODULE, 0,
9301 saved_package_name);
a766d390
DE
9302 struct symbol *sym;
9303
8c14c3a3 9304 sym = new (&objfile->objfile_obstack) symbol;
d3ecddab 9305 sym->set_language (language_go, &objfile->objfile_obstack);
4d4eaa30 9306 sym->compute_and_set_names (saved_package_name, false, objfile->per_bfd);
a766d390
DE
9307 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
9308 e.g., "main" finds the "main" module and not C's main(). */
9309 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
f1e6e072 9310 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
a766d390
DE
9311 SYMBOL_TYPE (sym) = type;
9312
c24bdb02 9313 add_symbol_to_list (sym, cu->get_builder ()->get_global_symbols ());
a766d390
DE
9314 }
9315}
9316
c9317f21
TT
9317/* Allocate a fully-qualified name consisting of the two parts on the
9318 obstack. */
9319
9320static const char *
9321rust_fully_qualify (struct obstack *obstack, const char *p1, const char *p2)
9322{
9323 return obconcat (obstack, p1, "::", p2, (char *) NULL);
9324}
9325
9c6a1327
TT
9326/* A helper that allocates a variant part to attach to a Rust enum
9327 type. OBSTACK is where the results should be allocated. TYPE is
9328 the type we're processing. DISCRIMINANT_INDEX is the index of the
9329 discriminant. It must be the index of one of the fields of TYPE.
9330 DEFAULT_INDEX is the index of the default field; or -1 if there is
9331 no default. RANGES is indexed by "effective" field number (the
9332 field index, but omitting the discriminant and default fields) and
9333 must hold the discriminant values used by the variants. Note that
9334 RANGES must have a lifetime at least as long as OBSTACK -- either
9335 already allocated on it, or static. */
c9317f21 9336
9c6a1327
TT
9337static void
9338alloc_rust_variant (struct obstack *obstack, struct type *type,
9339 int discriminant_index, int default_index,
9340 gdb::array_view<discriminant_range> ranges)
9341{
9342 /* When DISCRIMINANT_INDEX == -1, we have a univariant enum. Those
9343 must be handled by the caller. */
9344 gdb_assert (discriminant_index >= 0
1f704f76 9345 && discriminant_index < type->num_fields ());
c9317f21 9346 gdb_assert (default_index == -1
1f704f76 9347 || (default_index >= 0 && default_index < type->num_fields ()));
c9317f21 9348
9c6a1327 9349 /* We have one variant for each non-discriminant field. */
1f704f76 9350 int n_variants = type->num_fields () - 1;
c9317f21 9351
9c6a1327
TT
9352 variant *variants = new (obstack) variant[n_variants];
9353 int var_idx = 0;
9354 int range_idx = 0;
1f704f76 9355 for (int i = 0; i < type->num_fields (); ++i)
9c6a1327
TT
9356 {
9357 if (i == discriminant_index)
9358 continue;
c9317f21 9359
9c6a1327
TT
9360 variants[var_idx].first_field = i;
9361 variants[var_idx].last_field = i + 1;
9362
9363 /* The default field does not need a range, but other fields do.
9364 We skipped the discriminant above. */
9365 if (i != default_index)
9366 {
9367 variants[var_idx].discriminants = ranges.slice (range_idx, 1);
9368 ++range_idx;
9369 }
c9317f21 9370
9c6a1327
TT
9371 ++var_idx;
9372 }
9373
9374 gdb_assert (range_idx == ranges.size ());
9375 gdb_assert (var_idx == n_variants);
9376
9377 variant_part *part = new (obstack) variant_part;
9378 part->discriminant_index = discriminant_index;
9379 part->is_unsigned = TYPE_UNSIGNED (TYPE_FIELD_TYPE (type,
9380 discriminant_index));
9381 part->variants = gdb::array_view<variant> (variants, n_variants);
9382
9383 void *storage = obstack_alloc (obstack, sizeof (gdb::array_view<variant_part>));
9384 gdb::array_view<variant_part> *prop_value
9385 = new (storage) gdb::array_view<variant_part> (part, 1);
c9317f21 9386
9c6a1327
TT
9387 struct dynamic_prop prop;
9388 prop.kind = PROP_VARIANT_PARTS;
9389 prop.data.variant_parts = prop_value;
9390
5c54719c 9391 type->add_dyn_prop (DYN_PROP_VARIANT_PARTS, prop);
c9317f21
TT
9392}
9393
9394/* Some versions of rustc emitted enums in an unusual way.
9395
9396 Ordinary enums were emitted as unions. The first element of each
9397 structure in the union was named "RUST$ENUM$DISR". This element
9398 held the discriminant.
9399
9400 These versions of Rust also implemented the "non-zero"
9401 optimization. When the enum had two values, and one is empty and
9402 the other holds a pointer that cannot be zero, the pointer is used
9403 as the discriminant, with a zero value meaning the empty variant.
9404 Here, the union's first member is of the form
9405 RUST$ENCODED$ENUM$<fieldno>$<fieldno>$...$<variantname>
9406 where the fieldnos are the indices of the fields that should be
9407 traversed in order to find the field (which may be several fields deep)
9408 and the variantname is the name of the variant of the case when the
9409 field is zero.
9410
9411 This function recognizes whether TYPE is of one of these forms,
9412 and, if so, smashes it to be a variant type. */
9413
9414static void
9415quirk_rust_enum (struct type *type, struct objfile *objfile)
9416{
78134374 9417 gdb_assert (type->code () == TYPE_CODE_UNION);
c9317f21
TT
9418
9419 /* We don't need to deal with empty enums. */
1f704f76 9420 if (type->num_fields () == 0)
c9317f21
TT
9421 return;
9422
9423#define RUST_ENUM_PREFIX "RUST$ENCODED$ENUM$"
1f704f76 9424 if (type->num_fields () == 1
c9317f21
TT
9425 && startswith (TYPE_FIELD_NAME (type, 0), RUST_ENUM_PREFIX))
9426 {
9427 const char *name = TYPE_FIELD_NAME (type, 0) + strlen (RUST_ENUM_PREFIX);
9428
9429 /* Decode the field name to find the offset of the
9430 discriminant. */
9431 ULONGEST bit_offset = 0;
9432 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
9433 while (name[0] >= '0' && name[0] <= '9')
9434 {
9435 char *tail;
9436 unsigned long index = strtoul (name, &tail, 10);
9437 name = tail;
9438 if (*name != '$'
1f704f76 9439 || index >= field_type->num_fields ()
c9317f21
TT
9440 || (TYPE_FIELD_LOC_KIND (field_type, index)
9441 != FIELD_LOC_KIND_BITPOS))
9442 {
b98664d3 9443 complaint (_("Could not parse Rust enum encoding string \"%s\""
c9317f21
TT
9444 "[in module %s]"),
9445 TYPE_FIELD_NAME (type, 0),
9446 objfile_name (objfile));
9447 return;
9448 }
9449 ++name;
9450
9451 bit_offset += TYPE_FIELD_BITPOS (field_type, index);
9452 field_type = TYPE_FIELD_TYPE (field_type, index);
9453 }
9454
9c6a1327
TT
9455 /* Smash this type to be a structure type. We have to do this
9456 because the type has already been recorded. */
67607e24 9457 type->set_code (TYPE_CODE_STRUCT);
5e33d5f4 9458 type->set_num_fields (3);
9c6a1327 9459 /* Save the field we care about. */
ceacbf6e 9460 struct field saved_field = type->field (0);
3cabb6b0
SM
9461 type->set_fields
9462 ((struct field *) TYPE_ZALLOC (type, 3 * sizeof (struct field)));
c9317f21 9463
9c6a1327
TT
9464 /* Put the discriminant at index 0. */
9465 TYPE_FIELD_TYPE (type, 0) = field_type;
9466 TYPE_FIELD_ARTIFICIAL (type, 0) = 1;
9467 TYPE_FIELD_NAME (type, 0) = "<<discriminant>>";
ceacbf6e 9468 SET_FIELD_BITPOS (type->field (0), bit_offset);
c9317f21
TT
9469
9470 /* The order of fields doesn't really matter, so put the real
9471 field at index 1 and the data-less field at index 2. */
ceacbf6e 9472 type->field (1) = saved_field;
9c6a1327 9473 TYPE_FIELD_NAME (type, 1)
7d93a1e0 9474 = rust_last_path_segment (TYPE_FIELD_TYPE (type, 1)->name ());
d0e39ea2 9475 TYPE_FIELD_TYPE (type, 1)->set_name
7d93a1e0 9476 (rust_fully_qualify (&objfile->objfile_obstack, type->name (),
d0e39ea2 9477 TYPE_FIELD_NAME (type, 1)));
c9317f21
TT
9478
9479 const char *dataless_name
7d93a1e0 9480 = rust_fully_qualify (&objfile->objfile_obstack, type->name (),
c9317f21
TT
9481 name);
9482 struct type *dataless_type = init_type (objfile, TYPE_CODE_VOID, 0,
9483 dataless_name);
9c6a1327 9484 TYPE_FIELD_TYPE (type, 2) = dataless_type;
c9317f21
TT
9485 /* NAME points into the original discriminant name, which
9486 already has the correct lifetime. */
9c6a1327 9487 TYPE_FIELD_NAME (type, 2) = name;
ceacbf6e 9488 SET_FIELD_BITPOS (type->field (2), 0);
c9317f21 9489
9c6a1327
TT
9490 /* Indicate that this is a variant type. */
9491 static discriminant_range ranges[1] = { { 0, 0 } };
9492 alloc_rust_variant (&objfile->objfile_obstack, type, 0, 1, ranges);
c9317f21 9493 }
77c2dba3
TT
9494 /* A union with a single anonymous field is probably an old-style
9495 univariant enum. */
1f704f76 9496 else if (type->num_fields () == 1 && streq (TYPE_FIELD_NAME (type, 0), ""))
c9317f21 9497 {
c9317f21
TT
9498 /* Smash this type to be a structure type. We have to do this
9499 because the type has already been recorded. */
67607e24 9500 type->set_code (TYPE_CODE_STRUCT);
c9317f21 9501
9c6a1327 9502 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
c9317f21 9503 const char *variant_name
7d93a1e0 9504 = rust_last_path_segment (field_type->name ());
9c6a1327 9505 TYPE_FIELD_NAME (type, 0) = variant_name;
d0e39ea2
SM
9506 field_type->set_name
9507 (rust_fully_qualify (&objfile->objfile_obstack,
7d93a1e0 9508 type->name (), variant_name));
c9317f21
TT
9509 }
9510 else
9511 {
9512 struct type *disr_type = nullptr;
1f704f76 9513 for (int i = 0; i < type->num_fields (); ++i)
c9317f21
TT
9514 {
9515 disr_type = TYPE_FIELD_TYPE (type, i);
9516
78134374 9517 if (disr_type->code () != TYPE_CODE_STRUCT)
a037790e
TT
9518 {
9519 /* All fields of a true enum will be structs. */
9520 return;
9521 }
1f704f76 9522 else if (disr_type->num_fields () == 0)
c9317f21
TT
9523 {
9524 /* Could be data-less variant, so keep going. */
a037790e 9525 disr_type = nullptr;
c9317f21
TT
9526 }
9527 else if (strcmp (TYPE_FIELD_NAME (disr_type, 0),
9528 "RUST$ENUM$DISR") != 0)
9529 {
9530 /* Not a Rust enum. */
9531 return;
9532 }
9533 else
9534 {
9535 /* Found one. */
9536 break;
9537 }
9538 }
9539
9540 /* If we got here without a discriminant, then it's probably
9541 just a union. */
9542 if (disr_type == nullptr)
9543 return;
9544
9545 /* Smash this type to be a structure type. We have to do this
9546 because the type has already been recorded. */
67607e24 9547 type->set_code (TYPE_CODE_STRUCT);
c9317f21 9548
9c6a1327 9549 /* Make space for the discriminant field. */
ceacbf6e 9550 struct field *disr_field = &disr_type->field (0);
9c6a1327 9551 field *new_fields
1f704f76 9552 = (struct field *) TYPE_ZALLOC (type, ((type->num_fields () + 1)
9c6a1327 9553 * sizeof (struct field)));
80fc5e77 9554 memcpy (new_fields + 1, type->fields (),
1f704f76 9555 type->num_fields () * sizeof (struct field));
3cabb6b0 9556 type->set_fields (new_fields);
1f704f76 9557 type->set_num_fields (type->num_fields () + 1);
c9317f21
TT
9558
9559 /* Install the discriminant at index 0 in the union. */
ceacbf6e 9560 type->field (0) = *disr_field;
9c6a1327
TT
9561 TYPE_FIELD_ARTIFICIAL (type, 0) = 1;
9562 TYPE_FIELD_NAME (type, 0) = "<<discriminant>>";
c9317f21
TT
9563
9564 /* We need a way to find the correct discriminant given a
9565 variant name. For convenience we build a map here. */
9566 struct type *enum_type = FIELD_TYPE (*disr_field);
9567 std::unordered_map<std::string, ULONGEST> discriminant_map;
1f704f76 9568 for (int i = 0; i < enum_type->num_fields (); ++i)
c9317f21
TT
9569 {
9570 if (TYPE_FIELD_LOC_KIND (enum_type, i) == FIELD_LOC_KIND_ENUMVAL)
9571 {
9572 const char *name
9573 = rust_last_path_segment (TYPE_FIELD_NAME (enum_type, i));
9574 discriminant_map[name] = TYPE_FIELD_ENUMVAL (enum_type, i);
9575 }
9576 }
9577
1f704f76 9578 int n_fields = type->num_fields ();
9c6a1327
TT
9579 /* We don't need a range entry for the discriminant, but we do
9580 need one for every other field, as there is no default
9581 variant. */
9582 discriminant_range *ranges = XOBNEWVEC (&objfile->objfile_obstack,
9583 discriminant_range,
9584 n_fields - 1);
c9317f21
TT
9585 /* Skip the discriminant here. */
9586 for (int i = 1; i < n_fields; ++i)
9587 {
9588 /* Find the final word in the name of this variant's type.
9589 That name can be used to look up the correct
9590 discriminant. */
9591 const char *variant_name
7d93a1e0 9592 = rust_last_path_segment (TYPE_FIELD_TYPE (type, i)->name ());
c9317f21
TT
9593
9594 auto iter = discriminant_map.find (variant_name);
9595 if (iter != discriminant_map.end ())
9c6a1327
TT
9596 {
9597 ranges[i].low = iter->second;
9598 ranges[i].high = iter->second;
9599 }
c9317f21 9600
bedda9ac 9601 /* Remove the discriminant field, if it exists. */
9c6a1327 9602 struct type *sub_type = TYPE_FIELD_TYPE (type, i);
1f704f76 9603 if (sub_type->num_fields () > 0)
bedda9ac 9604 {
5e33d5f4 9605 sub_type->set_num_fields (sub_type->num_fields () - 1);
3cabb6b0 9606 sub_type->set_fields (sub_type->fields () + 1);
bedda9ac 9607 }
9c6a1327 9608 TYPE_FIELD_NAME (type, i) = variant_name;
d0e39ea2
SM
9609 sub_type->set_name
9610 (rust_fully_qualify (&objfile->objfile_obstack,
7d93a1e0 9611 type->name (), variant_name));
c9317f21 9612 }
9c6a1327
TT
9613
9614 /* Indicate that this is a variant type. */
9615 alloc_rust_variant (&objfile->objfile_obstack, type, 0, 1,
9616 gdb::array_view<discriminant_range> (ranges,
9617 n_fields - 1));
c9317f21
TT
9618 }
9619}
9620
9621/* Rewrite some Rust unions to be structures with variants parts. */
9622
9623static void
9624rust_union_quirks (struct dwarf2_cu *cu)
9625{
9626 gdb_assert (cu->language == language_rust);
52941706 9627 for (type *type_ : cu->rust_unions)
5e22e966 9628 quirk_rust_enum (type_, cu->per_objfile->objfile);
2d79090e
TT
9629 /* We don't need this any more. */
9630 cu->rust_unions.clear ();
c9317f21
TT
9631}
9632
95554aad
TT
9633/* A helper function for computing the list of all symbol tables
9634 included by PER_CU. */
9635
9636static void
4c39bc03 9637recursively_compute_inclusions (std::vector<compunit_symtab *> *result,
ec94af83 9638 htab_t all_children, htab_t all_type_symtabs,
43182c09
SM
9639 dwarf2_per_cu_data *per_cu,
9640 dwarf2_per_objfile *per_objfile,
43f3e411 9641 struct compunit_symtab *immediate_parent)
95554aad 9642{
af758d11 9643 void **slot = htab_find_slot (all_children, per_cu, INSERT);
95554aad
TT
9644 if (*slot != NULL)
9645 {
9646 /* This inclusion and its children have been processed. */
9647 return;
9648 }
9649
9650 *slot = per_cu;
af758d11 9651
95554aad 9652 /* Only add a CU if it has a symbol table. */
43182c09 9653 compunit_symtab *cust = per_objfile->get_symtab (per_cu);
43f3e411 9654 if (cust != NULL)
ec94af83
DE
9655 {
9656 /* If this is a type unit only add its symbol table if we haven't
9657 seen it yet (type unit per_cu's can share symtabs). */
9658 if (per_cu->is_debug_types)
9659 {
43f3e411 9660 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
ec94af83
DE
9661 if (*slot == NULL)
9662 {
43f3e411 9663 *slot = cust;
4c39bc03 9664 result->push_back (cust);
43f3e411
DE
9665 if (cust->user == NULL)
9666 cust->user = immediate_parent;
ec94af83
DE
9667 }
9668 }
9669 else
f9125b6c 9670 {
4c39bc03 9671 result->push_back (cust);
43f3e411
DE
9672 if (cust->user == NULL)
9673 cust->user = immediate_parent;
f9125b6c 9674 }
ec94af83 9675 }
95554aad 9676
ae640021
AB
9677 if (!per_cu->imported_symtabs_empty ())
9678 for (dwarf2_per_cu_data *ptr : *per_cu->imported_symtabs)
9679 {
9680 recursively_compute_inclusions (result, all_children,
43182c09
SM
9681 all_type_symtabs, ptr, per_objfile,
9682 cust);
ae640021 9683 }
95554aad
TT
9684}
9685
43f3e411 9686/* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
95554aad
TT
9687 PER_CU. */
9688
9689static void
43182c09
SM
9690compute_compunit_symtab_includes (dwarf2_per_cu_data *per_cu,
9691 dwarf2_per_objfile *per_objfile)
95554aad 9692{
f4dc4d17
DE
9693 gdb_assert (! per_cu->is_debug_types);
9694
ae640021 9695 if (!per_cu->imported_symtabs_empty ())
95554aad 9696 {
ae640021 9697 int len;
4c39bc03 9698 std::vector<compunit_symtab *> result_symtabs;
ec94af83 9699 htab_t all_children, all_type_symtabs;
43182c09 9700 compunit_symtab *cust = per_objfile->get_symtab (per_cu);
95554aad
TT
9701
9702 /* If we don't have a symtab, we can just skip this case. */
43f3e411 9703 if (cust == NULL)
95554aad
TT
9704 return;
9705
9706 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
9707 NULL, xcalloc, xfree);
ec94af83
DE
9708 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
9709 NULL, xcalloc, xfree);
95554aad 9710
ae640021 9711 for (dwarf2_per_cu_data *ptr : *per_cu->imported_symtabs)
ec94af83
DE
9712 {
9713 recursively_compute_inclusions (&result_symtabs, all_children,
43182c09
SM
9714 all_type_symtabs, ptr, per_objfile,
9715 cust);
ec94af83 9716 }
95554aad 9717
ec94af83 9718 /* Now we have a transitive closure of all the included symtabs. */
4c39bc03 9719 len = result_symtabs.size ();
43f3e411 9720 cust->includes
ed2dc618 9721 = XOBNEWVEC (&per_cu->dwarf2_per_objfile->objfile->objfile_obstack,
8d749320 9722 struct compunit_symtab *, len + 1);
4c39bc03
TT
9723 memcpy (cust->includes, result_symtabs.data (),
9724 len * sizeof (compunit_symtab *));
43f3e411 9725 cust->includes[len] = NULL;
95554aad 9726
95554aad 9727 htab_delete (all_children);
ec94af83 9728 htab_delete (all_type_symtabs);
95554aad
TT
9729 }
9730}
9731
9732/* Compute the 'includes' field for the symtabs of all the CUs we just
9733 read. */
9734
9735static void
ed2dc618 9736process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 9737{
5989a64e 9738 for (dwarf2_per_cu_data *iter : dwarf2_per_objfile->per_bfd->just_read_cus)
f4dc4d17
DE
9739 {
9740 if (! iter->is_debug_types)
43182c09 9741 compute_compunit_symtab_includes (iter, dwarf2_per_objfile);
f4dc4d17 9742 }
95554aad 9743
5989a64e 9744 dwarf2_per_objfile->per_bfd->just_read_cus.clear ();
95554aad
TT
9745}
9746
9cdd5dbd 9747/* Generate full symbol information for PER_CU, whose DIEs have
10b3939b
DJ
9748 already been loaded into memory. */
9749
9750static void
47b14e86
SM
9751process_full_comp_unit (dwarf2_per_cu_data *per_cu,
9752 dwarf2_per_objfile *dwarf2_per_objfile,
95554aad 9753 enum language pretend_language)
10b3939b 9754{
10b3939b 9755 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618 9756 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 9757 struct gdbarch *gdbarch = objfile->arch ();
10b3939b 9758 CORE_ADDR lowpc, highpc;
43f3e411 9759 struct compunit_symtab *cust;
10b3939b 9760 CORE_ADDR baseaddr;
4359dff1 9761 struct block *static_block;
3e29f34a 9762 CORE_ADDR addr;
10b3939b 9763
b3b3bada 9764 baseaddr = objfile->text_section_offset ();
10b3939b 9765
c89b44cd
TT
9766 /* Clear the list here in case something was left over. */
9767 cu->method_list.clear ();
10b3939b 9768
95554aad
TT
9769 cu->language = pretend_language;
9770 cu->language_defn = language_def (cu->language);
9771
c906108c 9772 /* Do line number decoding in read_file_scope () */
10b3939b 9773 process_die (cu->dies, cu);
c906108c 9774
a766d390
DE
9775 /* For now fudge the Go package. */
9776 if (cu->language == language_go)
9777 fixup_go_packaging (cu);
9778
5f48f8f3 9779 /* Now that we have processed all the DIEs in the CU, all the types
3da10d80
KS
9780 should be complete, and it should now be safe to compute all of the
9781 physnames. */
9782 compute_delayed_physnames (cu);
3da10d80 9783
c9317f21
TT
9784 if (cu->language == language_rust)
9785 rust_union_quirks (cu);
9786
fae299cd
DC
9787 /* Some compilers don't define a DW_AT_high_pc attribute for the
9788 compilation unit. If the DW_AT_high_pc is missing, synthesize
9789 it, by scanning the DIE's below the compilation unit. */
10b3939b 9790 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 9791
3e29f34a 9792 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c24bdb02 9793 static_block = cu->get_builder ()->end_symtab_get_static_block (addr, 0, 1);
4359dff1
JK
9794
9795 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
9796 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
9797 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
9798 addrmap to help ensure it has an accurate map of pc values belonging to
9799 this comp unit. */
9800 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
9801
c24bdb02 9802 cust = cu->get_builder ()->end_symtab_from_static_block (static_block,
804d2729
TT
9803 SECT_OFF_TEXT (objfile),
9804 0);
c906108c 9805
43f3e411 9806 if (cust != NULL)
c906108c 9807 {
df15bd07 9808 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
4632c0d0 9809
8be455d7
JK
9810 /* Set symtab language to language from DW_AT_language. If the
9811 compilation is from a C file generated by language preprocessors, do
9812 not set the language if it was already deduced by start_subfile. */
43f3e411 9813 if (!(cu->language == language_c
40e3ad0e 9814 && COMPUNIT_FILETABS (cust)->language != language_unknown))
43f3e411 9815 COMPUNIT_FILETABS (cust)->language = cu->language;
8be455d7
JK
9816
9817 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
9818 produce DW_AT_location with location lists but it can be possibly
ab260dad
JK
9819 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
9820 there were bugs in prologue debug info, fixed later in GCC-4.5
9821 by "unwind info for epilogues" patch (which is not directly related).
8be455d7
JK
9822
9823 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
9824 needed, it would be wrong due to missing DW_AT_producer there.
9825
9826 Still one can confuse GDB by using non-standard GCC compilation
9827 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
5f48f8f3 9828 */
ab260dad 9829 if (cu->has_loclist && gcc_4_minor >= 5)
43f3e411 9830 cust->locations_valid = 1;
e0d00bc7
JK
9831
9832 if (gcc_4_minor >= 5)
43f3e411 9833 cust->epilogue_unwind_valid = 1;
96408a79 9834
43f3e411 9835 cust->call_site_htab = cu->call_site_htab;
c906108c 9836 }
9291a0cd 9837
af758d11 9838 dwarf2_per_objfile->set_symtab (per_cu, cust);
c906108c 9839
95554aad 9840 /* Push it for inclusion processing later. */
5989a64e 9841 dwarf2_per_objfile->per_bfd->just_read_cus.push_back (per_cu);
804d2729
TT
9842
9843 /* Not needed any more. */
c24bdb02 9844 cu->reset_builder ();
f4dc4d17 9845}
45cfd468 9846
f4dc4d17
DE
9847/* Generate full symbol information for type unit PER_CU, whose DIEs have
9848 already been loaded into memory. */
9849
9850static void
47b14e86
SM
9851process_full_type_unit (dwarf2_per_cu_data *per_cu,
9852 dwarf2_per_objfile *dwarf2_per_objfile,
f4dc4d17
DE
9853 enum language pretend_language)
9854{
9855 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618 9856 struct objfile *objfile = dwarf2_per_objfile->objfile;
43f3e411 9857 struct compunit_symtab *cust;
0186c6a7
DE
9858 struct signatured_type *sig_type;
9859
9860 gdb_assert (per_cu->is_debug_types);
9861 sig_type = (struct signatured_type *) per_cu;
f4dc4d17 9862
c89b44cd
TT
9863 /* Clear the list here in case something was left over. */
9864 cu->method_list.clear ();
f4dc4d17 9865
f4dc4d17
DE
9866 cu->language = pretend_language;
9867 cu->language_defn = language_def (cu->language);
9868
9869 /* The symbol tables are set up in read_type_unit_scope. */
9870 process_die (cu->dies, cu);
9871
9872 /* For now fudge the Go package. */
9873 if (cu->language == language_go)
9874 fixup_go_packaging (cu);
9875
5f48f8f3 9876 /* Now that we have processed all the DIEs in the CU, all the types
f4dc4d17
DE
9877 should be complete, and it should now be safe to compute all of the
9878 physnames. */
9879 compute_delayed_physnames (cu);
f4dc4d17 9880
c9317f21
TT
9881 if (cu->language == language_rust)
9882 rust_union_quirks (cu);
9883
f4dc4d17
DE
9884 /* TUs share symbol tables.
9885 If this is the first TU to use this symtab, complete the construction
094b34ac
DE
9886 of it with end_expandable_symtab. Otherwise, complete the addition of
9887 this TU's symbols to the existing symtab. */
43f3e411 9888 if (sig_type->type_unit_group->compunit_symtab == NULL)
45cfd468 9889 {
c24bdb02
KS
9890 buildsym_compunit *builder = cu->get_builder ();
9891 cust = builder->end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
43f3e411 9892 sig_type->type_unit_group->compunit_symtab = cust;
f4dc4d17 9893
43f3e411 9894 if (cust != NULL)
f4dc4d17
DE
9895 {
9896 /* Set symtab language to language from DW_AT_language. If the
9897 compilation is from a C file generated by language preprocessors,
9898 do not set the language if it was already deduced by
9899 start_subfile. */
43f3e411
DE
9900 if (!(cu->language == language_c
9901 && COMPUNIT_FILETABS (cust)->language != language_c))
9902 COMPUNIT_FILETABS (cust)->language = cu->language;
f4dc4d17
DE
9903 }
9904 }
9905 else
9906 {
c24bdb02 9907 cu->get_builder ()->augment_type_symtab ();
43f3e411 9908 cust = sig_type->type_unit_group->compunit_symtab;
f4dc4d17
DE
9909 }
9910
af758d11 9911 dwarf2_per_objfile->set_symtab (per_cu, cust);
804d2729
TT
9912
9913 /* Not needed any more. */
c24bdb02 9914 cu->reset_builder ();
c906108c
SS
9915}
9916
95554aad
TT
9917/* Process an imported unit DIE. */
9918
9919static void
9920process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
9921{
9922 struct attribute *attr;
9923
f4dc4d17
DE
9924 /* For now we don't handle imported units in type units. */
9925 if (cu->per_cu->is_debug_types)
9926 {
9927 error (_("Dwarf Error: DW_TAG_imported_unit is not"
9928 " supported in type units [in module %s]"),
5e22e966 9929 objfile_name (cu->per_objfile->objfile));
f4dc4d17
DE
9930 }
9931
95554aad
TT
9932 attr = dwarf2_attr (die, DW_AT_import, cu);
9933 if (attr != NULL)
9934 {
0826b30a 9935 sect_offset sect_off = attr->get_ref_die_offset ();
9c541725 9936 bool is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
ab432490 9937 dwarf2_per_objfile *per_objfile = cu->per_objfile;
9c541725 9938 dwarf2_per_cu_data *per_cu
ab432490 9939 = dwarf2_find_containing_comp_unit (sect_off, is_dwz, per_objfile);
95554aad 9940
58990295
TV
9941 /* We're importing a C++ compilation unit with tag DW_TAG_compile_unit
9942 into another compilation unit, at root level. Regard this as a hint,
9943 and ignore it. */
9944 if (die->parent && die->parent->parent == NULL
9945 && per_cu->unit_type == DW_UT_compile
9946 && per_cu->lang == language_cplus)
9947 return;
9948
69d751e3 9949 /* If necessary, add it to the queue and load its DIEs. */
95554aad 9950 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
ab432490 9951 load_full_comp_unit (per_cu, per_objfile, false, cu->language);
95554aad 9952
ae640021 9953 cu->per_cu->imported_symtabs_push (per_cu);
95554aad
TT
9954 }
9955}
9956
4c8aa72d
PA
9957/* RAII object that represents a process_die scope: i.e.,
9958 starts/finishes processing a DIE. */
9959class process_die_scope
adde2bff 9960{
4c8aa72d
PA
9961public:
9962 process_die_scope (die_info *die, dwarf2_cu *cu)
9963 : m_die (die), m_cu (cu)
9964 {
9965 /* We should only be processing DIEs not already in process. */
9966 gdb_assert (!m_die->in_process);
9967 m_die->in_process = true;
9968 }
8c3cb9fa 9969
4c8aa72d
PA
9970 ~process_die_scope ()
9971 {
9972 m_die->in_process = false;
9973
9974 /* If we're done processing the DIE for the CU that owns the line
9975 header, we don't need the line header anymore. */
9976 if (m_cu->line_header_die_owner == m_die)
9977 {
9978 delete m_cu->line_header;
9979 m_cu->line_header = NULL;
9980 m_cu->line_header_die_owner = NULL;
9981 }
9982 }
9983
9984private:
9985 die_info *m_die;
9986 dwarf2_cu *m_cu;
9987};
adde2bff 9988
c906108c
SS
9989/* Process a die and its children. */
9990
9991static void
e7c27a73 9992process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 9993{
4c8aa72d 9994 process_die_scope scope (die, cu);
adde2bff 9995
c906108c
SS
9996 switch (die->tag)
9997 {
9998 case DW_TAG_padding:
9999 break;
10000 case DW_TAG_compile_unit:
95554aad 10001 case DW_TAG_partial_unit:
e7c27a73 10002 read_file_scope (die, cu);
c906108c 10003 break;
348e048f
DE
10004 case DW_TAG_type_unit:
10005 read_type_unit_scope (die, cu);
10006 break;
c906108c 10007 case DW_TAG_subprogram:
0a4b0913
AB
10008 /* Nested subprograms in Fortran get a prefix. */
10009 if (cu->language == language_fortran
10010 && die->parent != NULL
10011 && die->parent->tag == DW_TAG_subprogram)
10012 cu->processing_has_namespace_info = true;
10013 /* Fall through. */
c906108c 10014 case DW_TAG_inlined_subroutine:
edb3359d 10015 read_func_scope (die, cu);
c906108c
SS
10016 break;
10017 case DW_TAG_lexical_block:
14898363
L
10018 case DW_TAG_try_block:
10019 case DW_TAG_catch_block:
e7c27a73 10020 read_lexical_block_scope (die, cu);
c906108c 10021 break;
216f72a1 10022 case DW_TAG_call_site:
96408a79
SA
10023 case DW_TAG_GNU_call_site:
10024 read_call_site_scope (die, cu);
10025 break;
c906108c 10026 case DW_TAG_class_type:
680b30c7 10027 case DW_TAG_interface_type:
c906108c
SS
10028 case DW_TAG_structure_type:
10029 case DW_TAG_union_type:
134d01f1 10030 process_structure_scope (die, cu);
c906108c
SS
10031 break;
10032 case DW_TAG_enumeration_type:
134d01f1 10033 process_enumeration_scope (die, cu);
c906108c 10034 break;
134d01f1 10035
f792889a
DJ
10036 /* These dies have a type, but processing them does not create
10037 a symbol or recurse to process the children. Therefore we can
10038 read them on-demand through read_type_die. */
c906108c 10039 case DW_TAG_subroutine_type:
72019c9c 10040 case DW_TAG_set_type:
c906108c 10041 case DW_TAG_array_type:
c906108c 10042 case DW_TAG_pointer_type:
c906108c 10043 case DW_TAG_ptr_to_member_type:
c906108c 10044 case DW_TAG_reference_type:
4297a3f0 10045 case DW_TAG_rvalue_reference_type:
c906108c 10046 case DW_TAG_string_type:
c906108c 10047 break;
134d01f1 10048
c906108c 10049 case DW_TAG_base_type:
a02abb62 10050 case DW_TAG_subrange_type:
cb249c71 10051 case DW_TAG_typedef:
134d01f1
DJ
10052 /* Add a typedef symbol for the type definition, if it has a
10053 DW_AT_name. */
f792889a 10054 new_symbol (die, read_type_die (die, cu), cu);
a02abb62 10055 break;
c906108c 10056 case DW_TAG_common_block:
e7c27a73 10057 read_common_block (die, cu);
c906108c
SS
10058 break;
10059 case DW_TAG_common_inclusion:
10060 break;
d9fa45fe 10061 case DW_TAG_namespace:
9068261f 10062 cu->processing_has_namespace_info = true;
e7c27a73 10063 read_namespace (die, cu);
d9fa45fe 10064 break;
5d7cb8df 10065 case DW_TAG_module:
9068261f 10066 cu->processing_has_namespace_info = true;
5d7cb8df
JK
10067 read_module (die, cu);
10068 break;
d9fa45fe 10069 case DW_TAG_imported_declaration:
9068261f 10070 cu->processing_has_namespace_info = true;
74921315
KS
10071 if (read_namespace_alias (die, cu))
10072 break;
86a73007
TT
10073 /* The declaration is not a global namespace alias. */
10074 /* Fall through. */
d9fa45fe 10075 case DW_TAG_imported_module:
9068261f 10076 cu->processing_has_namespace_info = true;
27aa8d6a
SW
10077 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
10078 || cu->language != language_fortran))
b98664d3 10079 complaint (_("Tag '%s' has unexpected children"),
27aa8d6a
SW
10080 dwarf_tag_name (die->tag));
10081 read_import_statement (die, cu);
d9fa45fe 10082 break;
95554aad
TT
10083
10084 case DW_TAG_imported_unit:
10085 process_imported_unit_die (die, cu);
10086 break;
10087
71a3c369
TT
10088 case DW_TAG_variable:
10089 read_variable (die, cu);
10090 break;
10091
c906108c 10092 default:
e7c27a73 10093 new_symbol (die, NULL, cu);
c906108c
SS
10094 break;
10095 }
10096}
ca69b9e6
DE
10097\f
10098/* DWARF name computation. */
c906108c 10099
94af9270
KS
10100/* A helper function for dwarf2_compute_name which determines whether DIE
10101 needs to have the name of the scope prepended to the name listed in the
10102 die. */
10103
10104static int
10105die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
10106{
1c809c68
TT
10107 struct attribute *attr;
10108
94af9270
KS
10109 switch (die->tag)
10110 {
10111 case DW_TAG_namespace:
10112 case DW_TAG_typedef:
10113 case DW_TAG_class_type:
10114 case DW_TAG_interface_type:
10115 case DW_TAG_structure_type:
10116 case DW_TAG_union_type:
10117 case DW_TAG_enumeration_type:
10118 case DW_TAG_enumerator:
10119 case DW_TAG_subprogram:
08a76f8a 10120 case DW_TAG_inlined_subroutine:
94af9270 10121 case DW_TAG_member:
74921315 10122 case DW_TAG_imported_declaration:
94af9270
KS
10123 return 1;
10124
10125 case DW_TAG_variable:
c2b0a229 10126 case DW_TAG_constant:
94af9270
KS
10127 /* We only need to prefix "globally" visible variables. These include
10128 any variable marked with DW_AT_external or any variable that
10129 lives in a namespace. [Variables in anonymous namespaces
10130 require prefixing, but they are not DW_AT_external.] */
10131
10132 if (dwarf2_attr (die, DW_AT_specification, cu))
10133 {
10134 struct dwarf2_cu *spec_cu = cu;
9a619af0 10135
94af9270
KS
10136 return die_needs_namespace (die_specification (die, &spec_cu),
10137 spec_cu);
10138 }
10139
1c809c68 10140 attr = dwarf2_attr (die, DW_AT_external, cu);
f55ee35c
JK
10141 if (attr == NULL && die->parent->tag != DW_TAG_namespace
10142 && die->parent->tag != DW_TAG_module)
1c809c68
TT
10143 return 0;
10144 /* A variable in a lexical block of some kind does not need a
10145 namespace, even though in C++ such variables may be external
10146 and have a mangled name. */
10147 if (die->parent->tag == DW_TAG_lexical_block
10148 || die->parent->tag == DW_TAG_try_block
1054b214
TT
10149 || die->parent->tag == DW_TAG_catch_block
10150 || die->parent->tag == DW_TAG_subprogram)
1c809c68
TT
10151 return 0;
10152 return 1;
94af9270
KS
10153
10154 default:
10155 return 0;
10156 }
10157}
10158
73b9be8b
KS
10159/* Return the DIE's linkage name attribute, either DW_AT_linkage_name
10160 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10161 defined for the given DIE. */
10162
10163static struct attribute *
10164dw2_linkage_name_attr (struct die_info *die, struct dwarf2_cu *cu)
10165{
10166 struct attribute *attr;
10167
10168 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
10169 if (attr == NULL)
10170 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
10171
10172 return attr;
10173}
10174
10175/* Return the DIE's linkage name as a string, either DW_AT_linkage_name
10176 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10177 defined for the given DIE. */
10178
10179static const char *
10180dw2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
10181{
10182 const char *linkage_name;
10183
10184 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
10185 if (linkage_name == NULL)
10186 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
10187
787de330
TT
10188 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
10189 See https://github.com/rust-lang/rust/issues/32925. */
10190 if (cu->language == language_rust && linkage_name != NULL
10191 && strchr (linkage_name, '{') != NULL)
10192 linkage_name = NULL;
10193
73b9be8b
KS
10194 return linkage_name;
10195}
10196
94af9270 10197/* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
a766d390 10198 compute the physname for the object, which include a method's:
9c37b5ae 10199 - formal parameters (C++),
a766d390 10200 - receiver type (Go),
a766d390
DE
10201
10202 The term "physname" is a bit confusing.
10203 For C++, for example, it is the demangled name.
10204 For Go, for example, it's the mangled name.
94af9270 10205
af6b7be1
JB
10206 For Ada, return the DIE's linkage name rather than the fully qualified
10207 name. PHYSNAME is ignored..
10208
5989a64e 10209 The result is allocated on the objfile->per_bfd's obstack and
45940949 10210 canonicalized. */
94af9270
KS
10211
10212static const char *
15d034d0
TT
10213dwarf2_compute_name (const char *name,
10214 struct die_info *die, struct dwarf2_cu *cu,
94af9270
KS
10215 int physname)
10216{
5e22e966 10217 struct objfile *objfile = cu->per_objfile->objfile;
bb5ed363 10218
94af9270
KS
10219 if (name == NULL)
10220 name = dwarf2_name (die, cu);
10221
2ee7123e
DE
10222 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
10223 but otherwise compute it by typename_concat inside GDB.
10224 FIXME: Actually this is not really true, or at least not always true.
4d4eaa30 10225 It's all very confusing. compute_and_set_names doesn't try to demangle
5e2db402 10226 Fortran names because there is no mangling standard. So new_symbol
2ee7123e
DE
10227 will set the demangled name to the result of dwarf2_full_name, and it is
10228 the demangled name that GDB uses if it exists. */
f55ee35c
JK
10229 if (cu->language == language_ada
10230 || (cu->language == language_fortran && physname))
10231 {
10232 /* For Ada unit, we prefer the linkage name over the name, as
10233 the former contains the exported name, which the user expects
10234 to be able to reference. Ideally, we want the user to be able
10235 to reference this entity using either natural or linkage name,
10236 but we haven't started looking at this enhancement yet. */
73b9be8b 10237 const char *linkage_name = dw2_linkage_name (die, cu);
f55ee35c 10238
2ee7123e
DE
10239 if (linkage_name != NULL)
10240 return linkage_name;
f55ee35c
JK
10241 }
10242
94af9270
KS
10243 /* These are the only languages we know how to qualify names in. */
10244 if (name != NULL
9c37b5ae 10245 && (cu->language == language_cplus
c44af4eb
TT
10246 || cu->language == language_fortran || cu->language == language_d
10247 || cu->language == language_rust))
94af9270
KS
10248 {
10249 if (die_needs_namespace (die, cu))
10250 {
0d5cff50 10251 const char *prefix;
34a68019 10252 const char *canonical_name = NULL;
94af9270 10253
d7e74731
PA
10254 string_file buf;
10255
94af9270 10256 prefix = determine_prefix (die, cu);
94af9270
KS
10257 if (*prefix != '\0')
10258 {
43816ebc
TT
10259 gdb::unique_xmalloc_ptr<char> prefixed_name
10260 (typename_concat (NULL, prefix, name, physname, cu));
9a619af0 10261
43816ebc 10262 buf.puts (prefixed_name.get ());
94af9270
KS
10263 }
10264 else
d7e74731 10265 buf.puts (name);
94af9270 10266
98bfdba5
PA
10267 /* Template parameters may be specified in the DIE's DW_AT_name, or
10268 as children with DW_TAG_template_type_param or
10269 DW_TAG_value_type_param. If the latter, add them to the name
10270 here. If the name already has template parameters, then
10271 skip this step; some versions of GCC emit both, and
10272 it is more efficient to use the pre-computed name.
10273
10274 Something to keep in mind about this process: it is very
10275 unlikely, or in some cases downright impossible, to produce
10276 something that will match the mangled name of a function.
10277 If the definition of the function has the same debug info,
10278 we should be able to match up with it anyway. But fallbacks
10279 using the minimal symbol, for instance to find a method
10280 implemented in a stripped copy of libstdc++, will not work.
10281 If we do not have debug info for the definition, we will have to
10282 match them up some other way.
10283
10284 When we do name matching there is a related problem with function
10285 templates; two instantiated function templates are allowed to
10286 differ only by their return types, which we do not add here. */
10287
10288 if (cu->language == language_cplus && strchr (name, '<') == NULL)
10289 {
10290 struct attribute *attr;
10291 struct die_info *child;
10292 int first = 1;
10293
10294 die->building_fullname = 1;
10295
10296 for (child = die->child; child != NULL; child = child->sibling)
10297 {
10298 struct type *type;
12df843f 10299 LONGEST value;
d521ce57 10300 const gdb_byte *bytes;
98bfdba5
PA
10301 struct dwarf2_locexpr_baton *baton;
10302 struct value *v;
10303
10304 if (child->tag != DW_TAG_template_type_param
10305 && child->tag != DW_TAG_template_value_param)
10306 continue;
10307
10308 if (first)
10309 {
d7e74731 10310 buf.puts ("<");
98bfdba5
PA
10311 first = 0;
10312 }
10313 else
d7e74731 10314 buf.puts (", ");
98bfdba5
PA
10315
10316 attr = dwarf2_attr (child, DW_AT_type, cu);
10317 if (attr == NULL)
10318 {
b98664d3 10319 complaint (_("template parameter missing DW_AT_type"));
d7e74731 10320 buf.puts ("UNKNOWN_TYPE");
98bfdba5
PA
10321 continue;
10322 }
10323 type = die_type (child, cu);
10324
10325 if (child->tag == DW_TAG_template_type_param)
10326 {
c1ec8cea
TT
10327 c_print_type (type, "", &buf, -1, 0, cu->language,
10328 &type_print_raw_options);
98bfdba5
PA
10329 continue;
10330 }
10331
10332 attr = dwarf2_attr (child, DW_AT_const_value, cu);
10333 if (attr == NULL)
10334 {
b98664d3 10335 complaint (_("template parameter missing "
3e43a32a 10336 "DW_AT_const_value"));
d7e74731 10337 buf.puts ("UNKNOWN_VALUE");
98bfdba5
PA
10338 continue;
10339 }
10340
10341 dwarf2_const_value_attr (attr, type, name,
10342 &cu->comp_unit_obstack, cu,
10343 &value, &bytes, &baton);
10344
10345 if (TYPE_NOSIGN (type))
10346 /* GDB prints characters as NUMBER 'CHAR'. If that's
10347 changed, this can use value_print instead. */
d7e74731 10348 c_printchar (value, type, &buf);
98bfdba5
PA
10349 else
10350 {
10351 struct value_print_options opts;
10352
10353 if (baton != NULL)
10354 v = dwarf2_evaluate_loc_desc (type, NULL,
10355 baton->data,
10356 baton->size,
9f47c707
SM
10357 baton->per_cu,
10358 baton->per_objfile);
98bfdba5
PA
10359 else if (bytes != NULL)
10360 {
10361 v = allocate_value (type);
10362 memcpy (value_contents_writeable (v), bytes,
10363 TYPE_LENGTH (type));
10364 }
10365 else
10366 v = value_from_longest (type, value);
10367
3e43a32a
MS
10368 /* Specify decimal so that we do not depend on
10369 the radix. */
98bfdba5
PA
10370 get_formatted_print_options (&opts, 'd');
10371 opts.raw = 1;
d7e74731 10372 value_print (v, &buf, &opts);
98bfdba5 10373 release_value (v);
98bfdba5
PA
10374 }
10375 }
10376
10377 die->building_fullname = 0;
10378
10379 if (!first)
10380 {
10381 /* Close the argument list, with a space if necessary
10382 (nested templates). */
d7e74731
PA
10383 if (!buf.empty () && buf.string ().back () == '>')
10384 buf.puts (" >");
98bfdba5 10385 else
d7e74731 10386 buf.puts (">");
98bfdba5
PA
10387 }
10388 }
10389
9c37b5ae 10390 /* For C++ methods, append formal parameter type
94af9270 10391 information, if PHYSNAME. */
6e70227d 10392
94af9270 10393 if (physname && die->tag == DW_TAG_subprogram
9c37b5ae 10394 && cu->language == language_cplus)
94af9270
KS
10395 {
10396 struct type *type = read_type_die (die, cu);
10397
d7e74731 10398 c_type_print_args (type, &buf, 1, cu->language,
79d43c61 10399 &type_print_raw_options);
94af9270 10400
9c37b5ae 10401 if (cu->language == language_cplus)
94af9270 10402 {
60430eff
DJ
10403 /* Assume that an artificial first parameter is
10404 "this", but do not crash if it is not. RealView
10405 marks unnamed (and thus unused) parameters as
10406 artificial; there is no way to differentiate
10407 the two cases. */
1f704f76 10408 if (type->num_fields () > 0
94af9270 10409 && TYPE_FIELD_ARTIFICIAL (type, 0)
78134374 10410 && TYPE_FIELD_TYPE (type, 0)->code () == TYPE_CODE_PTR
3e43a32a
MS
10411 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
10412 0))))
d7e74731 10413 buf.puts (" const");
94af9270
KS
10414 }
10415 }
10416
d7e74731 10417 const std::string &intermediate_name = buf.string ();
94af9270
KS
10418
10419 if (cu->language == language_cplus)
34a68019 10420 canonical_name
322a8516 10421 = dwarf2_canonicalize_name (intermediate_name.c_str (), cu,
be1e3d3e 10422 objfile);
34a68019
TT
10423
10424 /* If we only computed INTERMEDIATE_NAME, or if
10425 INTERMEDIATE_NAME is already canonical, then we need to
be1e3d3e 10426 intern it. */
322a8516 10427 if (canonical_name == NULL || canonical_name == intermediate_name.c_str ())
be1e3d3e 10428 name = objfile->intern (intermediate_name);
34a68019
TT
10429 else
10430 name = canonical_name;
94af9270
KS
10431 }
10432 }
10433
10434 return name;
10435}
10436
0114d602
DJ
10437/* Return the fully qualified name of DIE, based on its DW_AT_name.
10438 If scope qualifiers are appropriate they will be added. The result
34a68019 10439 will be allocated on the storage_obstack, or NULL if the DIE does
94af9270
KS
10440 not have a name. NAME may either be from a previous call to
10441 dwarf2_name or NULL.
10442
9c37b5ae 10443 The output string will be canonicalized (if C++). */
0114d602
DJ
10444
10445static const char *
15d034d0 10446dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
0114d602 10447{
94af9270
KS
10448 return dwarf2_compute_name (name, die, cu, 0);
10449}
0114d602 10450
94af9270
KS
10451/* Construct a physname for the given DIE in CU. NAME may either be
10452 from a previous call to dwarf2_name or NULL. The result will be
10453 allocated on the objfile_objstack or NULL if the DIE does not have a
10454 name.
0114d602 10455
9c37b5ae 10456 The output string will be canonicalized (if C++). */
0114d602 10457
94af9270 10458static const char *
15d034d0 10459dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
94af9270 10460{
5e22e966 10461 struct objfile *objfile = cu->per_objfile->objfile;
900e11f9 10462 const char *retval, *mangled = NULL, *canon = NULL;
900e11f9
JK
10463 int need_copy = 1;
10464
10465 /* In this case dwarf2_compute_name is just a shortcut not building anything
10466 on its own. */
10467 if (!die_needs_namespace (die, cu))
10468 return dwarf2_compute_name (name, die, cu, 1);
10469
906bb4c5
TT
10470 if (cu->language != language_rust)
10471 mangled = dw2_linkage_name (die, cu);
900e11f9
JK
10472
10473 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
10474 has computed. */
791afaa2 10475 gdb::unique_xmalloc_ptr<char> demangled;
7d45c7c3 10476 if (mangled != NULL)
900e11f9 10477 {
900e11f9 10478
59cc4834
JB
10479 if (language_def (cu->language)->la_store_sym_names_in_linkage_form_p)
10480 {
10481 /* Do nothing (do not demangle the symbol name). */
10482 }
10483 else if (cu->language == language_go)
a766d390 10484 {
5e2db402
TT
10485 /* This is a lie, but we already lie to the caller new_symbol.
10486 new_symbol assumes we return the mangled name.
a766d390 10487 This just undoes that lie until things are cleaned up. */
a766d390
DE
10488 }
10489 else
10490 {
0eb876f5
JB
10491 /* Use DMGL_RET_DROP for C++ template functions to suppress
10492 their return type. It is easier for GDB users to search
10493 for such functions as `name(params)' than `long name(params)'.
10494 In such case the minimal symbol names do not match the full
10495 symbol names but for template functions there is never a need
10496 to look up their definition from their declaration so
10497 the only disadvantage remains the minimal symbol variant
10498 `long name(params)' does not have the proper inferior type. */
791afaa2
TT
10499 demangled.reset (gdb_demangle (mangled,
10500 (DMGL_PARAMS | DMGL_ANSI
10501 | DMGL_RET_DROP)));
a766d390 10502 }
900e11f9 10503 if (demangled)
791afaa2 10504 canon = demangled.get ();
900e11f9
JK
10505 else
10506 {
10507 canon = mangled;
10508 need_copy = 0;
10509 }
10510 }
10511
10512 if (canon == NULL || check_physname)
10513 {
10514 const char *physname = dwarf2_compute_name (name, die, cu, 1);
10515
10516 if (canon != NULL && strcmp (physname, canon) != 0)
10517 {
10518 /* It may not mean a bug in GDB. The compiler could also
10519 compute DW_AT_linkage_name incorrectly. But in such case
10520 GDB would need to be bug-to-bug compatible. */
10521
b98664d3 10522 complaint (_("Computed physname <%s> does not match demangled <%s> "
9d8780f0
SM
10523 "(from linkage <%s>) - DIE at %s [in module %s]"),
10524 physname, canon, mangled, sect_offset_str (die->sect_off),
4262abfb 10525 objfile_name (objfile));
900e11f9
JK
10526
10527 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
10528 is available here - over computed PHYSNAME. It is safer
10529 against both buggy GDB and buggy compilers. */
10530
10531 retval = canon;
10532 }
10533 else
10534 {
10535 retval = physname;
10536 need_copy = 0;
10537 }
10538 }
10539 else
10540 retval = canon;
10541
10542 if (need_copy)
be1e3d3e 10543 retval = objfile->intern (retval);
900e11f9 10544
900e11f9 10545 return retval;
0114d602
DJ
10546}
10547
74921315
KS
10548/* Inspect DIE in CU for a namespace alias. If one exists, record
10549 a new symbol for it.
10550
10551 Returns 1 if a namespace alias was recorded, 0 otherwise. */
10552
10553static int
10554read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
10555{
10556 struct attribute *attr;
10557
10558 /* If the die does not have a name, this is not a namespace
10559 alias. */
10560 attr = dwarf2_attr (die, DW_AT_name, cu);
10561 if (attr != NULL)
10562 {
10563 int num;
10564 struct die_info *d = die;
10565 struct dwarf2_cu *imported_cu = cu;
10566
10567 /* If the compiler has nested DW_AT_imported_declaration DIEs,
10568 keep inspecting DIEs until we hit the underlying import. */
10569#define MAX_NESTED_IMPORTED_DECLARATIONS 100
10570 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
10571 {
10572 attr = dwarf2_attr (d, DW_AT_import, cu);
10573 if (attr == NULL)
10574 break;
10575
10576 d = follow_die_ref (d, attr, &imported_cu);
10577 if (d->tag != DW_TAG_imported_declaration)
10578 break;
10579 }
10580
10581 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
10582 {
b98664d3 10583 complaint (_("DIE at %s has too many recursively imported "
9d8780f0 10584 "declarations"), sect_offset_str (d->sect_off));
74921315
KS
10585 return 0;
10586 }
10587
10588 if (attr != NULL)
10589 {
10590 struct type *type;
0826b30a 10591 sect_offset sect_off = attr->get_ref_die_offset ();
74921315 10592
9c541725 10593 type = get_die_type_at_offset (sect_off, cu->per_cu);
78134374 10594 if (type != NULL && type->code () == TYPE_CODE_NAMESPACE)
74921315
KS
10595 {
10596 /* This declaration is a global namespace alias. Add
10597 a symbol for it whose type is the aliased namespace. */
10598 new_symbol (die, type, cu);
10599 return 1;
10600 }
10601 }
10602 }
10603
10604 return 0;
10605}
10606
22cee43f 10607/* Return the using directives repository (global or local?) to use in the
804d2729 10608 current context for CU.
22cee43f
PMR
10609
10610 For Ada, imported declarations can materialize renamings, which *may* be
10611 global. However it is impossible (for now?) in DWARF to distinguish
10612 "external" imported declarations and "static" ones. As all imported
10613 declarations seem to be static in all other languages, make them all CU-wide
10614 global only in Ada. */
10615
10616static struct using_direct **
804d2729 10617using_directives (struct dwarf2_cu *cu)
22cee43f 10618{
c24bdb02
KS
10619 if (cu->language == language_ada
10620 && cu->get_builder ()->outermost_context_p ())
10621 return cu->get_builder ()->get_global_using_directives ();
22cee43f 10622 else
c24bdb02 10623 return cu->get_builder ()->get_local_using_directives ();
22cee43f
PMR
10624}
10625
27aa8d6a
SW
10626/* Read the import statement specified by the given die and record it. */
10627
10628static void
10629read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
10630{
5e22e966 10631 struct objfile *objfile = cu->per_objfile->objfile;
27aa8d6a 10632 struct attribute *import_attr;
32019081 10633 struct die_info *imported_die, *child_die;
de4affc9 10634 struct dwarf2_cu *imported_cu;
27aa8d6a 10635 const char *imported_name;
794684b6 10636 const char *imported_name_prefix;
13387711
SW
10637 const char *canonical_name;
10638 const char *import_alias;
10639 const char *imported_declaration = NULL;
794684b6 10640 const char *import_prefix;
eb1e02fd 10641 std::vector<const char *> excludes;
13387711 10642
27aa8d6a
SW
10643 import_attr = dwarf2_attr (die, DW_AT_import, cu);
10644 if (import_attr == NULL)
10645 {
b98664d3 10646 complaint (_("Tag '%s' has no DW_AT_import"),
27aa8d6a
SW
10647 dwarf_tag_name (die->tag));
10648 return;
10649 }
10650
de4affc9
CC
10651 imported_cu = cu;
10652 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
10653 imported_name = dwarf2_name (imported_die, imported_cu);
27aa8d6a
SW
10654 if (imported_name == NULL)
10655 {
10656 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
10657
10658 The import in the following code:
10659 namespace A
10660 {
10661 typedef int B;
10662 }
10663
10664 int main ()
10665 {
10666 using A::B;
10667 B b;
10668 return b;
10669 }
10670
10671 ...
10672 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
10673 <52> DW_AT_decl_file : 1
10674 <53> DW_AT_decl_line : 6
10675 <54> DW_AT_import : <0x75>
10676 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
10677 <59> DW_AT_name : B
10678 <5b> DW_AT_decl_file : 1
10679 <5c> DW_AT_decl_line : 2
10680 <5d> DW_AT_type : <0x6e>
10681 ...
10682 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
10683 <76> DW_AT_byte_size : 4
10684 <77> DW_AT_encoding : 5 (signed)
10685
10686 imports the wrong die ( 0x75 instead of 0x58 ).
10687 This case will be ignored until the gcc bug is fixed. */
10688 return;
10689 }
10690
82856980
SW
10691 /* Figure out the local name after import. */
10692 import_alias = dwarf2_name (die, cu);
27aa8d6a 10693
794684b6
SW
10694 /* Figure out where the statement is being imported to. */
10695 import_prefix = determine_prefix (die, cu);
10696
10697 /* Figure out what the scope of the imported die is and prepend it
10698 to the name of the imported die. */
de4affc9 10699 imported_name_prefix = determine_prefix (imported_die, imported_cu);
794684b6 10700
f55ee35c
JK
10701 if (imported_die->tag != DW_TAG_namespace
10702 && imported_die->tag != DW_TAG_module)
794684b6 10703 {
13387711
SW
10704 imported_declaration = imported_name;
10705 canonical_name = imported_name_prefix;
794684b6 10706 }
13387711 10707 else if (strlen (imported_name_prefix) > 0)
12aaed36 10708 canonical_name = obconcat (&objfile->objfile_obstack,
45280282
IB
10709 imported_name_prefix,
10710 (cu->language == language_d ? "." : "::"),
10711 imported_name, (char *) NULL);
13387711
SW
10712 else
10713 canonical_name = imported_name;
794684b6 10714
32019081
JK
10715 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
10716 for (child_die = die->child; child_die && child_die->tag;
436c571c 10717 child_die = child_die->sibling)
32019081
JK
10718 {
10719 /* DWARF-4: A Fortran use statement with a “rename list” may be
10720 represented by an imported module entry with an import attribute
10721 referring to the module and owned entries corresponding to those
10722 entities that are renamed as part of being imported. */
10723
10724 if (child_die->tag != DW_TAG_imported_declaration)
10725 {
b98664d3 10726 complaint (_("child DW_TAG_imported_declaration expected "
9d8780f0
SM
10727 "- DIE at %s [in module %s]"),
10728 sect_offset_str (child_die->sect_off),
10729 objfile_name (objfile));
32019081
JK
10730 continue;
10731 }
10732
10733 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
10734 if (import_attr == NULL)
10735 {
b98664d3 10736 complaint (_("Tag '%s' has no DW_AT_import"),
32019081
JK
10737 dwarf_tag_name (child_die->tag));
10738 continue;
10739 }
10740
10741 imported_cu = cu;
10742 imported_die = follow_die_ref_or_sig (child_die, import_attr,
10743 &imported_cu);
10744 imported_name = dwarf2_name (imported_die, imported_cu);
10745 if (imported_name == NULL)
10746 {
b98664d3 10747 complaint (_("child DW_TAG_imported_declaration has unknown "
9d8780f0
SM
10748 "imported name - DIE at %s [in module %s]"),
10749 sect_offset_str (child_die->sect_off),
10750 objfile_name (objfile));
32019081
JK
10751 continue;
10752 }
10753
eb1e02fd 10754 excludes.push_back (imported_name);
32019081
JK
10755
10756 process_die (child_die, cu);
10757 }
10758
804d2729 10759 add_using_directive (using_directives (cu),
22cee43f
PMR
10760 import_prefix,
10761 canonical_name,
10762 import_alias,
10763 imported_declaration,
10764 excludes,
10765 0,
10766 &objfile->objfile_obstack);
27aa8d6a
SW
10767}
10768
5230b05a
WT
10769/* ICC<14 does not output the required DW_AT_declaration on incomplete
10770 types, but gives them a size of zero. Starting with version 14,
10771 ICC is compatible with GCC. */
10772
9068261f 10773static bool
5230b05a
WT
10774producer_is_icc_lt_14 (struct dwarf2_cu *cu)
10775{
10776 if (!cu->checked_producer)
10777 check_producer (cu);
10778
10779 return cu->producer_is_icc_lt_14;
10780}
10781
eb77c9df
AB
10782/* ICC generates a DW_AT_type for C void functions. This was observed on
10783 ICC 14.0.5.212, and appears to be against the DWARF spec (V5 3.3.2)
10784 which says that void functions should not have a DW_AT_type. */
10785
10786static bool
10787producer_is_icc (struct dwarf2_cu *cu)
10788{
10789 if (!cu->checked_producer)
10790 check_producer (cu);
10791
10792 return cu->producer_is_icc;
10793}
10794
1b80a9fa
JK
10795/* Check for possibly missing DW_AT_comp_dir with relative .debug_line
10796 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
10797 this, it was first present in GCC release 4.3.0. */
10798
9068261f 10799static bool
1b80a9fa
JK
10800producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
10801{
10802 if (!cu->checked_producer)
10803 check_producer (cu);
10804
10805 return cu->producer_is_gcc_lt_4_3;
10806}
10807
d721ba37
PA
10808static file_and_directory
10809find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu)
9291a0cd 10810{
d721ba37
PA
10811 file_and_directory res;
10812
9291a0cd
TT
10813 /* Find the filename. Do not use dwarf2_name here, since the filename
10814 is not a source language identifier. */
d721ba37
PA
10815 res.name = dwarf2_string_attr (die, DW_AT_name, cu);
10816 res.comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
9291a0cd 10817
d721ba37
PA
10818 if (res.comp_dir == NULL
10819 && producer_is_gcc_lt_4_3 (cu) && res.name != NULL
10820 && IS_ABSOLUTE_PATH (res.name))
9291a0cd 10821 {
d721ba37
PA
10822 res.comp_dir_storage = ldirname (res.name);
10823 if (!res.comp_dir_storage.empty ())
10824 res.comp_dir = res.comp_dir_storage.c_str ();
9291a0cd 10825 }
d721ba37 10826 if (res.comp_dir != NULL)
9291a0cd
TT
10827 {
10828 /* Irix 6.2 native cc prepends <machine>.: to the compilation
10829 directory, get rid of it. */
d721ba37 10830 const char *cp = strchr (res.comp_dir, ':');
9291a0cd 10831
d721ba37
PA
10832 if (cp && cp != res.comp_dir && cp[-1] == '.' && cp[1] == '/')
10833 res.comp_dir = cp + 1;
9291a0cd
TT
10834 }
10835
d721ba37
PA
10836 if (res.name == NULL)
10837 res.name = "<unknown>";
10838
10839 return res;
9291a0cd
TT
10840}
10841
f4dc4d17
DE
10842/* Handle DW_AT_stmt_list for a compilation unit.
10843 DIE is the DW_TAG_compile_unit die for CU.
c3b7b696
YQ
10844 COMP_DIR is the compilation directory. LOWPC is passed to
10845 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
2ab95328
TT
10846
10847static void
10848handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
c3b7b696 10849 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
2ab95328 10850{
5e22e966 10851 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
2ab95328 10852 struct attribute *attr;
527f3840
JK
10853 struct line_header line_header_local;
10854 hashval_t line_header_local_hash;
527f3840
JK
10855 void **slot;
10856 int decode_mapping;
2ab95328 10857
f4dc4d17
DE
10858 gdb_assert (! cu->per_cu->is_debug_types);
10859
2ab95328 10860 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
527f3840
JK
10861 if (attr == NULL)
10862 return;
10863
9c541725 10864 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
527f3840
JK
10865
10866 /* The line header hash table is only created if needed (it exists to
10867 prevent redundant reading of the line table for partial_units).
10868 If we're given a partial_unit, we'll need it. If we're given a
10869 compile_unit, then use the line header hash table if it's already
10870 created, but don't create one just yet. */
10871
5989a64e 10872 if (dwarf2_per_objfile->per_bfd->line_header_hash == NULL
527f3840 10873 && die->tag == DW_TAG_partial_unit)
2ab95328 10874 {
5989a64e 10875 dwarf2_per_objfile->per_bfd->line_header_hash
d15acc42
TT
10876 .reset (htab_create_alloc (127, line_header_hash_voidp,
10877 line_header_eq_voidp,
10878 free_line_header_voidp,
10879 xcalloc, xfree));
527f3840 10880 }
2ab95328 10881
9c541725 10882 line_header_local.sect_off = line_offset;
527f3840
JK
10883 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
10884 line_header_local_hash = line_header_hash (&line_header_local);
5989a64e 10885 if (dwarf2_per_objfile->per_bfd->line_header_hash != NULL)
527f3840 10886 {
5989a64e 10887 slot = htab_find_slot_with_hash (dwarf2_per_objfile->per_bfd->line_header_hash.get (),
527f3840
JK
10888 &line_header_local,
10889 line_header_local_hash, NO_INSERT);
10890
10891 /* For DW_TAG_compile_unit we need info like symtab::linetable which
10892 is not present in *SLOT (since if there is something in *SLOT then
10893 it will be for a partial_unit). */
10894 if (die->tag == DW_TAG_partial_unit && slot != NULL)
dee91e82 10895 {
527f3840 10896 gdb_assert (*slot != NULL);
9a3c8263 10897 cu->line_header = (struct line_header *) *slot;
527f3840 10898 return;
dee91e82 10899 }
2ab95328 10900 }
527f3840
JK
10901
10902 /* dwarf_decode_line_header does not yet provide sufficient information.
10903 We always have to call also dwarf_decode_lines for it. */
fff8551c
PA
10904 line_header_up lh = dwarf_decode_line_header (line_offset, cu);
10905 if (lh == NULL)
527f3840 10906 return;
4c8aa72d
PA
10907
10908 cu->line_header = lh.release ();
10909 cu->line_header_die_owner = die;
527f3840 10910
5989a64e 10911 if (dwarf2_per_objfile->per_bfd->line_header_hash == NULL)
527f3840
JK
10912 slot = NULL;
10913 else
10914 {
5989a64e 10915 slot = htab_find_slot_with_hash (dwarf2_per_objfile->per_bfd->line_header_hash.get (),
527f3840
JK
10916 &line_header_local,
10917 line_header_local_hash, INSERT);
10918 gdb_assert (slot != NULL);
10919 }
10920 if (slot != NULL && *slot == NULL)
10921 {
10922 /* This newly decoded line number information unit will be owned
10923 by line_header_hash hash table. */
10924 *slot = cu->line_header;
4c8aa72d 10925 cu->line_header_die_owner = NULL;
527f3840
JK
10926 }
10927 else
10928 {
10929 /* We cannot free any current entry in (*slot) as that struct line_header
10930 may be already used by multiple CUs. Create only temporary decoded
10931 line_header for this CU - it may happen at most once for each line
10932 number information unit. And if we're not using line_header_hash
10933 then this is what we want as well. */
10934 gdb_assert (die->tag != DW_TAG_partial_unit);
527f3840
JK
10935 }
10936 decode_mapping = (die->tag != DW_TAG_partial_unit);
10937 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
10938 decode_mapping);
fff8551c 10939
2ab95328
TT
10940}
10941
95554aad 10942/* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
ae2de4f8 10943
c906108c 10944static void
e7c27a73 10945read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 10946{
5e22e966 10947 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
dee91e82 10948 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 10949 struct gdbarch *gdbarch = objfile->arch ();
2acceee2 10950 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
10951 CORE_ADDR highpc = ((CORE_ADDR) 0);
10952 struct attribute *attr;
c906108c 10953 struct die_info *child_die;
e142c38c 10954 CORE_ADDR baseaddr;
6e70227d 10955
380618d6 10956 prepare_one_comp_unit (cu, die, cu->language);
b3b3bada 10957 baseaddr = objfile->text_section_offset ();
c906108c 10958
fae299cd 10959 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
10960
10961 /* If we didn't find a lowpc, set it to highpc to avoid complaints
10962 from finish_block. */
2acceee2 10963 if (lowpc == ((CORE_ADDR) -1))
c906108c 10964 lowpc = highpc;
3e29f34a 10965 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
c906108c 10966
d721ba37 10967 file_and_directory fnd = find_file_and_directory (die, cu);
e1024ff1 10968
f4b8a18d
KW
10969 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
10970 standardised yet. As a workaround for the language detection we fall
10971 back to the DW_AT_producer string. */
10972 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
10973 cu->language = language_opencl;
10974
3019eac3
DE
10975 /* Similar hack for Go. */
10976 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
10977 set_cu_language (DW_LANG_Go, cu);
10978
c24bdb02 10979 cu->start_symtab (fnd.name, fnd.comp_dir, lowpc);
3019eac3
DE
10980
10981 /* Decode line number information if present. We do this before
10982 processing child DIEs, so that the line header table is available
10983 for DW_AT_decl_file. */
d721ba37 10984 handle_DW_AT_stmt_list (die, cu, fnd.comp_dir, lowpc);
3019eac3
DE
10985
10986 /* Process all dies in compilation unit. */
10987 if (die->child != NULL)
10988 {
10989 child_die = die->child;
10990 while (child_die && child_die->tag)
10991 {
10992 process_die (child_die, cu);
436c571c 10993 child_die = child_die->sibling;
3019eac3
DE
10994 }
10995 }
10996
10997 /* Decode macro information, if present. Dwarf 2 macro information
10998 refers to information in the line number info statement program
10999 header, so we can only read it if we've read the header
11000 successfully. */
0af92d60
JK
11001 attr = dwarf2_attr (die, DW_AT_macros, cu);
11002 if (attr == NULL)
11003 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
3019eac3
DE
11004 if (attr && cu->line_header)
11005 {
11006 if (dwarf2_attr (die, DW_AT_macro_info, cu))
b98664d3 11007 complaint (_("CU refers to both DW_AT_macros and DW_AT_macro_info"));
3019eac3 11008
43f3e411 11009 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
3019eac3
DE
11010 }
11011 else
11012 {
11013 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
11014 if (attr && cu->line_header)
11015 {
11016 unsigned int macro_offset = DW_UNSND (attr);
11017
43f3e411 11018 dwarf_decode_macros (cu, macro_offset, 0);
3019eac3
DE
11019 }
11020 }
3019eac3
DE
11021}
11022
c24bdb02
KS
11023void
11024dwarf2_cu::setup_type_unit_groups (struct die_info *die)
3019eac3 11025{
f4dc4d17
DE
11026 struct type_unit_group *tu_group;
11027 int first_time;
3019eac3 11028 struct attribute *attr;
9c541725 11029 unsigned int i;
0186c6a7 11030 struct signatured_type *sig_type;
3019eac3 11031
f4dc4d17 11032 gdb_assert (per_cu->is_debug_types);
0186c6a7 11033 sig_type = (struct signatured_type *) per_cu;
3019eac3 11034
c24bdb02 11035 attr = dwarf2_attr (die, DW_AT_stmt_list, this);
3019eac3 11036
f4dc4d17 11037 /* If we're using .gdb_index (includes -readnow) then
74e04d1c 11038 per_cu->type_unit_group may not have been set up yet. */
0186c6a7 11039 if (sig_type->type_unit_group == NULL)
c24bdb02 11040 sig_type->type_unit_group = get_type_unit_group (this, attr);
0186c6a7 11041 tu_group = sig_type->type_unit_group;
f4dc4d17
DE
11042
11043 /* If we've already processed this stmt_list there's no real need to
11044 do it again, we could fake it and just recreate the part we need
11045 (file name,index -> symtab mapping). If data shows this optimization
11046 is useful we can do it then. */
43f3e411 11047 first_time = tu_group->compunit_symtab == NULL;
f4dc4d17
DE
11048
11049 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
11050 debug info. */
fff8551c 11051 line_header_up lh;
f4dc4d17 11052 if (attr != NULL)
3019eac3 11053 {
9c541725 11054 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
c24bdb02 11055 lh = dwarf_decode_line_header (line_offset, this);
f4dc4d17
DE
11056 }
11057 if (lh == NULL)
11058 {
11059 if (first_time)
c24bdb02 11060 start_symtab ("", NULL, 0);
f4dc4d17
DE
11061 else
11062 {
11063 gdb_assert (tu_group->symtabs == NULL);
c24bdb02 11064 gdb_assert (m_builder == nullptr);
804d2729 11065 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11066 m_builder.reset (new struct buildsym_compunit
11067 (COMPUNIT_OBJFILE (cust), "",
11068 COMPUNIT_DIRNAME (cust),
11069 compunit_language (cust),
11070 0, cust));
770479f2 11071 list_in_scope = get_builder ()->get_file_symbols ();
f4dc4d17 11072 }
f4dc4d17 11073 return;
3019eac3
DE
11074 }
11075
c24bdb02
KS
11076 line_header = lh.release ();
11077 line_header_die_owner = die;
3019eac3 11078
f4dc4d17
DE
11079 if (first_time)
11080 {
c24bdb02 11081 struct compunit_symtab *cust = start_symtab ("", NULL, 0);
3019eac3 11082
1fd60fc0
DE
11083 /* Note: We don't assign tu_group->compunit_symtab yet because we're
11084 still initializing it, and our caller (a few levels up)
11085 process_full_type_unit still needs to know if this is the first
11086 time. */
11087
4ac93832
TT
11088 tu_group->symtabs
11089 = XOBNEWVEC (&COMPUNIT_OBJFILE (cust)->objfile_obstack,
11090 struct symtab *, line_header->file_names_size ());
3019eac3 11091
7ba99d21
AT
11092 auto &file_names = line_header->file_names ();
11093 for (i = 0; i < file_names.size (); ++i)
f4dc4d17 11094 {
7ba99d21 11095 file_entry &fe = file_names[i];
c24bdb02
KS
11096 dwarf2_start_subfile (this, fe.name,
11097 fe.include_dir (line_header));
11098 buildsym_compunit *b = get_builder ();
11099 if (b->get_current_subfile ()->symtab == NULL)
f4dc4d17 11100 {
4c8aa72d
PA
11101 /* NOTE: start_subfile will recognize when it's been
11102 passed a file it has already seen. So we can't
11103 assume there's a simple mapping from
11104 cu->line_header->file_names to subfiles, plus
11105 cu->line_header->file_names may contain dups. */
c24bdb02
KS
11106 b->get_current_subfile ()->symtab
11107 = allocate_symtab (cust, b->get_current_subfile ()->name);
f4dc4d17
DE
11108 }
11109
c24bdb02 11110 fe.symtab = b->get_current_subfile ()->symtab;
8c43009f 11111 tu_group->symtabs[i] = fe.symtab;
f4dc4d17
DE
11112 }
11113 }
11114 else
3019eac3 11115 {
c24bdb02 11116 gdb_assert (m_builder == nullptr);
804d2729 11117 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11118 m_builder.reset (new struct buildsym_compunit
11119 (COMPUNIT_OBJFILE (cust), "",
11120 COMPUNIT_DIRNAME (cust),
11121 compunit_language (cust),
11122 0, cust));
770479f2 11123 list_in_scope = get_builder ()->get_file_symbols ();
f4dc4d17 11124
7ba99d21
AT
11125 auto &file_names = line_header->file_names ();
11126 for (i = 0; i < file_names.size (); ++i)
f4dc4d17 11127 {
7ba99d21 11128 file_entry &fe = file_names[i];
4c8aa72d 11129 fe.symtab = tu_group->symtabs[i];
f4dc4d17 11130 }
3019eac3
DE
11131 }
11132
f4dc4d17
DE
11133 /* The main symtab is allocated last. Type units don't have DW_AT_name
11134 so they don't have a "real" (so to speak) symtab anyway.
11135 There is later code that will assign the main symtab to all symbols
11136 that don't have one. We need to handle the case of a symbol with a
11137 missing symtab (DW_AT_decl_file) anyway. */
11138}
3019eac3 11139
f4dc4d17
DE
11140/* Process DW_TAG_type_unit.
11141 For TUs we want to skip the first top level sibling if it's not the
11142 actual type being defined by this TU. In this case the first top
11143 level sibling is there to provide context only. */
3019eac3 11144
f4dc4d17
DE
11145static void
11146read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
11147{
11148 struct die_info *child_die;
3019eac3 11149
f4dc4d17
DE
11150 prepare_one_comp_unit (cu, die, language_minimal);
11151
11152 /* Initialize (or reinitialize) the machinery for building symtabs.
11153 We do this before processing child DIEs, so that the line header table
11154 is available for DW_AT_decl_file. */
c24bdb02 11155 cu->setup_type_unit_groups (die);
f4dc4d17
DE
11156
11157 if (die->child != NULL)
11158 {
11159 child_die = die->child;
11160 while (child_die && child_die->tag)
11161 {
11162 process_die (child_die, cu);
436c571c 11163 child_die = child_die->sibling;
f4dc4d17
DE
11164 }
11165 }
3019eac3
DE
11166}
11167\f
80626a55
DE
11168/* DWO/DWP files.
11169
11170 http://gcc.gnu.org/wiki/DebugFission
11171 http://gcc.gnu.org/wiki/DebugFissionDWP
11172
11173 To simplify handling of both DWO files ("object" files with the DWARF info)
11174 and DWP files (a file with the DWOs packaged up into one file), we treat
11175 DWP files as having a collection of virtual DWO files. */
3019eac3
DE
11176
11177static hashval_t
11178hash_dwo_file (const void *item)
11179{
9a3c8263 11180 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
a2ce51a0 11181 hashval_t hash;
3019eac3 11182
a2ce51a0
DE
11183 hash = htab_hash_string (dwo_file->dwo_name);
11184 if (dwo_file->comp_dir != NULL)
11185 hash += htab_hash_string (dwo_file->comp_dir);
11186 return hash;
3019eac3
DE
11187}
11188
11189static int
11190eq_dwo_file (const void *item_lhs, const void *item_rhs)
11191{
9a3c8263
SM
11192 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
11193 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
3019eac3 11194
a2ce51a0
DE
11195 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
11196 return 0;
11197 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
11198 return lhs->comp_dir == rhs->comp_dir;
11199 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
3019eac3
DE
11200}
11201
11202/* Allocate a hash table for DWO files. */
11203
51ac9db5 11204static htab_up
298e9637 11205allocate_dwo_file_hash_table ()
3019eac3 11206{
51ac9db5
SM
11207 auto delete_dwo_file = [] (void *item)
11208 {
11209 struct dwo_file *dwo_file = (struct dwo_file *) item;
11210
11211 delete dwo_file;
11212 };
11213
bc68fb19
TT
11214 return htab_up (htab_create_alloc (41,
11215 hash_dwo_file,
11216 eq_dwo_file,
11217 delete_dwo_file,
11218 xcalloc, xfree));
3019eac3
DE
11219}
11220
80626a55
DE
11221/* Lookup DWO file DWO_NAME. */
11222
11223static void **
ed2dc618
SM
11224lookup_dwo_file_slot (struct dwarf2_per_objfile *dwarf2_per_objfile,
11225 const char *dwo_name,
11226 const char *comp_dir)
80626a55
DE
11227{
11228 struct dwo_file find_entry;
11229 void **slot;
11230
5989a64e
SM
11231 if (dwarf2_per_objfile->per_bfd->dwo_files == NULL)
11232 dwarf2_per_objfile->per_bfd->dwo_files = allocate_dwo_file_hash_table ();
80626a55 11233
0ac5b59e
DE
11234 find_entry.dwo_name = dwo_name;
11235 find_entry.comp_dir = comp_dir;
5989a64e 11236 slot = htab_find_slot (dwarf2_per_objfile->per_bfd->dwo_files.get (), &find_entry,
51ac9db5 11237 INSERT);
80626a55
DE
11238
11239 return slot;
11240}
11241
3019eac3
DE
11242static hashval_t
11243hash_dwo_unit (const void *item)
11244{
9a3c8263 11245 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3
DE
11246
11247 /* This drops the top 32 bits of the id, but is ok for a hash. */
11248 return dwo_unit->signature;
11249}
11250
11251static int
11252eq_dwo_unit (const void *item_lhs, const void *item_rhs)
11253{
9a3c8263
SM
11254 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
11255 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
3019eac3
DE
11256
11257 /* The signature is assumed to be unique within the DWO file.
11258 So while object file CU dwo_id's always have the value zero,
11259 that's OK, assuming each object file DWO file has only one CU,
11260 and that's the rule for now. */
11261 return lhs->signature == rhs->signature;
11262}
11263
11264/* Allocate a hash table for DWO CUs,TUs.
11265 There is one of these tables for each of CUs,TUs for each DWO file. */
11266
b0b6a987 11267static htab_up
298e9637 11268allocate_dwo_unit_table ()
3019eac3
DE
11269{
11270 /* Start out with a pretty small number.
11271 Generally DWO files contain only one CU and maybe some TUs. */
b0b6a987
TT
11272 return htab_up (htab_create_alloc (3,
11273 hash_dwo_unit,
11274 eq_dwo_unit,
11275 NULL, xcalloc, xfree));
3019eac3
DE
11276}
11277
19c3d4c9 11278/* die_reader_func for create_dwo_cu. */
3019eac3
DE
11279
11280static void
19c3d4c9
DE
11281create_dwo_cu_reader (const struct die_reader_specs *reader,
11282 const gdb_byte *info_ptr,
11283 struct die_info *comp_unit_die,
c0ab21c2
TT
11284 struct dwo_file *dwo_file,
11285 struct dwo_unit *dwo_unit)
3019eac3
DE
11286{
11287 struct dwarf2_cu *cu = reader->cu;
9c541725 11288 sect_offset sect_off = cu->per_cu->sect_off;
8a0459fd 11289 struct dwarf2_section_info *section = cu->per_cu->section;
3019eac3 11290
a084a2a6
AT
11291 gdb::optional<ULONGEST> signature = lookup_dwo_id (cu, comp_unit_die);
11292 if (!signature.has_value ())
3019eac3 11293 {
b98664d3 11294 complaint (_("Dwarf Error: debug entry at offset %s is missing"
19c3d4c9 11295 " its dwo_id [in module %s]"),
9d8780f0 11296 sect_offset_str (sect_off), dwo_file->dwo_name);
3019eac3
DE
11297 return;
11298 }
11299
3019eac3 11300 dwo_unit->dwo_file = dwo_file;
a084a2a6 11301 dwo_unit->signature = *signature;
8a0459fd 11302 dwo_unit->section = section;
9c541725 11303 dwo_unit->sect_off = sect_off;
3019eac3
DE
11304 dwo_unit->length = cu->per_cu->length;
11305
b4f54984 11306 if (dwarf_read_debug)
9d8780f0
SM
11307 fprintf_unfiltered (gdb_stdlog, " offset %s, dwo_id %s\n",
11308 sect_offset_str (sect_off),
9c541725 11309 hex_string (dwo_unit->signature));
3019eac3
DE
11310}
11311
33c5cd75 11312/* Create the dwo_units for the CUs in a DWO_FILE.
19c3d4c9 11313 Note: This function processes DWO files only, not DWP files. */
3019eac3 11314
33c5cd75 11315static void
ed2dc618 11316create_cus_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
18a8505e 11317 dwarf2_cu *cu, struct dwo_file &dwo_file,
b0b6a987 11318 dwarf2_section_info &section, htab_up &cus_htab)
3019eac3
DE
11319{
11320 struct objfile *objfile = dwarf2_per_objfile->objfile;
1859c670 11321 dwarf2_per_bfd *per_bfd = dwarf2_per_objfile->per_bfd;
d521ce57 11322 const gdb_byte *info_ptr, *end_ptr;
3019eac3 11323
96b79293 11324 section.read (objfile);
33c5cd75 11325 info_ptr = section.buffer;
3019eac3
DE
11326
11327 if (info_ptr == NULL)
33c5cd75 11328 return;
3019eac3 11329
b4f54984 11330 if (dwarf_read_debug)
19c3d4c9
DE
11331 {
11332 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
96b79293
TT
11333 section.get_name (),
11334 section.get_file_name ());
19c3d4c9 11335 }
3019eac3 11336
33c5cd75 11337 end_ptr = info_ptr + section.size;
3019eac3
DE
11338 while (info_ptr < end_ptr)
11339 {
11340 struct dwarf2_per_cu_data per_cu;
c0ab21c2 11341 struct dwo_unit read_unit {};
33c5cd75
DB
11342 struct dwo_unit *dwo_unit;
11343 void **slot;
11344 sect_offset sect_off = (sect_offset) (info_ptr - section.buffer);
3019eac3
DE
11345
11346 memset (&per_cu, 0, sizeof (per_cu));
e3b94546 11347 per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
1859c670 11348 per_cu.per_bfd = per_bfd;
3019eac3 11349 per_cu.is_debug_types = 0;
33c5cd75
DB
11350 per_cu.sect_off = sect_offset (info_ptr - section.buffer);
11351 per_cu.section = &section;
11352
ab432490 11353 cutu_reader reader (&per_cu, dwarf2_per_objfile, cu, &dwo_file);
c0ab21c2
TT
11354 if (!reader.dummy_p)
11355 create_dwo_cu_reader (&reader, reader.info_ptr, reader.comp_unit_die,
3e225074 11356 &dwo_file, &read_unit);
33c5cd75
DB
11357 info_ptr += per_cu.length;
11358
11359 // If the unit could not be parsed, skip it.
c0ab21c2 11360 if (read_unit.dwo_file == NULL)
33c5cd75 11361 continue;
3019eac3 11362
33c5cd75 11363 if (cus_htab == NULL)
298e9637 11364 cus_htab = allocate_dwo_unit_table ();
19c3d4c9 11365
1859c670 11366 dwo_unit = OBSTACK_ZALLOC (&per_bfd->obstack,
45940949 11367 struct dwo_unit);
c0ab21c2 11368 *dwo_unit = read_unit;
b0b6a987 11369 slot = htab_find_slot (cus_htab.get (), dwo_unit, INSERT);
33c5cd75
DB
11370 gdb_assert (slot != NULL);
11371 if (*slot != NULL)
19c3d4c9 11372 {
33c5cd75
DB
11373 const struct dwo_unit *dup_cu = (const struct dwo_unit *)*slot;
11374 sect_offset dup_sect_off = dup_cu->sect_off;
19c3d4c9 11375
b98664d3 11376 complaint (_("debug cu entry at offset %s is duplicate to"
9d8780f0
SM
11377 " the entry at offset %s, signature %s"),
11378 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
33c5cd75 11379 hex_string (dwo_unit->signature));
19c3d4c9 11380 }
33c5cd75 11381 *slot = (void *)dwo_unit;
3019eac3 11382 }
3019eac3
DE
11383}
11384
80626a55
DE
11385/* DWP file .debug_{cu,tu}_index section format:
11386 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
11387
d2415c6c
DE
11388 DWP Version 1:
11389
80626a55
DE
11390 Both index sections have the same format, and serve to map a 64-bit
11391 signature to a set of section numbers. Each section begins with a header,
11392 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
11393 indexes, and a pool of 32-bit section numbers. The index sections will be
11394 aligned at 8-byte boundaries in the file.
11395
d2415c6c
DE
11396 The index section header consists of:
11397
11398 V, 32 bit version number
11399 -, 32 bits unused
11400 N, 32 bit number of compilation units or type units in the index
11401 M, 32 bit number of slots in the hash table
80626a55 11402
d2415c6c 11403 Numbers are recorded using the byte order of the application binary.
80626a55 11404
d2415c6c
DE
11405 The hash table begins at offset 16 in the section, and consists of an array
11406 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
11407 order of the application binary). Unused slots in the hash table are 0.
11408 (We rely on the extreme unlikeliness of a signature being exactly 0.)
80626a55 11409
d2415c6c
DE
11410 The parallel table begins immediately after the hash table
11411 (at offset 16 + 8 * M from the beginning of the section), and consists of an
11412 array of 32-bit indexes (using the byte order of the application binary),
11413 corresponding 1-1 with slots in the hash table. Each entry in the parallel
11414 table contains a 32-bit index into the pool of section numbers. For unused
11415 hash table slots, the corresponding entry in the parallel table will be 0.
80626a55 11416
73869dc2
DE
11417 The pool of section numbers begins immediately following the hash table
11418 (at offset 16 + 12 * M from the beginning of the section). The pool of
11419 section numbers consists of an array of 32-bit words (using the byte order
11420 of the application binary). Each item in the array is indexed starting
11421 from 0. The hash table entry provides the index of the first section
11422 number in the set. Additional section numbers in the set follow, and the
11423 set is terminated by a 0 entry (section number 0 is not used in ELF).
11424
11425 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
11426 section must be the first entry in the set, and the .debug_abbrev.dwo must
11427 be the second entry. Other members of the set may follow in any order.
11428
11429 ---
11430
11431 DWP Version 2:
11432
11433 DWP Version 2 combines all the .debug_info, etc. sections into one,
11434 and the entries in the index tables are now offsets into these sections.
11435 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
11436 section.
11437
11438 Index Section Contents:
11439 Header
11440 Hash Table of Signatures dwp_hash_table.hash_table
11441 Parallel Table of Indices dwp_hash_table.unit_table
11442 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
11443 Table of Section Sizes dwp_hash_table.v2.sizes
11444
11445 The index section header consists of:
11446
11447 V, 32 bit version number
11448 L, 32 bit number of columns in the table of section offsets
11449 N, 32 bit number of compilation units or type units in the index
11450 M, 32 bit number of slots in the hash table
11451
11452 Numbers are recorded using the byte order of the application binary.
11453
11454 The hash table has the same format as version 1.
11455 The parallel table of indices has the same format as version 1,
11456 except that the entries are origin-1 indices into the table of sections
11457 offsets and the table of section sizes.
11458
11459 The table of offsets begins immediately following the parallel table
11460 (at offset 16 + 12 * M from the beginning of the section). The table is
11461 a two-dimensional array of 32-bit words (using the byte order of the
11462 application binary), with L columns and N+1 rows, in row-major order.
11463 Each row in the array is indexed starting from 0. The first row provides
11464 a key to the remaining rows: each column in this row provides an identifier
11465 for a debug section, and the offsets in the same column of subsequent rows
11466 refer to that section. The section identifiers are:
11467
11468 DW_SECT_INFO 1 .debug_info.dwo
11469 DW_SECT_TYPES 2 .debug_types.dwo
11470 DW_SECT_ABBREV 3 .debug_abbrev.dwo
11471 DW_SECT_LINE 4 .debug_line.dwo
11472 DW_SECT_LOC 5 .debug_loc.dwo
11473 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
11474 DW_SECT_MACINFO 7 .debug_macinfo.dwo
11475 DW_SECT_MACRO 8 .debug_macro.dwo
11476
11477 The offsets provided by the CU and TU index sections are the base offsets
11478 for the contributions made by each CU or TU to the corresponding section
11479 in the package file. Each CU and TU header contains an abbrev_offset
11480 field, used to find the abbreviations table for that CU or TU within the
11481 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
11482 be interpreted as relative to the base offset given in the index section.
11483 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
11484 should be interpreted as relative to the base offset for .debug_line.dwo,
11485 and offsets into other debug sections obtained from DWARF attributes should
11486 also be interpreted as relative to the corresponding base offset.
11487
11488 The table of sizes begins immediately following the table of offsets.
11489 Like the table of offsets, it is a two-dimensional array of 32-bit words,
11490 with L columns and N rows, in row-major order. Each row in the array is
11491 indexed starting from 1 (row 0 is shared by the two tables).
11492
11493 ---
11494
11495 Hash table lookup is handled the same in version 1 and 2:
11496
11497 We assume that N and M will not exceed 2^32 - 1.
11498 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
11499
d2415c6c
DE
11500 Given a 64-bit compilation unit signature or a type signature S, an entry
11501 in the hash table is located as follows:
80626a55 11502
d2415c6c
DE
11503 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
11504 the low-order k bits all set to 1.
80626a55 11505
d2415c6c 11506 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
80626a55 11507
d2415c6c
DE
11508 3) If the hash table entry at index H matches the signature, use that
11509 entry. If the hash table entry at index H is unused (all zeroes),
11510 terminate the search: the signature is not present in the table.
80626a55 11511
d2415c6c 11512 4) Let H = (H + H') modulo M. Repeat at Step 3.
80626a55 11513
d2415c6c 11514 Because M > N and H' and M are relatively prime, the search is guaranteed
73869dc2 11515 to stop at an unused slot or find the match. */
80626a55
DE
11516
11517/* Create a hash table to map DWO IDs to their CU/TU entry in
11518 .debug_{info,types}.dwo in DWP_FILE.
11519 Returns NULL if there isn't one.
11520 Note: This function processes DWP files only, not DWO files. */
11521
11522static struct dwp_hash_table *
ed2dc618
SM
11523create_dwp_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
11524 struct dwp_file *dwp_file, int is_debug_types)
80626a55
DE
11525{
11526 struct objfile *objfile = dwarf2_per_objfile->objfile;
400174b1 11527 bfd *dbfd = dwp_file->dbfd.get ();
948f8e3d 11528 const gdb_byte *index_ptr, *index_end;
80626a55 11529 struct dwarf2_section_info *index;
73869dc2 11530 uint32_t version, nr_columns, nr_units, nr_slots;
80626a55
DE
11531 struct dwp_hash_table *htab;
11532
11533 if (is_debug_types)
11534 index = &dwp_file->sections.tu_index;
11535 else
11536 index = &dwp_file->sections.cu_index;
11537
96b79293 11538 if (index->empty ())
80626a55 11539 return NULL;
96b79293 11540 index->read (objfile);
80626a55
DE
11541
11542 index_ptr = index->buffer;
11543 index_end = index_ptr + index->size;
11544
11545 version = read_4_bytes (dbfd, index_ptr);
73869dc2
DE
11546 index_ptr += 4;
11547 if (version == 2)
11548 nr_columns = read_4_bytes (dbfd, index_ptr);
11549 else
11550 nr_columns = 0;
11551 index_ptr += 4;
80626a55
DE
11552 nr_units = read_4_bytes (dbfd, index_ptr);
11553 index_ptr += 4;
11554 nr_slots = read_4_bytes (dbfd, index_ptr);
11555 index_ptr += 4;
11556
73869dc2 11557 if (version != 1 && version != 2)
80626a55 11558 {
21aa081e 11559 error (_("Dwarf Error: unsupported DWP file version (%s)"
80626a55 11560 " [in module %s]"),
21aa081e 11561 pulongest (version), dwp_file->name);
80626a55
DE
11562 }
11563 if (nr_slots != (nr_slots & -nr_slots))
11564 {
21aa081e 11565 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
80626a55 11566 " is not power of 2 [in module %s]"),
21aa081e 11567 pulongest (nr_slots), dwp_file->name);
80626a55
DE
11568 }
11569
5989a64e 11570 htab = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack, struct dwp_hash_table);
73869dc2
DE
11571 htab->version = version;
11572 htab->nr_columns = nr_columns;
80626a55
DE
11573 htab->nr_units = nr_units;
11574 htab->nr_slots = nr_slots;
11575 htab->hash_table = index_ptr;
11576 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
73869dc2
DE
11577
11578 /* Exit early if the table is empty. */
11579 if (nr_slots == 0 || nr_units == 0
11580 || (version == 2 && nr_columns == 0))
11581 {
11582 /* All must be zero. */
11583 if (nr_slots != 0 || nr_units != 0
11584 || (version == 2 && nr_columns != 0))
11585 {
b98664d3 11586 complaint (_("Empty DWP but nr_slots,nr_units,nr_columns not"
73869dc2
DE
11587 " all zero [in modules %s]"),
11588 dwp_file->name);
11589 }
11590 return htab;
11591 }
11592
11593 if (version == 1)
11594 {
11595 htab->section_pool.v1.indices =
11596 htab->unit_table + sizeof (uint32_t) * nr_slots;
11597 /* It's harder to decide whether the section is too small in v1.
11598 V1 is deprecated anyway so we punt. */
11599 }
11600 else
11601 {
11602 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
11603 int *ids = htab->section_pool.v2.section_ids;
04fd5eed 11604 size_t sizeof_ids = sizeof (htab->section_pool.v2.section_ids);
73869dc2
DE
11605 /* Reverse map for error checking. */
11606 int ids_seen[DW_SECT_MAX + 1];
11607 int i;
11608
11609 if (nr_columns < 2)
11610 {
11611 error (_("Dwarf Error: bad DWP hash table, too few columns"
11612 " in section table [in module %s]"),
11613 dwp_file->name);
11614 }
11615 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
11616 {
11617 error (_("Dwarf Error: bad DWP hash table, too many columns"
11618 " in section table [in module %s]"),
11619 dwp_file->name);
11620 }
04fd5eed
GB
11621 memset (ids, 255, sizeof_ids);
11622 memset (ids_seen, 255, sizeof (ids_seen));
73869dc2
DE
11623 for (i = 0; i < nr_columns; ++i)
11624 {
11625 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
11626
11627 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
11628 {
11629 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
11630 " in section table [in module %s]"),
11631 id, dwp_file->name);
11632 }
11633 if (ids_seen[id] != -1)
11634 {
11635 error (_("Dwarf Error: bad DWP hash table, duplicate section"
11636 " id %d in section table [in module %s]"),
11637 id, dwp_file->name);
11638 }
11639 ids_seen[id] = i;
11640 ids[i] = id;
11641 }
11642 /* Must have exactly one info or types section. */
11643 if (((ids_seen[DW_SECT_INFO] != -1)
11644 + (ids_seen[DW_SECT_TYPES] != -1))
11645 != 1)
11646 {
11647 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
11648 " DWO info/types section [in module %s]"),
11649 dwp_file->name);
11650 }
11651 /* Must have an abbrev section. */
11652 if (ids_seen[DW_SECT_ABBREV] == -1)
11653 {
11654 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
11655 " section [in module %s]"),
11656 dwp_file->name);
11657 }
11658 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
11659 htab->section_pool.v2.sizes =
11660 htab->section_pool.v2.offsets + (sizeof (uint32_t)
11661 * nr_units * nr_columns);
11662 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
11663 * nr_units * nr_columns))
11664 > index_end)
11665 {
11666 error (_("Dwarf Error: DWP index section is corrupt (too small)"
11667 " [in module %s]"),
11668 dwp_file->name);
11669 }
11670 }
80626a55
DE
11671
11672 return htab;
11673}
11674
11675/* Update SECTIONS with the data from SECTP.
11676
11677 This function is like the other "locate" section routines that are
11678 passed to bfd_map_over_sections, but in this context the sections to
73869dc2 11679 read comes from the DWP V1 hash table, not the full ELF section table.
80626a55
DE
11680
11681 The result is non-zero for success, or zero if an error was found. */
11682
11683static int
73869dc2
DE
11684locate_v1_virtual_dwo_sections (asection *sectp,
11685 struct virtual_v1_dwo_sections *sections)
80626a55
DE
11686{
11687 const struct dwop_section_names *names = &dwop_section_names;
11688
11689 if (section_is_p (sectp->name, &names->abbrev_dwo))
11690 {
11691 /* There can be only one. */
049412e3 11692 if (sections->abbrev.s.section != NULL)
80626a55 11693 return 0;
049412e3 11694 sections->abbrev.s.section = sectp;
fd361982 11695 sections->abbrev.size = bfd_section_size (sectp);
80626a55
DE
11696 }
11697 else if (section_is_p (sectp->name, &names->info_dwo)
11698 || section_is_p (sectp->name, &names->types_dwo))
11699 {
11700 /* There can be only one. */
049412e3 11701 if (sections->info_or_types.s.section != NULL)
80626a55 11702 return 0;
049412e3 11703 sections->info_or_types.s.section = sectp;
fd361982 11704 sections->info_or_types.size = bfd_section_size (sectp);
80626a55
DE
11705 }
11706 else if (section_is_p (sectp->name, &names->line_dwo))
11707 {
11708 /* There can be only one. */
049412e3 11709 if (sections->line.s.section != NULL)
80626a55 11710 return 0;
049412e3 11711 sections->line.s.section = sectp;
fd361982 11712 sections->line.size = bfd_section_size (sectp);
80626a55
DE
11713 }
11714 else if (section_is_p (sectp->name, &names->loc_dwo))
11715 {
11716 /* There can be only one. */
049412e3 11717 if (sections->loc.s.section != NULL)
80626a55 11718 return 0;
049412e3 11719 sections->loc.s.section = sectp;
fd361982 11720 sections->loc.size = bfd_section_size (sectp);
80626a55
DE
11721 }
11722 else if (section_is_p (sectp->name, &names->macinfo_dwo))
11723 {
11724 /* There can be only one. */
049412e3 11725 if (sections->macinfo.s.section != NULL)
80626a55 11726 return 0;
049412e3 11727 sections->macinfo.s.section = sectp;
fd361982 11728 sections->macinfo.size = bfd_section_size (sectp);
80626a55
DE
11729 }
11730 else if (section_is_p (sectp->name, &names->macro_dwo))
11731 {
11732 /* There can be only one. */
049412e3 11733 if (sections->macro.s.section != NULL)
80626a55 11734 return 0;
049412e3 11735 sections->macro.s.section = sectp;
fd361982 11736 sections->macro.size = bfd_section_size (sectp);
80626a55
DE
11737 }
11738 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
11739 {
11740 /* There can be only one. */
049412e3 11741 if (sections->str_offsets.s.section != NULL)
80626a55 11742 return 0;
049412e3 11743 sections->str_offsets.s.section = sectp;
fd361982 11744 sections->str_offsets.size = bfd_section_size (sectp);
80626a55
DE
11745 }
11746 else
11747 {
11748 /* No other kind of section is valid. */
11749 return 0;
11750 }
11751
11752 return 1;
11753}
11754
73869dc2
DE
11755/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
11756 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
11757 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
11758 This is for DWP version 1 files. */
80626a55
DE
11759
11760static struct dwo_unit *
ed2dc618
SM
11761create_dwo_unit_in_dwp_v1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
11762 struct dwp_file *dwp_file,
73869dc2
DE
11763 uint32_t unit_index,
11764 const char *comp_dir,
11765 ULONGEST signature, int is_debug_types)
80626a55 11766{
73869dc2
DE
11767 const struct dwp_hash_table *dwp_htab =
11768 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 11769 bfd *dbfd = dwp_file->dbfd.get ();
80626a55
DE
11770 const char *kind = is_debug_types ? "TU" : "CU";
11771 struct dwo_file *dwo_file;
11772 struct dwo_unit *dwo_unit;
73869dc2 11773 struct virtual_v1_dwo_sections sections;
80626a55 11774 void **dwo_file_slot;
80626a55
DE
11775 int i;
11776
73869dc2
DE
11777 gdb_assert (dwp_file->version == 1);
11778
b4f54984 11779 if (dwarf_read_debug)
80626a55 11780 {
73869dc2 11781 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
80626a55 11782 kind,
73869dc2 11783 pulongest (unit_index), hex_string (signature),
80626a55
DE
11784 dwp_file->name);
11785 }
11786
19ac8c2e 11787 /* Fetch the sections of this DWO unit.
80626a55
DE
11788 Put a limit on the number of sections we look for so that bad data
11789 doesn't cause us to loop forever. */
11790
73869dc2 11791#define MAX_NR_V1_DWO_SECTIONS \
80626a55
DE
11792 (1 /* .debug_info or .debug_types */ \
11793 + 1 /* .debug_abbrev */ \
11794 + 1 /* .debug_line */ \
11795 + 1 /* .debug_loc */ \
11796 + 1 /* .debug_str_offsets */ \
19ac8c2e 11797 + 1 /* .debug_macro or .debug_macinfo */ \
80626a55
DE
11798 + 1 /* trailing zero */)
11799
11800 memset (&sections, 0, sizeof (sections));
80626a55 11801
73869dc2 11802 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
80626a55
DE
11803 {
11804 asection *sectp;
11805 uint32_t section_nr =
11806 read_4_bytes (dbfd,
73869dc2
DE
11807 dwp_htab->section_pool.v1.indices
11808 + (unit_index + i) * sizeof (uint32_t));
80626a55
DE
11809
11810 if (section_nr == 0)
11811 break;
11812 if (section_nr >= dwp_file->num_sections)
11813 {
11814 error (_("Dwarf Error: bad DWP hash table, section number too large"
11815 " [in module %s]"),
11816 dwp_file->name);
11817 }
11818
11819 sectp = dwp_file->elf_sections[section_nr];
73869dc2 11820 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
80626a55
DE
11821 {
11822 error (_("Dwarf Error: bad DWP hash table, invalid section found"
11823 " [in module %s]"),
11824 dwp_file->name);
11825 }
11826 }
11827
11828 if (i < 2
96b79293
TT
11829 || sections.info_or_types.empty ()
11830 || sections.abbrev.empty ())
80626a55
DE
11831 {
11832 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
11833 " [in module %s]"),
11834 dwp_file->name);
11835 }
73869dc2 11836 if (i == MAX_NR_V1_DWO_SECTIONS)
80626a55
DE
11837 {
11838 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
11839 " [in module %s]"),
11840 dwp_file->name);
11841 }
11842
11843 /* It's easier for the rest of the code if we fake a struct dwo_file and
11844 have dwo_unit "live" in that. At least for now.
11845
11846 The DWP file can be made up of a random collection of CUs and TUs.
c766f7ec 11847 However, for each CU + set of TUs that came from the same original DWO
57d63ce2
DE
11848 file, we can combine them back into a virtual DWO file to save space
11849 (fewer struct dwo_file objects to allocate). Remember that for really
80626a55
DE
11850 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
11851
791afaa2
TT
11852 std::string virtual_dwo_name =
11853 string_printf ("virtual-dwo/%d-%d-%d-%d",
96b79293
TT
11854 sections.abbrev.get_id (),
11855 sections.line.get_id (),
11856 sections.loc.get_id (),
11857 sections.str_offsets.get_id ());
80626a55 11858 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
11859 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
11860 virtual_dwo_name.c_str (),
11861 comp_dir);
80626a55
DE
11862 /* Create one if necessary. */
11863 if (*dwo_file_slot == NULL)
11864 {
b4f54984 11865 if (dwarf_read_debug)
80626a55
DE
11866 {
11867 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 11868 virtual_dwo_name.c_str ());
80626a55 11869 }
51ac9db5 11870 dwo_file = new struct dwo_file;
45940949 11871 dwo_file->dwo_name = dwarf2_per_objfile->objfile->intern (virtual_dwo_name);
0ac5b59e 11872 dwo_file->comp_dir = comp_dir;
80626a55
DE
11873 dwo_file->sections.abbrev = sections.abbrev;
11874 dwo_file->sections.line = sections.line;
11875 dwo_file->sections.loc = sections.loc;
11876 dwo_file->sections.macinfo = sections.macinfo;
11877 dwo_file->sections.macro = sections.macro;
11878 dwo_file->sections.str_offsets = sections.str_offsets;
11879 /* The "str" section is global to the entire DWP file. */
11880 dwo_file->sections.str = dwp_file->sections.str;
57d63ce2 11881 /* The info or types section is assigned below to dwo_unit,
80626a55
DE
11882 there's no need to record it in dwo_file.
11883 Also, we can't simply record type sections in dwo_file because
11884 we record a pointer into the vector in dwo_unit. As we collect more
11885 types we'll grow the vector and eventually have to reallocate space
57d63ce2
DE
11886 for it, invalidating all copies of pointers into the previous
11887 contents. */
80626a55
DE
11888 *dwo_file_slot = dwo_file;
11889 }
11890 else
11891 {
b4f54984 11892 if (dwarf_read_debug)
80626a55
DE
11893 {
11894 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 11895 virtual_dwo_name.c_str ());
80626a55 11896 }
9a3c8263 11897 dwo_file = (struct dwo_file *) *dwo_file_slot;
80626a55 11898 }
80626a55 11899
5989a64e 11900 dwo_unit = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack, struct dwo_unit);
80626a55
DE
11901 dwo_unit->dwo_file = dwo_file;
11902 dwo_unit->signature = signature;
8d749320 11903 dwo_unit->section =
5989a64e 11904 XOBNEW (&dwarf2_per_objfile->per_bfd->obstack, struct dwarf2_section_info);
8a0459fd 11905 *dwo_unit->section = sections.info_or_types;
57d63ce2 11906 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
80626a55
DE
11907
11908 return dwo_unit;
11909}
11910
73869dc2
DE
11911/* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
11912 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
11913 piece within that section used by a TU/CU, return a virtual section
11914 of just that piece. */
11915
11916static struct dwarf2_section_info
ed2dc618
SM
11917create_dwp_v2_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
11918 struct dwarf2_section_info *section,
73869dc2
DE
11919 bfd_size_type offset, bfd_size_type size)
11920{
11921 struct dwarf2_section_info result;
11922 asection *sectp;
11923
11924 gdb_assert (section != NULL);
11925 gdb_assert (!section->is_virtual);
11926
11927 memset (&result, 0, sizeof (result));
11928 result.s.containing_section = section;
dc4ccb6f 11929 result.is_virtual = true;
73869dc2
DE
11930
11931 if (size == 0)
11932 return result;
11933
96b79293 11934 sectp = section->get_bfd_section ();
73869dc2
DE
11935
11936 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
11937 bounds of the real section. This is a pretty-rare event, so just
11938 flag an error (easier) instead of a warning and trying to cope. */
11939 if (sectp == NULL
fd361982 11940 || offset + size > bfd_section_size (sectp))
73869dc2 11941 {
73869dc2
DE
11942 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
11943 " in section %s [in module %s]"),
fd361982 11944 sectp ? bfd_section_name (sectp) : "<unknown>",
73869dc2
DE
11945 objfile_name (dwarf2_per_objfile->objfile));
11946 }
11947
11948 result.virtual_offset = offset;
11949 result.size = size;
11950 return result;
11951}
11952
11953/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
11954 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
11955 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
11956 This is for DWP version 2 files. */
11957
11958static struct dwo_unit *
ed2dc618
SM
11959create_dwo_unit_in_dwp_v2 (struct dwarf2_per_objfile *dwarf2_per_objfile,
11960 struct dwp_file *dwp_file,
73869dc2
DE
11961 uint32_t unit_index,
11962 const char *comp_dir,
11963 ULONGEST signature, int is_debug_types)
11964{
73869dc2
DE
11965 const struct dwp_hash_table *dwp_htab =
11966 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 11967 bfd *dbfd = dwp_file->dbfd.get ();
73869dc2
DE
11968 const char *kind = is_debug_types ? "TU" : "CU";
11969 struct dwo_file *dwo_file;
11970 struct dwo_unit *dwo_unit;
11971 struct virtual_v2_dwo_sections sections;
11972 void **dwo_file_slot;
73869dc2
DE
11973 int i;
11974
11975 gdb_assert (dwp_file->version == 2);
11976
b4f54984 11977 if (dwarf_read_debug)
73869dc2
DE
11978 {
11979 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
11980 kind,
11981 pulongest (unit_index), hex_string (signature),
11982 dwp_file->name);
11983 }
11984
11985 /* Fetch the section offsets of this DWO unit. */
11986
11987 memset (&sections, 0, sizeof (sections));
73869dc2
DE
11988
11989 for (i = 0; i < dwp_htab->nr_columns; ++i)
11990 {
11991 uint32_t offset = read_4_bytes (dbfd,
11992 dwp_htab->section_pool.v2.offsets
11993 + (((unit_index - 1) * dwp_htab->nr_columns
11994 + i)
11995 * sizeof (uint32_t)));
11996 uint32_t size = read_4_bytes (dbfd,
11997 dwp_htab->section_pool.v2.sizes
11998 + (((unit_index - 1) * dwp_htab->nr_columns
11999 + i)
12000 * sizeof (uint32_t)));
12001
12002 switch (dwp_htab->section_pool.v2.section_ids[i])
12003 {
12004 case DW_SECT_INFO:
12005 case DW_SECT_TYPES:
12006 sections.info_or_types_offset = offset;
12007 sections.info_or_types_size = size;
12008 break;
12009 case DW_SECT_ABBREV:
12010 sections.abbrev_offset = offset;
12011 sections.abbrev_size = size;
12012 break;
12013 case DW_SECT_LINE:
12014 sections.line_offset = offset;
12015 sections.line_size = size;
12016 break;
12017 case DW_SECT_LOC:
12018 sections.loc_offset = offset;
12019 sections.loc_size = size;
12020 break;
12021 case DW_SECT_STR_OFFSETS:
12022 sections.str_offsets_offset = offset;
12023 sections.str_offsets_size = size;
12024 break;
12025 case DW_SECT_MACINFO:
12026 sections.macinfo_offset = offset;
12027 sections.macinfo_size = size;
12028 break;
12029 case DW_SECT_MACRO:
12030 sections.macro_offset = offset;
12031 sections.macro_size = size;
12032 break;
12033 }
12034 }
12035
12036 /* It's easier for the rest of the code if we fake a struct dwo_file and
12037 have dwo_unit "live" in that. At least for now.
12038
12039 The DWP file can be made up of a random collection of CUs and TUs.
12040 However, for each CU + set of TUs that came from the same original DWO
12041 file, we can combine them back into a virtual DWO file to save space
12042 (fewer struct dwo_file objects to allocate). Remember that for really
12043 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12044
791afaa2
TT
12045 std::string virtual_dwo_name =
12046 string_printf ("virtual-dwo/%ld-%ld-%ld-%ld",
12047 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
12048 (long) (sections.line_size ? sections.line_offset : 0),
12049 (long) (sections.loc_size ? sections.loc_offset : 0),
12050 (long) (sections.str_offsets_size
12051 ? sections.str_offsets_offset : 0));
73869dc2 12052 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
12053 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12054 virtual_dwo_name.c_str (),
12055 comp_dir);
73869dc2
DE
12056 /* Create one if necessary. */
12057 if (*dwo_file_slot == NULL)
12058 {
b4f54984 12059 if (dwarf_read_debug)
73869dc2
DE
12060 {
12061 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12062 virtual_dwo_name.c_str ());
73869dc2 12063 }
51ac9db5 12064 dwo_file = new struct dwo_file;
45940949 12065 dwo_file->dwo_name = dwarf2_per_objfile->objfile->intern (virtual_dwo_name);
73869dc2
DE
12066 dwo_file->comp_dir = comp_dir;
12067 dwo_file->sections.abbrev =
ed2dc618 12068 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.abbrev,
73869dc2
DE
12069 sections.abbrev_offset, sections.abbrev_size);
12070 dwo_file->sections.line =
ed2dc618 12071 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.line,
73869dc2
DE
12072 sections.line_offset, sections.line_size);
12073 dwo_file->sections.loc =
ed2dc618 12074 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.loc,
73869dc2
DE
12075 sections.loc_offset, sections.loc_size);
12076 dwo_file->sections.macinfo =
ed2dc618 12077 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macinfo,
73869dc2
DE
12078 sections.macinfo_offset, sections.macinfo_size);
12079 dwo_file->sections.macro =
ed2dc618 12080 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macro,
73869dc2
DE
12081 sections.macro_offset, sections.macro_size);
12082 dwo_file->sections.str_offsets =
ed2dc618
SM
12083 create_dwp_v2_section (dwarf2_per_objfile,
12084 &dwp_file->sections.str_offsets,
73869dc2
DE
12085 sections.str_offsets_offset,
12086 sections.str_offsets_size);
12087 /* The "str" section is global to the entire DWP file. */
12088 dwo_file->sections.str = dwp_file->sections.str;
12089 /* The info or types section is assigned below to dwo_unit,
12090 there's no need to record it in dwo_file.
12091 Also, we can't simply record type sections in dwo_file because
12092 we record a pointer into the vector in dwo_unit. As we collect more
12093 types we'll grow the vector and eventually have to reallocate space
12094 for it, invalidating all copies of pointers into the previous
12095 contents. */
12096 *dwo_file_slot = dwo_file;
12097 }
12098 else
12099 {
b4f54984 12100 if (dwarf_read_debug)
73869dc2
DE
12101 {
12102 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12103 virtual_dwo_name.c_str ());
73869dc2 12104 }
9a3c8263 12105 dwo_file = (struct dwo_file *) *dwo_file_slot;
73869dc2 12106 }
73869dc2 12107
5989a64e 12108 dwo_unit = OBSTACK_ZALLOC (&dwarf2_per_objfile->per_bfd->obstack, struct dwo_unit);
73869dc2
DE
12109 dwo_unit->dwo_file = dwo_file;
12110 dwo_unit->signature = signature;
8d749320 12111 dwo_unit->section =
5989a64e 12112 XOBNEW (&dwarf2_per_objfile->per_bfd->obstack, struct dwarf2_section_info);
ed2dc618
SM
12113 *dwo_unit->section = create_dwp_v2_section (dwarf2_per_objfile,
12114 is_debug_types
73869dc2
DE
12115 ? &dwp_file->sections.types
12116 : &dwp_file->sections.info,
12117 sections.info_or_types_offset,
12118 sections.info_or_types_size);
12119 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12120
12121 return dwo_unit;
12122}
12123
57d63ce2
DE
12124/* Lookup the DWO unit with SIGNATURE in DWP_FILE.
12125 Returns NULL if the signature isn't found. */
80626a55
DE
12126
12127static struct dwo_unit *
ed2dc618
SM
12128lookup_dwo_unit_in_dwp (struct dwarf2_per_objfile *dwarf2_per_objfile,
12129 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 12130 ULONGEST signature, int is_debug_types)
80626a55 12131{
57d63ce2
DE
12132 const struct dwp_hash_table *dwp_htab =
12133 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12134 bfd *dbfd = dwp_file->dbfd.get ();
57d63ce2 12135 uint32_t mask = dwp_htab->nr_slots - 1;
80626a55
DE
12136 uint32_t hash = signature & mask;
12137 uint32_t hash2 = ((signature >> 32) & mask) | 1;
12138 unsigned int i;
12139 void **slot;
870f88f7 12140 struct dwo_unit find_dwo_cu;
80626a55
DE
12141
12142 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
12143 find_dwo_cu.signature = signature;
19ac8c2e 12144 slot = htab_find_slot (is_debug_types
48b490f2
TT
12145 ? dwp_file->loaded_tus.get ()
12146 : dwp_file->loaded_cus.get (),
19ac8c2e 12147 &find_dwo_cu, INSERT);
80626a55
DE
12148
12149 if (*slot != NULL)
9a3c8263 12150 return (struct dwo_unit *) *slot;
80626a55
DE
12151
12152 /* Use a for loop so that we don't loop forever on bad debug info. */
57d63ce2 12153 for (i = 0; i < dwp_htab->nr_slots; ++i)
80626a55
DE
12154 {
12155 ULONGEST signature_in_table;
12156
12157 signature_in_table =
57d63ce2 12158 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
80626a55
DE
12159 if (signature_in_table == signature)
12160 {
57d63ce2
DE
12161 uint32_t unit_index =
12162 read_4_bytes (dbfd,
12163 dwp_htab->unit_table + hash * sizeof (uint32_t));
80626a55 12164
73869dc2
DE
12165 if (dwp_file->version == 1)
12166 {
ed2dc618
SM
12167 *slot = create_dwo_unit_in_dwp_v1 (dwarf2_per_objfile,
12168 dwp_file, unit_index,
73869dc2
DE
12169 comp_dir, signature,
12170 is_debug_types);
12171 }
12172 else
12173 {
ed2dc618
SM
12174 *slot = create_dwo_unit_in_dwp_v2 (dwarf2_per_objfile,
12175 dwp_file, unit_index,
73869dc2
DE
12176 comp_dir, signature,
12177 is_debug_types);
12178 }
9a3c8263 12179 return (struct dwo_unit *) *slot;
80626a55
DE
12180 }
12181 if (signature_in_table == 0)
12182 return NULL;
12183 hash = (hash + hash2) & mask;
12184 }
12185
12186 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
12187 " [in module %s]"),
12188 dwp_file->name);
12189}
12190
ab5088bf 12191/* Subroutine of open_dwo_file,open_dwp_file to simplify them.
3019eac3
DE
12192 Open the file specified by FILE_NAME and hand it off to BFD for
12193 preliminary analysis. Return a newly initialized bfd *, which
12194 includes a canonicalized copy of FILE_NAME.
80626a55 12195 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
6ac97d4c
DE
12196 SEARCH_CWD is true if the current directory is to be searched.
12197 It will be searched before debug-file-directory.
13aaf454
DE
12198 If successful, the file is added to the bfd include table of the
12199 objfile's bfd (see gdb_bfd_record_inclusion).
6ac97d4c 12200 If unable to find/open the file, return NULL.
3019eac3
DE
12201 NOTE: This function is derived from symfile_bfd_open. */
12202
192b62ce 12203static gdb_bfd_ref_ptr
ed2dc618
SM
12204try_open_dwop_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12205 const char *file_name, int is_dwp, int search_cwd)
3019eac3 12206{
24b9144d 12207 int desc;
9c02c129
DE
12208 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
12209 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
12210 to debug_file_directory. */
e0cc99a6 12211 const char *search_path;
9c02c129
DE
12212 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
12213
e0cc99a6 12214 gdb::unique_xmalloc_ptr<char> search_path_holder;
6ac97d4c
DE
12215 if (search_cwd)
12216 {
12217 if (*debug_file_directory != '\0')
e0cc99a6
TT
12218 {
12219 search_path_holder.reset (concat (".", dirname_separator_string,
12220 debug_file_directory,
12221 (char *) NULL));
12222 search_path = search_path_holder.get ();
12223 }
6ac97d4c 12224 else
e0cc99a6 12225 search_path = ".";
6ac97d4c 12226 }
9c02c129 12227 else
e0cc99a6 12228 search_path = debug_file_directory;
3019eac3 12229
24b9144d 12230 openp_flags flags = OPF_RETURN_REALPATH;
80626a55
DE
12231 if (is_dwp)
12232 flags |= OPF_SEARCH_IN_PATH;
e0cc99a6
TT
12233
12234 gdb::unique_xmalloc_ptr<char> absolute_name;
9c02c129 12235 desc = openp (search_path, flags, file_name,
3019eac3
DE
12236 O_RDONLY | O_BINARY, &absolute_name);
12237 if (desc < 0)
12238 return NULL;
12239
e0cc99a6
TT
12240 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (absolute_name.get (),
12241 gnutarget, desc));
9c02c129
DE
12242 if (sym_bfd == NULL)
12243 return NULL;
192b62ce 12244 bfd_set_cacheable (sym_bfd.get (), 1);
3019eac3 12245
192b62ce
TT
12246 if (!bfd_check_format (sym_bfd.get (), bfd_object))
12247 return NULL;
3019eac3 12248
13aaf454
DE
12249 /* Success. Record the bfd as having been included by the objfile's bfd.
12250 This is important because things like demangled_names_hash lives in the
12251 objfile's per_bfd space and may have references to things like symbol
12252 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
192b62ce 12253 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd.get ());
13aaf454 12254
3019eac3
DE
12255 return sym_bfd;
12256}
12257
ab5088bf 12258/* Try to open DWO file FILE_NAME.
3019eac3
DE
12259 COMP_DIR is the DW_AT_comp_dir attribute.
12260 The result is the bfd handle of the file.
12261 If there is a problem finding or opening the file, return NULL.
12262 Upon success, the canonicalized path of the file is stored in the bfd,
12263 same as symfile_bfd_open. */
12264
192b62ce 12265static gdb_bfd_ref_ptr
ed2dc618
SM
12266open_dwo_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12267 const char *file_name, const char *comp_dir)
3019eac3 12268{
80626a55 12269 if (IS_ABSOLUTE_PATH (file_name))
ed2dc618
SM
12270 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12271 0 /*is_dwp*/, 0 /*search_cwd*/);
3019eac3
DE
12272
12273 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
12274
12275 if (comp_dir != NULL)
12276 {
43816ebc
TT
12277 gdb::unique_xmalloc_ptr<char> path_to_try
12278 (concat (comp_dir, SLASH_STRING, file_name, (char *) NULL));
3019eac3
DE
12279
12280 /* NOTE: If comp_dir is a relative path, this will also try the
12281 search path, which seems useful. */
ed2dc618 12282 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile,
43816ebc 12283 path_to_try.get (),
ed2dc618 12284 0 /*is_dwp*/,
192b62ce 12285 1 /*search_cwd*/));
3019eac3
DE
12286 if (abfd != NULL)
12287 return abfd;
12288 }
12289
12290 /* That didn't work, try debug-file-directory, which, despite its name,
12291 is a list of paths. */
12292
12293 if (*debug_file_directory == '\0')
12294 return NULL;
12295
ed2dc618
SM
12296 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12297 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
12298}
12299
80626a55
DE
12300/* This function is mapped across the sections and remembers the offset and
12301 size of each of the DWO debugging sections we are interested in. */
12302
12303static void
12304dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
12305{
9a3c8263 12306 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
80626a55
DE
12307 const struct dwop_section_names *names = &dwop_section_names;
12308
12309 if (section_is_p (sectp->name, &names->abbrev_dwo))
12310 {
049412e3 12311 dwo_sections->abbrev.s.section = sectp;
fd361982 12312 dwo_sections->abbrev.size = bfd_section_size (sectp);
80626a55
DE
12313 }
12314 else if (section_is_p (sectp->name, &names->info_dwo))
12315 {
049412e3 12316 dwo_sections->info.s.section = sectp;
fd361982 12317 dwo_sections->info.size = bfd_section_size (sectp);
80626a55
DE
12318 }
12319 else if (section_is_p (sectp->name, &names->line_dwo))
12320 {
049412e3 12321 dwo_sections->line.s.section = sectp;
fd361982 12322 dwo_sections->line.size = bfd_section_size (sectp);
80626a55
DE
12323 }
12324 else if (section_is_p (sectp->name, &names->loc_dwo))
12325 {
049412e3 12326 dwo_sections->loc.s.section = sectp;
fd361982 12327 dwo_sections->loc.size = bfd_section_size (sectp);
80626a55 12328 }
41144253 12329 else if (section_is_p (sectp->name, &names->loclists_dwo))
12330 {
12331 dwo_sections->loclists.s.section = sectp;
12332 dwo_sections->loclists.size = bfd_section_size (sectp);
12333 }
80626a55
DE
12334 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12335 {
049412e3 12336 dwo_sections->macinfo.s.section = sectp;
fd361982 12337 dwo_sections->macinfo.size = bfd_section_size (sectp);
80626a55
DE
12338 }
12339 else if (section_is_p (sectp->name, &names->macro_dwo))
12340 {
049412e3 12341 dwo_sections->macro.s.section = sectp;
fd361982 12342 dwo_sections->macro.size = bfd_section_size (sectp);
80626a55
DE
12343 }
12344 else if (section_is_p (sectp->name, &names->str_dwo))
12345 {
049412e3 12346 dwo_sections->str.s.section = sectp;
fd361982 12347 dwo_sections->str.size = bfd_section_size (sectp);
80626a55
DE
12348 }
12349 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12350 {
049412e3 12351 dwo_sections->str_offsets.s.section = sectp;
fd361982 12352 dwo_sections->str_offsets.size = bfd_section_size (sectp);
80626a55
DE
12353 }
12354 else if (section_is_p (sectp->name, &names->types_dwo))
12355 {
12356 struct dwarf2_section_info type_section;
12357
12358 memset (&type_section, 0, sizeof (type_section));
049412e3 12359 type_section.s.section = sectp;
fd361982 12360 type_section.size = bfd_section_size (sectp);
fd5866f6 12361 dwo_sections->types.push_back (type_section);
80626a55
DE
12362 }
12363}
12364
ab5088bf 12365/* Initialize the use of the DWO file specified by DWO_NAME and referenced
19c3d4c9 12366 by PER_CU. This is for the non-DWP case.
80626a55 12367 The result is NULL if DWO_NAME can't be found. */
3019eac3
DE
12368
12369static struct dwo_file *
4ab09049
SM
12370open_and_init_dwo_file (dwarf2_cu *cu, const char *dwo_name,
12371 const char *comp_dir)
3019eac3 12372{
4ab09049 12373 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
3019eac3 12374
fb1eb2f9 12375 gdb_bfd_ref_ptr dbfd = open_dwo_file (dwarf2_per_objfile, dwo_name, comp_dir);
80626a55
DE
12376 if (dbfd == NULL)
12377 {
b4f54984 12378 if (dwarf_read_debug)
80626a55
DE
12379 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
12380 return NULL;
12381 }
263db9a1 12382
51ac9db5 12383 dwo_file_up dwo_file (new struct dwo_file);
0ac5b59e
DE
12384 dwo_file->dwo_name = dwo_name;
12385 dwo_file->comp_dir = comp_dir;
fb1eb2f9 12386 dwo_file->dbfd = std::move (dbfd);
3019eac3 12387
fb1eb2f9 12388 bfd_map_over_sections (dwo_file->dbfd.get (), dwarf2_locate_dwo_sections,
192b62ce 12389 &dwo_file->sections);
3019eac3 12390
4ab09049 12391 create_cus_hash_table (dwarf2_per_objfile, cu, *dwo_file,
18a8505e 12392 dwo_file->sections.info, dwo_file->cus);
3019eac3 12393
263db9a1 12394 create_debug_types_hash_table (dwarf2_per_objfile, dwo_file.get (),
ed2dc618 12395 dwo_file->sections.types, dwo_file->tus);
3019eac3 12396
b4f54984 12397 if (dwarf_read_debug)
80626a55
DE
12398 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
12399
263db9a1 12400 return dwo_file.release ();
3019eac3
DE
12401}
12402
80626a55 12403/* This function is mapped across the sections and remembers the offset and
73869dc2
DE
12404 size of each of the DWP debugging sections common to version 1 and 2 that
12405 we are interested in. */
3019eac3 12406
80626a55 12407static void
73869dc2
DE
12408dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
12409 void *dwp_file_ptr)
3019eac3 12410{
9a3c8263 12411 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
80626a55
DE
12412 const struct dwop_section_names *names = &dwop_section_names;
12413 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
3019eac3 12414
80626a55 12415 /* Record the ELF section number for later lookup: this is what the
73869dc2 12416 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
80626a55
DE
12417 gdb_assert (elf_section_nr < dwp_file->num_sections);
12418 dwp_file->elf_sections[elf_section_nr] = sectp;
3019eac3 12419
80626a55
DE
12420 /* Look for specific sections that we need. */
12421 if (section_is_p (sectp->name, &names->str_dwo))
12422 {
049412e3 12423 dwp_file->sections.str.s.section = sectp;
fd361982 12424 dwp_file->sections.str.size = bfd_section_size (sectp);
80626a55
DE
12425 }
12426 else if (section_is_p (sectp->name, &names->cu_index))
12427 {
049412e3 12428 dwp_file->sections.cu_index.s.section = sectp;
fd361982 12429 dwp_file->sections.cu_index.size = bfd_section_size (sectp);
80626a55
DE
12430 }
12431 else if (section_is_p (sectp->name, &names->tu_index))
12432 {
049412e3 12433 dwp_file->sections.tu_index.s.section = sectp;
fd361982 12434 dwp_file->sections.tu_index.size = bfd_section_size (sectp);
80626a55
DE
12435 }
12436}
3019eac3 12437
73869dc2
DE
12438/* This function is mapped across the sections and remembers the offset and
12439 size of each of the DWP version 2 debugging sections that we are interested
12440 in. This is split into a separate function because we don't know if we
12441 have version 1 or 2 until we parse the cu_index/tu_index sections. */
12442
12443static void
12444dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
12445{
9a3c8263 12446 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
73869dc2
DE
12447 const struct dwop_section_names *names = &dwop_section_names;
12448 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
12449
12450 /* Record the ELF section number for later lookup: this is what the
12451 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
12452 gdb_assert (elf_section_nr < dwp_file->num_sections);
12453 dwp_file->elf_sections[elf_section_nr] = sectp;
12454
12455 /* Look for specific sections that we need. */
12456 if (section_is_p (sectp->name, &names->abbrev_dwo))
12457 {
049412e3 12458 dwp_file->sections.abbrev.s.section = sectp;
fd361982 12459 dwp_file->sections.abbrev.size = bfd_section_size (sectp);
73869dc2
DE
12460 }
12461 else if (section_is_p (sectp->name, &names->info_dwo))
12462 {
049412e3 12463 dwp_file->sections.info.s.section = sectp;
fd361982 12464 dwp_file->sections.info.size = bfd_section_size (sectp);
73869dc2
DE
12465 }
12466 else if (section_is_p (sectp->name, &names->line_dwo))
12467 {
049412e3 12468 dwp_file->sections.line.s.section = sectp;
fd361982 12469 dwp_file->sections.line.size = bfd_section_size (sectp);
73869dc2
DE
12470 }
12471 else if (section_is_p (sectp->name, &names->loc_dwo))
12472 {
049412e3 12473 dwp_file->sections.loc.s.section = sectp;
fd361982 12474 dwp_file->sections.loc.size = bfd_section_size (sectp);
73869dc2
DE
12475 }
12476 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12477 {
049412e3 12478 dwp_file->sections.macinfo.s.section = sectp;
fd361982 12479 dwp_file->sections.macinfo.size = bfd_section_size (sectp);
73869dc2
DE
12480 }
12481 else if (section_is_p (sectp->name, &names->macro_dwo))
12482 {
049412e3 12483 dwp_file->sections.macro.s.section = sectp;
fd361982 12484 dwp_file->sections.macro.size = bfd_section_size (sectp);
73869dc2
DE
12485 }
12486 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12487 {
049412e3 12488 dwp_file->sections.str_offsets.s.section = sectp;
fd361982 12489 dwp_file->sections.str_offsets.size = bfd_section_size (sectp);
73869dc2
DE
12490 }
12491 else if (section_is_p (sectp->name, &names->types_dwo))
12492 {
049412e3 12493 dwp_file->sections.types.s.section = sectp;
fd361982 12494 dwp_file->sections.types.size = bfd_section_size (sectp);
73869dc2
DE
12495 }
12496}
12497
80626a55 12498/* Hash function for dwp_file loaded CUs/TUs. */
3019eac3 12499
80626a55
DE
12500static hashval_t
12501hash_dwp_loaded_cutus (const void *item)
12502{
9a3c8263 12503 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3 12504
80626a55
DE
12505 /* This drops the top 32 bits of the signature, but is ok for a hash. */
12506 return dwo_unit->signature;
3019eac3
DE
12507}
12508
80626a55 12509/* Equality function for dwp_file loaded CUs/TUs. */
3019eac3 12510
80626a55
DE
12511static int
12512eq_dwp_loaded_cutus (const void *a, const void *b)
3019eac3 12513{
9a3c8263
SM
12514 const struct dwo_unit *dua = (const struct dwo_unit *) a;
12515 const struct dwo_unit *dub = (const struct dwo_unit *) b;
3019eac3 12516
80626a55
DE
12517 return dua->signature == dub->signature;
12518}
3019eac3 12519
80626a55 12520/* Allocate a hash table for dwp_file loaded CUs/TUs. */
3019eac3 12521
48b490f2 12522static htab_up
298e9637 12523allocate_dwp_loaded_cutus_table ()
80626a55 12524{
48b490f2
TT
12525 return htab_up (htab_create_alloc (3,
12526 hash_dwp_loaded_cutus,
12527 eq_dwp_loaded_cutus,
12528 NULL, xcalloc, xfree));
80626a55 12529}
3019eac3 12530
ab5088bf
DE
12531/* Try to open DWP file FILE_NAME.
12532 The result is the bfd handle of the file.
12533 If there is a problem finding or opening the file, return NULL.
12534 Upon success, the canonicalized path of the file is stored in the bfd,
12535 same as symfile_bfd_open. */
12536
192b62ce 12537static gdb_bfd_ref_ptr
ed2dc618
SM
12538open_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12539 const char *file_name)
ab5088bf 12540{
ed2dc618
SM
12541 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile, file_name,
12542 1 /*is_dwp*/,
192b62ce 12543 1 /*search_cwd*/));
6ac97d4c
DE
12544 if (abfd != NULL)
12545 return abfd;
12546
12547 /* Work around upstream bug 15652.
12548 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
12549 [Whether that's a "bug" is debatable, but it is getting in our way.]
12550 We have no real idea where the dwp file is, because gdb's realpath-ing
12551 of the executable's path may have discarded the needed info.
12552 [IWBN if the dwp file name was recorded in the executable, akin to
12553 .gnu_debuglink, but that doesn't exist yet.]
12554 Strip the directory from FILE_NAME and search again. */
12555 if (*debug_file_directory != '\0')
12556 {
12557 /* Don't implicitly search the current directory here.
12558 If the user wants to search "." to handle this case,
12559 it must be added to debug-file-directory. */
ed2dc618
SM
12560 return try_open_dwop_file (dwarf2_per_objfile,
12561 lbasename (file_name), 1 /*is_dwp*/,
6ac97d4c
DE
12562 0 /*search_cwd*/);
12563 }
12564
12565 return NULL;
ab5088bf
DE
12566}
12567
80626a55
DE
12568/* Initialize the use of the DWP file for the current objfile.
12569 By convention the name of the DWP file is ${objfile}.dwp.
12570 The result is NULL if it can't be found. */
a766d390 12571
400174b1 12572static std::unique_ptr<struct dwp_file>
ed2dc618 12573open_and_init_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
80626a55
DE
12574{
12575 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55 12576
82bf32bc
JK
12577 /* Try to find first .dwp for the binary file before any symbolic links
12578 resolving. */
6c447423
DE
12579
12580 /* If the objfile is a debug file, find the name of the real binary
12581 file and get the name of dwp file from there. */
d721ba37 12582 std::string dwp_name;
6c447423
DE
12583 if (objfile->separate_debug_objfile_backlink != NULL)
12584 {
12585 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
12586 const char *backlink_basename = lbasename (backlink->original_name);
6c447423 12587
d721ba37 12588 dwp_name = ldirname (objfile->original_name) + SLASH_STRING + backlink_basename;
6c447423
DE
12589 }
12590 else
d721ba37
PA
12591 dwp_name = objfile->original_name;
12592
12593 dwp_name += ".dwp";
80626a55 12594
ed2dc618 12595 gdb_bfd_ref_ptr dbfd (open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ()));
82bf32bc
JK
12596 if (dbfd == NULL
12597 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
12598 {
12599 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
d721ba37
PA
12600 dwp_name = objfile_name (objfile);
12601 dwp_name += ".dwp";
ed2dc618 12602 dbfd = open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ());
82bf32bc
JK
12603 }
12604
80626a55
DE
12605 if (dbfd == NULL)
12606 {
b4f54984 12607 if (dwarf_read_debug)
d721ba37 12608 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name.c_str ());
400174b1 12609 return std::unique_ptr<dwp_file> ();
3019eac3 12610 }
400174b1
TT
12611
12612 const char *name = bfd_get_filename (dbfd.get ());
12613 std::unique_ptr<struct dwp_file> dwp_file
12614 (new struct dwp_file (name, std::move (dbfd)));
c906108c 12615
0a0f4c01 12616 dwp_file->num_sections = elf_numsections (dwp_file->dbfd);
80626a55 12617 dwp_file->elf_sections =
5989a64e 12618 OBSTACK_CALLOC (&dwarf2_per_objfile->per_bfd->obstack,
80626a55
DE
12619 dwp_file->num_sections, asection *);
12620
400174b1
TT
12621 bfd_map_over_sections (dwp_file->dbfd.get (),
12622 dwarf2_locate_common_dwp_sections,
12623 dwp_file.get ());
80626a55 12624
400174b1
TT
12625 dwp_file->cus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
12626 0);
80626a55 12627
400174b1
TT
12628 dwp_file->tus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
12629 1);
80626a55 12630
73869dc2 12631 /* The DWP file version is stored in the hash table. Oh well. */
08302ed2
DE
12632 if (dwp_file->cus && dwp_file->tus
12633 && dwp_file->cus->version != dwp_file->tus->version)
73869dc2
DE
12634 {
12635 /* Technically speaking, we should try to limp along, but this is
fbcbc3fd 12636 pretty bizarre. We use pulongest here because that's the established
4d65956b 12637 portability solution (e.g, we cannot use %u for uint32_t). */
fbcbc3fd
DE
12638 error (_("Dwarf Error: DWP file CU version %s doesn't match"
12639 " TU version %s [in DWP file %s]"),
12640 pulongest (dwp_file->cus->version),
d721ba37 12641 pulongest (dwp_file->tus->version), dwp_name.c_str ());
73869dc2 12642 }
08302ed2
DE
12643
12644 if (dwp_file->cus)
12645 dwp_file->version = dwp_file->cus->version;
12646 else if (dwp_file->tus)
12647 dwp_file->version = dwp_file->tus->version;
12648 else
12649 dwp_file->version = 2;
73869dc2
DE
12650
12651 if (dwp_file->version == 2)
400174b1
TT
12652 bfd_map_over_sections (dwp_file->dbfd.get (),
12653 dwarf2_locate_v2_dwp_sections,
12654 dwp_file.get ());
73869dc2 12655
298e9637
SM
12656 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table ();
12657 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table ();
80626a55 12658
b4f54984 12659 if (dwarf_read_debug)
80626a55
DE
12660 {
12661 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
12662 fprintf_unfiltered (gdb_stdlog,
21aa081e
PA
12663 " %s CUs, %s TUs\n",
12664 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
12665 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
80626a55
DE
12666 }
12667
12668 return dwp_file;
3019eac3 12669}
c906108c 12670
ab5088bf
DE
12671/* Wrapper around open_and_init_dwp_file, only open it once. */
12672
12673static struct dwp_file *
ed2dc618 12674get_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
ab5088bf 12675{
5989a64e 12676 if (! dwarf2_per_objfile->per_bfd->dwp_checked)
ab5088bf 12677 {
5989a64e 12678 dwarf2_per_objfile->per_bfd->dwp_file
ed2dc618 12679 = open_and_init_dwp_file (dwarf2_per_objfile);
5989a64e 12680 dwarf2_per_objfile->per_bfd->dwp_checked = 1;
ab5088bf 12681 }
5989a64e 12682 return dwarf2_per_objfile->per_bfd->dwp_file.get ();
ab5088bf
DE
12683}
12684
80626a55
DE
12685/* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
12686 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
12687 or in the DWP file for the objfile, referenced by THIS_UNIT.
3019eac3 12688 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
80626a55
DE
12689 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
12690
12691 This is called, for example, when wanting to read a variable with a
12692 complex location. Therefore we don't want to do file i/o for every call.
12693 Therefore we don't want to look for a DWO file on every call.
12694 Therefore we first see if we've already seen SIGNATURE in a DWP file,
12695 then we check if we've already seen DWO_NAME, and only THEN do we check
12696 for a DWO file.
12697
1c658ad5 12698 The result is a pointer to the dwo_unit object or NULL if we didn't find it
80626a55 12699 (dwo_id mismatch or couldn't find the DWO/DWP file). */
debd256d 12700
3019eac3 12701static struct dwo_unit *
4ab09049 12702lookup_dwo_cutu (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
80626a55 12703 ULONGEST signature, int is_debug_types)
3019eac3 12704{
4ab09049 12705 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
3019eac3 12706 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55
DE
12707 const char *kind = is_debug_types ? "TU" : "CU";
12708 void **dwo_file_slot;
3019eac3 12709 struct dwo_file *dwo_file;
80626a55 12710 struct dwp_file *dwp_file;
cb1df416 12711
6a506a2d
DE
12712 /* First see if there's a DWP file.
12713 If we have a DWP file but didn't find the DWO inside it, don't
12714 look for the original DWO file. It makes gdb behave differently
12715 depending on whether one is debugging in the build tree. */
cf2c3c16 12716
ed2dc618 12717 dwp_file = get_dwp_file (dwarf2_per_objfile);
80626a55 12718 if (dwp_file != NULL)
cf2c3c16 12719 {
80626a55
DE
12720 const struct dwp_hash_table *dwp_htab =
12721 is_debug_types ? dwp_file->tus : dwp_file->cus;
12722
12723 if (dwp_htab != NULL)
12724 {
12725 struct dwo_unit *dwo_cutu =
ed2dc618 12726 lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, comp_dir,
57d63ce2 12727 signature, is_debug_types);
80626a55
DE
12728
12729 if (dwo_cutu != NULL)
12730 {
b4f54984 12731 if (dwarf_read_debug)
80626a55
DE
12732 {
12733 fprintf_unfiltered (gdb_stdlog,
12734 "Virtual DWO %s %s found: @%s\n",
12735 kind, hex_string (signature),
12736 host_address_to_string (dwo_cutu));
12737 }
12738 return dwo_cutu;
12739 }
12740 }
12741 }
6a506a2d 12742 else
80626a55 12743 {
6a506a2d 12744 /* No DWP file, look for the DWO file. */
80626a55 12745
ed2dc618
SM
12746 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12747 dwo_name, comp_dir);
6a506a2d 12748 if (*dwo_file_slot == NULL)
80626a55 12749 {
6a506a2d 12750 /* Read in the file and build a table of the CUs/TUs it contains. */
4ab09049 12751 *dwo_file_slot = open_and_init_dwo_file (cu, dwo_name, comp_dir);
19c3d4c9 12752 }
6a506a2d 12753 /* NOTE: This will be NULL if unable to open the file. */
9a3c8263 12754 dwo_file = (struct dwo_file *) *dwo_file_slot;
3019eac3 12755
6a506a2d 12756 if (dwo_file != NULL)
19c3d4c9 12757 {
6a506a2d
DE
12758 struct dwo_unit *dwo_cutu = NULL;
12759
12760 if (is_debug_types && dwo_file->tus)
12761 {
12762 struct dwo_unit find_dwo_cutu;
12763
12764 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
12765 find_dwo_cutu.signature = signature;
9a3c8263 12766 dwo_cutu
b0b6a987
TT
12767 = (struct dwo_unit *) htab_find (dwo_file->tus.get (),
12768 &find_dwo_cutu);
6a506a2d 12769 }
33c5cd75 12770 else if (!is_debug_types && dwo_file->cus)
80626a55 12771 {
33c5cd75
DB
12772 struct dwo_unit find_dwo_cutu;
12773
12774 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
12775 find_dwo_cutu.signature = signature;
b0b6a987 12776 dwo_cutu = (struct dwo_unit *)htab_find (dwo_file->cus.get (),
33c5cd75 12777 &find_dwo_cutu);
6a506a2d
DE
12778 }
12779
12780 if (dwo_cutu != NULL)
12781 {
b4f54984 12782 if (dwarf_read_debug)
6a506a2d
DE
12783 {
12784 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
12785 kind, dwo_name, hex_string (signature),
12786 host_address_to_string (dwo_cutu));
12787 }
12788 return dwo_cutu;
80626a55
DE
12789 }
12790 }
2e276125 12791 }
9cdd5dbd 12792
80626a55
DE
12793 /* We didn't find it. This could mean a dwo_id mismatch, or
12794 someone deleted the DWO/DWP file, or the search path isn't set up
12795 correctly to find the file. */
12796
b4f54984 12797 if (dwarf_read_debug)
80626a55
DE
12798 {
12799 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
12800 kind, dwo_name, hex_string (signature));
12801 }
3019eac3 12802
6656a72d
DE
12803 /* This is a warning and not a complaint because it can be caused by
12804 pilot error (e.g., user accidentally deleting the DWO). */
43942612
DE
12805 {
12806 /* Print the name of the DWP file if we looked there, helps the user
12807 better diagnose the problem. */
791afaa2 12808 std::string dwp_text;
43942612
DE
12809
12810 if (dwp_file != NULL)
791afaa2
TT
12811 dwp_text = string_printf (" [in DWP file %s]",
12812 lbasename (dwp_file->name));
43942612 12813
9d8780f0 12814 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset %s"
43942612 12815 " [in module %s]"),
4ab09049
SM
12816 kind, dwo_name, hex_string (signature), dwp_text.c_str (), kind,
12817 sect_offset_str (cu->per_cu->sect_off), objfile_name (objfile));
43942612 12818 }
3019eac3 12819 return NULL;
5fb290d7
DJ
12820}
12821
80626a55
DE
12822/* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
12823 See lookup_dwo_cutu_unit for details. */
12824
12825static struct dwo_unit *
4ab09049 12826lookup_dwo_comp_unit (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
80626a55
DE
12827 ULONGEST signature)
12828{
4ab09049
SM
12829 gdb_assert (!cu->per_cu->is_debug_types);
12830
12831 return lookup_dwo_cutu (cu, dwo_name, comp_dir, signature, 0);
80626a55
DE
12832}
12833
12834/* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
12835 See lookup_dwo_cutu_unit for details. */
12836
12837static struct dwo_unit *
4ab09049 12838lookup_dwo_type_unit (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir)
80626a55 12839{
4ab09049
SM
12840 gdb_assert (cu->per_cu->is_debug_types);
12841
12842 signatured_type *sig_type = (signatured_type *) cu->per_cu;
12843
12844 return lookup_dwo_cutu (cu, dwo_name, comp_dir, sig_type->signature, 1);
80626a55
DE
12845}
12846
89e63ee4
DE
12847/* Traversal function for queue_and_load_all_dwo_tus. */
12848
12849static int
12850queue_and_load_dwo_tu (void **slot, void *info)
12851{
12852 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
d460f660 12853 dwarf2_cu *cu = (dwarf2_cu *) info;
89e63ee4 12854 ULONGEST signature = dwo_unit->signature;
d460f660 12855 signatured_type *sig_type = lookup_dwo_signatured_type (cu, signature);
89e63ee4
DE
12856
12857 if (sig_type != NULL)
12858 {
12859 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
12860
12861 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
12862 a real dependency of PER_CU on SIG_TYPE. That is detected later
12863 while processing PER_CU. */
d460f660
SM
12864 if (maybe_queue_comp_unit (NULL, sig_cu, cu->language))
12865 load_full_type_unit (sig_cu, cu->per_objfile);
12866 cu->per_cu->imported_symtabs_push (sig_cu);
89e63ee4
DE
12867 }
12868
12869 return 1;
12870}
12871
12872/* Queue all TUs contained in the DWO of PER_CU to be read in.
12873 The DWO may have the only definition of the type, though it may not be
12874 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
12875 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
12876
12877static void
12878queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
12879{
12880 struct dwo_unit *dwo_unit;
12881 struct dwo_file *dwo_file;
12882
12883 gdb_assert (!per_cu->is_debug_types);
89e63ee4 12884 gdb_assert (per_cu->cu != NULL);
64874a40 12885 gdb_assert (get_dwp_file (per_cu->cu->per_objfile) == NULL);
89e63ee4
DE
12886
12887 dwo_unit = per_cu->cu->dwo_unit;
12888 gdb_assert (dwo_unit != NULL);
12889
12890 dwo_file = dwo_unit->dwo_file;
12891 if (dwo_file->tus != NULL)
b0b6a987 12892 htab_traverse_noresize (dwo_file->tus.get (), queue_and_load_dwo_tu,
d460f660 12893 per_cu->cu);
89e63ee4
DE
12894}
12895
3019eac3 12896/* Read in various DIEs. */
348e048f 12897
d389af10 12898/* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3e43a32a
MS
12899 Inherit only the children of the DW_AT_abstract_origin DIE not being
12900 already referenced by DW_AT_abstract_origin from the children of the
12901 current DIE. */
d389af10
JK
12902
12903static void
12904inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
12905{
12906 struct die_info *child_die;
791afaa2 12907 sect_offset *offsetp;
d389af10
JK
12908 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
12909 struct die_info *origin_die;
12910 /* Iterator of the ORIGIN_DIE children. */
12911 struct die_info *origin_child_die;
d389af10 12912 struct attribute *attr;
cd02d79d
PA
12913 struct dwarf2_cu *origin_cu;
12914 struct pending **origin_previous_list_in_scope;
d389af10
JK
12915
12916 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
12917 if (!attr)
12918 return;
12919
cd02d79d
PA
12920 /* Note that following die references may follow to a die in a
12921 different cu. */
12922
12923 origin_cu = cu;
12924 origin_die = follow_die_ref (die, attr, &origin_cu);
12925
12926 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
12927 symbols in. */
12928 origin_previous_list_in_scope = origin_cu->list_in_scope;
12929 origin_cu->list_in_scope = cu->list_in_scope;
12930
edb3359d
DJ
12931 if (die->tag != origin_die->tag
12932 && !(die->tag == DW_TAG_inlined_subroutine
12933 && origin_die->tag == DW_TAG_subprogram))
b98664d3 12934 complaint (_("DIE %s and its abstract origin %s have different tags"),
9d8780f0
SM
12935 sect_offset_str (die->sect_off),
12936 sect_offset_str (origin_die->sect_off));
d389af10 12937
791afaa2 12938 std::vector<sect_offset> offsets;
d389af10 12939
3ea89b92
PMR
12940 for (child_die = die->child;
12941 child_die && child_die->tag;
436c571c 12942 child_die = child_die->sibling)
3ea89b92
PMR
12943 {
12944 struct die_info *child_origin_die;
12945 struct dwarf2_cu *child_origin_cu;
12946
12947 /* We are trying to process concrete instance entries:
216f72a1 12948 DW_TAG_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
3ea89b92
PMR
12949 it's not relevant to our analysis here. i.e. detecting DIEs that are
12950 present in the abstract instance but not referenced in the concrete
12951 one. */
216f72a1
JK
12952 if (child_die->tag == DW_TAG_call_site
12953 || child_die->tag == DW_TAG_GNU_call_site)
3ea89b92
PMR
12954 continue;
12955
c38f313d
DJ
12956 /* For each CHILD_DIE, find the corresponding child of
12957 ORIGIN_DIE. If there is more than one layer of
12958 DW_AT_abstract_origin, follow them all; there shouldn't be,
12959 but GCC versions at least through 4.4 generate this (GCC PR
12960 40573). */
3ea89b92
PMR
12961 child_origin_die = child_die;
12962 child_origin_cu = cu;
c38f313d
DJ
12963 while (1)
12964 {
cd02d79d
PA
12965 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
12966 child_origin_cu);
c38f313d
DJ
12967 if (attr == NULL)
12968 break;
cd02d79d
PA
12969 child_origin_die = follow_die_ref (child_origin_die, attr,
12970 &child_origin_cu);
c38f313d
DJ
12971 }
12972
d389af10
JK
12973 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
12974 counterpart may exist. */
c38f313d 12975 if (child_origin_die != child_die)
d389af10 12976 {
edb3359d
DJ
12977 if (child_die->tag != child_origin_die->tag
12978 && !(child_die->tag == DW_TAG_inlined_subroutine
12979 && child_origin_die->tag == DW_TAG_subprogram))
b98664d3 12980 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 12981 "different tags"),
9d8780f0
SM
12982 sect_offset_str (child_die->sect_off),
12983 sect_offset_str (child_origin_die->sect_off));
c38f313d 12984 if (child_origin_die->parent != origin_die)
b98664d3 12985 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 12986 "different parents"),
9d8780f0
SM
12987 sect_offset_str (child_die->sect_off),
12988 sect_offset_str (child_origin_die->sect_off));
c38f313d 12989 else
791afaa2 12990 offsets.push_back (child_origin_die->sect_off);
d389af10 12991 }
d389af10 12992 }
791afaa2
TT
12993 std::sort (offsets.begin (), offsets.end ());
12994 sect_offset *offsets_end = offsets.data () + offsets.size ();
12995 for (offsetp = offsets.data () + 1; offsetp < offsets_end; offsetp++)
9c541725 12996 if (offsetp[-1] == *offsetp)
b98664d3 12997 complaint (_("Multiple children of DIE %s refer "
9d8780f0
SM
12998 "to DIE %s as their abstract origin"),
12999 sect_offset_str (die->sect_off), sect_offset_str (*offsetp));
d389af10 13000
791afaa2 13001 offsetp = offsets.data ();
d389af10
JK
13002 origin_child_die = origin_die->child;
13003 while (origin_child_die && origin_child_die->tag)
13004 {
13005 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
b64f50a1 13006 while (offsetp < offsets_end
9c541725 13007 && *offsetp < origin_child_die->sect_off)
d389af10 13008 offsetp++;
b64f50a1 13009 if (offsetp >= offsets_end
9c541725 13010 || *offsetp > origin_child_die->sect_off)
d389af10 13011 {
adde2bff
DE
13012 /* Found that ORIGIN_CHILD_DIE is really not referenced.
13013 Check whether we're already processing ORIGIN_CHILD_DIE.
13014 This can happen with mutually referenced abstract_origins.
13015 PR 16581. */
13016 if (!origin_child_die->in_process)
13017 process_die (origin_child_die, origin_cu);
d389af10 13018 }
436c571c 13019 origin_child_die = origin_child_die->sibling;
d389af10 13020 }
cd02d79d 13021 origin_cu->list_in_scope = origin_previous_list_in_scope;
8d9a2568
KB
13022
13023 if (cu != origin_cu)
13024 compute_delayed_physnames (origin_cu);
d389af10
JK
13025}
13026
c906108c 13027static void
e7c27a73 13028read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13029{
5e22e966 13030 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 13031 struct gdbarch *gdbarch = objfile->arch ();
fe978cb0 13032 struct context_stack *newobj;
c906108c
SS
13033 CORE_ADDR lowpc;
13034 CORE_ADDR highpc;
13035 struct die_info *child_die;
edb3359d 13036 struct attribute *attr, *call_line, *call_file;
15d034d0 13037 const char *name;
e142c38c 13038 CORE_ADDR baseaddr;
801e3a5b 13039 struct block *block;
edb3359d 13040 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
2f4732b0 13041 std::vector<struct symbol *> template_args;
34eaf542 13042 struct template_symbol *templ_func = NULL;
edb3359d
DJ
13043
13044 if (inlined_func)
13045 {
13046 /* If we do not have call site information, we can't show the
13047 caller of this inlined function. That's too confusing, so
13048 only use the scope for local variables. */
13049 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
13050 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
13051 if (call_line == NULL || call_file == NULL)
13052 {
13053 read_lexical_block_scope (die, cu);
13054 return;
13055 }
13056 }
c906108c 13057
b3b3bada 13058 baseaddr = objfile->text_section_offset ();
e142c38c 13059
94af9270 13060 name = dwarf2_name (die, cu);
c906108c 13061
e8d05480
JB
13062 /* Ignore functions with missing or empty names. These are actually
13063 illegal according to the DWARF standard. */
13064 if (name == NULL)
13065 {
b98664d3 13066 complaint (_("missing name for subprogram DIE at %s"),
9d8780f0 13067 sect_offset_str (die->sect_off));
e8d05480
JB
13068 return;
13069 }
13070
13071 /* Ignore functions with missing or invalid low and high pc attributes. */
3a2b436a 13072 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
e385593e 13073 <= PC_BOUNDS_INVALID)
e8d05480 13074 {
ae4d0c03
PM
13075 attr = dwarf2_attr (die, DW_AT_external, cu);
13076 if (!attr || !DW_UNSND (attr))
b98664d3 13077 complaint (_("cannot get low and high bounds "
9d8780f0
SM
13078 "for subprogram DIE at %s"),
13079 sect_offset_str (die->sect_off));
e8d05480
JB
13080 return;
13081 }
c906108c 13082
3e29f34a
MR
13083 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13084 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13085
34eaf542
TT
13086 /* If we have any template arguments, then we must allocate a
13087 different sort of symbol. */
436c571c 13088 for (child_die = die->child; child_die; child_die = child_die->sibling)
34eaf542
TT
13089 {
13090 if (child_die->tag == DW_TAG_template_type_param
13091 || child_die->tag == DW_TAG_template_value_param)
13092 {
8c14c3a3 13093 templ_func = new (&objfile->objfile_obstack) template_symbol;
cf724bc9 13094 templ_func->subclass = SYMBOL_TEMPLATE;
34eaf542
TT
13095 break;
13096 }
13097 }
13098
c24bdb02 13099 newobj = cu->get_builder ()->push_context (0, lowpc);
5e2db402
TT
13100 newobj->name = new_symbol (die, read_type_die (die, cu), cu,
13101 (struct symbol *) templ_func);
4c2df51b 13102
81873cc8 13103 if (dwarf2_flag_true_p (die, DW_AT_main_subprogram, cu))
987012b8 13104 set_objfile_main_name (objfile, newobj->name->linkage_name (),
81873cc8
TV
13105 cu->language);
13106
4cecd739
DJ
13107 /* If there is a location expression for DW_AT_frame_base, record
13108 it. */
e142c38c 13109 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
435d3d88 13110 if (attr != nullptr)
fe978cb0 13111 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
4c2df51b 13112
63e43d3a
PMR
13113 /* If there is a location for the static link, record it. */
13114 newobj->static_link = NULL;
13115 attr = dwarf2_attr (die, DW_AT_static_link, cu);
435d3d88 13116 if (attr != nullptr)
63e43d3a 13117 {
224c3ddb
SM
13118 newobj->static_link
13119 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
9a49df9d 13120 attr_to_dynamic_prop (attr, die, cu, newobj->static_link,
293e7e51 13121 cu->addr_type ());
63e43d3a
PMR
13122 }
13123
c24bdb02 13124 cu->list_in_scope = cu->get_builder ()->get_local_symbols ();
c906108c 13125
639d11d3 13126 if (die->child != NULL)
c906108c 13127 {
639d11d3 13128 child_die = die->child;
c906108c
SS
13129 while (child_die && child_die->tag)
13130 {
34eaf542
TT
13131 if (child_die->tag == DW_TAG_template_type_param
13132 || child_die->tag == DW_TAG_template_value_param)
13133 {
13134 struct symbol *arg = new_symbol (child_die, NULL, cu);
13135
f1078f66 13136 if (arg != NULL)
2f4732b0 13137 template_args.push_back (arg);
34eaf542
TT
13138 }
13139 else
13140 process_die (child_die, cu);
436c571c 13141 child_die = child_die->sibling;
c906108c
SS
13142 }
13143 }
13144
d389af10
JK
13145 inherit_abstract_dies (die, cu);
13146
4a811a97
UW
13147 /* If we have a DW_AT_specification, we might need to import using
13148 directives from the context of the specification DIE. See the
13149 comment in determine_prefix. */
13150 if (cu->language == language_cplus
13151 && dwarf2_attr (die, DW_AT_specification, cu))
13152 {
13153 struct dwarf2_cu *spec_cu = cu;
13154 struct die_info *spec_die = die_specification (die, &spec_cu);
13155
13156 while (spec_die)
13157 {
13158 child_die = spec_die->child;
13159 while (child_die && child_die->tag)
13160 {
13161 if (child_die->tag == DW_TAG_imported_module)
13162 process_die (child_die, spec_cu);
436c571c 13163 child_die = child_die->sibling;
4a811a97
UW
13164 }
13165
13166 /* In some cases, GCC generates specification DIEs that
13167 themselves contain DW_AT_specification attributes. */
13168 spec_die = die_specification (spec_die, &spec_cu);
13169 }
13170 }
13171
c24bdb02 13172 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13173 /* Make a block for the local symbols within. */
c24bdb02 13174 block = cu->get_builder ()->finish_block (cstk.name, cstk.old_blocks,
804d2729 13175 cstk.static_link, lowpc, highpc);
801e3a5b 13176
df8a16a1 13177 /* For C++, set the block's scope. */
45280282
IB
13178 if ((cu->language == language_cplus
13179 || cu->language == language_fortran
c44af4eb
TT
13180 || cu->language == language_d
13181 || cu->language == language_rust)
4d4ec4e5 13182 && cu->processing_has_namespace_info)
195a3f6c
TT
13183 block_set_scope (block, determine_prefix (die, cu),
13184 &objfile->objfile_obstack);
df8a16a1 13185
801e3a5b
JB
13186 /* If we have address ranges, record them. */
13187 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6e70227d 13188
a60f3166 13189 gdbarch_make_symbol_special (gdbarch, cstk.name, objfile);
3e29f34a 13190
34eaf542 13191 /* Attach template arguments to function. */
2f4732b0 13192 if (!template_args.empty ())
34eaf542
TT
13193 {
13194 gdb_assert (templ_func != NULL);
13195
2f4732b0 13196 templ_func->n_template_arguments = template_args.size ();
34eaf542 13197 templ_func->template_arguments
8d749320
SM
13198 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
13199 templ_func->n_template_arguments);
34eaf542 13200 memcpy (templ_func->template_arguments,
2f4732b0 13201 template_args.data (),
34eaf542 13202 (templ_func->n_template_arguments * sizeof (struct symbol *)));
3e1d3d8c
TT
13203
13204 /* Make sure that the symtab is set on the new symbols. Even
13205 though they don't appear in this symtab directly, other parts
13206 of gdb assume that symbols do, and this is reasonably
13207 true. */
8634679f 13208 for (symbol *sym : template_args)
3e1d3d8c 13209 symbol_set_symtab (sym, symbol_symtab (templ_func));
34eaf542
TT
13210 }
13211
208d8187
JB
13212 /* In C++, we can have functions nested inside functions (e.g., when
13213 a function declares a class that has methods). This means that
13214 when we finish processing a function scope, we may need to go
13215 back to building a containing block's symbol lists. */
c24bdb02
KS
13216 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13217 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
208d8187 13218
921e78cf
JB
13219 /* If we've finished processing a top-level function, subsequent
13220 symbols go in the file symbol list. */
c24bdb02
KS
13221 if (cu->get_builder ()->outermost_context_p ())
13222 cu->list_in_scope = cu->get_builder ()->get_file_symbols ();
c906108c
SS
13223}
13224
13225/* Process all the DIES contained within a lexical block scope. Start
13226 a new scope, process the dies, and then close the scope. */
13227
13228static void
e7c27a73 13229read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13230{
5e22e966 13231 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 13232 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
13233 CORE_ADDR lowpc, highpc;
13234 struct die_info *child_die;
e142c38c
DJ
13235 CORE_ADDR baseaddr;
13236
b3b3bada 13237 baseaddr = objfile->text_section_offset ();
c906108c
SS
13238
13239 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
13240 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
13241 as multiple lexical blocks? Handling children in a sane way would
6e70227d 13242 be nasty. Might be easier to properly extend generic blocks to
af34e669 13243 describe ranges. */
e385593e
JK
13244 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
13245 {
13246 case PC_BOUNDS_NOT_PRESENT:
13247 /* DW_TAG_lexical_block has no attributes, process its children as if
13248 there was no wrapping by that DW_TAG_lexical_block.
13249 GCC does no longer produces such DWARF since GCC r224161. */
13250 for (child_die = die->child;
13251 child_die != NULL && child_die->tag;
436c571c 13252 child_die = child_die->sibling)
4f7bc5ed
TT
13253 {
13254 /* We might already be processing this DIE. This can happen
13255 in an unusual circumstance -- where a subroutine A
13256 appears lexically in another subroutine B, but A actually
13257 inlines B. The recursion is broken here, rather than in
13258 inherit_abstract_dies, because it seems better to simply
13259 drop concrete children here. */
13260 if (!child_die->in_process)
13261 process_die (child_die, cu);
13262 }
e385593e
JK
13263 return;
13264 case PC_BOUNDS_INVALID:
13265 return;
13266 }
3e29f34a
MR
13267 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13268 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13269
c24bdb02 13270 cu->get_builder ()->push_context (0, lowpc);
639d11d3 13271 if (die->child != NULL)
c906108c 13272 {
639d11d3 13273 child_die = die->child;
c906108c
SS
13274 while (child_die && child_die->tag)
13275 {
e7c27a73 13276 process_die (child_die, cu);
436c571c 13277 child_die = child_die->sibling;
c906108c
SS
13278 }
13279 }
3ea89b92 13280 inherit_abstract_dies (die, cu);
c24bdb02 13281 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13282
c24bdb02
KS
13283 if (*cu->get_builder ()->get_local_symbols () != NULL
13284 || (*cu->get_builder ()->get_local_using_directives ()) != NULL)
c906108c 13285 {
801e3a5b 13286 struct block *block
c24bdb02 13287 = cu->get_builder ()->finish_block (0, cstk.old_blocks, NULL,
804d2729 13288 cstk.start_addr, highpc);
801e3a5b
JB
13289
13290 /* Note that recording ranges after traversing children, as we
13291 do here, means that recording a parent's ranges entails
13292 walking across all its children's ranges as they appear in
13293 the address map, which is quadratic behavior.
13294
13295 It would be nicer to record the parent's ranges before
13296 traversing its children, simply overriding whatever you find
13297 there. But since we don't even decide whether to create a
13298 block until after we've traversed its children, that's hard
13299 to do. */
13300 dwarf2_record_block_ranges (die, block, baseaddr, cu);
c906108c 13301 }
c24bdb02
KS
13302 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13303 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
c906108c
SS
13304}
13305
216f72a1 13306/* Read in DW_TAG_call_site and insert it to CU->call_site_htab. */
96408a79
SA
13307
13308static void
13309read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
13310{
5e22e966 13311 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 13312 struct objfile *objfile = per_objfile->objfile;
08feed99 13313 struct gdbarch *gdbarch = objfile->arch ();
96408a79
SA
13314 CORE_ADDR pc, baseaddr;
13315 struct attribute *attr;
13316 struct call_site *call_site, call_site_local;
13317 void **slot;
13318 int nparams;
13319 struct die_info *child_die;
13320
b3b3bada 13321 baseaddr = objfile->text_section_offset ();
96408a79 13322
216f72a1
JK
13323 attr = dwarf2_attr (die, DW_AT_call_return_pc, cu);
13324 if (attr == NULL)
13325 {
13326 /* This was a pre-DWARF-5 GNU extension alias
13327 for DW_AT_call_return_pc. */
13328 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
13329 }
96408a79
SA
13330 if (!attr)
13331 {
b98664d3 13332 complaint (_("missing DW_AT_call_return_pc for DW_TAG_call_site "
9d8780f0
SM
13333 "DIE %s [in module %s]"),
13334 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13335 return;
13336 }
cd6c91b4 13337 pc = attr->value_as_address () + baseaddr;
3e29f34a 13338 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
96408a79
SA
13339
13340 if (cu->call_site_htab == NULL)
13341 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
13342 NULL, &objfile->objfile_obstack,
13343 hashtab_obstack_allocate, NULL);
13344 call_site_local.pc = pc;
13345 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
13346 if (*slot != NULL)
13347 {
b98664d3 13348 complaint (_("Duplicate PC %s for DW_TAG_call_site "
9d8780f0
SM
13349 "DIE %s [in module %s]"),
13350 paddress (gdbarch, pc), sect_offset_str (die->sect_off),
4262abfb 13351 objfile_name (objfile));
96408a79
SA
13352 return;
13353 }
13354
13355 /* Count parameters at the caller. */
13356
13357 nparams = 0;
13358 for (child_die = die->child; child_die && child_die->tag;
436c571c 13359 child_die = child_die->sibling)
96408a79 13360 {
216f72a1
JK
13361 if (child_die->tag != DW_TAG_call_site_parameter
13362 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79 13363 {
b98664d3 13364 complaint (_("Tag %d is not DW_TAG_call_site_parameter in "
9d8780f0
SM
13365 "DW_TAG_call_site child DIE %s [in module %s]"),
13366 child_die->tag, sect_offset_str (child_die->sect_off),
4262abfb 13367 objfile_name (objfile));
96408a79
SA
13368 continue;
13369 }
13370
13371 nparams++;
13372 }
13373
224c3ddb
SM
13374 call_site
13375 = ((struct call_site *)
13376 obstack_alloc (&objfile->objfile_obstack,
13377 sizeof (*call_site)
13378 + (sizeof (*call_site->parameter) * (nparams - 1))));
96408a79
SA
13379 *slot = call_site;
13380 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
13381 call_site->pc = pc;
13382
216f72a1
JK
13383 if (dwarf2_flag_true_p (die, DW_AT_call_tail_call, cu)
13384 || dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
96408a79
SA
13385 {
13386 struct die_info *func_die;
13387
13388 /* Skip also over DW_TAG_inlined_subroutine. */
13389 for (func_die = die->parent;
13390 func_die && func_die->tag != DW_TAG_subprogram
13391 && func_die->tag != DW_TAG_subroutine_type;
13392 func_die = func_die->parent);
13393
216f72a1
JK
13394 /* DW_AT_call_all_calls is a superset
13395 of DW_AT_call_all_tail_calls. */
96408a79 13396 if (func_die
216f72a1 13397 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_calls, cu)
96408a79 13398 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
216f72a1 13399 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_tail_calls, cu)
96408a79
SA
13400 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
13401 {
13402 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
13403 not complete. But keep CALL_SITE for look ups via call_site_htab,
13404 both the initial caller containing the real return address PC and
13405 the final callee containing the current PC of a chain of tail
13406 calls do not need to have the tail call list complete. But any
13407 function candidate for a virtual tail call frame searched via
13408 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
13409 determined unambiguously. */
13410 }
13411 else
13412 {
13413 struct type *func_type = NULL;
13414
13415 if (func_die)
13416 func_type = get_die_type (func_die, cu);
13417 if (func_type != NULL)
13418 {
78134374 13419 gdb_assert (func_type->code () == TYPE_CODE_FUNC);
96408a79
SA
13420
13421 /* Enlist this call site to the function. */
13422 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
13423 TYPE_TAIL_CALL_LIST (func_type) = call_site;
13424 }
13425 else
b98664d3 13426 complaint (_("Cannot find function owning DW_TAG_call_site "
9d8780f0
SM
13427 "DIE %s [in module %s]"),
13428 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13429 }
13430 }
13431
216f72a1
JK
13432 attr = dwarf2_attr (die, DW_AT_call_target, cu);
13433 if (attr == NULL)
13434 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
13435 if (attr == NULL)
13436 attr = dwarf2_attr (die, DW_AT_call_origin, cu);
96408a79 13437 if (attr == NULL)
216f72a1
JK
13438 {
13439 /* This was a pre-DWARF-5 GNU extension alias for DW_AT_call_origin. */
13440 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13441 }
96408a79 13442 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
4fc6c0d5 13443 if (!attr || (attr->form_is_block () && DW_BLOCK (attr)->size == 0))
96408a79 13444 /* Keep NULL DWARF_BLOCK. */;
4fc6c0d5 13445 else if (attr->form_is_block ())
96408a79
SA
13446 {
13447 struct dwarf2_locexpr_baton *dlbaton;
13448
8d749320 13449 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
96408a79
SA
13450 dlbaton->data = DW_BLOCK (attr)->data;
13451 dlbaton->size = DW_BLOCK (attr)->size;
a50264ba 13452 dlbaton->per_objfile = per_objfile;
96408a79
SA
13453 dlbaton->per_cu = cu->per_cu;
13454
13455 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
13456 }
cd6c91b4 13457 else if (attr->form_is_ref ())
96408a79 13458 {
96408a79
SA
13459 struct dwarf2_cu *target_cu = cu;
13460 struct die_info *target_die;
13461
ac9ec31b 13462 target_die = follow_die_ref (die, attr, &target_cu);
5e22e966 13463 gdb_assert (target_cu->per_objfile->objfile == objfile);
96408a79
SA
13464 if (die_is_declaration (target_die, target_cu))
13465 {
7d45c7c3 13466 const char *target_physname;
9112db09
JK
13467
13468 /* Prefer the mangled name; otherwise compute the demangled one. */
73b9be8b 13469 target_physname = dw2_linkage_name (target_die, target_cu);
7d45c7c3 13470 if (target_physname == NULL)
9112db09 13471 target_physname = dwarf2_physname (NULL, target_die, target_cu);
96408a79 13472 if (target_physname == NULL)
b98664d3 13473 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
13474 "physname, for referencing DIE %s [in module %s]"),
13475 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 13476 else
7d455152 13477 SET_FIELD_PHYSNAME (call_site->target, target_physname);
96408a79
SA
13478 }
13479 else
13480 {
13481 CORE_ADDR lowpc;
13482
13483 /* DW_AT_entry_pc should be preferred. */
3a2b436a 13484 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
e385593e 13485 <= PC_BOUNDS_INVALID)
b98664d3 13486 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
13487 "low pc, for referencing DIE %s [in module %s]"),
13488 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 13489 else
3e29f34a
MR
13490 {
13491 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13492 SET_FIELD_PHYSADDR (call_site->target, lowpc);
13493 }
96408a79
SA
13494 }
13495 }
13496 else
b98664d3 13497 complaint (_("DW_TAG_call_site DW_AT_call_target is neither "
9d8780f0
SM
13498 "block nor reference, for DIE %s [in module %s]"),
13499 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13500
13501 call_site->per_cu = cu->per_cu;
9f47c707 13502 call_site->per_objfile = per_objfile;
96408a79
SA
13503
13504 for (child_die = die->child;
13505 child_die && child_die->tag;
436c571c 13506 child_die = child_die->sibling)
96408a79 13507 {
96408a79 13508 struct call_site_parameter *parameter;
1788b2d3 13509 struct attribute *loc, *origin;
96408a79 13510
216f72a1
JK
13511 if (child_die->tag != DW_TAG_call_site_parameter
13512 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79
SA
13513 {
13514 /* Already printed the complaint above. */
13515 continue;
13516 }
13517
13518 gdb_assert (call_site->parameter_count < nparams);
13519 parameter = &call_site->parameter[call_site->parameter_count];
13520
1788b2d3
JK
13521 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
13522 specifies DW_TAG_formal_parameter. Value of the data assumed for the
216f72a1 13523 register is contained in DW_AT_call_value. */
96408a79 13524
24c5c679 13525 loc = dwarf2_attr (child_die, DW_AT_location, cu);
216f72a1
JK
13526 origin = dwarf2_attr (child_die, DW_AT_call_parameter, cu);
13527 if (origin == NULL)
13528 {
13529 /* This was a pre-DWARF-5 GNU extension alias
13530 for DW_AT_call_parameter. */
13531 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
13532 }
cd6c91b4 13533 if (loc == NULL && origin != NULL && origin->form_is_ref ())
1788b2d3 13534 {
1788b2d3 13535 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9c541725 13536
0826b30a 13537 sect_offset sect_off = origin->get_ref_die_offset ();
4057dfde 13538 if (!cu->header.offset_in_cu_p (sect_off))
d76b7dbc
JK
13539 {
13540 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
13541 binding can be done only inside one CU. Such referenced DIE
13542 therefore cannot be even moved to DW_TAG_partial_unit. */
b98664d3 13543 complaint (_("DW_AT_call_parameter offset is not in CU for "
9d8780f0
SM
13544 "DW_TAG_call_site child DIE %s [in module %s]"),
13545 sect_offset_str (child_die->sect_off),
9c541725 13546 objfile_name (objfile));
d76b7dbc
JK
13547 continue;
13548 }
9c541725
PA
13549 parameter->u.param_cu_off
13550 = (cu_offset) (sect_off - cu->header.sect_off);
1788b2d3 13551 }
4fc6c0d5 13552 else if (loc == NULL || origin != NULL || !loc->form_is_block ())
96408a79 13553 {
b98664d3 13554 complaint (_("No DW_FORM_block* DW_AT_location for "
9d8780f0
SM
13555 "DW_TAG_call_site child DIE %s [in module %s]"),
13556 sect_offset_str (child_die->sect_off), objfile_name (objfile));
96408a79
SA
13557 continue;
13558 }
24c5c679 13559 else
96408a79 13560 {
24c5c679
JK
13561 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
13562 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
13563 if (parameter->u.dwarf_reg != -1)
13564 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
13565 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
13566 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
13567 &parameter->u.fb_offset))
13568 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
13569 else
13570 {
b98664d3 13571 complaint (_("Only single DW_OP_reg or DW_OP_fbreg is supported "
24c5c679 13572 "for DW_FORM_block* DW_AT_location is supported for "
9d8780f0 13573 "DW_TAG_call_site child DIE %s "
24c5c679 13574 "[in module %s]"),
9d8780f0 13575 sect_offset_str (child_die->sect_off),
9c541725 13576 objfile_name (objfile));
24c5c679
JK
13577 continue;
13578 }
96408a79
SA
13579 }
13580
216f72a1
JK
13581 attr = dwarf2_attr (child_die, DW_AT_call_value, cu);
13582 if (attr == NULL)
13583 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
4fc6c0d5 13584 if (attr == NULL || !attr->form_is_block ())
96408a79 13585 {
b98664d3 13586 complaint (_("No DW_FORM_block* DW_AT_call_value for "
9d8780f0
SM
13587 "DW_TAG_call_site child DIE %s [in module %s]"),
13588 sect_offset_str (child_die->sect_off),
9c541725 13589 objfile_name (objfile));
96408a79
SA
13590 continue;
13591 }
13592 parameter->value = DW_BLOCK (attr)->data;
13593 parameter->value_size = DW_BLOCK (attr)->size;
13594
13595 /* Parameters are not pre-cleared by memset above. */
13596 parameter->data_value = NULL;
13597 parameter->data_value_size = 0;
13598 call_site->parameter_count++;
13599
216f72a1
JK
13600 attr = dwarf2_attr (child_die, DW_AT_call_data_value, cu);
13601 if (attr == NULL)
13602 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
435d3d88 13603 if (attr != nullptr)
96408a79 13604 {
4fc6c0d5 13605 if (!attr->form_is_block ())
b98664d3 13606 complaint (_("No DW_FORM_block* DW_AT_call_data_value for "
9d8780f0
SM
13607 "DW_TAG_call_site child DIE %s [in module %s]"),
13608 sect_offset_str (child_die->sect_off),
9c541725 13609 objfile_name (objfile));
96408a79
SA
13610 else
13611 {
13612 parameter->data_value = DW_BLOCK (attr)->data;
13613 parameter->data_value_size = DW_BLOCK (attr)->size;
13614 }
13615 }
13616 }
13617}
13618
71a3c369
TT
13619/* Helper function for read_variable. If DIE represents a virtual
13620 table, then return the type of the concrete object that is
13621 associated with the virtual table. Otherwise, return NULL. */
13622
13623static struct type *
13624rust_containing_type (struct die_info *die, struct dwarf2_cu *cu)
13625{
13626 struct attribute *attr = dwarf2_attr (die, DW_AT_type, cu);
13627 if (attr == NULL)
13628 return NULL;
13629
13630 /* Find the type DIE. */
13631 struct die_info *type_die = NULL;
13632 struct dwarf2_cu *type_cu = cu;
13633
cd6c91b4 13634 if (attr->form_is_ref ())
71a3c369
TT
13635 type_die = follow_die_ref (die, attr, &type_cu);
13636 if (type_die == NULL)
13637 return NULL;
13638
13639 if (dwarf2_attr (type_die, DW_AT_containing_type, type_cu) == NULL)
13640 return NULL;
13641 return die_containing_type (type_die, type_cu);
13642}
13643
13644/* Read a variable (DW_TAG_variable) DIE and create a new symbol. */
13645
13646static void
13647read_variable (struct die_info *die, struct dwarf2_cu *cu)
13648{
13649 struct rust_vtable_symbol *storage = NULL;
13650
13651 if (cu->language == language_rust)
13652 {
13653 struct type *containing_type = rust_containing_type (die, cu);
13654
13655 if (containing_type != NULL)
13656 {
5e22e966 13657 struct objfile *objfile = cu->per_objfile->objfile;
71a3c369 13658
8c14c3a3 13659 storage = new (&objfile->objfile_obstack) rust_vtable_symbol;
71a3c369 13660 storage->concrete_type = containing_type;
cf724bc9 13661 storage->subclass = SYMBOL_RUST_VTABLE;
71a3c369
TT
13662 }
13663 }
13664
e4a62c65
TV
13665 struct symbol *res = new_symbol (die, NULL, cu, storage);
13666 struct attribute *abstract_origin
13667 = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13668 struct attribute *loc = dwarf2_attr (die, DW_AT_location, cu);
13669 if (res == NULL && loc && abstract_origin)
13670 {
13671 /* We have a variable without a name, but with a location and an abstract
13672 origin. This may be a concrete instance of an abstract variable
13673 referenced from an DW_OP_GNU_variable_value, so save it to find it back
13674 later. */
13675 struct dwarf2_cu *origin_cu = cu;
13676 struct die_info *origin_die
13677 = follow_die_ref (die, abstract_origin, &origin_cu);
5e22e966
SM
13678 dwarf2_per_objfile *per_objfile = cu->per_objfile;
13679 per_objfile->per_bfd->abstract_to_concrete
13680 [origin_die->sect_off].push_back (die->sect_off);
e4a62c65 13681 }
71a3c369
TT
13682}
13683
43988095
JK
13684/* Call CALLBACK from DW_AT_ranges attribute value OFFSET
13685 reading .debug_rnglists.
13686 Callback's type should be:
13687 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
13688 Return true if the attributes are present and valid, otherwise,
13689 return false. */
13690
13691template <typename Callback>
13692static bool
13693dwarf2_rnglists_process (unsigned offset, struct dwarf2_cu *cu,
13694 Callback &&callback)
13695{
5e22e966 13696 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 13697 struct objfile *objfile = dwarf2_per_objfile->objfile;
43988095 13698 bfd *obfd = objfile->obfd;
43988095 13699 /* Base address selection entry. */
2b24b6e4 13700 gdb::optional<CORE_ADDR> base;
43988095 13701 const gdb_byte *buffer;
43988095
JK
13702 CORE_ADDR baseaddr;
13703 bool overflow = false;
13704
43988095
JK
13705 base = cu->base_address;
13706
5989a64e
SM
13707 dwarf2_per_objfile->per_bfd->rnglists.read (objfile);
13708 if (offset >= dwarf2_per_objfile->per_bfd->rnglists.size)
43988095 13709 {
b98664d3 13710 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43988095
JK
13711 offset);
13712 return false;
13713 }
5989a64e 13714 buffer = dwarf2_per_objfile->per_bfd->rnglists.buffer + offset;
43988095 13715
b3b3bada 13716 baseaddr = objfile->text_section_offset ();
43988095
JK
13717
13718 while (1)
13719 {
7814882a
JK
13720 /* Initialize it due to a false compiler warning. */
13721 CORE_ADDR range_beginning = 0, range_end = 0;
5989a64e
SM
13722 const gdb_byte *buf_end = (dwarf2_per_objfile->per_bfd->rnglists.buffer
13723 + dwarf2_per_objfile->per_bfd->rnglists.size);
43988095
JK
13724 unsigned int bytes_read;
13725
13726 if (buffer == buf_end)
13727 {
13728 overflow = true;
13729 break;
13730 }
13731 const auto rlet = static_cast<enum dwarf_range_list_entry>(*buffer++);
13732 switch (rlet)
13733 {
13734 case DW_RLE_end_of_list:
13735 break;
13736 case DW_RLE_base_address:
13737 if (buffer + cu->header.addr_size > buf_end)
13738 {
13739 overflow = true;
13740 break;
13741 }
c8a7a66f 13742 base = cu->header.read_address (obfd, buffer, &bytes_read);
43988095
JK
13743 buffer += bytes_read;
13744 break;
13745 case DW_RLE_start_length:
13746 if (buffer + cu->header.addr_size > buf_end)
13747 {
13748 overflow = true;
13749 break;
13750 }
c8a7a66f
TT
13751 range_beginning = cu->header.read_address (obfd, buffer,
13752 &bytes_read);
43988095
JK
13753 buffer += bytes_read;
13754 range_end = (range_beginning
13755 + read_unsigned_leb128 (obfd, buffer, &bytes_read));
13756 buffer += bytes_read;
13757 if (buffer > buf_end)
13758 {
13759 overflow = true;
13760 break;
13761 }
13762 break;
13763 case DW_RLE_offset_pair:
13764 range_beginning = read_unsigned_leb128 (obfd, buffer, &bytes_read);
13765 buffer += bytes_read;
13766 if (buffer > buf_end)
13767 {
13768 overflow = true;
13769 break;
13770 }
13771 range_end = read_unsigned_leb128 (obfd, buffer, &bytes_read);
13772 buffer += bytes_read;
13773 if (buffer > buf_end)
13774 {
13775 overflow = true;
13776 break;
13777 }
13778 break;
13779 case DW_RLE_start_end:
13780 if (buffer + 2 * cu->header.addr_size > buf_end)
13781 {
13782 overflow = true;
13783 break;
13784 }
c8a7a66f
TT
13785 range_beginning = cu->header.read_address (obfd, buffer,
13786 &bytes_read);
43988095 13787 buffer += bytes_read;
c8a7a66f 13788 range_end = cu->header.read_address (obfd, buffer, &bytes_read);
43988095
JK
13789 buffer += bytes_read;
13790 break;
13791 default:
b98664d3 13792 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
13793 return false;
13794 }
13795 if (rlet == DW_RLE_end_of_list || overflow)
13796 break;
13797 if (rlet == DW_RLE_base_address)
13798 continue;
13799
2b24b6e4 13800 if (!base.has_value ())
43988095
JK
13801 {
13802 /* We have no valid base address for the ranges
13803 data. */
b98664d3 13804 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
13805 return false;
13806 }
13807
13808 if (range_beginning > range_end)
13809 {
13810 /* Inverted range entries are invalid. */
b98664d3 13811 complaint (_("Invalid .debug_rnglists data (inverted range)"));
43988095
JK
13812 return false;
13813 }
13814
13815 /* Empty range entries have no effect. */
13816 if (range_beginning == range_end)
13817 continue;
13818
2b24b6e4
TT
13819 range_beginning += *base;
13820 range_end += *base;
43988095
JK
13821
13822 /* A not-uncommon case of bad debug info.
13823 Don't pollute the addrmap with bad data. */
13824 if (range_beginning + baseaddr == 0
5989a64e 13825 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
43988095 13826 {
b98664d3 13827 complaint (_(".debug_rnglists entry has start address of zero"
43988095
JK
13828 " [in module %s]"), objfile_name (objfile));
13829 continue;
13830 }
13831
13832 callback (range_beginning, range_end);
13833 }
13834
13835 if (overflow)
13836 {
b98664d3 13837 complaint (_("Offset %d is not terminated "
43988095
JK
13838 "for DW_AT_ranges attribute"),
13839 offset);
13840 return false;
13841 }
13842
13843 return true;
13844}
13845
13846/* Call CALLBACK from DW_AT_ranges attribute value OFFSET reading .debug_ranges.
13847 Callback's type should be:
13848 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
5f46c5a5 13849 Return 1 if the attributes are present and valid, otherwise, return 0. */
43039443 13850
43988095 13851template <typename Callback>
43039443 13852static int
5f46c5a5 13853dwarf2_ranges_process (unsigned offset, struct dwarf2_cu *cu,
43988095 13854 Callback &&callback)
43039443 13855{
5e22e966
SM
13856 dwarf2_per_objfile *per_objfile = cu->per_objfile;
13857 struct objfile *objfile = per_objfile->objfile;
43039443
JK
13858 struct comp_unit_head *cu_header = &cu->header;
13859 bfd *obfd = objfile->obfd;
13860 unsigned int addr_size = cu_header->addr_size;
13861 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
13862 /* Base address selection entry. */
2b24b6e4 13863 gdb::optional<CORE_ADDR> base;
43039443 13864 unsigned int dummy;
d521ce57 13865 const gdb_byte *buffer;
ff013f42 13866 CORE_ADDR baseaddr;
43039443 13867
43988095
JK
13868 if (cu_header->version >= 5)
13869 return dwarf2_rnglists_process (offset, cu, callback);
13870
d00adf39 13871 base = cu->base_address;
43039443 13872
5e22e966
SM
13873 per_objfile->per_bfd->ranges.read (objfile);
13874 if (offset >= per_objfile->per_bfd->ranges.size)
43039443 13875 {
b98664d3 13876 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43039443
JK
13877 offset);
13878 return 0;
13879 }
5e22e966 13880 buffer = per_objfile->per_bfd->ranges.buffer + offset;
43039443 13881
b3b3bada 13882 baseaddr = objfile->text_section_offset ();
ff013f42 13883
43039443
JK
13884 while (1)
13885 {
13886 CORE_ADDR range_beginning, range_end;
13887
c8a7a66f 13888 range_beginning = cu->header.read_address (obfd, buffer, &dummy);
43039443 13889 buffer += addr_size;
c8a7a66f 13890 range_end = cu->header.read_address (obfd, buffer, &dummy);
43039443
JK
13891 buffer += addr_size;
13892 offset += 2 * addr_size;
13893
13894 /* An end of list marker is a pair of zero addresses. */
13895 if (range_beginning == 0 && range_end == 0)
13896 /* Found the end of list entry. */
13897 break;
13898
13899 /* Each base address selection entry is a pair of 2 values.
13900 The first is the largest possible address, the second is
13901 the base address. Check for a base address here. */
13902 if ((range_beginning & mask) == mask)
13903 {
28d2bfb9
AB
13904 /* If we found the largest possible address, then we already
13905 have the base address in range_end. */
13906 base = range_end;
43039443
JK
13907 continue;
13908 }
13909
2b24b6e4 13910 if (!base.has_value ())
43039443
JK
13911 {
13912 /* We have no valid base address for the ranges
13913 data. */
b98664d3 13914 complaint (_("Invalid .debug_ranges data (no base address)"));
43039443
JK
13915 return 0;
13916 }
13917
9277c30c
UW
13918 if (range_beginning > range_end)
13919 {
13920 /* Inverted range entries are invalid. */
b98664d3 13921 complaint (_("Invalid .debug_ranges data (inverted range)"));
9277c30c
UW
13922 return 0;
13923 }
13924
13925 /* Empty range entries have no effect. */
13926 if (range_beginning == range_end)
13927 continue;
13928
2b24b6e4
TT
13929 range_beginning += *base;
13930 range_end += *base;
43039443 13931
01093045
DE
13932 /* A not-uncommon case of bad debug info.
13933 Don't pollute the addrmap with bad data. */
13934 if (range_beginning + baseaddr == 0
5e22e966 13935 && !per_objfile->per_bfd->has_section_at_zero)
01093045 13936 {
b98664d3 13937 complaint (_(".debug_ranges entry has start address of zero"
4262abfb 13938 " [in module %s]"), objfile_name (objfile));
01093045
DE
13939 continue;
13940 }
13941
5f46c5a5
JK
13942 callback (range_beginning, range_end);
13943 }
13944
13945 return 1;
13946}
13947
13948/* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
13949 Return 1 if the attributes are present and valid, otherwise, return 0.
13950 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
13951
13952static int
13953dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
13954 CORE_ADDR *high_return, struct dwarf2_cu *cu,
891813be 13955 dwarf2_psymtab *ranges_pst)
5f46c5a5 13956{
5e22e966 13957 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 13958 struct gdbarch *gdbarch = objfile->arch ();
b3b3bada 13959 const CORE_ADDR baseaddr = objfile->text_section_offset ();
5f46c5a5
JK
13960 int low_set = 0;
13961 CORE_ADDR low = 0;
13962 CORE_ADDR high = 0;
13963 int retval;
13964
13965 retval = dwarf2_ranges_process (offset, cu,
13966 [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
13967 {
9277c30c 13968 if (ranges_pst != NULL)
3e29f34a
MR
13969 {
13970 CORE_ADDR lowpc;
13971 CORE_ADDR highpc;
13972
79748972
TT
13973 lowpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
13974 range_beginning + baseaddr)
13975 - baseaddr);
13976 highpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
13977 range_end + baseaddr)
13978 - baseaddr);
d320c2b5
TT
13979 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
13980 lowpc, highpc - 1, ranges_pst);
3e29f34a 13981 }
ff013f42 13982
43039443
JK
13983 /* FIXME: This is recording everything as a low-high
13984 segment of consecutive addresses. We should have a
13985 data structure for discontiguous block ranges
13986 instead. */
13987 if (! low_set)
13988 {
13989 low = range_beginning;
13990 high = range_end;
13991 low_set = 1;
13992 }
13993 else
13994 {
13995 if (range_beginning < low)
13996 low = range_beginning;
13997 if (range_end > high)
13998 high = range_end;
13999 }
5f46c5a5
JK
14000 });
14001 if (!retval)
14002 return 0;
43039443
JK
14003
14004 if (! low_set)
14005 /* If the first entry is an end-of-list marker, the range
14006 describes an empty scope, i.e. no instructions. */
14007 return 0;
14008
14009 if (low_return)
14010 *low_return = low;
14011 if (high_return)
14012 *high_return = high;
14013 return 1;
14014}
14015
3a2b436a
JK
14016/* Get low and high pc attributes from a die. See enum pc_bounds_kind
14017 definition for the return value. *LOWPC and *HIGHPC are set iff
e385593e 14018 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
380bca97 14019
3a2b436a 14020static enum pc_bounds_kind
af34e669 14021dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
d85a05f0 14022 CORE_ADDR *highpc, struct dwarf2_cu *cu,
891813be 14023 dwarf2_psymtab *pst)
c906108c 14024{
5e22e966 14025 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
c906108c 14026 struct attribute *attr;
91da1414 14027 struct attribute *attr_high;
af34e669
DJ
14028 CORE_ADDR low = 0;
14029 CORE_ADDR high = 0;
e385593e 14030 enum pc_bounds_kind ret;
c906108c 14031
91da1414
MW
14032 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14033 if (attr_high)
af34e669 14034 {
e142c38c 14035 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 14036 if (attr != nullptr)
91da1414 14037 {
cd6c91b4
TT
14038 low = attr->value_as_address ();
14039 high = attr_high->value_as_address ();
14040 if (cu->header.version >= 4 && attr_high->form_is_constant ())
31aa7e4e 14041 high += low;
91da1414 14042 }
af34e669
DJ
14043 else
14044 /* Found high w/o low attribute. */
e385593e 14045 return PC_BOUNDS_INVALID;
af34e669
DJ
14046
14047 /* Found consecutive range of addresses. */
3a2b436a 14048 ret = PC_BOUNDS_HIGH_LOW;
af34e669 14049 }
c906108c 14050 else
af34e669 14051 {
e142c38c 14052 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
14053 if (attr != NULL)
14054 {
18a8505e 14055 /* DW_AT_rnglists_base does not apply to DIEs from the DWO skeleton.
ab435259
DE
14056 We take advantage of the fact that DW_AT_ranges does not appear
14057 in DW_TAG_compile_unit of DWO files. */
14058 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14059 unsigned int ranges_offset = (DW_UNSND (attr)
14060 + (need_ranges_base
14061 ? cu->ranges_base
14062 : 0));
2e3cf129 14063
af34e669 14064 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 14065 .debug_ranges section. */
2e3cf129 14066 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
e385593e 14067 return PC_BOUNDS_INVALID;
43039443 14068 /* Found discontinuous range of addresses. */
3a2b436a 14069 ret = PC_BOUNDS_RANGES;
af34e669 14070 }
e385593e
JK
14071 else
14072 return PC_BOUNDS_NOT_PRESENT;
af34e669 14073 }
c906108c 14074
48fbe735 14075 /* partial_die_info::read has also the strict LOW < HIGH requirement. */
9373cf26 14076 if (high <= low)
e385593e 14077 return PC_BOUNDS_INVALID;
c906108c
SS
14078
14079 /* When using the GNU linker, .gnu.linkonce. sections are used to
14080 eliminate duplicate copies of functions and vtables and such.
14081 The linker will arbitrarily choose one and discard the others.
14082 The AT_*_pc values for such functions refer to local labels in
14083 these sections. If the section from that file was discarded, the
14084 labels are not in the output, so the relocs get a value of 0.
14085 If this is a discarded function, mark the pc bounds as invalid,
14086 so that GDB will ignore it. */
5989a64e 14087 if (low == 0 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
e385593e 14088 return PC_BOUNDS_INVALID;
c906108c
SS
14089
14090 *lowpc = low;
96408a79
SA
14091 if (highpc)
14092 *highpc = high;
af34e669 14093 return ret;
c906108c
SS
14094}
14095
b084d499
JB
14096/* Assuming that DIE represents a subprogram DIE or a lexical block, get
14097 its low and high PC addresses. Do nothing if these addresses could not
14098 be determined. Otherwise, set LOWPC to the low address if it is smaller,
14099 and HIGHPC to the high address if greater than HIGHPC. */
14100
14101static void
14102dwarf2_get_subprogram_pc_bounds (struct die_info *die,
14103 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14104 struct dwarf2_cu *cu)
14105{
14106 CORE_ADDR low, high;
14107 struct die_info *child = die->child;
14108
e385593e 14109 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
b084d499 14110 {
325fac50
PA
14111 *lowpc = std::min (*lowpc, low);
14112 *highpc = std::max (*highpc, high);
b084d499
JB
14113 }
14114
14115 /* If the language does not allow nested subprograms (either inside
14116 subprograms or lexical blocks), we're done. */
14117 if (cu->language != language_ada)
14118 return;
6e70227d 14119
b084d499
JB
14120 /* Check all the children of the given DIE. If it contains nested
14121 subprograms, then check their pc bounds. Likewise, we need to
14122 check lexical blocks as well, as they may also contain subprogram
14123 definitions. */
14124 while (child && child->tag)
14125 {
14126 if (child->tag == DW_TAG_subprogram
14127 || child->tag == DW_TAG_lexical_block)
14128 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
436c571c 14129 child = child->sibling;
b084d499
JB
14130 }
14131}
14132
fae299cd
DC
14133/* Get the low and high pc's represented by the scope DIE, and store
14134 them in *LOWPC and *HIGHPC. If the correct values can't be
14135 determined, set *LOWPC to -1 and *HIGHPC to 0. */
14136
14137static void
14138get_scope_pc_bounds (struct die_info *die,
14139 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14140 struct dwarf2_cu *cu)
14141{
14142 CORE_ADDR best_low = (CORE_ADDR) -1;
14143 CORE_ADDR best_high = (CORE_ADDR) 0;
14144 CORE_ADDR current_low, current_high;
14145
3a2b436a 14146 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL)
e385593e 14147 >= PC_BOUNDS_RANGES)
fae299cd
DC
14148 {
14149 best_low = current_low;
14150 best_high = current_high;
14151 }
14152 else
14153 {
14154 struct die_info *child = die->child;
14155
14156 while (child && child->tag)
14157 {
14158 switch (child->tag) {
14159 case DW_TAG_subprogram:
b084d499 14160 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
fae299cd
DC
14161 break;
14162 case DW_TAG_namespace:
f55ee35c 14163 case DW_TAG_module:
fae299cd
DC
14164 /* FIXME: carlton/2004-01-16: Should we do this for
14165 DW_TAG_class_type/DW_TAG_structure_type, too? I think
14166 that current GCC's always emit the DIEs corresponding
14167 to definitions of methods of classes as children of a
14168 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
14169 the DIEs giving the declarations, which could be
14170 anywhere). But I don't see any reason why the
14171 standards says that they have to be there. */
14172 get_scope_pc_bounds (child, &current_low, &current_high, cu);
14173
14174 if (current_low != ((CORE_ADDR) -1))
14175 {
325fac50
PA
14176 best_low = std::min (best_low, current_low);
14177 best_high = std::max (best_high, current_high);
fae299cd
DC
14178 }
14179 break;
14180 default:
0963b4bd 14181 /* Ignore. */
fae299cd
DC
14182 break;
14183 }
14184
436c571c 14185 child = child->sibling;
fae299cd
DC
14186 }
14187 }
14188
14189 *lowpc = best_low;
14190 *highpc = best_high;
14191}
14192
801e3a5b
JB
14193/* Record the address ranges for BLOCK, offset by BASEADDR, as given
14194 in DIE. */
380bca97 14195
801e3a5b
JB
14196static void
14197dwarf2_record_block_ranges (struct die_info *die, struct block *block,
14198 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
14199{
5e22e966 14200 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 14201 struct gdbarch *gdbarch = objfile->arch ();
801e3a5b 14202 struct attribute *attr;
91da1414 14203 struct attribute *attr_high;
801e3a5b 14204
91da1414
MW
14205 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14206 if (attr_high)
801e3a5b 14207 {
801e3a5b 14208 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 14209 if (attr != nullptr)
801e3a5b 14210 {
cd6c91b4
TT
14211 CORE_ADDR low = attr->value_as_address ();
14212 CORE_ADDR high = attr_high->value_as_address ();
31aa7e4e 14213
cd6c91b4 14214 if (cu->header.version >= 4 && attr_high->form_is_constant ())
31aa7e4e 14215 high += low;
9a619af0 14216
3e29f34a
MR
14217 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
14218 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
c24bdb02 14219 cu->get_builder ()->record_block_range (block, low, high - 1);
801e3a5b
JB
14220 }
14221 }
14222
14223 attr = dwarf2_attr (die, DW_AT_ranges, cu);
435d3d88 14224 if (attr != nullptr)
801e3a5b 14225 {
18a8505e 14226 /* DW_AT_rnglists_base does not apply to DIEs from the DWO skeleton.
ab435259
DE
14227 We take advantage of the fact that DW_AT_ranges does not appear
14228 in DW_TAG_compile_unit of DWO files. */
14229 int need_ranges_base = die->tag != DW_TAG_compile_unit;
801e3a5b
JB
14230
14231 /* The value of the DW_AT_ranges attribute is the offset of the
14232 address range list in the .debug_ranges section. */
ab435259
DE
14233 unsigned long offset = (DW_UNSND (attr)
14234 + (need_ranges_base ? cu->ranges_base : 0));
801e3a5b 14235
2d5f09ec 14236 std::vector<blockrange> blockvec;
5f46c5a5
JK
14237 dwarf2_ranges_process (offset, cu,
14238 [&] (CORE_ADDR start, CORE_ADDR end)
14239 {
58fdfd2c
JK
14240 start += baseaddr;
14241 end += baseaddr;
5f46c5a5
JK
14242 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
14243 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
c24bdb02 14244 cu->get_builder ()->record_block_range (block, start, end - 1);
2d5f09ec 14245 blockvec.emplace_back (start, end);
5f46c5a5 14246 });
2d5f09ec
KB
14247
14248 BLOCK_RANGES(block) = make_blockranges (objfile, blockvec);
801e3a5b
JB
14249 }
14250}
14251
685b1105
JK
14252/* Check whether the producer field indicates either of GCC < 4.6, or the
14253 Intel C/C++ compiler, and cache the result in CU. */
60d5a603 14254
685b1105
JK
14255static void
14256check_producer (struct dwarf2_cu *cu)
60d5a603 14257{
38360086 14258 int major, minor;
60d5a603
JK
14259
14260 if (cu->producer == NULL)
14261 {
14262 /* For unknown compilers expect their behavior is DWARF version
14263 compliant.
14264
14265 GCC started to support .debug_types sections by -gdwarf-4 since
14266 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
14267 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
14268 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
14269 interpreted incorrectly by GDB now - GCC PR debug/48229. */
60d5a603 14270 }
b1ffba5a 14271 else if (producer_is_gcc (cu->producer, &major, &minor))
60d5a603 14272 {
38360086
MW
14273 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
14274 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
685b1105 14275 }
5230b05a 14276 else if (producer_is_icc (cu->producer, &major, &minor))
eb77c9df
AB
14277 {
14278 cu->producer_is_icc = true;
14279 cu->producer_is_icc_lt_14 = major < 14;
14280 }
c258c396
JD
14281 else if (startswith (cu->producer, "CodeWarrior S12/L-ISA"))
14282 cu->producer_is_codewarrior = true;
685b1105
JK
14283 else
14284 {
14285 /* For other non-GCC compilers, expect their behavior is DWARF version
14286 compliant. */
60d5a603
JK
14287 }
14288
9068261f 14289 cu->checked_producer = true;
685b1105 14290}
ba919b58 14291
685b1105
JK
14292/* Check for GCC PR debug/45124 fix which is not present in any G++ version up
14293 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
14294 during 4.6.0 experimental. */
14295
9068261f 14296static bool
685b1105
JK
14297producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
14298{
14299 if (!cu->checked_producer)
14300 check_producer (cu);
14301
14302 return cu->producer_is_gxx_lt_4_6;
60d5a603
JK
14303}
14304
c258c396
JD
14305
14306/* Codewarrior (at least as of version 5.0.40) generates dwarf line information
14307 with incorrect is_stmt attributes. */
14308
14309static bool
14310producer_is_codewarrior (struct dwarf2_cu *cu)
14311{
14312 if (!cu->checked_producer)
14313 check_producer (cu);
14314
14315 return cu->producer_is_codewarrior;
14316}
14317
405feb71 14318/* Return the default accessibility type if it is not overridden by
60d5a603
JK
14319 DW_AT_accessibility. */
14320
14321static enum dwarf_access_attribute
14322dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
14323{
14324 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
14325 {
14326 /* The default DWARF 2 accessibility for members is public, the default
14327 accessibility for inheritance is private. */
14328
14329 if (die->tag != DW_TAG_inheritance)
14330 return DW_ACCESS_public;
14331 else
14332 return DW_ACCESS_private;
14333 }
14334 else
14335 {
14336 /* DWARF 3+ defines the default accessibility a different way. The same
14337 rules apply now for DW_TAG_inheritance as for the members and it only
14338 depends on the container kind. */
14339
14340 if (die->parent->tag == DW_TAG_class_type)
14341 return DW_ACCESS_private;
14342 else
14343 return DW_ACCESS_public;
14344 }
14345}
14346
74ac6d43
TT
14347/* Look for DW_AT_data_member_location. Set *OFFSET to the byte
14348 offset. If the attribute was not found return 0, otherwise return
14349 1. If it was found but could not properly be handled, set *OFFSET
14350 to 0. */
14351
14352static int
14353handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14354 LONGEST *offset)
14355{
14356 struct attribute *attr;
14357
14358 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14359 if (attr != NULL)
14360 {
14361 *offset = 0;
14362
14363 /* Note that we do not check for a section offset first here.
14364 This is because DW_AT_data_member_location is new in DWARF 4,
14365 so if we see it, we can assume that a constant form is really
14366 a constant and not a section offset. */
cd6c91b4 14367 if (attr->form_is_constant ())
0826b30a 14368 *offset = attr->constant_value (0);
cd6c91b4 14369 else if (attr->form_is_section_offset ())
74ac6d43 14370 dwarf2_complex_location_expr_complaint ();
4fc6c0d5 14371 else if (attr->form_is_block ())
74ac6d43
TT
14372 *offset = decode_locdesc (DW_BLOCK (attr), cu);
14373 else
14374 dwarf2_complex_location_expr_complaint ();
14375
14376 return 1;
14377 }
14378
14379 return 0;
14380}
14381
7d79de9a
TT
14382/* Look for DW_AT_data_member_location and store the results in FIELD. */
14383
14384static void
14385handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14386 struct field *field)
14387{
14388 struct attribute *attr;
14389
14390 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14391 if (attr != NULL)
14392 {
14393 if (attr->form_is_constant ())
14394 {
14395 LONGEST offset = attr->constant_value (0);
14396 SET_FIELD_BITPOS (*field, offset * bits_per_byte);
14397 }
14398 else if (attr->form_is_section_offset ())
14399 dwarf2_complex_location_expr_complaint ();
14400 else if (attr->form_is_block ())
14401 {
14402 bool handled;
14403 CORE_ADDR offset = decode_locdesc (DW_BLOCK (attr), cu, &handled);
14404 if (handled)
14405 SET_FIELD_BITPOS (*field, offset * bits_per_byte);
14406 else
14407 {
5e22e966
SM
14408 dwarf2_per_objfile *per_objfile = cu->per_objfile;
14409 struct objfile *objfile = per_objfile->objfile;
7d79de9a
TT
14410 struct dwarf2_locexpr_baton *dlbaton
14411 = XOBNEW (&objfile->objfile_obstack,
14412 struct dwarf2_locexpr_baton);
14413 dlbaton->data = DW_BLOCK (attr)->data;
14414 dlbaton->size = DW_BLOCK (attr)->size;
14415 /* When using this baton, we want to compute the address
14416 of the field, not the value. This is why
14417 is_reference is set to false here. */
14418 dlbaton->is_reference = false;
5e22e966 14419 dlbaton->per_objfile = per_objfile;
7d79de9a
TT
14420 dlbaton->per_cu = cu->per_cu;
14421
14422 SET_FIELD_DWARF_BLOCK (*field, dlbaton);
14423 }
14424 }
14425 else
14426 dwarf2_complex_location_expr_complaint ();
14427 }
14428}
14429
c906108c
SS
14430/* Add an aggregate field to the field list. */
14431
14432static void
107d2387 14433dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73 14434 struct dwarf2_cu *cu)
6e70227d 14435{
5e22e966 14436 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 14437 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
14438 struct nextfield *new_field;
14439 struct attribute *attr;
14440 struct field *fp;
15d034d0 14441 const char *fieldname = "";
c906108c 14442
7d0ccb61
DJ
14443 if (die->tag == DW_TAG_inheritance)
14444 {
be2daae6
TT
14445 fip->baseclasses.emplace_back ();
14446 new_field = &fip->baseclasses.back ();
7d0ccb61
DJ
14447 }
14448 else
14449 {
be2daae6
TT
14450 fip->fields.emplace_back ();
14451 new_field = &fip->fields.back ();
7d0ccb61 14452 }
be2daae6 14453
9c6a1327
TT
14454 new_field->offset = die->sect_off;
14455
e142c38c 14456 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
435d3d88 14457 if (attr != nullptr)
c906108c 14458 new_field->accessibility = DW_UNSND (attr);
60d5a603
JK
14459 else
14460 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
c906108c
SS
14461 if (new_field->accessibility != DW_ACCESS_public)
14462 fip->non_public_fields = 1;
60d5a603 14463
e142c38c 14464 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
435d3d88 14465 if (attr != nullptr)
c906108c 14466 new_field->virtuality = DW_UNSND (attr);
60d5a603
JK
14467 else
14468 new_field->virtuality = DW_VIRTUALITY_none;
c906108c
SS
14469
14470 fp = &new_field->field;
a9a9bd0f 14471
e142c38c 14472 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 14473 {
a9a9bd0f 14474 /* Data member other than a C++ static data member. */
6e70227d 14475
c906108c 14476 /* Get type of field. */
e7c27a73 14477 fp->type = die_type (die, cu);
c906108c 14478
d6a843b5 14479 SET_FIELD_BITPOS (*fp, 0);
01ad7f36 14480
c906108c 14481 /* Get bit size of field (zero if none). */
e142c38c 14482 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
435d3d88 14483 if (attr != nullptr)
c906108c
SS
14484 {
14485 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
14486 }
14487 else
14488 {
14489 FIELD_BITSIZE (*fp) = 0;
14490 }
14491
14492 /* Get bit offset of field. */
7d79de9a 14493 handle_data_member_location (die, cu, fp);
e142c38c 14494 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
435d3d88 14495 if (attr != nullptr)
c906108c 14496 {
d5a22e77 14497 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
c906108c
SS
14498 {
14499 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
14500 additional bit offset from the MSB of the containing
14501 anonymous object to the MSB of the field. We don't
14502 have to do anything special since we don't need to
14503 know the size of the anonymous object. */
f41f5e61 14504 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
c906108c
SS
14505 }
14506 else
14507 {
14508 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
14509 MSB of the anonymous object, subtract off the number of
14510 bits from the MSB of the field to the MSB of the
14511 object, and then subtract off the number of bits of
14512 the field itself. The result is the bit offset of
14513 the LSB of the field. */
c906108c
SS
14514 int anonymous_size;
14515 int bit_offset = DW_UNSND (attr);
14516
e142c38c 14517 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 14518 if (attr != nullptr)
c906108c
SS
14519 {
14520 /* The size of the anonymous object containing
14521 the bit field is explicit, so use the
14522 indicated size (in bytes). */
14523 anonymous_size = DW_UNSND (attr);
14524 }
14525 else
14526 {
14527 /* The size of the anonymous object containing
14528 the bit field must be inferred from the type
14529 attribute of the data member containing the
14530 bit field. */
14531 anonymous_size = TYPE_LENGTH (fp->type);
14532 }
f41f5e61
PA
14533 SET_FIELD_BITPOS (*fp,
14534 (FIELD_BITPOS (*fp)
14535 + anonymous_size * bits_per_byte
14536 - bit_offset - FIELD_BITSIZE (*fp)));
c906108c
SS
14537 }
14538 }
da5b30da
AA
14539 attr = dwarf2_attr (die, DW_AT_data_bit_offset, cu);
14540 if (attr != NULL)
14541 SET_FIELD_BITPOS (*fp, (FIELD_BITPOS (*fp)
0826b30a 14542 + attr->constant_value (0)));
c906108c
SS
14543
14544 /* Get name of field. */
39cbfefa
DJ
14545 fieldname = dwarf2_name (die, cu);
14546 if (fieldname == NULL)
14547 fieldname = "";
d8151005
DJ
14548
14549 /* The name is already allocated along with this objfile, so we don't
14550 need to duplicate it for the type. */
14551 fp->name = fieldname;
c906108c
SS
14552
14553 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 14554 pointer or virtual base class pointer) to private. */
e142c38c 14555 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c 14556 {
d48cc9dd 14557 FIELD_ARTIFICIAL (*fp) = 1;
c906108c
SS
14558 new_field->accessibility = DW_ACCESS_private;
14559 fip->non_public_fields = 1;
14560 }
14561 }
a9a9bd0f 14562 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 14563 {
a9a9bd0f
DC
14564 /* C++ static member. */
14565
14566 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
14567 is a declaration, but all versions of G++ as of this writing
14568 (so through at least 3.2.1) incorrectly generate
14569 DW_TAG_variable tags. */
6e70227d 14570
ff355380 14571 const char *physname;
c906108c 14572
a9a9bd0f 14573 /* Get name of field. */
39cbfefa
DJ
14574 fieldname = dwarf2_name (die, cu);
14575 if (fieldname == NULL)
c906108c
SS
14576 return;
14577
254e6b9e 14578 attr = dwarf2_attr (die, DW_AT_const_value, cu);
3863f96c
DE
14579 if (attr
14580 /* Only create a symbol if this is an external value.
14581 new_symbol checks this and puts the value in the global symbol
14582 table, which we want. If it is not external, new_symbol
14583 will try to put the value in cu->list_in_scope which is wrong. */
14584 && dwarf2_flag_true_p (die, DW_AT_external, cu))
254e6b9e
DE
14585 {
14586 /* A static const member, not much different than an enum as far as
14587 we're concerned, except that we can support more types. */
14588 new_symbol (die, NULL, cu);
14589 }
14590
2df3850c 14591 /* Get physical name. */
ff355380 14592 physname = dwarf2_physname (fieldname, die, cu);
c906108c 14593
d8151005
DJ
14594 /* The name is already allocated along with this objfile, so we don't
14595 need to duplicate it for the type. */
14596 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 14597 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 14598 FIELD_NAME (*fp) = fieldname;
c906108c
SS
14599 }
14600 else if (die->tag == DW_TAG_inheritance)
14601 {
74ac6d43 14602 /* C++ base class field. */
7d79de9a 14603 handle_data_member_location (die, cu, fp);
c906108c 14604 FIELD_BITSIZE (*fp) = 0;
e7c27a73 14605 FIELD_TYPE (*fp) = die_type (die, cu);
7d93a1e0 14606 FIELD_NAME (*fp) = fp->type->name ();
c906108c 14607 }
2ddeaf8a
TT
14608 else
14609 gdb_assert_not_reached ("missing case in dwarf2_add_field");
c906108c
SS
14610}
14611
883fd55a
KS
14612/* Can the type given by DIE define another type? */
14613
14614static bool
14615type_can_define_types (const struct die_info *die)
14616{
14617 switch (die->tag)
14618 {
14619 case DW_TAG_typedef:
14620 case DW_TAG_class_type:
14621 case DW_TAG_structure_type:
14622 case DW_TAG_union_type:
14623 case DW_TAG_enumeration_type:
14624 return true;
14625
14626 default:
14627 return false;
14628 }
14629}
14630
14631/* Add a type definition defined in the scope of the FIP's class. */
98751a41
JK
14632
14633static void
883fd55a
KS
14634dwarf2_add_type_defn (struct field_info *fip, struct die_info *die,
14635 struct dwarf2_cu *cu)
6e70227d 14636{
be2daae6
TT
14637 struct decl_field fp;
14638 memset (&fp, 0, sizeof (fp));
98751a41 14639
883fd55a 14640 gdb_assert (type_can_define_types (die));
98751a41 14641
883fd55a 14642 /* Get name of field. NULL is okay here, meaning an anonymous type. */
be2daae6
TT
14643 fp.name = dwarf2_name (die, cu);
14644 fp.type = read_type_die (die, cu);
98751a41 14645
c191a687
KS
14646 /* Save accessibility. */
14647 enum dwarf_access_attribute accessibility;
14648 struct attribute *attr = dwarf2_attr (die, DW_AT_accessibility, cu);
14649 if (attr != NULL)
14650 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
14651 else
14652 accessibility = dwarf2_default_access_attribute (die, cu);
14653 switch (accessibility)
14654 {
14655 case DW_ACCESS_public:
14656 /* The assumed value if neither private nor protected. */
14657 break;
14658 case DW_ACCESS_private:
be2daae6 14659 fp.is_private = 1;
c191a687
KS
14660 break;
14661 case DW_ACCESS_protected:
be2daae6 14662 fp.is_protected = 1;
c191a687
KS
14663 break;
14664 default:
b98664d3 14665 complaint (_("Unhandled DW_AT_accessibility value (%x)"), accessibility);
c191a687
KS
14666 }
14667
883fd55a 14668 if (die->tag == DW_TAG_typedef)
be2daae6 14669 fip->typedef_field_list.push_back (fp);
883fd55a 14670 else
be2daae6 14671 fip->nested_types_list.push_back (fp);
98751a41
JK
14672}
14673
9c6a1327
TT
14674/* A convenience typedef that's used when finding the discriminant
14675 field for a variant part. */
1b95cdb7
SM
14676typedef std::unordered_map<sect_offset, int, gdb::hash_enum<sect_offset>>
14677 offset_map_type;
9c6a1327
TT
14678
14679/* Compute the discriminant range for a given variant. OBSTACK is
14680 where the results will be stored. VARIANT is the variant to
14681 process. IS_UNSIGNED indicates whether the discriminant is signed
14682 or unsigned. */
14683
14684static const gdb::array_view<discriminant_range>
14685convert_variant_range (struct obstack *obstack, const variant_field &variant,
14686 bool is_unsigned)
14687{
14688 std::vector<discriminant_range> ranges;
14689
14690 if (variant.default_branch)
14691 return {};
14692
14693 if (variant.discr_list_data == nullptr)
14694 {
14695 discriminant_range r
14696 = {variant.discriminant_value, variant.discriminant_value};
14697 ranges.push_back (r);
14698 }
14699 else
14700 {
14701 gdb::array_view<const gdb_byte> data (variant.discr_list_data->data,
14702 variant.discr_list_data->size);
14703 while (!data.empty ())
14704 {
14705 if (data[0] != DW_DSC_range && data[0] != DW_DSC_label)
14706 {
14707 complaint (_("invalid discriminant marker: %d"), data[0]);
14708 break;
14709 }
14710 bool is_range = data[0] == DW_DSC_range;
14711 data = data.slice (1);
14712
14713 ULONGEST low, high;
14714 unsigned int bytes_read;
14715
14716 if (data.empty ())
14717 {
14718 complaint (_("DW_AT_discr_list missing low value"));
14719 break;
14720 }
14721 if (is_unsigned)
14722 low = read_unsigned_leb128 (nullptr, data.data (), &bytes_read);
14723 else
14724 low = (ULONGEST) read_signed_leb128 (nullptr, data.data (),
14725 &bytes_read);
14726 data = data.slice (bytes_read);
14727
14728 if (is_range)
14729 {
14730 if (data.empty ())
14731 {
14732 complaint (_("DW_AT_discr_list missing high value"));
14733 break;
14734 }
14735 if (is_unsigned)
14736 high = read_unsigned_leb128 (nullptr, data.data (),
14737 &bytes_read);
14738 else
14739 high = (LONGEST) read_signed_leb128 (nullptr, data.data (),
14740 &bytes_read);
14741 data = data.slice (bytes_read);
14742 }
14743 else
14744 high = low;
14745
14746 ranges.push_back ({ low, high });
14747 }
14748 }
14749
14750 discriminant_range *result = XOBNEWVEC (obstack, discriminant_range,
14751 ranges.size ());
14752 std::copy (ranges.begin (), ranges.end (), result);
14753 return gdb::array_view<discriminant_range> (result, ranges.size ());
14754}
14755
14756static const gdb::array_view<variant_part> create_variant_parts
14757 (struct obstack *obstack,
14758 const offset_map_type &offset_map,
14759 struct field_info *fi,
14760 const std::vector<variant_part_builder> &variant_parts);
14761
14762/* Fill in a "struct variant" for a given variant field. RESULT is
14763 the variant to fill in. OBSTACK is where any needed allocations
14764 will be done. OFFSET_MAP holds the mapping from section offsets to
14765 fields for the type. FI describes the fields of the type we're
14766 processing. FIELD is the variant field we're converting. */
14767
14768static void
14769create_one_variant (variant &result, struct obstack *obstack,
14770 const offset_map_type &offset_map,
14771 struct field_info *fi, const variant_field &field)
14772{
14773 result.discriminants = convert_variant_range (obstack, field, false);
14774 result.first_field = field.first_field + fi->baseclasses.size ();
14775 result.last_field = field.last_field + fi->baseclasses.size ();
14776 result.parts = create_variant_parts (obstack, offset_map, fi,
14777 field.variant_parts);
14778}
14779
14780/* Fill in a "struct variant_part" for a given variant part. RESULT
14781 is the variant part to fill in. OBSTACK is where any needed
14782 allocations will be done. OFFSET_MAP holds the mapping from
14783 section offsets to fields for the type. FI describes the fields of
14784 the type we're processing. BUILDER is the variant part to be
14785 converted. */
14786
14787static void
14788create_one_variant_part (variant_part &result,
14789 struct obstack *obstack,
14790 const offset_map_type &offset_map,
14791 struct field_info *fi,
14792 const variant_part_builder &builder)
14793{
14794 auto iter = offset_map.find (builder.discriminant_offset);
14795 if (iter == offset_map.end ())
14796 {
14797 result.discriminant_index = -1;
14798 /* Doesn't matter. */
14799 result.is_unsigned = false;
14800 }
14801 else
14802 {
14803 result.discriminant_index = iter->second;
14804 result.is_unsigned
14805 = TYPE_UNSIGNED (FIELD_TYPE
14806 (fi->fields[result.discriminant_index].field));
14807 }
14808
14809 size_t n = builder.variants.size ();
14810 variant *output = new (obstack) variant[n];
14811 for (size_t i = 0; i < n; ++i)
14812 create_one_variant (output[i], obstack, offset_map, fi,
14813 builder.variants[i]);
14814
14815 result.variants = gdb::array_view<variant> (output, n);
14816}
14817
14818/* Create a vector of variant parts that can be attached to a type.
14819 OBSTACK is where any needed allocations will be done. OFFSET_MAP
14820 holds the mapping from section offsets to fields for the type. FI
14821 describes the fields of the type we're processing. VARIANT_PARTS
14822 is the vector to convert. */
14823
14824static const gdb::array_view<variant_part>
14825create_variant_parts (struct obstack *obstack,
14826 const offset_map_type &offset_map,
14827 struct field_info *fi,
14828 const std::vector<variant_part_builder> &variant_parts)
14829{
14830 if (variant_parts.empty ())
14831 return {};
14832
14833 size_t n = variant_parts.size ();
14834 variant_part *result = new (obstack) variant_part[n];
14835 for (size_t i = 0; i < n; ++i)
14836 create_one_variant_part (result[i], obstack, offset_map, fi,
14837 variant_parts[i]);
14838
14839 return gdb::array_view<variant_part> (result, n);
14840}
14841
14842/* Compute the variant part vector for FIP, attaching it to TYPE when
14843 done. */
14844
14845static void
14846add_variant_property (struct field_info *fip, struct type *type,
14847 struct dwarf2_cu *cu)
14848{
14849 /* Map section offsets of fields to their field index. Note the
14850 field index here does not take the number of baseclasses into
14851 account. */
14852 offset_map_type offset_map;
14853 for (int i = 0; i < fip->fields.size (); ++i)
14854 offset_map[fip->fields[i].offset] = i;
14855
5e22e966 14856 struct objfile *objfile = cu->per_objfile->objfile;
9c6a1327
TT
14857 gdb::array_view<variant_part> parts
14858 = create_variant_parts (&objfile->objfile_obstack, offset_map, fip,
14859 fip->variant_parts);
14860
14861 struct dynamic_prop prop;
14862 prop.kind = PROP_VARIANT_PARTS;
14863 prop.data.variant_parts
14864 = ((gdb::array_view<variant_part> *)
14865 obstack_copy (&objfile->objfile_obstack, &parts, sizeof (parts)));
14866
5c54719c 14867 type->add_dyn_prop (DYN_PROP_VARIANT_PARTS, prop);
9c6a1327
TT
14868}
14869
c906108c
SS
14870/* Create the vector of fields, and attach it to the type. */
14871
14872static void
fba45db2 14873dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 14874 struct dwarf2_cu *cu)
c906108c 14875{
317f7127 14876 int nfields = fip->nfields ();
c906108c
SS
14877
14878 /* Record the field count, allocate space for the array of fields,
14879 and create blank accessibility bitfields if necessary. */
5e33d5f4 14880 type->set_num_fields (nfields);
3cabb6b0
SM
14881 type->set_fields
14882 ((struct field *) TYPE_ZALLOC (type, sizeof (struct field) * nfields));
c906108c 14883
b4ba55a1 14884 if (fip->non_public_fields && cu->language != language_ada)
c906108c
SS
14885 {
14886 ALLOCATE_CPLUS_STRUCT_TYPE (type);
14887
14888 TYPE_FIELD_PRIVATE_BITS (type) =
14889 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14890 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
14891
14892 TYPE_FIELD_PROTECTED_BITS (type) =
14893 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14894 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
14895
774b6a14
TT
14896 TYPE_FIELD_IGNORE_BITS (type) =
14897 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14898 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
c906108c
SS
14899 }
14900
14901 /* If the type has baseclasses, allocate and clear a bit vector for
14902 TYPE_FIELD_VIRTUAL_BITS. */
be2daae6 14903 if (!fip->baseclasses.empty () && cu->language != language_ada)
c906108c 14904 {
be2daae6 14905 int num_bytes = B_BYTES (fip->baseclasses.size ());
fe1b8b76 14906 unsigned char *pointer;
c906108c
SS
14907
14908 ALLOCATE_CPLUS_STRUCT_TYPE (type);
224c3ddb 14909 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
fe1b8b76 14910 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
be2daae6
TT
14911 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->baseclasses.size ());
14912 TYPE_N_BASECLASSES (type) = fip->baseclasses.size ();
c906108c
SS
14913 }
14914
9c6a1327
TT
14915 if (!fip->variant_parts.empty ())
14916 add_variant_property (fip, type, cu);
2ddeaf8a 14917
be2daae6
TT
14918 /* Copy the saved-up fields into the field vector. */
14919 for (int i = 0; i < nfields; ++i)
c906108c 14920 {
be2daae6
TT
14921 struct nextfield &field
14922 = ((i < fip->baseclasses.size ()) ? fip->baseclasses[i]
14923 : fip->fields[i - fip->baseclasses.size ()]);
7d0ccb61 14924
ceacbf6e 14925 type->field (i) = field.field;
be2daae6 14926 switch (field.accessibility)
c906108c 14927 {
c5aa993b 14928 case DW_ACCESS_private:
b4ba55a1 14929 if (cu->language != language_ada)
be2daae6 14930 SET_TYPE_FIELD_PRIVATE (type, i);
c5aa993b 14931 break;
c906108c 14932
c5aa993b 14933 case DW_ACCESS_protected:
b4ba55a1 14934 if (cu->language != language_ada)
be2daae6 14935 SET_TYPE_FIELD_PROTECTED (type, i);
c5aa993b 14936 break;
c906108c 14937
c5aa993b
JM
14938 case DW_ACCESS_public:
14939 break;
c906108c 14940
c5aa993b
JM
14941 default:
14942 /* Unknown accessibility. Complain and treat it as public. */
14943 {
b98664d3 14944 complaint (_("unsupported accessibility %d"),
be2daae6 14945 field.accessibility);
c5aa993b
JM
14946 }
14947 break;
c906108c 14948 }
be2daae6 14949 if (i < fip->baseclasses.size ())
c906108c 14950 {
be2daae6 14951 switch (field.virtuality)
c906108c 14952 {
c5aa993b
JM
14953 case DW_VIRTUALITY_virtual:
14954 case DW_VIRTUALITY_pure_virtual:
b4ba55a1 14955 if (cu->language == language_ada)
a73c6dcd 14956 error (_("unexpected virtuality in component of Ada type"));
be2daae6 14957 SET_TYPE_FIELD_VIRTUAL (type, i);
c5aa993b 14958 break;
c906108c
SS
14959 }
14960 }
c906108c
SS
14961 }
14962}
14963
7d27a96d
TT
14964/* Return true if this member function is a constructor, false
14965 otherwise. */
14966
14967static int
14968dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
14969{
14970 const char *fieldname;
fe978cb0 14971 const char *type_name;
7d27a96d
TT
14972 int len;
14973
14974 if (die->parent == NULL)
14975 return 0;
14976
14977 if (die->parent->tag != DW_TAG_structure_type
14978 && die->parent->tag != DW_TAG_union_type
14979 && die->parent->tag != DW_TAG_class_type)
14980 return 0;
14981
14982 fieldname = dwarf2_name (die, cu);
fe978cb0
PA
14983 type_name = dwarf2_name (die->parent, cu);
14984 if (fieldname == NULL || type_name == NULL)
7d27a96d
TT
14985 return 0;
14986
14987 len = strlen (fieldname);
fe978cb0
PA
14988 return (strncmp (fieldname, type_name, len) == 0
14989 && (type_name[len] == '\0' || type_name[len] == '<'));
7d27a96d
TT
14990}
14991
e35000a7
TBA
14992/* Check if the given VALUE is a recognized enum
14993 dwarf_defaulted_attribute constant according to DWARF5 spec,
14994 Table 7.24. */
14995
14996static bool
14997is_valid_DW_AT_defaulted (ULONGEST value)
14998{
14999 switch (value)
15000 {
15001 case DW_DEFAULTED_no:
15002 case DW_DEFAULTED_in_class:
15003 case DW_DEFAULTED_out_of_class:
15004 return true;
15005 }
15006
3142e908 15007 complaint (_("unrecognized DW_AT_defaulted value (%s)"), pulongest (value));
e35000a7
TBA
15008 return false;
15009}
15010
c906108c
SS
15011/* Add a member function to the proper fieldlist. */
15012
15013static void
107d2387 15014dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 15015 struct type *type, struct dwarf2_cu *cu)
c906108c 15016{
5e22e966 15017 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 15018 struct attribute *attr;
c906108c 15019 int i;
be2daae6 15020 struct fnfieldlist *flp = nullptr;
c906108c 15021 struct fn_field *fnp;
15d034d0 15022 const char *fieldname;
f792889a 15023 struct type *this_type;
60d5a603 15024 enum dwarf_access_attribute accessibility;
c906108c 15025
b4ba55a1 15026 if (cu->language == language_ada)
a73c6dcd 15027 error (_("unexpected member function in Ada type"));
b4ba55a1 15028
2df3850c 15029 /* Get name of member function. */
39cbfefa
DJ
15030 fieldname = dwarf2_name (die, cu);
15031 if (fieldname == NULL)
2df3850c 15032 return;
c906108c 15033
c906108c 15034 /* Look up member function name in fieldlist. */
be2daae6 15035 for (i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15036 {
27bfe10e 15037 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
be2daae6
TT
15038 {
15039 flp = &fip->fnfieldlists[i];
15040 break;
15041 }
c906108c
SS
15042 }
15043
be2daae6
TT
15044 /* Create a new fnfieldlist if necessary. */
15045 if (flp == nullptr)
c906108c 15046 {
be2daae6
TT
15047 fip->fnfieldlists.emplace_back ();
15048 flp = &fip->fnfieldlists.back ();
c906108c 15049 flp->name = fieldname;
be2daae6 15050 i = fip->fnfieldlists.size () - 1;
c906108c
SS
15051 }
15052
be2daae6
TT
15053 /* Create a new member function field and add it to the vector of
15054 fnfieldlists. */
15055 flp->fnfields.emplace_back ();
15056 fnp = &flp->fnfields.back ();
3da10d80
KS
15057
15058 /* Delay processing of the physname until later. */
9c37b5ae 15059 if (cu->language == language_cplus)
be2daae6
TT
15060 add_to_method_list (type, i, flp->fnfields.size () - 1, fieldname,
15061 die, cu);
3da10d80
KS
15062 else
15063 {
1d06ead6 15064 const char *physname = dwarf2_physname (fieldname, die, cu);
3da10d80
KS
15065 fnp->physname = physname ? physname : "";
15066 }
15067
c906108c 15068 fnp->type = alloc_type (objfile);
f792889a 15069 this_type = read_type_die (die, cu);
78134374 15070 if (this_type && this_type->code () == TYPE_CODE_FUNC)
c906108c 15071 {
1f704f76 15072 int nparams = this_type->num_fields ();
c906108c 15073
f792889a 15074 /* TYPE is the domain of this method, and THIS_TYPE is the type
e26fb1d7
DC
15075 of the method itself (TYPE_CODE_METHOD). */
15076 smash_to_method_type (fnp->type, type,
f792889a 15077 TYPE_TARGET_TYPE (this_type),
80fc5e77 15078 this_type->fields (),
1f704f76 15079 this_type->num_fields (),
f792889a 15080 TYPE_VARARGS (this_type));
c906108c
SS
15081
15082 /* Handle static member functions.
c5aa993b 15083 Dwarf2 has no clean way to discern C++ static and non-static
0963b4bd
MS
15084 member functions. G++ helps GDB by marking the first
15085 parameter for non-static member functions (which is the this
15086 pointer) as artificial. We obtain this information from
15087 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
f792889a 15088 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
c906108c
SS
15089 fnp->voffset = VOFFSET_STATIC;
15090 }
15091 else
b98664d3 15092 complaint (_("member function type missing for '%s'"),
3da10d80 15093 dwarf2_full_name (fieldname, die, cu));
c906108c
SS
15094
15095 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 15096 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 15097 fnp->fcontext = die_containing_type (die, cu);
c906108c 15098
3e43a32a
MS
15099 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
15100 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
c906108c
SS
15101
15102 /* Get accessibility. */
e142c38c 15103 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
435d3d88 15104 if (attr != nullptr)
aead7601 15105 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
60d5a603
JK
15106 else
15107 accessibility = dwarf2_default_access_attribute (die, cu);
15108 switch (accessibility)
c906108c 15109 {
60d5a603
JK
15110 case DW_ACCESS_private:
15111 fnp->is_private = 1;
15112 break;
15113 case DW_ACCESS_protected:
15114 fnp->is_protected = 1;
15115 break;
c906108c
SS
15116 }
15117
b02dede2 15118 /* Check for artificial methods. */
e142c38c 15119 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
15120 if (attr && DW_UNSND (attr) != 0)
15121 fnp->is_artificial = 1;
15122
e35000a7
TBA
15123 /* Check for defaulted methods. */
15124 attr = dwarf2_attr (die, DW_AT_defaulted, cu);
15125 if (attr != nullptr && is_valid_DW_AT_defaulted (DW_UNSND (attr)))
15126 fnp->defaulted = (enum dwarf_defaulted_attribute) DW_UNSND (attr);
15127
15128 /* Check for deleted methods. */
15129 attr = dwarf2_attr (die, DW_AT_deleted, cu);
15130 if (attr != nullptr && DW_UNSND (attr) != 0)
15131 fnp->is_deleted = 1;
15132
7d27a96d
TT
15133 fnp->is_constructor = dwarf2_is_constructor (die, cu);
15134
0d564a31 15135 /* Get index in virtual function table if it is a virtual member
aec5aa8b
TT
15136 function. For older versions of GCC, this is an offset in the
15137 appropriate virtual table, as specified by DW_AT_containing_type.
15138 For everyone else, it is an expression to be evaluated relative
0d564a31
DJ
15139 to the object address. */
15140
e142c38c 15141 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
435d3d88 15142 if (attr != nullptr)
8e19ed76 15143 {
4fc6c0d5 15144 if (attr->form_is_block () && DW_BLOCK (attr)->size > 0)
8e19ed76 15145 {
aec5aa8b
TT
15146 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
15147 {
15148 /* Old-style GCC. */
15149 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
15150 }
15151 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
15152 || (DW_BLOCK (attr)->size > 1
15153 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
15154 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
15155 {
aec5aa8b
TT
15156 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
15157 if ((fnp->voffset % cu->header.addr_size) != 0)
15158 dwarf2_complex_location_expr_complaint ();
15159 else
15160 fnp->voffset /= cu->header.addr_size;
15161 fnp->voffset += 2;
15162 }
15163 else
15164 dwarf2_complex_location_expr_complaint ();
15165
15166 if (!fnp->fcontext)
7e993ebf
KS
15167 {
15168 /* If there is no `this' field and no DW_AT_containing_type,
15169 we cannot actually find a base class context for the
15170 vtable! */
1f704f76 15171 if (this_type->num_fields () == 0
7e993ebf
KS
15172 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
15173 {
b98664d3 15174 complaint (_("cannot determine context for virtual member "
9d8780f0
SM
15175 "function \"%s\" (offset %s)"),
15176 fieldname, sect_offset_str (die->sect_off));
7e993ebf
KS
15177 }
15178 else
15179 {
15180 fnp->fcontext
15181 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
15182 }
15183 }
aec5aa8b 15184 }
cd6c91b4 15185 else if (attr->form_is_section_offset ())
8e19ed76 15186 {
4d3c2250 15187 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
15188 }
15189 else
15190 {
4d3c2250
KB
15191 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
15192 fieldname);
8e19ed76 15193 }
0d564a31 15194 }
d48cc9dd
DJ
15195 else
15196 {
15197 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15198 if (attr && DW_UNSND (attr))
15199 {
15200 /* GCC does this, as of 2008-08-25; PR debug/37237. */
b98664d3 15201 complaint (_("Member function \"%s\" (offset %s) is virtual "
3e43a32a 15202 "but the vtable offset is not specified"),
9d8780f0 15203 fieldname, sect_offset_str (die->sect_off));
9655fd1a 15204 ALLOCATE_CPLUS_STRUCT_TYPE (type);
d48cc9dd
DJ
15205 TYPE_CPLUS_DYNAMIC (type) = 1;
15206 }
15207 }
c906108c
SS
15208}
15209
15210/* Create the vector of member function fields, and attach it to the type. */
15211
15212static void
fba45db2 15213dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15214 struct dwarf2_cu *cu)
c906108c 15215{
b4ba55a1 15216 if (cu->language == language_ada)
a73c6dcd 15217 error (_("unexpected member functions in Ada type"));
b4ba55a1 15218
c906108c
SS
15219 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15220 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
be2daae6
TT
15221 TYPE_ALLOC (type,
15222 sizeof (struct fn_fieldlist) * fip->fnfieldlists.size ());
c906108c 15223
be2daae6 15224 for (int i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15225 {
be2daae6 15226 struct fnfieldlist &nf = fip->fnfieldlists[i];
c906108c 15227 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
c906108c 15228
be2daae6
TT
15229 TYPE_FN_FIELDLIST_NAME (type, i) = nf.name;
15230 TYPE_FN_FIELDLIST_LENGTH (type, i) = nf.fnfields.size ();
c906108c 15231 fn_flp->fn_fields = (struct fn_field *)
be2daae6
TT
15232 TYPE_ALLOC (type, sizeof (struct fn_field) * nf.fnfields.size ());
15233
15234 for (int k = 0; k < nf.fnfields.size (); ++k)
15235 fn_flp->fn_fields[k] = nf.fnfields[k];
c906108c
SS
15236 }
15237
be2daae6 15238 TYPE_NFN_FIELDS (type) = fip->fnfieldlists.size ();
c906108c
SS
15239}
15240
1168df01
JB
15241/* Returns non-zero if NAME is the name of a vtable member in CU's
15242 language, zero otherwise. */
15243static int
15244is_vtable_name (const char *name, struct dwarf2_cu *cu)
15245{
15246 static const char vptr[] = "_vptr";
15247
9c37b5ae
TT
15248 /* Look for the C++ form of the vtable. */
15249 if (startswith (name, vptr) && is_cplus_marker (name[sizeof (vptr) - 1]))
1168df01
JB
15250 return 1;
15251
15252 return 0;
15253}
15254
c0dd20ea 15255/* GCC outputs unnamed structures that are really pointers to member
0b92b5bb
TT
15256 functions, with the ABI-specified layout. If TYPE describes
15257 such a structure, smash it into a member function type.
61049d3b
DJ
15258
15259 GCC shouldn't do this; it should just output pointer to member DIEs.
15260 This is GCC PR debug/28767. */
c0dd20ea 15261
0b92b5bb
TT
15262static void
15263quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
c0dd20ea 15264{
09e2d7c7 15265 struct type *pfn_type, *self_type, *new_type;
c0dd20ea
DJ
15266
15267 /* Check for a structure with no name and two children. */
1f704f76 15268 if (type->code () != TYPE_CODE_STRUCT || type->num_fields () != 2)
0b92b5bb 15269 return;
c0dd20ea
DJ
15270
15271 /* Check for __pfn and __delta members. */
0b92b5bb
TT
15272 if (TYPE_FIELD_NAME (type, 0) == NULL
15273 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
15274 || TYPE_FIELD_NAME (type, 1) == NULL
15275 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
15276 return;
c0dd20ea
DJ
15277
15278 /* Find the type of the method. */
0b92b5bb 15279 pfn_type = TYPE_FIELD_TYPE (type, 0);
c0dd20ea 15280 if (pfn_type == NULL
78134374
SM
15281 || pfn_type->code () != TYPE_CODE_PTR
15282 || TYPE_TARGET_TYPE (pfn_type)->code () != TYPE_CODE_FUNC)
0b92b5bb 15283 return;
c0dd20ea
DJ
15284
15285 /* Look for the "this" argument. */
15286 pfn_type = TYPE_TARGET_TYPE (pfn_type);
1f704f76 15287 if (pfn_type->num_fields () == 0
0b92b5bb 15288 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
78134374 15289 || TYPE_FIELD_TYPE (pfn_type, 0)->code () != TYPE_CODE_PTR)
0b92b5bb 15290 return;
c0dd20ea 15291
09e2d7c7 15292 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
0b92b5bb 15293 new_type = alloc_type (objfile);
09e2d7c7 15294 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
80fc5e77 15295 pfn_type->fields (), pfn_type->num_fields (),
c0dd20ea 15296 TYPE_VARARGS (pfn_type));
0b92b5bb 15297 smash_to_methodptr_type (type, new_type);
c0dd20ea 15298}
1168df01 15299
2b4424c3
TT
15300/* If the DIE has a DW_AT_alignment attribute, return its value, doing
15301 appropriate error checking and issuing complaints if there is a
15302 problem. */
15303
15304static ULONGEST
15305get_alignment (struct dwarf2_cu *cu, struct die_info *die)
15306{
15307 struct attribute *attr = dwarf2_attr (die, DW_AT_alignment, cu);
15308
15309 if (attr == nullptr)
15310 return 0;
15311
cd6c91b4 15312 if (!attr->form_is_constant ())
2b4424c3 15313 {
b98664d3 15314 complaint (_("DW_AT_alignment must have constant form"
2b4424c3
TT
15315 " - DIE at %s [in module %s]"),
15316 sect_offset_str (die->sect_off),
5e22e966 15317 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15318 return 0;
15319 }
15320
15321 ULONGEST align;
15322 if (attr->form == DW_FORM_sdata)
15323 {
15324 LONGEST val = DW_SND (attr);
15325 if (val < 0)
15326 {
b98664d3 15327 complaint (_("DW_AT_alignment value must not be negative"
2b4424c3
TT
15328 " - DIE at %s [in module %s]"),
15329 sect_offset_str (die->sect_off),
5e22e966 15330 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15331 return 0;
15332 }
15333 align = val;
15334 }
15335 else
15336 align = DW_UNSND (attr);
15337
15338 if (align == 0)
15339 {
b98664d3 15340 complaint (_("DW_AT_alignment value must not be zero"
2b4424c3
TT
15341 " - DIE at %s [in module %s]"),
15342 sect_offset_str (die->sect_off),
5e22e966 15343 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15344 return 0;
15345 }
15346 if ((align & (align - 1)) != 0)
15347 {
b98664d3 15348 complaint (_("DW_AT_alignment value must be a power of 2"
2b4424c3
TT
15349 " - DIE at %s [in module %s]"),
15350 sect_offset_str (die->sect_off),
5e22e966 15351 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15352 return 0;
15353 }
15354
15355 return align;
15356}
15357
15358/* If the DIE has a DW_AT_alignment attribute, use its value to set
15359 the alignment for TYPE. */
15360
15361static void
15362maybe_set_alignment (struct dwarf2_cu *cu, struct die_info *die,
15363 struct type *type)
15364{
15365 if (!set_type_align (type, get_alignment (cu, die)))
b98664d3 15366 complaint (_("DW_AT_alignment value too large"
2b4424c3
TT
15367 " - DIE at %s [in module %s]"),
15368 sect_offset_str (die->sect_off),
5e22e966 15369 objfile_name (cu->per_objfile->objfile));
2b4424c3 15370}
685b1105 15371
e35000a7
TBA
15372/* Check if the given VALUE is a valid enum dwarf_calling_convention
15373 constant for a type, according to DWARF5 spec, Table 5.5. */
15374
15375static bool
15376is_valid_DW_AT_calling_convention_for_type (ULONGEST value)
15377{
15378 switch (value)
15379 {
15380 case DW_CC_normal:
15381 case DW_CC_pass_by_reference:
15382 case DW_CC_pass_by_value:
15383 return true;
15384
15385 default:
15386 complaint (_("unrecognized DW_AT_calling_convention value "
3142e908 15387 "(%s) for a type"), pulongest (value));
e35000a7
TBA
15388 return false;
15389 }
15390}
15391
d0922fcf
TBA
15392/* Check if the given VALUE is a valid enum dwarf_calling_convention
15393 constant for a subroutine, according to DWARF5 spec, Table 3.3, and
15394 also according to GNU-specific values (see include/dwarf2.h). */
15395
15396static bool
15397is_valid_DW_AT_calling_convention_for_subroutine (ULONGEST value)
15398{
15399 switch (value)
15400 {
15401 case DW_CC_normal:
15402 case DW_CC_program:
15403 case DW_CC_nocall:
15404 return true;
15405
15406 case DW_CC_GNU_renesas_sh:
15407 case DW_CC_GNU_borland_fastcall_i386:
15408 case DW_CC_GDB_IBM_OpenCL:
15409 return true;
15410
15411 default:
15412 complaint (_("unrecognized DW_AT_calling_convention value "
3142e908 15413 "(%s) for a subroutine"), pulongest (value));
d0922fcf
TBA
15414 return false;
15415 }
15416}
15417
c906108c 15418/* Called when we find the DIE that starts a structure or union scope
c767944b
DJ
15419 (definition) to create a type for the structure or union. Fill in
15420 the type's name and general properties; the members will not be
83655187
DE
15421 processed until process_structure_scope. A symbol table entry for
15422 the type will also not be done until process_structure_scope (assuming
15423 the type has a name).
c906108c 15424
c767944b
DJ
15425 NOTE: we need to call these functions regardless of whether or not the
15426 DIE has a DW_AT_name attribute, since it might be an anonymous
c906108c 15427 structure or union. This gets the type entered into our set of
83655187 15428 user defined types. */
c906108c 15429
f792889a 15430static struct type *
134d01f1 15431read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 15432{
5e22e966 15433 struct objfile *objfile = cu->per_objfile->objfile;
c906108c
SS
15434 struct type *type;
15435 struct attribute *attr;
15d034d0 15436 const char *name;
c906108c 15437
348e048f
DE
15438 /* If the definition of this type lives in .debug_types, read that type.
15439 Don't follow DW_AT_specification though, that will take us back up
15440 the chain and we want to go down. */
052c8bb8 15441 attr = die->attr (DW_AT_signature);
435d3d88 15442 if (attr != nullptr)
348e048f 15443 {
ac9ec31b 15444 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 15445
ac9ec31b 15446 /* The type's CU may not be the same as CU.
02142a6c 15447 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
15448 return set_die_type (die, type, cu);
15449 }
15450
c0dd20ea 15451 type = alloc_type (objfile);
c906108c 15452 INIT_CPLUS_SPECIFIC (type);
93311388 15453
39cbfefa
DJ
15454 name = dwarf2_name (die, cu);
15455 if (name != NULL)
c906108c 15456 {
987504bb 15457 if (cu->language == language_cplus
c44af4eb
TT
15458 || cu->language == language_d
15459 || cu->language == language_rust)
63d06c5c 15460 {
15d034d0 15461 const char *full_name = dwarf2_full_name (name, die, cu);
3da10d80
KS
15462
15463 /* dwarf2_full_name might have already finished building the DIE's
15464 type. If so, there is no need to continue. */
15465 if (get_die_type (die, cu) != NULL)
15466 return get_die_type (die, cu);
15467
d0e39ea2 15468 type->set_name (full_name);
63d06c5c
DC
15469 }
15470 else
15471 {
d8151005
DJ
15472 /* The name is already allocated along with this objfile, so
15473 we don't need to duplicate it for the type. */
d0e39ea2 15474 type->set_name (name);
63d06c5c 15475 }
c906108c
SS
15476 }
15477
15478 if (die->tag == DW_TAG_structure_type)
15479 {
67607e24 15480 type->set_code (TYPE_CODE_STRUCT);
c906108c
SS
15481 }
15482 else if (die->tag == DW_TAG_union_type)
15483 {
67607e24 15484 type->set_code (TYPE_CODE_UNION);
c906108c
SS
15485 }
15486 else
15487 {
67607e24 15488 type->set_code (TYPE_CODE_STRUCT);
c906108c
SS
15489 }
15490
0cc2414c
TT
15491 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
15492 TYPE_DECLARED_CLASS (type) = 1;
15493
e35000a7
TBA
15494 /* Store the calling convention in the type if it's available in
15495 the die. Otherwise the calling convention remains set to
15496 the default value DW_CC_normal. */
15497 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
15498 if (attr != nullptr
15499 && is_valid_DW_AT_calling_convention_for_type (DW_UNSND (attr)))
15500 {
15501 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15502 TYPE_CPLUS_CALLING_CONVENTION (type)
15503 = (enum dwarf_calling_convention) (DW_UNSND (attr));
15504 }
15505
e142c38c 15506 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 15507 if (attr != nullptr)
c906108c 15508 {
cd6c91b4 15509 if (attr->form_is_constant ())
155bfbd3
JB
15510 TYPE_LENGTH (type) = DW_UNSND (attr);
15511 else
15512 {
f8e89861 15513 struct dynamic_prop prop;
293e7e51 15514 if (attr_to_dynamic_prop (attr, die, cu, &prop, cu->addr_type ()))
5c54719c 15515 type->add_dyn_prop (DYN_PROP_BYTE_SIZE, prop);
155bfbd3
JB
15516 TYPE_LENGTH (type) = 0;
15517 }
c906108c
SS
15518 }
15519 else
15520 {
15521 TYPE_LENGTH (type) = 0;
15522 }
15523
2b4424c3
TT
15524 maybe_set_alignment (cu, die, type);
15525
5230b05a 15526 if (producer_is_icc_lt_14 (cu) && (TYPE_LENGTH (type) == 0))
685b1105 15527 {
5230b05a
WT
15528 /* ICC<14 does not output the required DW_AT_declaration on
15529 incomplete types, but gives them a size of zero. */
422b1cb0 15530 TYPE_STUB (type) = 1;
685b1105
JK
15531 }
15532 else
15533 TYPE_STUB_SUPPORTED (type) = 1;
15534
dc718098 15535 if (die_is_declaration (die, cu))
876cecd0 15536 TYPE_STUB (type) = 1;
a6c727b2
DJ
15537 else if (attr == NULL && die->child == NULL
15538 && producer_is_realview (cu->producer))
15539 /* RealView does not output the required DW_AT_declaration
15540 on incomplete types. */
15541 TYPE_STUB (type) = 1;
dc718098 15542
c906108c
SS
15543 /* We need to add the type field to the die immediately so we don't
15544 infinitely recurse when dealing with pointers to the structure
0963b4bd 15545 type within the structure itself. */
1c379e20 15546 set_die_type (die, type, cu);
c906108c 15547
7e314c57
JK
15548 /* set_die_type should be already done. */
15549 set_descriptive_type (type, die, cu);
15550
c767944b
DJ
15551 return type;
15552}
15553
9c6a1327
TT
15554static void handle_struct_member_die
15555 (struct die_info *child_die,
15556 struct type *type,
15557 struct field_info *fi,
15558 std::vector<struct symbol *> *template_args,
15559 struct dwarf2_cu *cu);
15560
15561/* A helper for handle_struct_member_die that handles
15562 DW_TAG_variant_part. */
15563
15564static void
15565handle_variant_part (struct die_info *die, struct type *type,
15566 struct field_info *fi,
15567 std::vector<struct symbol *> *template_args,
15568 struct dwarf2_cu *cu)
15569{
15570 variant_part_builder *new_part;
15571 if (fi->current_variant_part == nullptr)
15572 {
15573 fi->variant_parts.emplace_back ();
15574 new_part = &fi->variant_parts.back ();
15575 }
15576 else if (!fi->current_variant_part->processing_variant)
15577 {
15578 complaint (_("nested DW_TAG_variant_part seen "
15579 "- DIE at %s [in module %s]"),
15580 sect_offset_str (die->sect_off),
5e22e966 15581 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15582 return;
15583 }
15584 else
15585 {
15586 variant_field &current = fi->current_variant_part->variants.back ();
15587 current.variant_parts.emplace_back ();
15588 new_part = &current.variant_parts.back ();
15589 }
15590
15591 /* When we recurse, we want callees to add to this new variant
15592 part. */
15593 scoped_restore save_current_variant_part
15594 = make_scoped_restore (&fi->current_variant_part, new_part);
15595
15596 struct attribute *discr = dwarf2_attr (die, DW_AT_discr, cu);
15597 if (discr == NULL)
15598 {
15599 /* It's a univariant form, an extension we support. */
15600 }
15601 else if (discr->form_is_ref ())
15602 {
15603 struct dwarf2_cu *target_cu = cu;
15604 struct die_info *target_die = follow_die_ref (die, discr, &target_cu);
15605
15606 new_part->discriminant_offset = target_die->sect_off;
15607 }
15608 else
15609 {
15610 complaint (_("DW_AT_discr does not have DIE reference form"
15611 " - DIE at %s [in module %s]"),
15612 sect_offset_str (die->sect_off),
5e22e966 15613 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15614 }
15615
15616 for (die_info *child_die = die->child;
15617 child_die != NULL;
15618 child_die = child_die->sibling)
15619 handle_struct_member_die (child_die, type, fi, template_args, cu);
15620}
15621
15622/* A helper for handle_struct_member_die that handles
15623 DW_TAG_variant. */
15624
15625static void
15626handle_variant (struct die_info *die, struct type *type,
15627 struct field_info *fi,
15628 std::vector<struct symbol *> *template_args,
15629 struct dwarf2_cu *cu)
15630{
15631 if (fi->current_variant_part == nullptr)
15632 {
15633 complaint (_("saw DW_TAG_variant outside DW_TAG_variant_part "
15634 "- DIE at %s [in module %s]"),
15635 sect_offset_str (die->sect_off),
5e22e966 15636 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15637 return;
15638 }
15639 if (fi->current_variant_part->processing_variant)
15640 {
15641 complaint (_("nested DW_TAG_variant seen "
15642 "- DIE at %s [in module %s]"),
15643 sect_offset_str (die->sect_off),
5e22e966 15644 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15645 return;
15646 }
15647
15648 scoped_restore save_processing_variant
15649 = make_scoped_restore (&fi->current_variant_part->processing_variant,
15650 true);
15651
15652 fi->current_variant_part->variants.emplace_back ();
15653 variant_field &variant = fi->current_variant_part->variants.back ();
15654 variant.first_field = fi->fields.size ();
15655
15656 /* In a variant we want to get the discriminant and also add a
15657 field for our sole member child. */
15658 struct attribute *discr = dwarf2_attr (die, DW_AT_discr_value, cu);
15659 if (discr == nullptr)
15660 {
15661 discr = dwarf2_attr (die, DW_AT_discr_list, cu);
15662 if (discr == nullptr || DW_BLOCK (discr)->size == 0)
15663 variant.default_branch = true;
15664 else
15665 variant.discr_list_data = DW_BLOCK (discr);
15666 }
15667 else
15668 variant.discriminant_value = DW_UNSND (discr);
15669
15670 for (die_info *variant_child = die->child;
15671 variant_child != NULL;
15672 variant_child = variant_child->sibling)
15673 handle_struct_member_die (variant_child, type, fi, template_args, cu);
15674
15675 variant.last_field = fi->fields.size ();
15676}
15677
2ddeaf8a
TT
15678/* A helper for process_structure_scope that handles a single member
15679 DIE. */
15680
15681static void
15682handle_struct_member_die (struct die_info *child_die, struct type *type,
15683 struct field_info *fi,
15684 std::vector<struct symbol *> *template_args,
15685 struct dwarf2_cu *cu)
15686{
15687 if (child_die->tag == DW_TAG_member
9c6a1327 15688 || child_die->tag == DW_TAG_variable)
2ddeaf8a
TT
15689 {
15690 /* NOTE: carlton/2002-11-05: A C++ static data member
15691 should be a DW_TAG_member that is a declaration, but
15692 all versions of G++ as of this writing (so through at
15693 least 3.2.1) incorrectly generate DW_TAG_variable
15694 tags for them instead. */
15695 dwarf2_add_field (fi, child_die, cu);
15696 }
15697 else if (child_die->tag == DW_TAG_subprogram)
15698 {
15699 /* Rust doesn't have member functions in the C++ sense.
15700 However, it does emit ordinary functions as children
15701 of a struct DIE. */
15702 if (cu->language == language_rust)
15703 read_func_scope (child_die, cu);
15704 else
15705 {
15706 /* C++ member function. */
15707 dwarf2_add_member_fn (fi, child_die, type, cu);
15708 }
15709 }
15710 else if (child_die->tag == DW_TAG_inheritance)
15711 {
15712 /* C++ base class field. */
15713 dwarf2_add_field (fi, child_die, cu);
15714 }
15715 else if (type_can_define_types (child_die))
15716 dwarf2_add_type_defn (fi, child_die, cu);
15717 else if (child_die->tag == DW_TAG_template_type_param
15718 || child_die->tag == DW_TAG_template_value_param)
15719 {
15720 struct symbol *arg = new_symbol (child_die, NULL, cu);
15721
15722 if (arg != NULL)
15723 template_args->push_back (arg);
15724 }
9c6a1327
TT
15725 else if (child_die->tag == DW_TAG_variant_part)
15726 handle_variant_part (child_die, type, fi, template_args, cu);
2ddeaf8a 15727 else if (child_die->tag == DW_TAG_variant)
9c6a1327 15728 handle_variant (child_die, type, fi, template_args, cu);
2ddeaf8a
TT
15729}
15730
c767944b
DJ
15731/* Finish creating a structure or union type, including filling in
15732 its members and creating a symbol for it. */
15733
15734static void
15735process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
15736{
5e22e966 15737 struct objfile *objfile = cu->per_objfile->objfile;
ca040673 15738 struct die_info *child_die;
c767944b
DJ
15739 struct type *type;
15740
15741 type = get_die_type (die, cu);
15742 if (type == NULL)
15743 type = read_structure_type (die, cu);
15744
3e1d3d8c 15745 bool has_template_parameters = false;
e142c38c 15746 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
15747 {
15748 struct field_info fi;
2f4732b0 15749 std::vector<struct symbol *> template_args;
c906108c 15750
639d11d3 15751 child_die = die->child;
c906108c
SS
15752
15753 while (child_die && child_die->tag)
15754 {
2ddeaf8a 15755 handle_struct_member_die (child_die, type, &fi, &template_args, cu);
436c571c 15756 child_die = child_die->sibling;
c906108c
SS
15757 }
15758
34eaf542 15759 /* Attach template arguments to type. */
2f4732b0 15760 if (!template_args.empty ())
34eaf542 15761 {
3e1d3d8c 15762 has_template_parameters = true;
34eaf542 15763 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2f4732b0 15764 TYPE_N_TEMPLATE_ARGUMENTS (type) = template_args.size ();
34eaf542 15765 TYPE_TEMPLATE_ARGUMENTS (type)
8d749320
SM
15766 = XOBNEWVEC (&objfile->objfile_obstack,
15767 struct symbol *,
15768 TYPE_N_TEMPLATE_ARGUMENTS (type));
34eaf542 15769 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
2f4732b0 15770 template_args.data (),
34eaf542
TT
15771 (TYPE_N_TEMPLATE_ARGUMENTS (type)
15772 * sizeof (struct symbol *)));
34eaf542
TT
15773 }
15774
c906108c 15775 /* Attach fields and member functions to the type. */
317f7127 15776 if (fi.nfields () > 0)
e7c27a73 15777 dwarf2_attach_fields_to_type (&fi, type, cu);
be2daae6 15778 if (!fi.fnfieldlists.empty ())
c906108c 15779 {
e7c27a73 15780 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 15781
c5aa993b 15782 /* Get the type which refers to the base class (possibly this
c906108c 15783 class itself) which contains the vtable pointer for the current
0d564a31
DJ
15784 class from the DW_AT_containing_type attribute. This use of
15785 DW_AT_containing_type is a GNU extension. */
c906108c 15786
e142c38c 15787 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 15788 {
e7c27a73 15789 struct type *t = die_containing_type (die, cu);
c906108c 15790
ae6ae975 15791 set_type_vptr_basetype (type, t);
c906108c
SS
15792 if (type == t)
15793 {
c906108c
SS
15794 int i;
15795
15796 /* Our own class provides vtbl ptr. */
1f704f76 15797 for (i = t->num_fields () - 1;
c906108c
SS
15798 i >= TYPE_N_BASECLASSES (t);
15799 --i)
15800 {
0d5cff50 15801 const char *fieldname = TYPE_FIELD_NAME (t, i);
c906108c 15802
1168df01 15803 if (is_vtable_name (fieldname, cu))
c906108c 15804 {
ae6ae975 15805 set_type_vptr_fieldno (type, i);
c906108c
SS
15806 break;
15807 }
15808 }
15809
15810 /* Complain if virtual function table field not found. */
15811 if (i < TYPE_N_BASECLASSES (t))
b98664d3 15812 complaint (_("virtual function table pointer "
3e43a32a 15813 "not found when defining class '%s'"),
7d93a1e0 15814 type->name () ? type->name () : "");
c906108c
SS
15815 }
15816 else
15817 {
ae6ae975 15818 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
c906108c
SS
15819 }
15820 }
f6235d4c 15821 else if (cu->producer
61012eef 15822 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
f6235d4c
EZ
15823 {
15824 /* The IBM XLC compiler does not provide direct indication
15825 of the containing type, but the vtable pointer is
15826 always named __vfp. */
15827
15828 int i;
15829
1f704f76 15830 for (i = type->num_fields () - 1;
f6235d4c
EZ
15831 i >= TYPE_N_BASECLASSES (type);
15832 --i)
15833 {
15834 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
15835 {
ae6ae975
DE
15836 set_type_vptr_fieldno (type, i);
15837 set_type_vptr_basetype (type, type);
f6235d4c
EZ
15838 break;
15839 }
15840 }
15841 }
c906108c 15842 }
98751a41
JK
15843
15844 /* Copy fi.typedef_field_list linked list elements content into the
15845 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
be2daae6 15846 if (!fi.typedef_field_list.empty ())
98751a41 15847 {
be2daae6 15848 int count = fi.typedef_field_list.size ();
98751a41 15849
a0d7a4ff 15850 ALLOCATE_CPLUS_STRUCT_TYPE (type);
98751a41 15851 TYPE_TYPEDEF_FIELD_ARRAY (type)
883fd55a 15852 = ((struct decl_field *)
be2daae6
TT
15853 TYPE_ALLOC (type,
15854 sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * count));
15855 TYPE_TYPEDEF_FIELD_COUNT (type) = count;
6e70227d 15856
be2daae6
TT
15857 for (int i = 0; i < fi.typedef_field_list.size (); ++i)
15858 TYPE_TYPEDEF_FIELD (type, i) = fi.typedef_field_list[i];
98751a41 15859 }
c767944b 15860
883fd55a
KS
15861 /* Copy fi.nested_types_list linked list elements content into the
15862 allocated array TYPE_NESTED_TYPES_ARRAY (type). */
be2daae6 15863 if (!fi.nested_types_list.empty () && cu->language != language_ada)
883fd55a 15864 {
be2daae6 15865 int count = fi.nested_types_list.size ();
883fd55a
KS
15866
15867 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15868 TYPE_NESTED_TYPES_ARRAY (type)
15869 = ((struct decl_field *)
be2daae6
TT
15870 TYPE_ALLOC (type, sizeof (struct decl_field) * count));
15871 TYPE_NESTED_TYPES_COUNT (type) = count;
883fd55a 15872
be2daae6
TT
15873 for (int i = 0; i < fi.nested_types_list.size (); ++i)
15874 TYPE_NESTED_TYPES_FIELD (type, i) = fi.nested_types_list[i];
883fd55a 15875 }
c906108c 15876 }
63d06c5c 15877
bb5ed363 15878 quirk_gcc_member_function_pointer (type, objfile);
c9317f21
TT
15879 if (cu->language == language_rust && die->tag == DW_TAG_union_type)
15880 cu->rust_unions.push_back (type);
0b92b5bb 15881
90aeadfc
DC
15882 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
15883 snapshots) has been known to create a die giving a declaration
15884 for a class that has, as a child, a die giving a definition for a
15885 nested class. So we have to process our children even if the
15886 current die is a declaration. Normally, of course, a declaration
15887 won't have any children at all. */
134d01f1 15888
ca040673
DE
15889 child_die = die->child;
15890
90aeadfc
DC
15891 while (child_die != NULL && child_die->tag)
15892 {
15893 if (child_die->tag == DW_TAG_member
15894 || child_die->tag == DW_TAG_variable
34eaf542
TT
15895 || child_die->tag == DW_TAG_inheritance
15896 || child_die->tag == DW_TAG_template_value_param
15897 || child_die->tag == DW_TAG_template_type_param)
134d01f1 15898 {
90aeadfc 15899 /* Do nothing. */
134d01f1 15900 }
90aeadfc
DC
15901 else
15902 process_die (child_die, cu);
134d01f1 15903
436c571c 15904 child_die = child_die->sibling;
134d01f1
DJ
15905 }
15906
fa4028e9
JB
15907 /* Do not consider external references. According to the DWARF standard,
15908 these DIEs are identified by the fact that they have no byte_size
15909 attribute, and a declaration attribute. */
15910 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
15cd93d0
TV
15911 || !die_is_declaration (die, cu)
15912 || dwarf2_attr (die, DW_AT_signature, cu) != NULL)
3e1d3d8c
TT
15913 {
15914 struct symbol *sym = new_symbol (die, type, cu);
15915
15916 if (has_template_parameters)
15917 {
a776957c
TT
15918 struct symtab *symtab;
15919 if (sym != nullptr)
15920 symtab = symbol_symtab (sym);
15921 else if (cu->line_header != nullptr)
15922 {
15923 /* Any related symtab will do. */
15924 symtab
7ba99d21 15925 = cu->line_header->file_names ()[0].symtab;
a776957c
TT
15926 }
15927 else
15928 {
15929 symtab = nullptr;
15930 complaint (_("could not find suitable "
15931 "symtab for template parameter"
15932 " - DIE at %s [in module %s]"),
15933 sect_offset_str (die->sect_off),
15934 objfile_name (objfile));
15935 }
15936
15937 if (symtab != nullptr)
15938 {
15939 /* Make sure that the symtab is set on the new symbols.
15940 Even though they don't appear in this symtab directly,
15941 other parts of gdb assume that symbols do, and this is
15942 reasonably true. */
15943 for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i)
15944 symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i), symtab);
15945 }
3e1d3d8c
TT
15946 }
15947 }
134d01f1
DJ
15948}
15949
ed6acedd
TT
15950/* Assuming DIE is an enumeration type, and TYPE is its associated
15951 type, update TYPE using some information only available in DIE's
15952 children. In particular, the fields are computed. */
55426c9d
JB
15953
15954static void
15955update_enumeration_type_from_children (struct die_info *die,
15956 struct type *type,
15957 struct dwarf2_cu *cu)
15958{
60f7655a 15959 struct die_info *child_die;
55426c9d
JB
15960 int unsigned_enum = 1;
15961 int flag_enum = 1;
55426c9d 15962
8268c778 15963 auto_obstack obstack;
ed6acedd 15964 std::vector<struct field> fields;
55426c9d 15965
60f7655a
DE
15966 for (child_die = die->child;
15967 child_die != NULL && child_die->tag;
436c571c 15968 child_die = child_die->sibling)
55426c9d
JB
15969 {
15970 struct attribute *attr;
15971 LONGEST value;
15972 const gdb_byte *bytes;
15973 struct dwarf2_locexpr_baton *baton;
15974 const char *name;
60f7655a 15975
55426c9d
JB
15976 if (child_die->tag != DW_TAG_enumerator)
15977 continue;
15978
15979 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
15980 if (attr == NULL)
15981 continue;
15982
15983 name = dwarf2_name (child_die, cu);
15984 if (name == NULL)
15985 name = "<anonymous enumerator>";
15986
15987 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
15988 &value, &bytes, &baton);
15989 if (value < 0)
15990 {
15991 unsigned_enum = 0;
15992 flag_enum = 0;
15993 }
55426c9d 15994 else
edd45eb0
SM
15995 {
15996 if (count_one_bits_ll (value) >= 2)
15997 flag_enum = 0;
edd45eb0 15998 }
55426c9d 15999
ed6acedd
TT
16000 fields.emplace_back ();
16001 struct field &field = fields.back ();
16002 FIELD_NAME (field) = dwarf2_physname (name, child_die, cu);
16003 SET_FIELD_ENUMVAL (field, value);
16004 }
16005
16006 if (!fields.empty ())
16007 {
5e33d5f4 16008 type->set_num_fields (fields.size ());
3cabb6b0
SM
16009 type->set_fields
16010 ((struct field *)
16011 TYPE_ALLOC (type, sizeof (struct field) * fields.size ()));
80fc5e77 16012 memcpy (type->fields (), fields.data (),
ed6acedd 16013 sizeof (struct field) * fields.size ());
55426c9d
JB
16014 }
16015
16016 if (unsigned_enum)
16017 TYPE_UNSIGNED (type) = 1;
16018 if (flag_enum)
16019 TYPE_FLAG_ENUM (type) = 1;
55426c9d
JB
16020}
16021
134d01f1
DJ
16022/* Given a DW_AT_enumeration_type die, set its type. We do not
16023 complete the type's fields yet, or create any symbols. */
c906108c 16024
f792889a 16025static struct type *
134d01f1 16026read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16027{
5e22e966 16028 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 16029 struct type *type;
c906108c 16030 struct attribute *attr;
0114d602 16031 const char *name;
134d01f1 16032
348e048f
DE
16033 /* If the definition of this type lives in .debug_types, read that type.
16034 Don't follow DW_AT_specification though, that will take us back up
16035 the chain and we want to go down. */
052c8bb8 16036 attr = die->attr (DW_AT_signature);
435d3d88 16037 if (attr != nullptr)
348e048f 16038 {
ac9ec31b 16039 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 16040
ac9ec31b 16041 /* The type's CU may not be the same as CU.
02142a6c 16042 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
16043 return set_die_type (die, type, cu);
16044 }
16045
c906108c
SS
16046 type = alloc_type (objfile);
16047
67607e24 16048 type->set_code (TYPE_CODE_ENUM);
94af9270 16049 name = dwarf2_full_name (NULL, die, cu);
39cbfefa 16050 if (name != NULL)
d0e39ea2 16051 type->set_name (name);
c906108c 16052
0626fc76
TT
16053 attr = dwarf2_attr (die, DW_AT_type, cu);
16054 if (attr != NULL)
16055 {
16056 struct type *underlying_type = die_type (die, cu);
16057
16058 TYPE_TARGET_TYPE (type) = underlying_type;
16059 }
16060
e142c38c 16061 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16062 if (attr != nullptr)
c906108c
SS
16063 {
16064 TYPE_LENGTH (type) = DW_UNSND (attr);
16065 }
16066 else
16067 {
16068 TYPE_LENGTH (type) = 0;
16069 }
16070
2b4424c3
TT
16071 maybe_set_alignment (cu, die, type);
16072
137033e9
JB
16073 /* The enumeration DIE can be incomplete. In Ada, any type can be
16074 declared as private in the package spec, and then defined only
16075 inside the package body. Such types are known as Taft Amendment
16076 Types. When another package uses such a type, an incomplete DIE
16077 may be generated by the compiler. */
02eb380e 16078 if (die_is_declaration (die, cu))
876cecd0 16079 TYPE_STUB (type) = 1;
02eb380e 16080
0626fc76
TT
16081 /* If this type has an underlying type that is not a stub, then we
16082 may use its attributes. We always use the "unsigned" attribute
16083 in this situation, because ordinarily we guess whether the type
16084 is unsigned -- but the guess can be wrong and the underlying type
16085 can tell us the reality. However, we defer to a local size
16086 attribute if one exists, because this lets the compiler override
16087 the underlying type if needed. */
16088 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
16089 {
9e7c9a03
HD
16090 struct type *underlying_type = TYPE_TARGET_TYPE (type);
16091 underlying_type = check_typedef (underlying_type);
16092 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (underlying_type);
0626fc76 16093 if (TYPE_LENGTH (type) == 0)
9e7c9a03 16094 TYPE_LENGTH (type) = TYPE_LENGTH (underlying_type);
2b4424c3 16095 if (TYPE_RAW_ALIGN (type) == 0
9e7c9a03
HD
16096 && TYPE_RAW_ALIGN (underlying_type) != 0)
16097 set_type_align (type, TYPE_RAW_ALIGN (underlying_type));
0626fc76
TT
16098 }
16099
3d567982
TT
16100 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
16101
ed6acedd
TT
16102 set_die_type (die, type, cu);
16103
16104 /* Finish the creation of this type by using the enum's children.
16105 Note that, as usual, this must come after set_die_type to avoid
16106 infinite recursion when trying to compute the names of the
16107 enumerators. */
16108 update_enumeration_type_from_children (die, type, cu);
16109
16110 return type;
134d01f1
DJ
16111}
16112
16113/* Given a pointer to a die which begins an enumeration, process all
16114 the dies that define the members of the enumeration, and create the
16115 symbol for the enumeration type.
16116
16117 NOTE: We reverse the order of the element list. */
16118
16119static void
16120process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
16121{
f792889a 16122 struct type *this_type;
134d01f1 16123
f792889a
DJ
16124 this_type = get_die_type (die, cu);
16125 if (this_type == NULL)
16126 this_type = read_enumeration_type (die, cu);
9dc481d3 16127
639d11d3 16128 if (die->child != NULL)
c906108c 16129 {
9dc481d3 16130 struct die_info *child_die;
15d034d0 16131 const char *name;
9dc481d3 16132
639d11d3 16133 child_die = die->child;
c906108c
SS
16134 while (child_die && child_die->tag)
16135 {
16136 if (child_die->tag != DW_TAG_enumerator)
16137 {
e7c27a73 16138 process_die (child_die, cu);
c906108c
SS
16139 }
16140 else
16141 {
39cbfefa
DJ
16142 name = dwarf2_name (child_die, cu);
16143 if (name)
ed6acedd 16144 new_symbol (child_die, this_type, cu);
c906108c
SS
16145 }
16146
436c571c 16147 child_die = child_die->sibling;
c906108c 16148 }
c906108c 16149 }
134d01f1 16150
6c83ed52
TT
16151 /* If we are reading an enum from a .debug_types unit, and the enum
16152 is a declaration, and the enum is not the signatured type in the
16153 unit, then we do not want to add a symbol for it. Adding a
16154 symbol would in some cases obscure the true definition of the
16155 enum, giving users an incomplete type when the definition is
16156 actually available. Note that we do not want to do this for all
16157 enums which are just declarations, because C++0x allows forward
16158 enum declarations. */
3019eac3 16159 if (cu->per_cu->is_debug_types
6c83ed52
TT
16160 && die_is_declaration (die, cu))
16161 {
52dc124a 16162 struct signatured_type *sig_type;
6c83ed52 16163
c0f78cd4 16164 sig_type = (struct signatured_type *) cu->per_cu;
9c541725
PA
16165 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
16166 if (sig_type->type_offset_in_section != die->sect_off)
6c83ed52
TT
16167 return;
16168 }
16169
f792889a 16170 new_symbol (die, this_type, cu);
c906108c
SS
16171}
16172
16173/* Extract all information from a DW_TAG_array_type DIE and put it in
16174 the DIE's type field. For now, this only handles one dimensional
16175 arrays. */
16176
f792889a 16177static struct type *
e7c27a73 16178read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16179{
5e22e966 16180 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 16181 struct die_info *child_die;
7e314c57 16182 struct type *type;
c906108c 16183 struct type *element_type, *range_type, *index_type;
c906108c 16184 struct attribute *attr;
15d034d0 16185 const char *name;
a405673c 16186 struct dynamic_prop *byte_stride_prop = NULL;
dc53a7ad 16187 unsigned int bit_stride = 0;
c906108c 16188
e7c27a73 16189 element_type = die_type (die, cu);
c906108c 16190
7e314c57
JK
16191 /* The die_type call above may have already set the type for this DIE. */
16192 type = get_die_type (die, cu);
16193 if (type)
16194 return type;
16195
dc53a7ad
JB
16196 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
16197 if (attr != NULL)
a405673c
JB
16198 {
16199 int stride_ok;
293e7e51 16200 struct type *prop_type = cu->addr_sized_int_type (false);
a405673c
JB
16201
16202 byte_stride_prop
16203 = (struct dynamic_prop *) alloca (sizeof (struct dynamic_prop));
9a49df9d
AB
16204 stride_ok = attr_to_dynamic_prop (attr, die, cu, byte_stride_prop,
16205 prop_type);
a405673c
JB
16206 if (!stride_ok)
16207 {
b98664d3 16208 complaint (_("unable to read array DW_AT_byte_stride "
9d8780f0
SM
16209 " - DIE at %s [in module %s]"),
16210 sect_offset_str (die->sect_off),
5e22e966 16211 objfile_name (cu->per_objfile->objfile));
a405673c
JB
16212 /* Ignore this attribute. We will likely not be able to print
16213 arrays of this type correctly, but there is little we can do
16214 to help if we cannot read the attribute's value. */
16215 byte_stride_prop = NULL;
16216 }
16217 }
dc53a7ad
JB
16218
16219 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
16220 if (attr != NULL)
16221 bit_stride = DW_UNSND (attr);
16222
c906108c
SS
16223 /* Irix 6.2 native cc creates array types without children for
16224 arrays with unspecified length. */
639d11d3 16225 if (die->child == NULL)
c906108c 16226 {
46bf5051 16227 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 16228 range_type = create_static_range_type (NULL, index_type, 0, -1);
dc53a7ad 16229 type = create_array_type_with_stride (NULL, element_type, range_type,
a405673c 16230 byte_stride_prop, bit_stride);
f792889a 16231 return set_die_type (die, type, cu);
c906108c
SS
16232 }
16233
791afaa2 16234 std::vector<struct type *> range_types;
639d11d3 16235 child_die = die->child;
c906108c
SS
16236 while (child_die && child_die->tag)
16237 {
16238 if (child_die->tag == DW_TAG_subrange_type)
16239 {
f792889a 16240 struct type *child_type = read_type_die (child_die, cu);
9a619af0 16241
f792889a 16242 if (child_type != NULL)
a02abb62 16243 {
0963b4bd
MS
16244 /* The range type was succesfully read. Save it for the
16245 array type creation. */
791afaa2 16246 range_types.push_back (child_type);
a02abb62 16247 }
c906108c 16248 }
436c571c 16249 child_die = child_die->sibling;
c906108c
SS
16250 }
16251
16252 /* Dwarf2 dimensions are output from left to right, create the
16253 necessary array types in backwards order. */
7ca2d3a3 16254
c906108c 16255 type = element_type;
7ca2d3a3
DL
16256
16257 if (read_array_order (die, cu) == DW_ORD_col_major)
16258 {
16259 int i = 0;
9a619af0 16260
791afaa2 16261 while (i < range_types.size ())
dc53a7ad 16262 type = create_array_type_with_stride (NULL, type, range_types[i++],
a405673c 16263 byte_stride_prop, bit_stride);
7ca2d3a3
DL
16264 }
16265 else
16266 {
791afaa2 16267 size_t ndim = range_types.size ();
7ca2d3a3 16268 while (ndim-- > 0)
dc53a7ad 16269 type = create_array_type_with_stride (NULL, type, range_types[ndim],
a405673c 16270 byte_stride_prop, bit_stride);
7ca2d3a3 16271 }
c906108c 16272
f5f8a009
EZ
16273 /* Understand Dwarf2 support for vector types (like they occur on
16274 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
16275 array type. This is not part of the Dwarf2/3 standard yet, but a
16276 custom vendor extension. The main difference between a regular
16277 array and the vector variant is that vectors are passed by value
16278 to functions. */
e142c38c 16279 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
435d3d88 16280 if (attr != nullptr)
ea37ba09 16281 make_vector_type (type);
f5f8a009 16282
dbc98a8b
KW
16283 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
16284 implementation may choose to implement triple vectors using this
16285 attribute. */
16286 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16287 if (attr != nullptr)
dbc98a8b
KW
16288 {
16289 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
16290 TYPE_LENGTH (type) = DW_UNSND (attr);
16291 else
b98664d3 16292 complaint (_("DW_AT_byte_size for array type smaller "
3e43a32a 16293 "than the total size of elements"));
dbc98a8b
KW
16294 }
16295
39cbfefa
DJ
16296 name = dwarf2_name (die, cu);
16297 if (name)
d0e39ea2 16298 type->set_name (name);
6e70227d 16299
2b4424c3
TT
16300 maybe_set_alignment (cu, die, type);
16301
0963b4bd 16302 /* Install the type in the die. */
7e314c57
JK
16303 set_die_type (die, type, cu);
16304
16305 /* set_die_type should be already done. */
b4ba55a1
JB
16306 set_descriptive_type (type, die, cu);
16307
7e314c57 16308 return type;
c906108c
SS
16309}
16310
7ca2d3a3 16311static enum dwarf_array_dim_ordering
6e70227d 16312read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7ca2d3a3
DL
16313{
16314 struct attribute *attr;
16315
16316 attr = dwarf2_attr (die, DW_AT_ordering, cu);
16317
435d3d88 16318 if (attr != nullptr)
aead7601 16319 return (enum dwarf_array_dim_ordering) DW_SND (attr);
7ca2d3a3 16320
0963b4bd
MS
16321 /* GNU F77 is a special case, as at 08/2004 array type info is the
16322 opposite order to the dwarf2 specification, but data is still
16323 laid out as per normal fortran.
7ca2d3a3 16324
0963b4bd
MS
16325 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
16326 version checking. */
7ca2d3a3 16327
905e0470
PM
16328 if (cu->language == language_fortran
16329 && cu->producer && strstr (cu->producer, "GNU F77"))
7ca2d3a3
DL
16330 {
16331 return DW_ORD_row_major;
16332 }
16333
6e70227d 16334 switch (cu->language_defn->la_array_ordering)
7ca2d3a3
DL
16335 {
16336 case array_column_major:
16337 return DW_ORD_col_major;
16338 case array_row_major:
16339 default:
16340 return DW_ORD_row_major;
16341 };
16342}
16343
72019c9c 16344/* Extract all information from a DW_TAG_set_type DIE and put it in
0963b4bd 16345 the DIE's type field. */
72019c9c 16346
f792889a 16347static struct type *
72019c9c
GM
16348read_set_type (struct die_info *die, struct dwarf2_cu *cu)
16349{
7e314c57
JK
16350 struct type *domain_type, *set_type;
16351 struct attribute *attr;
f792889a 16352
7e314c57
JK
16353 domain_type = die_type (die, cu);
16354
16355 /* The die_type call above may have already set the type for this DIE. */
16356 set_type = get_die_type (die, cu);
16357 if (set_type)
16358 return set_type;
16359
16360 set_type = create_set_type (NULL, domain_type);
16361
16362 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16363 if (attr != nullptr)
d09039dd 16364 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7e314c57 16365
2b4424c3
TT
16366 maybe_set_alignment (cu, die, set_type);
16367
f792889a 16368 return set_die_type (die, set_type, cu);
72019c9c 16369}
7ca2d3a3 16370
0971de02
TT
16371/* A helper for read_common_block that creates a locexpr baton.
16372 SYM is the symbol which we are marking as computed.
16373 COMMON_DIE is the DIE for the common block.
16374 COMMON_LOC is the location expression attribute for the common
16375 block itself.
16376 MEMBER_LOC is the location expression attribute for the particular
16377 member of the common block that we are processing.
16378 CU is the CU from which the above come. */
16379
16380static void
16381mark_common_block_symbol_computed (struct symbol *sym,
16382 struct die_info *common_die,
16383 struct attribute *common_loc,
16384 struct attribute *member_loc,
16385 struct dwarf2_cu *cu)
16386{
5e22e966 16387 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 16388 struct objfile *objfile = per_objfile->objfile;
0971de02
TT
16389 struct dwarf2_locexpr_baton *baton;
16390 gdb_byte *ptr;
16391 unsigned int cu_off;
08feed99 16392 enum bfd_endian byte_order = gdbarch_byte_order (objfile->arch ());
0971de02
TT
16393 LONGEST offset = 0;
16394
16395 gdb_assert (common_loc && member_loc);
4fc6c0d5
TT
16396 gdb_assert (common_loc->form_is_block ());
16397 gdb_assert (member_loc->form_is_block ()
cd6c91b4 16398 || member_loc->form_is_constant ());
0971de02 16399
8d749320 16400 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
a50264ba 16401 baton->per_objfile = per_objfile;
0971de02
TT
16402 baton->per_cu = cu->per_cu;
16403 gdb_assert (baton->per_cu);
16404
16405 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
16406
cd6c91b4 16407 if (member_loc->form_is_constant ())
0971de02 16408 {
0826b30a 16409 offset = member_loc->constant_value (0);
0971de02
TT
16410 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
16411 }
16412 else
16413 baton->size += DW_BLOCK (member_loc)->size;
16414
224c3ddb 16415 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
0971de02
TT
16416 baton->data = ptr;
16417
16418 *ptr++ = DW_OP_call4;
9c541725 16419 cu_off = common_die->sect_off - cu->per_cu->sect_off;
0971de02
TT
16420 store_unsigned_integer (ptr, 4, byte_order, cu_off);
16421 ptr += 4;
16422
cd6c91b4 16423 if (member_loc->form_is_constant ())
0971de02
TT
16424 {
16425 *ptr++ = DW_OP_addr;
16426 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
16427 ptr += cu->header.addr_size;
16428 }
16429 else
16430 {
16431 /* We have to copy the data here, because DW_OP_call4 will only
16432 use a DW_AT_location attribute. */
16433 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
16434 ptr += DW_BLOCK (member_loc)->size;
16435 }
16436
16437 *ptr++ = DW_OP_plus;
16438 gdb_assert (ptr - baton->data == baton->size);
16439
0971de02 16440 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 16441 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
0971de02
TT
16442}
16443
4357ac6c
TT
16444/* Create appropriate locally-scoped variables for all the
16445 DW_TAG_common_block entries. Also create a struct common_block
16446 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
85102364 16447 is used to separate the common blocks name namespace from regular
4357ac6c 16448 variable names. */
c906108c
SS
16449
16450static void
e7c27a73 16451read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16452{
0971de02
TT
16453 struct attribute *attr;
16454
16455 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 16456 if (attr != nullptr)
0971de02
TT
16457 {
16458 /* Support the .debug_loc offsets. */
4fc6c0d5 16459 if (attr->form_is_block ())
0971de02
TT
16460 {
16461 /* Ok. */
16462 }
cd6c91b4 16463 else if (attr->form_is_section_offset ())
0971de02
TT
16464 {
16465 dwarf2_complex_location_expr_complaint ();
16466 attr = NULL;
16467 }
16468 else
16469 {
16470 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
16471 "common block member");
16472 attr = NULL;
16473 }
16474 }
16475
639d11d3 16476 if (die->child != NULL)
c906108c 16477 {
5e22e966 16478 struct objfile *objfile = cu->per_objfile->objfile;
4357ac6c
TT
16479 struct die_info *child_die;
16480 size_t n_entries = 0, size;
16481 struct common_block *common_block;
16482 struct symbol *sym;
74ac6d43 16483
4357ac6c
TT
16484 for (child_die = die->child;
16485 child_die && child_die->tag;
436c571c 16486 child_die = child_die->sibling)
4357ac6c
TT
16487 ++n_entries;
16488
16489 size = (sizeof (struct common_block)
16490 + (n_entries - 1) * sizeof (struct symbol *));
224c3ddb
SM
16491 common_block
16492 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
16493 size);
4357ac6c
TT
16494 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
16495 common_block->n_entries = 0;
16496
16497 for (child_die = die->child;
16498 child_die && child_die->tag;
436c571c 16499 child_die = child_die->sibling)
4357ac6c
TT
16500 {
16501 /* Create the symbol in the DW_TAG_common_block block in the current
16502 symbol scope. */
e7c27a73 16503 sym = new_symbol (child_die, NULL, cu);
0971de02
TT
16504 if (sym != NULL)
16505 {
16506 struct attribute *member_loc;
16507
16508 common_block->contents[common_block->n_entries++] = sym;
16509
16510 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
16511 cu);
16512 if (member_loc)
16513 {
16514 /* GDB has handled this for a long time, but it is
16515 not specified by DWARF. It seems to have been
16516 emitted by gfortran at least as recently as:
16517 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
b98664d3 16518 complaint (_("Variable in common block has "
0971de02 16519 "DW_AT_data_member_location "
9d8780f0
SM
16520 "- DIE at %s [in module %s]"),
16521 sect_offset_str (child_die->sect_off),
518817b3 16522 objfile_name (objfile));
0971de02 16523
cd6c91b4 16524 if (member_loc->form_is_section_offset ())
0971de02 16525 dwarf2_complex_location_expr_complaint ();
cd6c91b4 16526 else if (member_loc->form_is_constant ()
4fc6c0d5 16527 || member_loc->form_is_block ())
0971de02 16528 {
435d3d88 16529 if (attr != nullptr)
0971de02
TT
16530 mark_common_block_symbol_computed (sym, die, attr,
16531 member_loc, cu);
16532 }
16533 else
16534 dwarf2_complex_location_expr_complaint ();
16535 }
16536 }
c906108c 16537 }
4357ac6c
TT
16538
16539 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
16540 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
c906108c
SS
16541 }
16542}
16543
0114d602 16544/* Create a type for a C++ namespace. */
d9fa45fe 16545
0114d602
DJ
16546static struct type *
16547read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 16548{
5e22e966 16549 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 16550 const char *previous_prefix, *name;
9219021c 16551 int is_anonymous;
0114d602
DJ
16552 struct type *type;
16553
16554 /* For extensions, reuse the type of the original namespace. */
16555 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
16556 {
16557 struct die_info *ext_die;
16558 struct dwarf2_cu *ext_cu = cu;
9a619af0 16559
0114d602
DJ
16560 ext_die = dwarf2_extension (die, &ext_cu);
16561 type = read_type_die (ext_die, ext_cu);
9dc481d3
DE
16562
16563 /* EXT_CU may not be the same as CU.
02142a6c 16564 Ensure TYPE is recorded with CU in die_type_hash. */
0114d602
DJ
16565 return set_die_type (die, type, cu);
16566 }
9219021c 16567
e142c38c 16568 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
16569
16570 /* Now build the name of the current namespace. */
16571
0114d602
DJ
16572 previous_prefix = determine_prefix (die, cu);
16573 if (previous_prefix[0] != '\0')
16574 name = typename_concat (&objfile->objfile_obstack,
f55ee35c 16575 previous_prefix, name, 0, cu);
0114d602
DJ
16576
16577 /* Create the type. */
19f392bc 16578 type = init_type (objfile, TYPE_CODE_NAMESPACE, 0, name);
0114d602 16579
60531b24 16580 return set_die_type (die, type, cu);
0114d602
DJ
16581}
16582
22cee43f 16583/* Read a namespace scope. */
0114d602
DJ
16584
16585static void
16586read_namespace (struct die_info *die, struct dwarf2_cu *cu)
16587{
5e22e966 16588 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 16589 int is_anonymous;
9219021c 16590
5c4e30ca
DC
16591 /* Add a symbol associated to this if we haven't seen the namespace
16592 before. Also, add a using directive if it's an anonymous
16593 namespace. */
9219021c 16594
f2f0e013 16595 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5c4e30ca
DC
16596 {
16597 struct type *type;
16598
0114d602 16599 type = read_type_die (die, cu);
e7c27a73 16600 new_symbol (die, type, cu);
5c4e30ca 16601
e8e80198 16602 namespace_name (die, &is_anonymous, cu);
5c4e30ca 16603 if (is_anonymous)
0114d602
DJ
16604 {
16605 const char *previous_prefix = determine_prefix (die, cu);
9a619af0 16606
eb1e02fd 16607 std::vector<const char *> excludes;
804d2729 16608 add_using_directive (using_directives (cu),
7d93a1e0 16609 previous_prefix, type->name (), NULL,
eb1e02fd 16610 NULL, excludes, 0, &objfile->objfile_obstack);
0114d602 16611 }
5c4e30ca 16612 }
9219021c 16613
639d11d3 16614 if (die->child != NULL)
d9fa45fe 16615 {
639d11d3 16616 struct die_info *child_die = die->child;
6e70227d 16617
d9fa45fe
DC
16618 while (child_die && child_die->tag)
16619 {
e7c27a73 16620 process_die (child_die, cu);
436c571c 16621 child_die = child_die->sibling;
d9fa45fe
DC
16622 }
16623 }
38d518c9
EZ
16624}
16625
f55ee35c
JK
16626/* Read a Fortran module as type. This DIE can be only a declaration used for
16627 imported module. Still we need that type as local Fortran "use ... only"
16628 declaration imports depend on the created type in determine_prefix. */
16629
16630static struct type *
16631read_module_type (struct die_info *die, struct dwarf2_cu *cu)
16632{
5e22e966 16633 struct objfile *objfile = cu->per_objfile->objfile;
15d034d0 16634 const char *module_name;
f55ee35c
JK
16635 struct type *type;
16636
16637 module_name = dwarf2_name (die, cu);
19f392bc 16638 type = init_type (objfile, TYPE_CODE_MODULE, 0, module_name);
f55ee35c 16639
f55ee35c
JK
16640 return set_die_type (die, type, cu);
16641}
16642
5d7cb8df
JK
16643/* Read a Fortran module. */
16644
16645static void
16646read_module (struct die_info *die, struct dwarf2_cu *cu)
16647{
16648 struct die_info *child_die = die->child;
530e8392
KB
16649 struct type *type;
16650
16651 type = read_type_die (die, cu);
16652 new_symbol (die, type, cu);
5d7cb8df 16653
5d7cb8df
JK
16654 while (child_die && child_die->tag)
16655 {
16656 process_die (child_die, cu);
436c571c 16657 child_die = child_die->sibling;
5d7cb8df
JK
16658 }
16659}
16660
38d518c9
EZ
16661/* Return the name of the namespace represented by DIE. Set
16662 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
16663 namespace. */
16664
16665static const char *
e142c38c 16666namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
16667{
16668 struct die_info *current_die;
16669 const char *name = NULL;
16670
16671 /* Loop through the extensions until we find a name. */
16672
16673 for (current_die = die;
16674 current_die != NULL;
f2f0e013 16675 current_die = dwarf2_extension (die, &cu))
38d518c9 16676 {
96553a0c
DE
16677 /* We don't use dwarf2_name here so that we can detect the absence
16678 of a name -> anonymous namespace. */
7d45c7c3 16679 name = dwarf2_string_attr (die, DW_AT_name, cu);
96553a0c 16680
38d518c9
EZ
16681 if (name != NULL)
16682 break;
16683 }
16684
16685 /* Is it an anonymous namespace? */
16686
16687 *is_anonymous = (name == NULL);
16688 if (*is_anonymous)
2b1dbab0 16689 name = CP_ANONYMOUS_NAMESPACE_STR;
38d518c9
EZ
16690
16691 return name;
d9fa45fe
DC
16692}
16693
c906108c
SS
16694/* Extract all information from a DW_TAG_pointer_type DIE and add to
16695 the user defined type vector. */
16696
f792889a 16697static struct type *
e7c27a73 16698read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16699{
5e22e966 16700 struct gdbarch *gdbarch = cu->per_objfile->objfile->arch ();
e7c27a73 16701 struct comp_unit_head *cu_header = &cu->header;
c906108c 16702 struct type *type;
8b2dbe47
KB
16703 struct attribute *attr_byte_size;
16704 struct attribute *attr_address_class;
16705 int byte_size, addr_class;
7e314c57
JK
16706 struct type *target_type;
16707
16708 target_type = die_type (die, cu);
c906108c 16709
7e314c57
JK
16710 /* The die_type call above may have already set the type for this DIE. */
16711 type = get_die_type (die, cu);
16712 if (type)
16713 return type;
16714
16715 type = lookup_pointer_type (target_type);
8b2dbe47 16716
e142c38c 16717 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
16718 if (attr_byte_size)
16719 byte_size = DW_UNSND (attr_byte_size);
c906108c 16720 else
8b2dbe47
KB
16721 byte_size = cu_header->addr_size;
16722
e142c38c 16723 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
16724 if (attr_address_class)
16725 addr_class = DW_UNSND (attr_address_class);
16726 else
16727 addr_class = DW_ADDR_none;
16728
2b4424c3
TT
16729 ULONGEST alignment = get_alignment (cu, die);
16730
16731 /* If the pointer size, alignment, or address class is different
16732 than the default, create a type variant marked as such and set
16733 the length accordingly. */
16734 if (TYPE_LENGTH (type) != byte_size
16735 || (alignment != 0 && TYPE_RAW_ALIGN (type) != 0
16736 && alignment != TYPE_RAW_ALIGN (type))
16737 || addr_class != DW_ADDR_none)
c906108c 16738 {
5e2b427d 16739 if (gdbarch_address_class_type_flags_p (gdbarch))
8b2dbe47
KB
16740 {
16741 int type_flags;
16742
849957d9 16743 type_flags = gdbarch_address_class_type_flags
5e2b427d 16744 (gdbarch, byte_size, addr_class);
876cecd0
TT
16745 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
16746 == 0);
8b2dbe47
KB
16747 type = make_type_with_address_space (type, type_flags);
16748 }
16749 else if (TYPE_LENGTH (type) != byte_size)
16750 {
b98664d3 16751 complaint (_("invalid pointer size %d"), byte_size);
8b2dbe47 16752 }
2b4424c3
TT
16753 else if (TYPE_RAW_ALIGN (type) != alignment)
16754 {
b98664d3 16755 complaint (_("Invalid DW_AT_alignment"
2b4424c3
TT
16756 " - DIE at %s [in module %s]"),
16757 sect_offset_str (die->sect_off),
5e22e966 16758 objfile_name (cu->per_objfile->objfile));
2b4424c3 16759 }
6e70227d 16760 else
9a619af0
MS
16761 {
16762 /* Should we also complain about unhandled address classes? */
16763 }
c906108c 16764 }
8b2dbe47
KB
16765
16766 TYPE_LENGTH (type) = byte_size;
2b4424c3 16767 set_type_align (type, alignment);
f792889a 16768 return set_die_type (die, type, cu);
c906108c
SS
16769}
16770
16771/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
16772 the user defined type vector. */
16773
f792889a 16774static struct type *
e7c27a73 16775read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
16776{
16777 struct type *type;
16778 struct type *to_type;
16779 struct type *domain;
16780
e7c27a73
DJ
16781 to_type = die_type (die, cu);
16782 domain = die_containing_type (die, cu);
0d5de010 16783
7e314c57
JK
16784 /* The calls above may have already set the type for this DIE. */
16785 type = get_die_type (die, cu);
16786 if (type)
16787 return type;
16788
78134374 16789 if (check_typedef (to_type)->code () == TYPE_CODE_METHOD)
0d5de010 16790 type = lookup_methodptr_type (to_type);
78134374 16791 else if (check_typedef (to_type)->code () == TYPE_CODE_FUNC)
7078baeb 16792 {
5e22e966 16793 struct type *new_type = alloc_type (cu->per_objfile->objfile);
7078baeb
TT
16794
16795 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
80fc5e77 16796 to_type->fields (), to_type->num_fields (),
7078baeb
TT
16797 TYPE_VARARGS (to_type));
16798 type = lookup_methodptr_type (new_type);
16799 }
0d5de010
DJ
16800 else
16801 type = lookup_memberptr_type (to_type, domain);
c906108c 16802
f792889a 16803 return set_die_type (die, type, cu);
c906108c
SS
16804}
16805
4297a3f0 16806/* Extract all information from a DW_TAG_{rvalue_,}reference_type DIE and add to
c906108c
SS
16807 the user defined type vector. */
16808
f792889a 16809static struct type *
4297a3f0
AV
16810read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu,
16811 enum type_code refcode)
c906108c 16812{
e7c27a73 16813 struct comp_unit_head *cu_header = &cu->header;
7e314c57 16814 struct type *type, *target_type;
c906108c
SS
16815 struct attribute *attr;
16816
4297a3f0
AV
16817 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
16818
7e314c57
JK
16819 target_type = die_type (die, cu);
16820
16821 /* The die_type call above may have already set the type for this DIE. */
16822 type = get_die_type (die, cu);
16823 if (type)
16824 return type;
16825
4297a3f0 16826 type = lookup_reference_type (target_type, refcode);
e142c38c 16827 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16828 if (attr != nullptr)
c906108c
SS
16829 {
16830 TYPE_LENGTH (type) = DW_UNSND (attr);
16831 }
16832 else
16833 {
107d2387 16834 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 16835 }
2b4424c3 16836 maybe_set_alignment (cu, die, type);
f792889a 16837 return set_die_type (die, type, cu);
c906108c
SS
16838}
16839
cf363f18
MW
16840/* Add the given cv-qualifiers to the element type of the array. GCC
16841 outputs DWARF type qualifiers that apply to an array, not the
16842 element type. But GDB relies on the array element type to carry
16843 the cv-qualifiers. This mimics section 6.7.3 of the C99
16844 specification. */
16845
16846static struct type *
16847add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
16848 struct type *base_type, int cnst, int voltl)
16849{
16850 struct type *el_type, *inner_array;
16851
16852 base_type = copy_type (base_type);
16853 inner_array = base_type;
16854
78134374 16855 while (TYPE_TARGET_TYPE (inner_array)->code () == TYPE_CODE_ARRAY)
cf363f18
MW
16856 {
16857 TYPE_TARGET_TYPE (inner_array) =
16858 copy_type (TYPE_TARGET_TYPE (inner_array));
16859 inner_array = TYPE_TARGET_TYPE (inner_array);
16860 }
16861
16862 el_type = TYPE_TARGET_TYPE (inner_array);
16863 cnst |= TYPE_CONST (el_type);
16864 voltl |= TYPE_VOLATILE (el_type);
16865 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
16866
16867 return set_die_type (die, base_type, cu);
16868}
16869
f792889a 16870static struct type *
e7c27a73 16871read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16872{
f792889a 16873 struct type *base_type, *cv_type;
c906108c 16874
e7c27a73 16875 base_type = die_type (die, cu);
7e314c57
JK
16876
16877 /* The die_type call above may have already set the type for this DIE. */
16878 cv_type = get_die_type (die, cu);
16879 if (cv_type)
16880 return cv_type;
16881
2f608a3a
KW
16882 /* In case the const qualifier is applied to an array type, the element type
16883 is so qualified, not the array type (section 6.7.3 of C99). */
78134374 16884 if (base_type->code () == TYPE_CODE_ARRAY)
cf363f18 16885 return add_array_cv_type (die, cu, base_type, 1, 0);
2f608a3a 16886
f792889a
DJ
16887 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
16888 return set_die_type (die, cv_type, cu);
c906108c
SS
16889}
16890
f792889a 16891static struct type *
e7c27a73 16892read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16893{
f792889a 16894 struct type *base_type, *cv_type;
c906108c 16895
e7c27a73 16896 base_type = die_type (die, cu);
7e314c57
JK
16897
16898 /* The die_type call above may have already set the type for this DIE. */
16899 cv_type = get_die_type (die, cu);
16900 if (cv_type)
16901 return cv_type;
16902
cf363f18
MW
16903 /* In case the volatile qualifier is applied to an array type, the
16904 element type is so qualified, not the array type (section 6.7.3
16905 of C99). */
78134374 16906 if (base_type->code () == TYPE_CODE_ARRAY)
cf363f18
MW
16907 return add_array_cv_type (die, cu, base_type, 0, 1);
16908
f792889a
DJ
16909 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
16910 return set_die_type (die, cv_type, cu);
c906108c
SS
16911}
16912
06d66ee9
TT
16913/* Handle DW_TAG_restrict_type. */
16914
16915static struct type *
16916read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
16917{
16918 struct type *base_type, *cv_type;
16919
16920 base_type = die_type (die, cu);
16921
16922 /* The die_type call above may have already set the type for this DIE. */
16923 cv_type = get_die_type (die, cu);
16924 if (cv_type)
16925 return cv_type;
16926
16927 cv_type = make_restrict_type (base_type);
16928 return set_die_type (die, cv_type, cu);
16929}
16930
a2c2acaf
MW
16931/* Handle DW_TAG_atomic_type. */
16932
16933static struct type *
16934read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
16935{
16936 struct type *base_type, *cv_type;
16937
16938 base_type = die_type (die, cu);
16939
16940 /* The die_type call above may have already set the type for this DIE. */
16941 cv_type = get_die_type (die, cu);
16942 if (cv_type)
16943 return cv_type;
16944
16945 cv_type = make_atomic_type (base_type);
16946 return set_die_type (die, cv_type, cu);
16947}
16948
c906108c
SS
16949/* Extract all information from a DW_TAG_string_type DIE and add to
16950 the user defined type vector. It isn't really a user defined type,
16951 but it behaves like one, with other DIE's using an AT_user_def_type
16952 attribute to reference it. */
16953
f792889a 16954static struct type *
e7c27a73 16955read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16956{
5e22e966 16957 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 16958 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
16959 struct type *type, *range_type, *index_type, *char_type;
16960 struct attribute *attr;
216a7e6b
AB
16961 struct dynamic_prop prop;
16962 bool length_is_constant = true;
16963 LONGEST length;
16964
16965 /* There are a couple of places where bit sizes might be made use of
16966 when parsing a DW_TAG_string_type, however, no producer that we know
16967 of make use of these. Handling bit sizes that are a multiple of the
16968 byte size is easy enough, but what about other bit sizes? Lets deal
16969 with that problem when we have to. Warn about these attributes being
16970 unsupported, then parse the type and ignore them like we always
16971 have. */
16972 if (dwarf2_attr (die, DW_AT_bit_size, cu) != nullptr
16973 || dwarf2_attr (die, DW_AT_string_length_bit_size, cu) != nullptr)
16974 {
16975 static bool warning_printed = false;
16976 if (!warning_printed)
16977 {
16978 warning (_("DW_AT_bit_size and DW_AT_string_length_bit_size not "
16979 "currently supported on DW_TAG_string_type."));
16980 warning_printed = true;
16981 }
16982 }
c906108c 16983
e142c38c 16984 attr = dwarf2_attr (die, DW_AT_string_length, cu);
cd6c91b4 16985 if (attr != nullptr && !attr->form_is_constant ())
216a7e6b
AB
16986 {
16987 /* The string length describes the location at which the length of
16988 the string can be found. The size of the length field can be
16989 specified with one of the attributes below. */
16990 struct type *prop_type;
16991 struct attribute *len
16992 = dwarf2_attr (die, DW_AT_string_length_byte_size, cu);
16993 if (len == nullptr)
16994 len = dwarf2_attr (die, DW_AT_byte_size, cu);
cd6c91b4 16995 if (len != nullptr && len->form_is_constant ())
216a7e6b
AB
16996 {
16997 /* Pass 0 as the default as we know this attribute is constant
16998 and the default value will not be returned. */
0826b30a 16999 LONGEST sz = len->constant_value (0);
293e7e51 17000 prop_type = cu->per_objfile->int_type (sz, true);
216a7e6b
AB
17001 }
17002 else
17003 {
17004 /* If the size is not specified then we assume it is the size of
17005 an address on this target. */
293e7e51 17006 prop_type = cu->addr_sized_int_type (true);
216a7e6b
AB
17007 }
17008
17009 /* Convert the attribute into a dynamic property. */
17010 if (!attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
17011 length = 1;
17012 else
17013 length_is_constant = false;
17014 }
17015 else if (attr != nullptr)
17016 {
17017 /* This DW_AT_string_length just contains the length with no
17018 indirection. There's no need to create a dynamic property in this
17019 case. Pass 0 for the default value as we know it will not be
17020 returned in this case. */
0826b30a 17021 length = attr->constant_value (0);
216a7e6b
AB
17022 }
17023 else if ((attr = dwarf2_attr (die, DW_AT_byte_size, cu)) != nullptr)
c906108c 17024 {
216a7e6b 17025 /* We don't currently support non-constant byte sizes for strings. */
0826b30a 17026 length = attr->constant_value (1);
c906108c
SS
17027 }
17028 else
17029 {
216a7e6b
AB
17030 /* Use 1 as a fallback length if we have nothing else. */
17031 length = 1;
c906108c 17032 }
6ccb9162 17033
46bf5051 17034 index_type = objfile_type (objfile)->builtin_int;
216a7e6b
AB
17035 if (length_is_constant)
17036 range_type = create_static_range_type (NULL, index_type, 1, length);
17037 else
17038 {
17039 struct dynamic_prop low_bound;
17040
17041 low_bound.kind = PROP_CONST;
17042 low_bound.data.const_val = 1;
17043 range_type = create_range_type (NULL, index_type, &low_bound, &prop, 0);
17044 }
3b7538c0
UW
17045 char_type = language_string_char_type (cu->language_defn, gdbarch);
17046 type = create_string_type (NULL, char_type, range_type);
6ccb9162 17047
f792889a 17048 return set_die_type (die, type, cu);
c906108c
SS
17049}
17050
4d804846
JB
17051/* Assuming that DIE corresponds to a function, returns nonzero
17052 if the function is prototyped. */
17053
17054static int
17055prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
17056{
17057 struct attribute *attr;
17058
17059 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
17060 if (attr && (DW_UNSND (attr) != 0))
17061 return 1;
17062
17063 /* The DWARF standard implies that the DW_AT_prototyped attribute
85102364 17064 is only meaningful for C, but the concept also extends to other
4d804846
JB
17065 languages that allow unprototyped functions (Eg: Objective C).
17066 For all other languages, assume that functions are always
17067 prototyped. */
17068 if (cu->language != language_c
17069 && cu->language != language_objc
17070 && cu->language != language_opencl)
17071 return 1;
17072
17073 /* RealView does not emit DW_AT_prototyped. We can not distinguish
17074 prototyped and unprototyped functions; default to prototyped,
17075 since that is more common in modern code (and RealView warns
17076 about unprototyped functions). */
17077 if (producer_is_realview (cu->producer))
17078 return 1;
17079
17080 return 0;
17081}
17082
c906108c
SS
17083/* Handle DIES due to C code like:
17084
17085 struct foo
c5aa993b
JM
17086 {
17087 int (*funcp)(int a, long l);
17088 int b;
17089 };
c906108c 17090
0963b4bd 17091 ('funcp' generates a DW_TAG_subroutine_type DIE). */
c906108c 17092
f792889a 17093static struct type *
e7c27a73 17094read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17095{
5e22e966 17096 struct objfile *objfile = cu->per_objfile->objfile;
0963b4bd
MS
17097 struct type *type; /* Type that this function returns. */
17098 struct type *ftype; /* Function that returns above type. */
c906108c
SS
17099 struct attribute *attr;
17100
e7c27a73 17101 type = die_type (die, cu);
7e314c57
JK
17102
17103 /* The die_type call above may have already set the type for this DIE. */
17104 ftype = get_die_type (die, cu);
17105 if (ftype)
17106 return ftype;
17107
0c8b41f1 17108 ftype = lookup_function_type (type);
c906108c 17109
4d804846 17110 if (prototyped_function_p (die, cu))
a6c727b2 17111 TYPE_PROTOTYPED (ftype) = 1;
c906108c 17112
c055b101
CV
17113 /* Store the calling convention in the type if it's available in
17114 the subroutine die. Otherwise set the calling convention to
17115 the default value DW_CC_normal. */
17116 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
d0922fcf
TBA
17117 if (attr != nullptr
17118 && is_valid_DW_AT_calling_convention_for_subroutine (DW_UNSND (attr)))
17119 TYPE_CALLING_CONVENTION (ftype)
17120 = (enum dwarf_calling_convention) (DW_UNSND (attr));
54fcddd0
UW
17121 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
17122 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
17123 else
17124 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
76c10ea2 17125
743649fd
MW
17126 /* Record whether the function returns normally to its caller or not
17127 if the DWARF producer set that information. */
17128 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
17129 if (attr && (DW_UNSND (attr) != 0))
17130 TYPE_NO_RETURN (ftype) = 1;
17131
76c10ea2
GM
17132 /* We need to add the subroutine type to the die immediately so
17133 we don't infinitely recurse when dealing with parameters
0963b4bd 17134 declared as the same subroutine type. */
76c10ea2 17135 set_die_type (die, ftype, cu);
6e70227d 17136
639d11d3 17137 if (die->child != NULL)
c906108c 17138 {
bb5ed363 17139 struct type *void_type = objfile_type (objfile)->builtin_void;
c906108c 17140 struct die_info *child_die;
8072405b 17141 int nparams, iparams;
c906108c
SS
17142
17143 /* Count the number of parameters.
17144 FIXME: GDB currently ignores vararg functions, but knows about
17145 vararg member functions. */
8072405b 17146 nparams = 0;
639d11d3 17147 child_die = die->child;
c906108c
SS
17148 while (child_die && child_die->tag)
17149 {
17150 if (child_die->tag == DW_TAG_formal_parameter)
17151 nparams++;
17152 else if (child_die->tag == DW_TAG_unspecified_parameters)
876cecd0 17153 TYPE_VARARGS (ftype) = 1;
436c571c 17154 child_die = child_die->sibling;
c906108c
SS
17155 }
17156
17157 /* Allocate storage for parameters and fill them in. */
5e33d5f4 17158 ftype->set_num_fields (nparams);
3cabb6b0
SM
17159 ftype->set_fields
17160 ((struct field *) TYPE_ZALLOC (ftype, nparams * sizeof (struct field)));
c906108c 17161
8072405b
JK
17162 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
17163 even if we error out during the parameters reading below. */
17164 for (iparams = 0; iparams < nparams; iparams++)
17165 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
17166
17167 iparams = 0;
639d11d3 17168 child_die = die->child;
c906108c
SS
17169 while (child_die && child_die->tag)
17170 {
17171 if (child_die->tag == DW_TAG_formal_parameter)
17172 {
3ce3b1ba
PA
17173 struct type *arg_type;
17174
17175 /* DWARF version 2 has no clean way to discern C++
17176 static and non-static member functions. G++ helps
17177 GDB by marking the first parameter for non-static
17178 member functions (which is the this pointer) as
17179 artificial. We pass this information to
17180 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
17181
17182 DWARF version 3 added DW_AT_object_pointer, which GCC
17183 4.5 does not yet generate. */
e142c38c 17184 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
435d3d88 17185 if (attr != nullptr)
c906108c
SS
17186 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
17187 else
9c37b5ae 17188 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
3ce3b1ba
PA
17189 arg_type = die_type (child_die, cu);
17190
17191 /* RealView does not mark THIS as const, which the testsuite
17192 expects. GCC marks THIS as const in method definitions,
17193 but not in the class specifications (GCC PR 43053). */
17194 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
17195 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
17196 {
17197 int is_this = 0;
17198 struct dwarf2_cu *arg_cu = cu;
17199 const char *name = dwarf2_name (child_die, cu);
17200
17201 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
435d3d88 17202 if (attr != nullptr)
3ce3b1ba
PA
17203 {
17204 /* If the compiler emits this, use it. */
17205 if (follow_die_ref (die, attr, &arg_cu) == child_die)
17206 is_this = 1;
17207 }
17208 else if (name && strcmp (name, "this") == 0)
17209 /* Function definitions will have the argument names. */
17210 is_this = 1;
17211 else if (name == NULL && iparams == 0)
17212 /* Declarations may not have the names, so like
17213 elsewhere in GDB, assume an artificial first
17214 argument is "this". */
17215 is_this = 1;
17216
17217 if (is_this)
17218 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
17219 arg_type, 0);
17220 }
17221
17222 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
c906108c
SS
17223 iparams++;
17224 }
436c571c 17225 child_die = child_die->sibling;
c906108c
SS
17226 }
17227 }
17228
76c10ea2 17229 return ftype;
c906108c
SS
17230}
17231
f792889a 17232static struct type *
e7c27a73 17233read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17234{
5e22e966 17235 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 17236 const char *name = NULL;
3c8e0968 17237 struct type *this_type, *target_type;
c906108c 17238
94af9270 17239 name = dwarf2_full_name (NULL, die, cu);
19f392bc
UW
17240 this_type = init_type (objfile, TYPE_CODE_TYPEDEF, 0, name);
17241 TYPE_TARGET_STUB (this_type) = 1;
f792889a 17242 set_die_type (die, this_type, cu);
3c8e0968
DE
17243 target_type = die_type (die, cu);
17244 if (target_type != this_type)
17245 TYPE_TARGET_TYPE (this_type) = target_type;
17246 else
17247 {
17248 /* Self-referential typedefs are, it seems, not allowed by the DWARF
17249 spec and cause infinite loops in GDB. */
b98664d3 17250 complaint (_("Self-referential DW_TAG_typedef "
9d8780f0
SM
17251 "- DIE at %s [in module %s]"),
17252 sect_offset_str (die->sect_off), objfile_name (objfile));
3c8e0968
DE
17253 TYPE_TARGET_TYPE (this_type) = NULL;
17254 }
e4003a34
TV
17255 if (name == NULL)
17256 {
17257 /* Gcc-7 and before supports -feliminate-dwarf2-dups, which generates
17258 anonymous typedefs, which is, strictly speaking, invalid DWARF.
17259 Handle these by just returning the target type, rather than
17260 constructing an anonymous typedef type and trying to handle this
17261 elsewhere. */
17262 set_die_type (die, target_type, cu);
17263 return target_type;
17264 }
f792889a 17265 return this_type;
c906108c
SS
17266}
17267
9b790ce7
UW
17268/* Allocate a floating-point type of size BITS and name NAME. Pass NAME_HINT
17269 (which may be different from NAME) to the architecture back-end to allow
17270 it to guess the correct format if necessary. */
17271
17272static struct type *
17273dwarf2_init_float_type (struct objfile *objfile, int bits, const char *name,
103a685e 17274 const char *name_hint, enum bfd_endian byte_order)
9b790ce7 17275{
08feed99 17276 struct gdbarch *gdbarch = objfile->arch ();
9b790ce7
UW
17277 const struct floatformat **format;
17278 struct type *type;
17279
17280 format = gdbarch_floatformat_for_type (gdbarch, name_hint, bits);
17281 if (format)
103a685e 17282 type = init_float_type (objfile, bits, name, format, byte_order);
9b790ce7 17283 else
77b7c781 17284 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
9b790ce7
UW
17285
17286 return type;
17287}
17288
eb77c9df
AB
17289/* Allocate an integer type of size BITS and name NAME. */
17290
17291static struct type *
17292dwarf2_init_integer_type (struct dwarf2_cu *cu, struct objfile *objfile,
17293 int bits, int unsigned_p, const char *name)
17294{
17295 struct type *type;
17296
17297 /* Versions of Intel's C Compiler generate an integer type called "void"
17298 instead of using DW_TAG_unspecified_type. This has been seen on
17299 at least versions 14, 17, and 18. */
35ee2dc2
AB
17300 if (bits == 0 && producer_is_icc (cu) && name != nullptr
17301 && strcmp (name, "void") == 0)
eb77c9df
AB
17302 type = objfile_type (objfile)->builtin_void;
17303 else
17304 type = init_integer_type (objfile, bits, unsigned_p, name);
17305
17306 return type;
17307}
17308
8bdc1658
AB
17309/* Initialise and return a floating point type of size BITS suitable for
17310 use as a component of a complex number. The NAME_HINT is passed through
17311 when initialising the floating point type and is the name of the complex
17312 type.
17313
17314 As DWARF doesn't currently provide an explicit name for the components
17315 of a complex number, but it can be helpful to have these components
17316 named, we try to select a suitable name based on the size of the
17317 component. */
17318static struct type *
17319dwarf2_init_complex_target_type (struct dwarf2_cu *cu,
17320 struct objfile *objfile,
103a685e
TT
17321 int bits, const char *name_hint,
17322 enum bfd_endian byte_order)
8bdc1658 17323{
08feed99 17324 gdbarch *gdbarch = objfile->arch ();
8bdc1658
AB
17325 struct type *tt = nullptr;
17326
35add35e
AB
17327 /* Try to find a suitable floating point builtin type of size BITS.
17328 We're going to use the name of this type as the name for the complex
17329 target type that we are about to create. */
1db455a7 17330 switch (cu->language)
8bdc1658 17331 {
1db455a7
AB
17332 case language_fortran:
17333 switch (bits)
17334 {
17335 case 32:
17336 tt = builtin_f_type (gdbarch)->builtin_real;
17337 break;
17338 case 64:
17339 tt = builtin_f_type (gdbarch)->builtin_real_s8;
17340 break;
17341 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17342 case 128:
17343 tt = builtin_f_type (gdbarch)->builtin_real_s16;
17344 break;
17345 }
8bdc1658 17346 break;
1db455a7
AB
17347 default:
17348 switch (bits)
17349 {
17350 case 32:
17351 tt = builtin_type (gdbarch)->builtin_float;
17352 break;
17353 case 64:
17354 tt = builtin_type (gdbarch)->builtin_double;
17355 break;
17356 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17357 case 128:
17358 tt = builtin_type (gdbarch)->builtin_long_double;
17359 break;
17360 }
8bdc1658
AB
17361 break;
17362 }
17363
35add35e
AB
17364 /* If the type we found doesn't match the size we were looking for, then
17365 pretend we didn't find a type at all, the complex target type we
17366 create will then be nameless. */
a12e5744 17367 if (tt != nullptr && TYPE_LENGTH (tt) * TARGET_CHAR_BIT != bits)
35add35e
AB
17368 tt = nullptr;
17369
7d93a1e0 17370 const char *name = (tt == nullptr) ? nullptr : tt->name ();
103a685e 17371 return dwarf2_init_float_type (objfile, bits, name, name_hint, byte_order);
8bdc1658
AB
17372}
17373
c906108c
SS
17374/* Find a representation of a given base type and install
17375 it in the TYPE field of the die. */
17376
f792889a 17377static struct type *
e7c27a73 17378read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17379{
5e22e966 17380 struct objfile *objfile = cu->per_objfile->objfile;
c906108c
SS
17381 struct type *type;
17382 struct attribute *attr;
19f392bc 17383 int encoding = 0, bits = 0;
15d034d0 17384 const char *name;
34877895 17385 gdbarch *arch;
c906108c 17386
e142c38c 17387 attr = dwarf2_attr (die, DW_AT_encoding, cu);
435d3d88 17388 if (attr != nullptr)
34877895 17389 encoding = DW_UNSND (attr);
e142c38c 17390 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 17391 if (attr != nullptr)
34877895 17392 bits = DW_UNSND (attr) * TARGET_CHAR_BIT;
39cbfefa 17393 name = dwarf2_name (die, cu);
6ccb9162 17394 if (!name)
34877895 17395 complaint (_("DW_AT_name missing from DW_TAG_base_type"));
103a685e 17396
08feed99 17397 arch = objfile->arch ();
103a685e
TT
17398 enum bfd_endian byte_order = gdbarch_byte_order (arch);
17399
34877895
PJ
17400 attr = dwarf2_attr (die, DW_AT_endianity, cu);
17401 if (attr)
103a685e
TT
17402 {
17403 int endianity = DW_UNSND (attr);
17404
17405 switch (endianity)
17406 {
17407 case DW_END_big:
17408 byte_order = BFD_ENDIAN_BIG;
17409 break;
17410 case DW_END_little:
17411 byte_order = BFD_ENDIAN_LITTLE;
17412 break;
17413 default:
17414 complaint (_("DW_AT_endianity has unrecognized value %d"), endianity);
17415 break;
17416 }
17417 }
6ccb9162
UW
17418
17419 switch (encoding)
c906108c 17420 {
6ccb9162
UW
17421 case DW_ATE_address:
17422 /* Turn DW_ATE_address into a void * pointer. */
77b7c781 17423 type = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, NULL);
19f392bc 17424 type = init_pointer_type (objfile, bits, name, type);
6ccb9162
UW
17425 break;
17426 case DW_ATE_boolean:
19f392bc 17427 type = init_boolean_type (objfile, bits, 1, name);
6ccb9162
UW
17428 break;
17429 case DW_ATE_complex_float:
103a685e
TT
17430 type = dwarf2_init_complex_target_type (cu, objfile, bits / 2, name,
17431 byte_order);
78134374 17432 if (type->code () == TYPE_CODE_ERROR)
93689ce9
TT
17433 {
17434 if (name == nullptr)
17435 {
17436 struct obstack *obstack
5e22e966 17437 = &cu->per_objfile->objfile->objfile_obstack;
7d93a1e0 17438 name = obconcat (obstack, "_Complex ", type->name (),
93689ce9
TT
17439 nullptr);
17440 }
17441 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
17442 }
17443 else
17444 type = init_complex_type (name, type);
6ccb9162
UW
17445 break;
17446 case DW_ATE_decimal_float:
19f392bc 17447 type = init_decfloat_type (objfile, bits, name);
6ccb9162
UW
17448 break;
17449 case DW_ATE_float:
103a685e 17450 type = dwarf2_init_float_type (objfile, bits, name, name, byte_order);
6ccb9162
UW
17451 break;
17452 case DW_ATE_signed:
eb77c9df 17453 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17454 break;
17455 case DW_ATE_unsigned:
3b2b8fea
TT
17456 if (cu->language == language_fortran
17457 && name
61012eef 17458 && startswith (name, "character("))
19f392bc
UW
17459 type = init_character_type (objfile, bits, 1, name);
17460 else
eb77c9df 17461 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162
UW
17462 break;
17463 case DW_ATE_signed_char:
6e70227d 17464 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
17465 || cu->language == language_pascal
17466 || cu->language == language_fortran)
19f392bc
UW
17467 type = init_character_type (objfile, bits, 0, name);
17468 else
eb77c9df 17469 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17470 break;
17471 case DW_ATE_unsigned_char:
868a0084 17472 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea 17473 || cu->language == language_pascal
c44af4eb
TT
17474 || cu->language == language_fortran
17475 || cu->language == language_rust)
19f392bc
UW
17476 type = init_character_type (objfile, bits, 1, name);
17477 else
eb77c9df 17478 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162 17479 break;
75079b2b 17480 case DW_ATE_UTF:
53e710ac 17481 {
53e710ac
PA
17482 if (bits == 16)
17483 type = builtin_type (arch)->builtin_char16;
17484 else if (bits == 32)
17485 type = builtin_type (arch)->builtin_char32;
17486 else
17487 {
b98664d3 17488 complaint (_("unsupported DW_ATE_UTF bit size: '%d'"),
53e710ac 17489 bits);
eb77c9df 17490 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
53e710ac
PA
17491 }
17492 return set_die_type (die, type, cu);
17493 }
75079b2b
TT
17494 break;
17495
6ccb9162 17496 default:
b98664d3 17497 complaint (_("unsupported DW_AT_encoding: '%s'"),
6ccb9162 17498 dwarf_type_encoding_name (encoding));
77b7c781 17499 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
6ccb9162 17500 break;
c906108c 17501 }
6ccb9162 17502
0114d602 17503 if (name && strcmp (name, "char") == 0)
876cecd0 17504 TYPE_NOSIGN (type) = 1;
0114d602 17505
2b4424c3
TT
17506 maybe_set_alignment (cu, die, type);
17507
103a685e 17508 TYPE_ENDIANITY_NOT_DEFAULT (type) = gdbarch_byte_order (arch) != byte_order;
34877895 17509
f792889a 17510 return set_die_type (die, type, cu);
c906108c
SS
17511}
17512
80180f79
SA
17513/* Parse dwarf attribute if it's a block, reference or constant and put the
17514 resulting value of the attribute into struct bound_prop.
17515 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
17516
17517static int
17518attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
9a49df9d
AB
17519 struct dwarf2_cu *cu, struct dynamic_prop *prop,
17520 struct type *default_type)
80180f79
SA
17521{
17522 struct dwarf2_property_baton *baton;
5e22e966 17523 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba
TT
17524 struct objfile *objfile = per_objfile->objfile;
17525 struct obstack *obstack = &objfile->objfile_obstack;
80180f79 17526
9a49df9d
AB
17527 gdb_assert (default_type != NULL);
17528
80180f79
SA
17529 if (attr == NULL || prop == NULL)
17530 return 0;
17531
4fc6c0d5 17532 if (attr->form_is_block ())
80180f79 17533 {
8d749320 17534 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17535 baton->property_type = default_type;
80180f79 17536 baton->locexpr.per_cu = cu->per_cu;
a50264ba 17537 baton->locexpr.per_objfile = per_objfile;
80180f79
SA
17538 baton->locexpr.size = DW_BLOCK (attr)->size;
17539 baton->locexpr.data = DW_BLOCK (attr)->data;
216a7e6b
AB
17540 switch (attr->name)
17541 {
17542 case DW_AT_string_length:
17543 baton->locexpr.is_reference = true;
17544 break;
17545 default:
17546 baton->locexpr.is_reference = false;
17547 break;
17548 }
80180f79
SA
17549 prop->data.baton = baton;
17550 prop->kind = PROP_LOCEXPR;
17551 gdb_assert (prop->data.baton != NULL);
17552 }
cd6c91b4 17553 else if (attr->form_is_ref ())
80180f79
SA
17554 {
17555 struct dwarf2_cu *target_cu = cu;
17556 struct die_info *target_die;
17557 struct attribute *target_attr;
17558
17559 target_die = follow_die_ref (die, attr, &target_cu);
17560 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
df25ebbd
JB
17561 if (target_attr == NULL)
17562 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
17563 target_cu);
80180f79
SA
17564 if (target_attr == NULL)
17565 return 0;
17566
df25ebbd 17567 switch (target_attr->name)
80180f79 17568 {
df25ebbd 17569 case DW_AT_location:
cd6c91b4 17570 if (target_attr->form_is_section_offset ())
df25ebbd 17571 {
8d749320 17572 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17573 baton->property_type = die_type (target_die, target_cu);
df25ebbd
JB
17574 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
17575 prop->data.baton = baton;
17576 prop->kind = PROP_LOCLIST;
17577 gdb_assert (prop->data.baton != NULL);
17578 }
4fc6c0d5 17579 else if (target_attr->form_is_block ())
df25ebbd 17580 {
8d749320 17581 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17582 baton->property_type = die_type (target_die, target_cu);
df25ebbd 17583 baton->locexpr.per_cu = cu->per_cu;
a50264ba 17584 baton->locexpr.per_objfile = per_objfile;
df25ebbd
JB
17585 baton->locexpr.size = DW_BLOCK (target_attr)->size;
17586 baton->locexpr.data = DW_BLOCK (target_attr)->data;
9a49df9d 17587 baton->locexpr.is_reference = true;
df25ebbd
JB
17588 prop->data.baton = baton;
17589 prop->kind = PROP_LOCEXPR;
17590 gdb_assert (prop->data.baton != NULL);
17591 }
17592 else
17593 {
17594 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
17595 "dynamic property");
17596 return 0;
17597 }
17598 break;
17599 case DW_AT_data_member_location:
17600 {
17601 LONGEST offset;
17602
17603 if (!handle_data_member_location (target_die, target_cu,
17604 &offset))
17605 return 0;
17606
8d749320 17607 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17608 baton->property_type = read_type_die (target_die->parent,
6ad395a7 17609 target_cu);
df25ebbd
JB
17610 baton->offset_info.offset = offset;
17611 baton->offset_info.type = die_type (target_die, target_cu);
17612 prop->data.baton = baton;
17613 prop->kind = PROP_ADDR_OFFSET;
17614 break;
17615 }
80180f79
SA
17616 }
17617 }
cd6c91b4 17618 else if (attr->form_is_constant ())
80180f79 17619 {
0826b30a 17620 prop->data.const_val = attr->constant_value (0);
80180f79
SA
17621 prop->kind = PROP_CONST;
17622 }
17623 else
17624 {
17625 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
17626 dwarf2_name (die, cu));
17627 return 0;
17628 }
17629
17630 return 1;
17631}
17632
09ba997f 17633/* See read.h. */
9a49df9d 17634
09ba997f 17635struct type *
293e7e51 17636dwarf2_per_objfile::int_type (int size_in_bytes, bool unsigned_p) const
9a49df9d 17637{
9a49df9d
AB
17638 struct type *int_type;
17639
17640 /* Helper macro to examine the various builtin types. */
11a8b164
AB
17641#define TRY_TYPE(F) \
17642 int_type = (unsigned_p \
17643 ? objfile_type (objfile)->builtin_unsigned_ ## F \
17644 : objfile_type (objfile)->builtin_ ## F); \
17645 if (int_type != NULL && TYPE_LENGTH (int_type) == size_in_bytes) \
9a49df9d
AB
17646 return int_type
17647
17648 TRY_TYPE (char);
17649 TRY_TYPE (short);
17650 TRY_TYPE (int);
17651 TRY_TYPE (long);
17652 TRY_TYPE (long_long);
17653
17654#undef TRY_TYPE
17655
17656 gdb_assert_not_reached ("unable to find suitable integer type");
17657}
17658
09ba997f 17659/* See read.h. */
11a8b164 17660
09ba997f 17661struct type *
293e7e51 17662dwarf2_cu::addr_sized_int_type (bool unsigned_p) const
11a8b164 17663{
293e7e51
SM
17664 int addr_size = this->per_cu->addr_size ();
17665 return this->per_objfile->int_type (addr_size, unsigned_p);
11a8b164
AB
17666}
17667
b86352cf
AB
17668/* Read the DW_AT_type attribute for a sub-range. If this attribute is not
17669 present (which is valid) then compute the default type based on the
17670 compilation units address size. */
17671
17672static struct type *
17673read_subrange_index_type (struct die_info *die, struct dwarf2_cu *cu)
17674{
17675 struct type *index_type = die_type (die, cu);
17676
17677 /* Dwarf-2 specifications explicitly allows to create subrange types
17678 without specifying a base type.
17679 In that case, the base type must be set to the type of
17680 the lower bound, upper bound or count, in that order, if any of these
17681 three attributes references an object that has a type.
17682 If no base type is found, the Dwarf-2 specifications say that
17683 a signed integer type of size equal to the size of an address should
17684 be used.
17685 For the following C code: `extern char gdb_int [];'
17686 GCC produces an empty range DIE.
17687 FIXME: muller/2010-05-28: Possible references to object for low bound,
17688 high bound or count are not yet handled by this code. */
78134374 17689 if (index_type->code () == TYPE_CODE_VOID)
293e7e51 17690 index_type = cu->addr_sized_int_type (false);
b86352cf
AB
17691
17692 return index_type;
17693}
17694
a02abb62
JB
17695/* Read the given DW_AT_subrange DIE. */
17696
f792889a 17697static struct type *
a02abb62
JB
17698read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
17699{
4c9ad8c2 17700 struct type *base_type, *orig_base_type;
a02abb62
JB
17701 struct type *range_type;
17702 struct attribute *attr;
729efb13 17703 struct dynamic_prop low, high;
4fae6e18 17704 int low_default_is_valid;
c451ebe5 17705 int high_bound_is_count = 0;
15d034d0 17706 const char *name;
d359392f 17707 ULONGEST negative_mask;
e77813c8 17708
b86352cf
AB
17709 orig_base_type = read_subrange_index_type (die, cu);
17710
4c9ad8c2
TT
17711 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
17712 whereas the real type might be. So, we use ORIG_BASE_TYPE when
17713 creating the range type, but we use the result of check_typedef
17714 when examining properties of the type. */
17715 base_type = check_typedef (orig_base_type);
a02abb62 17716
7e314c57
JK
17717 /* The die_type call above may have already set the type for this DIE. */
17718 range_type = get_die_type (die, cu);
17719 if (range_type)
17720 return range_type;
17721
729efb13
SA
17722 low.kind = PROP_CONST;
17723 high.kind = PROP_CONST;
17724 high.data.const_val = 0;
17725
4fae6e18
JK
17726 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
17727 omitting DW_AT_lower_bound. */
17728 switch (cu->language)
6e70227d 17729 {
4fae6e18
JK
17730 case language_c:
17731 case language_cplus:
729efb13 17732 low.data.const_val = 0;
4fae6e18
JK
17733 low_default_is_valid = 1;
17734 break;
17735 case language_fortran:
729efb13 17736 low.data.const_val = 1;
4fae6e18
JK
17737 low_default_is_valid = 1;
17738 break;
17739 case language_d:
4fae6e18 17740 case language_objc:
c44af4eb 17741 case language_rust:
729efb13 17742 low.data.const_val = 0;
4fae6e18
JK
17743 low_default_is_valid = (cu->header.version >= 4);
17744 break;
17745 case language_ada:
17746 case language_m2:
17747 case language_pascal:
729efb13 17748 low.data.const_val = 1;
4fae6e18
JK
17749 low_default_is_valid = (cu->header.version >= 4);
17750 break;
17751 default:
729efb13 17752 low.data.const_val = 0;
4fae6e18
JK
17753 low_default_is_valid = 0;
17754 break;
a02abb62
JB
17755 }
17756
e142c38c 17757 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
435d3d88 17758 if (attr != nullptr)
9a49df9d 17759 attr_to_dynamic_prop (attr, die, cu, &low, base_type);
4fae6e18 17760 else if (!low_default_is_valid)
b98664d3 17761 complaint (_("Missing DW_AT_lower_bound "
9d8780f0
SM
17762 "- DIE at %s [in module %s]"),
17763 sect_offset_str (die->sect_off),
5e22e966 17764 objfile_name (cu->per_objfile->objfile));
a02abb62 17765
506f5c41
TV
17766 struct attribute *attr_ub, *attr_count;
17767 attr = attr_ub = dwarf2_attr (die, DW_AT_upper_bound, cu);
9a49df9d 17768 if (!attr_to_dynamic_prop (attr, die, cu, &high, base_type))
e77813c8 17769 {
506f5c41 17770 attr = attr_count = dwarf2_attr (die, DW_AT_count, cu);
9a49df9d 17771 if (attr_to_dynamic_prop (attr, die, cu, &high, base_type))
6b662e19 17772 {
c451ebe5
SA
17773 /* If bounds are constant do the final calculation here. */
17774 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
17775 high.data.const_val = low.data.const_val + high.data.const_val - 1;
17776 else
17777 high_bound_is_count = 1;
c2ff108b 17778 }
506f5c41
TV
17779 else
17780 {
17781 if (attr_ub != NULL)
17782 complaint (_("Unresolved DW_AT_upper_bound "
17783 "- DIE at %s [in module %s]"),
17784 sect_offset_str (die->sect_off),
5e22e966 17785 objfile_name (cu->per_objfile->objfile));
506f5c41
TV
17786 if (attr_count != NULL)
17787 complaint (_("Unresolved DW_AT_count "
17788 "- DIE at %s [in module %s]"),
17789 sect_offset_str (die->sect_off),
5e22e966 17790 objfile_name (cu->per_objfile->objfile));
506f5c41 17791 }
e77813c8 17792 }
a02abb62 17793
4e962e74
TT
17794 LONGEST bias = 0;
17795 struct attribute *bias_attr = dwarf2_attr (die, DW_AT_GNU_bias, cu);
cd6c91b4 17796 if (bias_attr != nullptr && bias_attr->form_is_constant ())
0826b30a 17797 bias = bias_attr->constant_value (0);
4e962e74 17798
dbb9c2b1
JB
17799 /* Normally, the DWARF producers are expected to use a signed
17800 constant form (Eg. DW_FORM_sdata) to express negative bounds.
17801 But this is unfortunately not always the case, as witnessed
17802 with GCC, for instance, where the ambiguous DW_FORM_dataN form
17803 is used instead. To work around that ambiguity, we treat
17804 the bounds as signed, and thus sign-extend their values, when
17805 the base type is signed. */
6e70227d 17806 negative_mask =
d359392f 17807 -((ULONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
729efb13
SA
17808 if (low.kind == PROP_CONST
17809 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
17810 low.data.const_val |= negative_mask;
17811 if (high.kind == PROP_CONST
17812 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
17813 high.data.const_val |= negative_mask;
43bbcdc2 17814
5bbd8269
AB
17815 /* Check for bit and byte strides. */
17816 struct dynamic_prop byte_stride_prop;
17817 attribute *attr_byte_stride = dwarf2_attr (die, DW_AT_byte_stride, cu);
17818 if (attr_byte_stride != nullptr)
17819 {
293e7e51 17820 struct type *prop_type = cu->addr_sized_int_type (false);
5bbd8269
AB
17821 attr_to_dynamic_prop (attr_byte_stride, die, cu, &byte_stride_prop,
17822 prop_type);
17823 }
17824
17825 struct dynamic_prop bit_stride_prop;
17826 attribute *attr_bit_stride = dwarf2_attr (die, DW_AT_bit_stride, cu);
17827 if (attr_bit_stride != nullptr)
17828 {
17829 /* It only makes sense to have either a bit or byte stride. */
17830 if (attr_byte_stride != nullptr)
17831 {
17832 complaint (_("Found DW_AT_bit_stride and DW_AT_byte_stride "
17833 "- DIE at %s [in module %s]"),
17834 sect_offset_str (die->sect_off),
5e22e966 17835 objfile_name (cu->per_objfile->objfile));
5bbd8269
AB
17836 attr_bit_stride = nullptr;
17837 }
17838 else
17839 {
293e7e51 17840 struct type *prop_type = cu->addr_sized_int_type (false);
5bbd8269
AB
17841 attr_to_dynamic_prop (attr_bit_stride, die, cu, &bit_stride_prop,
17842 prop_type);
17843 }
17844 }
17845
17846 if (attr_byte_stride != nullptr
17847 || attr_bit_stride != nullptr)
17848 {
17849 bool byte_stride_p = (attr_byte_stride != nullptr);
17850 struct dynamic_prop *stride
17851 = byte_stride_p ? &byte_stride_prop : &bit_stride_prop;
17852
17853 range_type
17854 = create_range_type_with_stride (NULL, orig_base_type, &low,
17855 &high, bias, stride, byte_stride_p);
17856 }
17857 else
17858 range_type = create_range_type (NULL, orig_base_type, &low, &high, bias);
a02abb62 17859
c451ebe5
SA
17860 if (high_bound_is_count)
17861 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
17862
c2ff108b
JK
17863 /* Ada expects an empty array on no boundary attributes. */
17864 if (attr == NULL && cu->language != language_ada)
729efb13 17865 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
c2ff108b 17866
39cbfefa
DJ
17867 name = dwarf2_name (die, cu);
17868 if (name)
d0e39ea2 17869 range_type->set_name (name);
6e70227d 17870
e142c38c 17871 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 17872 if (attr != nullptr)
a02abb62
JB
17873 TYPE_LENGTH (range_type) = DW_UNSND (attr);
17874
2b4424c3
TT
17875 maybe_set_alignment (cu, die, range_type);
17876
7e314c57
JK
17877 set_die_type (die, range_type, cu);
17878
17879 /* set_die_type should be already done. */
b4ba55a1
JB
17880 set_descriptive_type (range_type, die, cu);
17881
7e314c57 17882 return range_type;
a02abb62 17883}
6e70227d 17884
f792889a 17885static struct type *
81a17f79
JB
17886read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
17887{
17888 struct type *type;
81a17f79 17889
5e22e966 17890 type = init_type (cu->per_objfile->objfile, TYPE_CODE_VOID, 0, NULL);
d0e39ea2 17891 type->set_name (dwarf2_name (die, cu));
81a17f79 17892
74a2f8ff 17893 /* In Ada, an unspecified type is typically used when the description
85102364 17894 of the type is deferred to a different unit. When encountering
74a2f8ff
JB
17895 such a type, we treat it as a stub, and try to resolve it later on,
17896 when needed. */
17897 if (cu->language == language_ada)
17898 TYPE_STUB (type) = 1;
17899
f792889a 17900 return set_die_type (die, type, cu);
81a17f79 17901}
a02abb62 17902
639d11d3
DC
17903/* Read a single die and all its descendents. Set the die's sibling
17904 field to NULL; set other fields in the die correctly, and set all
17905 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
17906 location of the info_ptr after reading all of those dies. PARENT
17907 is the parent of the die in question. */
17908
17909static struct die_info *
dee91e82 17910read_die_and_children (const struct die_reader_specs *reader,
d521ce57
TT
17911 const gdb_byte *info_ptr,
17912 const gdb_byte **new_info_ptr,
dee91e82 17913 struct die_info *parent)
639d11d3
DC
17914{
17915 struct die_info *die;
d521ce57 17916 const gdb_byte *cur_ptr;
639d11d3 17917
3e225074 17918 cur_ptr = read_full_die_1 (reader, &die, info_ptr, 0);
1d325ec1
DJ
17919 if (die == NULL)
17920 {
17921 *new_info_ptr = cur_ptr;
17922 return NULL;
17923 }
93311388 17924 store_in_ref_table (die, reader->cu);
639d11d3 17925
3e225074 17926 if (die->has_children)
bf6af496 17927 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
639d11d3
DC
17928 else
17929 {
17930 die->child = NULL;
17931 *new_info_ptr = cur_ptr;
17932 }
17933
17934 die->sibling = NULL;
17935 die->parent = parent;
17936 return die;
17937}
17938
17939/* Read a die, all of its descendents, and all of its siblings; set
17940 all of the fields of all of the dies correctly. Arguments are as
17941 in read_die_and_children. */
17942
17943static struct die_info *
bf6af496 17944read_die_and_siblings_1 (const struct die_reader_specs *reader,
d521ce57
TT
17945 const gdb_byte *info_ptr,
17946 const gdb_byte **new_info_ptr,
bf6af496 17947 struct die_info *parent)
639d11d3
DC
17948{
17949 struct die_info *first_die, *last_sibling;
d521ce57 17950 const gdb_byte *cur_ptr;
639d11d3 17951
c906108c 17952 cur_ptr = info_ptr;
639d11d3
DC
17953 first_die = last_sibling = NULL;
17954
17955 while (1)
c906108c 17956 {
639d11d3 17957 struct die_info *die
dee91e82 17958 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
639d11d3 17959
1d325ec1 17960 if (die == NULL)
c906108c 17961 {
639d11d3
DC
17962 *new_info_ptr = cur_ptr;
17963 return first_die;
c906108c 17964 }
1d325ec1
DJ
17965
17966 if (!first_die)
17967 first_die = die;
c906108c 17968 else
1d325ec1
DJ
17969 last_sibling->sibling = die;
17970
17971 last_sibling = die;
c906108c 17972 }
c906108c
SS
17973}
17974
bf6af496
DE
17975/* Read a die, all of its descendents, and all of its siblings; set
17976 all of the fields of all of the dies correctly. Arguments are as
17977 in read_die_and_children.
17978 This the main entry point for reading a DIE and all its children. */
17979
17980static struct die_info *
17981read_die_and_siblings (const struct die_reader_specs *reader,
d521ce57
TT
17982 const gdb_byte *info_ptr,
17983 const gdb_byte **new_info_ptr,
bf6af496
DE
17984 struct die_info *parent)
17985{
17986 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
17987 new_info_ptr, parent);
17988
b4f54984 17989 if (dwarf_die_debug)
bf6af496
DE
17990 {
17991 fprintf_unfiltered (gdb_stdlog,
17992 "Read die from %s@0x%x of %s:\n",
96b79293 17993 reader->die_section->get_name (),
bf6af496
DE
17994 (unsigned) (info_ptr - reader->die_section->buffer),
17995 bfd_get_filename (reader->abfd));
b4f54984 17996 dump_die (die, dwarf_die_debug);
bf6af496
DE
17997 }
17998
17999 return die;
18000}
18001
3019eac3
DE
18002/* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
18003 attributes.
18004 The caller is responsible for filling in the extra attributes
18005 and updating (*DIEP)->num_attrs.
18006 Set DIEP to point to a newly allocated die with its information,
3e225074 18007 except for its child, sibling, and parent fields. */
93311388 18008
d521ce57 18009static const gdb_byte *
3019eac3 18010read_full_die_1 (const struct die_reader_specs *reader,
d521ce57 18011 struct die_info **diep, const gdb_byte *info_ptr,
3e225074 18012 int num_extra_attrs)
93311388 18013{
b64f50a1 18014 unsigned int abbrev_number, bytes_read, i;
93311388
DE
18015 struct abbrev_info *abbrev;
18016 struct die_info *die;
18017 struct dwarf2_cu *cu = reader->cu;
18018 bfd *abfd = reader->abfd;
18019
9c541725 18020 sect_offset sect_off = (sect_offset) (info_ptr - reader->buffer);
93311388
DE
18021 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
18022 info_ptr += bytes_read;
18023 if (!abbrev_number)
18024 {
18025 *diep = NULL;
93311388
DE
18026 return info_ptr;
18027 }
18028
685af9cd 18029 abbrev = reader->abbrev_table->lookup_abbrev (abbrev_number);
93311388 18030 if (!abbrev)
348e048f
DE
18031 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
18032 abbrev_number,
18033 bfd_get_filename (abfd));
18034
3019eac3 18035 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
9c541725 18036 die->sect_off = sect_off;
93311388
DE
18037 die->tag = abbrev->tag;
18038 die->abbrev = abbrev_number;
3e225074 18039 die->has_children = abbrev->has_children;
93311388 18040
3019eac3
DE
18041 /* Make the result usable.
18042 The caller needs to update num_attrs after adding the extra
18043 attributes. */
93311388
DE
18044 die->num_attrs = abbrev->num_attrs;
18045
18a8505e 18046 std::vector<int> indexes_that_need_reprocess;
93311388 18047 for (i = 0; i < abbrev->num_attrs; ++i)
18a8505e
AT
18048 {
18049 bool need_reprocess;
18050 info_ptr =
18051 read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
18052 info_ptr, &need_reprocess);
18053 if (need_reprocess)
18054 indexes_that_need_reprocess.push_back (i);
18055 }
18056
052c8bb8 18057 struct attribute *attr = die->attr (DW_AT_str_offsets_base);
18a8505e
AT
18058 if (attr != nullptr)
18059 cu->str_offsets_base = DW_UNSND (attr);
93311388 18060
41144253 18061 attr = die->attr (DW_AT_loclists_base);
18062 if (attr != nullptr)
18063 cu->loclist_base = DW_UNSND (attr);
18064
a39fdb41 18065 auto maybe_addr_base = die->addr_base ();
18a8505e
AT
18066 if (maybe_addr_base.has_value ())
18067 cu->addr_base = *maybe_addr_base;
18068 for (int index : indexes_that_need_reprocess)
18069 read_attribute_reprocess (reader, &die->attrs[index]);
93311388 18070 *diep = die;
93311388
DE
18071 return info_ptr;
18072}
18073
3019eac3
DE
18074/* Read a die and all its attributes.
18075 Set DIEP to point to a newly allocated die with its information,
3e225074 18076 except for its child, sibling, and parent fields. */
3019eac3 18077
d521ce57 18078static const gdb_byte *
3019eac3 18079read_full_die (const struct die_reader_specs *reader,
3e225074 18080 struct die_info **diep, const gdb_byte *info_ptr)
3019eac3 18081{
d521ce57 18082 const gdb_byte *result;
bf6af496 18083
3e225074 18084 result = read_full_die_1 (reader, diep, info_ptr, 0);
bf6af496 18085
b4f54984 18086 if (dwarf_die_debug)
bf6af496
DE
18087 {
18088 fprintf_unfiltered (gdb_stdlog,
18089 "Read die from %s@0x%x of %s:\n",
96b79293 18090 reader->die_section->get_name (),
bf6af496
DE
18091 (unsigned) (info_ptr - reader->die_section->buffer),
18092 bfd_get_filename (reader->abfd));
b4f54984 18093 dump_die (*diep, dwarf_die_debug);
bf6af496
DE
18094 }
18095
18096 return result;
3019eac3 18097}
433df2d4 18098\f
c906108c 18099
72bf9492
DJ
18100/* Returns nonzero if TAG represents a type that we might generate a partial
18101 symbol for. */
18102
18103static int
18104is_type_tag_for_partial (int tag)
18105{
18106 switch (tag)
18107 {
18108#if 0
18109 /* Some types that would be reasonable to generate partial symbols for,
18110 that we don't at present. */
18111 case DW_TAG_array_type:
18112 case DW_TAG_file_type:
18113 case DW_TAG_ptr_to_member_type:
18114 case DW_TAG_set_type:
18115 case DW_TAG_string_type:
18116 case DW_TAG_subroutine_type:
18117#endif
18118 case DW_TAG_base_type:
18119 case DW_TAG_class_type:
680b30c7 18120 case DW_TAG_interface_type:
72bf9492
DJ
18121 case DW_TAG_enumeration_type:
18122 case DW_TAG_structure_type:
18123 case DW_TAG_subrange_type:
18124 case DW_TAG_typedef:
18125 case DW_TAG_union_type:
18126 return 1;
18127 default:
18128 return 0;
18129 }
18130}
18131
18132/* Load all DIEs that are interesting for partial symbols into memory. */
18133
18134static struct partial_die_info *
dee91e82 18135load_partial_dies (const struct die_reader_specs *reader,
d521ce57 18136 const gdb_byte *info_ptr, int building_psymtab)
72bf9492 18137{
dee91e82 18138 struct dwarf2_cu *cu = reader->cu;
5e22e966 18139 struct objfile *objfile = cu->per_objfile->objfile;
72bf9492 18140 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
72bf9492 18141 unsigned int bytes_read;
5afb4e99 18142 unsigned int load_all = 0;
72bf9492
DJ
18143 int nesting_level = 1;
18144
18145 parent_die = NULL;
18146 last_die = NULL;
18147
7adf1e79
DE
18148 gdb_assert (cu->per_cu != NULL);
18149 if (cu->per_cu->load_all_dies)
5afb4e99
DJ
18150 load_all = 1;
18151
72bf9492
DJ
18152 cu->partial_dies
18153 = htab_create_alloc_ex (cu->header.length / 12,
18154 partial_die_hash,
18155 partial_die_eq,
18156 NULL,
18157 &cu->comp_unit_obstack,
18158 hashtab_obstack_allocate,
18159 dummy_obstack_deallocate);
18160
72bf9492
DJ
18161 while (1)
18162 {
685af9cd 18163 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
72bf9492
DJ
18164
18165 /* A NULL abbrev means the end of a series of children. */
18166 if (abbrev == NULL)
18167 {
18168 if (--nesting_level == 0)
cd9983dd
YQ
18169 return first_die;
18170
72bf9492
DJ
18171 info_ptr += bytes_read;
18172 last_die = parent_die;
18173 parent_die = parent_die->die_parent;
18174 continue;
18175 }
18176
98bfdba5
PA
18177 /* Check for template arguments. We never save these; if
18178 they're seen, we just mark the parent, and go on our way. */
18179 if (parent_die != NULL
18180 && cu->language == language_cplus
18181 && (abbrev->tag == DW_TAG_template_type_param
18182 || abbrev->tag == DW_TAG_template_value_param))
18183 {
18184 parent_die->has_template_arguments = 1;
18185
18186 if (!load_all)
18187 {
18188 /* We don't need a partial DIE for the template argument. */
dee91e82 18189 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18190 continue;
18191 }
18192 }
18193
0d99eb77 18194 /* We only recurse into c++ subprograms looking for template arguments.
98bfdba5
PA
18195 Skip their other children. */
18196 if (!load_all
18197 && cu->language == language_cplus
18198 && parent_die != NULL
18199 && parent_die->tag == DW_TAG_subprogram)
18200 {
dee91e82 18201 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18202 continue;
18203 }
18204
5afb4e99
DJ
18205 /* Check whether this DIE is interesting enough to save. Normally
18206 we would not be interested in members here, but there may be
18207 later variables referencing them via DW_AT_specification (for
18208 static members). */
18209 if (!load_all
18210 && !is_type_tag_for_partial (abbrev->tag)
72929c62 18211 && abbrev->tag != DW_TAG_constant
72bf9492
DJ
18212 && abbrev->tag != DW_TAG_enumerator
18213 && abbrev->tag != DW_TAG_subprogram
b1dc1806 18214 && abbrev->tag != DW_TAG_inlined_subroutine
bc30ff58 18215 && abbrev->tag != DW_TAG_lexical_block
72bf9492 18216 && abbrev->tag != DW_TAG_variable
5afb4e99 18217 && abbrev->tag != DW_TAG_namespace
f55ee35c 18218 && abbrev->tag != DW_TAG_module
95554aad 18219 && abbrev->tag != DW_TAG_member
74921315
KS
18220 && abbrev->tag != DW_TAG_imported_unit
18221 && abbrev->tag != DW_TAG_imported_declaration)
72bf9492
DJ
18222 {
18223 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18224 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
72bf9492
DJ
18225 continue;
18226 }
18227
6f06d47b
YQ
18228 struct partial_die_info pdi ((sect_offset) (info_ptr - reader->buffer),
18229 abbrev);
cd9983dd 18230
48fbe735 18231 info_ptr = pdi.read (reader, *abbrev, info_ptr + bytes_read);
72bf9492
DJ
18232
18233 /* This two-pass algorithm for processing partial symbols has a
18234 high cost in cache pressure. Thus, handle some simple cases
18235 here which cover the majority of C partial symbols. DIEs
18236 which neither have specification tags in them, nor could have
18237 specification tags elsewhere pointing at them, can simply be
18238 processed and discarded.
18239
18240 This segment is also optional; scan_partial_symbols and
18241 add_partial_symbol will handle these DIEs if we chain
18242 them in normally. When compilers which do not emit large
18243 quantities of duplicate debug information are more common,
18244 this code can probably be removed. */
18245
18246 /* Any complete simple types at the top level (pretty much all
18247 of them, for a language without namespaces), can be processed
18248 directly. */
18249 if (parent_die == NULL
cd9983dd
YQ
18250 && pdi.has_specification == 0
18251 && pdi.is_declaration == 0
18252 && ((pdi.tag == DW_TAG_typedef && !pdi.has_children)
18253 || pdi.tag == DW_TAG_base_type
18254 || pdi.tag == DW_TAG_subrange_type))
72bf9492 18255 {
cd9983dd 18256 if (building_psymtab && pdi.name != NULL)
31edb802 18257 add_psymbol_to_list (pdi.name, false,
79748972 18258 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 18259 psymbol_placement::STATIC,
1762568f 18260 0, cu->language, objfile);
cd9983dd 18261 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18262 continue;
18263 }
18264
d8228535
JK
18265 /* The exception for DW_TAG_typedef with has_children above is
18266 a workaround of GCC PR debug/47510. In the case of this complaint
a737d952 18267 type_name_or_error will error on such types later.
d8228535
JK
18268
18269 GDB skipped children of DW_TAG_typedef by the shortcut above and then
18270 it could not find the child DIEs referenced later, this is checked
18271 above. In correct DWARF DW_TAG_typedef should have no children. */
18272
cd9983dd 18273 if (pdi.tag == DW_TAG_typedef && pdi.has_children)
b98664d3 18274 complaint (_("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
9d8780f0 18275 "- DIE at %s [in module %s]"),
cd9983dd 18276 sect_offset_str (pdi.sect_off), objfile_name (objfile));
d8228535 18277
72bf9492
DJ
18278 /* If we're at the second level, and we're an enumerator, and
18279 our parent has no specification (meaning possibly lives in a
18280 namespace elsewhere), then we can add the partial symbol now
18281 instead of queueing it. */
cd9983dd 18282 if (pdi.tag == DW_TAG_enumerator
72bf9492
DJ
18283 && parent_die != NULL
18284 && parent_die->die_parent == NULL
18285 && parent_die->tag == DW_TAG_enumeration_type
18286 && parent_die->has_specification == 0)
18287 {
cd9983dd 18288 if (pdi.name == NULL)
b98664d3 18289 complaint (_("malformed enumerator DIE ignored"));
72bf9492 18290 else if (building_psymtab)
31edb802 18291 add_psymbol_to_list (pdi.name, false,
79748972 18292 VAR_DOMAIN, LOC_CONST, -1,
9c37b5ae 18293 cu->language == language_cplus
75aedd27
TT
18294 ? psymbol_placement::GLOBAL
18295 : psymbol_placement::STATIC,
1762568f 18296 0, cu->language, objfile);
72bf9492 18297
cd9983dd 18298 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18299 continue;
18300 }
18301
cd9983dd 18302 struct partial_die_info *part_die
6f06d47b 18303 = new (&cu->comp_unit_obstack) partial_die_info (pdi);
cd9983dd 18304
72bf9492
DJ
18305 /* We'll save this DIE so link it in. */
18306 part_die->die_parent = parent_die;
18307 part_die->die_sibling = NULL;
18308 part_die->die_child = NULL;
18309
18310 if (last_die && last_die == parent_die)
18311 last_die->die_child = part_die;
18312 else if (last_die)
18313 last_die->die_sibling = part_die;
18314
18315 last_die = part_die;
18316
18317 if (first_die == NULL)
18318 first_die = part_die;
18319
18320 /* Maybe add the DIE to the hash table. Not all DIEs that we
18321 find interesting need to be in the hash table, because we
18322 also have the parent/sibling/child chains; only those that we
18323 might refer to by offset later during partial symbol reading.
18324
18325 For now this means things that might have be the target of a
18326 DW_AT_specification, DW_AT_abstract_origin, or
18327 DW_AT_extension. DW_AT_extension will refer only to
18328 namespaces; DW_AT_abstract_origin refers to functions (and
18329 many things under the function DIE, but we do not recurse
18330 into function DIEs during partial symbol reading) and
18331 possibly variables as well; DW_AT_specification refers to
18332 declarations. Declarations ought to have the DW_AT_declaration
18333 flag. It happens that GCC forgets to put it in sometimes, but
18334 only for functions, not for types.
18335
18336 Adding more things than necessary to the hash table is harmless
18337 except for the performance cost. Adding too few will result in
5afb4e99
DJ
18338 wasted time in find_partial_die, when we reread the compilation
18339 unit with load_all_dies set. */
72bf9492 18340
5afb4e99 18341 if (load_all
72929c62 18342 || abbrev->tag == DW_TAG_constant
5afb4e99 18343 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
18344 || abbrev->tag == DW_TAG_variable
18345 || abbrev->tag == DW_TAG_namespace
18346 || part_die->is_declaration)
18347 {
18348 void **slot;
18349
18350 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
9c541725
PA
18351 to_underlying (part_die->sect_off),
18352 INSERT);
72bf9492
DJ
18353 *slot = part_die;
18354 }
18355
72bf9492 18356 /* For some DIEs we want to follow their children (if any). For C
bc30ff58 18357 we have no reason to follow the children of structures; for other
98bfdba5
PA
18358 languages we have to, so that we can get at method physnames
18359 to infer fully qualified class names, for DW_AT_specification,
18360 and for C++ template arguments. For C++, we also look one level
18361 inside functions to find template arguments (if the name of the
18362 function does not already contain the template arguments).
bc30ff58 18363
0a4b0913
AB
18364 For Ada and Fortran, we need to scan the children of subprograms
18365 and lexical blocks as well because these languages allow the
18366 definition of nested entities that could be interesting for the
18367 debugger, such as nested subprograms for instance. */
72bf9492 18368 if (last_die->has_children
5afb4e99
DJ
18369 && (load_all
18370 || last_die->tag == DW_TAG_namespace
f55ee35c 18371 || last_die->tag == DW_TAG_module
72bf9492 18372 || last_die->tag == DW_TAG_enumeration_type
98bfdba5
PA
18373 || (cu->language == language_cplus
18374 && last_die->tag == DW_TAG_subprogram
18375 && (last_die->name == NULL
18376 || strchr (last_die->name, '<') == NULL))
72bf9492
DJ
18377 || (cu->language != language_c
18378 && (last_die->tag == DW_TAG_class_type
680b30c7 18379 || last_die->tag == DW_TAG_interface_type
72bf9492 18380 || last_die->tag == DW_TAG_structure_type
bc30ff58 18381 || last_die->tag == DW_TAG_union_type))
0a4b0913
AB
18382 || ((cu->language == language_ada
18383 || cu->language == language_fortran)
bc30ff58
JB
18384 && (last_die->tag == DW_TAG_subprogram
18385 || last_die->tag == DW_TAG_lexical_block))))
72bf9492
DJ
18386 {
18387 nesting_level++;
18388 parent_die = last_die;
18389 continue;
18390 }
18391
18392 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18393 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
72bf9492
DJ
18394
18395 /* Back to the top, do it again. */
18396 }
18397}
18398
6f06d47b
YQ
18399partial_die_info::partial_die_info (sect_offset sect_off_,
18400 struct abbrev_info *abbrev)
18401 : partial_die_info (sect_off_, abbrev->tag, abbrev->has_children)
18402{
18403}
18404
35cc7ed7
YQ
18405/* Read a minimal amount of information into the minimal die structure.
18406 INFO_PTR should point just after the initial uleb128 of a DIE. */
c906108c 18407
48fbe735
YQ
18408const gdb_byte *
18409partial_die_info::read (const struct die_reader_specs *reader,
18410 const struct abbrev_info &abbrev, const gdb_byte *info_ptr)
c906108c 18411{
dee91e82 18412 struct dwarf2_cu *cu = reader->cu;
5e22e966 18413 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
fa238c03 18414 unsigned int i;
c5aa993b 18415 int has_low_pc_attr = 0;
c906108c 18416 int has_high_pc_attr = 0;
91da1414 18417 int high_pc_relative = 0;
c906108c 18418
fd0a254f 18419 for (i = 0; i < abbrev.num_attrs; ++i)
c906108c 18420 {
e7da7f8f 18421 attribute attr;
18a8505e 18422 bool need_reprocess;
e7da7f8f 18423 info_ptr = read_attribute (reader, &attr, &abbrev.attrs[i],
18a8505e
AT
18424 info_ptr, &need_reprocess);
18425 /* String and address offsets that need to do the reprocessing have
18426 already been read at this point, so there is no need to wait until
18427 the loop terminates to do the reprocessing. */
18428 if (need_reprocess)
e7da7f8f 18429 read_attribute_reprocess (reader, &attr);
c906108c 18430 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 18431 partial symbol table. */
c906108c
SS
18432 switch (attr.name)
18433 {
18434 case DW_AT_name:
48fbe735 18435 switch (tag)
71c25dea
TT
18436 {
18437 case DW_TAG_compile_unit:
95554aad 18438 case DW_TAG_partial_unit:
348e048f 18439 case DW_TAG_type_unit:
71c25dea
TT
18440 /* Compilation units have a DW_AT_name that is a filename, not
18441 a source language identifier. */
18442 case DW_TAG_enumeration_type:
18443 case DW_TAG_enumerator:
18444 /* These tags always have simple identifiers already; no need
18445 to canonicalize them. */
48fbe735 18446 name = DW_STRING (&attr);
71c25dea
TT
18447 break;
18448 default:
48fbe735
YQ
18449 {
18450 struct objfile *objfile = dwarf2_per_objfile->objfile;
18451
18452 name
be1e3d3e 18453 = dwarf2_canonicalize_name (DW_STRING (&attr), cu, objfile);
48fbe735 18454 }
71c25dea
TT
18455 break;
18456 }
c906108c 18457 break;
31ef98ae 18458 case DW_AT_linkage_name:
c906108c 18459 case DW_AT_MIPS_linkage_name:
31ef98ae
TT
18460 /* Note that both forms of linkage name might appear. We
18461 assume they will be the same, and we only store the last
18462 one we see. */
e61108c9 18463 linkage_name = attr.value_as_string ();
787de330
TT
18464 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
18465 See https://github.com/rust-lang/rust/issues/32925. */
18466 if (cu->language == language_rust && linkage_name != NULL
18467 && strchr (linkage_name, '{') != NULL)
18468 linkage_name = NULL;
c906108c
SS
18469 break;
18470 case DW_AT_low_pc:
18471 has_low_pc_attr = 1;
cd6c91b4 18472 lowpc = attr.value_as_address ();
c906108c
SS
18473 break;
18474 case DW_AT_high_pc:
18475 has_high_pc_attr = 1;
cd6c91b4
TT
18476 highpc = attr.value_as_address ();
18477 if (cu->header.version >= 4 && attr.form_is_constant ())
31aa7e4e 18478 high_pc_relative = 1;
c906108c
SS
18479 break;
18480 case DW_AT_location:
0963b4bd 18481 /* Support the .debug_loc offsets. */
4fc6c0d5 18482 if (attr.form_is_block ())
8e19ed76 18483 {
48fbe735 18484 d.locdesc = DW_BLOCK (&attr);
8e19ed76 18485 }
cd6c91b4 18486 else if (attr.form_is_section_offset ())
8e19ed76 18487 {
4d3c2250 18488 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
18489 }
18490 else
18491 {
4d3c2250
KB
18492 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
18493 "partial symbol information");
8e19ed76 18494 }
c906108c 18495 break;
c906108c 18496 case DW_AT_external:
48fbe735 18497 is_external = DW_UNSND (&attr);
c906108c
SS
18498 break;
18499 case DW_AT_declaration:
48fbe735 18500 is_declaration = DW_UNSND (&attr);
c906108c
SS
18501 break;
18502 case DW_AT_type:
48fbe735 18503 has_type = 1;
c906108c
SS
18504 break;
18505 case DW_AT_abstract_origin:
18506 case DW_AT_specification:
72bf9492 18507 case DW_AT_extension:
48fbe735 18508 has_specification = 1;
0826b30a 18509 spec_offset = attr.get_ref_die_offset ();
48fbe735 18510 spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728 18511 || cu->per_cu->is_dwz);
c906108c
SS
18512 break;
18513 case DW_AT_sibling:
18514 /* Ignore absolute siblings, they might point outside of
18515 the current compile unit. */
18516 if (attr.form == DW_FORM_ref_addr)
b98664d3 18517 complaint (_("ignoring absolute DW_AT_sibling"));
c906108c 18518 else
b9502d3f 18519 {
48fbe735 18520 const gdb_byte *buffer = reader->buffer;
0826b30a 18521 sect_offset off = attr.get_ref_die_offset ();
9c541725 18522 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
18523
18524 if (sibling_ptr < info_ptr)
b98664d3 18525 complaint (_("DW_AT_sibling points backwards"));
22869d73 18526 else if (sibling_ptr > reader->buffer_end)
a0194fa8 18527 reader->die_section->overflow_complaint ();
b9502d3f 18528 else
48fbe735 18529 sibling = sibling_ptr;
b9502d3f 18530 }
c906108c 18531 break;
fa4028e9 18532 case DW_AT_byte_size:
48fbe735 18533 has_byte_size = 1;
fa4028e9 18534 break;
ff908ebf 18535 case DW_AT_const_value:
48fbe735 18536 has_const_value = 1;
ff908ebf 18537 break;
68511cec
CES
18538 case DW_AT_calling_convention:
18539 /* DWARF doesn't provide a way to identify a program's source-level
18540 entry point. DW_AT_calling_convention attributes are only meant
18541 to describe functions' calling conventions.
18542
18543 However, because it's a necessary piece of information in
0c1b455e
TT
18544 Fortran, and before DWARF 4 DW_CC_program was the only
18545 piece of debugging information whose definition refers to
18546 a 'main program' at all, several compilers marked Fortran
18547 main programs with DW_CC_program --- even when those
18548 functions use the standard calling conventions.
18549
18550 Although DWARF now specifies a way to provide this
18551 information, we support this practice for backward
18552 compatibility. */
68511cec 18553 if (DW_UNSND (&attr) == DW_CC_program
0c1b455e 18554 && cu->language == language_fortran)
48fbe735 18555 main_subprogram = 1;
68511cec 18556 break;
481860b3
GB
18557 case DW_AT_inline:
18558 if (DW_UNSND (&attr) == DW_INL_inlined
18559 || DW_UNSND (&attr) == DW_INL_declared_inlined)
48fbe735 18560 may_be_inlined = 1;
481860b3 18561 break;
95554aad
TT
18562
18563 case DW_AT_import:
48fbe735 18564 if (tag == DW_TAG_imported_unit)
36586728 18565 {
0826b30a 18566 d.sect_off = attr.get_ref_die_offset ();
48fbe735 18567 is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728
TT
18568 || cu->per_cu->is_dwz);
18569 }
95554aad
TT
18570 break;
18571
0c1b455e 18572 case DW_AT_main_subprogram:
48fbe735 18573 main_subprogram = DW_UNSND (&attr);
0c1b455e
TT
18574 break;
18575
05caa1d2
TT
18576 case DW_AT_ranges:
18577 {
18578 /* It would be nice to reuse dwarf2_get_pc_bounds here,
18579 but that requires a full DIE, so instead we just
18580 reimplement it. */
18581 int need_ranges_base = tag != DW_TAG_compile_unit;
18582 unsigned int ranges_offset = (DW_UNSND (&attr)
18583 + (need_ranges_base
18584 ? cu->ranges_base
18585 : 0));
18586
18587 /* Value of the DW_AT_ranges attribute is the offset in the
18588 .debug_ranges section. */
18589 if (dwarf2_ranges_read (ranges_offset, &lowpc, &highpc, cu,
18590 nullptr))
18591 has_pc_info = 1;
18592 }
18593 break;
18594
c906108c
SS
18595 default:
18596 break;
18597 }
18598 }
18599
10d06d82
TT
18600 /* For Ada, if both the name and the linkage name appear, we prefer
18601 the latter. This lets "catch exception" work better, regardless
18602 of the order in which the name and linkage name were emitted.
18603 Really, though, this is just a workaround for the fact that gdb
18604 doesn't store both the name and the linkage name. */
18605 if (cu->language == language_ada && linkage_name != nullptr)
18606 name = linkage_name;
18607
91da1414 18608 if (high_pc_relative)
48fbe735 18609 highpc += lowpc;
91da1414 18610
9373cf26
JK
18611 if (has_low_pc_attr && has_high_pc_attr)
18612 {
18613 /* When using the GNU linker, .gnu.linkonce. sections are used to
18614 eliminate duplicate copies of functions and vtables and such.
18615 The linker will arbitrarily choose one and discard the others.
18616 The AT_*_pc values for such functions refer to local labels in
18617 these sections. If the section from that file was discarded, the
18618 labels are not in the output, so the relocs get a value of 0.
18619 If this is a discarded function, mark the pc bounds as invalid,
18620 so that GDB will ignore it. */
5989a64e 18621 if (lowpc == 0 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
9373cf26 18622 {
48fbe735 18623 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 18624 struct gdbarch *gdbarch = objfile->arch ();
9373cf26 18625
b98664d3 18626 complaint (_("DW_AT_low_pc %s is zero "
9d8780f0 18627 "for DIE at %s [in module %s]"),
48fbe735
YQ
18628 paddress (gdbarch, lowpc),
18629 sect_offset_str (sect_off),
9d8780f0 18630 objfile_name (objfile));
9373cf26
JK
18631 }
18632 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
48fbe735 18633 else if (lowpc >= highpc)
9373cf26 18634 {
48fbe735 18635 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 18636 struct gdbarch *gdbarch = objfile->arch ();
9373cf26 18637
b98664d3 18638 complaint (_("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
9d8780f0 18639 "for DIE at %s [in module %s]"),
48fbe735
YQ
18640 paddress (gdbarch, lowpc),
18641 paddress (gdbarch, highpc),
18642 sect_offset_str (sect_off),
9c541725 18643 objfile_name (objfile));
9373cf26
JK
18644 }
18645 else
48fbe735 18646 has_pc_info = 1;
9373cf26 18647 }
85cbf3d3 18648
c906108c
SS
18649 return info_ptr;
18650}
18651
72bf9492
DJ
18652/* Find a cached partial DIE at OFFSET in CU. */
18653
d590ff25
YQ
18654struct partial_die_info *
18655dwarf2_cu::find_partial_die (sect_offset sect_off)
72bf9492
DJ
18656{
18657 struct partial_die_info *lookup_die = NULL;
6f06d47b 18658 struct partial_die_info part_die (sect_off);
72bf9492 18659
9a3c8263 18660 lookup_die = ((struct partial_die_info *)
d590ff25 18661 htab_find_with_hash (partial_dies, &part_die,
9c541725 18662 to_underlying (sect_off)));
72bf9492 18663
72bf9492
DJ
18664 return lookup_die;
18665}
18666
348e048f
DE
18667/* Find a partial DIE at OFFSET, which may or may not be in CU,
18668 except in the case of .debug_types DIEs which do not reference
18669 outside their CU (they do however referencing other types via
55f1336d 18670 DW_FORM_ref_sig8). */
72bf9492 18671
122cf0f2 18672static const struct cu_partial_die_info
9c541725 18673find_partial_die (sect_offset sect_off, int offset_in_dwz, struct dwarf2_cu *cu)
72bf9492 18674{
5e22e966 18675 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 18676 struct objfile *objfile = dwarf2_per_objfile->objfile;
5afb4e99
DJ
18677 struct dwarf2_per_cu_data *per_cu = NULL;
18678 struct partial_die_info *pd = NULL;
72bf9492 18679
36586728 18680 if (offset_in_dwz == cu->per_cu->is_dwz
4057dfde 18681 && cu->header.offset_in_cu_p (sect_off))
5afb4e99 18682 {
d590ff25 18683 pd = cu->find_partial_die (sect_off);
5afb4e99 18684 if (pd != NULL)
fb816e8b 18685 return { cu, pd };
0d99eb77
DE
18686 /* We missed recording what we needed.
18687 Load all dies and try again. */
18688 per_cu = cu->per_cu;
5afb4e99 18689 }
0d99eb77
DE
18690 else
18691 {
18692 /* TUs don't reference other CUs/TUs (except via type signatures). */
3019eac3 18693 if (cu->per_cu->is_debug_types)
0d99eb77 18694 {
9d8780f0
SM
18695 error (_("Dwarf Error: Type Unit at offset %s contains"
18696 " external reference to offset %s [in module %s].\n"),
18697 sect_offset_str (cu->header.sect_off), sect_offset_str (sect_off),
0d99eb77
DE
18698 bfd_get_filename (objfile->obfd));
18699 }
9c541725 18700 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 18701 dwarf2_per_objfile);
72bf9492 18702
0d99eb77 18703 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
ab432490 18704 load_partial_comp_unit (per_cu, cu->per_objfile);
ae038cb0 18705
0d99eb77 18706 per_cu->cu->last_used = 0;
d590ff25 18707 pd = per_cu->cu->find_partial_die (sect_off);
0d99eb77 18708 }
5afb4e99 18709
dee91e82
DE
18710 /* If we didn't find it, and not all dies have been loaded,
18711 load them all and try again. */
18712
5afb4e99
DJ
18713 if (pd == NULL && per_cu->load_all_dies == 0)
18714 {
5afb4e99 18715 per_cu->load_all_dies = 1;
fd820528
DE
18716
18717 /* This is nasty. When we reread the DIEs, somewhere up the call chain
18718 THIS_CU->cu may already be in use. So we can't just free it and
18719 replace its DIEs with the ones we read in. Instead, we leave those
18720 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
18721 and clobber THIS_CU->cu->partial_dies with the hash table for the new
18722 set. */
ab432490 18723 load_partial_comp_unit (per_cu, cu->per_objfile);
5afb4e99 18724
d590ff25 18725 pd = per_cu->cu->find_partial_die (sect_off);
5afb4e99
DJ
18726 }
18727
18728 if (pd == NULL)
18729 internal_error (__FILE__, __LINE__,
9d8780f0 18730 _("could not find partial DIE %s "
3e43a32a 18731 "in cache [from module %s]\n"),
9d8780f0 18732 sect_offset_str (sect_off), bfd_get_filename (objfile->obfd));
fb816e8b 18733 return { per_cu->cu, pd };
72bf9492
DJ
18734}
18735
abc72ce4
DE
18736/* See if we can figure out if the class lives in a namespace. We do
18737 this by looking for a member function; its demangled name will
18738 contain namespace info, if there is any. */
18739
18740static void
18741guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
18742 struct dwarf2_cu *cu)
18743{
18744 /* NOTE: carlton/2003-10-07: Getting the info this way changes
18745 what template types look like, because the demangler
18746 frequently doesn't give the same name as the debug info. We
18747 could fix this by only using the demangled name to get the
18748 prefix (but see comment in read_structure_type). */
18749
18750 struct partial_die_info *real_pdi;
18751 struct partial_die_info *child_pdi;
18752
18753 /* If this DIE (this DIE's specification, if any) has a parent, then
18754 we should not do this. We'll prepend the parent's fully qualified
18755 name when we create the partial symbol. */
18756
18757 real_pdi = struct_pdi;
18758 while (real_pdi->has_specification)
fb816e8b 18759 {
122cf0f2
AB
18760 auto res = find_partial_die (real_pdi->spec_offset,
18761 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
18762 real_pdi = res.pdi;
18763 cu = res.cu;
18764 }
abc72ce4
DE
18765
18766 if (real_pdi->die_parent != NULL)
18767 return;
18768
18769 for (child_pdi = struct_pdi->die_child;
18770 child_pdi != NULL;
18771 child_pdi = child_pdi->die_sibling)
18772 {
18773 if (child_pdi->tag == DW_TAG_subprogram
18774 && child_pdi->linkage_name != NULL)
18775 {
43816ebc
TT
18776 gdb::unique_xmalloc_ptr<char> actual_class_name
18777 (language_class_name_from_physname (cu->language_defn,
18778 child_pdi->linkage_name));
abc72ce4
DE
18779 if (actual_class_name != NULL)
18780 {
5e22e966 18781 struct objfile *objfile = cu->per_objfile->objfile;
be1e3d3e 18782 struct_pdi->name = objfile->intern (actual_class_name.get ());
abc72ce4
DE
18783 }
18784 break;
18785 }
18786 }
18787}
18788
25c11aca
TV
18789/* Return true if a DIE with TAG may have the DW_AT_const_value
18790 attribute. */
18791
18792static bool
18793can_have_DW_AT_const_value_p (enum dwarf_tag tag)
18794{
18795 switch (tag)
18796 {
18797 case DW_TAG_constant:
18798 case DW_TAG_enumerator:
18799 case DW_TAG_formal_parameter:
18800 case DW_TAG_template_value_param:
18801 case DW_TAG_variable:
18802 return true;
18803 }
18804
18805 return false;
18806}
18807
52356b79
YQ
18808void
18809partial_die_info::fixup (struct dwarf2_cu *cu)
72bf9492 18810{
abc72ce4
DE
18811 /* Once we've fixed up a die, there's no point in doing so again.
18812 This also avoids a memory leak if we were to call
18813 guess_partial_die_structure_name multiple times. */
52356b79 18814 if (fixup_called)
abc72ce4
DE
18815 return;
18816
72bf9492
DJ
18817 /* If we found a reference attribute and the DIE has no name, try
18818 to find a name in the referred to DIE. */
18819
52356b79 18820 if (name == NULL && has_specification)
72bf9492
DJ
18821 {
18822 struct partial_die_info *spec_die;
72bf9492 18823
122cf0f2 18824 auto res = find_partial_die (spec_offset, spec_is_dwz, cu);
fb816e8b
TV
18825 spec_die = res.pdi;
18826 cu = res.cu;
72bf9492 18827
52356b79 18828 spec_die->fixup (cu);
72bf9492
DJ
18829
18830 if (spec_die->name)
18831 {
52356b79 18832 name = spec_die->name;
72bf9492
DJ
18833
18834 /* Copy DW_AT_external attribute if it is set. */
18835 if (spec_die->is_external)
52356b79 18836 is_external = spec_die->is_external;
72bf9492
DJ
18837 }
18838 }
18839
25c11aca
TV
18840 if (!has_const_value && has_specification
18841 && can_have_DW_AT_const_value_p (tag))
18842 {
18843 struct partial_die_info *spec_die;
18844
18845 auto res = find_partial_die (spec_offset, spec_is_dwz, cu);
18846 spec_die = res.pdi;
18847 cu = res.cu;
18848
18849 spec_die->fixup (cu);
18850
18851 if (spec_die->has_const_value)
18852 {
18853 /* Copy DW_AT_const_value attribute if it is set. */
18854 has_const_value = spec_die->has_const_value;
18855 }
18856 }
18857
72bf9492 18858 /* Set default names for some unnamed DIEs. */
72bf9492 18859
52356b79
YQ
18860 if (name == NULL && tag == DW_TAG_namespace)
18861 name = CP_ANONYMOUS_NAMESPACE_STR;
72bf9492 18862
abc72ce4
DE
18863 /* If there is no parent die to provide a namespace, and there are
18864 children, see if we can determine the namespace from their linkage
122d1940 18865 name. */
abc72ce4 18866 if (cu->language == language_cplus
5e22e966 18867 && !cu->per_objfile->per_bfd->types.empty ()
52356b79
YQ
18868 && die_parent == NULL
18869 && has_children
18870 && (tag == DW_TAG_class_type
18871 || tag == DW_TAG_structure_type
18872 || tag == DW_TAG_union_type))
18873 guess_partial_die_structure_name (this, cu);
abc72ce4 18874
53832f31
TT
18875 /* GCC might emit a nameless struct or union that has a linkage
18876 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
52356b79
YQ
18877 if (name == NULL
18878 && (tag == DW_TAG_class_type
18879 || tag == DW_TAG_interface_type
18880 || tag == DW_TAG_structure_type
18881 || tag == DW_TAG_union_type)
18882 && linkage_name != NULL)
53832f31 18883 {
43816ebc
TT
18884 gdb::unique_xmalloc_ptr<char> demangled
18885 (gdb_demangle (linkage_name, DMGL_TYPES));
18886 if (demangled != nullptr)
53832f31 18887 {
96408a79
SA
18888 const char *base;
18889
18890 /* Strip any leading namespaces/classes, keep only the base name.
18891 DW_AT_name for named DIEs does not contain the prefixes. */
43816ebc
TT
18892 base = strrchr (demangled.get (), ':');
18893 if (base && base > demangled.get () && base[-1] == ':')
96408a79
SA
18894 base++;
18895 else
43816ebc 18896 base = demangled.get ();
96408a79 18897
5e22e966 18898 struct objfile *objfile = cu->per_objfile->objfile;
be1e3d3e 18899 name = objfile->intern (base);
53832f31
TT
18900 }
18901 }
18902
52356b79 18903 fixup_called = 1;
72bf9492
DJ
18904}
18905
41144253 18906/* Read the .debug_loclists header contents from the given SECTION in the
18907 HEADER. */
18908static void
18909read_loclist_header (struct loclist_header *header,
18910 struct dwarf2_section_info *section)
18911{
18912 unsigned int bytes_read;
18913 bfd *abfd = section->get_bfd_owner ();
18914 const gdb_byte *info_ptr = section->buffer;
18915 header->length = read_initial_length (abfd, info_ptr, &bytes_read);
18916 info_ptr += bytes_read;
18917 header->version = read_2_bytes (abfd, info_ptr);
18918 info_ptr += 2;
18919 header->addr_size = read_1_byte (abfd, info_ptr);
18920 info_ptr += 1;
18921 header->segment_collector_size = read_1_byte (abfd, info_ptr);
18922 info_ptr += 1;
18923 header->offset_entry_count = read_4_bytes (abfd, info_ptr);
18924}
18925
18926/* Return the DW_AT_loclists_base value for the CU. */
18927static ULONGEST
18928lookup_loclist_base (struct dwarf2_cu *cu)
18929{
18930 /* For the .dwo unit, the loclist_base points to the first offset following
18931 the header. The header consists of the following entities-
18932 1. Unit Length (4 bytes for 32 bit DWARF format, and 12 bytes for the 64
18933 bit format)
18934 2. version (2 bytes)
18935 3. address size (1 byte)
18936 4. segment selector size (1 byte)
18937 5. offset entry count (4 bytes)
18938 These sizes are derived as per the DWARFv5 standard. */
18939 if (cu->dwo_unit != nullptr)
18940 {
18941 if (cu->header.initial_length_size == 4)
18942 return LOCLIST_HEADER_SIZE32;
18943 return LOCLIST_HEADER_SIZE64;
18944 }
18945 return cu->loclist_base;
18946}
18947
18948/* Given a DW_FORM_loclistx value LOCLIST_INDEX, fetch the offset from the
18949 array of offsets in the .debug_loclists section. */
18950static CORE_ADDR
18951read_loclist_index (struct dwarf2_cu *cu, ULONGEST loclist_index)
18952{
5e22e966 18953 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
41144253 18954 struct objfile *objfile = dwarf2_per_objfile->objfile;
18955 bfd *abfd = objfile->obfd;
18956 ULONGEST loclist_base = lookup_loclist_base (cu);
18957 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
18958
18959 section->read (objfile);
18960 if (section->buffer == NULL)
18961 complaint (_("DW_FORM_loclistx used without .debug_loclists "
18962 "section [in module %s]"), objfile_name (objfile));
18963 struct loclist_header header;
18964 read_loclist_header (&header, section);
18965 if (loclist_index >= header.offset_entry_count)
18966 complaint (_("DW_FORM_loclistx pointing outside of "
18967 ".debug_loclists offset array [in module %s]"),
18968 objfile_name (objfile));
18969 if (loclist_base + loclist_index * cu->header.offset_size
18970 >= section->size)
18971 complaint (_("DW_FORM_loclistx pointing outside of "
18972 ".debug_loclists section [in module %s]"),
18973 objfile_name (objfile));
18974 const gdb_byte *info_ptr
18975 = section->buffer + loclist_base + loclist_index * cu->header.offset_size;
18976
18977 if (cu->header.offset_size == 4)
18978 return bfd_get_32 (abfd, info_ptr) + loclist_base;
18979 else
18980 return bfd_get_64 (abfd, info_ptr) + loclist_base;
18981}
18982
18a8505e
AT
18983/* Process the attributes that had to be skipped in the first round. These
18984 attributes are the ones that need str_offsets_base or addr_base attributes.
18985 They could not have been processed in the first round, because at the time
18986 the values of str_offsets_base or addr_base may not have been known. */
f1749218
TT
18987static void
18988read_attribute_reprocess (const struct die_reader_specs *reader,
18989 struct attribute *attr)
18a8505e
AT
18990{
18991 struct dwarf2_cu *cu = reader->cu;
18992 switch (attr->form)
18993 {
18994 case DW_FORM_addrx:
18995 case DW_FORM_GNU_addr_index:
18996 DW_ADDR (attr) = read_addr_index (cu, DW_UNSND (attr));
18997 break;
41144253 18998 case DW_FORM_loclistx:
18999 DW_UNSND (attr) = read_loclist_index (cu, DW_UNSND (attr));
19000 break;
18a8505e
AT
19001 case DW_FORM_strx:
19002 case DW_FORM_strx1:
19003 case DW_FORM_strx2:
19004 case DW_FORM_strx3:
19005 case DW_FORM_strx4:
19006 case DW_FORM_GNU_str_index:
19007 {
19008 unsigned int str_index = DW_UNSND (attr);
19009 if (reader->dwo_file != NULL)
19010 {
19011 DW_STRING (attr) = read_dwo_str_index (reader, str_index);
19012 DW_STRING_IS_CANONICAL (attr) = 0;
19013 }
19014 else
19015 {
19016 DW_STRING (attr) = read_stub_str_index (cu, str_index);
19017 DW_STRING_IS_CANONICAL (attr) = 0;
19018 }
19019 break;
19020 }
19021 default:
19022 gdb_assert_not_reached (_("Unexpected DWARF form."));
19023 }
19024}
19025
a8329558 19026/* Read an attribute value described by an attribute form. */
c906108c 19027
d521ce57 19028static const gdb_byte *
dee91e82
DE
19029read_attribute_value (const struct die_reader_specs *reader,
19030 struct attribute *attr, unsigned form,
18a8505e
AT
19031 LONGEST implicit_const, const gdb_byte *info_ptr,
19032 bool *need_reprocess)
c906108c 19033{
dee91e82 19034 struct dwarf2_cu *cu = reader->cu;
5e22e966 19035 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 19036 struct objfile *objfile = dwarf2_per_objfile->objfile;
dee91e82 19037 bfd *abfd = reader->abfd;
e7c27a73 19038 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19039 unsigned int bytes_read;
19040 struct dwarf_block *blk;
18a8505e 19041 *need_reprocess = false;
c906108c 19042
aead7601 19043 attr->form = (enum dwarf_form) form;
a8329558 19044 switch (form)
c906108c 19045 {
c906108c 19046 case DW_FORM_ref_addr:
ae411497 19047 if (cu->header.version == 2)
c8a7a66f
TT
19048 DW_UNSND (attr) = cu->header.read_address (abfd, info_ptr,
19049 &bytes_read);
ae411497 19050 else
8266302d
TT
19051 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr,
19052 &bytes_read);
ae411497
TT
19053 info_ptr += bytes_read;
19054 break;
36586728 19055 case DW_FORM_GNU_ref_alt:
8266302d 19056 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr, &bytes_read);
36586728
TT
19057 info_ptr += bytes_read;
19058 break;
ae411497 19059 case DW_FORM_addr:
08feed99
TT
19060 {
19061 struct gdbarch *gdbarch = objfile->arch ();
19062 DW_ADDR (attr) = cu->header.read_address (abfd, info_ptr, &bytes_read);
19063 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
19064 info_ptr += bytes_read;
19065 }
c906108c
SS
19066 break;
19067 case DW_FORM_block2:
7b5a2f43 19068 blk = dwarf_alloc_block (cu);
c906108c
SS
19069 blk->size = read_2_bytes (abfd, info_ptr);
19070 info_ptr += 2;
19071 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19072 info_ptr += blk->size;
19073 DW_BLOCK (attr) = blk;
19074 break;
19075 case DW_FORM_block4:
7b5a2f43 19076 blk = dwarf_alloc_block (cu);
c906108c
SS
19077 blk->size = read_4_bytes (abfd, info_ptr);
19078 info_ptr += 4;
19079 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19080 info_ptr += blk->size;
19081 DW_BLOCK (attr) = blk;
19082 break;
19083 case DW_FORM_data2:
19084 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
19085 info_ptr += 2;
19086 break;
19087 case DW_FORM_data4:
19088 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
19089 info_ptr += 4;
19090 break;
19091 case DW_FORM_data8:
19092 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
19093 info_ptr += 8;
19094 break;
0224619f
JK
19095 case DW_FORM_data16:
19096 blk = dwarf_alloc_block (cu);
19097 blk->size = 16;
19098 blk->data = read_n_bytes (abfd, info_ptr, 16);
19099 info_ptr += 16;
19100 DW_BLOCK (attr) = blk;
19101 break;
2dc7f7b3 19102 case DW_FORM_sec_offset:
8266302d 19103 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr, &bytes_read);
2dc7f7b3
TT
19104 info_ptr += bytes_read;
19105 break;
41144253 19106 case DW_FORM_loclistx:
19107 {
19108 *need_reprocess = true;
19109 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19110 info_ptr += bytes_read;
19111 }
19112 break;
c906108c 19113 case DW_FORM_string:
9b1c24c8 19114 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
8285870a 19115 DW_STRING_IS_CANONICAL (attr) = 0;
c906108c
SS
19116 info_ptr += bytes_read;
19117 break;
4bdf3d34 19118 case DW_FORM_strp:
36586728
TT
19119 if (!cu->per_cu->is_dwz)
19120 {
ed2dc618
SM
19121 DW_STRING (attr) = read_indirect_string (dwarf2_per_objfile,
19122 abfd, info_ptr, cu_header,
36586728
TT
19123 &bytes_read);
19124 DW_STRING_IS_CANONICAL (attr) = 0;
19125 info_ptr += bytes_read;
19126 break;
19127 }
19128 /* FALLTHROUGH */
43988095
JK
19129 case DW_FORM_line_strp:
19130 if (!cu->per_cu->is_dwz)
19131 {
86c0bb4c
TT
19132 DW_STRING (attr)
19133 = dwarf2_per_objfile->read_line_string (info_ptr, cu_header,
19134 &bytes_read);
43988095
JK
19135 DW_STRING_IS_CANONICAL (attr) = 0;
19136 info_ptr += bytes_read;
19137 break;
19138 }
19139 /* FALLTHROUGH */
36586728
TT
19140 case DW_FORM_GNU_strp_alt:
19141 {
c3699833 19142 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
8266302d
TT
19143 LONGEST str_offset = cu_header->read_offset (abfd, info_ptr,
19144 &bytes_read);
36586728 19145
0314b390 19146 DW_STRING (attr) = dwz->read_string (objfile, str_offset);
36586728
TT
19147 DW_STRING_IS_CANONICAL (attr) = 0;
19148 info_ptr += bytes_read;
19149 }
4bdf3d34 19150 break;
2dc7f7b3 19151 case DW_FORM_exprloc:
c906108c 19152 case DW_FORM_block:
7b5a2f43 19153 blk = dwarf_alloc_block (cu);
c906108c
SS
19154 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19155 info_ptr += bytes_read;
19156 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19157 info_ptr += blk->size;
19158 DW_BLOCK (attr) = blk;
19159 break;
19160 case DW_FORM_block1:
7b5a2f43 19161 blk = dwarf_alloc_block (cu);
c906108c
SS
19162 blk->size = read_1_byte (abfd, info_ptr);
19163 info_ptr += 1;
19164 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19165 info_ptr += blk->size;
19166 DW_BLOCK (attr) = blk;
19167 break;
19168 case DW_FORM_data1:
19169 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19170 info_ptr += 1;
19171 break;
19172 case DW_FORM_flag:
19173 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19174 info_ptr += 1;
19175 break;
2dc7f7b3
TT
19176 case DW_FORM_flag_present:
19177 DW_UNSND (attr) = 1;
19178 break;
c906108c
SS
19179 case DW_FORM_sdata:
19180 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19181 info_ptr += bytes_read;
19182 break;
19183 case DW_FORM_udata:
18a8505e 19184 case DW_FORM_rnglistx:
c906108c
SS
19185 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19186 info_ptr += bytes_read;
19187 break;
19188 case DW_FORM_ref1:
9c541725 19189 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19190 + read_1_byte (abfd, info_ptr));
c906108c
SS
19191 info_ptr += 1;
19192 break;
19193 case DW_FORM_ref2:
9c541725 19194 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19195 + read_2_bytes (abfd, info_ptr));
c906108c
SS
19196 info_ptr += 2;
19197 break;
19198 case DW_FORM_ref4:
9c541725 19199 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19200 + read_4_bytes (abfd, info_ptr));
c906108c
SS
19201 info_ptr += 4;
19202 break;
613e1657 19203 case DW_FORM_ref8:
9c541725 19204 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19205 + read_8_bytes (abfd, info_ptr));
613e1657
KB
19206 info_ptr += 8;
19207 break;
55f1336d 19208 case DW_FORM_ref_sig8:
ac9ec31b 19209 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
348e048f
DE
19210 info_ptr += 8;
19211 break;
c906108c 19212 case DW_FORM_ref_udata:
9c541725 19213 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19214 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
19215 info_ptr += bytes_read;
19216 break;
c906108c 19217 case DW_FORM_indirect:
a8329558
KW
19218 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19219 info_ptr += bytes_read;
43988095
JK
19220 if (form == DW_FORM_implicit_const)
19221 {
19222 implicit_const = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19223 info_ptr += bytes_read;
19224 }
19225 info_ptr = read_attribute_value (reader, attr, form, implicit_const,
18a8505e 19226 info_ptr, need_reprocess);
43988095
JK
19227 break;
19228 case DW_FORM_implicit_const:
19229 DW_SND (attr) = implicit_const;
a8329558 19230 break;
336d760d 19231 case DW_FORM_addrx:
3019eac3 19232 case DW_FORM_GNU_addr_index:
18a8505e
AT
19233 *need_reprocess = true;
19234 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
3019eac3
DE
19235 info_ptr += bytes_read;
19236 break;
cf532bd1 19237 case DW_FORM_strx:
15f18d14
AT
19238 case DW_FORM_strx1:
19239 case DW_FORM_strx2:
19240 case DW_FORM_strx3:
19241 case DW_FORM_strx4:
3019eac3 19242 case DW_FORM_GNU_str_index:
3019eac3 19243 {
15f18d14
AT
19244 ULONGEST str_index;
19245 if (form == DW_FORM_strx1)
19246 {
19247 str_index = read_1_byte (abfd, info_ptr);
19248 info_ptr += 1;
19249 }
19250 else if (form == DW_FORM_strx2)
19251 {
19252 str_index = read_2_bytes (abfd, info_ptr);
19253 info_ptr += 2;
19254 }
19255 else if (form == DW_FORM_strx3)
19256 {
19257 str_index = read_3_bytes (abfd, info_ptr);
19258 info_ptr += 3;
19259 }
19260 else if (form == DW_FORM_strx4)
19261 {
19262 str_index = read_4_bytes (abfd, info_ptr);
19263 info_ptr += 4;
19264 }
19265 else
19266 {
19267 str_index = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19268 info_ptr += bytes_read;
19269 }
18a8505e
AT
19270 *need_reprocess = true;
19271 DW_UNSND (attr) = str_index;
19272 }
3019eac3 19273 break;
c906108c 19274 default:
8a3fe4f8 19275 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
19276 dwarf_form_name (form),
19277 bfd_get_filename (abfd));
c906108c 19278 }
28e94949 19279
36586728 19280 /* Super hack. */
cd6c91b4 19281 if (cu->per_cu->is_dwz && attr->form_is_ref ())
36586728
TT
19282 attr->form = DW_FORM_GNU_ref_alt;
19283
28e94949
JB
19284 /* We have seen instances where the compiler tried to emit a byte
19285 size attribute of -1 which ended up being encoded as an unsigned
19286 0xffffffff. Although 0xffffffff is technically a valid size value,
19287 an object of this size seems pretty unlikely so we can relatively
19288 safely treat these cases as if the size attribute was invalid and
19289 treat them as zero by default. */
19290 if (attr->name == DW_AT_byte_size
19291 && form == DW_FORM_data4
19292 && DW_UNSND (attr) >= 0xffffffff)
01c66ae6
JB
19293 {
19294 complaint
b98664d3 19295 (_("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
43bbcdc2 19296 hex_string (DW_UNSND (attr)));
01c66ae6
JB
19297 DW_UNSND (attr) = 0;
19298 }
28e94949 19299
c906108c
SS
19300 return info_ptr;
19301}
19302
a8329558
KW
19303/* Read an attribute described by an abbreviated attribute. */
19304
d521ce57 19305static const gdb_byte *
dee91e82
DE
19306read_attribute (const struct die_reader_specs *reader,
19307 struct attribute *attr, struct attr_abbrev *abbrev,
18a8505e 19308 const gdb_byte *info_ptr, bool *need_reprocess)
a8329558
KW
19309{
19310 attr->name = abbrev->name;
43988095 19311 return read_attribute_value (reader, attr, abbrev->form,
18a8505e
AT
19312 abbrev->implicit_const, info_ptr,
19313 need_reprocess);
a8329558
KW
19314}
19315
43988095
JK
19316/* Return pointer to string at .debug_str offset STR_OFFSET. */
19317
19318static const char *
ed2dc618 19319read_indirect_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
4f44ae6c 19320 LONGEST str_offset)
43988095 19321{
5989a64e
SM
19322 return dwarf2_per_objfile->per_bfd->str.read_string
19323 (dwarf2_per_objfile->objfile, str_offset, "DW_FORM_strp");
c906108c
SS
19324}
19325
43988095
JK
19326/* Return pointer to string at .debug_str offset as read from BUF.
19327 BUF is assumed to be in a compilation unit described by CU_HEADER.
19328 Return *BYTES_READ_PTR count of bytes read from BUF. */
19329
d521ce57 19330static const char *
ed2dc618
SM
19331read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
19332 const gdb_byte *buf,
cf2c3c16
TT
19333 const struct comp_unit_head *cu_header,
19334 unsigned int *bytes_read_ptr)
19335{
8266302d 19336 LONGEST str_offset = cu_header->read_offset (abfd, buf, bytes_read_ptr);
cf2c3c16 19337
4f44ae6c 19338 return read_indirect_string_at_offset (dwarf2_per_objfile, str_offset);
cf2c3c16
TT
19339}
19340
86c0bb4c 19341/* See read.h. */
43988095 19342
86c0bb4c
TT
19343const char *
19344dwarf2_per_objfile::read_line_string (const gdb_byte *buf,
5989a64e
SM
19345 const struct comp_unit_head *cu_header,
19346 unsigned int *bytes_read_ptr)
43988095 19347{
86c0bb4c 19348 bfd *abfd = objfile->obfd;
8266302d 19349 LONGEST str_offset = cu_header->read_offset (abfd, buf, bytes_read_ptr);
43988095 19350
5989a64e 19351 return per_bfd->line_str.read_string (objfile, str_offset, "DW_FORM_line_strp");
43988095
JK
19352}
19353
3019eac3 19354/* Given index ADDR_INDEX in .debug_addr, fetch the value.
18a8505e 19355 ADDR_BASE is the DW_AT_addr_base (DW_AT_GNU_addr_base) attribute or zero.
3019eac3
DE
19356 ADDR_SIZE is the size of addresses from the CU header. */
19357
19358static CORE_ADDR
ed2dc618 19359read_addr_index_1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
18a8505e
AT
19360 unsigned int addr_index, gdb::optional<ULONGEST> addr_base,
19361 int addr_size)
3019eac3
DE
19362{
19363 struct objfile *objfile = dwarf2_per_objfile->objfile;
19364 bfd *abfd = objfile->obfd;
19365 const gdb_byte *info_ptr;
18a8505e 19366 ULONGEST addr_base_or_zero = addr_base.has_value () ? *addr_base : 0;
3019eac3 19367
5989a64e
SM
19368 dwarf2_per_objfile->per_bfd->addr.read (objfile);
19369 if (dwarf2_per_objfile->per_bfd->addr.buffer == NULL)
3019eac3 19370 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
4262abfb 19371 objfile_name (objfile));
18a8505e 19372 if (addr_base_or_zero + addr_index * addr_size
5989a64e 19373 >= dwarf2_per_objfile->per_bfd->addr.size)
3019eac3
DE
19374 error (_("DW_FORM_addr_index pointing outside of "
19375 ".debug_addr section [in module %s]"),
4262abfb 19376 objfile_name (objfile));
5989a64e 19377 info_ptr = (dwarf2_per_objfile->per_bfd->addr.buffer
18a8505e 19378 + addr_base_or_zero + addr_index * addr_size);
3019eac3
DE
19379 if (addr_size == 4)
19380 return bfd_get_32 (abfd, info_ptr);
19381 else
19382 return bfd_get_64 (abfd, info_ptr);
19383}
19384
19385/* Given index ADDR_INDEX in .debug_addr, fetch the value. */
19386
19387static CORE_ADDR
19388read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
19389{
5e22e966 19390 return read_addr_index_1 (cu->per_objfile, addr_index,
518817b3 19391 cu->addr_base, cu->header.addr_size);
3019eac3
DE
19392}
19393
19394/* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
19395
19396static CORE_ADDR
d521ce57 19397read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
3019eac3
DE
19398 unsigned int *bytes_read)
19399{
5e22e966 19400 bfd *abfd = cu->per_objfile->objfile->obfd;
3019eac3
DE
19401 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
19402
19403 return read_addr_index (cu, addr_index);
19404}
19405
450a1bfc 19406/* See read.h. */
3019eac3
DE
19407
19408CORE_ADDR
82ca3f51
SM
19409dwarf2_read_addr_index (dwarf2_per_cu_data *per_cu,
19410 dwarf2_per_objfile *dwarf2_per_objfile,
19411 unsigned int addr_index)
3019eac3 19412{
3019eac3 19413 struct dwarf2_cu *cu = per_cu->cu;
18a8505e 19414 gdb::optional<ULONGEST> addr_base;
3019eac3
DE
19415 int addr_size;
19416
3019eac3
DE
19417 /* We need addr_base and addr_size.
19418 If we don't have PER_CU->cu, we have to get it.
19419 Nasty, but the alternative is storing the needed info in PER_CU,
19420 which at this point doesn't seem justified: it's not clear how frequently
19421 it would get used and it would increase the size of every PER_CU.
19422 Entry points like dwarf2_per_cu_addr_size do a similar thing
19423 so we're not in uncharted territory here.
19424 Alas we need to be a bit more complicated as addr_base is contained
19425 in the DIE.
19426
19427 We don't need to read the entire CU(/TU).
19428 We just need the header and top level die.
a1b64ce1 19429
3019eac3 19430 IWBN to use the aging mechanism to let us lazily later discard the CU.
a1b64ce1 19431 For now we skip this optimization. */
3019eac3
DE
19432
19433 if (cu != NULL)
19434 {
19435 addr_base = cu->addr_base;
19436 addr_size = cu->header.addr_size;
19437 }
19438 else
19439 {
ab432490 19440 cutu_reader reader (per_cu, dwarf2_per_objfile, NULL, 0, false);
c0ab21c2
TT
19441 addr_base = reader.cu->addr_base;
19442 addr_size = reader.cu->header.addr_size;
3019eac3
DE
19443 }
19444
ed2dc618
SM
19445 return read_addr_index_1 (dwarf2_per_objfile, addr_index, addr_base,
19446 addr_size);
3019eac3
DE
19447}
19448
18a8505e
AT
19449/* Given a DW_FORM_GNU_str_index value STR_INDEX, fetch the string.
19450 STR_SECTION, STR_OFFSETS_SECTION can be from a Fission stub or a
19451 DWO file. */
3019eac3 19452
d521ce57 19453static const char *
18a8505e
AT
19454read_str_index (struct dwarf2_cu *cu,
19455 struct dwarf2_section_info *str_section,
19456 struct dwarf2_section_info *str_offsets_section,
19457 ULONGEST str_offsets_base, ULONGEST str_index)
3019eac3 19458{
5e22e966 19459 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
3019eac3 19460 struct objfile *objfile = dwarf2_per_objfile->objfile;
c5164cbc 19461 const char *objf_name = objfile_name (objfile);
3019eac3 19462 bfd *abfd = objfile->obfd;
d521ce57 19463 const gdb_byte *info_ptr;
3019eac3 19464 ULONGEST str_offset;
cf532bd1 19465 static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";
3019eac3 19466
96b79293
TT
19467 str_section->read (objfile);
19468 str_offsets_section->read (objfile);
73869dc2 19469 if (str_section->buffer == NULL)
18a8505e 19470 error (_("%s used without %s section"
9d8780f0 19471 " in CU at offset %s [in module %s]"),
96b79293 19472 form_name, str_section->get_name (),
18a8505e 19473 sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19474 if (str_offsets_section->buffer == NULL)
18a8505e 19475 error (_("%s used without %s section"
9d8780f0 19476 " in CU at offset %s [in module %s]"),
96b79293 19477 form_name, str_section->get_name (),
18a8505e 19478 sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19479 info_ptr = (str_offsets_section->buffer
18a8505e 19480 + str_offsets_base
3019eac3
DE
19481 + str_index * cu->header.offset_size);
19482 if (cu->header.offset_size == 4)
19483 str_offset = bfd_get_32 (abfd, info_ptr);
19484 else
19485 str_offset = bfd_get_64 (abfd, info_ptr);
73869dc2 19486 if (str_offset >= str_section->size)
57d63ce2 19487 error (_("Offset from %s pointing outside of"
9d8780f0
SM
19488 " .debug_str.dwo section in CU at offset %s [in module %s]"),
19489 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19490 return (const char *) (str_section->buffer + str_offset);
3019eac3
DE
19491}
19492
18a8505e
AT
19493/* Given a DW_FORM_GNU_str_index from a DWO file, fetch the string. */
19494
19495static const char *
19496read_dwo_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
19497{
19498 ULONGEST str_offsets_base = reader->cu->header.version >= 5
19499 ? reader->cu->header.addr_size : 0;
19500 return read_str_index (reader->cu,
19501 &reader->dwo_file->sections.str,
19502 &reader->dwo_file->sections.str_offsets,
19503 str_offsets_base, str_index);
19504}
19505
19506/* Given a DW_FORM_GNU_str_index from a Fission stub, fetch the string. */
19507
19508static const char *
19509read_stub_str_index (struct dwarf2_cu *cu, ULONGEST str_index)
19510{
5e22e966 19511 struct objfile *objfile = cu->per_objfile->objfile;
18a8505e
AT
19512 const char *objf_name = objfile_name (objfile);
19513 static const char form_name[] = "DW_FORM_GNU_str_index";
19514 static const char str_offsets_attr_name[] = "DW_AT_str_offsets";
19515
19516 if (!cu->str_offsets_base.has_value ())
19517 error (_("%s used in Fission stub without %s"
19518 " in CU at offset 0x%lx [in module %s]"),
19519 form_name, str_offsets_attr_name,
19520 (long) cu->header.offset_size, objf_name);
19521
19522 return read_str_index (cu,
5e22e966
SM
19523 &cu->per_objfile->per_bfd->str,
19524 &cu->per_objfile->per_bfd->str_offsets,
18a8505e
AT
19525 *cu->str_offsets_base, str_index);
19526}
19527
3019eac3
DE
19528/* Return the length of an LEB128 number in BUF. */
19529
19530static int
19531leb128_size (const gdb_byte *buf)
19532{
19533 const gdb_byte *begin = buf;
19534 gdb_byte byte;
19535
19536 while (1)
19537 {
19538 byte = *buf++;
19539 if ((byte & 128) == 0)
19540 return buf - begin;
19541 }
19542}
19543
c906108c 19544static void
e142c38c 19545set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
19546{
19547 switch (lang)
19548 {
19549 case DW_LANG_C89:
76bee0cc 19550 case DW_LANG_C99:
0cfd832f 19551 case DW_LANG_C11:
c906108c 19552 case DW_LANG_C:
d1be3247 19553 case DW_LANG_UPC:
e142c38c 19554 cu->language = language_c;
c906108c 19555 break;
9c37b5ae 19556 case DW_LANG_Java:
c906108c 19557 case DW_LANG_C_plus_plus:
0cfd832f
MW
19558 case DW_LANG_C_plus_plus_11:
19559 case DW_LANG_C_plus_plus_14:
e142c38c 19560 cu->language = language_cplus;
c906108c 19561 break;
6aecb9c2
JB
19562 case DW_LANG_D:
19563 cu->language = language_d;
19564 break;
c906108c
SS
19565 case DW_LANG_Fortran77:
19566 case DW_LANG_Fortran90:
b21b22e0 19567 case DW_LANG_Fortran95:
f7de9aab
MW
19568 case DW_LANG_Fortran03:
19569 case DW_LANG_Fortran08:
e142c38c 19570 cu->language = language_fortran;
c906108c 19571 break;
a766d390
DE
19572 case DW_LANG_Go:
19573 cu->language = language_go;
19574 break;
c906108c 19575 case DW_LANG_Mips_Assembler:
e142c38c 19576 cu->language = language_asm;
c906108c
SS
19577 break;
19578 case DW_LANG_Ada83:
8aaf0b47 19579 case DW_LANG_Ada95:
bc5f45f8
JB
19580 cu->language = language_ada;
19581 break;
72019c9c
GM
19582 case DW_LANG_Modula2:
19583 cu->language = language_m2;
19584 break;
fe8e67fd
PM
19585 case DW_LANG_Pascal83:
19586 cu->language = language_pascal;
19587 break;
22566fbd
DJ
19588 case DW_LANG_ObjC:
19589 cu->language = language_objc;
19590 break;
c44af4eb
TT
19591 case DW_LANG_Rust:
19592 case DW_LANG_Rust_old:
19593 cu->language = language_rust;
19594 break;
c906108c
SS
19595 case DW_LANG_Cobol74:
19596 case DW_LANG_Cobol85:
c906108c 19597 default:
e142c38c 19598 cu->language = language_minimal;
c906108c
SS
19599 break;
19600 }
e142c38c 19601 cu->language_defn = language_def (cu->language);
c906108c
SS
19602}
19603
19604/* Return the named attribute or NULL if not there. */
19605
19606static struct attribute *
e142c38c 19607dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c 19608{
a48e046c 19609 for (;;)
c906108c 19610 {
a48e046c
TT
19611 unsigned int i;
19612 struct attribute *spec = NULL;
19613
19614 for (i = 0; i < die->num_attrs; ++i)
19615 {
19616 if (die->attrs[i].name == name)
19617 return &die->attrs[i];
19618 if (die->attrs[i].name == DW_AT_specification
19619 || die->attrs[i].name == DW_AT_abstract_origin)
19620 spec = &die->attrs[i];
19621 }
19622
19623 if (!spec)
19624 break;
c906108c 19625
f2f0e013 19626 die = follow_die_ref (die, spec, &cu);
f2f0e013 19627 }
c5aa993b 19628
c906108c
SS
19629 return NULL;
19630}
19631
7d45c7c3
KB
19632/* Return the string associated with a string-typed attribute, or NULL if it
19633 is either not found or is of an incorrect type. */
19634
19635static const char *
19636dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
19637{
19638 struct attribute *attr;
19639 const char *str = NULL;
19640
19641 attr = dwarf2_attr (die, name, cu);
19642
19643 if (attr != NULL)
19644 {
e61108c9
TT
19645 str = attr->value_as_string ();
19646 if (str == nullptr)
b98664d3 19647 complaint (_("string type expected for attribute %s for "
9d8780f0
SM
19648 "DIE at %s in module %s"),
19649 dwarf_attr_name (name), sect_offset_str (die->sect_off),
5e22e966 19650 objfile_name (cu->per_objfile->objfile));
7d45c7c3
KB
19651 }
19652
19653 return str;
19654}
19655
a084a2a6 19656/* Return the dwo name or NULL if not present. If present, it is in either
85102364 19657 DW_AT_GNU_dwo_name or DW_AT_dwo_name attribute. */
a084a2a6
AT
19658static const char *
19659dwarf2_dwo_name (struct die_info *die, struct dwarf2_cu *cu)
19660{
19661 const char *dwo_name = dwarf2_string_attr (die, DW_AT_GNU_dwo_name, cu);
19662 if (dwo_name == nullptr)
19663 dwo_name = dwarf2_string_attr (die, DW_AT_dwo_name, cu);
19664 return dwo_name;
19665}
19666
05cf31d1
JB
19667/* Return non-zero iff the attribute NAME is defined for the given DIE,
19668 and holds a non-zero value. This function should only be used for
2dc7f7b3 19669 DW_FORM_flag or DW_FORM_flag_present attributes. */
05cf31d1
JB
19670
19671static int
19672dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
19673{
19674 struct attribute *attr = dwarf2_attr (die, name, cu);
19675
19676 return (attr && DW_UNSND (attr));
19677}
19678
3ca72b44 19679static int
e142c38c 19680die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 19681{
05cf31d1
JB
19682 /* A DIE is a declaration if it has a DW_AT_declaration attribute
19683 which value is non-zero. However, we have to be careful with
19684 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
19685 (via dwarf2_flag_true_p) follows this attribute. So we may
19686 end up accidently finding a declaration attribute that belongs
19687 to a different DIE referenced by the specification attribute,
19688 even though the given DIE does not have a declaration attribute. */
19689 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
19690 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
19691}
19692
63d06c5c 19693/* Return the die giving the specification for DIE, if there is
f2f0e013 19694 one. *SPEC_CU is the CU containing DIE on input, and the CU
edb3359d
DJ
19695 containing the return value on output. If there is no
19696 specification, but there is an abstract origin, that is
19697 returned. */
63d06c5c
DC
19698
19699static struct die_info *
f2f0e013 19700die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
63d06c5c 19701{
f2f0e013
DJ
19702 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
19703 *spec_cu);
63d06c5c 19704
edb3359d
DJ
19705 if (spec_attr == NULL)
19706 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
19707
63d06c5c
DC
19708 if (spec_attr == NULL)
19709 return NULL;
19710 else
f2f0e013 19711 return follow_die_ref (die, spec_attr, spec_cu);
63d06c5c 19712}
c906108c 19713
527f3840
JK
19714/* Stub for free_line_header to match void * callback types. */
19715
19716static void
19717free_line_header_voidp (void *arg)
19718{
9a3c8263 19719 struct line_header *lh = (struct line_header *) arg;
527f3840 19720
fff8551c 19721 delete lh;
527f3840
JK
19722}
19723
83769d0b 19724/* A convenience function to find the proper .debug_line section for a CU. */
36586728
TT
19725
19726static struct dwarf2_section_info *
19727get_debug_line_section (struct dwarf2_cu *cu)
19728{
19729 struct dwarf2_section_info *section;
5e22e966 19730 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
36586728
TT
19731
19732 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
19733 DWO file. */
19734 if (cu->dwo_unit && cu->per_cu->is_debug_types)
19735 section = &cu->dwo_unit->dwo_file->sections.line;
19736 else if (cu->per_cu->is_dwz)
19737 {
c3699833 19738 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile->per_bfd);
36586728
TT
19739
19740 section = &dwz->line;
19741 }
19742 else
5989a64e 19743 section = &dwarf2_per_objfile->per_bfd->line;
36586728
TT
19744
19745 return section;
19746}
19747
debd256d 19748/* Read the statement program header starting at OFFSET in
3019eac3 19749 .debug_line, or .debug_line.dwo. Return a pointer
6502dd73 19750 to a struct line_header, allocated using xmalloc.
cd366ee8
DE
19751 Returns NULL if there is a problem reading the header, e.g., if it
19752 has a version we don't understand.
debd256d
JB
19753
19754 NOTE: the strings in the include directory and file name tables of
3019eac3
DE
19755 the returned object point into the dwarf line section buffer,
19756 and must not be freed. */
ae2de4f8 19757
fff8551c 19758static line_header_up
9c541725 19759dwarf_decode_line_header (sect_offset sect_off, struct dwarf2_cu *cu)
debd256d 19760{
3019eac3 19761 struct dwarf2_section_info *section;
5e22e966 19762 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
3019eac3 19763
36586728 19764 section = get_debug_line_section (cu);
96b79293 19765 section->read (dwarf2_per_objfile->objfile);
3019eac3 19766 if (section->buffer == NULL)
debd256d 19767 {
3019eac3 19768 if (cu->dwo_unit && cu->per_cu->is_debug_types)
b98664d3 19769 complaint (_("missing .debug_line.dwo section"));
3019eac3 19770 else
b98664d3 19771 complaint (_("missing .debug_line section"));
debd256d
JB
19772 return 0;
19773 }
19774
0df7ad3a
TT
19775 return dwarf_decode_line_header (sect_off, cu->per_cu->is_dwz,
19776 dwarf2_per_objfile, section,
19777 &cu->header);
debd256d 19778}
c906108c 19779
c6da4cef 19780/* Subroutine of dwarf_decode_lines to simplify it.
7ba99d21 19781 Return the file name of the psymtab for the given file_entry.
c6da4cef 19782 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
c89b44cd
TT
19783 If space for the result is malloc'd, *NAME_HOLDER will be set.
19784 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
c6da4cef 19785
d521ce57 19786static const char *
7ba99d21 19787psymtab_include_file_name (const struct line_header *lh, const file_entry &fe,
891813be 19788 const dwarf2_psymtab *pst,
c89b44cd
TT
19789 const char *comp_dir,
19790 gdb::unique_xmalloc_ptr<char> *name_holder)
c6da4cef 19791{
d521ce57
TT
19792 const char *include_name = fe.name;
19793 const char *include_name_to_compare = include_name;
72b9f47f 19794 const char *pst_filename;
c6da4cef
DE
19795 int file_is_pst;
19796
8c43009f 19797 const char *dir_name = fe.include_dir (lh);
c6da4cef 19798
c89b44cd 19799 gdb::unique_xmalloc_ptr<char> hold_compare;
c6da4cef
DE
19800 if (!IS_ABSOLUTE_PATH (include_name)
19801 && (dir_name != NULL || comp_dir != NULL))
19802 {
19803 /* Avoid creating a duplicate psymtab for PST.
19804 We do this by comparing INCLUDE_NAME and PST_FILENAME.
19805 Before we do the comparison, however, we need to account
19806 for DIR_NAME and COMP_DIR.
19807 First prepend dir_name (if non-NULL). If we still don't
19808 have an absolute path prepend comp_dir (if non-NULL).
19809 However, the directory we record in the include-file's
19810 psymtab does not contain COMP_DIR (to match the
19811 corresponding symtab(s)).
19812
19813 Example:
19814
19815 bash$ cd /tmp
19816 bash$ gcc -g ./hello.c
19817 include_name = "hello.c"
19818 dir_name = "."
19819 DW_AT_comp_dir = comp_dir = "/tmp"
5f52445b
YQ
19820 DW_AT_name = "./hello.c"
19821
19822 */
c6da4cef
DE
19823
19824 if (dir_name != NULL)
19825 {
c89b44cd
TT
19826 name_holder->reset (concat (dir_name, SLASH_STRING,
19827 include_name, (char *) NULL));
19828 include_name = name_holder->get ();
c6da4cef 19829 include_name_to_compare = include_name;
c6da4cef
DE
19830 }
19831 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
19832 {
c89b44cd
TT
19833 hold_compare.reset (concat (comp_dir, SLASH_STRING,
19834 include_name, (char *) NULL));
19835 include_name_to_compare = hold_compare.get ();
c6da4cef
DE
19836 }
19837 }
19838
19839 pst_filename = pst->filename;
c89b44cd 19840 gdb::unique_xmalloc_ptr<char> copied_name;
c6da4cef
DE
19841 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
19842 {
c89b44cd
TT
19843 copied_name.reset (concat (pst->dirname, SLASH_STRING,
19844 pst_filename, (char *) NULL));
19845 pst_filename = copied_name.get ();
c6da4cef
DE
19846 }
19847
1e3fad37 19848 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
c6da4cef 19849
c6da4cef
DE
19850 if (file_is_pst)
19851 return NULL;
19852 return include_name;
19853}
19854
d9b3de22
DE
19855/* State machine to track the state of the line number program. */
19856
6f77053d 19857class lnp_state_machine
d9b3de22 19858{
6f77053d
PA
19859public:
19860 /* Initialize a machine state for the start of a line number
19861 program. */
804d2729
TT
19862 lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch, line_header *lh,
19863 bool record_lines_p);
6f77053d 19864
8c43009f
PA
19865 file_entry *current_file ()
19866 {
19867 /* lh->file_names is 0-based, but the file name numbers in the
19868 statement program are 1-based. */
6f77053d
PA
19869 return m_line_header->file_name_at (m_file);
19870 }
19871
19872 /* Record the line in the state machine. END_SEQUENCE is true if
19873 we're processing the end of a sequence. */
19874 void record_line (bool end_sequence);
19875
7ab6656f
OJ
19876 /* Check ADDRESS is zero and less than UNRELOCATED_LOWPC and if true
19877 nop-out rest of the lines in this sequence. */
6f77053d
PA
19878 void check_line_address (struct dwarf2_cu *cu,
19879 const gdb_byte *line_ptr,
7ab6656f 19880 CORE_ADDR unrelocated_lowpc, CORE_ADDR address);
6f77053d
PA
19881
19882 void handle_set_discriminator (unsigned int discriminator)
19883 {
19884 m_discriminator = discriminator;
19885 m_line_has_non_zero_discriminator |= discriminator != 0;
19886 }
19887
19888 /* Handle DW_LNE_set_address. */
19889 void handle_set_address (CORE_ADDR baseaddr, CORE_ADDR address)
19890 {
19891 m_op_index = 0;
19892 address += baseaddr;
19893 m_address = gdbarch_adjust_dwarf2_line (m_gdbarch, address, false);
19894 }
19895
19896 /* Handle DW_LNS_advance_pc. */
19897 void handle_advance_pc (CORE_ADDR adjust);
19898
19899 /* Handle a special opcode. */
19900 void handle_special_opcode (unsigned char op_code);
19901
19902 /* Handle DW_LNS_advance_line. */
19903 void handle_advance_line (int line_delta)
19904 {
19905 advance_line (line_delta);
19906 }
19907
19908 /* Handle DW_LNS_set_file. */
19909 void handle_set_file (file_name_index file);
19910
19911 /* Handle DW_LNS_negate_stmt. */
19912 void handle_negate_stmt ()
19913 {
19914 m_is_stmt = !m_is_stmt;
19915 }
19916
19917 /* Handle DW_LNS_const_add_pc. */
19918 void handle_const_add_pc ();
19919
19920 /* Handle DW_LNS_fixed_advance_pc. */
19921 void handle_fixed_advance_pc (CORE_ADDR addr_adj)
19922 {
19923 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
19924 m_op_index = 0;
19925 }
19926
19927 /* Handle DW_LNS_copy. */
19928 void handle_copy ()
19929 {
19930 record_line (false);
19931 m_discriminator = 0;
19932 }
19933
19934 /* Handle DW_LNE_end_sequence. */
19935 void handle_end_sequence ()
19936 {
804d2729 19937 m_currently_recording_lines = true;
6f77053d
PA
19938 }
19939
19940private:
19941 /* Advance the line by LINE_DELTA. */
19942 void advance_line (int line_delta)
19943 {
19944 m_line += line_delta;
19945
19946 if (line_delta != 0)
19947 m_line_has_non_zero_discriminator = m_discriminator != 0;
8c43009f
PA
19948 }
19949
804d2729
TT
19950 struct dwarf2_cu *m_cu;
19951
6f77053d
PA
19952 gdbarch *m_gdbarch;
19953
19954 /* True if we're recording lines.
19955 Otherwise we're building partial symtabs and are just interested in
19956 finding include files mentioned by the line number program. */
19957 bool m_record_lines_p;
19958
8c43009f 19959 /* The line number header. */
6f77053d 19960 line_header *m_line_header;
8c43009f 19961
6f77053d
PA
19962 /* These are part of the standard DWARF line number state machine,
19963 and initialized according to the DWARF spec. */
d9b3de22 19964
6f77053d 19965 unsigned char m_op_index = 0;
7ba99d21
AT
19966 /* The line table index of the current file. */
19967 file_name_index m_file = 1;
6f77053d
PA
19968 unsigned int m_line = 1;
19969
19970 /* These are initialized in the constructor. */
19971
19972 CORE_ADDR m_address;
19973 bool m_is_stmt;
19974 unsigned int m_discriminator;
d9b3de22
DE
19975
19976 /* Additional bits of state we need to track. */
19977
19978 /* The last file that we called dwarf2_start_subfile for.
19979 This is only used for TLLs. */
6f77053d 19980 unsigned int m_last_file = 0;
d9b3de22 19981 /* The last file a line number was recorded for. */
6f77053d 19982 struct subfile *m_last_subfile = NULL;
d9b3de22 19983
804d2729
TT
19984 /* When true, record the lines we decode. */
19985 bool m_currently_recording_lines = false;
d9b3de22
DE
19986
19987 /* The last line number that was recorded, used to coalesce
19988 consecutive entries for the same line. This can happen, for
19989 example, when discriminators are present. PR 17276. */
6f77053d
PA
19990 unsigned int m_last_line = 0;
19991 bool m_line_has_non_zero_discriminator = false;
8c43009f 19992};
d9b3de22 19993
6f77053d
PA
19994void
19995lnp_state_machine::handle_advance_pc (CORE_ADDR adjust)
19996{
19997 CORE_ADDR addr_adj = (((m_op_index + adjust)
19998 / m_line_header->maximum_ops_per_instruction)
19999 * m_line_header->minimum_instruction_length);
20000 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20001 m_op_index = ((m_op_index + adjust)
20002 % m_line_header->maximum_ops_per_instruction);
20003}
d9b3de22 20004
6f77053d
PA
20005void
20006lnp_state_machine::handle_special_opcode (unsigned char op_code)
d9b3de22 20007{
6f77053d 20008 unsigned char adj_opcode = op_code - m_line_header->opcode_base;
258bf0ee
RB
20009 unsigned char adj_opcode_d = adj_opcode / m_line_header->line_range;
20010 unsigned char adj_opcode_r = adj_opcode % m_line_header->line_range;
20011 CORE_ADDR addr_adj = (((m_op_index + adj_opcode_d)
6f77053d
PA
20012 / m_line_header->maximum_ops_per_instruction)
20013 * m_line_header->minimum_instruction_length);
20014 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
258bf0ee 20015 m_op_index = ((m_op_index + adj_opcode_d)
6f77053d 20016 % m_line_header->maximum_ops_per_instruction);
d9b3de22 20017
258bf0ee 20018 int line_delta = m_line_header->line_base + adj_opcode_r;
6f77053d
PA
20019 advance_line (line_delta);
20020 record_line (false);
20021 m_discriminator = 0;
20022}
d9b3de22 20023
6f77053d
PA
20024void
20025lnp_state_machine::handle_set_file (file_name_index file)
20026{
20027 m_file = file;
20028
20029 const file_entry *fe = current_file ();
20030 if (fe == NULL)
20031 dwarf2_debug_line_missing_file_complaint ();
20032 else if (m_record_lines_p)
20033 {
20034 const char *dir = fe->include_dir (m_line_header);
20035
c24bdb02 20036 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20037 m_line_has_non_zero_discriminator = m_discriminator != 0;
804d2729 20038 dwarf2_start_subfile (m_cu, fe->name, dir);
6f77053d
PA
20039 }
20040}
20041
20042void
20043lnp_state_machine::handle_const_add_pc ()
20044{
20045 CORE_ADDR adjust
20046 = (255 - m_line_header->opcode_base) / m_line_header->line_range;
20047
20048 CORE_ADDR addr_adj
20049 = (((m_op_index + adjust)
20050 / m_line_header->maximum_ops_per_instruction)
20051 * m_line_header->minimum_instruction_length);
20052
20053 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20054 m_op_index = ((m_op_index + adjust)
20055 % m_line_header->maximum_ops_per_instruction);
20056}
d9b3de22 20057
a05a36a5
DE
20058/* Return non-zero if we should add LINE to the line number table.
20059 LINE is the line to add, LAST_LINE is the last line that was added,
20060 LAST_SUBFILE is the subfile for LAST_LINE.
20061 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
20062 had a non-zero discriminator.
20063
20064 We have to be careful in the presence of discriminators.
20065 E.g., for this line:
20066
20067 for (i = 0; i < 100000; i++);
20068
20069 clang can emit four line number entries for that one line,
20070 each with a different discriminator.
20071 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
20072
20073 However, we want gdb to coalesce all four entries into one.
20074 Otherwise the user could stepi into the middle of the line and
20075 gdb would get confused about whether the pc really was in the
20076 middle of the line.
20077
20078 Things are further complicated by the fact that two consecutive
20079 line number entries for the same line is a heuristic used by gcc
20080 to denote the end of the prologue. So we can't just discard duplicate
20081 entries, we have to be selective about it. The heuristic we use is
20082 that we only collapse consecutive entries for the same line if at least
20083 one of those entries has a non-zero discriminator. PR 17276.
20084
20085 Note: Addresses in the line number state machine can never go backwards
20086 within one sequence, thus this coalescing is ok. */
20087
20088static int
804d2729
TT
20089dwarf_record_line_p (struct dwarf2_cu *cu,
20090 unsigned int line, unsigned int last_line,
a05a36a5
DE
20091 int line_has_non_zero_discriminator,
20092 struct subfile *last_subfile)
20093{
c24bdb02 20094 if (cu->get_builder ()->get_current_subfile () != last_subfile)
a05a36a5
DE
20095 return 1;
20096 if (line != last_line)
20097 return 1;
20098 /* Same line for the same file that we've seen already.
20099 As a last check, for pr 17276, only record the line if the line
20100 has never had a non-zero discriminator. */
20101 if (!line_has_non_zero_discriminator)
20102 return 1;
20103 return 0;
20104}
20105
804d2729
TT
20106/* Use the CU's builder to record line number LINE beginning at
20107 address ADDRESS in the line table of subfile SUBFILE. */
252a6764
DE
20108
20109static void
d9b3de22 20110dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
8c95582d 20111 unsigned int line, CORE_ADDR address, bool is_stmt,
804d2729 20112 struct dwarf2_cu *cu)
252a6764
DE
20113{
20114 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
20115
27e0867f
DE
20116 if (dwarf_line_debug)
20117 {
20118 fprintf_unfiltered (gdb_stdlog,
20119 "Recording line %u, file %s, address %s\n",
20120 line, lbasename (subfile->name),
20121 paddress (gdbarch, address));
20122 }
20123
804d2729 20124 if (cu != nullptr)
8c95582d 20125 cu->get_builder ()->record_line (subfile, line, addr, is_stmt);
252a6764
DE
20126}
20127
20128/* Subroutine of dwarf_decode_lines_1 to simplify it.
20129 Mark the end of a set of line number records.
d9b3de22 20130 The arguments are the same as for dwarf_record_line_1.
252a6764
DE
20131 If SUBFILE is NULL the request is ignored. */
20132
20133static void
20134dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
804d2729 20135 CORE_ADDR address, struct dwarf2_cu *cu)
252a6764 20136{
27e0867f
DE
20137 if (subfile == NULL)
20138 return;
20139
20140 if (dwarf_line_debug)
20141 {
20142 fprintf_unfiltered (gdb_stdlog,
20143 "Finishing current line, file %s, address %s\n",
20144 lbasename (subfile->name),
20145 paddress (gdbarch, address));
20146 }
20147
8c95582d 20148 dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
d9b3de22
DE
20149}
20150
6f77053d
PA
20151void
20152lnp_state_machine::record_line (bool end_sequence)
d9b3de22 20153{
d9b3de22
DE
20154 if (dwarf_line_debug)
20155 {
20156 fprintf_unfiltered (gdb_stdlog,
20157 "Processing actual line %u: file %u,"
94a72be7 20158 " address %s, is_stmt %u, discrim %u%s\n",
7ba99d21 20159 m_line, m_file,
6f77053d 20160 paddress (m_gdbarch, m_address),
94a72be7
AB
20161 m_is_stmt, m_discriminator,
20162 (end_sequence ? "\t(end sequence)" : ""));
d9b3de22
DE
20163 }
20164
6f77053d 20165 file_entry *fe = current_file ();
8c43009f
PA
20166
20167 if (fe == NULL)
d9b3de22
DE
20168 dwarf2_debug_line_missing_file_complaint ();
20169 /* For now we ignore lines not starting on an instruction boundary.
20170 But not when processing end_sequence for compatibility with the
20171 previous version of the code. */
6f77053d 20172 else if (m_op_index == 0 || end_sequence)
d9b3de22 20173 {
8c43009f 20174 fe->included_p = 1;
8c95582d 20175 if (m_record_lines_p)
d9b3de22 20176 {
c24bdb02 20177 if (m_last_subfile != m_cu->get_builder ()->get_current_subfile ()
804d2729 20178 || end_sequence)
d9b3de22 20179 {
804d2729
TT
20180 dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
20181 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22
DE
20182 }
20183
20184 if (!end_sequence)
20185 {
8c95582d
AB
20186 bool is_stmt = producer_is_codewarrior (m_cu) || m_is_stmt;
20187
804d2729 20188 if (dwarf_record_line_p (m_cu, m_line, m_last_line,
6f77053d
PA
20189 m_line_has_non_zero_discriminator,
20190 m_last_subfile))
d9b3de22 20191 {
c24bdb02 20192 buildsym_compunit *builder = m_cu->get_builder ();
804d2729 20193 dwarf_record_line_1 (m_gdbarch,
c24bdb02 20194 builder->get_current_subfile (),
8c95582d 20195 m_line, m_address, is_stmt,
804d2729 20196 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22 20197 }
c24bdb02 20198 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20199 m_last_line = m_line;
d9b3de22
DE
20200 }
20201 }
20202 }
20203}
20204
804d2729
TT
20205lnp_state_machine::lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch,
20206 line_header *lh, bool record_lines_p)
d9b3de22 20207{
804d2729 20208 m_cu = cu;
6f77053d
PA
20209 m_gdbarch = arch;
20210 m_record_lines_p = record_lines_p;
20211 m_line_header = lh;
d9b3de22 20212
804d2729 20213 m_currently_recording_lines = true;
d9b3de22 20214
d9b3de22
DE
20215 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
20216 was a line entry for it so that the backend has a chance to adjust it
20217 and also record it in case it needs it. This is currently used by MIPS
20218 code, cf. `mips_adjust_dwarf2_line'. */
6f77053d
PA
20219 m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
20220 m_is_stmt = lh->default_is_stmt;
20221 m_discriminator = 0;
252a6764
DE
20222}
20223
6f77053d
PA
20224void
20225lnp_state_machine::check_line_address (struct dwarf2_cu *cu,
20226 const gdb_byte *line_ptr,
7ab6656f 20227 CORE_ADDR unrelocated_lowpc, CORE_ADDR address)
924c2928 20228{
7ab6656f
OJ
20229 /* If ADDRESS < UNRELOCATED_LOWPC then it's not a usable value, it's outside
20230 the pc range of the CU. However, we restrict the test to only ADDRESS
20231 values of zero to preserve GDB's previous behaviour which is to handle
20232 the specific case of a function being GC'd by the linker. */
924c2928 20233
7ab6656f 20234 if (address == 0 && address < unrelocated_lowpc)
924c2928
DE
20235 {
20236 /* This line table is for a function which has been
20237 GCd by the linker. Ignore it. PR gdb/12528 */
20238
5e22e966 20239 struct objfile *objfile = cu->per_objfile->objfile;
924c2928
DE
20240 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
20241
b98664d3 20242 complaint (_(".debug_line address at offset 0x%lx is 0 [in module %s]"),
924c2928 20243 line_offset, objfile_name (objfile));
804d2729
TT
20244 m_currently_recording_lines = false;
20245 /* Note: m_currently_recording_lines is left as false until we see
20246 DW_LNE_end_sequence. */
924c2928
DE
20247 }
20248}
20249
f3f5162e 20250/* Subroutine of dwarf_decode_lines to simplify it.
d9b3de22
DE
20251 Process the line number information in LH.
20252 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
20253 program in order to set included_p for every referenced header. */
debd256d 20254
c906108c 20255static void
43f3e411
DE
20256dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
20257 const int decode_for_pst_p, CORE_ADDR lowpc)
c906108c 20258{
d521ce57
TT
20259 const gdb_byte *line_ptr, *extended_end;
20260 const gdb_byte *line_end;
a8c50c1f 20261 unsigned int bytes_read, extended_len;
699ca60a 20262 unsigned char op_code, extended_op;
e142c38c 20263 CORE_ADDR baseaddr;
5e22e966 20264 struct objfile *objfile = cu->per_objfile->objfile;
f3f5162e 20265 bfd *abfd = objfile->obfd;
08feed99 20266 struct gdbarch *gdbarch = objfile->arch ();
6f77053d
PA
20267 /* True if we're recording line info (as opposed to building partial
20268 symtabs and just interested in finding include files mentioned by
20269 the line number program). */
20270 bool record_lines_p = !decode_for_pst_p;
e142c38c 20271
b3b3bada 20272 baseaddr = objfile->text_section_offset ();
c906108c 20273
debd256d
JB
20274 line_ptr = lh->statement_program_start;
20275 line_end = lh->statement_program_end;
c906108c
SS
20276
20277 /* Read the statement sequences until there's nothing left. */
20278 while (line_ptr < line_end)
20279 {
6f77053d
PA
20280 /* The DWARF line number program state machine. Reset the state
20281 machine at the start of each sequence. */
804d2729 20282 lnp_state_machine state_machine (cu, gdbarch, lh, record_lines_p);
6f77053d 20283 bool end_sequence = false;
d9b3de22 20284
8c43009f 20285 if (record_lines_p)
c906108c 20286 {
8c43009f
PA
20287 /* Start a subfile for the current file of the state
20288 machine. */
20289 const file_entry *fe = state_machine.current_file ();
20290
20291 if (fe != NULL)
804d2729 20292 dwarf2_start_subfile (cu, fe->name, fe->include_dir (lh));
c906108c
SS
20293 }
20294
a738430d 20295 /* Decode the table. */
d9b3de22 20296 while (line_ptr < line_end && !end_sequence)
c906108c
SS
20297 {
20298 op_code = read_1_byte (abfd, line_ptr);
20299 line_ptr += 1;
9aa1fe7e 20300
debd256d 20301 if (op_code >= lh->opcode_base)
6e70227d 20302 {
8e07a239 20303 /* Special opcode. */
6f77053d 20304 state_machine.handle_special_opcode (op_code);
9aa1fe7e
GK
20305 }
20306 else switch (op_code)
c906108c
SS
20307 {
20308 case DW_LNS_extended_op:
3e43a32a
MS
20309 extended_len = read_unsigned_leb128 (abfd, line_ptr,
20310 &bytes_read);
473b7be6 20311 line_ptr += bytes_read;
a8c50c1f 20312 extended_end = line_ptr + extended_len;
c906108c
SS
20313 extended_op = read_1_byte (abfd, line_ptr);
20314 line_ptr += 1;
20315 switch (extended_op)
20316 {
20317 case DW_LNE_end_sequence:
6f77053d
PA
20318 state_machine.handle_end_sequence ();
20319 end_sequence = true;
c906108c
SS
20320 break;
20321 case DW_LNE_set_address:
d9b3de22
DE
20322 {
20323 CORE_ADDR address
c8a7a66f 20324 = cu->header.read_address (abfd, line_ptr, &bytes_read);
d9b3de22 20325 line_ptr += bytes_read;
6f77053d
PA
20326
20327 state_machine.check_line_address (cu, line_ptr,
7ab6656f 20328 lowpc - baseaddr, address);
6f77053d 20329 state_machine.handle_set_address (baseaddr, address);
d9b3de22 20330 }
c906108c
SS
20331 break;
20332 case DW_LNE_define_file:
debd256d 20333 {
d521ce57 20334 const char *cur_file;
ecfb656c
PA
20335 unsigned int mod_time, length;
20336 dir_index dindex;
6e70227d 20337
3e43a32a
MS
20338 cur_file = read_direct_string (abfd, line_ptr,
20339 &bytes_read);
debd256d 20340 line_ptr += bytes_read;
ecfb656c 20341 dindex = (dir_index)
debd256d
JB
20342 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20343 line_ptr += bytes_read;
20344 mod_time =
20345 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20346 line_ptr += bytes_read;
20347 length =
20348 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20349 line_ptr += bytes_read;
ecfb656c 20350 lh->add_file_name (cur_file, dindex, mod_time, length);
debd256d 20351 }
c906108c 20352 break;
d0c6ba3d 20353 case DW_LNE_set_discriminator:
6f77053d
PA
20354 {
20355 /* The discriminator is not interesting to the
20356 debugger; just ignore it. We still need to
20357 check its value though:
20358 if there are consecutive entries for the same
20359 (non-prologue) line we want to coalesce them.
20360 PR 17276. */
20361 unsigned int discr
20362 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20363 line_ptr += bytes_read;
20364
20365 state_machine.handle_set_discriminator (discr);
20366 }
d0c6ba3d 20367 break;
c906108c 20368 default:
b98664d3 20369 complaint (_("mangled .debug_line section"));
debd256d 20370 return;
c906108c 20371 }
a8c50c1f
DJ
20372 /* Make sure that we parsed the extended op correctly. If e.g.
20373 we expected a different address size than the producer used,
20374 we may have read the wrong number of bytes. */
20375 if (line_ptr != extended_end)
20376 {
b98664d3 20377 complaint (_("mangled .debug_line section"));
a8c50c1f
DJ
20378 return;
20379 }
c906108c
SS
20380 break;
20381 case DW_LNS_copy:
6f77053d 20382 state_machine.handle_copy ();
c906108c
SS
20383 break;
20384 case DW_LNS_advance_pc:
2dc7f7b3
TT
20385 {
20386 CORE_ADDR adjust
20387 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
2dc7f7b3 20388 line_ptr += bytes_read;
6f77053d
PA
20389
20390 state_machine.handle_advance_pc (adjust);
2dc7f7b3 20391 }
c906108c
SS
20392 break;
20393 case DW_LNS_advance_line:
a05a36a5
DE
20394 {
20395 int line_delta
20396 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
a05a36a5 20397 line_ptr += bytes_read;
6f77053d
PA
20398
20399 state_machine.handle_advance_line (line_delta);
a05a36a5 20400 }
c906108c
SS
20401 break;
20402 case DW_LNS_set_file:
d9b3de22 20403 {
6f77053d 20404 file_name_index file
ecfb656c
PA
20405 = (file_name_index) read_unsigned_leb128 (abfd, line_ptr,
20406 &bytes_read);
d9b3de22 20407 line_ptr += bytes_read;
8c43009f 20408
6f77053d 20409 state_machine.handle_set_file (file);
d9b3de22 20410 }
c906108c
SS
20411 break;
20412 case DW_LNS_set_column:
0ad93d4f 20413 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
c906108c
SS
20414 line_ptr += bytes_read;
20415 break;
20416 case DW_LNS_negate_stmt:
6f77053d 20417 state_machine.handle_negate_stmt ();
c906108c
SS
20418 break;
20419 case DW_LNS_set_basic_block:
c906108c 20420 break;
c2c6d25f
JM
20421 /* Add to the address register of the state machine the
20422 address increment value corresponding to special opcode
a738430d
MK
20423 255. I.e., this value is scaled by the minimum
20424 instruction length since special opcode 255 would have
b021a221 20425 scaled the increment. */
c906108c 20426 case DW_LNS_const_add_pc:
6f77053d 20427 state_machine.handle_const_add_pc ();
c906108c
SS
20428 break;
20429 case DW_LNS_fixed_advance_pc:
3e29f34a 20430 {
6f77053d 20431 CORE_ADDR addr_adj = read_2_bytes (abfd, line_ptr);
3e29f34a 20432 line_ptr += 2;
6f77053d
PA
20433
20434 state_machine.handle_fixed_advance_pc (addr_adj);
3e29f34a 20435 }
c906108c 20436 break;
9aa1fe7e 20437 default:
a738430d
MK
20438 {
20439 /* Unknown standard opcode, ignore it. */
9aa1fe7e 20440 int i;
a738430d 20441
debd256d 20442 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
20443 {
20444 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20445 line_ptr += bytes_read;
20446 }
20447 }
c906108c
SS
20448 }
20449 }
d9b3de22
DE
20450
20451 if (!end_sequence)
20452 dwarf2_debug_line_missing_end_sequence_complaint ();
20453
20454 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
20455 in which case we still finish recording the last line). */
6f77053d 20456 state_machine.record_line (true);
c906108c 20457 }
f3f5162e
DE
20458}
20459
20460/* Decode the Line Number Program (LNP) for the given line_header
20461 structure and CU. The actual information extracted and the type
20462 of structures created from the LNP depends on the value of PST.
20463
20464 1. If PST is NULL, then this procedure uses the data from the program
20465 to create all necessary symbol tables, and their linetables.
20466
20467 2. If PST is not NULL, this procedure reads the program to determine
20468 the list of files included by the unit represented by PST, and
20469 builds all the associated partial symbol tables.
20470
20471 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
20472 It is used for relative paths in the line table.
20473 NOTE: When processing partial symtabs (pst != NULL),
20474 comp_dir == pst->dirname.
20475
20476 NOTE: It is important that psymtabs have the same file name (via strcmp)
20477 as the corresponding symtab. Since COMP_DIR is not used in the name of the
20478 symtab we don't use it in the name of the psymtabs we create.
20479 E.g. expand_line_sal requires this when finding psymtabs to expand.
c3b7b696
YQ
20480 A good testcase for this is mb-inline.exp.
20481
527f3840
JK
20482 LOWPC is the lowest address in CU (or 0 if not known).
20483
20484 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
20485 for its PC<->lines mapping information. Otherwise only the filename
20486 table is read in. */
f3f5162e
DE
20487
20488static void
20489dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
891813be 20490 struct dwarf2_cu *cu, dwarf2_psymtab *pst,
527f3840 20491 CORE_ADDR lowpc, int decode_mapping)
f3f5162e 20492{
5e22e966 20493 struct objfile *objfile = cu->per_objfile->objfile;
f3f5162e 20494 const int decode_for_pst_p = (pst != NULL);
f3f5162e 20495
527f3840
JK
20496 if (decode_mapping)
20497 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
aaa75496
JB
20498
20499 if (decode_for_pst_p)
20500 {
aaa75496
JB
20501 /* Now that we're done scanning the Line Header Program, we can
20502 create the psymtab of each included file. */
7ba99d21
AT
20503 for (auto &file_entry : lh->file_names ())
20504 if (file_entry.included_p == 1)
aaa75496 20505 {
c89b44cd 20506 gdb::unique_xmalloc_ptr<char> name_holder;
d521ce57 20507 const char *include_name =
7ba99d21
AT
20508 psymtab_include_file_name (lh, file_entry, pst,
20509 comp_dir, &name_holder);
c6da4cef 20510 if (include_name != NULL)
aaa75496
JB
20511 dwarf2_create_include_psymtab (include_name, pst, objfile);
20512 }
20513 }
cb1df416
DJ
20514 else
20515 {
20516 /* Make sure a symtab is created for every file, even files
20517 which contain only variables (i.e. no code with associated
20518 line numbers). */
c24bdb02
KS
20519 buildsym_compunit *builder = cu->get_builder ();
20520 struct compunit_symtab *cust = builder->get_compunit_symtab ();
cb1df416 20521
7ba99d21 20522 for (auto &fe : lh->file_names ())
cb1df416 20523 {
804d2729 20524 dwarf2_start_subfile (cu, fe.name, fe.include_dir (lh));
c24bdb02 20525 if (builder->get_current_subfile ()->symtab == NULL)
43f3e411 20526 {
c24bdb02 20527 builder->get_current_subfile ()->symtab
804d2729 20528 = allocate_symtab (cust,
c24bdb02 20529 builder->get_current_subfile ()->name);
43f3e411 20530 }
c24bdb02 20531 fe.symtab = builder->get_current_subfile ()->symtab;
cb1df416
DJ
20532 }
20533 }
c906108c
SS
20534}
20535
20536/* Start a subfile for DWARF. FILENAME is the name of the file and
20537 DIRNAME the name of the source directory which contains FILENAME
4d663531 20538 or NULL if not known.
c906108c
SS
20539 This routine tries to keep line numbers from identical absolute and
20540 relative file names in a common subfile.
20541
20542 Using the `list' example from the GDB testsuite, which resides in
20543 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
20544 of /srcdir/list0.c yields the following debugging information for list0.c:
20545
c5aa993b 20546 DW_AT_name: /srcdir/list0.c
4d663531 20547 DW_AT_comp_dir: /compdir
357e46e7 20548 files.files[0].name: list0.h
c5aa993b 20549 files.files[0].dir: /srcdir
357e46e7 20550 files.files[1].name: list0.c
c5aa993b 20551 files.files[1].dir: /srcdir
c906108c
SS
20552
20553 The line number information for list0.c has to end up in a single
4f1520fb
FR
20554 subfile, so that `break /srcdir/list0.c:1' works as expected.
20555 start_subfile will ensure that this happens provided that we pass the
20556 concatenation of files.files[1].dir and files.files[1].name as the
20557 subfile's name. */
c906108c
SS
20558
20559static void
804d2729
TT
20560dwarf2_start_subfile (struct dwarf2_cu *cu, const char *filename,
20561 const char *dirname)
c906108c 20562{
43816ebc 20563 gdb::unique_xmalloc_ptr<char> copy;
4f1520fb 20564
4d663531 20565 /* In order not to lose the line information directory,
4f1520fb
FR
20566 we concatenate it to the filename when it makes sense.
20567 Note that the Dwarf3 standard says (speaking of filenames in line
20568 information): ``The directory index is ignored for file names
20569 that represent full path names''. Thus ignoring dirname in the
20570 `else' branch below isn't an issue. */
c906108c 20571
d5166ae1 20572 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
d521ce57 20573 {
43816ebc
TT
20574 copy.reset (concat (dirname, SLASH_STRING, filename, (char *) NULL));
20575 filename = copy.get ();
d521ce57 20576 }
c906108c 20577
c24bdb02 20578 cu->get_builder ()->start_subfile (filename);
c906108c
SS
20579}
20580
804d2729
TT
20581/* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
20582 buildsym_compunit constructor. */
f4dc4d17 20583
c24bdb02
KS
20584struct compunit_symtab *
20585dwarf2_cu::start_symtab (const char *name, const char *comp_dir,
20586 CORE_ADDR low_pc)
f4dc4d17 20587{
c24bdb02 20588 gdb_assert (m_builder == nullptr);
43f3e411 20589
c24bdb02
KS
20590 m_builder.reset (new struct buildsym_compunit
20591 (per_cu->dwarf2_per_objfile->objfile,
20592 name, comp_dir, language, low_pc));
93b8bea4 20593
c24bdb02 20594 list_in_scope = get_builder ()->get_file_symbols ();
804d2729 20595
c24bdb02
KS
20596 get_builder ()->record_debugformat ("DWARF 2");
20597 get_builder ()->record_producer (producer);
f4dc4d17 20598
c24bdb02 20599 processing_has_namespace_info = false;
43f3e411 20600
c24bdb02 20601 return get_builder ()->get_compunit_symtab ();
f4dc4d17
DE
20602}
20603
4c2df51b
DJ
20604static void
20605var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 20606 struct dwarf2_cu *cu)
4c2df51b 20607{
5e22e966 20608 struct objfile *objfile = cu->per_objfile->objfile;
e7c27a73
DJ
20609 struct comp_unit_head *cu_header = &cu->header;
20610
4c2df51b
DJ
20611 /* NOTE drow/2003-01-30: There used to be a comment and some special
20612 code here to turn a symbol with DW_AT_external and a
20613 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
20614 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
20615 with some versions of binutils) where shared libraries could have
20616 relocations against symbols in their debug information - the
20617 minimal symbol would have the right address, but the debug info
20618 would not. It's no longer necessary, because we will explicitly
20619 apply relocations when we read in the debug information now. */
20620
20621 /* A DW_AT_location attribute with no contents indicates that a
20622 variable has been optimized away. */
4fc6c0d5 20623 if (attr->form_is_block () && DW_BLOCK (attr)->size == 0)
4c2df51b 20624 {
f1e6e072 20625 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
4c2df51b
DJ
20626 return;
20627 }
20628
20629 /* Handle one degenerate form of location expression specially, to
20630 preserve GDB's previous behavior when section offsets are
336d760d
AT
20631 specified. If this is just a DW_OP_addr, DW_OP_addrx, or
20632 DW_OP_GNU_addr_index then mark this symbol as LOC_STATIC. */
4c2df51b 20633
4fc6c0d5 20634 if (attr->form_is_block ()
3019eac3
DE
20635 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
20636 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
336d760d
AT
20637 || ((DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
20638 || DW_BLOCK (attr)->data[0] == DW_OP_addrx)
3019eac3
DE
20639 && (DW_BLOCK (attr)->size
20640 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
4c2df51b 20641 {
891d2f0b 20642 unsigned int dummy;
4c2df51b 20643
3019eac3 20644 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
c8a7a66f
TT
20645 SET_SYMBOL_VALUE_ADDRESS
20646 (sym, cu->header.read_address (objfile->obfd,
20647 DW_BLOCK (attr)->data + 1,
20648 &dummy));
3019eac3 20649 else
38583298
TT
20650 SET_SYMBOL_VALUE_ADDRESS
20651 (sym, read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1,
20652 &dummy));
f1e6e072 20653 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
4c2df51b 20654 fixup_symbol_section (sym, objfile);
6a053cb1
TT
20655 SET_SYMBOL_VALUE_ADDRESS
20656 (sym,
20657 SYMBOL_VALUE_ADDRESS (sym)
20658 + objfile->section_offsets[SYMBOL_SECTION (sym)]);
4c2df51b
DJ
20659 return;
20660 }
20661
20662 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
20663 expression evaluator, and use LOC_COMPUTED only when necessary
20664 (i.e. when the value of a register or memory location is
20665 referenced, or a thread-local block, etc.). Then again, it might
20666 not be worthwhile. I'm assuming that it isn't unless performance
20667 or memory numbers show me otherwise. */
20668
f1e6e072 20669 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
8be455d7 20670
f1e6e072 20671 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
9068261f 20672 cu->has_loclist = true;
4c2df51b
DJ
20673}
20674
c906108c
SS
20675/* Given a pointer to a DWARF information entry, figure out if we need
20676 to make a symbol table entry for it, and if so, create a new entry
20677 and return a pointer to it.
20678 If TYPE is NULL, determine symbol type from the die, otherwise
34eaf542
TT
20679 used the passed type.
20680 If SPACE is not NULL, use it to hold the new symbol. If it is
20681 NULL, allocate a new symbol on the objfile's obstack. */
c906108c
SS
20682
20683static struct symbol *
5e2db402
TT
20684new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
20685 struct symbol *space)
c906108c 20686{
5e22e966 20687 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 20688 struct objfile *objfile = dwarf2_per_objfile->objfile;
08feed99 20689 struct gdbarch *gdbarch = objfile->arch ();
c906108c 20690 struct symbol *sym = NULL;
15d034d0 20691 const char *name;
c906108c
SS
20692 struct attribute *attr = NULL;
20693 struct attribute *attr2 = NULL;
e142c38c 20694 CORE_ADDR baseaddr;
e37fd15a
SW
20695 struct pending **list_to_add = NULL;
20696
edb3359d 20697 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
e142c38c 20698
b3b3bada 20699 baseaddr = objfile->text_section_offset ();
c906108c 20700
94af9270 20701 name = dwarf2_name (die, cu);
c906108c
SS
20702 if (name)
20703 {
34eaf542 20704 int suppress_add = 0;
94af9270 20705
34eaf542
TT
20706 if (space)
20707 sym = space;
20708 else
8c14c3a3 20709 sym = new (&objfile->objfile_obstack) symbol;
c906108c 20710 OBJSTAT (objfile, n_syms++);
2de7ced7
DJ
20711
20712 /* Cache this symbol's name and the name's demangled form (if any). */
d3ecddab 20713 sym->set_language (cu->language, &objfile->objfile_obstack);
f55ee35c
JK
20714 /* Fortran does not have mangling standard and the mangling does differ
20715 between gfortran, iFort etc. */
bcfe6157
TT
20716 const char *physname
20717 = (cu->language == language_fortran
20718 ? dwarf2_full_name (name, die, cu)
20719 : dwarf2_physname (name, die, cu));
20720 const char *linkagename = dw2_linkage_name (die, cu);
20721
20722 if (linkagename == nullptr || cu->language == language_ada)
20723 sym->set_linkage_name (physname);
20724 else
20725 {
20726 sym->set_demangled_name (physname, &objfile->objfile_obstack);
20727 sym->set_linkage_name (linkagename);
20728 }
f55ee35c 20729
c906108c 20730 /* Default assumptions.
c5aa993b 20731 Use the passed type or decode it from the die. */
176620f1 20732 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
f1e6e072 20733 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
20734 if (type != NULL)
20735 SYMBOL_TYPE (sym) = type;
20736 else
e7c27a73 20737 SYMBOL_TYPE (sym) = die_type (die, cu);
edb3359d
DJ
20738 attr = dwarf2_attr (die,
20739 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
20740 cu);
435d3d88 20741 if (attr != nullptr)
c906108c
SS
20742 {
20743 SYMBOL_LINE (sym) = DW_UNSND (attr);
20744 }
cb1df416 20745
edb3359d
DJ
20746 attr = dwarf2_attr (die,
20747 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
20748 cu);
435d3d88 20749 if (attr != nullptr)
cb1df416 20750 {
ecfb656c 20751 file_name_index file_index = (file_name_index) DW_UNSND (attr);
8c43009f 20752 struct file_entry *fe;
9a619af0 20753
ecfb656c
PA
20754 if (cu->line_header != NULL)
20755 fe = cu->line_header->file_name_at (file_index);
8c43009f
PA
20756 else
20757 fe = NULL;
20758
20759 if (fe == NULL)
b98664d3 20760 complaint (_("file index out of range"));
8c43009f
PA
20761 else
20762 symbol_set_symtab (sym, fe->symtab);
cb1df416
DJ
20763 }
20764
c906108c
SS
20765 switch (die->tag)
20766 {
20767 case DW_TAG_label:
e142c38c 20768 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 20769 if (attr != nullptr)
3e29f34a
MR
20770 {
20771 CORE_ADDR addr;
20772
cd6c91b4 20773 addr = attr->value_as_address ();
3e29f34a 20774 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
38583298 20775 SET_SYMBOL_VALUE_ADDRESS (sym, addr);
3e29f34a 20776 }
0f5238ed
TT
20777 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
20778 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
f1e6e072 20779 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
d3cb6808 20780 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
20781 break;
20782 case DW_TAG_subprogram:
20783 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
20784 finish_block. */
f1e6e072 20785 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
e142c38c 20786 attr2 = dwarf2_attr (die, DW_AT_external, cu);
2cfa0c8d 20787 if ((attr2 && (DW_UNSND (attr2) != 0))
0a4b0913
AB
20788 || cu->language == language_ada
20789 || cu->language == language_fortran)
c906108c 20790 {
2cfa0c8d 20791 /* Subprograms marked external are stored as a global symbol.
0a4b0913
AB
20792 Ada and Fortran subprograms, whether marked external or
20793 not, are always stored as a global symbol, because we want
20794 to be able to access them globally. For instance, we want
20795 to be able to break on a nested subprogram without having
20796 to specify the context. */
c24bdb02 20797 list_to_add = cu->get_builder ()->get_global_symbols ();
c906108c
SS
20798 }
20799 else
20800 {
e37fd15a 20801 list_to_add = cu->list_in_scope;
c906108c
SS
20802 }
20803 break;
edb3359d
DJ
20804 case DW_TAG_inlined_subroutine:
20805 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
20806 finish_block. */
f1e6e072 20807 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
edb3359d 20808 SYMBOL_INLINED (sym) = 1;
481860b3 20809 list_to_add = cu->list_in_scope;
edb3359d 20810 break;
34eaf542
TT
20811 case DW_TAG_template_value_param:
20812 suppress_add = 1;
20813 /* Fall through. */
72929c62 20814 case DW_TAG_constant:
c906108c 20815 case DW_TAG_variable:
254e6b9e 20816 case DW_TAG_member:
0963b4bd
MS
20817 /* Compilation with minimal debug info may result in
20818 variables with missing type entries. Change the
20819 misleading `void' type to something sensible. */
78134374 20820 if (SYMBOL_TYPE (sym)->code () == TYPE_CODE_VOID)
46a4882b 20821 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_int;
64c50499 20822
e142c38c 20823 attr = dwarf2_attr (die, DW_AT_const_value, cu);
254e6b9e
DE
20824 /* In the case of DW_TAG_member, we should only be called for
20825 static const members. */
20826 if (die->tag == DW_TAG_member)
20827 {
3863f96c
DE
20828 /* dwarf2_add_field uses die_is_declaration,
20829 so we do the same. */
254e6b9e
DE
20830 gdb_assert (die_is_declaration (die, cu));
20831 gdb_assert (attr);
20832 }
435d3d88 20833 if (attr != nullptr)
c906108c 20834 {
e7c27a73 20835 dwarf2_const_value (attr, sym, cu);
e142c38c 20836 attr2 = dwarf2_attr (die, DW_AT_external, cu);
e37fd15a 20837 if (!suppress_add)
34eaf542
TT
20838 {
20839 if (attr2 && (DW_UNSND (attr2) != 0))
c24bdb02 20840 list_to_add = cu->get_builder ()->get_global_symbols ();
34eaf542 20841 else
e37fd15a 20842 list_to_add = cu->list_in_scope;
34eaf542 20843 }
c906108c
SS
20844 break;
20845 }
e142c38c 20846 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 20847 if (attr != nullptr)
c906108c 20848 {
e7c27a73 20849 var_decode_location (attr, sym, cu);
e142c38c 20850 attr2 = dwarf2_attr (die, DW_AT_external, cu);
4357ac6c
TT
20851
20852 /* Fortran explicitly imports any global symbols to the local
20853 scope by DW_TAG_common_block. */
20854 if (cu->language == language_fortran && die->parent
20855 && die->parent->tag == DW_TAG_common_block)
20856 attr2 = NULL;
20857
caac4577
JG
20858 if (SYMBOL_CLASS (sym) == LOC_STATIC
20859 && SYMBOL_VALUE_ADDRESS (sym) == 0
5989a64e 20860 && !dwarf2_per_objfile->per_bfd->has_section_at_zero)
caac4577
JG
20861 {
20862 /* When a static variable is eliminated by the linker,
20863 the corresponding debug information is not stripped
20864 out, but the variable address is set to null;
20865 do not add such variables into symbol table. */
20866 }
20867 else if (attr2 && (DW_UNSND (attr2) != 0))
1c809c68 20868 {
4b610737
TT
20869 if (SYMBOL_CLASS (sym) == LOC_STATIC
20870 && (objfile->flags & OBJF_MAINLINE) == 0
5989a64e 20871 && dwarf2_per_objfile->per_bfd->can_copy)
4b610737
TT
20872 {
20873 /* A global static variable might be subject to
20874 copy relocation. We first check for a local
20875 minsym, though, because maybe the symbol was
20876 marked hidden, in which case this would not
20877 apply. */
20878 bound_minimal_symbol found
20879 = (lookup_minimal_symbol_linkage
987012b8 20880 (sym->linkage_name (), objfile));
4b610737
TT
20881 if (found.minsym != nullptr)
20882 sym->maybe_copied = 1;
20883 }
f55ee35c 20884
1c809c68
TT
20885 /* A variable with DW_AT_external is never static,
20886 but it may be block-scoped. */
804d2729 20887 list_to_add
c24bdb02
KS
20888 = ((cu->list_in_scope
20889 == cu->get_builder ()->get_file_symbols ())
20890 ? cu->get_builder ()->get_global_symbols ()
804d2729 20891 : cu->list_in_scope);
1c809c68 20892 }
c906108c 20893 else
e37fd15a 20894 list_to_add = cu->list_in_scope;
c906108c
SS
20895 }
20896 else
20897 {
20898 /* We do not know the address of this symbol.
c5aa993b
JM
20899 If it is an external symbol and we have type information
20900 for it, enter the symbol as a LOC_UNRESOLVED symbol.
20901 The address of the variable will then be determined from
20902 the minimal symbol table whenever the variable is
20903 referenced. */
e142c38c 20904 attr2 = dwarf2_attr (die, DW_AT_external, cu);
0971de02
TT
20905
20906 /* Fortran explicitly imports any global symbols to the local
20907 scope by DW_TAG_common_block. */
20908 if (cu->language == language_fortran && die->parent
20909 && die->parent->tag == DW_TAG_common_block)
20910 {
20911 /* SYMBOL_CLASS doesn't matter here because
20912 read_common_block is going to reset it. */
20913 if (!suppress_add)
20914 list_to_add = cu->list_in_scope;
20915 }
20916 else if (attr2 && (DW_UNSND (attr2) != 0)
20917 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c 20918 {
0fe7935b
DJ
20919 /* A variable with DW_AT_external is never static, but it
20920 may be block-scoped. */
804d2729 20921 list_to_add
c24bdb02
KS
20922 = ((cu->list_in_scope
20923 == cu->get_builder ()->get_file_symbols ())
20924 ? cu->get_builder ()->get_global_symbols ()
804d2729 20925 : cu->list_in_scope);
0fe7935b 20926
f1e6e072 20927 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
c906108c 20928 }
442ddf59
JK
20929 else if (!die_is_declaration (die, cu))
20930 {
20931 /* Use the default LOC_OPTIMIZED_OUT class. */
20932 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
e37fd15a
SW
20933 if (!suppress_add)
20934 list_to_add = cu->list_in_scope;
442ddf59 20935 }
c906108c
SS
20936 }
20937 break;
20938 case DW_TAG_formal_parameter:
a60f3166
TT
20939 {
20940 /* If we are inside a function, mark this as an argument. If
20941 not, we might be looking at an argument to an inlined function
20942 when we do not have enough information to show inlined frames;
20943 pretend it's a local variable in that case so that the user can
20944 still see it. */
804d2729 20945 struct context_stack *curr
c24bdb02 20946 = cu->get_builder ()->get_current_context_stack ();
a60f3166
TT
20947 if (curr != nullptr && curr->name != nullptr)
20948 SYMBOL_IS_ARGUMENT (sym) = 1;
20949 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 20950 if (attr != nullptr)
a60f3166
TT
20951 {
20952 var_decode_location (attr, sym, cu);
20953 }
20954 attr = dwarf2_attr (die, DW_AT_const_value, cu);
435d3d88 20955 if (attr != nullptr)
a60f3166
TT
20956 {
20957 dwarf2_const_value (attr, sym, cu);
20958 }
f346a30d 20959
a60f3166
TT
20960 list_to_add = cu->list_in_scope;
20961 }
c906108c
SS
20962 break;
20963 case DW_TAG_unspecified_parameters:
20964 /* From varargs functions; gdb doesn't seem to have any
20965 interest in this information, so just ignore it for now.
20966 (FIXME?) */
20967 break;
34eaf542
TT
20968 case DW_TAG_template_type_param:
20969 suppress_add = 1;
20970 /* Fall through. */
c906108c 20971 case DW_TAG_class_type:
680b30c7 20972 case DW_TAG_interface_type:
c906108c
SS
20973 case DW_TAG_structure_type:
20974 case DW_TAG_union_type:
72019c9c 20975 case DW_TAG_set_type:
c906108c 20976 case DW_TAG_enumeration_type:
f1e6e072 20977 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 20978 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 20979
63d06c5c 20980 {
9c37b5ae 20981 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
63d06c5c
DC
20982 really ever be static objects: otherwise, if you try
20983 to, say, break of a class's method and you're in a file
20984 which doesn't mention that class, it won't work unless
20985 the check for all static symbols in lookup_symbol_aux
20986 saves you. See the OtherFileClass tests in
20987 gdb.c++/namespace.exp. */
20988
e37fd15a 20989 if (!suppress_add)
34eaf542 20990 {
c24bdb02 20991 buildsym_compunit *builder = cu->get_builder ();
804d2729 20992 list_to_add
c24bdb02 20993 = (cu->list_in_scope == builder->get_file_symbols ()
804d2729 20994 && cu->language == language_cplus
c24bdb02 20995 ? builder->get_global_symbols ()
804d2729 20996 : cu->list_in_scope);
63d06c5c 20997
64382290 20998 /* The semantics of C++ state that "struct foo {
9c37b5ae 20999 ... }" also defines a typedef for "foo". */
64382290 21000 if (cu->language == language_cplus
45280282 21001 || cu->language == language_ada
c44af4eb
TT
21002 || cu->language == language_d
21003 || cu->language == language_rust)
64382290
TT
21004 {
21005 /* The symbol's name is already allocated along
21006 with this objfile, so we don't need to
21007 duplicate it for the type. */
7d93a1e0 21008 if (SYMBOL_TYPE (sym)->name () == 0)
d0e39ea2 21009 SYMBOL_TYPE (sym)->set_name (sym->search_name ());
64382290 21010 }
63d06c5c
DC
21011 }
21012 }
c906108c
SS
21013 break;
21014 case DW_TAG_typedef:
f1e6e072 21015 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
63d06c5c 21016 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21017 list_to_add = cu->list_in_scope;
63d06c5c 21018 break;
c906108c 21019 case DW_TAG_base_type:
a02abb62 21020 case DW_TAG_subrange_type:
f1e6e072 21021 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21022 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21023 list_to_add = cu->list_in_scope;
c906108c
SS
21024 break;
21025 case DW_TAG_enumerator:
e142c38c 21026 attr = dwarf2_attr (die, DW_AT_const_value, cu);
435d3d88 21027 if (attr != nullptr)
c906108c 21028 {
e7c27a73 21029 dwarf2_const_value (attr, sym, cu);
c906108c 21030 }
63d06c5c
DC
21031 {
21032 /* NOTE: carlton/2003-11-10: See comment above in the
21033 DW_TAG_class_type, etc. block. */
21034
804d2729 21035 list_to_add
c24bdb02 21036 = (cu->list_in_scope == cu->get_builder ()->get_file_symbols ()
804d2729 21037 && cu->language == language_cplus
c24bdb02 21038 ? cu->get_builder ()->get_global_symbols ()
804d2729 21039 : cu->list_in_scope);
63d06c5c 21040 }
c906108c 21041 break;
74921315 21042 case DW_TAG_imported_declaration:
5c4e30ca 21043 case DW_TAG_namespace:
f1e6e072 21044 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
c24bdb02 21045 list_to_add = cu->get_builder ()->get_global_symbols ();
5c4e30ca 21046 break;
530e8392
KB
21047 case DW_TAG_module:
21048 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21049 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
c24bdb02 21050 list_to_add = cu->get_builder ()->get_global_symbols ();
530e8392 21051 break;
4357ac6c 21052 case DW_TAG_common_block:
f1e6e072 21053 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
4357ac6c 21054 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
d3cb6808 21055 add_symbol_to_list (sym, cu->list_in_scope);
4357ac6c 21056 break;
c906108c
SS
21057 default:
21058 /* Not a tag we recognize. Hopefully we aren't processing
21059 trash data, but since we must specifically ignore things
21060 we don't recognize, there is nothing else we should do at
0963b4bd 21061 this point. */
b98664d3 21062 complaint (_("unsupported tag: '%s'"),
4d3c2250 21063 dwarf_tag_name (die->tag));
c906108c
SS
21064 break;
21065 }
df8a16a1 21066
e37fd15a
SW
21067 if (suppress_add)
21068 {
21069 sym->hash_next = objfile->template_symbols;
21070 objfile->template_symbols = sym;
21071 list_to_add = NULL;
21072 }
21073
21074 if (list_to_add != NULL)
d3cb6808 21075 add_symbol_to_list (sym, list_to_add);
e37fd15a 21076
df8a16a1
DJ
21077 /* For the benefit of old versions of GCC, check for anonymous
21078 namespaces based on the demangled name. */
4d4ec4e5 21079 if (!cu->processing_has_namespace_info
94af9270 21080 && cu->language == language_cplus)
c24bdb02 21081 cp_scan_for_anonymous_namespaces (cu->get_builder (), sym, objfile);
c906108c
SS
21082 }
21083 return (sym);
21084}
21085
98bfdba5
PA
21086/* Given an attr with a DW_FORM_dataN value in host byte order,
21087 zero-extend it as appropriate for the symbol's type. The DWARF
21088 standard (v4) is not entirely clear about the meaning of using
21089 DW_FORM_dataN for a constant with a signed type, where the type is
21090 wider than the data. The conclusion of a discussion on the DWARF
21091 list was that this is unspecified. We choose to always zero-extend
21092 because that is the interpretation long in use by GCC. */
c906108c 21093
98bfdba5 21094static gdb_byte *
ff39bb5e 21095dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
12df843f 21096 struct dwarf2_cu *cu, LONGEST *value, int bits)
c906108c 21097{
5e22e966 21098 struct objfile *objfile = cu->per_objfile->objfile;
e17a4113
UW
21099 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
21100 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
98bfdba5
PA
21101 LONGEST l = DW_UNSND (attr);
21102
21103 if (bits < sizeof (*value) * 8)
21104 {
21105 l &= ((LONGEST) 1 << bits) - 1;
21106 *value = l;
21107 }
21108 else if (bits == sizeof (*value) * 8)
21109 *value = l;
21110 else
21111 {
224c3ddb 21112 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
98bfdba5
PA
21113 store_unsigned_integer (bytes, bits / 8, byte_order, l);
21114 return bytes;
21115 }
21116
21117 return NULL;
21118}
21119
21120/* Read a constant value from an attribute. Either set *VALUE, or if
21121 the value does not fit in *VALUE, set *BYTES - either already
21122 allocated on the objfile obstack, or newly allocated on OBSTACK,
21123 or, set *BATON, if we translated the constant to a location
21124 expression. */
21125
21126static void
ff39bb5e 21127dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
98bfdba5
PA
21128 const char *name, struct obstack *obstack,
21129 struct dwarf2_cu *cu,
d521ce57 21130 LONGEST *value, const gdb_byte **bytes,
98bfdba5
PA
21131 struct dwarf2_locexpr_baton **baton)
21132{
5e22e966 21133 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 21134 struct objfile *objfile = per_objfile->objfile;
98bfdba5 21135 struct comp_unit_head *cu_header = &cu->header;
c906108c 21136 struct dwarf_block *blk;
98bfdba5
PA
21137 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
21138 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
21139
21140 *value = 0;
21141 *bytes = NULL;
21142 *baton = NULL;
c906108c
SS
21143
21144 switch (attr->form)
21145 {
21146 case DW_FORM_addr:
336d760d 21147 case DW_FORM_addrx:
3019eac3 21148 case DW_FORM_GNU_addr_index:
ac56253d 21149 {
ac56253d
TT
21150 gdb_byte *data;
21151
98bfdba5
PA
21152 if (TYPE_LENGTH (type) != cu_header->addr_size)
21153 dwarf2_const_value_length_mismatch_complaint (name,
ac56253d 21154 cu_header->addr_size,
98bfdba5 21155 TYPE_LENGTH (type));
ac56253d
TT
21156 /* Symbols of this form are reasonably rare, so we just
21157 piggyback on the existing location code rather than writing
21158 a new implementation of symbol_computed_ops. */
8d749320 21159 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
a50264ba 21160 (*baton)->per_objfile = per_objfile;
98bfdba5
PA
21161 (*baton)->per_cu = cu->per_cu;
21162 gdb_assert ((*baton)->per_cu);
ac56253d 21163
98bfdba5 21164 (*baton)->size = 2 + cu_header->addr_size;
224c3ddb 21165 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
98bfdba5 21166 (*baton)->data = data;
ac56253d
TT
21167
21168 data[0] = DW_OP_addr;
21169 store_unsigned_integer (&data[1], cu_header->addr_size,
21170 byte_order, DW_ADDR (attr));
21171 data[cu_header->addr_size + 1] = DW_OP_stack_value;
ac56253d 21172 }
c906108c 21173 break;
4ac36638 21174 case DW_FORM_string:
93b5768b 21175 case DW_FORM_strp:
cf532bd1 21176 case DW_FORM_strx:
3019eac3 21177 case DW_FORM_GNU_str_index:
36586728 21178 case DW_FORM_GNU_strp_alt:
98bfdba5
PA
21179 /* DW_STRING is already allocated on the objfile obstack, point
21180 directly to it. */
d521ce57 21181 *bytes = (const gdb_byte *) DW_STRING (attr);
93b5768b 21182 break;
c906108c
SS
21183 case DW_FORM_block1:
21184 case DW_FORM_block2:
21185 case DW_FORM_block4:
21186 case DW_FORM_block:
2dc7f7b3 21187 case DW_FORM_exprloc:
0224619f 21188 case DW_FORM_data16:
c906108c 21189 blk = DW_BLOCK (attr);
98bfdba5
PA
21190 if (TYPE_LENGTH (type) != blk->size)
21191 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
21192 TYPE_LENGTH (type));
21193 *bytes = blk->data;
c906108c 21194 break;
2df3850c
JM
21195
21196 /* The DW_AT_const_value attributes are supposed to carry the
21197 symbol's value "represented as it would be on the target
21198 architecture." By the time we get here, it's already been
21199 converted to host endianness, so we just need to sign- or
21200 zero-extend it as appropriate. */
21201 case DW_FORM_data1:
3aef2284 21202 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
2df3850c 21203 break;
c906108c 21204 case DW_FORM_data2:
3aef2284 21205 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
2df3850c 21206 break;
c906108c 21207 case DW_FORM_data4:
3aef2284 21208 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
2df3850c 21209 break;
c906108c 21210 case DW_FORM_data8:
3aef2284 21211 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
2df3850c
JM
21212 break;
21213
c906108c 21214 case DW_FORM_sdata:
663c44ac 21215 case DW_FORM_implicit_const:
98bfdba5 21216 *value = DW_SND (attr);
2df3850c
JM
21217 break;
21218
c906108c 21219 case DW_FORM_udata:
98bfdba5 21220 *value = DW_UNSND (attr);
c906108c 21221 break;
2df3850c 21222
c906108c 21223 default:
b98664d3 21224 complaint (_("unsupported const value attribute form: '%s'"),
4d3c2250 21225 dwarf_form_name (attr->form));
98bfdba5 21226 *value = 0;
c906108c
SS
21227 break;
21228 }
21229}
21230
2df3850c 21231
98bfdba5
PA
21232/* Copy constant value from an attribute to a symbol. */
21233
2df3850c 21234static void
ff39bb5e 21235dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
98bfdba5 21236 struct dwarf2_cu *cu)
2df3850c 21237{
5e22e966 21238 struct objfile *objfile = cu->per_objfile->objfile;
12df843f 21239 LONGEST value;
d521ce57 21240 const gdb_byte *bytes;
98bfdba5 21241 struct dwarf2_locexpr_baton *baton;
2df3850c 21242
98bfdba5 21243 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
987012b8 21244 sym->print_name (),
98bfdba5
PA
21245 &objfile->objfile_obstack, cu,
21246 &value, &bytes, &baton);
2df3850c 21247
98bfdba5
PA
21248 if (baton != NULL)
21249 {
98bfdba5 21250 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 21251 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
98bfdba5
PA
21252 }
21253 else if (bytes != NULL)
21254 {
21255 SYMBOL_VALUE_BYTES (sym) = bytes;
f1e6e072 21256 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
98bfdba5
PA
21257 }
21258 else
21259 {
21260 SYMBOL_VALUE (sym) = value;
f1e6e072 21261 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
98bfdba5 21262 }
2df3850c
JM
21263}
21264
c906108c
SS
21265/* Return the type of the die in question using its DW_AT_type attribute. */
21266
21267static struct type *
e7c27a73 21268die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21269{
c906108c 21270 struct attribute *type_attr;
c906108c 21271
e142c38c 21272 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
21273 if (!type_attr)
21274 {
5e22e966 21275 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 21276 /* A missing DW_AT_type represents a void type. */
518817b3 21277 return objfile_type (objfile)->builtin_void;
c906108c 21278 }
348e048f 21279
673bfd45 21280 return lookup_die_type (die, type_attr, cu);
c906108c
SS
21281}
21282
b4ba55a1
JB
21283/* True iff CU's producer generates GNAT Ada auxiliary information
21284 that allows to find parallel types through that information instead
21285 of having to do expensive parallel lookups by type name. */
21286
21287static int
21288need_gnat_info (struct dwarf2_cu *cu)
21289{
de4cb04a
JB
21290 /* Assume that the Ada compiler was GNAT, which always produces
21291 the auxiliary information. */
21292 return (cu->language == language_ada);
b4ba55a1
JB
21293}
21294
b4ba55a1
JB
21295/* Return the auxiliary type of the die in question using its
21296 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
21297 attribute is not present. */
21298
21299static struct type *
21300die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
21301{
b4ba55a1 21302 struct attribute *type_attr;
b4ba55a1
JB
21303
21304 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
21305 if (!type_attr)
21306 return NULL;
21307
673bfd45 21308 return lookup_die_type (die, type_attr, cu);
b4ba55a1
JB
21309}
21310
21311/* If DIE has a descriptive_type attribute, then set the TYPE's
21312 descriptive type accordingly. */
21313
21314static void
21315set_descriptive_type (struct type *type, struct die_info *die,
21316 struct dwarf2_cu *cu)
21317{
21318 struct type *descriptive_type = die_descriptive_type (die, cu);
21319
21320 if (descriptive_type)
21321 {
21322 ALLOCATE_GNAT_AUX_TYPE (type);
21323 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
21324 }
21325}
21326
c906108c
SS
21327/* Return the containing type of the die in question using its
21328 DW_AT_containing_type attribute. */
21329
21330static struct type *
e7c27a73 21331die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21332{
c906108c 21333 struct attribute *type_attr;
5e22e966 21334 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 21335
e142c38c 21336 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
33ac96f0
JK
21337 if (!type_attr)
21338 error (_("Dwarf Error: Problem turning containing type into gdb type "
518817b3 21339 "[in module %s]"), objfile_name (objfile));
33ac96f0 21340
673bfd45 21341 return lookup_die_type (die, type_attr, cu);
c906108c
SS
21342}
21343
ac9ec31b
DE
21344/* Return an error marker type to use for the ill formed type in DIE/CU. */
21345
21346static struct type *
21347build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
21348{
5e22e966 21349 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ac9ec31b 21350 struct objfile *objfile = dwarf2_per_objfile->objfile;
528e1572 21351 char *saved;
ac9ec31b 21352
528e1572
SM
21353 std::string message
21354 = string_printf (_("<unknown type in %s, CU %s, DIE %s>"),
21355 objfile_name (objfile),
21356 sect_offset_str (cu->header.sect_off),
21357 sect_offset_str (die->sect_off));
efba19b0 21358 saved = obstack_strdup (&objfile->objfile_obstack, message);
ac9ec31b 21359
19f392bc 21360 return init_type (objfile, TYPE_CODE_ERROR, 0, saved);
ac9ec31b
DE
21361}
21362
673bfd45 21363/* Look up the type of DIE in CU using its type attribute ATTR.
ac9ec31b
DE
21364 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
21365 DW_AT_containing_type.
673bfd45
DE
21366 If there is no type substitute an error marker. */
21367
c906108c 21368static struct type *
ff39bb5e 21369lookup_die_type (struct die_info *die, const struct attribute *attr,
673bfd45 21370 struct dwarf2_cu *cu)
c906108c 21371{
5e22e966 21372 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 21373 struct objfile *objfile = dwarf2_per_objfile->objfile;
f792889a
DJ
21374 struct type *this_type;
21375
ac9ec31b
DE
21376 gdb_assert (attr->name == DW_AT_type
21377 || attr->name == DW_AT_GNAT_descriptive_type
21378 || attr->name == DW_AT_containing_type);
21379
673bfd45
DE
21380 /* First see if we have it cached. */
21381
36586728
TT
21382 if (attr->form == DW_FORM_GNU_ref_alt)
21383 {
21384 struct dwarf2_per_cu_data *per_cu;
0826b30a 21385 sect_offset sect_off = attr->get_ref_die_offset ();
36586728 21386
ed2dc618
SM
21387 per_cu = dwarf2_find_containing_comp_unit (sect_off, 1,
21388 dwarf2_per_objfile);
9c541725 21389 this_type = get_die_type_at_offset (sect_off, per_cu);
36586728 21390 }
cd6c91b4 21391 else if (attr->form_is_ref ())
673bfd45 21392 {
0826b30a 21393 sect_offset sect_off = attr->get_ref_die_offset ();
673bfd45 21394
9c541725 21395 this_type = get_die_type_at_offset (sect_off, cu->per_cu);
673bfd45 21396 }
55f1336d 21397 else if (attr->form == DW_FORM_ref_sig8)
673bfd45 21398 {
ac9ec31b 21399 ULONGEST signature = DW_SIGNATURE (attr);
673bfd45 21400
ac9ec31b 21401 return get_signatured_type (die, signature, cu);
673bfd45
DE
21402 }
21403 else
21404 {
b98664d3 21405 complaint (_("Dwarf Error: Bad type attribute %s in DIE"
9d8780f0
SM
21406 " at %s [in module %s]"),
21407 dwarf_attr_name (attr->name), sect_offset_str (die->sect_off),
4262abfb 21408 objfile_name (objfile));
ac9ec31b 21409 return build_error_marker_type (cu, die);
673bfd45
DE
21410 }
21411
21412 /* If not cached we need to read it in. */
21413
21414 if (this_type == NULL)
21415 {
ac9ec31b 21416 struct die_info *type_die = NULL;
673bfd45
DE
21417 struct dwarf2_cu *type_cu = cu;
21418
cd6c91b4 21419 if (attr->form_is_ref ())
ac9ec31b
DE
21420 type_die = follow_die_ref (die, attr, &type_cu);
21421 if (type_die == NULL)
21422 return build_error_marker_type (cu, die);
21423 /* If we find the type now, it's probably because the type came
3019eac3
DE
21424 from an inter-CU reference and the type's CU got expanded before
21425 ours. */
ac9ec31b 21426 this_type = read_type_die (type_die, type_cu);
673bfd45
DE
21427 }
21428
21429 /* If we still don't have a type use an error marker. */
21430
21431 if (this_type == NULL)
ac9ec31b 21432 return build_error_marker_type (cu, die);
673bfd45 21433
f792889a 21434 return this_type;
c906108c
SS
21435}
21436
673bfd45
DE
21437/* Return the type in DIE, CU.
21438 Returns NULL for invalid types.
21439
02142a6c 21440 This first does a lookup in die_type_hash,
673bfd45
DE
21441 and only reads the die in if necessary.
21442
21443 NOTE: This can be called when reading in partial or full symbols. */
21444
f792889a 21445static struct type *
e7c27a73 21446read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21447{
f792889a
DJ
21448 struct type *this_type;
21449
21450 this_type = get_die_type (die, cu);
21451 if (this_type)
21452 return this_type;
21453
673bfd45
DE
21454 return read_type_die_1 (die, cu);
21455}
21456
21457/* Read the type in DIE, CU.
21458 Returns NULL for invalid types. */
21459
21460static struct type *
21461read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
21462{
21463 struct type *this_type = NULL;
21464
c906108c
SS
21465 switch (die->tag)
21466 {
21467 case DW_TAG_class_type:
680b30c7 21468 case DW_TAG_interface_type:
c906108c
SS
21469 case DW_TAG_structure_type:
21470 case DW_TAG_union_type:
f792889a 21471 this_type = read_structure_type (die, cu);
c906108c
SS
21472 break;
21473 case DW_TAG_enumeration_type:
f792889a 21474 this_type = read_enumeration_type (die, cu);
c906108c
SS
21475 break;
21476 case DW_TAG_subprogram:
21477 case DW_TAG_subroutine_type:
edb3359d 21478 case DW_TAG_inlined_subroutine:
f792889a 21479 this_type = read_subroutine_type (die, cu);
c906108c
SS
21480 break;
21481 case DW_TAG_array_type:
f792889a 21482 this_type = read_array_type (die, cu);
c906108c 21483 break;
72019c9c 21484 case DW_TAG_set_type:
f792889a 21485 this_type = read_set_type (die, cu);
72019c9c 21486 break;
c906108c 21487 case DW_TAG_pointer_type:
f792889a 21488 this_type = read_tag_pointer_type (die, cu);
c906108c
SS
21489 break;
21490 case DW_TAG_ptr_to_member_type:
f792889a 21491 this_type = read_tag_ptr_to_member_type (die, cu);
c906108c
SS
21492 break;
21493 case DW_TAG_reference_type:
4297a3f0
AV
21494 this_type = read_tag_reference_type (die, cu, TYPE_CODE_REF);
21495 break;
21496 case DW_TAG_rvalue_reference_type:
21497 this_type = read_tag_reference_type (die, cu, TYPE_CODE_RVALUE_REF);
c906108c
SS
21498 break;
21499 case DW_TAG_const_type:
f792889a 21500 this_type = read_tag_const_type (die, cu);
c906108c
SS
21501 break;
21502 case DW_TAG_volatile_type:
f792889a 21503 this_type = read_tag_volatile_type (die, cu);
c906108c 21504 break;
06d66ee9
TT
21505 case DW_TAG_restrict_type:
21506 this_type = read_tag_restrict_type (die, cu);
21507 break;
c906108c 21508 case DW_TAG_string_type:
f792889a 21509 this_type = read_tag_string_type (die, cu);
c906108c
SS
21510 break;
21511 case DW_TAG_typedef:
f792889a 21512 this_type = read_typedef (die, cu);
c906108c 21513 break;
a02abb62 21514 case DW_TAG_subrange_type:
f792889a 21515 this_type = read_subrange_type (die, cu);
a02abb62 21516 break;
c906108c 21517 case DW_TAG_base_type:
f792889a 21518 this_type = read_base_type (die, cu);
c906108c 21519 break;
81a17f79 21520 case DW_TAG_unspecified_type:
f792889a 21521 this_type = read_unspecified_type (die, cu);
81a17f79 21522 break;
0114d602
DJ
21523 case DW_TAG_namespace:
21524 this_type = read_namespace_type (die, cu);
21525 break;
f55ee35c
JK
21526 case DW_TAG_module:
21527 this_type = read_module_type (die, cu);
21528 break;
a2c2acaf
MW
21529 case DW_TAG_atomic_type:
21530 this_type = read_tag_atomic_type (die, cu);
21531 break;
c906108c 21532 default:
b98664d3 21533 complaint (_("unexpected tag in read_type_die: '%s'"),
4d3c2250 21534 dwarf_tag_name (die->tag));
c906108c
SS
21535 break;
21536 }
63d06c5c 21537
f792889a 21538 return this_type;
63d06c5c
DC
21539}
21540
abc72ce4
DE
21541/* See if we can figure out if the class lives in a namespace. We do
21542 this by looking for a member function; its demangled name will
21543 contain namespace info, if there is any.
21544 Return the computed name or NULL.
21545 Space for the result is allocated on the objfile's obstack.
21546 This is the full-die version of guess_partial_die_structure_name.
21547 In this case we know DIE has no useful parent. */
21548
43816ebc 21549static const char *
abc72ce4
DE
21550guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
21551{
21552 struct die_info *spec_die;
21553 struct dwarf2_cu *spec_cu;
21554 struct die_info *child;
5e22e966 21555 struct objfile *objfile = cu->per_objfile->objfile;
abc72ce4
DE
21556
21557 spec_cu = cu;
21558 spec_die = die_specification (die, &spec_cu);
21559 if (spec_die != NULL)
21560 {
21561 die = spec_die;
21562 cu = spec_cu;
21563 }
21564
21565 for (child = die->child;
21566 child != NULL;
21567 child = child->sibling)
21568 {
21569 if (child->tag == DW_TAG_subprogram)
21570 {
73b9be8b 21571 const char *linkage_name = dw2_linkage_name (child, cu);
abc72ce4 21572
7d45c7c3 21573 if (linkage_name != NULL)
abc72ce4 21574 {
43816ebc
TT
21575 gdb::unique_xmalloc_ptr<char> actual_name
21576 (language_class_name_from_physname (cu->language_defn,
21577 linkage_name));
21578 const char *name = NULL;
abc72ce4
DE
21579
21580 if (actual_name != NULL)
21581 {
15d034d0 21582 const char *die_name = dwarf2_name (die, cu);
abc72ce4
DE
21583
21584 if (die_name != NULL
43816ebc 21585 && strcmp (die_name, actual_name.get ()) != 0)
abc72ce4
DE
21586 {
21587 /* Strip off the class name from the full name.
21588 We want the prefix. */
21589 int die_name_len = strlen (die_name);
43816ebc
TT
21590 int actual_name_len = strlen (actual_name.get ());
21591 const char *ptr = actual_name.get ();
abc72ce4
DE
21592
21593 /* Test for '::' as a sanity check. */
21594 if (actual_name_len > die_name_len + 2
43816ebc 21595 && ptr[actual_name_len - die_name_len - 1] == ':')
0cf9feb9 21596 name = obstack_strndup (
e3b94546 21597 &objfile->per_bfd->storage_obstack,
43816ebc 21598 ptr, actual_name_len - die_name_len - 2);
abc72ce4
DE
21599 }
21600 }
abc72ce4
DE
21601 return name;
21602 }
21603 }
21604 }
21605
21606 return NULL;
21607}
21608
96408a79
SA
21609/* GCC might emit a nameless typedef that has a linkage name. Determine the
21610 prefix part in such case. See
21611 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
21612
a121b7c1 21613static const char *
96408a79
SA
21614anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
21615{
21616 struct attribute *attr;
e6a959d6 21617 const char *base;
96408a79
SA
21618
21619 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
21620 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
21621 return NULL;
21622
7d45c7c3 21623 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
96408a79
SA
21624 return NULL;
21625
73b9be8b 21626 attr = dw2_linkage_name_attr (die, cu);
96408a79
SA
21627 if (attr == NULL || DW_STRING (attr) == NULL)
21628 return NULL;
21629
21630 /* dwarf2_name had to be already called. */
21631 gdb_assert (DW_STRING_IS_CANONICAL (attr));
21632
21633 /* Strip the base name, keep any leading namespaces/classes. */
21634 base = strrchr (DW_STRING (attr), ':');
21635 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
21636 return "";
21637
5e22e966 21638 struct objfile *objfile = cu->per_objfile->objfile;
0cf9feb9
TT
21639 return obstack_strndup (&objfile->per_bfd->storage_obstack,
21640 DW_STRING (attr),
21641 &base[-1] - DW_STRING (attr));
96408a79
SA
21642}
21643
fdde2d81 21644/* Return the name of the namespace/class that DIE is defined within,
0114d602 21645 or "" if we can't tell. The caller should not xfree the result.
fdde2d81 21646
0114d602
DJ
21647 For example, if we're within the method foo() in the following
21648 code:
21649
21650 namespace N {
21651 class C {
21652 void foo () {
21653 }
21654 };
21655 }
21656
21657 then determine_prefix on foo's die will return "N::C". */
fdde2d81 21658
0d5cff50 21659static const char *
e142c38c 21660determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 21661{
5e22e966 21662 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
0114d602
DJ
21663 struct die_info *parent, *spec_die;
21664 struct dwarf2_cu *spec_cu;
21665 struct type *parent_type;
a121b7c1 21666 const char *retval;
63d06c5c 21667
9c37b5ae 21668 if (cu->language != language_cplus
c44af4eb
TT
21669 && cu->language != language_fortran && cu->language != language_d
21670 && cu->language != language_rust)
0114d602
DJ
21671 return "";
21672
96408a79
SA
21673 retval = anonymous_struct_prefix (die, cu);
21674 if (retval)
21675 return retval;
21676
0114d602
DJ
21677 /* We have to be careful in the presence of DW_AT_specification.
21678 For example, with GCC 3.4, given the code
21679
21680 namespace N {
21681 void foo() {
21682 // Definition of N::foo.
21683 }
21684 }
21685
21686 then we'll have a tree of DIEs like this:
21687
21688 1: DW_TAG_compile_unit
21689 2: DW_TAG_namespace // N
21690 3: DW_TAG_subprogram // declaration of N::foo
21691 4: DW_TAG_subprogram // definition of N::foo
21692 DW_AT_specification // refers to die #3
21693
21694 Thus, when processing die #4, we have to pretend that we're in
21695 the context of its DW_AT_specification, namely the contex of die
21696 #3. */
21697 spec_cu = cu;
21698 spec_die = die_specification (die, &spec_cu);
21699 if (spec_die == NULL)
21700 parent = die->parent;
21701 else
63d06c5c 21702 {
0114d602
DJ
21703 parent = spec_die->parent;
21704 cu = spec_cu;
63d06c5c 21705 }
0114d602
DJ
21706
21707 if (parent == NULL)
21708 return "";
98bfdba5
PA
21709 else if (parent->building_fullname)
21710 {
21711 const char *name;
21712 const char *parent_name;
21713
21714 /* It has been seen on RealView 2.2 built binaries,
21715 DW_TAG_template_type_param types actually _defined_ as
21716 children of the parent class:
21717
21718 enum E {};
21719 template class <class Enum> Class{};
21720 Class<enum E> class_e;
21721
21722 1: DW_TAG_class_type (Class)
21723 2: DW_TAG_enumeration_type (E)
21724 3: DW_TAG_enumerator (enum1:0)
21725 3: DW_TAG_enumerator (enum2:1)
21726 ...
21727 2: DW_TAG_template_type_param
21728 DW_AT_type DW_FORM_ref_udata (E)
21729
21730 Besides being broken debug info, it can put GDB into an
21731 infinite loop. Consider:
21732
21733 When we're building the full name for Class<E>, we'll start
21734 at Class, and go look over its template type parameters,
21735 finding E. We'll then try to build the full name of E, and
21736 reach here. We're now trying to build the full name of E,
21737 and look over the parent DIE for containing scope. In the
21738 broken case, if we followed the parent DIE of E, we'd again
21739 find Class, and once again go look at its template type
21740 arguments, etc., etc. Simply don't consider such parent die
21741 as source-level parent of this die (it can't be, the language
21742 doesn't allow it), and break the loop here. */
21743 name = dwarf2_name (die, cu);
21744 parent_name = dwarf2_name (parent, cu);
b98664d3 21745 complaint (_("template param type '%s' defined within parent '%s'"),
98bfdba5
PA
21746 name ? name : "<unknown>",
21747 parent_name ? parent_name : "<unknown>");
21748 return "";
21749 }
63d06c5c 21750 else
0114d602
DJ
21751 switch (parent->tag)
21752 {
63d06c5c 21753 case DW_TAG_namespace:
0114d602 21754 parent_type = read_type_die (parent, cu);
acebe513
UW
21755 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
21756 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
21757 Work around this problem here. */
21758 if (cu->language == language_cplus
7d93a1e0 21759 && strcmp (parent_type->name (), "::") == 0)
acebe513 21760 return "";
0114d602 21761 /* We give a name to even anonymous namespaces. */
7d93a1e0 21762 return parent_type->name ();
63d06c5c 21763 case DW_TAG_class_type:
680b30c7 21764 case DW_TAG_interface_type:
63d06c5c 21765 case DW_TAG_structure_type:
0114d602 21766 case DW_TAG_union_type:
f55ee35c 21767 case DW_TAG_module:
0114d602 21768 parent_type = read_type_die (parent, cu);
7d93a1e0
SM
21769 if (parent_type->name () != NULL)
21770 return parent_type->name ();
0114d602
DJ
21771 else
21772 /* An anonymous structure is only allowed non-static data
21773 members; no typedefs, no member functions, et cetera.
21774 So it does not need a prefix. */
21775 return "";
abc72ce4 21776 case DW_TAG_compile_unit:
95554aad 21777 case DW_TAG_partial_unit:
abc72ce4
DE
21778 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
21779 if (cu->language == language_cplus
5989a64e 21780 && !dwarf2_per_objfile->per_bfd->types.empty ()
abc72ce4
DE
21781 && die->child != NULL
21782 && (die->tag == DW_TAG_class_type
21783 || die->tag == DW_TAG_structure_type
21784 || die->tag == DW_TAG_union_type))
21785 {
43816ebc 21786 const char *name = guess_full_die_structure_name (die, cu);
abc72ce4
DE
21787 if (name != NULL)
21788 return name;
21789 }
21790 return "";
0a4b0913
AB
21791 case DW_TAG_subprogram:
21792 /* Nested subroutines in Fortran get a prefix with the name
21793 of the parent's subroutine. */
21794 if (cu->language == language_fortran)
21795 {
21796 if ((die->tag == DW_TAG_subprogram)
21797 && (dwarf2_name (parent, cu) != NULL))
21798 return dwarf2_name (parent, cu);
21799 }
21800 return determine_prefix (parent, cu);
3d567982
TT
21801 case DW_TAG_enumeration_type:
21802 parent_type = read_type_die (parent, cu);
21803 if (TYPE_DECLARED_CLASS (parent_type))
21804 {
7d93a1e0
SM
21805 if (parent_type->name () != NULL)
21806 return parent_type->name ();
3d567982
TT
21807 return "";
21808 }
21809 /* Fall through. */
63d06c5c 21810 default:
8176b9b8 21811 return determine_prefix (parent, cu);
63d06c5c 21812 }
63d06c5c
DC
21813}
21814
3e43a32a
MS
21815/* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
21816 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
21817 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
21818 an obconcat, otherwise allocate storage for the result. The CU argument is
21819 used to determine the language and hence, the appropriate separator. */
987504bb 21820
f55ee35c 21821#define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
63d06c5c
DC
21822
21823static char *
f55ee35c
JK
21824typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
21825 int physname, struct dwarf2_cu *cu)
63d06c5c 21826{
f55ee35c 21827 const char *lead = "";
5c315b68 21828 const char *sep;
63d06c5c 21829
3e43a32a
MS
21830 if (suffix == NULL || suffix[0] == '\0'
21831 || prefix == NULL || prefix[0] == '\0')
987504bb 21832 sep = "";
45280282
IB
21833 else if (cu->language == language_d)
21834 {
21835 /* For D, the 'main' function could be defined in any module, but it
21836 should never be prefixed. */
21837 if (strcmp (suffix, "D main") == 0)
21838 {
21839 prefix = "";
21840 sep = "";
21841 }
21842 else
21843 sep = ".";
21844 }
f55ee35c
JK
21845 else if (cu->language == language_fortran && physname)
21846 {
21847 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
21848 DW_AT_MIPS_linkage_name is preferred and used instead. */
21849
21850 lead = "__";
21851 sep = "_MOD_";
21852 }
987504bb
JJ
21853 else
21854 sep = "::";
63d06c5c 21855
6dd47d34
DE
21856 if (prefix == NULL)
21857 prefix = "";
21858 if (suffix == NULL)
21859 suffix = "";
21860
987504bb
JJ
21861 if (obs == NULL)
21862 {
3e43a32a 21863 char *retval
224c3ddb
SM
21864 = ((char *)
21865 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
9a619af0 21866
f55ee35c
JK
21867 strcpy (retval, lead);
21868 strcat (retval, prefix);
6dd47d34
DE
21869 strcat (retval, sep);
21870 strcat (retval, suffix);
63d06c5c
DC
21871 return retval;
21872 }
987504bb
JJ
21873 else
21874 {
21875 /* We have an obstack. */
f55ee35c 21876 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
987504bb 21877 }
63d06c5c
DC
21878}
21879
71c25dea
TT
21880/* Get name of a die, return NULL if not found. */
21881
15d034d0
TT
21882static const char *
21883dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
be1e3d3e 21884 struct objfile *objfile)
71c25dea
TT
21885{
21886 if (name && cu->language == language_cplus)
21887 {
596dc4ad
TT
21888 gdb::unique_xmalloc_ptr<char> canon_name
21889 = cp_canonicalize_string (name);
71c25dea 21890
596dc4ad
TT
21891 if (canon_name != nullptr)
21892 name = objfile->intern (canon_name.get ());
71c25dea
TT
21893 }
21894
21895 return name;
c906108c
SS
21896}
21897
96553a0c
DE
21898/* Get name of a die, return NULL if not found.
21899 Anonymous namespaces are converted to their magic string. */
9219021c 21900
15d034d0 21901static const char *
e142c38c 21902dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
21903{
21904 struct attribute *attr;
5e22e966 21905 struct objfile *objfile = cu->per_objfile->objfile;
9219021c 21906
e142c38c 21907 attr = dwarf2_attr (die, DW_AT_name, cu);
53832f31 21908 if ((!attr || !DW_STRING (attr))
96553a0c 21909 && die->tag != DW_TAG_namespace
53832f31
TT
21910 && die->tag != DW_TAG_class_type
21911 && die->tag != DW_TAG_interface_type
21912 && die->tag != DW_TAG_structure_type
21913 && die->tag != DW_TAG_union_type)
71c25dea
TT
21914 return NULL;
21915
21916 switch (die->tag)
21917 {
21918 case DW_TAG_compile_unit:
95554aad 21919 case DW_TAG_partial_unit:
71c25dea
TT
21920 /* Compilation units have a DW_AT_name that is a filename, not
21921 a source language identifier. */
21922 case DW_TAG_enumeration_type:
21923 case DW_TAG_enumerator:
21924 /* These tags always have simple identifiers already; no need
21925 to canonicalize them. */
21926 return DW_STRING (attr);
907af001 21927
96553a0c
DE
21928 case DW_TAG_namespace:
21929 if (attr != NULL && DW_STRING (attr) != NULL)
21930 return DW_STRING (attr);
21931 return CP_ANONYMOUS_NAMESPACE_STR;
21932
907af001
UW
21933 case DW_TAG_class_type:
21934 case DW_TAG_interface_type:
21935 case DW_TAG_structure_type:
21936 case DW_TAG_union_type:
21937 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
21938 structures or unions. These were of the form "._%d" in GCC 4.1,
21939 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
21940 and GCC 4.4. We work around this problem by ignoring these. */
53832f31 21941 if (attr && DW_STRING (attr)
61012eef
GB
21942 && (startswith (DW_STRING (attr), "._")
21943 || startswith (DW_STRING (attr), "<anonymous")))
907af001 21944 return NULL;
53832f31
TT
21945
21946 /* GCC might emit a nameless typedef that has a linkage name. See
21947 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
21948 if (!attr || DW_STRING (attr) == NULL)
21949 {
73b9be8b 21950 attr = dw2_linkage_name_attr (die, cu);
53832f31
TT
21951 if (attr == NULL || DW_STRING (attr) == NULL)
21952 return NULL;
21953
df5c6c50
JK
21954 /* Avoid demangling DW_STRING (attr) the second time on a second
21955 call for the same DIE. */
21956 if (!DW_STRING_IS_CANONICAL (attr))
53832f31 21957 {
43816ebc
TT
21958 gdb::unique_xmalloc_ptr<char> demangled
21959 (gdb_demangle (DW_STRING (attr), DMGL_TYPES));
4f180d53
AT
21960 if (demangled == nullptr)
21961 return nullptr;
43816ebc 21962
be1e3d3e 21963 DW_STRING (attr) = objfile->intern (demangled.get ());
53832f31 21964 DW_STRING_IS_CANONICAL (attr) = 1;
53832f31 21965 }
67430cd0
TT
21966
21967 /* Strip any leading namespaces/classes, keep only the base name.
21968 DW_AT_name for named DIEs does not contain the prefixes. */
21969 const char *base = strrchr (DW_STRING (attr), ':');
21970 if (base && base > DW_STRING (attr) && base[-1] == ':')
21971 return &base[1];
21972 else
21973 return DW_STRING (attr);
53832f31 21974 }
907af001
UW
21975 break;
21976
71c25dea 21977 default:
907af001
UW
21978 break;
21979 }
21980
21981 if (!DW_STRING_IS_CANONICAL (attr))
21982 {
be1e3d3e
TT
21983 DW_STRING (attr) = dwarf2_canonicalize_name (DW_STRING (attr), cu,
21984 objfile);
907af001 21985 DW_STRING_IS_CANONICAL (attr) = 1;
71c25dea 21986 }
907af001 21987 return DW_STRING (attr);
9219021c
DC
21988}
21989
21990/* Return the die that this die in an extension of, or NULL if there
f2f0e013
DJ
21991 is none. *EXT_CU is the CU containing DIE on input, and the CU
21992 containing the return value on output. */
9219021c
DC
21993
21994static struct die_info *
f2f0e013 21995dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9219021c
DC
21996{
21997 struct attribute *attr;
9219021c 21998
f2f0e013 21999 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9219021c
DC
22000 if (attr == NULL)
22001 return NULL;
22002
f2f0e013 22003 return follow_die_ref (die, attr, ext_cu);
9219021c
DC
22004}
22005
f9aca02d 22006static void
d97bc12b 22007dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
c906108c
SS
22008{
22009 unsigned int i;
22010
d97bc12b 22011 print_spaces (indent, f);
9d8780f0 22012 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset %s)\n",
9c541725 22013 dwarf_tag_name (die->tag), die->abbrev,
9d8780f0 22014 sect_offset_str (die->sect_off));
d97bc12b
DE
22015
22016 if (die->parent != NULL)
22017 {
22018 print_spaces (indent, f);
9d8780f0
SM
22019 fprintf_unfiltered (f, " parent at offset: %s\n",
22020 sect_offset_str (die->parent->sect_off));
d97bc12b
DE
22021 }
22022
22023 print_spaces (indent, f);
22024 fprintf_unfiltered (f, " has children: %s\n",
639d11d3 22025 dwarf_bool_name (die->child != NULL));
c906108c 22026
d97bc12b
DE
22027 print_spaces (indent, f);
22028 fprintf_unfiltered (f, " attributes:\n");
22029
c906108c
SS
22030 for (i = 0; i < die->num_attrs; ++i)
22031 {
d97bc12b
DE
22032 print_spaces (indent, f);
22033 fprintf_unfiltered (f, " %s (%s) ",
c906108c
SS
22034 dwarf_attr_name (die->attrs[i].name),
22035 dwarf_form_name (die->attrs[i].form));
d97bc12b 22036
c906108c
SS
22037 switch (die->attrs[i].form)
22038 {
c906108c 22039 case DW_FORM_addr:
336d760d 22040 case DW_FORM_addrx:
3019eac3 22041 case DW_FORM_GNU_addr_index:
d97bc12b 22042 fprintf_unfiltered (f, "address: ");
5af949e3 22043 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
c906108c
SS
22044 break;
22045 case DW_FORM_block2:
22046 case DW_FORM_block4:
22047 case DW_FORM_block:
22048 case DW_FORM_block1:
56eb65bd
SP
22049 fprintf_unfiltered (f, "block: size %s",
22050 pulongest (DW_BLOCK (&die->attrs[i])->size));
c906108c 22051 break;
2dc7f7b3 22052 case DW_FORM_exprloc:
56eb65bd
SP
22053 fprintf_unfiltered (f, "expression: size %s",
22054 pulongest (DW_BLOCK (&die->attrs[i])->size));
2dc7f7b3 22055 break;
0224619f
JK
22056 case DW_FORM_data16:
22057 fprintf_unfiltered (f, "constant of 16 bytes");
22058 break;
4568ecf9
DE
22059 case DW_FORM_ref_addr:
22060 fprintf_unfiltered (f, "ref address: ");
22061 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22062 break;
36586728
TT
22063 case DW_FORM_GNU_ref_alt:
22064 fprintf_unfiltered (f, "alt ref address: ");
22065 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22066 break;
10b3939b
DJ
22067 case DW_FORM_ref1:
22068 case DW_FORM_ref2:
22069 case DW_FORM_ref4:
4568ecf9
DE
22070 case DW_FORM_ref8:
22071 case DW_FORM_ref_udata:
d97bc12b 22072 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
4568ecf9 22073 (long) (DW_UNSND (&die->attrs[i])));
10b3939b 22074 break;
c906108c
SS
22075 case DW_FORM_data1:
22076 case DW_FORM_data2:
22077 case DW_FORM_data4:
ce5d95e1 22078 case DW_FORM_data8:
c906108c
SS
22079 case DW_FORM_udata:
22080 case DW_FORM_sdata:
43bbcdc2
PH
22081 fprintf_unfiltered (f, "constant: %s",
22082 pulongest (DW_UNSND (&die->attrs[i])));
c906108c 22083 break;
2dc7f7b3
TT
22084 case DW_FORM_sec_offset:
22085 fprintf_unfiltered (f, "section offset: %s",
22086 pulongest (DW_UNSND (&die->attrs[i])));
22087 break;
55f1336d 22088 case DW_FORM_ref_sig8:
ac9ec31b
DE
22089 fprintf_unfiltered (f, "signature: %s",
22090 hex_string (DW_SIGNATURE (&die->attrs[i])));
348e048f 22091 break;
c906108c 22092 case DW_FORM_string:
4bdf3d34 22093 case DW_FORM_strp:
43988095 22094 case DW_FORM_line_strp:
cf532bd1 22095 case DW_FORM_strx:
3019eac3 22096 case DW_FORM_GNU_str_index:
36586728 22097 case DW_FORM_GNU_strp_alt:
8285870a 22098 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
c906108c 22099 DW_STRING (&die->attrs[i])
8285870a
JK
22100 ? DW_STRING (&die->attrs[i]) : "",
22101 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
c906108c
SS
22102 break;
22103 case DW_FORM_flag:
22104 if (DW_UNSND (&die->attrs[i]))
d97bc12b 22105 fprintf_unfiltered (f, "flag: TRUE");
c906108c 22106 else
d97bc12b 22107 fprintf_unfiltered (f, "flag: FALSE");
c906108c 22108 break;
2dc7f7b3
TT
22109 case DW_FORM_flag_present:
22110 fprintf_unfiltered (f, "flag: TRUE");
22111 break;
a8329558 22112 case DW_FORM_indirect:
0963b4bd
MS
22113 /* The reader will have reduced the indirect form to
22114 the "base form" so this form should not occur. */
5f48f8f3 22115 fprintf_unfiltered (f,
3e43a32a 22116 "unexpected attribute form: DW_FORM_indirect");
a8329558 22117 break;
663c44ac
JK
22118 case DW_FORM_implicit_const:
22119 fprintf_unfiltered (f, "constant: %s",
22120 plongest (DW_SND (&die->attrs[i])));
22121 break;
c906108c 22122 default:
d97bc12b 22123 fprintf_unfiltered (f, "unsupported attribute form: %d.",
c5aa993b 22124 die->attrs[i].form);
d97bc12b 22125 break;
c906108c 22126 }
d97bc12b 22127 fprintf_unfiltered (f, "\n");
c906108c
SS
22128 }
22129}
22130
f9aca02d 22131static void
d97bc12b 22132dump_die_for_error (struct die_info *die)
c906108c 22133{
d97bc12b
DE
22134 dump_die_shallow (gdb_stderr, 0, die);
22135}
22136
22137static void
22138dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
22139{
22140 int indent = level * 4;
22141
22142 gdb_assert (die != NULL);
22143
22144 if (level >= max_level)
22145 return;
22146
22147 dump_die_shallow (f, indent, die);
22148
22149 if (die->child != NULL)
c906108c 22150 {
d97bc12b
DE
22151 print_spaces (indent, f);
22152 fprintf_unfiltered (f, " Children:");
22153 if (level + 1 < max_level)
22154 {
22155 fprintf_unfiltered (f, "\n");
22156 dump_die_1 (f, level + 1, max_level, die->child);
22157 }
22158 else
22159 {
3e43a32a
MS
22160 fprintf_unfiltered (f,
22161 " [not printed, max nesting level reached]\n");
d97bc12b
DE
22162 }
22163 }
22164
22165 if (die->sibling != NULL && level > 0)
22166 {
22167 dump_die_1 (f, level, max_level, die->sibling);
c906108c
SS
22168 }
22169}
22170
d97bc12b
DE
22171/* This is called from the pdie macro in gdbinit.in.
22172 It's not static so gcc will keep a copy callable from gdb. */
22173
22174void
22175dump_die (struct die_info *die, int max_level)
22176{
22177 dump_die_1 (gdb_stdlog, 0, max_level, die);
22178}
22179
f9aca02d 22180static void
51545339 22181store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22182{
51545339 22183 void **slot;
c906108c 22184
9c541725
PA
22185 slot = htab_find_slot_with_hash (cu->die_hash, die,
22186 to_underlying (die->sect_off),
b64f50a1 22187 INSERT);
51545339
DJ
22188
22189 *slot = die;
c906108c
SS
22190}
22191
348e048f
DE
22192/* Follow reference or signature attribute ATTR of SRC_DIE.
22193 On entry *REF_CU is the CU of SRC_DIE.
22194 On exit *REF_CU is the CU of the result. */
22195
22196static struct die_info *
ff39bb5e 22197follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
348e048f
DE
22198 struct dwarf2_cu **ref_cu)
22199{
22200 struct die_info *die;
22201
cd6c91b4 22202 if (attr->form_is_ref ())
348e048f 22203 die = follow_die_ref (src_die, attr, ref_cu);
55f1336d 22204 else if (attr->form == DW_FORM_ref_sig8)
348e048f
DE
22205 die = follow_die_sig (src_die, attr, ref_cu);
22206 else
22207 {
22208 dump_die_for_error (src_die);
22209 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
5e22e966 22210 objfile_name ((*ref_cu)->per_objfile->objfile));
348e048f
DE
22211 }
22212
22213 return die;
03dd20cc
DJ
22214}
22215
5c631832 22216/* Follow reference OFFSET.
673bfd45
DE
22217 On entry *REF_CU is the CU of the source die referencing OFFSET.
22218 On exit *REF_CU is the CU of the result.
22219 Returns NULL if OFFSET is invalid. */
f504f079 22220
f9aca02d 22221static struct die_info *
9c541725 22222follow_die_offset (sect_offset sect_off, int offset_in_dwz,
36586728 22223 struct dwarf2_cu **ref_cu)
c906108c 22224{
10b3939b 22225 struct die_info temp_die;
f2f0e013 22226 struct dwarf2_cu *target_cu, *cu = *ref_cu;
5e22e966 22227 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
10b3939b 22228
348e048f
DE
22229 gdb_assert (cu->per_cu != NULL);
22230
98bfdba5
PA
22231 target_cu = cu;
22232
3019eac3 22233 if (cu->per_cu->is_debug_types)
348e048f
DE
22234 {
22235 /* .debug_types CUs cannot reference anything outside their CU.
22236 If they need to, they have to reference a signatured type via
55f1336d 22237 DW_FORM_ref_sig8. */
4057dfde 22238 if (!cu->header.offset_in_cu_p (sect_off))
5c631832 22239 return NULL;
348e048f 22240 }
36586728 22241 else if (offset_in_dwz != cu->per_cu->is_dwz
4057dfde 22242 || !cu->header.offset_in_cu_p (sect_off))
10b3939b
DJ
22243 {
22244 struct dwarf2_per_cu_data *per_cu;
9a619af0 22245
9c541725 22246 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 22247 dwarf2_per_objfile);
03dd20cc
DJ
22248
22249 /* If necessary, add it to the queue and load its DIEs. */
95554aad 22250 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
ab432490 22251 load_full_comp_unit (per_cu, dwarf2_per_objfile, false, cu->language);
03dd20cc 22252
10b3939b
DJ
22253 target_cu = per_cu->cu;
22254 }
98bfdba5
PA
22255 else if (cu->dies == NULL)
22256 {
22257 /* We're loading full DIEs during partial symbol reading. */
5989a64e 22258 gdb_assert (dwarf2_per_objfile->per_bfd->reading_partial_symbols);
ab432490
SM
22259 load_full_comp_unit (cu->per_cu, dwarf2_per_objfile, false,
22260 language_minimal);
98bfdba5 22261 }
c906108c 22262
f2f0e013 22263 *ref_cu = target_cu;
9c541725 22264 temp_die.sect_off = sect_off;
c24bdb02
KS
22265
22266 if (target_cu != cu)
22267 target_cu->ancestor = cu;
22268
9a3c8263 22269 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
9c541725
PA
22270 &temp_die,
22271 to_underlying (sect_off));
5c631832 22272}
10b3939b 22273
5c631832
JK
22274/* Follow reference attribute ATTR of SRC_DIE.
22275 On entry *REF_CU is the CU of SRC_DIE.
22276 On exit *REF_CU is the CU of the result. */
22277
22278static struct die_info *
ff39bb5e 22279follow_die_ref (struct die_info *src_die, const struct attribute *attr,
5c631832
JK
22280 struct dwarf2_cu **ref_cu)
22281{
0826b30a 22282 sect_offset sect_off = attr->get_ref_die_offset ();
5c631832
JK
22283 struct dwarf2_cu *cu = *ref_cu;
22284 struct die_info *die;
22285
9c541725 22286 die = follow_die_offset (sect_off,
36586728
TT
22287 (attr->form == DW_FORM_GNU_ref_alt
22288 || cu->per_cu->is_dwz),
22289 ref_cu);
5c631832 22290 if (!die)
9d8780f0
SM
22291 error (_("Dwarf Error: Cannot find DIE at %s referenced from DIE "
22292 "at %s [in module %s]"),
22293 sect_offset_str (sect_off), sect_offset_str (src_die->sect_off),
5e22e966 22294 objfile_name (cu->per_objfile->objfile));
348e048f 22295
5c631832
JK
22296 return die;
22297}
22298
d4c9a4f8 22299/* See read.h. */
5c631832
JK
22300
22301struct dwarf2_locexpr_baton
9c541725 22302dwarf2_fetch_die_loc_sect_off (sect_offset sect_off,
d4c9a4f8 22303 dwarf2_per_cu_data *per_cu,
14095eb3 22304 dwarf2_per_objfile *dwarf2_per_objfile,
8b9737bf 22305 CORE_ADDR (*get_frame_pc) (void *baton),
e4a62c65 22306 void *baton, bool resolve_abstract_p)
5c631832 22307{
918dd910 22308 struct dwarf2_cu *cu;
5c631832
JK
22309 struct die_info *die;
22310 struct attribute *attr;
22311 struct dwarf2_locexpr_baton retval;
12359b5e 22312 struct objfile *objfile = dwarf2_per_objfile->objfile;
8cf6f0b1 22313
918dd910 22314 if (per_cu->cu == NULL)
ab432490 22315 load_cu (per_cu, dwarf2_per_objfile, false);
918dd910 22316 cu = per_cu->cu;
cc12ce38
DE
22317 if (cu == NULL)
22318 {
22319 /* We shouldn't get here for a dummy CU, but don't crash on the user.
22320 Instead just throw an error, not much else we can do. */
9d8780f0
SM
22321 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
22322 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 22323 }
918dd910 22324
9c541725 22325 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
5c631832 22326 if (!die)
9d8780f0
SM
22327 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
22328 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
22329
22330 attr = dwarf2_attr (die, DW_AT_location, cu);
e4a62c65 22331 if (!attr && resolve_abstract_p
5989a64e
SM
22332 && (dwarf2_per_objfile->per_bfd->abstract_to_concrete.find (die->sect_off)
22333 != dwarf2_per_objfile->per_bfd->abstract_to_concrete.end ()))
e4a62c65
TV
22334 {
22335 CORE_ADDR pc = (*get_frame_pc) (baton);
b3b3bada 22336 CORE_ADDR baseaddr = objfile->text_section_offset ();
08feed99 22337 struct gdbarch *gdbarch = objfile->arch ();
e4a62c65 22338
3360b6e7 22339 for (const auto &cand_off
5989a64e 22340 : dwarf2_per_objfile->per_bfd->abstract_to_concrete[die->sect_off])
e4a62c65 22341 {
3360b6e7
TV
22342 struct dwarf2_cu *cand_cu = cu;
22343 struct die_info *cand
22344 = follow_die_offset (cand_off, per_cu->is_dwz, &cand_cu);
22345 if (!cand
22346 || !cand->parent
e4a62c65
TV
22347 || cand->parent->tag != DW_TAG_subprogram)
22348 continue;
22349
22350 CORE_ADDR pc_low, pc_high;
22351 get_scope_pc_bounds (cand->parent, &pc_low, &pc_high, cu);
eba4caf2
TV
22352 if (pc_low == ((CORE_ADDR) -1))
22353 continue;
22354 pc_low = gdbarch_adjust_dwarf2_addr (gdbarch, pc_low + baseaddr);
22355 pc_high = gdbarch_adjust_dwarf2_addr (gdbarch, pc_high + baseaddr);
22356 if (!(pc_low <= pc && pc < pc_high))
e4a62c65
TV
22357 continue;
22358
22359 die = cand;
22360 attr = dwarf2_attr (die, DW_AT_location, cu);
22361 break;
22362 }
22363 }
22364
5c631832
JK
22365 if (!attr)
22366 {
e103e986
JK
22367 /* DWARF: "If there is no such attribute, then there is no effect.".
22368 DATA is ignored if SIZE is 0. */
5c631832 22369
e103e986 22370 retval.data = NULL;
5c631832
JK
22371 retval.size = 0;
22372 }
cd6c91b4 22373 else if (attr->form_is_section_offset ())
8cf6f0b1
TT
22374 {
22375 struct dwarf2_loclist_baton loclist_baton;
22376 CORE_ADDR pc = (*get_frame_pc) (baton);
22377 size_t size;
22378
22379 fill_in_loclist_baton (cu, &loclist_baton, attr);
22380
22381 retval.data = dwarf2_find_location_expression (&loclist_baton,
22382 &size, pc);
22383 retval.size = size;
22384 }
5c631832
JK
22385 else
22386 {
4fc6c0d5 22387 if (!attr->form_is_block ())
9d8780f0 22388 error (_("Dwarf Error: DIE at %s referenced in module %s "
5c631832 22389 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
9d8780f0 22390 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
22391
22392 retval.data = DW_BLOCK (attr)->data;
22393 retval.size = DW_BLOCK (attr)->size;
22394 }
a50264ba 22395 retval.per_objfile = dwarf2_per_objfile;
5c631832 22396 retval.per_cu = cu->per_cu;
918dd910 22397
ed2dc618 22398 age_cached_comp_units (dwarf2_per_objfile);
918dd910 22399
5c631832 22400 return retval;
348e048f
DE
22401}
22402
d4c9a4f8 22403/* See read.h. */
8b9737bf
TT
22404
22405struct dwarf2_locexpr_baton
22406dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
d4c9a4f8 22407 dwarf2_per_cu_data *per_cu,
14095eb3 22408 dwarf2_per_objfile *per_objfile,
8b9737bf
TT
22409 CORE_ADDR (*get_frame_pc) (void *baton),
22410 void *baton)
22411{
9c541725 22412 sect_offset sect_off = per_cu->sect_off + to_underlying (offset_in_cu);
8b9737bf 22413
14095eb3
SM
22414 return dwarf2_fetch_die_loc_sect_off (sect_off, per_cu, per_objfile,
22415 get_frame_pc, baton);
8b9737bf
TT
22416}
22417
b6807d98
TT
22418/* Write a constant of a given type as target-ordered bytes into
22419 OBSTACK. */
22420
22421static const gdb_byte *
22422write_constant_as_bytes (struct obstack *obstack,
22423 enum bfd_endian byte_order,
22424 struct type *type,
22425 ULONGEST value,
22426 LONGEST *len)
22427{
22428 gdb_byte *result;
22429
22430 *len = TYPE_LENGTH (type);
224c3ddb 22431 result = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
22432 store_unsigned_integer (result, *len, byte_order, value);
22433
22434 return result;
22435}
22436
d4c9a4f8 22437/* See read.h. */
b6807d98
TT
22438
22439const gdb_byte *
9c541725 22440dwarf2_fetch_constant_bytes (sect_offset sect_off,
d4c9a4f8 22441 dwarf2_per_cu_data *per_cu,
14095eb3 22442 dwarf2_per_objfile *per_objfile,
d4c9a4f8 22443 obstack *obstack,
b6807d98
TT
22444 LONGEST *len)
22445{
22446 struct dwarf2_cu *cu;
22447 struct die_info *die;
22448 struct attribute *attr;
22449 const gdb_byte *result = NULL;
22450 struct type *type;
22451 LONGEST value;
22452 enum bfd_endian byte_order;
14095eb3 22453 struct objfile *objfile = per_objfile->objfile;
b6807d98 22454
b6807d98 22455 if (per_cu->cu == NULL)
14095eb3 22456 load_cu (per_cu, per_objfile, false);
b6807d98 22457 cu = per_cu->cu;
cc12ce38
DE
22458 if (cu == NULL)
22459 {
22460 /* We shouldn't get here for a dummy CU, but don't crash on the user.
22461 Instead just throw an error, not much else we can do. */
9d8780f0
SM
22462 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
22463 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 22464 }
b6807d98 22465
9c541725 22466 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
b6807d98 22467 if (!die)
9d8780f0
SM
22468 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
22469 sect_offset_str (sect_off), objfile_name (objfile));
b6807d98
TT
22470
22471 attr = dwarf2_attr (die, DW_AT_const_value, cu);
22472 if (attr == NULL)
22473 return NULL;
22474
e3b94546 22475 byte_order = (bfd_big_endian (objfile->obfd)
b6807d98
TT
22476 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
22477
22478 switch (attr->form)
22479 {
22480 case DW_FORM_addr:
336d760d 22481 case DW_FORM_addrx:
b6807d98
TT
22482 case DW_FORM_GNU_addr_index:
22483 {
22484 gdb_byte *tem;
22485
22486 *len = cu->header.addr_size;
224c3ddb 22487 tem = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
22488 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
22489 result = tem;
22490 }
22491 break;
22492 case DW_FORM_string:
22493 case DW_FORM_strp:
cf532bd1 22494 case DW_FORM_strx:
b6807d98
TT
22495 case DW_FORM_GNU_str_index:
22496 case DW_FORM_GNU_strp_alt:
22497 /* DW_STRING is already allocated on the objfile obstack, point
22498 directly to it. */
22499 result = (const gdb_byte *) DW_STRING (attr);
22500 *len = strlen (DW_STRING (attr));
22501 break;
22502 case DW_FORM_block1:
22503 case DW_FORM_block2:
22504 case DW_FORM_block4:
22505 case DW_FORM_block:
22506 case DW_FORM_exprloc:
0224619f 22507 case DW_FORM_data16:
b6807d98
TT
22508 result = DW_BLOCK (attr)->data;
22509 *len = DW_BLOCK (attr)->size;
22510 break;
22511
22512 /* The DW_AT_const_value attributes are supposed to carry the
22513 symbol's value "represented as it would be on the target
22514 architecture." By the time we get here, it's already been
22515 converted to host endianness, so we just need to sign- or
22516 zero-extend it as appropriate. */
22517 case DW_FORM_data1:
22518 type = die_type (die, cu);
22519 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
22520 if (result == NULL)
22521 result = write_constant_as_bytes (obstack, byte_order,
22522 type, value, len);
22523 break;
22524 case DW_FORM_data2:
22525 type = die_type (die, cu);
22526 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
22527 if (result == NULL)
22528 result = write_constant_as_bytes (obstack, byte_order,
22529 type, value, len);
22530 break;
22531 case DW_FORM_data4:
22532 type = die_type (die, cu);
22533 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
22534 if (result == NULL)
22535 result = write_constant_as_bytes (obstack, byte_order,
22536 type, value, len);
22537 break;
22538 case DW_FORM_data8:
22539 type = die_type (die, cu);
22540 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
22541 if (result == NULL)
22542 result = write_constant_as_bytes (obstack, byte_order,
22543 type, value, len);
22544 break;
22545
22546 case DW_FORM_sdata:
663c44ac 22547 case DW_FORM_implicit_const:
b6807d98
TT
22548 type = die_type (die, cu);
22549 result = write_constant_as_bytes (obstack, byte_order,
22550 type, DW_SND (attr), len);
22551 break;
22552
22553 case DW_FORM_udata:
22554 type = die_type (die, cu);
22555 result = write_constant_as_bytes (obstack, byte_order,
22556 type, DW_UNSND (attr), len);
22557 break;
22558
22559 default:
b98664d3 22560 complaint (_("unsupported const value attribute form: '%s'"),
b6807d98
TT
22561 dwarf_form_name (attr->form));
22562 break;
22563 }
22564
22565 return result;
22566}
22567
d4c9a4f8 22568/* See read.h. */
7942e96e
AA
22569
22570struct type *
9c541725 22571dwarf2_fetch_die_type_sect_off (sect_offset sect_off,
14095eb3
SM
22572 dwarf2_per_cu_data *per_cu,
22573 dwarf2_per_objfile *per_objfile)
7942e96e
AA
22574{
22575 struct dwarf2_cu *cu;
22576 struct die_info *die;
22577
7942e96e 22578 if (per_cu->cu == NULL)
14095eb3 22579 load_cu (per_cu, per_objfile, false);
7942e96e
AA
22580 cu = per_cu->cu;
22581 if (!cu)
22582 return NULL;
22583
9c541725 22584 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
7942e96e
AA
22585 if (!die)
22586 return NULL;
22587
22588 return die_type (die, cu);
22589}
22590
8cb5117c 22591/* See read.h. */
8a9b8146
TT
22592
22593struct type *
b64f50a1 22594dwarf2_get_die_type (cu_offset die_offset,
8a9b8146
TT
22595 struct dwarf2_per_cu_data *per_cu)
22596{
9c541725 22597 sect_offset die_offset_sect = per_cu->sect_off + to_underlying (die_offset);
b64f50a1 22598 return get_die_type_at_offset (die_offset_sect, per_cu);
8a9b8146
TT
22599}
22600
ac9ec31b 22601/* Follow type unit SIG_TYPE referenced by SRC_DIE.
348e048f 22602 On entry *REF_CU is the CU of SRC_DIE.
ac9ec31b
DE
22603 On exit *REF_CU is the CU of the result.
22604 Returns NULL if the referenced DIE isn't found. */
348e048f
DE
22605
22606static struct die_info *
ac9ec31b
DE
22607follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
22608 struct dwarf2_cu **ref_cu)
348e048f 22609{
348e048f 22610 struct die_info temp_die;
c24bdb02 22611 struct dwarf2_cu *sig_cu, *cu = *ref_cu;
348e048f
DE
22612 struct die_info *die;
22613
ac9ec31b
DE
22614 /* While it might be nice to assert sig_type->type == NULL here,
22615 we can get here for DW_AT_imported_declaration where we need
22616 the DIE not the type. */
348e048f
DE
22617
22618 /* If necessary, add it to the queue and load its DIEs. */
22619
95554aad 22620 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
ab432490 22621 read_signatured_type (sig_type, (*ref_cu)->per_objfile);
348e048f 22622
348e048f 22623 sig_cu = sig_type->per_cu.cu;
69d751e3 22624 gdb_assert (sig_cu != NULL);
9c541725
PA
22625 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
22626 temp_die.sect_off = sig_type->type_offset_in_section;
9a3c8263 22627 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
9c541725 22628 to_underlying (temp_die.sect_off));
348e048f
DE
22629 if (die)
22630 {
5e22e966 22631 struct dwarf2_per_objfile *dwarf2_per_objfile = (*ref_cu)->per_objfile;
ed2dc618 22632
796a7ff8
DE
22633 /* For .gdb_index version 7 keep track of included TUs.
22634 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
5989a64e
SM
22635 if (dwarf2_per_objfile->per_bfd->index_table != NULL
22636 && dwarf2_per_objfile->per_bfd->index_table->version <= 7)
796a7ff8 22637 {
ae640021 22638 (*ref_cu)->per_cu->imported_symtabs_push (sig_cu->per_cu);
796a7ff8
DE
22639 }
22640
348e048f 22641 *ref_cu = sig_cu;
c24bdb02
KS
22642 if (sig_cu != cu)
22643 sig_cu->ancestor = cu;
22644
348e048f
DE
22645 return die;
22646 }
22647
ac9ec31b
DE
22648 return NULL;
22649}
22650
22651/* Follow signatured type referenced by ATTR in SRC_DIE.
22652 On entry *REF_CU is the CU of SRC_DIE.
22653 On exit *REF_CU is the CU of the result.
22654 The result is the DIE of the type.
22655 If the referenced type cannot be found an error is thrown. */
22656
22657static struct die_info *
ff39bb5e 22658follow_die_sig (struct die_info *src_die, const struct attribute *attr,
ac9ec31b
DE
22659 struct dwarf2_cu **ref_cu)
22660{
22661 ULONGEST signature = DW_SIGNATURE (attr);
22662 struct signatured_type *sig_type;
22663 struct die_info *die;
22664
22665 gdb_assert (attr->form == DW_FORM_ref_sig8);
22666
a2ce51a0 22667 sig_type = lookup_signatured_type (*ref_cu, signature);
ac9ec31b
DE
22668 /* sig_type will be NULL if the signatured type is missing from
22669 the debug info. */
22670 if (sig_type == NULL)
22671 {
22672 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
22673 " from DIE at %s [in module %s]"),
22674 hex_string (signature), sect_offset_str (src_die->sect_off),
5e22e966 22675 objfile_name ((*ref_cu)->per_objfile->objfile));
ac9ec31b
DE
22676 }
22677
22678 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
22679 if (die == NULL)
22680 {
22681 dump_die_for_error (src_die);
22682 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
22683 " from DIE at %s [in module %s]"),
22684 hex_string (signature), sect_offset_str (src_die->sect_off),
5e22e966 22685 objfile_name ((*ref_cu)->per_objfile->objfile));
ac9ec31b
DE
22686 }
22687
22688 return die;
22689}
22690
22691/* Get the type specified by SIGNATURE referenced in DIE/CU,
22692 reading in and processing the type unit if necessary. */
22693
22694static struct type *
22695get_signatured_type (struct die_info *die, ULONGEST signature,
22696 struct dwarf2_cu *cu)
22697{
5e22e966 22698 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ac9ec31b
DE
22699 struct signatured_type *sig_type;
22700 struct dwarf2_cu *type_cu;
22701 struct die_info *type_die;
22702 struct type *type;
22703
a2ce51a0 22704 sig_type = lookup_signatured_type (cu, signature);
ac9ec31b
DE
22705 /* sig_type will be NULL if the signatured type is missing from
22706 the debug info. */
22707 if (sig_type == NULL)
22708 {
b98664d3 22709 complaint (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
22710 " from DIE at %s [in module %s]"),
22711 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 22712 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
22713 return build_error_marker_type (cu, die);
22714 }
22715
22716 /* If we already know the type we're done. */
22717 if (sig_type->type != NULL)
22718 return sig_type->type;
22719
22720 type_cu = cu;
22721 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
22722 if (type_die != NULL)
22723 {
22724 /* N.B. We need to call get_die_type to ensure only one type for this DIE
22725 is created. This is important, for example, because for c++ classes
22726 we need TYPE_NAME set which is only done by new_symbol. Blech. */
22727 type = read_type_die (type_die, type_cu);
22728 if (type == NULL)
22729 {
b98664d3 22730 complaint (_("Dwarf Error: Cannot build signatured type %s"
9d8780f0
SM
22731 " referenced from DIE at %s [in module %s]"),
22732 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 22733 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
22734 type = build_error_marker_type (cu, die);
22735 }
22736 }
22737 else
22738 {
b98664d3 22739 complaint (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
22740 " from DIE at %s [in module %s]"),
22741 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 22742 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
22743 type = build_error_marker_type (cu, die);
22744 }
22745 sig_type->type = type;
22746
22747 return type;
22748}
22749
22750/* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
22751 reading in and processing the type unit if necessary. */
22752
22753static struct type *
ff39bb5e 22754get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
b385a60d 22755 struct dwarf2_cu *cu) /* ARI: editCase function */
ac9ec31b
DE
22756{
22757 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
cd6c91b4 22758 if (attr->form_is_ref ())
ac9ec31b
DE
22759 {
22760 struct dwarf2_cu *type_cu = cu;
22761 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
22762
22763 return read_type_die (type_die, type_cu);
22764 }
22765 else if (attr->form == DW_FORM_ref_sig8)
22766 {
22767 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
22768 }
22769 else
22770 {
5e22e966 22771 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 22772
b98664d3 22773 complaint (_("Dwarf Error: DW_AT_signature has bad form %s in DIE"
9d8780f0
SM
22774 " at %s [in module %s]"),
22775 dwarf_form_name (attr->form), sect_offset_str (die->sect_off),
4262abfb 22776 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
22777 return build_error_marker_type (cu, die);
22778 }
348e048f
DE
22779}
22780
e5fe5e75 22781/* Load the DIEs associated with type unit PER_CU into memory. */
348e048f
DE
22782
22783static void
ab432490
SM
22784load_full_type_unit (dwarf2_per_cu_data *per_cu,
22785 dwarf2_per_objfile *per_objfile)
348e048f 22786{
52dc124a 22787 struct signatured_type *sig_type;
348e048f 22788
f4dc4d17 22789 /* Caller is responsible for ensuring type_unit_groups don't get here. */
197400e8 22790 gdb_assert (! per_cu->type_unit_group_p ());
f4dc4d17 22791
6721b2ec
DE
22792 /* We have the per_cu, but we need the signatured_type.
22793 Fortunately this is an easy translation. */
22794 gdb_assert (per_cu->is_debug_types);
22795 sig_type = (struct signatured_type *) per_cu;
348e048f 22796
6721b2ec 22797 gdb_assert (per_cu->cu == NULL);
348e048f 22798
ab432490 22799 read_signatured_type (sig_type, per_objfile);
348e048f 22800
6721b2ec 22801 gdb_assert (per_cu->cu != NULL);
348e048f
DE
22802}
22803
3019eac3
DE
22804/* Read in a signatured type and build its CU and DIEs.
22805 If the type is a stub for the real type in a DWO file,
22806 read in the real type from the DWO file as well. */
dee91e82
DE
22807
22808static void
ab432490
SM
22809read_signatured_type (signatured_type *sig_type,
22810 dwarf2_per_objfile *per_objfile)
dee91e82
DE
22811{
22812 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
348e048f 22813
3019eac3 22814 gdb_assert (per_cu->is_debug_types);
dee91e82 22815 gdb_assert (per_cu->cu == NULL);
348e048f 22816
ab432490 22817 cutu_reader reader (per_cu, per_objfile, NULL, 0, false);
c0ab21c2
TT
22818
22819 if (!reader.dummy_p)
22820 {
22821 struct dwarf2_cu *cu = reader.cu;
22822 const gdb_byte *info_ptr = reader.info_ptr;
22823
22824 gdb_assert (cu->die_hash == NULL);
22825 cu->die_hash =
22826 htab_create_alloc_ex (cu->header.length / 12,
22827 die_hash,
22828 die_eq,
22829 NULL,
22830 &cu->comp_unit_obstack,
22831 hashtab_obstack_allocate,
22832 dummy_obstack_deallocate);
22833
3e225074 22834 if (reader.comp_unit_die->has_children)
c0ab21c2
TT
22835 reader.comp_unit_die->child
22836 = read_die_and_siblings (&reader, info_ptr, &info_ptr,
22837 reader.comp_unit_die);
22838 cu->dies = reader.comp_unit_die;
22839 /* comp_unit_die is not stored in die_hash, no need. */
22840
22841 /* We try not to read any attributes in this function, because
22842 not all CUs needed for references have been loaded yet, and
22843 symbol table processing isn't initialized. But we have to
22844 set the CU language, or we won't be able to build types
22845 correctly. Similarly, if we do not read the producer, we can
22846 not apply producer-specific interpretation. */
22847 prepare_one_comp_unit (cu, cu->dies, language_minimal);
6751ebae
TT
22848
22849 reader.keep ();
c0ab21c2
TT
22850 }
22851
7ee85ab1 22852 sig_type->per_cu.tu_read = 1;
c906108c
SS
22853}
22854
c906108c
SS
22855/* Decode simple location descriptions.
22856 Given a pointer to a dwarf block that defines a location, compute
7d79de9a
TT
22857 the location and return the value. If COMPUTED is non-null, it is
22858 set to true to indicate that decoding was successful, and false
22859 otherwise. If COMPUTED is null, then this function may emit a
22860 complaint. */
c906108c
SS
22861
22862static CORE_ADDR
7d79de9a 22863decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu, bool *computed)
c906108c 22864{
5e22e966 22865 struct objfile *objfile = cu->per_objfile->objfile;
56eb65bd
SP
22866 size_t i;
22867 size_t size = blk->size;
d521ce57 22868 const gdb_byte *data = blk->data;
21ae7a4d
JK
22869 CORE_ADDR stack[64];
22870 int stacki;
22871 unsigned int bytes_read, unsnd;
22872 gdb_byte op;
c906108c 22873
7d79de9a
TT
22874 if (computed != nullptr)
22875 *computed = false;
22876
21ae7a4d
JK
22877 i = 0;
22878 stacki = 0;
22879 stack[stacki] = 0;
22880 stack[++stacki] = 0;
22881
22882 while (i < size)
22883 {
22884 op = data[i++];
22885 switch (op)
22886 {
22887 case DW_OP_lit0:
22888 case DW_OP_lit1:
22889 case DW_OP_lit2:
22890 case DW_OP_lit3:
22891 case DW_OP_lit4:
22892 case DW_OP_lit5:
22893 case DW_OP_lit6:
22894 case DW_OP_lit7:
22895 case DW_OP_lit8:
22896 case DW_OP_lit9:
22897 case DW_OP_lit10:
22898 case DW_OP_lit11:
22899 case DW_OP_lit12:
22900 case DW_OP_lit13:
22901 case DW_OP_lit14:
22902 case DW_OP_lit15:
22903 case DW_OP_lit16:
22904 case DW_OP_lit17:
22905 case DW_OP_lit18:
22906 case DW_OP_lit19:
22907 case DW_OP_lit20:
22908 case DW_OP_lit21:
22909 case DW_OP_lit22:
22910 case DW_OP_lit23:
22911 case DW_OP_lit24:
22912 case DW_OP_lit25:
22913 case DW_OP_lit26:
22914 case DW_OP_lit27:
22915 case DW_OP_lit28:
22916 case DW_OP_lit29:
22917 case DW_OP_lit30:
22918 case DW_OP_lit31:
22919 stack[++stacki] = op - DW_OP_lit0;
22920 break;
f1bea926 22921
21ae7a4d
JK
22922 case DW_OP_reg0:
22923 case DW_OP_reg1:
22924 case DW_OP_reg2:
22925 case DW_OP_reg3:
22926 case DW_OP_reg4:
22927 case DW_OP_reg5:
22928 case DW_OP_reg6:
22929 case DW_OP_reg7:
22930 case DW_OP_reg8:
22931 case DW_OP_reg9:
22932 case DW_OP_reg10:
22933 case DW_OP_reg11:
22934 case DW_OP_reg12:
22935 case DW_OP_reg13:
22936 case DW_OP_reg14:
22937 case DW_OP_reg15:
22938 case DW_OP_reg16:
22939 case DW_OP_reg17:
22940 case DW_OP_reg18:
22941 case DW_OP_reg19:
22942 case DW_OP_reg20:
22943 case DW_OP_reg21:
22944 case DW_OP_reg22:
22945 case DW_OP_reg23:
22946 case DW_OP_reg24:
22947 case DW_OP_reg25:
22948 case DW_OP_reg26:
22949 case DW_OP_reg27:
22950 case DW_OP_reg28:
22951 case DW_OP_reg29:
22952 case DW_OP_reg30:
22953 case DW_OP_reg31:
22954 stack[++stacki] = op - DW_OP_reg0;
22955 if (i < size)
7d79de9a
TT
22956 {
22957 if (computed == nullptr)
22958 dwarf2_complex_location_expr_complaint ();
22959 else
22960 return 0;
22961 }
21ae7a4d 22962 break;
c906108c 22963
21ae7a4d
JK
22964 case DW_OP_regx:
22965 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
22966 i += bytes_read;
22967 stack[++stacki] = unsnd;
22968 if (i < size)
7d79de9a
TT
22969 {
22970 if (computed == nullptr)
22971 dwarf2_complex_location_expr_complaint ();
22972 else
22973 return 0;
22974 }
21ae7a4d 22975 break;
c906108c 22976
21ae7a4d 22977 case DW_OP_addr:
c8a7a66f
TT
22978 stack[++stacki] = cu->header.read_address (objfile->obfd, &data[i],
22979 &bytes_read);
21ae7a4d
JK
22980 i += bytes_read;
22981 break;
d53d4ac5 22982
21ae7a4d
JK
22983 case DW_OP_const1u:
22984 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
22985 i += 1;
22986 break;
22987
22988 case DW_OP_const1s:
22989 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
22990 i += 1;
22991 break;
22992
22993 case DW_OP_const2u:
22994 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
22995 i += 2;
22996 break;
22997
22998 case DW_OP_const2s:
22999 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
23000 i += 2;
23001 break;
d53d4ac5 23002
21ae7a4d
JK
23003 case DW_OP_const4u:
23004 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
23005 i += 4;
23006 break;
23007
23008 case DW_OP_const4s:
23009 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
23010 i += 4;
23011 break;
23012
585861ea
JK
23013 case DW_OP_const8u:
23014 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
23015 i += 8;
23016 break;
23017
21ae7a4d
JK
23018 case DW_OP_constu:
23019 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
23020 &bytes_read);
23021 i += bytes_read;
23022 break;
23023
23024 case DW_OP_consts:
23025 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
23026 i += bytes_read;
23027 break;
23028
23029 case DW_OP_dup:
23030 stack[stacki + 1] = stack[stacki];
23031 stacki++;
23032 break;
23033
23034 case DW_OP_plus:
23035 stack[stacki - 1] += stack[stacki];
23036 stacki--;
23037 break;
23038
23039 case DW_OP_plus_uconst:
23040 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
23041 &bytes_read);
23042 i += bytes_read;
23043 break;
23044
23045 case DW_OP_minus:
23046 stack[stacki - 1] -= stack[stacki];
23047 stacki--;
23048 break;
23049
23050 case DW_OP_deref:
23051 /* If we're not the last op, then we definitely can't encode
23052 this using GDB's address_class enum. This is valid for partial
23053 global symbols, although the variable's address will be bogus
23054 in the psymtab. */
23055 if (i < size)
7d79de9a
TT
23056 {
23057 if (computed == nullptr)
23058 dwarf2_complex_location_expr_complaint ();
23059 else
23060 return 0;
23061 }
21ae7a4d
JK
23062 break;
23063
23064 case DW_OP_GNU_push_tls_address:
4aa4e28b 23065 case DW_OP_form_tls_address:
21ae7a4d
JK
23066 /* The top of the stack has the offset from the beginning
23067 of the thread control block at which the variable is located. */
23068 /* Nothing should follow this operator, so the top of stack would
23069 be returned. */
23070 /* This is valid for partial global symbols, but the variable's
585861ea
JK
23071 address will be bogus in the psymtab. Make it always at least
23072 non-zero to not look as a variable garbage collected by linker
23073 which have DW_OP_addr 0. */
21ae7a4d 23074 if (i < size)
7d79de9a
TT
23075 {
23076 if (computed == nullptr)
23077 dwarf2_complex_location_expr_complaint ();
23078 else
23079 return 0;
23080 }
585861ea 23081 stack[stacki]++;
21ae7a4d
JK
23082 break;
23083
23084 case DW_OP_GNU_uninit:
7d79de9a
TT
23085 if (computed != nullptr)
23086 return 0;
21ae7a4d
JK
23087 break;
23088
336d760d 23089 case DW_OP_addrx:
3019eac3 23090 case DW_OP_GNU_addr_index:
49f6c839 23091 case DW_OP_GNU_const_index:
3019eac3
DE
23092 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
23093 &bytes_read);
23094 i += bytes_read;
23095 break;
23096
21ae7a4d 23097 default:
7d79de9a
TT
23098 if (computed == nullptr)
23099 {
23100 const char *name = get_DW_OP_name (op);
21ae7a4d 23101
7d79de9a
TT
23102 if (name)
23103 complaint (_("unsupported stack op: '%s'"),
23104 name);
23105 else
23106 complaint (_("unsupported stack op: '%02x'"),
23107 op);
23108 }
21ae7a4d
JK
23109
23110 return (stack[stacki]);
d53d4ac5 23111 }
3c6e0cb3 23112
21ae7a4d
JK
23113 /* Enforce maximum stack depth of SIZE-1 to avoid writing
23114 outside of the allocated space. Also enforce minimum>0. */
23115 if (stacki >= ARRAY_SIZE (stack) - 1)
23116 {
7d79de9a
TT
23117 if (computed == nullptr)
23118 complaint (_("location description stack overflow"));
21ae7a4d
JK
23119 return 0;
23120 }
23121
23122 if (stacki <= 0)
23123 {
7d79de9a
TT
23124 if (computed == nullptr)
23125 complaint (_("location description stack underflow"));
21ae7a4d
JK
23126 return 0;
23127 }
23128 }
7d79de9a
TT
23129
23130 if (computed != nullptr)
23131 *computed = true;
21ae7a4d 23132 return (stack[stacki]);
c906108c
SS
23133}
23134
23135/* memory allocation interface */
23136
c906108c 23137static struct dwarf_block *
7b5a2f43 23138dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c 23139{
8d749320 23140 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
c906108c
SS
23141}
23142
c906108c 23143static struct die_info *
b60c80d6 23144dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
c906108c
SS
23145{
23146 struct die_info *die;
b60c80d6
DJ
23147 size_t size = sizeof (struct die_info);
23148
23149 if (num_attrs > 1)
23150 size += (num_attrs - 1) * sizeof (struct attribute);
c906108c 23151
b60c80d6 23152 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
c906108c
SS
23153 memset (die, 0, sizeof (struct die_info));
23154 return (die);
23155}
2e276125
JB
23156
23157\f
a036ba48 23158
c90ec28a 23159/* Macro support. */
cf2c3c16 23160
9eac9650
TT
23161/* An overload of dwarf_decode_macros that finds the correct section
23162 and ensures it is read in before calling the other overload. */
23163
23164static void
23165dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
23166 int section_is_gnu)
23167{
5e22e966 23168 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
9eac9650 23169 struct objfile *objfile = dwarf2_per_objfile->objfile;
5a0e026f 23170 const struct line_header *lh = cu->line_header;
9eac9650
TT
23171 unsigned int offset_size = cu->header.offset_size;
23172 struct dwarf2_section_info *section;
23173 const char *section_name;
23174
23175 if (cu->dwo_unit != nullptr)
23176 {
23177 if (section_is_gnu)
23178 {
23179 section = &cu->dwo_unit->dwo_file->sections.macro;
23180 section_name = ".debug_macro.dwo";
23181 }
23182 else
23183 {
23184 section = &cu->dwo_unit->dwo_file->sections.macinfo;
23185 section_name = ".debug_macinfo.dwo";
23186 }
23187 }
23188 else
23189 {
23190 if (section_is_gnu)
23191 {
5989a64e 23192 section = &dwarf2_per_objfile->per_bfd->macro;
9eac9650
TT
23193 section_name = ".debug_macro";
23194 }
23195 else
23196 {
5989a64e 23197 section = &dwarf2_per_objfile->per_bfd->macinfo;
9eac9650
TT
23198 section_name = ".debug_macinfo";
23199 }
23200 }
23201
23202 section->read (objfile);
23203 if (section->buffer == nullptr)
23204 {
23205 complaint (_("missing %s section"), section_name);
23206 return;
23207 }
23208
23209 buildsym_compunit *builder = cu->get_builder ();
23210
23211 dwarf_decode_macros (dwarf2_per_objfile, builder, section, lh,
23212 offset_size, offset, section_is_gnu);
23213}
23214
3019eac3
DE
23215/* Return the .debug_loc section to use for CU.
23216 For DWO files use .debug_loc.dwo. */
23217
23218static struct dwarf2_section_info *
23219cu_debug_loc_section (struct dwarf2_cu *cu)
23220{
5e22e966 23221 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
ed2dc618 23222
3019eac3 23223 if (cu->dwo_unit)
43988095
JK
23224 {
23225 struct dwo_sections *sections = &cu->dwo_unit->dwo_file->sections;
5f48f8f3 23226
43988095
JK
23227 return cu->header.version >= 5 ? &sections->loclists : &sections->loc;
23228 }
5989a64e
SM
23229 return (cu->header.version >= 5 ? &dwarf2_per_objfile->per_bfd->loclists
23230 : &dwarf2_per_objfile->per_bfd->loc);
3019eac3
DE
23231}
23232
8cf6f0b1
TT
23233/* A helper function that fills in a dwarf2_loclist_baton. */
23234
23235static void
23236fill_in_loclist_baton (struct dwarf2_cu *cu,
23237 struct dwarf2_loclist_baton *baton,
ff39bb5e 23238 const struct attribute *attr)
8cf6f0b1 23239{
5e22e966 23240 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
3019eac3
DE
23241 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
23242
96b79293 23243 section->read (dwarf2_per_objfile->objfile);
8cf6f0b1 23244
a50264ba 23245 baton->per_objfile = dwarf2_per_objfile;
8cf6f0b1
TT
23246 baton->per_cu = cu->per_cu;
23247 gdb_assert (baton->per_cu);
23248 /* We don't know how long the location list is, but make sure we
23249 don't run off the edge of the section. */
3019eac3
DE
23250 baton->size = section->size - DW_UNSND (attr);
23251 baton->data = section->buffer + DW_UNSND (attr);
2b24b6e4
TT
23252 if (cu->base_address.has_value ())
23253 baton->base_address = *cu->base_address;
23254 else
23255 baton->base_address = 0;
f664829e 23256 baton->from_dwo = cu->dwo_unit != NULL;
8cf6f0b1
TT
23257}
23258
4c2df51b 23259static void
ff39bb5e 23260dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
f1e6e072 23261 struct dwarf2_cu *cu, int is_block)
4c2df51b 23262{
5e22e966 23263 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
bb5ed363 23264 struct objfile *objfile = dwarf2_per_objfile->objfile;
3019eac3 23265 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
bb5ed363 23266
cd6c91b4 23267 if (attr->form_is_section_offset ()
3019eac3 23268 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
99bcc461
DJ
23269 the section. If so, fall through to the complaint in the
23270 other branch. */
2c7d5afc 23271 && DW_UNSND (attr) < section->get_size (objfile))
4c2df51b 23272 {
0d53c4c4 23273 struct dwarf2_loclist_baton *baton;
4c2df51b 23274
8d749320 23275 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
4c2df51b 23276
8cf6f0b1 23277 fill_in_loclist_baton (cu, baton, attr);
be391dca 23278
2b24b6e4 23279 if (!cu->base_address.has_value ())
b98664d3 23280 complaint (_("Location list used without "
3e43a32a 23281 "specifying the CU base address."));
4c2df51b 23282
f1e6e072
TT
23283 SYMBOL_ACLASS_INDEX (sym) = (is_block
23284 ? dwarf2_loclist_block_index
23285 : dwarf2_loclist_index);
0d53c4c4
DJ
23286 SYMBOL_LOCATION_BATON (sym) = baton;
23287 }
23288 else
23289 {
23290 struct dwarf2_locexpr_baton *baton;
23291
8d749320 23292 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
a50264ba 23293 baton->per_objfile = dwarf2_per_objfile;
ae0d2f24
UW
23294 baton->per_cu = cu->per_cu;
23295 gdb_assert (baton->per_cu);
0d53c4c4 23296
4fc6c0d5 23297 if (attr->form_is_block ())
0d53c4c4
DJ
23298 {
23299 /* Note that we're just copying the block's data pointer
23300 here, not the actual data. We're still pointing into the
6502dd73
DJ
23301 info_buffer for SYM's objfile; right now we never release
23302 that buffer, but when we do clean up properly this may
23303 need to change. */
0d53c4c4
DJ
23304 baton->size = DW_BLOCK (attr)->size;
23305 baton->data = DW_BLOCK (attr)->data;
23306 }
23307 else
23308 {
23309 dwarf2_invalid_attrib_class_complaint ("location description",
987012b8 23310 sym->natural_name ());
0d53c4c4 23311 baton->size = 0;
0d53c4c4 23312 }
6e70227d 23313
f1e6e072
TT
23314 SYMBOL_ACLASS_INDEX (sym) = (is_block
23315 ? dwarf2_locexpr_block_index
23316 : dwarf2_locexpr_index);
0d53c4c4
DJ
23317 SYMBOL_LOCATION_BATON (sym) = baton;
23318 }
4c2df51b 23319}
6502dd73 23320
96408a79
SA
23321/* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
23322 (CU_HEADERP is unused in such case) or prepare a temporary copy at
23323 CU_HEADERP first. */
23324
23325static const struct comp_unit_head *
23326per_cu_header_read_in (struct comp_unit_head *cu_headerp,
09ba997f 23327 const struct dwarf2_per_cu_data *per_cu)
96408a79 23328{
d521ce57 23329 const gdb_byte *info_ptr;
96408a79
SA
23330
23331 if (per_cu->cu)
23332 return &per_cu->cu->header;
23333
9c541725 23334 info_ptr = per_cu->section->buffer + to_underlying (per_cu->sect_off);
96408a79
SA
23335
23336 memset (cu_headerp, 0, sizeof (*cu_headerp));
43988095
JK
23337 read_comp_unit_head (cu_headerp, info_ptr, per_cu->section,
23338 rcuh_kind::COMPILE);
96408a79
SA
23339
23340 return cu_headerp;
23341}
23342
09ba997f 23343/* See read.h. */
ae0d2f24 23344
98714339 23345int
09ba997f 23346dwarf2_per_cu_data::addr_size () const
ae0d2f24 23347{
96408a79
SA
23348 struct comp_unit_head cu_header_local;
23349 const struct comp_unit_head *cu_headerp;
c471e790 23350
09ba997f 23351 cu_headerp = per_cu_header_read_in (&cu_header_local, this);
96408a79
SA
23352
23353 return cu_headerp->addr_size;
ae0d2f24
UW
23354}
23355
09ba997f 23356/* See read.h. */
9eae7c52
TT
23357
23358int
09ba997f 23359dwarf2_per_cu_data::offset_size () const
9eae7c52 23360{
96408a79
SA
23361 struct comp_unit_head cu_header_local;
23362 const struct comp_unit_head *cu_headerp;
9c6c53f7 23363
09ba997f 23364 cu_headerp = per_cu_header_read_in (&cu_header_local, this);
96408a79
SA
23365
23366 return cu_headerp->offset_size;
23367}
23368
09ba997f 23369/* See read.h. */
96408a79
SA
23370
23371int
09ba997f 23372dwarf2_per_cu_data::ref_addr_size () const
96408a79
SA
23373{
23374 struct comp_unit_head cu_header_local;
23375 const struct comp_unit_head *cu_headerp;
23376
09ba997f 23377 cu_headerp = per_cu_header_read_in (&cu_header_local, this);
96408a79
SA
23378
23379 if (cu_headerp->version == 2)
23380 return cu_headerp->addr_size;
23381 else
23382 return cu_headerp->offset_size;
181cebd4
JK
23383}
23384
09ba997f 23385/* See read.h. */
9aa1f1e3 23386
09ba997f 23387struct type *
293e7e51 23388dwarf2_cu::addr_type () const
9a49df9d 23389{
293e7e51 23390 struct objfile *objfile = this->per_objfile->objfile;
9a49df9d
AB
23391 struct type *void_type = objfile_type (objfile)->builtin_void;
23392 struct type *addr_type = lookup_pointer_type (void_type);
293e7e51 23393 int addr_size = this->per_cu->addr_size ();
9a49df9d
AB
23394
23395 if (TYPE_LENGTH (addr_type) == addr_size)
23396 return addr_type;
23397
09ba997f 23398 addr_type = addr_sized_int_type (TYPE_UNSIGNED (addr_type));
9a49df9d
AB
23399 return addr_type;
23400}
23401
22b6cd70
TT
23402/* A helper function for dwarf2_find_containing_comp_unit that returns
23403 the index of the result, and that searches a vector. It will
23404 return a result even if the offset in question does not actually
23405 occur in any CU. This is separate so that it can be unit
23406 tested. */
ae038cb0 23407
22b6cd70
TT
23408static int
23409dwarf2_find_containing_comp_unit
23410 (sect_offset sect_off,
23411 unsigned int offset_in_dwz,
23412 const std::vector<dwarf2_per_cu_data *> &all_comp_units)
ae038cb0 23413{
ae038cb0
DJ
23414 int low, high;
23415
ae038cb0 23416 low = 0;
22b6cd70 23417 high = all_comp_units.size () - 1;
ae038cb0
DJ
23418 while (high > low)
23419 {
36586728 23420 struct dwarf2_per_cu_data *mid_cu;
ae038cb0 23421 int mid = low + (high - low) / 2;
9a619af0 23422
22b6cd70 23423 mid_cu = all_comp_units[mid];
36586728 23424 if (mid_cu->is_dwz > offset_in_dwz
81fbbaf9 23425 || (mid_cu->is_dwz == offset_in_dwz
22b6cd70 23426 && mid_cu->sect_off + mid_cu->length > sect_off))
ae038cb0
DJ
23427 high = mid;
23428 else
23429 low = mid + 1;
23430 }
23431 gdb_assert (low == high);
22b6cd70
TT
23432 return low;
23433}
23434
23435/* Locate the .debug_info compilation unit from CU's objfile which contains
23436 the DIE at OFFSET. Raises an error on failure. */
23437
23438static struct dwarf2_per_cu_data *
23439dwarf2_find_containing_comp_unit (sect_offset sect_off,
23440 unsigned int offset_in_dwz,
23441 struct dwarf2_per_objfile *dwarf2_per_objfile)
23442{
23443 int low
23444 = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
5989a64e 23445 dwarf2_per_objfile->per_bfd->all_comp_units);
22b6cd70 23446 struct dwarf2_per_cu_data *this_cu
5989a64e 23447 = dwarf2_per_objfile->per_bfd->all_comp_units[low];
22b6cd70 23448
45b8ae0c 23449 if (this_cu->is_dwz != offset_in_dwz || this_cu->sect_off > sect_off)
ae038cb0 23450 {
36586728 23451 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
8a3fe4f8 23452 error (_("Dwarf Error: could not find partial DIE containing "
9d8780f0
SM
23453 "offset %s [in module %s]"),
23454 sect_offset_str (sect_off),
ed2dc618 23455 bfd_get_filename (dwarf2_per_objfile->objfile->obfd));
10b3939b 23456
5989a64e 23457 gdb_assert (dwarf2_per_objfile->per_bfd->all_comp_units[low-1]->sect_off
9c541725 23458 <= sect_off);
5989a64e 23459 return dwarf2_per_objfile->per_bfd->all_comp_units[low-1];
ae038cb0
DJ
23460 }
23461 else
23462 {
5989a64e 23463 if (low == dwarf2_per_objfile->per_bfd->all_comp_units.size () - 1
9c541725 23464 && sect_off >= this_cu->sect_off + this_cu->length)
9d8780f0 23465 error (_("invalid dwarf2 offset %s"), sect_offset_str (sect_off));
9c541725 23466 gdb_assert (sect_off < this_cu->sect_off + this_cu->length);
ae038cb0
DJ
23467 return this_cu;
23468 }
23469}
23470
22b6cd70
TT
23471#if GDB_SELF_TEST
23472
23473namespace selftests {
23474namespace find_containing_comp_unit {
23475
23476static void
23477run_test ()
23478{
23479 struct dwarf2_per_cu_data one {};
23480 struct dwarf2_per_cu_data two {};
23481 struct dwarf2_per_cu_data three {};
23482 struct dwarf2_per_cu_data four {};
23483
23484 one.length = 5;
23485 two.sect_off = sect_offset (one.length);
23486 two.length = 7;
23487
23488 three.length = 5;
23489 three.is_dwz = 1;
23490 four.sect_off = sect_offset (three.length);
23491 four.length = 7;
23492 four.is_dwz = 1;
23493
23494 std::vector<dwarf2_per_cu_data *> units;
23495 units.push_back (&one);
23496 units.push_back (&two);
23497 units.push_back (&three);
23498 units.push_back (&four);
23499
23500 int result;
23501
23502 result = dwarf2_find_containing_comp_unit (sect_offset (0), 0, units);
23503 SELF_CHECK (units[result] == &one);
23504 result = dwarf2_find_containing_comp_unit (sect_offset (3), 0, units);
23505 SELF_CHECK (units[result] == &one);
23506 result = dwarf2_find_containing_comp_unit (sect_offset (5), 0, units);
23507 SELF_CHECK (units[result] == &two);
23508
23509 result = dwarf2_find_containing_comp_unit (sect_offset (0), 1, units);
23510 SELF_CHECK (units[result] == &three);
23511 result = dwarf2_find_containing_comp_unit (sect_offset (3), 1, units);
23512 SELF_CHECK (units[result] == &three);
23513 result = dwarf2_find_containing_comp_unit (sect_offset (5), 1, units);
23514 SELF_CHECK (units[result] == &four);
23515}
23516
23517}
23518}
23519
23520#endif /* GDB_SELF_TEST */
23521
9e021579 23522/* Initialize dwarf2_cu to read PER_CU, in the context of PER_OBJFILE. */
93311388 23523
9e021579
SM
23524dwarf2_cu::dwarf2_cu (dwarf2_per_cu_data *per_cu,
23525 dwarf2_per_objfile *per_objfile)
23526 : per_cu (per_cu),
23527 per_objfile (per_objfile),
9068261f
AB
23528 mark (false),
23529 has_loclist (false),
23530 checked_producer (false),
23531 producer_is_gxx_lt_4_6 (false),
23532 producer_is_gcc_lt_4_3 (false),
eb77c9df 23533 producer_is_icc (false),
9068261f 23534 producer_is_icc_lt_14 (false),
c258c396 23535 producer_is_codewarrior (false),
9068261f 23536 processing_has_namespace_info (false)
93311388 23537{
fcd3b13d
SM
23538 per_cu->cu = this;
23539}
23540
23541/* Destroy a dwarf2_cu. */
23542
23543dwarf2_cu::~dwarf2_cu ()
23544{
23545 per_cu->cu = NULL;
9816fde3
JK
23546}
23547
23548/* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
23549
23550static void
95554aad
TT
23551prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
23552 enum language pretend_language)
9816fde3
JK
23553{
23554 struct attribute *attr;
23555
23556 /* Set the language we're debugging. */
23557 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
435d3d88 23558 if (attr != nullptr)
9816fde3
JK
23559 set_cu_language (DW_UNSND (attr), cu);
23560 else
9cded63f 23561 {
95554aad 23562 cu->language = pretend_language;
9cded63f
TT
23563 cu->language_defn = language_def (cu->language);
23564 }
dee91e82 23565
7d45c7c3 23566 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
93311388
DE
23567}
23568
ae038cb0
DJ
23569/* Increase the age counter on each cached compilation unit, and free
23570 any that are too old. */
23571
23572static void
ed2dc618 23573age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
ae038cb0
DJ
23574{
23575 struct dwarf2_per_cu_data *per_cu, **last_chain;
23576
5989a64e
SM
23577 dwarf2_clear_marks (dwarf2_per_objfile->per_bfd->read_in_chain);
23578 per_cu = dwarf2_per_objfile->per_bfd->read_in_chain;
ae038cb0
DJ
23579 while (per_cu != NULL)
23580 {
23581 per_cu->cu->last_used ++;
b4f54984 23582 if (per_cu->cu->last_used <= dwarf_max_cache_age)
ae038cb0
DJ
23583 dwarf2_mark (per_cu->cu);
23584 per_cu = per_cu->cu->read_in_chain;
23585 }
23586
5989a64e
SM
23587 per_cu = dwarf2_per_objfile->per_bfd->read_in_chain;
23588 last_chain = &dwarf2_per_objfile->per_bfd->read_in_chain;
ae038cb0
DJ
23589 while (per_cu != NULL)
23590 {
23591 struct dwarf2_per_cu_data *next_cu;
23592
23593 next_cu = per_cu->cu->read_in_chain;
23594
23595 if (!per_cu->cu->mark)
23596 {
fcd3b13d 23597 delete per_cu->cu;
ae038cb0
DJ
23598 *last_chain = next_cu;
23599 }
23600 else
23601 last_chain = &per_cu->cu->read_in_chain;
23602
23603 per_cu = next_cu;
23604 }
23605}
23606
23607/* Remove a single compilation unit from the cache. */
23608
23609static void
dee91e82 23610free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
ae038cb0
DJ
23611{
23612 struct dwarf2_per_cu_data *per_cu, **last_chain;
ed2dc618
SM
23613 struct dwarf2_per_objfile *dwarf2_per_objfile
23614 = target_per_cu->dwarf2_per_objfile;
ae038cb0 23615
5989a64e
SM
23616 per_cu = dwarf2_per_objfile->per_bfd->read_in_chain;
23617 last_chain = &dwarf2_per_objfile->per_bfd->read_in_chain;
ae038cb0
DJ
23618 while (per_cu != NULL)
23619 {
23620 struct dwarf2_per_cu_data *next_cu;
23621
23622 next_cu = per_cu->cu->read_in_chain;
23623
dee91e82 23624 if (per_cu == target_per_cu)
ae038cb0 23625 {
fcd3b13d 23626 delete per_cu->cu;
dee91e82 23627 per_cu->cu = NULL;
ae038cb0
DJ
23628 *last_chain = next_cu;
23629 break;
23630 }
23631 else
23632 last_chain = &per_cu->cu->read_in_chain;
23633
23634 per_cu = next_cu;
23635 }
23636}
23637
dee91e82
DE
23638/* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
23639 We store these in a hash table separate from the DIEs, and preserve them
23640 when the DIEs are flushed out of cache.
23641
23642 The CU "per_cu" pointer is needed because offset alone is not enough to
3019eac3 23643 uniquely identify the type. A file may have multiple .debug_types sections,
c88ee1f0
DE
23644 or the type may come from a DWO file. Furthermore, while it's more logical
23645 to use per_cu->section+offset, with Fission the section with the data is in
23646 the DWO file but we don't know that section at the point we need it.
23647 We have to use something in dwarf2_per_cu_data (or the pointer to it)
23648 because we can enter the lookup routine, get_die_type_at_offset, from
23649 outside this file, and thus won't necessarily have PER_CU->cu.
23650 Fortunately, PER_CU is stable for the life of the objfile. */
1c379e20 23651
dee91e82 23652struct dwarf2_per_cu_offset_and_type
1c379e20 23653{
dee91e82 23654 const struct dwarf2_per_cu_data *per_cu;
9c541725 23655 sect_offset sect_off;
1c379e20
DJ
23656 struct type *type;
23657};
23658
dee91e82 23659/* Hash function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
23660
23661static hashval_t
dee91e82 23662per_cu_offset_and_type_hash (const void *item)
1c379e20 23663{
9a3c8263
SM
23664 const struct dwarf2_per_cu_offset_and_type *ofs
23665 = (const struct dwarf2_per_cu_offset_and_type *) item;
9a619af0 23666
9c541725 23667 return (uintptr_t) ofs->per_cu + to_underlying (ofs->sect_off);
1c379e20
DJ
23668}
23669
dee91e82 23670/* Equality function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
23671
23672static int
dee91e82 23673per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
1c379e20 23674{
9a3c8263
SM
23675 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
23676 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
23677 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
23678 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
9a619af0 23679
dee91e82 23680 return (ofs_lhs->per_cu == ofs_rhs->per_cu
9c541725 23681 && ofs_lhs->sect_off == ofs_rhs->sect_off);
1c379e20
DJ
23682}
23683
23684/* Set the type associated with DIE to TYPE. Save it in CU's hash
7e314c57
JK
23685 table if necessary. For convenience, return TYPE.
23686
23687 The DIEs reading must have careful ordering to:
85102364 23688 * Not cause infinite loops trying to read in DIEs as a prerequisite for
7e314c57
JK
23689 reading current DIE.
23690 * Not trying to dereference contents of still incompletely read in types
23691 while reading in other DIEs.
23692 * Enable referencing still incompletely read in types just by a pointer to
23693 the type without accessing its fields.
23694
23695 Therefore caller should follow these rules:
23696 * Try to fetch any prerequisite types we may need to build this DIE type
23697 before building the type and calling set_die_type.
e71ec853 23698 * After building type call set_die_type for current DIE as soon as
7e314c57
JK
23699 possible before fetching more types to complete the current type.
23700 * Make the type as complete as possible before fetching more types. */
1c379e20 23701
f792889a 23702static struct type *
1c379e20
DJ
23703set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
23704{
5e22e966 23705 struct dwarf2_per_objfile *dwarf2_per_objfile = cu->per_objfile;
dee91e82 23706 struct dwarf2_per_cu_offset_and_type **slot, ofs;
ed2dc618 23707 struct objfile *objfile = dwarf2_per_objfile->objfile;
3cdcd0ce
JB
23708 struct attribute *attr;
23709 struct dynamic_prop prop;
1c379e20 23710
b4ba55a1
JB
23711 /* For Ada types, make sure that the gnat-specific data is always
23712 initialized (if not already set). There are a few types where
23713 we should not be doing so, because the type-specific area is
23714 already used to hold some other piece of info (eg: TYPE_CODE_FLT
23715 where the type-specific area is used to store the floatformat).
23716 But this is not a problem, because the gnat-specific information
23717 is actually not needed for these types. */
23718 if (need_gnat_info (cu)
78134374
SM
23719 && type->code () != TYPE_CODE_FUNC
23720 && type->code () != TYPE_CODE_FLT
23721 && type->code () != TYPE_CODE_METHODPTR
23722 && type->code () != TYPE_CODE_MEMBERPTR
23723 && type->code () != TYPE_CODE_METHOD
b4ba55a1
JB
23724 && !HAVE_GNAT_AUX_INFO (type))
23725 INIT_GNAT_SPECIFIC (type);
23726
3f2f83dd
KB
23727 /* Read DW_AT_allocated and set in type. */
23728 attr = dwarf2_attr (die, DW_AT_allocated, cu);
4fc6c0d5 23729 if (attr != NULL && attr->form_is_block ())
3f2f83dd 23730 {
293e7e51 23731 struct type *prop_type = cu->addr_sized_int_type (false);
9a49df9d 23732 if (attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
5c54719c 23733 type->add_dyn_prop (DYN_PROP_ALLOCATED, prop);
3f2f83dd
KB
23734 }
23735 else if (attr != NULL)
23736 {
b98664d3 23737 complaint (_("DW_AT_allocated has the wrong form (%s) at DIE %s"),
9c541725 23738 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 23739 sect_offset_str (die->sect_off));
3f2f83dd
KB
23740 }
23741
23742 /* Read DW_AT_associated and set in type. */
23743 attr = dwarf2_attr (die, DW_AT_associated, cu);
4fc6c0d5 23744 if (attr != NULL && attr->form_is_block ())
3f2f83dd 23745 {
293e7e51 23746 struct type *prop_type = cu->addr_sized_int_type (false);
9a49df9d 23747 if (attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
5c54719c 23748 type->add_dyn_prop (DYN_PROP_ASSOCIATED, prop);
3f2f83dd
KB
23749 }
23750 else if (attr != NULL)
23751 {
b98664d3 23752 complaint (_("DW_AT_associated has the wrong form (%s) at DIE %s"),
9c541725 23753 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 23754 sect_offset_str (die->sect_off));
3f2f83dd
KB
23755 }
23756
3cdcd0ce
JB
23757 /* Read DW_AT_data_location and set in type. */
23758 attr = dwarf2_attr (die, DW_AT_data_location, cu);
293e7e51 23759 if (attr_to_dynamic_prop (attr, die, cu, &prop, cu->addr_type ()))
5c54719c 23760 type->add_dyn_prop (DYN_PROP_DATA_LOCATION, prop);
3cdcd0ce 23761
ae090bdb
SM
23762 if (dwarf2_per_objfile->die_type_hash == NULL)
23763 dwarf2_per_objfile->die_type_hash
0335378b
TT
23764 = htab_up (htab_create_alloc (127,
23765 per_cu_offset_and_type_hash,
23766 per_cu_offset_and_type_eq,
23767 NULL, xcalloc, xfree));
1c379e20 23768
dee91e82 23769 ofs.per_cu = cu->per_cu;
9c541725 23770 ofs.sect_off = die->sect_off;
1c379e20 23771 ofs.type = type;
dee91e82 23772 slot = (struct dwarf2_per_cu_offset_and_type **)
ae090bdb 23773 htab_find_slot (dwarf2_per_objfile->die_type_hash.get (), &ofs, INSERT);
7e314c57 23774 if (*slot)
b98664d3 23775 complaint (_("A problem internal to GDB: DIE %s has type already set"),
9d8780f0 23776 sect_offset_str (die->sect_off));
8d749320
SM
23777 *slot = XOBNEW (&objfile->objfile_obstack,
23778 struct dwarf2_per_cu_offset_and_type);
1c379e20 23779 **slot = ofs;
f792889a 23780 return type;
1c379e20
DJ
23781}
23782
9c541725 23783/* Look up the type for the die at SECT_OFF in PER_CU in die_type_hash,
02142a6c 23784 or return NULL if the die does not have a saved type. */
1c379e20
DJ
23785
23786static struct type *
9c541725 23787get_die_type_at_offset (sect_offset sect_off,
673bfd45 23788 struct dwarf2_per_cu_data *per_cu)
1c379e20 23789{
dee91e82 23790 struct dwarf2_per_cu_offset_and_type *slot, ofs;
ed2dc618 23791 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
f792889a 23792
ae090bdb 23793 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 23794 return NULL;
1c379e20 23795
dee91e82 23796 ofs.per_cu = per_cu;
9c541725 23797 ofs.sect_off = sect_off;
9a3c8263 23798 slot = ((struct dwarf2_per_cu_offset_and_type *)
ae090bdb 23799 htab_find (dwarf2_per_objfile->die_type_hash.get (), &ofs));
1c379e20
DJ
23800 if (slot)
23801 return slot->type;
23802 else
23803 return NULL;
23804}
23805
02142a6c 23806/* Look up the type for DIE in CU in die_type_hash,
673bfd45
DE
23807 or return NULL if DIE does not have a saved type. */
23808
23809static struct type *
23810get_die_type (struct die_info *die, struct dwarf2_cu *cu)
23811{
9c541725 23812 return get_die_type_at_offset (die->sect_off, cu->per_cu);
673bfd45
DE
23813}
23814
10b3939b
DJ
23815/* Add a dependence relationship from CU to REF_PER_CU. */
23816
23817static void
23818dwarf2_add_dependence (struct dwarf2_cu *cu,
23819 struct dwarf2_per_cu_data *ref_per_cu)
23820{
23821 void **slot;
23822
23823 if (cu->dependencies == NULL)
23824 cu->dependencies
23825 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
23826 NULL, &cu->comp_unit_obstack,
23827 hashtab_obstack_allocate,
23828 dummy_obstack_deallocate);
23829
23830 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
23831 if (*slot == NULL)
23832 *slot = ref_per_cu;
23833}
1c379e20 23834
f504f079
DE
23835/* Subroutine of dwarf2_mark to pass to htab_traverse.
23836 Set the mark field in every compilation unit in the
ae038cb0
DJ
23837 cache that we must keep because we are keeping CU. */
23838
10b3939b
DJ
23839static int
23840dwarf2_mark_helper (void **slot, void *data)
23841{
23842 struct dwarf2_per_cu_data *per_cu;
23843
23844 per_cu = (struct dwarf2_per_cu_data *) *slot;
d07ed419
JK
23845
23846 /* cu->dependencies references may not yet have been ever read if QUIT aborts
23847 reading of the chain. As such dependencies remain valid it is not much
23848 useful to track and undo them during QUIT cleanups. */
23849 if (per_cu->cu == NULL)
23850 return 1;
23851
10b3939b
DJ
23852 if (per_cu->cu->mark)
23853 return 1;
9068261f 23854 per_cu->cu->mark = true;
10b3939b
DJ
23855
23856 if (per_cu->cu->dependencies != NULL)
23857 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
23858
23859 return 1;
23860}
23861
f504f079
DE
23862/* Set the mark field in CU and in every other compilation unit in the
23863 cache that we must keep because we are keeping CU. */
23864
ae038cb0
DJ
23865static void
23866dwarf2_mark (struct dwarf2_cu *cu)
23867{
23868 if (cu->mark)
23869 return;
9068261f 23870 cu->mark = true;
10b3939b
DJ
23871 if (cu->dependencies != NULL)
23872 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
ae038cb0
DJ
23873}
23874
23875static void
23876dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
23877{
23878 while (per_cu)
23879 {
9068261f 23880 per_cu->cu->mark = false;
ae038cb0
DJ
23881 per_cu = per_cu->cu->read_in_chain;
23882 }
72bf9492
DJ
23883}
23884
72bf9492
DJ
23885/* Trivial hash function for partial_die_info: the hash value of a DIE
23886 is its offset in .debug_info for this objfile. */
23887
23888static hashval_t
23889partial_die_hash (const void *item)
23890{
9a3c8263
SM
23891 const struct partial_die_info *part_die
23892 = (const struct partial_die_info *) item;
9a619af0 23893
9c541725 23894 return to_underlying (part_die->sect_off);
72bf9492
DJ
23895}
23896
23897/* Trivial comparison function for partial_die_info structures: two DIEs
23898 are equal if they have the same offset. */
23899
23900static int
23901partial_die_eq (const void *item_lhs, const void *item_rhs)
23902{
9a3c8263
SM
23903 const struct partial_die_info *part_die_lhs
23904 = (const struct partial_die_info *) item_lhs;
23905 const struct partial_die_info *part_die_rhs
23906 = (const struct partial_die_info *) item_rhs;
9a619af0 23907
9c541725 23908 return part_die_lhs->sect_off == part_die_rhs->sect_off;
72bf9492
DJ
23909}
23910
3c3bb058
AB
23911struct cmd_list_element *set_dwarf_cmdlist;
23912struct cmd_list_element *show_dwarf_cmdlist;
ae038cb0 23913
9291a0cd 23914static void
cd4fb1b2
SM
23915show_check_physname (struct ui_file *file, int from_tty,
23916 struct cmd_list_element *c, const char *value)
9291a0cd 23917{
cd4fb1b2
SM
23918 fprintf_filtered (file,
23919 _("Whether to check \"physname\" is %s.\n"),
23920 value);
9291a0cd
TT
23921}
23922
6c265988 23923void _initialize_dwarf2_read ();
cd4fb1b2 23924void
6c265988 23925_initialize_dwarf2_read ()
9291a0cd 23926{
0743fc83 23927 add_basic_prefix_cmd ("dwarf", class_maintenance, _("\
cd4fb1b2 23928Set DWARF specific variables.\n\
590042fc 23929Configure DWARF variables such as the cache size."),
0743fc83
TT
23930 &set_dwarf_cmdlist, "maintenance set dwarf ",
23931 0/*allow-unknown*/, &maintenance_set_cmdlist);
156942c7 23932
0743fc83 23933 add_show_prefix_cmd ("dwarf", class_maintenance, _("\
590042fc
PW
23934Show DWARF specific variables.\n\
23935Show DWARF variables such as the cache size."),
0743fc83
TT
23936 &show_dwarf_cmdlist, "maintenance show dwarf ",
23937 0/*allow-unknown*/, &maintenance_show_cmdlist);
156942c7 23938
cd4fb1b2
SM
23939 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
23940 &dwarf_max_cache_age, _("\
23941Set the upper bound on the age of cached DWARF compilation units."), _("\
23942Show the upper bound on the age of cached DWARF compilation units."), _("\
23943A higher limit means that cached compilation units will be stored\n\
23944in memory longer, and more total memory will be used. Zero disables\n\
23945caching, which can slow down startup."),
23946 NULL,
23947 show_dwarf_max_cache_age,
23948 &set_dwarf_cmdlist,
23949 &show_dwarf_cmdlist);
156942c7 23950
cd4fb1b2
SM
23951 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
23952Set debugging of the DWARF reader."), _("\
23953Show debugging of the DWARF reader."), _("\
23954When enabled (non-zero), debugging messages are printed during DWARF\n\
23955reading and symtab expansion. A value of 1 (one) provides basic\n\
23956information. A value greater than 1 provides more verbose information."),
23957 NULL,
23958 NULL,
23959 &setdebuglist, &showdebuglist);
9291a0cd 23960
cd4fb1b2
SM
23961 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
23962Set debugging of the DWARF DIE reader."), _("\
23963Show debugging of the DWARF DIE reader."), _("\
23964When enabled (non-zero), DIEs are dumped after they are read in.\n\
23965The value is the maximum depth to print."),
23966 NULL,
23967 NULL,
23968 &setdebuglist, &showdebuglist);
9291a0cd 23969
cd4fb1b2
SM
23970 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
23971Set debugging of the dwarf line reader."), _("\
23972Show debugging of the dwarf line reader."), _("\
23973When enabled (non-zero), line number entries are dumped as they are read in.\n\
23974A value of 1 (one) provides basic information.\n\
23975A value greater than 1 provides more verbose information."),
23976 NULL,
23977 NULL,
23978 &setdebuglist, &showdebuglist);
437afbb8 23979
cd4fb1b2
SM
23980 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
23981Set cross-checking of \"physname\" code against demangler."), _("\
23982Show cross-checking of \"physname\" code against demangler."), _("\
23983When enabled, GDB's internal \"physname\" code is checked against\n\
23984the demangler."),
23985 NULL, show_check_physname,
23986 &setdebuglist, &showdebuglist);
900e11f9 23987
e615022a
DE
23988 add_setshow_boolean_cmd ("use-deprecated-index-sections",
23989 no_class, &use_deprecated_index_sections, _("\
23990Set whether to use deprecated gdb_index sections."), _("\
23991Show whether to use deprecated gdb_index sections."), _("\
23992When enabled, deprecated .gdb_index sections are used anyway.\n\
23993Normally they are ignored either because of a missing feature or\n\
23994performance issue.\n\
23995Warning: This option must be enabled before gdb reads the file."),
23996 NULL,
23997 NULL,
23998 &setlist, &showlist);
23999
f1e6e072
TT
24000 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
24001 &dwarf2_locexpr_funcs);
24002 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
24003 &dwarf2_loclist_funcs);
24004
24005 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
24006 &dwarf2_block_frame_base_locexpr_funcs);
24007 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
24008 &dwarf2_block_frame_base_loclist_funcs);
c62446b1
PA
24009
24010#if GDB_SELF_TEST
24011 selftests::register_test ("dw2_expand_symtabs_matching",
24012 selftests::dw2_expand_symtabs_matching::run_test);
22b6cd70
TT
24013 selftests::register_test ("dwarf2_find_containing_comp_unit",
24014 selftests::find_containing_comp_unit::run_test);
c62446b1 24015#endif
6502dd73 24016}
This page took 9.289814 seconds and 4 git commands to generate.