x86: drop a few dead macros
[deliverable/binutils-gdb.git] / gdb / dwarf2read.c
CommitLineData
c906108c 1/* DWARF 2 debugging format support for GDB.
917c78fc 2
42a4f53d 3 Copyright (C) 1994-2019 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"
4de283e4 32#include "dwarf2read.h"
d55e5aa6
TT
33#include "dwarf-index-cache.h"
34#include "dwarf-index-common.h"
4de283e4
TT
35#include "bfd.h"
36#include "elf-bfd.h"
37#include "symtab.h"
38#include "gdbtypes.h"
39#include "objfiles.h"
d55e5aa6 40#include "dwarf2.h"
4de283e4
TT
41#include "buildsym.h"
42#include "demangle.h"
43#include "gdb-demangle.h"
44#include "expression.h"
45#include "filenames.h" /* for DOSish file names */
46#include "macrotab.h"
47#include "language.h"
48#include "complaints.h"
d55e5aa6
TT
49#include "dwarf2expr.h"
50#include "dwarf2loc.h"
4de283e4
TT
51#include "cp-support.h"
52#include "hashtab.h"
53#include "command.h"
d55e5aa6 54#include "gdbcmd.h"
4de283e4
TT
55#include "block.h"
56#include "addrmap.h"
57#include "typeprint.h"
58#include "psympriv.h"
59#include <sys/stat.h>
60#include "completer.h"
61#include "common/vec.h"
62#include "c-lang.h"
d55e5aa6 63#include "go-lang.h"
4de283e4
TT
64#include "valprint.h"
65#include "gdbcore.h" /* for gnutarget */
66#include "gdb/gdb-index.h"
67#include <ctype.h>
68#include "gdb_bfd.h"
69#include "f-lang.h"
70#include "source.h"
71#include "common/filestuff.h"
72#include "build-id.h"
d55e5aa6 73#include "namespace.h"
4de283e4
TT
74#include "common/gdb_unlinker.h"
75#include "common/function-view.h"
76#include "common/gdb_optional.h"
77#include "common/underlying.h"
78#include "common/byte-vector.h"
79#include "common/hash_enum.h"
80#include "filename-seen-cache.h"
b32b108a 81#include "producer.h"
4de283e4
TT
82#include <fcntl.h>
83#include <sys/types.h>
84#include <algorithm>
85#include <unordered_set>
86#include <unordered_map>
87#include "common/selftest.h"
88#include <cmath>
89#include <set>
90#include <forward_list>
c9317f21 91#include "rust-lang.h"
4de283e4 92#include "common/pathstuff.h"
437afbb8 93
73be47f5
DE
94/* When == 1, print basic high level tracing messages.
95 When > 1, be more verbose.
b4f54984
DE
96 This is in contrast to the low level DIE reading of dwarf_die_debug. */
97static unsigned int dwarf_read_debug = 0;
45cfd468 98
d97bc12b 99/* When non-zero, dump DIEs after they are read in. */
b4f54984 100static unsigned int dwarf_die_debug = 0;
d97bc12b 101
27e0867f
DE
102/* When non-zero, dump line number entries as they are read in. */
103static unsigned int dwarf_line_debug = 0;
104
900e11f9
JK
105/* When non-zero, cross-check physname against demangler. */
106static int check_physname = 0;
107
481860b3 108/* When non-zero, do not reject deprecated .gdb_index sections. */
e615022a 109static int use_deprecated_index_sections = 0;
481860b3 110
5bfd760d 111static const struct objfile_key<dwarf2_per_objfile> dwarf2_objfile_data_key;
6502dd73 112
f1e6e072
TT
113/* The "aclass" indices for various kinds of computed DWARF symbols. */
114
115static int dwarf2_locexpr_index;
116static int dwarf2_loclist_index;
117static int dwarf2_locexpr_block_index;
118static int dwarf2_loclist_block_index;
119
3f563c84
PA
120/* An index into a (C++) symbol name component in a symbol name as
121 recorded in the mapped_index's symbol table. For each C++ symbol
122 in the symbol table, we record one entry for the start of each
123 component in the symbol in a table of name components, and then
124 sort the table, in order to be able to binary search symbol names,
125 ignoring leading namespaces, both completion and regular look up.
126 For example, for symbol "A::B::C", we'll have an entry that points
127 to "A::B::C", another that points to "B::C", and another for "C".
128 Note that function symbols in GDB index have no parameter
129 information, just the function/method names. You can convert a
130 name_component to a "const char *" using the
131 'mapped_index::symbol_name_at(offset_type)' method. */
132
133struct name_component
134{
135 /* Offset in the symbol name where the component starts. Stored as
136 a (32-bit) offset instead of a pointer to save memory and improve
137 locality on 64-bit architectures. */
138 offset_type name_offset;
139
140 /* The symbol's index in the symbol and constant pool tables of a
141 mapped_index. */
142 offset_type idx;
143};
144
44ed8f3e
PA
145/* Base class containing bits shared by both .gdb_index and
146 .debug_name indexes. */
147
148struct mapped_index_base
149{
22ca247e
TT
150 mapped_index_base () = default;
151 DISABLE_COPY_AND_ASSIGN (mapped_index_base);
152
44ed8f3e
PA
153 /* The name_component table (a sorted vector). See name_component's
154 description above. */
155 std::vector<name_component> name_components;
156
157 /* How NAME_COMPONENTS is sorted. */
158 enum case_sensitivity name_components_casing;
159
160 /* Return the number of names in the symbol table. */
161 virtual size_t symbol_name_count () const = 0;
162
163 /* Get the name of the symbol at IDX in the symbol table. */
164 virtual const char *symbol_name_at (offset_type idx) const = 0;
165
166 /* Return whether the name at IDX in the symbol table should be
167 ignored. */
168 virtual bool symbol_name_slot_invalid (offset_type idx) const
169 {
170 return false;
171 }
172
173 /* Build the symbol name component sorted vector, if we haven't
174 yet. */
175 void build_name_components ();
176
177 /* Returns the lower (inclusive) and upper (exclusive) bounds of the
178 possible matches for LN_NO_PARAMS in the name component
179 vector. */
180 std::pair<std::vector<name_component>::const_iterator,
181 std::vector<name_component>::const_iterator>
182 find_name_components_bounds (const lookup_name_info &ln_no_params) const;
183
184 /* Prevent deleting/destroying via a base class pointer. */
185protected:
186 ~mapped_index_base() = default;
187};
188
9291a0cd
TT
189/* A description of the mapped index. The file format is described in
190 a comment by the code that writes the index. */
fc898b42 191struct mapped_index final : public mapped_index_base
9291a0cd 192{
f00a2de2
PA
193 /* A slot/bucket in the symbol table hash. */
194 struct symbol_table_slot
195 {
196 const offset_type name;
197 const offset_type vec;
198 };
199
559a7a62 200 /* Index data format version. */
3063847f 201 int version = 0;
559a7a62 202
f00a2de2
PA
203 /* The address table data. */
204 gdb::array_view<const gdb_byte> address_table;
b11b1f88 205
3876f04e 206 /* The symbol table, implemented as a hash table. */
f00a2de2 207 gdb::array_view<symbol_table_slot> symbol_table;
b11b1f88 208
9291a0cd 209 /* A pointer to the constant pool. */
3063847f 210 const char *constant_pool = nullptr;
3f563c84 211
44ed8f3e
PA
212 bool symbol_name_slot_invalid (offset_type idx) const override
213 {
214 const auto &bucket = this->symbol_table[idx];
9ab08412 215 return bucket.name == 0 && bucket.vec == 0;
44ed8f3e 216 }
5c58de74 217
3f563c84
PA
218 /* Convenience method to get at the name of the symbol at IDX in the
219 symbol table. */
44ed8f3e 220 const char *symbol_name_at (offset_type idx) const override
f00a2de2 221 { return this->constant_pool + MAYBE_SWAP (this->symbol_table[idx].name); }
5c58de74 222
44ed8f3e
PA
223 size_t symbol_name_count () const override
224 { return this->symbol_table.size (); }
9291a0cd
TT
225};
226
927aa2e7
JK
227/* A description of the mapped .debug_names.
228 Uninitialized map has CU_COUNT 0. */
fc898b42 229struct mapped_debug_names final : public mapped_index_base
927aa2e7 230{
ed2dc618
SM
231 mapped_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile_)
232 : dwarf2_per_objfile (dwarf2_per_objfile_)
233 {}
234
235 struct dwarf2_per_objfile *dwarf2_per_objfile;
927aa2e7
JK
236 bfd_endian dwarf5_byte_order;
237 bool dwarf5_is_dwarf64;
238 bool augmentation_is_gdb;
239 uint8_t offset_size;
240 uint32_t cu_count = 0;
241 uint32_t tu_count, bucket_count, name_count;
242 const gdb_byte *cu_table_reordered, *tu_table_reordered;
243 const uint32_t *bucket_table_reordered, *hash_table_reordered;
244 const gdb_byte *name_table_string_offs_reordered;
245 const gdb_byte *name_table_entry_offs_reordered;
246 const gdb_byte *entry_pool;
247
248 struct index_val
249 {
250 ULONGEST dwarf_tag;
251 struct attr
252 {
253 /* Attribute name DW_IDX_*. */
254 ULONGEST dw_idx;
255
256 /* Attribute form DW_FORM_*. */
257 ULONGEST form;
258
259 /* Value if FORM is DW_FORM_implicit_const. */
260 LONGEST implicit_const;
261 };
262 std::vector<attr> attr_vec;
263 };
264
265 std::unordered_map<ULONGEST, index_val> abbrev_map;
266
267 const char *namei_to_name (uint32_t namei) const;
44ed8f3e
PA
268
269 /* Implementation of the mapped_index_base virtual interface, for
270 the name_components cache. */
271
272 const char *symbol_name_at (offset_type idx) const override
273 { return namei_to_name (idx); }
274
275 size_t symbol_name_count () const override
276 { return this->name_count; }
927aa2e7
JK
277};
278
cd4fb1b2 279/* See dwarf2read.h. */
ed2dc618 280
cd4fb1b2 281dwarf2_per_objfile *
ed2dc618
SM
282get_dwarf2_per_objfile (struct objfile *objfile)
283{
5bfd760d 284 return dwarf2_objfile_data_key.get (objfile);
ed2dc618 285}
c906108c 286
251d32d9 287/* Default names of the debugging sections. */
c906108c 288
233a11ab
CS
289/* Note that if the debugging section has been compressed, it might
290 have a name like .zdebug_info. */
291
9cdd5dbd
DE
292static const struct dwarf2_debug_sections dwarf2_elf_names =
293{
251d32d9
TG
294 { ".debug_info", ".zdebug_info" },
295 { ".debug_abbrev", ".zdebug_abbrev" },
296 { ".debug_line", ".zdebug_line" },
297 { ".debug_loc", ".zdebug_loc" },
43988095 298 { ".debug_loclists", ".zdebug_loclists" },
251d32d9 299 { ".debug_macinfo", ".zdebug_macinfo" },
cf2c3c16 300 { ".debug_macro", ".zdebug_macro" },
251d32d9 301 { ".debug_str", ".zdebug_str" },
43988095 302 { ".debug_line_str", ".zdebug_line_str" },
251d32d9 303 { ".debug_ranges", ".zdebug_ranges" },
43988095 304 { ".debug_rnglists", ".zdebug_rnglists" },
251d32d9 305 { ".debug_types", ".zdebug_types" },
3019eac3 306 { ".debug_addr", ".zdebug_addr" },
251d32d9
TG
307 { ".debug_frame", ".zdebug_frame" },
308 { ".eh_frame", NULL },
24d3216f 309 { ".gdb_index", ".zgdb_index" },
927aa2e7
JK
310 { ".debug_names", ".zdebug_names" },
311 { ".debug_aranges", ".zdebug_aranges" },
24d3216f 312 23
251d32d9 313};
c906108c 314
80626a55 315/* List of DWO/DWP sections. */
3019eac3 316
80626a55 317static const struct dwop_section_names
3019eac3
DE
318{
319 struct dwarf2_section_names abbrev_dwo;
320 struct dwarf2_section_names info_dwo;
321 struct dwarf2_section_names line_dwo;
322 struct dwarf2_section_names loc_dwo;
43988095 323 struct dwarf2_section_names loclists_dwo;
09262596
DE
324 struct dwarf2_section_names macinfo_dwo;
325 struct dwarf2_section_names macro_dwo;
3019eac3
DE
326 struct dwarf2_section_names str_dwo;
327 struct dwarf2_section_names str_offsets_dwo;
328 struct dwarf2_section_names types_dwo;
80626a55
DE
329 struct dwarf2_section_names cu_index;
330 struct dwarf2_section_names tu_index;
3019eac3 331}
80626a55 332dwop_section_names =
3019eac3
DE
333{
334 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
335 { ".debug_info.dwo", ".zdebug_info.dwo" },
336 { ".debug_line.dwo", ".zdebug_line.dwo" },
337 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
43988095 338 { ".debug_loclists.dwo", ".zdebug_loclists.dwo" },
09262596
DE
339 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
340 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
3019eac3
DE
341 { ".debug_str.dwo", ".zdebug_str.dwo" },
342 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
343 { ".debug_types.dwo", ".zdebug_types.dwo" },
80626a55
DE
344 { ".debug_cu_index", ".zdebug_cu_index" },
345 { ".debug_tu_index", ".zdebug_tu_index" },
3019eac3
DE
346};
347
c906108c
SS
348/* local data types */
349
107d2387
AC
350/* The data in a compilation unit header, after target2host
351 translation, looks like this. */
c906108c 352struct comp_unit_head
a738430d 353{
c764a876 354 unsigned int length;
a738430d 355 short version;
a738430d
MK
356 unsigned char addr_size;
357 unsigned char signed_addr_p;
9c541725 358 sect_offset abbrev_sect_off;
57349743 359
a738430d
MK
360 /* Size of file offsets; either 4 or 8. */
361 unsigned int offset_size;
57349743 362
a738430d
MK
363 /* Size of the length field; either 4 or 12. */
364 unsigned int initial_length_size;
57349743 365
43988095
JK
366 enum dwarf_unit_type unit_type;
367
a738430d
MK
368 /* Offset to the first byte of this compilation unit header in the
369 .debug_info section, for resolving relative reference dies. */
9c541725 370 sect_offset sect_off;
57349743 371
d00adf39
DE
372 /* Offset to first die in this cu from the start of the cu.
373 This will be the first byte following the compilation unit header. */
9c541725 374 cu_offset first_die_cu_offset;
43988095
JK
375
376 /* 64-bit signature of this type unit - it is valid only for
377 UNIT_TYPE DW_UT_type. */
378 ULONGEST signature;
379
380 /* For types, offset in the type's DIE of the type defined by this TU. */
9c541725 381 cu_offset type_cu_offset_in_tu;
a738430d 382};
c906108c 383
3da10d80
KS
384/* Type used for delaying computation of method physnames.
385 See comments for compute_delayed_physnames. */
386struct delayed_method_info
387{
388 /* The type to which the method is attached, i.e., its parent class. */
389 struct type *type;
390
391 /* The index of the method in the type's function fieldlists. */
392 int fnfield_index;
393
394 /* The index of the method in the fieldlist. */
395 int index;
396
397 /* The name of the DIE. */
398 const char *name;
399
400 /* The DIE associated with this method. */
401 struct die_info *die;
402};
403
e7c27a73
DJ
404/* Internal state when decoding a particular compilation unit. */
405struct dwarf2_cu
406{
fcd3b13d
SM
407 explicit dwarf2_cu (struct dwarf2_per_cu_data *per_cu);
408 ~dwarf2_cu ();
409
410 DISABLE_COPY_AND_ASSIGN (dwarf2_cu);
411
c24bdb02
KS
412 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
413 Create the set of symtabs used by this TU, or if this TU is sharing
414 symtabs with another TU and the symtabs have already been created
415 then restore those symtabs in the line header.
416 We don't need the pc/line-number mapping for type units. */
417 void setup_type_unit_groups (struct die_info *die);
418
419 /* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
420 buildsym_compunit constructor. */
421 struct compunit_symtab *start_symtab (const char *name,
422 const char *comp_dir,
423 CORE_ADDR low_pc);
424
425 /* Reset the builder. */
426 void reset_builder () { m_builder.reset (); }
427
d00adf39 428 /* The header of the compilation unit. */
fcd3b13d 429 struct comp_unit_head header {};
e142c38c 430
d00adf39 431 /* Base address of this compilation unit. */
fcd3b13d 432 CORE_ADDR base_address = 0;
d00adf39
DE
433
434 /* Non-zero if base_address has been set. */
fcd3b13d 435 int base_known = 0;
d00adf39 436
e142c38c 437 /* The language we are debugging. */
fcd3b13d
SM
438 enum language language = language_unknown;
439 const struct language_defn *language_defn = nullptr;
e142c38c 440
fcd3b13d 441 const char *producer = nullptr;
b0f35d58 442
c24bdb02 443private:
804d2729
TT
444 /* The symtab builder for this CU. This is only non-NULL when full
445 symbols are being read. */
c24bdb02 446 std::unique_ptr<buildsym_compunit> m_builder;
804d2729 447
c24bdb02 448public:
e142c38c
DJ
449 /* The generic symbol table building routines have separate lists for
450 file scope symbols and all all other scopes (local scopes). So
451 we need to select the right one to pass to add_symbol_to_list().
452 We do it by keeping a pointer to the correct list in list_in_scope.
453
454 FIXME: The original dwarf code just treated the file scope as the
455 first local scope, and all other local scopes as nested local
456 scopes, and worked fine. Check to see if we really need to
457 distinguish these in buildsym.c. */
fcd3b13d 458 struct pending **list_in_scope = nullptr;
e142c38c 459
b64f50a1
JK
460 /* Hash table holding all the loaded partial DIEs
461 with partial_die->offset.SECT_OFF as hash. */
fcd3b13d 462 htab_t partial_dies = nullptr;
72bf9492
DJ
463
464 /* Storage for things with the same lifetime as this read-in compilation
465 unit, including partial DIEs. */
fcd3b13d 466 auto_obstack comp_unit_obstack;
72bf9492 467
ae038cb0
DJ
468 /* When multiple dwarf2_cu structures are living in memory, this field
469 chains them all together, so that they can be released efficiently.
470 We will probably also want a generation counter so that most-recently-used
471 compilation units are cached... */
fcd3b13d 472 struct dwarf2_per_cu_data *read_in_chain = nullptr;
ae038cb0 473
69d751e3 474 /* Backlink to our per_cu entry. */
ae038cb0
DJ
475 struct dwarf2_per_cu_data *per_cu;
476
477 /* How many compilation units ago was this CU last referenced? */
fcd3b13d 478 int last_used = 0;
ae038cb0 479
b64f50a1
JK
480 /* A hash table of DIE cu_offset for following references with
481 die_info->offset.sect_off as hash. */
fcd3b13d 482 htab_t die_hash = nullptr;
10b3939b
DJ
483
484 /* Full DIEs if read in. */
fcd3b13d 485 struct die_info *dies = nullptr;
10b3939b
DJ
486
487 /* A set of pointers to dwarf2_per_cu_data objects for compilation
488 units referenced by this one. Only set during full symbol processing;
489 partial symbol tables do not have dependencies. */
fcd3b13d 490 htab_t dependencies = nullptr;
10b3939b 491
cb1df416 492 /* Header data from the line table, during full symbol processing. */
fcd3b13d 493 struct line_header *line_header = nullptr;
4c8aa72d
PA
494 /* Non-NULL if LINE_HEADER is owned by this DWARF_CU. Otherwise,
495 it's owned by dwarf2_per_objfile::line_header_hash. If non-NULL,
496 this is the DW_TAG_compile_unit die for this CU. We'll hold on
497 to the line header as long as this DIE is being processed. See
498 process_die_scope. */
fcd3b13d 499 die_info *line_header_die_owner = nullptr;
cb1df416 500
3da10d80
KS
501 /* A list of methods which need to have physnames computed
502 after all type information has been read. */
c89b44cd 503 std::vector<delayed_method_info> method_list;
3da10d80 504
96408a79 505 /* To be copied to symtab->call_site_htab. */
fcd3b13d 506 htab_t call_site_htab = nullptr;
96408a79 507
034e5797
DE
508 /* Non-NULL if this CU came from a DWO file.
509 There is an invariant here that is important to remember:
510 Except for attributes copied from the top level DIE in the "main"
511 (or "stub") file in preparation for reading the DWO file
512 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
513 Either there isn't a DWO file (in which case this is NULL and the point
514 is moot), or there is and either we're not going to read it (in which
515 case this is NULL) or there is and we are reading it (in which case this
516 is non-NULL). */
fcd3b13d 517 struct dwo_unit *dwo_unit = nullptr;
3019eac3
DE
518
519 /* The DW_AT_addr_base attribute if present, zero otherwise
520 (zero is a valid value though).
1dbab08b 521 Note this value comes from the Fission stub CU/TU's DIE. */
fcd3b13d 522 ULONGEST addr_base = 0;
3019eac3 523
2e3cf129
DE
524 /* The DW_AT_ranges_base attribute if present, zero otherwise
525 (zero is a valid value though).
1dbab08b 526 Note this value comes from the Fission stub CU/TU's DIE.
2e3cf129 527 Also note that the value is zero in the non-DWO case so this value can
ab435259
DE
528 be used without needing to know whether DWO files are in use or not.
529 N.B. This does not apply to DW_AT_ranges appearing in
530 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
531 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
532 DW_AT_ranges_base *would* have to be applied, and we'd have to care
533 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
fcd3b13d 534 ULONGEST ranges_base = 0;
2e3cf129 535
c9317f21
TT
536 /* When reading debug info generated by older versions of rustc, we
537 have to rewrite some union types to be struct types with a
538 variant part. This rewriting must be done after the CU is fully
539 read in, because otherwise at the point of rewriting some struct
540 type might not have been fully processed. So, we keep a list of
541 all such types here and process them after expansion. */
542 std::vector<struct type *> rust_unions;
543
ae038cb0 544 /* Mark used when releasing cached dies. */
9068261f 545 bool mark : 1;
ae038cb0 546
8be455d7
JK
547 /* This CU references .debug_loc. See the symtab->locations_valid field.
548 This test is imperfect as there may exist optimized debug code not using
549 any location list and still facing inlining issues if handled as
550 unoptimized code. For a future better test see GCC PR other/32998. */
9068261f 551 bool has_loclist : 1;
ba919b58 552
9068261f 553 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is true
1b80a9fa
JK
554 if all the producer_is_* fields are valid. This information is cached
555 because profiling CU expansion showed excessive time spent in
556 producer_is_gxx_lt_4_6. */
9068261f
AB
557 bool checked_producer : 1;
558 bool producer_is_gxx_lt_4_6 : 1;
559 bool producer_is_gcc_lt_4_3 : 1;
eb77c9df 560 bool producer_is_icc : 1;
9068261f 561 bool producer_is_icc_lt_14 : 1;
c258c396 562 bool producer_is_codewarrior : 1;
4d4ec4e5 563
9068261f 564 /* When true, the file that we're processing is known to have
4d4ec4e5
TT
565 debugging info for C++ namespaces. GCC 3.3.x did not produce
566 this information, but later versions do. */
567
9068261f 568 bool processing_has_namespace_info : 1;
d590ff25
YQ
569
570 struct partial_die_info *find_partial_die (sect_offset sect_off);
c24bdb02
KS
571
572 /* If this CU was inherited by another CU (via specification,
573 abstract_origin, etc), this is the ancestor CU. */
574 dwarf2_cu *ancestor;
575
576 /* Get the buildsym_compunit for this CU. */
577 buildsym_compunit *get_builder ()
578 {
579 /* If this CU has a builder associated with it, use that. */
580 if (m_builder != nullptr)
581 return m_builder.get ();
582
583 /* Otherwise, search ancestors for a valid builder. */
584 if (ancestor != nullptr)
585 return ancestor->get_builder ();
586
587 return nullptr;
588 }
e7c27a73
DJ
589};
590
094b34ac
DE
591/* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
592 This includes type_unit_group and quick_file_names. */
593
594struct stmt_list_hash
595{
596 /* The DWO unit this table is from or NULL if there is none. */
597 struct dwo_unit *dwo_unit;
598
599 /* Offset in .debug_line or .debug_line.dwo. */
9c541725 600 sect_offset line_sect_off;
094b34ac
DE
601};
602
f4dc4d17
DE
603/* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
604 an object of this type. */
605
606struct type_unit_group
607{
0186c6a7 608 /* dwarf2read.c's main "handle" on a TU symtab.
f4dc4d17
DE
609 To simplify things we create an artificial CU that "includes" all the
610 type units using this stmt_list so that the rest of the code still has
611 a "per_cu" handle on the symtab.
612 This PER_CU is recognized by having no section. */
8a0459fd 613#define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
094b34ac
DE
614 struct dwarf2_per_cu_data per_cu;
615
0186c6a7
DE
616 /* The TUs that share this DW_AT_stmt_list entry.
617 This is added to while parsing type units to build partial symtabs,
618 and is deleted afterwards and not used again. */
619 VEC (sig_type_ptr) *tus;
f4dc4d17 620
43f3e411 621 /* The compunit symtab.
094b34ac 622 Type units in a group needn't all be defined in the same source file,
43f3e411
DE
623 so we create an essentially anonymous symtab as the compunit symtab. */
624 struct compunit_symtab *compunit_symtab;
f4dc4d17 625
094b34ac
DE
626 /* The data used to construct the hash key. */
627 struct stmt_list_hash hash;
f4dc4d17
DE
628
629 /* The number of symtabs from the line header.
630 The value here must match line_header.num_file_names. */
631 unsigned int num_symtabs;
632
633 /* The symbol tables for this TU (obtained from the files listed in
634 DW_AT_stmt_list).
635 WARNING: The order of entries here must match the order of entries
636 in the line header. After the first TU using this type_unit_group, the
637 line header for the subsequent TUs is recreated from this. This is done
638 because we need to use the same symtabs for each TU using the same
639 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
640 there's no guarantee the line header doesn't have duplicate entries. */
641 struct symtab **symtabs;
642};
643
73869dc2 644/* These sections are what may appear in a (real or virtual) DWO file. */
3019eac3
DE
645
646struct dwo_sections
647{
648 struct dwarf2_section_info abbrev;
3019eac3
DE
649 struct dwarf2_section_info line;
650 struct dwarf2_section_info loc;
43988095 651 struct dwarf2_section_info loclists;
09262596
DE
652 struct dwarf2_section_info macinfo;
653 struct dwarf2_section_info macro;
3019eac3
DE
654 struct dwarf2_section_info str;
655 struct dwarf2_section_info str_offsets;
80626a55
DE
656 /* In the case of a virtual DWO file, these two are unused. */
657 struct dwarf2_section_info info;
fd5866f6 658 std::vector<dwarf2_section_info> types;
3019eac3
DE
659};
660
c88ee1f0 661/* CUs/TUs in DWP/DWO files. */
3019eac3
DE
662
663struct dwo_unit
664{
665 /* Backlink to the containing struct dwo_file. */
666 struct dwo_file *dwo_file;
667
668 /* The "id" that distinguishes this CU/TU.
669 .debug_info calls this "dwo_id", .debug_types calls this "signature".
670 Since signatures came first, we stick with it for consistency. */
671 ULONGEST signature;
672
673 /* The section this CU/TU lives in, in the DWO file. */
8a0459fd 674 struct dwarf2_section_info *section;
3019eac3 675
9c541725
PA
676 /* Same as dwarf2_per_cu_data:{sect_off,length} but in the DWO section. */
677 sect_offset sect_off;
3019eac3
DE
678 unsigned int length;
679
680 /* For types, offset in the type's DIE of the type defined by this TU. */
681 cu_offset type_offset_in_tu;
682};
683
73869dc2
DE
684/* include/dwarf2.h defines the DWP section codes.
685 It defines a max value but it doesn't define a min value, which we
686 use for error checking, so provide one. */
687
688enum dwp_v2_section_ids
689{
690 DW_SECT_MIN = 1
691};
692
80626a55 693/* Data for one DWO file.
57d63ce2
DE
694
695 This includes virtual DWO files (a virtual DWO file is a DWO file as it
696 appears in a DWP file). DWP files don't really have DWO files per se -
697 comdat folding of types "loses" the DWO file they came from, and from
698 a high level view DWP files appear to contain a mass of random types.
699 However, to maintain consistency with the non-DWP case we pretend DWP
700 files contain virtual DWO files, and we assign each TU with one virtual
701 DWO file (generally based on the line and abbrev section offsets -
702 a heuristic that seems to work in practice). */
3019eac3
DE
703
704struct dwo_file
705{
51ac9db5
SM
706 dwo_file () = default;
707 DISABLE_COPY_AND_ASSIGN (dwo_file);
708
0ac5b59e 709 /* The DW_AT_GNU_dwo_name attribute.
80626a55
DE
710 For virtual DWO files the name is constructed from the section offsets
711 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
712 from related CU+TUs. */
51ac9db5 713 const char *dwo_name = nullptr;
0ac5b59e
DE
714
715 /* The DW_AT_comp_dir attribute. */
51ac9db5 716 const char *comp_dir = nullptr;
3019eac3 717
80626a55
DE
718 /* The bfd, when the file is open. Otherwise this is NULL.
719 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
fb1eb2f9 720 gdb_bfd_ref_ptr dbfd;
3019eac3 721
73869dc2
DE
722 /* The sections that make up this DWO file.
723 Remember that for virtual DWO files in DWP V2, these are virtual
724 sections (for lack of a better name). */
51ac9db5 725 struct dwo_sections sections {};
3019eac3 726
33c5cd75
DB
727 /* The CUs in the file.
728 Each element is a struct dwo_unit. Multiple CUs per DWO are supported as
729 an extension to handle LLVM's Link Time Optimization output (where
730 multiple source files may be compiled into a single object/dwo pair). */
51ac9db5 731 htab_t cus {};
3019eac3
DE
732
733 /* Table of TUs in the file.
734 Each element is a struct dwo_unit. */
51ac9db5 735 htab_t tus {};
3019eac3
DE
736};
737
80626a55
DE
738/* These sections are what may appear in a DWP file. */
739
740struct dwp_sections
741{
73869dc2 742 /* These are used by both DWP version 1 and 2. */
80626a55
DE
743 struct dwarf2_section_info str;
744 struct dwarf2_section_info cu_index;
745 struct dwarf2_section_info tu_index;
73869dc2
DE
746
747 /* These are only used by DWP version 2 files.
748 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
749 sections are referenced by section number, and are not recorded here.
750 In DWP version 2 there is at most one copy of all these sections, each
751 section being (effectively) comprised of the concatenation of all of the
752 individual sections that exist in the version 1 format.
753 To keep the code simple we treat each of these concatenated pieces as a
754 section itself (a virtual section?). */
755 struct dwarf2_section_info abbrev;
756 struct dwarf2_section_info info;
757 struct dwarf2_section_info line;
758 struct dwarf2_section_info loc;
759 struct dwarf2_section_info macinfo;
760 struct dwarf2_section_info macro;
761 struct dwarf2_section_info str_offsets;
762 struct dwarf2_section_info types;
80626a55
DE
763};
764
73869dc2
DE
765/* These sections are what may appear in a virtual DWO file in DWP version 1.
766 A virtual DWO file is a DWO file as it appears in a DWP file. */
80626a55 767
73869dc2 768struct virtual_v1_dwo_sections
80626a55
DE
769{
770 struct dwarf2_section_info abbrev;
771 struct dwarf2_section_info line;
772 struct dwarf2_section_info loc;
773 struct dwarf2_section_info macinfo;
774 struct dwarf2_section_info macro;
775 struct dwarf2_section_info str_offsets;
776 /* Each DWP hash table entry records one CU or one TU.
8a0459fd 777 That is recorded here, and copied to dwo_unit.section. */
80626a55
DE
778 struct dwarf2_section_info info_or_types;
779};
780
73869dc2
DE
781/* Similar to virtual_v1_dwo_sections, but for DWP version 2.
782 In version 2, the sections of the DWO files are concatenated together
783 and stored in one section of that name. Thus each ELF section contains
784 several "virtual" sections. */
785
786struct virtual_v2_dwo_sections
787{
788 bfd_size_type abbrev_offset;
789 bfd_size_type abbrev_size;
790
791 bfd_size_type line_offset;
792 bfd_size_type line_size;
793
794 bfd_size_type loc_offset;
795 bfd_size_type loc_size;
796
797 bfd_size_type macinfo_offset;
798 bfd_size_type macinfo_size;
799
800 bfd_size_type macro_offset;
801 bfd_size_type macro_size;
802
803 bfd_size_type str_offsets_offset;
804 bfd_size_type str_offsets_size;
805
806 /* Each DWP hash table entry records one CU or one TU.
807 That is recorded here, and copied to dwo_unit.section. */
808 bfd_size_type info_or_types_offset;
809 bfd_size_type info_or_types_size;
810};
811
80626a55
DE
812/* Contents of DWP hash tables. */
813
814struct dwp_hash_table
815{
73869dc2 816 uint32_t version, nr_columns;
80626a55 817 uint32_t nr_units, nr_slots;
73869dc2
DE
818 const gdb_byte *hash_table, *unit_table;
819 union
820 {
821 struct
822 {
823 const gdb_byte *indices;
824 } v1;
825 struct
826 {
827 /* This is indexed by column number and gives the id of the section
828 in that column. */
829#define MAX_NR_V2_DWO_SECTIONS \
830 (1 /* .debug_info or .debug_types */ \
831 + 1 /* .debug_abbrev */ \
832 + 1 /* .debug_line */ \
833 + 1 /* .debug_loc */ \
834 + 1 /* .debug_str_offsets */ \
835 + 1 /* .debug_macro or .debug_macinfo */)
836 int section_ids[MAX_NR_V2_DWO_SECTIONS];
837 const gdb_byte *offsets;
838 const gdb_byte *sizes;
839 } v2;
840 } section_pool;
80626a55
DE
841};
842
843/* Data for one DWP file. */
844
845struct dwp_file
846{
400174b1
TT
847 dwp_file (const char *name_, gdb_bfd_ref_ptr &&abfd)
848 : name (name_),
849 dbfd (std::move (abfd))
850 {
851 }
852
80626a55
DE
853 /* Name of the file. */
854 const char *name;
855
73869dc2 856 /* File format version. */
400174b1 857 int version = 0;
73869dc2 858
93417882 859 /* The bfd. */
400174b1 860 gdb_bfd_ref_ptr dbfd;
80626a55
DE
861
862 /* Section info for this file. */
400174b1 863 struct dwp_sections sections {};
80626a55 864
57d63ce2 865 /* Table of CUs in the file. */
400174b1 866 const struct dwp_hash_table *cus = nullptr;
80626a55
DE
867
868 /* Table of TUs in the file. */
400174b1 869 const struct dwp_hash_table *tus = nullptr;
80626a55 870
19ac8c2e 871 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
400174b1
TT
872 htab_t loaded_cus {};
873 htab_t loaded_tus {};
80626a55 874
73869dc2
DE
875 /* Table to map ELF section numbers to their sections.
876 This is only needed for the DWP V1 file format. */
400174b1
TT
877 unsigned int num_sections = 0;
878 asection **elf_sections = nullptr;
80626a55
DE
879};
880
0963b4bd
MS
881/* Struct used to pass misc. parameters to read_die_and_children, et
882 al. which are used for both .debug_info and .debug_types dies.
883 All parameters here are unchanging for the life of the call. This
dee91e82 884 struct exists to abstract away the constant parameters of die reading. */
93311388
DE
885
886struct die_reader_specs
887{
a32a8923 888 /* The bfd of die_section. */
93311388
DE
889 bfd* abfd;
890
891 /* The CU of the DIE we are parsing. */
892 struct dwarf2_cu *cu;
893
80626a55 894 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
3019eac3
DE
895 struct dwo_file *dwo_file;
896
dee91e82 897 /* The section the die comes from.
3019eac3 898 This is either .debug_info or .debug_types, or the .dwo variants. */
dee91e82
DE
899 struct dwarf2_section_info *die_section;
900
901 /* die_section->buffer. */
d521ce57 902 const gdb_byte *buffer;
f664829e
DE
903
904 /* The end of the buffer. */
905 const gdb_byte *buffer_end;
a2ce51a0
DE
906
907 /* The value of the DW_AT_comp_dir attribute. */
908 const char *comp_dir;
685af9cd
TT
909
910 /* The abbreviation table to use when reading the DIEs. */
911 struct abbrev_table *abbrev_table;
93311388
DE
912};
913
fd820528 914/* Type of function passed to init_cutu_and_read_dies, et.al. */
dee91e82 915typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
d521ce57 916 const gdb_byte *info_ptr,
dee91e82
DE
917 struct die_info *comp_unit_die,
918 int has_children,
919 void *data);
920
ecfb656c
PA
921/* A 1-based directory index. This is a strong typedef to prevent
922 accidentally using a directory index as a 0-based index into an
923 array/vector. */
924enum class dir_index : unsigned int {};
925
926/* Likewise, a 1-based file name index. */
927enum class file_name_index : unsigned int {};
928
52059ffd
TT
929struct file_entry
930{
fff8551c
PA
931 file_entry () = default;
932
ecfb656c 933 file_entry (const char *name_, dir_index d_index_,
fff8551c
PA
934 unsigned int mod_time_, unsigned int length_)
935 : name (name_),
ecfb656c 936 d_index (d_index_),
fff8551c
PA
937 mod_time (mod_time_),
938 length (length_)
939 {}
940
ecfb656c
PA
941 /* Return the include directory at D_INDEX stored in LH. Returns
942 NULL if D_INDEX is out of bounds. */
8c43009f
PA
943 const char *include_dir (const line_header *lh) const;
944
fff8551c
PA
945 /* The file name. Note this is an observing pointer. The memory is
946 owned by debug_line_buffer. */
947 const char *name {};
948
8c43009f 949 /* The directory index (1-based). */
ecfb656c 950 dir_index d_index {};
fff8551c
PA
951
952 unsigned int mod_time {};
953
954 unsigned int length {};
955
956 /* True if referenced by the Line Number Program. */
957 bool included_p {};
958
83769d0b 959 /* The associated symbol table, if any. */
fff8551c 960 struct symtab *symtab {};
52059ffd
TT
961};
962
debd256d
JB
963/* The line number information for a compilation unit (found in the
964 .debug_line section) begins with a "statement program header",
965 which contains the following information. */
966struct line_header
967{
fff8551c
PA
968 line_header ()
969 : offset_in_dwz {}
970 {}
971
972 /* Add an entry to the include directory table. */
973 void add_include_dir (const char *include_dir);
974
975 /* Add an entry to the file name table. */
ecfb656c 976 void add_file_name (const char *name, dir_index d_index,
fff8551c
PA
977 unsigned int mod_time, unsigned int length);
978
ecfb656c 979 /* Return the include dir at INDEX (1-based). Returns NULL if INDEX
8c43009f 980 is out of bounds. */
ecfb656c 981 const char *include_dir_at (dir_index index) const
8c43009f 982 {
ecfb656c
PA
983 /* Convert directory index number (1-based) to vector index
984 (0-based). */
985 size_t vec_index = to_underlying (index) - 1;
986
987 if (vec_index >= include_dirs.size ())
8c43009f 988 return NULL;
ecfb656c 989 return include_dirs[vec_index];
8c43009f
PA
990 }
991
ecfb656c 992 /* Return the file name at INDEX (1-based). Returns NULL if INDEX
8c43009f 993 is out of bounds. */
ecfb656c 994 file_entry *file_name_at (file_name_index index)
8c43009f 995 {
ecfb656c
PA
996 /* Convert file name index number (1-based) to vector index
997 (0-based). */
998 size_t vec_index = to_underlying (index) - 1;
999
1000 if (vec_index >= file_names.size ())
fff8551c 1001 return NULL;
ecfb656c 1002 return &file_names[vec_index];
fff8551c
PA
1003 }
1004
527f3840 1005 /* Offset of line number information in .debug_line section. */
9c541725 1006 sect_offset sect_off {};
527f3840
JK
1007
1008 /* OFFSET is for struct dwz_file associated with dwarf2_per_objfile. */
fff8551c
PA
1009 unsigned offset_in_dwz : 1; /* Can't initialize bitfields in-class. */
1010
1011 unsigned int total_length {};
1012 unsigned short version {};
1013 unsigned int header_length {};
1014 unsigned char minimum_instruction_length {};
1015 unsigned char maximum_ops_per_instruction {};
1016 unsigned char default_is_stmt {};
1017 int line_base {};
1018 unsigned char line_range {};
1019 unsigned char opcode_base {};
debd256d
JB
1020
1021 /* standard_opcode_lengths[i] is the number of operands for the
1022 standard opcode whose value is i. This means that
1023 standard_opcode_lengths[0] is unused, and the last meaningful
1024 element is standard_opcode_lengths[opcode_base - 1]. */
fff8551c 1025 std::unique_ptr<unsigned char[]> standard_opcode_lengths;
debd256d 1026
fff8551c
PA
1027 /* The include_directories table. Note these are observing
1028 pointers. The memory is owned by debug_line_buffer. */
1029 std::vector<const char *> include_dirs;
debd256d 1030
fff8551c
PA
1031 /* The file_names table. */
1032 std::vector<file_entry> file_names;
debd256d
JB
1033
1034 /* The start and end of the statement program following this
6502dd73 1035 header. These point into dwarf2_per_objfile->line_buffer. */
fff8551c 1036 const gdb_byte *statement_program_start {}, *statement_program_end {};
debd256d 1037};
c906108c 1038
fff8551c
PA
1039typedef std::unique_ptr<line_header> line_header_up;
1040
8c43009f
PA
1041const char *
1042file_entry::include_dir (const line_header *lh) const
1043{
ecfb656c 1044 return lh->include_dir_at (d_index);
8c43009f
PA
1045}
1046
c906108c 1047/* When we construct a partial symbol table entry we only
0963b4bd 1048 need this much information. */
6f06d47b 1049struct partial_die_info : public allocate_on_obstack
c906108c 1050 {
6f06d47b
YQ
1051 partial_die_info (sect_offset sect_off, struct abbrev_info *abbrev);
1052
1053 /* Disable assign but still keep copy ctor, which is needed
1054 load_partial_dies. */
1055 partial_die_info& operator=(const partial_die_info& rhs) = delete;
1056
52356b79
YQ
1057 /* Adjust the partial die before generating a symbol for it. This
1058 function may set the is_external flag or change the DIE's
1059 name. */
1060 void fixup (struct dwarf2_cu *cu);
1061
48fbe735
YQ
1062 /* Read a minimal amount of information into the minimal die
1063 structure. */
1064 const gdb_byte *read (const struct die_reader_specs *reader,
1065 const struct abbrev_info &abbrev,
1066 const gdb_byte *info_ptr);
1067
72bf9492 1068 /* Offset of this DIE. */
6f06d47b 1069 const sect_offset sect_off;
72bf9492
DJ
1070
1071 /* DWARF-2 tag for this DIE. */
6f06d47b 1072 const ENUM_BITFIELD(dwarf_tag) tag : 16;
72bf9492 1073
72bf9492 1074 /* Assorted flags describing the data found in this DIE. */
6f06d47b
YQ
1075 const unsigned int has_children : 1;
1076
72bf9492
DJ
1077 unsigned int is_external : 1;
1078 unsigned int is_declaration : 1;
1079 unsigned int has_type : 1;
1080 unsigned int has_specification : 1;
1081 unsigned int has_pc_info : 1;
481860b3 1082 unsigned int may_be_inlined : 1;
72bf9492 1083
0c1b455e
TT
1084 /* This DIE has been marked DW_AT_main_subprogram. */
1085 unsigned int main_subprogram : 1;
1086
72bf9492
DJ
1087 /* Flag set if the SCOPE field of this structure has been
1088 computed. */
1089 unsigned int scope_set : 1;
1090
fa4028e9
JB
1091 /* Flag set if the DIE has a byte_size attribute. */
1092 unsigned int has_byte_size : 1;
1093
ff908ebf
AW
1094 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1095 unsigned int has_const_value : 1;
1096
98bfdba5
PA
1097 /* Flag set if any of the DIE's children are template arguments. */
1098 unsigned int has_template_arguments : 1;
1099
52356b79 1100 /* Flag set if fixup has been called on this die. */
abc72ce4
DE
1101 unsigned int fixup_called : 1;
1102
36586728
TT
1103 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1104 unsigned int is_dwz : 1;
1105
1106 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1107 unsigned int spec_is_dwz : 1;
1108
72bf9492 1109 /* The name of this DIE. Normally the value of DW_AT_name, but
94af9270 1110 sometimes a default name for unnamed DIEs. */
6f06d47b 1111 const char *name = nullptr;
72bf9492 1112
abc72ce4 1113 /* The linkage name, if present. */
6f06d47b 1114 const char *linkage_name = nullptr;
abc72ce4 1115
72bf9492
DJ
1116 /* The scope to prepend to our children. This is generally
1117 allocated on the comp_unit_obstack, so will disappear
1118 when this compilation unit leaves the cache. */
6f06d47b 1119 const char *scope = nullptr;
72bf9492 1120
95554aad
TT
1121 /* Some data associated with the partial DIE. The tag determines
1122 which field is live. */
1123 union
1124 {
1125 /* The location description associated with this DIE, if any. */
1126 struct dwarf_block *locdesc;
1127 /* The offset of an import, for DW_TAG_imported_unit. */
9c541725 1128 sect_offset sect_off;
6f06d47b 1129 } d {};
72bf9492
DJ
1130
1131 /* If HAS_PC_INFO, the PC range associated with this DIE. */
6f06d47b
YQ
1132 CORE_ADDR lowpc = 0;
1133 CORE_ADDR highpc = 0;
72bf9492 1134
93311388 1135 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
72bf9492 1136 DW_AT_sibling, if any. */
48fbe735
YQ
1137 /* NOTE: This member isn't strictly necessary, partial_die_info::read
1138 could return DW_AT_sibling values to its caller load_partial_dies. */
6f06d47b 1139 const gdb_byte *sibling = nullptr;
72bf9492
DJ
1140
1141 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1142 DW_AT_specification (or DW_AT_abstract_origin or
1143 DW_AT_extension). */
6f06d47b 1144 sect_offset spec_offset {};
72bf9492
DJ
1145
1146 /* Pointers to this DIE's parent, first child, and next sibling,
1147 if any. */
6f06d47b
YQ
1148 struct partial_die_info *die_parent = nullptr;
1149 struct partial_die_info *die_child = nullptr;
1150 struct partial_die_info *die_sibling = nullptr;
1151
1152 friend struct partial_die_info *
1153 dwarf2_cu::find_partial_die (sect_offset sect_off);
1154
1155 private:
1156 /* Only need to do look up in dwarf2_cu::find_partial_die. */
1157 partial_die_info (sect_offset sect_off)
1158 : partial_die_info (sect_off, DW_TAG_padding, 0)
1159 {
1160 }
1161
1162 partial_die_info (sect_offset sect_off_, enum dwarf_tag tag_,
1163 int has_children_)
1164 : sect_off (sect_off_), tag (tag_), has_children (has_children_)
1165 {
1166 is_external = 0;
1167 is_declaration = 0;
1168 has_type = 0;
1169 has_specification = 0;
1170 has_pc_info = 0;
1171 may_be_inlined = 0;
1172 main_subprogram = 0;
1173 scope_set = 0;
1174 has_byte_size = 0;
1175 has_const_value = 0;
1176 has_template_arguments = 0;
1177 fixup_called = 0;
1178 is_dwz = 0;
1179 spec_is_dwz = 0;
1180 }
c906108c
SS
1181 };
1182
0963b4bd 1183/* This data structure holds the information of an abbrev. */
c906108c
SS
1184struct abbrev_info
1185 {
1186 unsigned int number; /* number identifying abbrev */
1187 enum dwarf_tag tag; /* dwarf tag */
f3dd6933
DJ
1188 unsigned short has_children; /* boolean */
1189 unsigned short num_attrs; /* number of attributes */
c906108c
SS
1190 struct attr_abbrev *attrs; /* an array of attribute descriptions */
1191 struct abbrev_info *next; /* next in chain */
1192 };
1193
1194struct attr_abbrev
1195 {
9d25dd43
DE
1196 ENUM_BITFIELD(dwarf_attribute) name : 16;
1197 ENUM_BITFIELD(dwarf_form) form : 16;
43988095
JK
1198
1199 /* It is valid only if FORM is DW_FORM_implicit_const. */
1200 LONGEST implicit_const;
c906108c
SS
1201 };
1202
433df2d4
DE
1203/* Size of abbrev_table.abbrev_hash_table. */
1204#define ABBREV_HASH_SIZE 121
1205
1206/* Top level data structure to contain an abbreviation table. */
1207
1208struct abbrev_table
1209{
685af9cd
TT
1210 explicit abbrev_table (sect_offset off)
1211 : sect_off (off)
1212 {
4a17f768 1213 m_abbrevs =
685af9cd 1214 XOBNEWVEC (&abbrev_obstack, struct abbrev_info *, ABBREV_HASH_SIZE);
4a17f768 1215 memset (m_abbrevs, 0, ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
685af9cd
TT
1216 }
1217
1218 DISABLE_COPY_AND_ASSIGN (abbrev_table);
1219
1220 /* Allocate space for a struct abbrev_info object in
1221 ABBREV_TABLE. */
1222 struct abbrev_info *alloc_abbrev ();
1223
1224 /* Add an abbreviation to the table. */
1225 void add_abbrev (unsigned int abbrev_number, struct abbrev_info *abbrev);
1226
1227 /* Look up an abbrev in the table.
1228 Returns NULL if the abbrev is not found. */
1229
1230 struct abbrev_info *lookup_abbrev (unsigned int abbrev_number);
1231
1232
f4dc4d17
DE
1233 /* Where the abbrev table came from.
1234 This is used as a sanity check when the table is used. */
685af9cd 1235 const sect_offset sect_off;
433df2d4
DE
1236
1237 /* Storage for the abbrev table. */
685af9cd 1238 auto_obstack abbrev_obstack;
433df2d4 1239
4a17f768
YQ
1240private:
1241
433df2d4
DE
1242 /* Hash table of abbrevs.
1243 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1244 It could be statically allocated, but the previous code didn't so we
1245 don't either. */
4a17f768 1246 struct abbrev_info **m_abbrevs;
433df2d4
DE
1247};
1248
685af9cd
TT
1249typedef std::unique_ptr<struct abbrev_table> abbrev_table_up;
1250
0963b4bd 1251/* Attributes have a name and a value. */
b60c80d6
DJ
1252struct attribute
1253 {
9d25dd43 1254 ENUM_BITFIELD(dwarf_attribute) name : 16;
8285870a
JK
1255 ENUM_BITFIELD(dwarf_form) form : 15;
1256
1257 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
1258 field should be in u.str (existing only for DW_STRING) but it is kept
1259 here for better struct attribute alignment. */
1260 unsigned int string_is_canonical : 1;
1261
b60c80d6
DJ
1262 union
1263 {
15d034d0 1264 const char *str;
b60c80d6 1265 struct dwarf_block *blk;
43bbcdc2
PH
1266 ULONGEST unsnd;
1267 LONGEST snd;
b60c80d6 1268 CORE_ADDR addr;
ac9ec31b 1269 ULONGEST signature;
b60c80d6
DJ
1270 }
1271 u;
1272 };
1273
0963b4bd 1274/* This data structure holds a complete die structure. */
c906108c
SS
1275struct die_info
1276 {
76815b17
DE
1277 /* DWARF-2 tag for this DIE. */
1278 ENUM_BITFIELD(dwarf_tag) tag : 16;
1279
1280 /* Number of attributes */
98bfdba5
PA
1281 unsigned char num_attrs;
1282
1283 /* True if we're presently building the full type name for the
1284 type derived from this DIE. */
1285 unsigned char building_fullname : 1;
76815b17 1286
adde2bff
DE
1287 /* True if this die is in process. PR 16581. */
1288 unsigned char in_process : 1;
1289
76815b17
DE
1290 /* Abbrev number */
1291 unsigned int abbrev;
1292
93311388 1293 /* Offset in .debug_info or .debug_types section. */
9c541725 1294 sect_offset sect_off;
78ba4af6
JB
1295
1296 /* The dies in a compilation unit form an n-ary tree. PARENT
1297 points to this die's parent; CHILD points to the first child of
1298 this node; and all the children of a given node are chained
4950bc1c 1299 together via their SIBLING fields. */
639d11d3
DC
1300 struct die_info *child; /* Its first child, if any. */
1301 struct die_info *sibling; /* Its next sibling, if any. */
1302 struct die_info *parent; /* Its parent, if any. */
c906108c 1303
b60c80d6
DJ
1304 /* An array of attributes, with NUM_ATTRS elements. There may be
1305 zero, but it's not common and zero-sized arrays are not
1306 sufficiently portable C. */
1307 struct attribute attrs[1];
c906108c
SS
1308 };
1309
0963b4bd 1310/* Get at parts of an attribute structure. */
c906108c
SS
1311
1312#define DW_STRING(attr) ((attr)->u.str)
8285870a 1313#define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
c906108c
SS
1314#define DW_UNSND(attr) ((attr)->u.unsnd)
1315#define DW_BLOCK(attr) ((attr)->u.blk)
1316#define DW_SND(attr) ((attr)->u.snd)
1317#define DW_ADDR(attr) ((attr)->u.addr)
ac9ec31b 1318#define DW_SIGNATURE(attr) ((attr)->u.signature)
c906108c 1319
0963b4bd 1320/* Blocks are a bunch of untyped bytes. */
c906108c
SS
1321struct dwarf_block
1322 {
56eb65bd 1323 size_t size;
1d6edc3c
JK
1324
1325 /* Valid only if SIZE is not zero. */
d521ce57 1326 const gdb_byte *data;
c906108c
SS
1327 };
1328
c906108c
SS
1329#ifndef ATTR_ALLOC_CHUNK
1330#define ATTR_ALLOC_CHUNK 4
1331#endif
1332
c906108c
SS
1333/* Allocate fields for structs, unions and enums in this size. */
1334#ifndef DW_FIELD_ALLOC_CHUNK
1335#define DW_FIELD_ALLOC_CHUNK 4
1336#endif
1337
c906108c
SS
1338/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1339 but this would require a corresponding change in unpack_field_as_long
1340 and friends. */
1341static int bits_per_byte = 8;
1342
2ddeaf8a
TT
1343/* When reading a variant or variant part, we track a bit more
1344 information about the field, and store it in an object of this
1345 type. */
1346
1347struct variant_field
1348{
1349 /* If we see a DW_TAG_variant, then this will be the discriminant
1350 value. */
1351 ULONGEST discriminant_value;
1352 /* If we see a DW_TAG_variant, then this will be set if this is the
1353 default branch. */
1354 bool default_branch;
1355 /* While reading a DW_TAG_variant_part, this will be set if this
1356 field is the discriminant. */
1357 bool is_discriminant;
1358};
1359
52059ffd
TT
1360struct nextfield
1361{
be2daae6
TT
1362 int accessibility = 0;
1363 int virtuality = 0;
2ddeaf8a 1364 /* Extra information to describe a variant or variant part. */
be2daae6
TT
1365 struct variant_field variant {};
1366 struct field field {};
52059ffd
TT
1367};
1368
1369struct fnfieldlist
1370{
be2daae6
TT
1371 const char *name = nullptr;
1372 std::vector<struct fn_field> fnfields;
52059ffd
TT
1373};
1374
c906108c
SS
1375/* The routines that read and process dies for a C struct or C++ class
1376 pass lists of data member fields and lists of member function fields
1377 in an instance of a field_info structure, as defined below. */
1378struct field_info
c5aa993b 1379 {
0963b4bd 1380 /* List of data member and baseclasses fields. */
be2daae6
TT
1381 std::vector<struct nextfield> fields;
1382 std::vector<struct nextfield> baseclasses;
c906108c 1383
7d0ccb61 1384 /* Number of fields (including baseclasses). */
be2daae6 1385 int nfields = 0;
c906108c 1386
c5aa993b 1387 /* Set if the accesibility of one of the fields is not public. */
be2daae6 1388 int non_public_fields = 0;
c906108c 1389
c5aa993b
JM
1390 /* Member function fieldlist array, contains name of possibly overloaded
1391 member function, number of overloaded member functions and a pointer
1392 to the head of the member function field chain. */
be2daae6 1393 std::vector<struct fnfieldlist> fnfieldlists;
98751a41
JK
1394
1395 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1396 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
be2daae6 1397 std::vector<struct decl_field> typedef_field_list;
883fd55a
KS
1398
1399 /* Nested types defined by this class and the number of elements in this
1400 list. */
be2daae6 1401 std::vector<struct decl_field> nested_types_list;
c5aa993b 1402 };
c906108c 1403
10b3939b
DJ
1404/* One item on the queue of compilation units to read in full symbols
1405 for. */
1406struct dwarf2_queue_item
1407{
1408 struct dwarf2_per_cu_data *per_cu;
95554aad 1409 enum language pretend_language;
10b3939b
DJ
1410 struct dwarf2_queue_item *next;
1411};
1412
1413/* The current queue. */
1414static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1415
ae038cb0
DJ
1416/* Loaded secondary compilation units are kept in memory until they
1417 have not been referenced for the processing of this many
1418 compilation units. Set this to zero to disable caching. Cache
1419 sizes of up to at least twenty will improve startup time for
1420 typical inter-CU-reference binaries, at an obvious memory cost. */
b4f54984 1421static int dwarf_max_cache_age = 5;
920d2a44 1422static void
b4f54984
DE
1423show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1424 struct cmd_list_element *c, const char *value)
920d2a44 1425{
3e43a32a 1426 fprintf_filtered (file, _("The upper bound on the age of cached "
b4f54984 1427 "DWARF compilation units is %s.\n"),
920d2a44
AC
1428 value);
1429}
4390d890 1430\f
c906108c
SS
1431/* local function prototypes */
1432
a32a8923
DE
1433static const char *get_section_name (const struct dwarf2_section_info *);
1434
1435static const char *get_section_file_name (const struct dwarf2_section_info *);
1436
918dd910
JK
1437static void dwarf2_find_base_address (struct die_info *die,
1438 struct dwarf2_cu *cu);
1439
0018ea6f
DE
1440static struct partial_symtab *create_partial_symtab
1441 (struct dwarf2_per_cu_data *per_cu, const char *name);
1442
f1902523
JK
1443static void build_type_psymtabs_reader (const struct die_reader_specs *reader,
1444 const gdb_byte *info_ptr,
1445 struct die_info *type_unit_die,
1446 int has_children, void *data);
1447
ed2dc618
SM
1448static void dwarf2_build_psymtabs_hard
1449 (struct dwarf2_per_objfile *dwarf2_per_objfile);
c906108c 1450
72bf9492
DJ
1451static void scan_partial_symbols (struct partial_die_info *,
1452 CORE_ADDR *, CORE_ADDR *,
5734ee8b 1453 int, struct dwarf2_cu *);
c906108c 1454
72bf9492
DJ
1455static void add_partial_symbol (struct partial_die_info *,
1456 struct dwarf2_cu *);
63d06c5c 1457
72bf9492
DJ
1458static void add_partial_namespace (struct partial_die_info *pdi,
1459 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 1460 int set_addrmap, struct dwarf2_cu *cu);
63d06c5c 1461
5d7cb8df 1462static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 1463 CORE_ADDR *highpc, int set_addrmap,
5d7cb8df
JK
1464 struct dwarf2_cu *cu);
1465
72bf9492
DJ
1466static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1467 struct dwarf2_cu *cu);
91c24f0a 1468
bc30ff58
JB
1469static void add_partial_subprogram (struct partial_die_info *pdi,
1470 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5734ee8b 1471 int need_pc, struct dwarf2_cu *cu);
bc30ff58 1472
257e7a09
YQ
1473static void dwarf2_read_symtab (struct partial_symtab *,
1474 struct objfile *);
c906108c 1475
a14ed312 1476static void psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 1477
685af9cd 1478static abbrev_table_up abbrev_table_read_table
ed2dc618
SM
1479 (struct dwarf2_per_objfile *dwarf2_per_objfile, struct dwarf2_section_info *,
1480 sect_offset);
433df2d4 1481
d521ce57 1482static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
6caca83c 1483
dee91e82 1484static struct partial_die_info *load_partial_dies
d521ce57 1485 (const struct die_reader_specs *, const gdb_byte *, int);
72bf9492 1486
fb816e8b
TV
1487/* A pair of partial_die_info and compilation unit. */
1488struct cu_partial_die_info
1489{
1490 /* The compilation unit of the partial_die_info. */
1491 struct dwarf2_cu *cu;
1492 /* A partial_die_info. */
1493 struct partial_die_info *pdi;
122cf0f2
AB
1494
1495 cu_partial_die_info (struct dwarf2_cu *cu, struct partial_die_info *pdi)
1496 : cu (cu),
1497 pdi (pdi)
1498 { /* Nothhing. */ }
1499
1500private:
1501 cu_partial_die_info () = delete;
fb816e8b
TV
1502};
1503
122cf0f2
AB
1504static const struct cu_partial_die_info find_partial_die (sect_offset, int,
1505 struct dwarf2_cu *);
72bf9492 1506
d521ce57
TT
1507static const gdb_byte *read_attribute (const struct die_reader_specs *,
1508 struct attribute *, struct attr_abbrev *,
1509 const gdb_byte *);
a8329558 1510
a1855c1d 1511static unsigned int read_1_byte (bfd *, const gdb_byte *);
c906108c 1512
a1855c1d 1513static int read_1_signed_byte (bfd *, const gdb_byte *);
c906108c 1514
a1855c1d 1515static unsigned int read_2_bytes (bfd *, const gdb_byte *);
c906108c 1516
15f18d14
AT
1517/* Read the next three bytes (little-endian order) as an unsigned integer. */
1518static unsigned int read_3_bytes (bfd *, const gdb_byte *);
1519
a1855c1d 1520static unsigned int read_4_bytes (bfd *, const gdb_byte *);
c906108c 1521
a1855c1d 1522static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
c906108c 1523
d521ce57 1524static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
891d2f0b 1525 unsigned int *);
c906108c 1526
d521ce57 1527static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
c764a876
DE
1528
1529static LONGEST read_checked_initial_length_and_offset
d521ce57 1530 (bfd *, const gdb_byte *, const struct comp_unit_head *,
c764a876 1531 unsigned int *, unsigned int *);
613e1657 1532
d521ce57
TT
1533static LONGEST read_offset (bfd *, const gdb_byte *,
1534 const struct comp_unit_head *,
c764a876
DE
1535 unsigned int *);
1536
d521ce57 1537static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
613e1657 1538
ed2dc618
SM
1539static sect_offset read_abbrev_offset
1540 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1541 struct dwarf2_section_info *, sect_offset);
f4dc4d17 1542
d521ce57 1543static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
c906108c 1544
d521ce57 1545static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
c906108c 1546
ed2dc618
SM
1547static const char *read_indirect_string
1548 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1549 const struct comp_unit_head *, unsigned int *);
4bdf3d34 1550
ed2dc618
SM
1551static const char *read_indirect_line_string
1552 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1553 const struct comp_unit_head *, unsigned int *);
36586728 1554
ed2dc618
SM
1555static const char *read_indirect_string_at_offset
1556 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
1557 LONGEST str_offset);
927aa2e7 1558
ed2dc618
SM
1559static const char *read_indirect_string_from_dwz
1560 (struct objfile *objfile, struct dwz_file *, LONGEST);
c906108c 1561
d521ce57 1562static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
c906108c 1563
d521ce57
TT
1564static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1565 const gdb_byte *,
3019eac3
DE
1566 unsigned int *);
1567
d521ce57 1568static const char *read_str_index (const struct die_reader_specs *reader,
342587c4 1569 ULONGEST str_index);
3019eac3 1570
e142c38c 1571static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 1572
e142c38c
DJ
1573static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1574 struct dwarf2_cu *);
c906108c 1575
348e048f 1576static struct attribute *dwarf2_attr_no_follow (struct die_info *,
45e58e77 1577 unsigned int);
348e048f 1578
7d45c7c3
KB
1579static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1580 struct dwarf2_cu *cu);
1581
05cf31d1
JB
1582static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1583 struct dwarf2_cu *cu);
1584
e142c38c 1585static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 1586
e142c38c 1587static struct die_info *die_specification (struct die_info *die,
f2f0e013 1588 struct dwarf2_cu **);
63d06c5c 1589
9c541725 1590static line_header_up dwarf_decode_line_header (sect_offset sect_off,
fff8551c 1591 struct dwarf2_cu *cu);
debd256d 1592
f3f5162e 1593static void dwarf_decode_lines (struct line_header *, const char *,
c3b7b696 1594 struct dwarf2_cu *, struct partial_symtab *,
527f3840 1595 CORE_ADDR, int decode_mapping);
c906108c 1596
804d2729
TT
1597static void dwarf2_start_subfile (struct dwarf2_cu *, const char *,
1598 const char *);
c906108c 1599
a14ed312 1600static struct symbol *new_symbol (struct die_info *, struct type *,
5e2db402 1601 struct dwarf2_cu *, struct symbol * = NULL);
34eaf542 1602
ff39bb5e 1603static void dwarf2_const_value (const struct attribute *, struct symbol *,
e7c27a73 1604 struct dwarf2_cu *);
c906108c 1605
ff39bb5e 1606static void dwarf2_const_value_attr (const struct attribute *attr,
98bfdba5
PA
1607 struct type *type,
1608 const char *name,
1609 struct obstack *obstack,
12df843f 1610 struct dwarf2_cu *cu, LONGEST *value,
d521ce57 1611 const gdb_byte **bytes,
98bfdba5 1612 struct dwarf2_locexpr_baton **baton);
2df3850c 1613
e7c27a73 1614static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 1615
b4ba55a1
JB
1616static int need_gnat_info (struct dwarf2_cu *);
1617
3e43a32a
MS
1618static struct type *die_descriptive_type (struct die_info *,
1619 struct dwarf2_cu *);
b4ba55a1
JB
1620
1621static void set_descriptive_type (struct type *, struct die_info *,
1622 struct dwarf2_cu *);
1623
e7c27a73
DJ
1624static struct type *die_containing_type (struct die_info *,
1625 struct dwarf2_cu *);
c906108c 1626
ff39bb5e 1627static struct type *lookup_die_type (struct die_info *, const struct attribute *,
673bfd45 1628 struct dwarf2_cu *);
c906108c 1629
f792889a 1630static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 1631
673bfd45
DE
1632static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1633
0d5cff50 1634static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 1635
6e70227d 1636static char *typename_concat (struct obstack *obs, const char *prefix,
f55ee35c
JK
1637 const char *suffix, int physname,
1638 struct dwarf2_cu *cu);
63d06c5c 1639
e7c27a73 1640static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1641
348e048f
DE
1642static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1643
e7c27a73 1644static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1645
e7c27a73 1646static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1647
96408a79
SA
1648static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1649
71a3c369
TT
1650static void read_variable (struct die_info *die, struct dwarf2_cu *cu);
1651
ff013f42
JK
1652static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1653 struct dwarf2_cu *, struct partial_symtab *);
1654
3a2b436a 1655/* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
e385593e 1656 values. Keep the items ordered with increasing constraints compliance. */
3a2b436a
JK
1657enum pc_bounds_kind
1658{
e385593e 1659 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
3a2b436a
JK
1660 PC_BOUNDS_NOT_PRESENT,
1661
e385593e
JK
1662 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1663 were present but they do not form a valid range of PC addresses. */
1664 PC_BOUNDS_INVALID,
1665
3a2b436a
JK
1666 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1667 PC_BOUNDS_RANGES,
1668
1669 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1670 PC_BOUNDS_HIGH_LOW,
1671};
1672
1673static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1674 CORE_ADDR *, CORE_ADDR *,
1675 struct dwarf2_cu *,
1676 struct partial_symtab *);
c906108c 1677
fae299cd
DC
1678static void get_scope_pc_bounds (struct die_info *,
1679 CORE_ADDR *, CORE_ADDR *,
1680 struct dwarf2_cu *);
1681
801e3a5b
JB
1682static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1683 CORE_ADDR, struct dwarf2_cu *);
1684
a14ed312 1685static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 1686 struct dwarf2_cu *);
c906108c 1687
a14ed312 1688static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 1689 struct type *, struct dwarf2_cu *);
c906108c 1690
a14ed312 1691static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 1692 struct die_info *, struct type *,
e7c27a73 1693 struct dwarf2_cu *);
c906108c 1694
a14ed312 1695static void dwarf2_attach_fn_fields_to_type (struct field_info *,
3e43a32a
MS
1696 struct type *,
1697 struct dwarf2_cu *);
c906108c 1698
134d01f1 1699static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1700
e7c27a73 1701static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 1702
e7c27a73 1703static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 1704
5d7cb8df
JK
1705static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1706
804d2729 1707static struct using_direct **using_directives (struct dwarf2_cu *cu);
22cee43f 1708
27aa8d6a
SW
1709static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1710
74921315
KS
1711static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1712
f55ee35c
JK
1713static struct type *read_module_type (struct die_info *die,
1714 struct dwarf2_cu *cu);
1715
38d518c9 1716static const char *namespace_name (struct die_info *die,
e142c38c 1717 int *is_anonymous, struct dwarf2_cu *);
38d518c9 1718
134d01f1 1719static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1720
e7c27a73 1721static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
c906108c 1722
6e70227d 1723static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
7ca2d3a3
DL
1724 struct dwarf2_cu *);
1725
bf6af496 1726static struct die_info *read_die_and_siblings_1
d521ce57 1727 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
bf6af496 1728 struct die_info *);
639d11d3 1729
dee91e82 1730static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
d521ce57
TT
1731 const gdb_byte *info_ptr,
1732 const gdb_byte **new_info_ptr,
639d11d3
DC
1733 struct die_info *parent);
1734
d521ce57
TT
1735static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1736 struct die_info **, const gdb_byte *,
1737 int *, int);
3019eac3 1738
d521ce57
TT
1739static const gdb_byte *read_full_die (const struct die_reader_specs *,
1740 struct die_info **, const gdb_byte *,
1741 int *);
93311388 1742
e7c27a73 1743static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 1744
15d034d0
TT
1745static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1746 struct obstack *);
71c25dea 1747
15d034d0 1748static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 1749
15d034d0 1750static const char *dwarf2_full_name (const char *name,
98bfdba5
PA
1751 struct die_info *die,
1752 struct dwarf2_cu *cu);
1753
ca69b9e6
DE
1754static const char *dwarf2_physname (const char *name, struct die_info *die,
1755 struct dwarf2_cu *cu);
1756
e142c38c 1757static struct die_info *dwarf2_extension (struct die_info *die,
f2f0e013 1758 struct dwarf2_cu **);
9219021c 1759
f39c6ffd 1760static const char *dwarf_tag_name (unsigned int);
c906108c 1761
f39c6ffd 1762static const char *dwarf_attr_name (unsigned int);
c906108c 1763
f39c6ffd 1764static const char *dwarf_form_name (unsigned int);
c906108c 1765
a121b7c1 1766static const char *dwarf_bool_name (unsigned int);
c906108c 1767
f39c6ffd 1768static const char *dwarf_type_encoding_name (unsigned int);
c906108c 1769
f9aca02d 1770static struct die_info *sibling_die (struct die_info *);
c906108c 1771
d97bc12b
DE
1772static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1773
1774static void dump_die_for_error (struct die_info *);
1775
1776static void dump_die_1 (struct ui_file *, int level, int max_level,
1777 struct die_info *);
c906108c 1778
d97bc12b 1779/*static*/ void dump_die (struct die_info *, int max_level);
c906108c 1780
51545339 1781static void store_in_ref_table (struct die_info *,
10b3939b 1782 struct dwarf2_cu *);
c906108c 1783
ff39bb5e 1784static sect_offset dwarf2_get_ref_die_offset (const struct attribute *);
c906108c 1785
ff39bb5e 1786static LONGEST dwarf2_get_attr_constant_value (const struct attribute *, int);
a02abb62 1787
348e048f 1788static struct die_info *follow_die_ref_or_sig (struct die_info *,
ff39bb5e 1789 const struct attribute *,
348e048f
DE
1790 struct dwarf2_cu **);
1791
10b3939b 1792static struct die_info *follow_die_ref (struct die_info *,
ff39bb5e 1793 const struct attribute *,
f2f0e013 1794 struct dwarf2_cu **);
c906108c 1795
348e048f 1796static struct die_info *follow_die_sig (struct die_info *,
ff39bb5e 1797 const struct attribute *,
348e048f
DE
1798 struct dwarf2_cu **);
1799
ac9ec31b
DE
1800static struct type *get_signatured_type (struct die_info *, ULONGEST,
1801 struct dwarf2_cu *);
1802
1803static struct type *get_DW_AT_signature_type (struct die_info *,
ff39bb5e 1804 const struct attribute *,
ac9ec31b
DE
1805 struct dwarf2_cu *);
1806
e5fe5e75 1807static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
348e048f 1808
52dc124a 1809static void read_signatured_type (struct signatured_type *);
348e048f 1810
63e43d3a
PMR
1811static int attr_to_dynamic_prop (const struct attribute *attr,
1812 struct die_info *die, struct dwarf2_cu *cu,
1813 struct dynamic_prop *prop);
1814
c906108c
SS
1815/* memory allocation interface */
1816
7b5a2f43 1817static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1818
b60c80d6 1819static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
c906108c 1820
43f3e411 1821static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
2e276125 1822
6e5a29e1 1823static int attr_form_is_block (const struct attribute *);
8e19ed76 1824
6e5a29e1 1825static int attr_form_is_section_offset (const struct attribute *);
3690dd37 1826
6e5a29e1 1827static int attr_form_is_constant (const struct attribute *);
3690dd37 1828
6e5a29e1 1829static int attr_form_is_ref (const struct attribute *);
7771576e 1830
8cf6f0b1
TT
1831static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1832 struct dwarf2_loclist_baton *baton,
ff39bb5e 1833 const struct attribute *attr);
8cf6f0b1 1834
ff39bb5e 1835static void dwarf2_symbol_mark_computed (const struct attribute *attr,
93e7bd98 1836 struct symbol *sym,
f1e6e072
TT
1837 struct dwarf2_cu *cu,
1838 int is_block);
4c2df51b 1839
d521ce57
TT
1840static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1841 const gdb_byte *info_ptr,
1842 struct abbrev_info *abbrev);
4bb7a0a7 1843
72bf9492
DJ
1844static hashval_t partial_die_hash (const void *item);
1845
1846static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1847
ae038cb0 1848static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
ed2dc618
SM
1849 (sect_offset sect_off, unsigned int offset_in_dwz,
1850 struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1851
9816fde3 1852static void prepare_one_comp_unit (struct dwarf2_cu *cu,
95554aad
TT
1853 struct die_info *comp_unit_die,
1854 enum language pretend_language);
93311388 1855
ed2dc618 1856static void age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1857
dee91e82 1858static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
ae038cb0 1859
f792889a
DJ
1860static struct type *set_die_type (struct die_info *, struct type *,
1861 struct dwarf2_cu *);
1c379e20 1862
ed2dc618 1863static void create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1864
ed2dc618 1865static int create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1fd400ff 1866
58f0c718 1867static void load_full_comp_unit (struct dwarf2_per_cu_data *, bool,
95554aad 1868 enum language);
10b3939b 1869
95554aad
TT
1870static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1871 enum language);
10b3939b 1872
f4dc4d17
DE
1873static void process_full_type_unit (struct dwarf2_per_cu_data *,
1874 enum language);
1875
10b3939b
DJ
1876static void dwarf2_add_dependence (struct dwarf2_cu *,
1877 struct dwarf2_per_cu_data *);
1878
ae038cb0
DJ
1879static void dwarf2_mark (struct dwarf2_cu *);
1880
1881static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1882
b64f50a1 1883static struct type *get_die_type_at_offset (sect_offset,
ac9ec31b 1884 struct dwarf2_per_cu_data *);
673bfd45 1885
f792889a 1886static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
72019c9c 1887
95554aad
TT
1888static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1889 enum language pretend_language);
1890
ed2dc618 1891static void process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile);
9291a0cd 1892
b303c6f6
AB
1893/* Class, the destructor of which frees all allocated queue entries. This
1894 will only have work to do if an error was thrown while processing the
1895 dwarf. If no error was thrown then the queue entries should have all
1896 been processed, and freed, as we went along. */
1897
1898class dwarf2_queue_guard
1899{
1900public:
1901 dwarf2_queue_guard () = default;
1902
1903 /* Free any entries remaining on the queue. There should only be
1904 entries left if we hit an error while processing the dwarf. */
1905 ~dwarf2_queue_guard ()
1906 {
1907 struct dwarf2_queue_item *item, *last;
1908
1909 item = dwarf2_queue;
1910 while (item)
1911 {
1912 /* Anything still marked queued is likely to be in an
1913 inconsistent state, so discard it. */
1914 if (item->per_cu->queued)
1915 {
1916 if (item->per_cu->cu != NULL)
1917 free_one_cached_comp_unit (item->per_cu);
1918 item->per_cu->queued = 0;
1919 }
1920
1921 last = item;
1922 item = item->next;
1923 xfree (last);
1924 }
1925
1926 dwarf2_queue = dwarf2_queue_tail = NULL;
1927 }
1928};
1929
d721ba37
PA
1930/* The return type of find_file_and_directory. Note, the enclosed
1931 string pointers are only valid while this object is valid. */
1932
1933struct file_and_directory
1934{
1935 /* The filename. This is never NULL. */
1936 const char *name;
1937
1938 /* The compilation directory. NULL if not known. If we needed to
1939 compute a new string, this points to COMP_DIR_STORAGE, otherwise,
1940 points directly to the DW_AT_comp_dir string attribute owned by
1941 the obstack that owns the DIE. */
1942 const char *comp_dir;
1943
1944 /* If we needed to build a new string for comp_dir, this is what
1945 owns the storage. */
1946 std::string comp_dir_storage;
1947};
1948
1949static file_and_directory find_file_and_directory (struct die_info *die,
1950 struct dwarf2_cu *cu);
9291a0cd
TT
1951
1952static char *file_full_name (int file, struct line_header *lh,
1953 const char *comp_dir);
1954
43988095
JK
1955/* Expected enum dwarf_unit_type for read_comp_unit_head. */
1956enum class rcuh_kind { COMPILE, TYPE };
1957
d521ce57 1958static const gdb_byte *read_and_check_comp_unit_head
ed2dc618
SM
1959 (struct dwarf2_per_objfile* dwarf2_per_objfile,
1960 struct comp_unit_head *header,
36586728 1961 struct dwarf2_section_info *section,
d521ce57 1962 struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
43988095 1963 rcuh_kind section_kind);
36586728 1964
fd820528 1965static void init_cutu_and_read_dies
f4dc4d17 1966 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
58f0c718 1967 int use_existing_cu, int keep, bool skip_partial,
3019eac3
DE
1968 die_reader_func_ftype *die_reader_func, void *data);
1969
dee91e82
DE
1970static void init_cutu_and_read_dies_simple
1971 (struct dwarf2_per_cu_data *this_cu,
1972 die_reader_func_ftype *die_reader_func, void *data);
9291a0cd 1973
673bfd45 1974static htab_t allocate_signatured_type_table (struct objfile *objfile);
1fd400ff 1975
3019eac3
DE
1976static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1977
57d63ce2 1978static struct dwo_unit *lookup_dwo_unit_in_dwp
ed2dc618
SM
1979 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1980 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 1981 ULONGEST signature, int is_debug_types);
a2ce51a0 1982
ed2dc618
SM
1983static struct dwp_file *get_dwp_file
1984 (struct dwarf2_per_objfile *dwarf2_per_objfile);
a2ce51a0 1985
3019eac3 1986static struct dwo_unit *lookup_dwo_comp_unit
a1855c1d 1987 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
3019eac3
DE
1988
1989static struct dwo_unit *lookup_dwo_type_unit
a1855c1d 1990 (struct signatured_type *, const char *, const char *);
3019eac3 1991
89e63ee4
DE
1992static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
1993
263db9a1
TT
1994/* A unique pointer to a dwo_file. */
1995
51ac9db5 1996typedef std::unique_ptr<struct dwo_file> dwo_file_up;
263db9a1 1997
ed2dc618 1998static void process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile);
95554aad 1999
1b80a9fa 2000static void check_producer (struct dwarf2_cu *cu);
527f3840
JK
2001
2002static void free_line_header_voidp (void *arg);
4390d890
DE
2003\f
2004/* Various complaints about symbol reading that don't abort the process. */
2005
2006static void
2007dwarf2_statement_list_fits_in_line_number_section_complaint (void)
2008{
b98664d3 2009 complaint (_("statement list doesn't fit in .debug_line section"));
4390d890
DE
2010}
2011
2012static void
2013dwarf2_debug_line_missing_file_complaint (void)
2014{
b98664d3 2015 complaint (_(".debug_line section has line data without a file"));
4390d890
DE
2016}
2017
2018static void
2019dwarf2_debug_line_missing_end_sequence_complaint (void)
2020{
b98664d3 2021 complaint (_(".debug_line section has line "
4390d890
DE
2022 "program sequence without an end"));
2023}
2024
2025static void
2026dwarf2_complex_location_expr_complaint (void)
2027{
b98664d3 2028 complaint (_("location expression too complex"));
4390d890
DE
2029}
2030
2031static void
2032dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
2033 int arg3)
2034{
b98664d3 2035 complaint (_("const value length mismatch for '%s', got %d, expected %d"),
4390d890
DE
2036 arg1, arg2, arg3);
2037}
2038
2039static void
2040dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
2041{
b98664d3 2042 complaint (_("debug info runs off end of %s section"
4390d890 2043 " [in module %s]"),
a32a8923
DE
2044 get_section_name (section),
2045 get_section_file_name (section));
4390d890 2046}
1b80a9fa 2047
4390d890
DE
2048static void
2049dwarf2_macro_malformed_definition_complaint (const char *arg1)
2050{
b98664d3 2051 complaint (_("macro debug info contains a "
4390d890
DE
2052 "malformed macro definition:\n`%s'"),
2053 arg1);
2054}
2055
2056static void
2057dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
2058{
b98664d3 2059 complaint (_("invalid attribute class or form for '%s' in '%s'"),
4390d890
DE
2060 arg1, arg2);
2061}
527f3840
JK
2062
2063/* Hash function for line_header_hash. */
2064
2065static hashval_t
2066line_header_hash (const struct line_header *ofs)
2067{
9c541725 2068 return to_underlying (ofs->sect_off) ^ ofs->offset_in_dwz;
527f3840
JK
2069}
2070
2071/* Hash function for htab_create_alloc_ex for line_header_hash. */
2072
2073static hashval_t
2074line_header_hash_voidp (const void *item)
2075{
9a3c8263 2076 const struct line_header *ofs = (const struct line_header *) item;
527f3840
JK
2077
2078 return line_header_hash (ofs);
2079}
2080
2081/* Equality function for line_header_hash. */
2082
2083static int
2084line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
2085{
9a3c8263
SM
2086 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
2087 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
527f3840 2088
9c541725 2089 return (ofs_lhs->sect_off == ofs_rhs->sect_off
527f3840
JK
2090 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
2091}
2092
4390d890 2093\f
9291a0cd 2094
31aa7e4e
JB
2095/* Read the given attribute value as an address, taking the attribute's
2096 form into account. */
2097
2098static CORE_ADDR
2099attr_value_as_address (struct attribute *attr)
2100{
2101 CORE_ADDR addr;
2102
336d760d
AT
2103 if (attr->form != DW_FORM_addr && attr->form != DW_FORM_addrx
2104 && attr->form != DW_FORM_GNU_addr_index)
31aa7e4e
JB
2105 {
2106 /* Aside from a few clearly defined exceptions, attributes that
2107 contain an address must always be in DW_FORM_addr form.
2108 Unfortunately, some compilers happen to be violating this
2109 requirement by encoding addresses using other forms, such
2110 as DW_FORM_data4 for example. For those broken compilers,
2111 we try to do our best, without any guarantee of success,
2112 to interpret the address correctly. It would also be nice
2113 to generate a complaint, but that would require us to maintain
2114 a list of legitimate cases where a non-address form is allowed,
2115 as well as update callers to pass in at least the CU's DWARF
2116 version. This is more overhead than what we're willing to
2117 expand for a pretty rare case. */
2118 addr = DW_UNSND (attr);
2119 }
2120 else
2121 addr = DW_ADDR (attr);
2122
2123 return addr;
2124}
2125
330cdd98
PA
2126/* See declaration. */
2127
2128dwarf2_per_objfile::dwarf2_per_objfile (struct objfile *objfile_,
2129 const dwarf2_debug_sections *names)
2130 : objfile (objfile_)
2131{
2132 if (names == NULL)
2133 names = &dwarf2_elf_names;
2134
2135 bfd *obfd = objfile->obfd;
2136
2137 for (asection *sec = obfd->sections; sec != NULL; sec = sec->next)
2138 locate_sections (obfd, sec, *names);
2139}
2140
2141dwarf2_per_objfile::~dwarf2_per_objfile ()
2142{
2143 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
2144 free_cached_comp_units ();
2145
2146 if (quick_file_names_table)
2147 htab_delete (quick_file_names_table);
2148
2149 if (line_header_hash)
2150 htab_delete (line_header_hash);
2151
b76e467d
SM
2152 for (dwarf2_per_cu_data *per_cu : all_comp_units)
2153 VEC_free (dwarf2_per_cu_ptr, per_cu->imported_symtabs);
fc8e7e75 2154
b2bdb8cf
SM
2155 for (signatured_type *sig_type : all_type_units)
2156 VEC_free (dwarf2_per_cu_ptr, sig_type->per_cu.imported_symtabs);
fc8e7e75 2157
330cdd98
PA
2158 /* Everything else should be on the objfile obstack. */
2159}
2160
2161/* See declaration. */
2162
2163void
2164dwarf2_per_objfile::free_cached_comp_units ()
2165{
2166 dwarf2_per_cu_data *per_cu = read_in_chain;
2167 dwarf2_per_cu_data **last_chain = &read_in_chain;
2168 while (per_cu != NULL)
2169 {
2170 dwarf2_per_cu_data *next_cu = per_cu->cu->read_in_chain;
2171
fcd3b13d 2172 delete per_cu->cu;
330cdd98
PA
2173 *last_chain = next_cu;
2174 per_cu = next_cu;
2175 }
2176}
2177
11ed8cad
TT
2178/* A helper class that calls free_cached_comp_units on
2179 destruction. */
2180
2181class free_cached_comp_units
2182{
2183public:
2184
2185 explicit free_cached_comp_units (dwarf2_per_objfile *per_objfile)
2186 : m_per_objfile (per_objfile)
2187 {
2188 }
2189
2190 ~free_cached_comp_units ()
2191 {
2192 m_per_objfile->free_cached_comp_units ();
2193 }
2194
2195 DISABLE_COPY_AND_ASSIGN (free_cached_comp_units);
2196
2197private:
2198
2199 dwarf2_per_objfile *m_per_objfile;
2200};
2201
c906108c 2202/* Try to locate the sections we need for DWARF 2 debugging
251d32d9
TG
2203 information and return true if we have enough to do something.
2204 NAMES points to the dwarf2 section names, or is NULL if the standard
2205 ELF names are used. */
c906108c
SS
2206
2207int
251d32d9
TG
2208dwarf2_has_info (struct objfile *objfile,
2209 const struct dwarf2_debug_sections *names)
c906108c 2210{
97cbe998
SDJ
2211 if (objfile->flags & OBJF_READNEVER)
2212 return 0;
2213
ed2dc618
SM
2214 struct dwarf2_per_objfile *dwarf2_per_objfile
2215 = get_dwarf2_per_objfile (objfile);
2216
2217 if (dwarf2_per_objfile == NULL)
5bfd760d
TT
2218 dwarf2_per_objfile = dwarf2_objfile_data_key.emplace (objfile, objfile,
2219 names);
2220
73869dc2 2221 return (!dwarf2_per_objfile->info.is_virtual
049412e3 2222 && dwarf2_per_objfile->info.s.section != NULL
73869dc2 2223 && !dwarf2_per_objfile->abbrev.is_virtual
049412e3 2224 && dwarf2_per_objfile->abbrev.s.section != NULL);
73869dc2
DE
2225}
2226
2227/* Return the containing section of virtual section SECTION. */
2228
2229static struct dwarf2_section_info *
2230get_containing_section (const struct dwarf2_section_info *section)
2231{
2232 gdb_assert (section->is_virtual);
2233 return section->s.containing_section;
c906108c
SS
2234}
2235
a32a8923
DE
2236/* Return the bfd owner of SECTION. */
2237
2238static struct bfd *
2239get_section_bfd_owner (const struct dwarf2_section_info *section)
2240{
73869dc2
DE
2241 if (section->is_virtual)
2242 {
2243 section = get_containing_section (section);
2244 gdb_assert (!section->is_virtual);
2245 }
049412e3 2246 return section->s.section->owner;
a32a8923
DE
2247}
2248
2249/* Return the bfd section of SECTION.
2250 Returns NULL if the section is not present. */
2251
2252static asection *
2253get_section_bfd_section (const struct dwarf2_section_info *section)
2254{
73869dc2
DE
2255 if (section->is_virtual)
2256 {
2257 section = get_containing_section (section);
2258 gdb_assert (!section->is_virtual);
2259 }
049412e3 2260 return section->s.section;
a32a8923
DE
2261}
2262
2263/* Return the name of SECTION. */
2264
2265static const char *
2266get_section_name (const struct dwarf2_section_info *section)
2267{
2268 asection *sectp = get_section_bfd_section (section);
2269
2270 gdb_assert (sectp != NULL);
2271 return bfd_section_name (get_section_bfd_owner (section), sectp);
2272}
2273
2274/* Return the name of the file SECTION is in. */
2275
2276static const char *
2277get_section_file_name (const struct dwarf2_section_info *section)
2278{
2279 bfd *abfd = get_section_bfd_owner (section);
2280
2281 return bfd_get_filename (abfd);
2282}
2283
2284/* Return the id of SECTION.
2285 Returns 0 if SECTION doesn't exist. */
2286
2287static int
2288get_section_id (const struct dwarf2_section_info *section)
2289{
2290 asection *sectp = get_section_bfd_section (section);
2291
2292 if (sectp == NULL)
2293 return 0;
2294 return sectp->id;
2295}
2296
2297/* Return the flags of SECTION.
73869dc2 2298 SECTION (or containing section if this is a virtual section) must exist. */
a32a8923
DE
2299
2300static int
2301get_section_flags (const struct dwarf2_section_info *section)
2302{
2303 asection *sectp = get_section_bfd_section (section);
2304
2305 gdb_assert (sectp != NULL);
2306 return bfd_get_section_flags (sectp->owner, sectp);
2307}
2308
251d32d9
TG
2309/* When loading sections, we look either for uncompressed section or for
2310 compressed section names. */
233a11ab
CS
2311
2312static int
251d32d9
TG
2313section_is_p (const char *section_name,
2314 const struct dwarf2_section_names *names)
233a11ab 2315{
251d32d9
TG
2316 if (names->normal != NULL
2317 && strcmp (section_name, names->normal) == 0)
2318 return 1;
2319 if (names->compressed != NULL
2320 && strcmp (section_name, names->compressed) == 0)
2321 return 1;
2322 return 0;
233a11ab
CS
2323}
2324
330cdd98 2325/* See declaration. */
c906108c 2326
330cdd98
PA
2327void
2328dwarf2_per_objfile::locate_sections (bfd *abfd, asection *sectp,
2329 const dwarf2_debug_sections &names)
c906108c 2330{
dc7650b8 2331 flagword aflag = bfd_get_section_flags (abfd, sectp);
251d32d9 2332
dc7650b8
JK
2333 if ((aflag & SEC_HAS_CONTENTS) == 0)
2334 {
2335 }
330cdd98 2336 else if (section_is_p (sectp->name, &names.info))
c906108c 2337 {
330cdd98
PA
2338 this->info.s.section = sectp;
2339 this->info.size = bfd_get_section_size (sectp);
c906108c 2340 }
330cdd98 2341 else if (section_is_p (sectp->name, &names.abbrev))
c906108c 2342 {
330cdd98
PA
2343 this->abbrev.s.section = sectp;
2344 this->abbrev.size = bfd_get_section_size (sectp);
c906108c 2345 }
330cdd98 2346 else if (section_is_p (sectp->name, &names.line))
c906108c 2347 {
330cdd98
PA
2348 this->line.s.section = sectp;
2349 this->line.size = bfd_get_section_size (sectp);
c906108c 2350 }
330cdd98 2351 else if (section_is_p (sectp->name, &names.loc))
c906108c 2352 {
330cdd98
PA
2353 this->loc.s.section = sectp;
2354 this->loc.size = bfd_get_section_size (sectp);
c906108c 2355 }
330cdd98 2356 else if (section_is_p (sectp->name, &names.loclists))
43988095 2357 {
330cdd98
PA
2358 this->loclists.s.section = sectp;
2359 this->loclists.size = bfd_get_section_size (sectp);
43988095 2360 }
330cdd98 2361 else if (section_is_p (sectp->name, &names.macinfo))
c906108c 2362 {
330cdd98
PA
2363 this->macinfo.s.section = sectp;
2364 this->macinfo.size = bfd_get_section_size (sectp);
c906108c 2365 }
330cdd98 2366 else if (section_is_p (sectp->name, &names.macro))
cf2c3c16 2367 {
330cdd98
PA
2368 this->macro.s.section = sectp;
2369 this->macro.size = bfd_get_section_size (sectp);
cf2c3c16 2370 }
330cdd98 2371 else if (section_is_p (sectp->name, &names.str))
c906108c 2372 {
330cdd98
PA
2373 this->str.s.section = sectp;
2374 this->str.size = bfd_get_section_size (sectp);
c906108c 2375 }
330cdd98 2376 else if (section_is_p (sectp->name, &names.line_str))
43988095 2377 {
330cdd98
PA
2378 this->line_str.s.section = sectp;
2379 this->line_str.size = bfd_get_section_size (sectp);
43988095 2380 }
330cdd98 2381 else if (section_is_p (sectp->name, &names.addr))
3019eac3 2382 {
330cdd98
PA
2383 this->addr.s.section = sectp;
2384 this->addr.size = bfd_get_section_size (sectp);
3019eac3 2385 }
330cdd98 2386 else if (section_is_p (sectp->name, &names.frame))
b6af0555 2387 {
330cdd98
PA
2388 this->frame.s.section = sectp;
2389 this->frame.size = bfd_get_section_size (sectp);
b6af0555 2390 }
330cdd98 2391 else if (section_is_p (sectp->name, &names.eh_frame))
b6af0555 2392 {
330cdd98
PA
2393 this->eh_frame.s.section = sectp;
2394 this->eh_frame.size = bfd_get_section_size (sectp);
b6af0555 2395 }
330cdd98 2396 else if (section_is_p (sectp->name, &names.ranges))
af34e669 2397 {
330cdd98
PA
2398 this->ranges.s.section = sectp;
2399 this->ranges.size = bfd_get_section_size (sectp);
af34e669 2400 }
330cdd98 2401 else if (section_is_p (sectp->name, &names.rnglists))
43988095 2402 {
330cdd98
PA
2403 this->rnglists.s.section = sectp;
2404 this->rnglists.size = bfd_get_section_size (sectp);
43988095 2405 }
330cdd98 2406 else if (section_is_p (sectp->name, &names.types))
348e048f 2407 {
8b70b953
TT
2408 struct dwarf2_section_info type_section;
2409
2410 memset (&type_section, 0, sizeof (type_section));
049412e3 2411 type_section.s.section = sectp;
8b70b953
TT
2412 type_section.size = bfd_get_section_size (sectp);
2413
fd5866f6 2414 this->types.push_back (type_section);
348e048f 2415 }
330cdd98 2416 else if (section_is_p (sectp->name, &names.gdb_index))
9291a0cd 2417 {
330cdd98
PA
2418 this->gdb_index.s.section = sectp;
2419 this->gdb_index.size = bfd_get_section_size (sectp);
9291a0cd 2420 }
927aa2e7
JK
2421 else if (section_is_p (sectp->name, &names.debug_names))
2422 {
2423 this->debug_names.s.section = sectp;
2424 this->debug_names.size = bfd_get_section_size (sectp);
2425 }
2426 else if (section_is_p (sectp->name, &names.debug_aranges))
2427 {
2428 this->debug_aranges.s.section = sectp;
2429 this->debug_aranges.size = bfd_get_section_size (sectp);
2430 }
dce234bc 2431
b4e1fd61 2432 if ((bfd_get_section_flags (abfd, sectp) & (SEC_LOAD | SEC_ALLOC))
72dca2f5 2433 && bfd_section_vma (abfd, sectp) == 0)
330cdd98 2434 this->has_section_at_zero = true;
c906108c
SS
2435}
2436
fceca515
DE
2437/* A helper function that decides whether a section is empty,
2438 or not present. */
9e0ac564
TT
2439
2440static int
19ac8c2e 2441dwarf2_section_empty_p (const struct dwarf2_section_info *section)
9e0ac564 2442{
73869dc2
DE
2443 if (section->is_virtual)
2444 return section->size == 0;
049412e3 2445 return section->s.section == NULL || section->size == 0;
9e0ac564
TT
2446}
2447
cd4fb1b2 2448/* See dwarf2read.h. */
c906108c 2449
cd4fb1b2
SM
2450void
2451dwarf2_read_section (struct objfile *objfile, dwarf2_section_info *info)
c906108c 2452{
a32a8923 2453 asection *sectp;
3019eac3 2454 bfd *abfd;
dce234bc 2455 gdb_byte *buf, *retbuf;
c906108c 2456
be391dca
TT
2457 if (info->readin)
2458 return;
dce234bc 2459 info->buffer = NULL;
dc4ccb6f 2460 info->readin = true;
188dd5d6 2461
9e0ac564 2462 if (dwarf2_section_empty_p (info))
dce234bc 2463 return;
c906108c 2464
a32a8923 2465 sectp = get_section_bfd_section (info);
3019eac3 2466
73869dc2
DE
2467 /* If this is a virtual section we need to read in the real one first. */
2468 if (info->is_virtual)
2469 {
2470 struct dwarf2_section_info *containing_section =
2471 get_containing_section (info);
2472
2473 gdb_assert (sectp != NULL);
2474 if ((sectp->flags & SEC_RELOC) != 0)
2475 {
2476 error (_("Dwarf Error: DWP format V2 with relocations is not"
2477 " supported in section %s [in module %s]"),
2478 get_section_name (info), get_section_file_name (info));
2479 }
2480 dwarf2_read_section (objfile, containing_section);
2481 /* Other code should have already caught virtual sections that don't
2482 fit. */
2483 gdb_assert (info->virtual_offset + info->size
2484 <= containing_section->size);
2485 /* If the real section is empty or there was a problem reading the
2486 section we shouldn't get here. */
2487 gdb_assert (containing_section->buffer != NULL);
2488 info->buffer = containing_section->buffer + info->virtual_offset;
2489 return;
2490 }
2491
4bf44c1c
TT
2492 /* If the section has relocations, we must read it ourselves.
2493 Otherwise we attach it to the BFD. */
2494 if ((sectp->flags & SEC_RELOC) == 0)
dce234bc 2495 {
d521ce57 2496 info->buffer = gdb_bfd_map_section (sectp, &info->size);
4bf44c1c 2497 return;
dce234bc 2498 }
dce234bc 2499
224c3ddb 2500 buf = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, info->size);
4bf44c1c 2501 info->buffer = buf;
dce234bc
PP
2502
2503 /* When debugging .o files, we may need to apply relocations; see
2504 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
2505 We never compress sections in .o files, so we only need to
2506 try this when the section is not compressed. */
ac8035ab 2507 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
dce234bc
PP
2508 if (retbuf != NULL)
2509 {
2510 info->buffer = retbuf;
2511 return;
2512 }
2513
a32a8923
DE
2514 abfd = get_section_bfd_owner (info);
2515 gdb_assert (abfd != NULL);
2516
dce234bc
PP
2517 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
2518 || bfd_bread (buf, info->size, abfd) != info->size)
19ac8c2e
DE
2519 {
2520 error (_("Dwarf Error: Can't read DWARF data"
2521 " in section %s [in module %s]"),
2522 bfd_section_name (abfd, sectp), bfd_get_filename (abfd));
2523 }
dce234bc
PP
2524}
2525
9e0ac564
TT
2526/* A helper function that returns the size of a section in a safe way.
2527 If you are positive that the section has been read before using the
2528 size, then it is safe to refer to the dwarf2_section_info object's
2529 "size" field directly. In other cases, you must call this
2530 function, because for compressed sections the size field is not set
2531 correctly until the section has been read. */
2532
2533static bfd_size_type
2534dwarf2_section_size (struct objfile *objfile,
2535 struct dwarf2_section_info *info)
2536{
2537 if (!info->readin)
2538 dwarf2_read_section (objfile, info);
2539 return info->size;
2540}
2541
dce234bc 2542/* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
0963b4bd 2543 SECTION_NAME. */
af34e669 2544
dce234bc 2545void
3017a003
TG
2546dwarf2_get_section_info (struct objfile *objfile,
2547 enum dwarf2_section_enum sect,
d521ce57 2548 asection **sectp, const gdb_byte **bufp,
dce234bc
PP
2549 bfd_size_type *sizep)
2550{
5bfd760d 2551 struct dwarf2_per_objfile *data = dwarf2_objfile_data_key.get (objfile);
dce234bc 2552 struct dwarf2_section_info *info;
a3b2a86b
TT
2553
2554 /* We may see an objfile without any DWARF, in which case we just
2555 return nothing. */
2556 if (data == NULL)
2557 {
2558 *sectp = NULL;
2559 *bufp = NULL;
2560 *sizep = 0;
2561 return;
2562 }
3017a003
TG
2563 switch (sect)
2564 {
2565 case DWARF2_DEBUG_FRAME:
2566 info = &data->frame;
2567 break;
2568 case DWARF2_EH_FRAME:
2569 info = &data->eh_frame;
2570 break;
2571 default:
2572 gdb_assert_not_reached ("unexpected section");
2573 }
dce234bc 2574
9e0ac564 2575 dwarf2_read_section (objfile, info);
dce234bc 2576
a32a8923 2577 *sectp = get_section_bfd_section (info);
dce234bc
PP
2578 *bufp = info->buffer;
2579 *sizep = info->size;
2580}
2581
36586728
TT
2582/* A helper function to find the sections for a .dwz file. */
2583
2584static void
2585locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2586{
9a3c8263 2587 struct dwz_file *dwz_file = (struct dwz_file *) arg;
36586728
TT
2588
2589 /* Note that we only support the standard ELF names, because .dwz
2590 is ELF-only (at the time of writing). */
2591 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2592 {
049412e3 2593 dwz_file->abbrev.s.section = sectp;
36586728
TT
2594 dwz_file->abbrev.size = bfd_get_section_size (sectp);
2595 }
2596 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2597 {
049412e3 2598 dwz_file->info.s.section = sectp;
36586728
TT
2599 dwz_file->info.size = bfd_get_section_size (sectp);
2600 }
2601 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2602 {
049412e3 2603 dwz_file->str.s.section = sectp;
36586728
TT
2604 dwz_file->str.size = bfd_get_section_size (sectp);
2605 }
2606 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2607 {
049412e3 2608 dwz_file->line.s.section = sectp;
36586728
TT
2609 dwz_file->line.size = bfd_get_section_size (sectp);
2610 }
2611 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2612 {
049412e3 2613 dwz_file->macro.s.section = sectp;
36586728
TT
2614 dwz_file->macro.size = bfd_get_section_size (sectp);
2615 }
2ec9a5e0
TT
2616 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2617 {
049412e3 2618 dwz_file->gdb_index.s.section = sectp;
2ec9a5e0
TT
2619 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2620 }
927aa2e7
JK
2621 else if (section_is_p (sectp->name, &dwarf2_elf_names.debug_names))
2622 {
2623 dwz_file->debug_names.s.section = sectp;
2624 dwz_file->debug_names.size = bfd_get_section_size (sectp);
2625 }
36586728
TT
2626}
2627
c4973306 2628/* See dwarf2read.h. */
36586728 2629
c4973306 2630struct dwz_file *
ed2dc618 2631dwarf2_get_dwz_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
36586728 2632{
36586728 2633 const char *filename;
acd13123 2634 bfd_size_type buildid_len_arg;
dc294be5
TT
2635 size_t buildid_len;
2636 bfd_byte *buildid;
36586728
TT
2637
2638 if (dwarf2_per_objfile->dwz_file != NULL)
7ff8cb8c 2639 return dwarf2_per_objfile->dwz_file.get ();
36586728 2640
4db1a1dc 2641 bfd_set_error (bfd_error_no_error);
791afaa2
TT
2642 gdb::unique_xmalloc_ptr<char> data
2643 (bfd_get_alt_debug_link_info (dwarf2_per_objfile->objfile->obfd,
2644 &buildid_len_arg, &buildid));
4db1a1dc
TT
2645 if (data == NULL)
2646 {
2647 if (bfd_get_error () == bfd_error_no_error)
2648 return NULL;
2649 error (_("could not read '.gnu_debugaltlink' section: %s"),
2650 bfd_errmsg (bfd_get_error ()));
2651 }
791afaa2
TT
2652
2653 gdb::unique_xmalloc_ptr<bfd_byte> buildid_holder (buildid);
36586728 2654
acd13123
TT
2655 buildid_len = (size_t) buildid_len_arg;
2656
791afaa2 2657 filename = data.get ();
d721ba37
PA
2658
2659 std::string abs_storage;
36586728
TT
2660 if (!IS_ABSOLUTE_PATH (filename))
2661 {
14278e1f
TT
2662 gdb::unique_xmalloc_ptr<char> abs
2663 = gdb_realpath (objfile_name (dwarf2_per_objfile->objfile));
36586728 2664
14278e1f 2665 abs_storage = ldirname (abs.get ()) + SLASH_STRING + filename;
d721ba37 2666 filename = abs_storage.c_str ();
36586728
TT
2667 }
2668
dc294be5
TT
2669 /* First try the file name given in the section. If that doesn't
2670 work, try to use the build-id instead. */
192b62ce 2671 gdb_bfd_ref_ptr dwz_bfd (gdb_bfd_open (filename, gnutarget, -1));
dc294be5 2672 if (dwz_bfd != NULL)
36586728 2673 {
192b62ce 2674 if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
0f58c9e8 2675 dwz_bfd.reset (nullptr);
36586728
TT
2676 }
2677
dc294be5
TT
2678 if (dwz_bfd == NULL)
2679 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2680
2681 if (dwz_bfd == NULL)
2682 error (_("could not find '.gnu_debugaltlink' file for %s"),
2683 objfile_name (dwarf2_per_objfile->objfile));
2684
7ff8cb8c
TT
2685 std::unique_ptr<struct dwz_file> result
2686 (new struct dwz_file (std::move (dwz_bfd)));
36586728 2687
7ff8cb8c
TT
2688 bfd_map_over_sections (result->dwz_bfd.get (), locate_dwz_sections,
2689 result.get ());
36586728 2690
7ff8cb8c
TT
2691 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd,
2692 result->dwz_bfd.get ());
2693 dwarf2_per_objfile->dwz_file = std::move (result);
2694 return dwarf2_per_objfile->dwz_file.get ();
36586728 2695}
9291a0cd 2696\f
7b9f3c50
DE
2697/* DWARF quick_symbols_functions support. */
2698
2699/* TUs can share .debug_line entries, and there can be a lot more TUs than
2700 unique line tables, so we maintain a separate table of all .debug_line
2701 derived entries to support the sharing.
2702 All the quick functions need is the list of file names. We discard the
2703 line_header when we're done and don't need to record it here. */
2704struct quick_file_names
2705{
094b34ac
DE
2706 /* The data used to construct the hash key. */
2707 struct stmt_list_hash hash;
7b9f3c50
DE
2708
2709 /* The number of entries in file_names, real_names. */
2710 unsigned int num_file_names;
2711
2712 /* The file names from the line table, after being run through
2713 file_full_name. */
2714 const char **file_names;
2715
2716 /* The file names from the line table after being run through
2717 gdb_realpath. These are computed lazily. */
2718 const char **real_names;
2719};
2720
2721/* When using the index (and thus not using psymtabs), each CU has an
2722 object of this type. This is used to hold information needed by
2723 the various "quick" methods. */
2724struct dwarf2_per_cu_quick_data
2725{
2726 /* The file table. This can be NULL if there was no file table
2727 or it's currently not read in.
2728 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2729 struct quick_file_names *file_names;
2730
2731 /* The corresponding symbol table. This is NULL if symbols for this
2732 CU have not yet been read. */
43f3e411 2733 struct compunit_symtab *compunit_symtab;
7b9f3c50
DE
2734
2735 /* A temporary mark bit used when iterating over all CUs in
2736 expand_symtabs_matching. */
2737 unsigned int mark : 1;
2738
2739 /* True if we've tried to read the file table and found there isn't one.
2740 There will be no point in trying to read it again next time. */
2741 unsigned int no_file_data : 1;
2742};
2743
094b34ac
DE
2744/* Utility hash function for a stmt_list_hash. */
2745
2746static hashval_t
2747hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2748{
2749 hashval_t v = 0;
2750
2751 if (stmt_list_hash->dwo_unit != NULL)
2752 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
9c541725 2753 v += to_underlying (stmt_list_hash->line_sect_off);
094b34ac
DE
2754 return v;
2755}
2756
2757/* Utility equality function for a stmt_list_hash. */
2758
2759static int
2760eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2761 const struct stmt_list_hash *rhs)
2762{
2763 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2764 return 0;
2765 if (lhs->dwo_unit != NULL
2766 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2767 return 0;
2768
9c541725 2769 return lhs->line_sect_off == rhs->line_sect_off;
094b34ac
DE
2770}
2771
7b9f3c50
DE
2772/* Hash function for a quick_file_names. */
2773
2774static hashval_t
2775hash_file_name_entry (const void *e)
2776{
9a3c8263
SM
2777 const struct quick_file_names *file_data
2778 = (const struct quick_file_names *) e;
7b9f3c50 2779
094b34ac 2780 return hash_stmt_list_entry (&file_data->hash);
7b9f3c50
DE
2781}
2782
2783/* Equality function for a quick_file_names. */
2784
2785static int
2786eq_file_name_entry (const void *a, const void *b)
2787{
9a3c8263
SM
2788 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2789 const struct quick_file_names *eb = (const struct quick_file_names *) b;
7b9f3c50 2790
094b34ac 2791 return eq_stmt_list_entry (&ea->hash, &eb->hash);
7b9f3c50
DE
2792}
2793
2794/* Delete function for a quick_file_names. */
2795
2796static void
2797delete_file_name_entry (void *e)
2798{
9a3c8263 2799 struct quick_file_names *file_data = (struct quick_file_names *) e;
7b9f3c50
DE
2800 int i;
2801
2802 for (i = 0; i < file_data->num_file_names; ++i)
2803 {
2804 xfree ((void*) file_data->file_names[i]);
2805 if (file_data->real_names)
2806 xfree ((void*) file_data->real_names[i]);
2807 }
2808
2809 /* The space for the struct itself lives on objfile_obstack,
2810 so we don't free it here. */
2811}
2812
2813/* Create a quick_file_names hash table. */
2814
2815static htab_t
2816create_quick_file_names_table (unsigned int nr_initial_entries)
2817{
2818 return htab_create_alloc (nr_initial_entries,
2819 hash_file_name_entry, eq_file_name_entry,
2820 delete_file_name_entry, xcalloc, xfree);
2821}
9291a0cd 2822
918dd910
JK
2823/* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2824 have to be created afterwards. You should call age_cached_comp_units after
2825 processing PER_CU->CU. dw2_setup must have been already called. */
2826
2827static void
58f0c718 2828load_cu (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
918dd910 2829{
3019eac3 2830 if (per_cu->is_debug_types)
e5fe5e75 2831 load_full_type_unit (per_cu);
918dd910 2832 else
58f0c718 2833 load_full_comp_unit (per_cu, skip_partial, language_minimal);
918dd910 2834
cc12ce38
DE
2835 if (per_cu->cu == NULL)
2836 return; /* Dummy CU. */
2dc860c0
DE
2837
2838 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
918dd910
JK
2839}
2840
a0f42c21 2841/* Read in the symbols for PER_CU. */
2fdf6df6 2842
9291a0cd 2843static void
58f0c718 2844dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
9291a0cd 2845{
ed2dc618 2846 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
9291a0cd 2847
f4dc4d17
DE
2848 /* Skip type_unit_groups, reading the type units they contain
2849 is handled elsewhere. */
2850 if (IS_TYPE_UNIT_GROUP (per_cu))
2851 return;
2852
b303c6f6
AB
2853 /* The destructor of dwarf2_queue_guard frees any entries left on
2854 the queue. After this point we're guaranteed to leave this function
2855 with the dwarf queue empty. */
2856 dwarf2_queue_guard q_guard;
9291a0cd 2857
95554aad 2858 if (dwarf2_per_objfile->using_index
43f3e411 2859 ? per_cu->v.quick->compunit_symtab == NULL
95554aad
TT
2860 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2861 {
2862 queue_comp_unit (per_cu, language_minimal);
58f0c718 2863 load_cu (per_cu, skip_partial);
89e63ee4
DE
2864
2865 /* If we just loaded a CU from a DWO, and we're working with an index
2866 that may badly handle TUs, load all the TUs in that DWO as well.
2867 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2868 if (!per_cu->is_debug_types
cc12ce38 2869 && per_cu->cu != NULL
89e63ee4
DE
2870 && per_cu->cu->dwo_unit != NULL
2871 && dwarf2_per_objfile->index_table != NULL
2872 && dwarf2_per_objfile->index_table->version <= 7
2873 /* DWP files aren't supported yet. */
ed2dc618 2874 && get_dwp_file (dwarf2_per_objfile) == NULL)
89e63ee4 2875 queue_and_load_all_dwo_tus (per_cu);
95554aad 2876 }
9291a0cd 2877
ed2dc618 2878 process_queue (dwarf2_per_objfile);
9291a0cd
TT
2879
2880 /* Age the cache, releasing compilation units that have not
2881 been used recently. */
ed2dc618 2882 age_cached_comp_units (dwarf2_per_objfile);
9291a0cd
TT
2883}
2884
2885/* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2886 the objfile from which this CU came. Returns the resulting symbol
2887 table. */
2fdf6df6 2888
43f3e411 2889static struct compunit_symtab *
58f0c718 2890dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
9291a0cd 2891{
ed2dc618
SM
2892 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
2893
95554aad 2894 gdb_assert (dwarf2_per_objfile->using_index);
43f3e411 2895 if (!per_cu->v.quick->compunit_symtab)
9291a0cd 2896 {
11ed8cad 2897 free_cached_comp_units freer (dwarf2_per_objfile);
c83dd867 2898 scoped_restore decrementer = increment_reading_symtab ();
58f0c718 2899 dw2_do_instantiate_symtab (per_cu, skip_partial);
ed2dc618 2900 process_cu_includes (dwarf2_per_objfile);
9291a0cd 2901 }
f194fefb 2902
43f3e411 2903 return per_cu->v.quick->compunit_symtab;
9291a0cd
TT
2904}
2905
ff4c9fec 2906/* See declaration. */
f4dc4d17 2907
ff4c9fec
SM
2908dwarf2_per_cu_data *
2909dwarf2_per_objfile::get_cutu (int index)
2910{
b76e467d 2911 if (index >= this->all_comp_units.size ())
ff4c9fec 2912 {
b76e467d 2913 index -= this->all_comp_units.size ();
b2bdb8cf 2914 gdb_assert (index < this->all_type_units.size ());
ff4c9fec
SM
2915 return &this->all_type_units[index]->per_cu;
2916 }
f4dc4d17 2917
ff4c9fec
SM
2918 return this->all_comp_units[index];
2919}
f4dc4d17 2920
ff4c9fec 2921/* See declaration. */
2fdf6df6 2922
ff4c9fec
SM
2923dwarf2_per_cu_data *
2924dwarf2_per_objfile::get_cu (int index)
1fd400ff 2925{
b76e467d 2926 gdb_assert (index >= 0 && index < this->all_comp_units.size ());
f4dc4d17 2927
ff4c9fec 2928 return this->all_comp_units[index];
f4dc4d17
DE
2929}
2930
ff4c9fec 2931/* See declaration. */
f4dc4d17 2932
ff4c9fec
SM
2933signatured_type *
2934dwarf2_per_objfile::get_tu (int index)
f4dc4d17 2935{
b2bdb8cf 2936 gdb_assert (index >= 0 && index < this->all_type_units.size ());
f4dc4d17 2937
ff4c9fec 2938 return this->all_type_units[index];
1fd400ff
TT
2939}
2940
4b514bc8
JK
2941/* Return a new dwarf2_per_cu_data allocated on OBJFILE's
2942 objfile_obstack, and constructed with the specified field
2943 values. */
2944
2945static dwarf2_per_cu_data *
ed2dc618 2946create_cu_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
4b514bc8
JK
2947 struct dwarf2_section_info *section,
2948 int is_dwz,
2949 sect_offset sect_off, ULONGEST length)
2950{
ed2dc618 2951 struct objfile *objfile = dwarf2_per_objfile->objfile;
4b514bc8
JK
2952 dwarf2_per_cu_data *the_cu
2953 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2954 struct dwarf2_per_cu_data);
2955 the_cu->sect_off = sect_off;
2956 the_cu->length = length;
e3b94546 2957 the_cu->dwarf2_per_objfile = dwarf2_per_objfile;
4b514bc8
JK
2958 the_cu->section = section;
2959 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2960 struct dwarf2_per_cu_quick_data);
2961 the_cu->is_dwz = is_dwz;
2962 return the_cu;
2963}
2964
2ec9a5e0
TT
2965/* A helper for create_cus_from_index that handles a given list of
2966 CUs. */
2fdf6df6 2967
74a0d9f6 2968static void
12359b5e 2969create_cus_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
2ec9a5e0
TT
2970 const gdb_byte *cu_list, offset_type n_elements,
2971 struct dwarf2_section_info *section,
b76e467d 2972 int is_dwz)
9291a0cd 2973{
12359b5e 2974 for (offset_type i = 0; i < n_elements; i += 2)
9291a0cd 2975 {
74a0d9f6 2976 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
2977
2978 sect_offset sect_off
2979 = (sect_offset) extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2980 ULONGEST length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
9291a0cd
TT
2981 cu_list += 2 * 8;
2982
b76e467d 2983 dwarf2_per_cu_data *per_cu
ed2dc618
SM
2984 = create_cu_from_index_list (dwarf2_per_objfile, section, is_dwz,
2985 sect_off, length);
b76e467d 2986 dwarf2_per_objfile->all_comp_units.push_back (per_cu);
9291a0cd 2987 }
9291a0cd
TT
2988}
2989
2ec9a5e0 2990/* Read the CU list from the mapped index, and use it to create all
74a0d9f6 2991 the CU objects for this objfile. */
2ec9a5e0 2992
74a0d9f6 2993static void
12359b5e 2994create_cus_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
2ec9a5e0
TT
2995 const gdb_byte *cu_list, offset_type cu_list_elements,
2996 const gdb_byte *dwz_list, offset_type dwz_elements)
2997{
b76e467d
SM
2998 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
2999 dwarf2_per_objfile->all_comp_units.reserve
3000 ((cu_list_elements + dwz_elements) / 2);
2ec9a5e0 3001
12359b5e 3002 create_cus_from_index_list (dwarf2_per_objfile, cu_list, cu_list_elements,
b76e467d 3003 &dwarf2_per_objfile->info, 0);
2ec9a5e0
TT
3004
3005 if (dwz_elements == 0)
74a0d9f6 3006 return;
2ec9a5e0 3007
12359b5e
SM
3008 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
3009 create_cus_from_index_list (dwarf2_per_objfile, dwz_list, dwz_elements,
b76e467d 3010 &dwz->info, 1);
2ec9a5e0
TT
3011}
3012
1fd400ff 3013/* Create the signatured type hash table from the index. */
673bfd45 3014
74a0d9f6 3015static void
12359b5e
SM
3016create_signatured_type_table_from_index
3017 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3018 struct dwarf2_section_info *section,
3019 const gdb_byte *bytes,
3020 offset_type elements)
1fd400ff 3021{
12359b5e 3022 struct objfile *objfile = dwarf2_per_objfile->objfile;
1fd400ff 3023
b2bdb8cf
SM
3024 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
3025 dwarf2_per_objfile->all_type_units.reserve (elements / 3);
1fd400ff 3026
12359b5e 3027 htab_t sig_types_hash = allocate_signatured_type_table (objfile);
1fd400ff 3028
12359b5e 3029 for (offset_type i = 0; i < elements; i += 3)
1fd400ff 3030 {
52dc124a 3031 struct signatured_type *sig_type;
9c541725 3032 ULONGEST signature;
1fd400ff 3033 void **slot;
9c541725 3034 cu_offset type_offset_in_tu;
1fd400ff 3035
74a0d9f6 3036 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
3037 sect_offset sect_off
3038 = (sect_offset) extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
3039 type_offset_in_tu
3040 = (cu_offset) extract_unsigned_integer (bytes + 8, 8,
3041 BFD_ENDIAN_LITTLE);
1fd400ff
TT
3042 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
3043 bytes += 3 * 8;
3044
52dc124a 3045 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1fd400ff 3046 struct signatured_type);
52dc124a 3047 sig_type->signature = signature;
9c541725 3048 sig_type->type_offset_in_tu = type_offset_in_tu;
3019eac3 3049 sig_type->per_cu.is_debug_types = 1;
8a0459fd 3050 sig_type->per_cu.section = section;
9c541725 3051 sig_type->per_cu.sect_off = sect_off;
e3b94546 3052 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
52dc124a 3053 sig_type->per_cu.v.quick
1fd400ff
TT
3054 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3055 struct dwarf2_per_cu_quick_data);
3056
52dc124a
DE
3057 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3058 *slot = sig_type;
1fd400ff 3059
b2bdb8cf 3060 dwarf2_per_objfile->all_type_units.push_back (sig_type);
1fd400ff
TT
3061 }
3062
673bfd45 3063 dwarf2_per_objfile->signatured_types = sig_types_hash;
1fd400ff
TT
3064}
3065
927aa2e7
JK
3066/* Create the signatured type hash table from .debug_names. */
3067
3068static void
3069create_signatured_type_table_from_debug_names
ed2dc618 3070 (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
3071 const mapped_debug_names &map,
3072 struct dwarf2_section_info *section,
3073 struct dwarf2_section_info *abbrev_section)
3074{
ed2dc618
SM
3075 struct objfile *objfile = dwarf2_per_objfile->objfile;
3076
927aa2e7
JK
3077 dwarf2_read_section (objfile, section);
3078 dwarf2_read_section (objfile, abbrev_section);
3079
b2bdb8cf
SM
3080 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
3081 dwarf2_per_objfile->all_type_units.reserve (map.tu_count);
927aa2e7
JK
3082
3083 htab_t sig_types_hash = allocate_signatured_type_table (objfile);
3084
3085 for (uint32_t i = 0; i < map.tu_count; ++i)
3086 {
3087 struct signatured_type *sig_type;
927aa2e7 3088 void **slot;
927aa2e7
JK
3089
3090 sect_offset sect_off
3091 = (sect_offset) (extract_unsigned_integer
3092 (map.tu_table_reordered + i * map.offset_size,
3093 map.offset_size,
3094 map.dwarf5_byte_order));
3095
3096 comp_unit_head cu_header;
ed2dc618
SM
3097 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
3098 abbrev_section,
927aa2e7
JK
3099 section->buffer + to_underlying (sect_off),
3100 rcuh_kind::TYPE);
3101
3102 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3103 struct signatured_type);
3104 sig_type->signature = cu_header.signature;
3105 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
3106 sig_type->per_cu.is_debug_types = 1;
3107 sig_type->per_cu.section = section;
3108 sig_type->per_cu.sect_off = sect_off;
e3b94546 3109 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
927aa2e7
JK
3110 sig_type->per_cu.v.quick
3111 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3112 struct dwarf2_per_cu_quick_data);
3113
3114 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3115 *slot = sig_type;
3116
b2bdb8cf 3117 dwarf2_per_objfile->all_type_units.push_back (sig_type);
927aa2e7
JK
3118 }
3119
3120 dwarf2_per_objfile->signatured_types = sig_types_hash;
3121}
3122
9291a0cd
TT
3123/* Read the address map data from the mapped index, and use it to
3124 populate the objfile's psymtabs_addrmap. */
2fdf6df6 3125
9291a0cd 3126static void
ed2dc618
SM
3127create_addrmap_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
3128 struct mapped_index *index)
9291a0cd 3129{
ed2dc618 3130 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 3131 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9291a0cd 3132 const gdb_byte *iter, *end;
9291a0cd 3133 struct addrmap *mutable_map;
9291a0cd
TT
3134 CORE_ADDR baseaddr;
3135
8268c778
PA
3136 auto_obstack temp_obstack;
3137
9291a0cd
TT
3138 mutable_map = addrmap_create_mutable (&temp_obstack);
3139
f00a2de2
PA
3140 iter = index->address_table.data ();
3141 end = iter + index->address_table.size ();
9291a0cd
TT
3142
3143 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3144
3145 while (iter < end)
3146 {
3147 ULONGEST hi, lo, cu_index;
3148 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3149 iter += 8;
3150 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3151 iter += 8;
3152 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
3153 iter += 4;
f652bce2 3154
24a55014 3155 if (lo > hi)
f652bce2 3156 {
b98664d3 3157 complaint (_(".gdb_index address table has invalid range (%s - %s)"),
c0cd8254 3158 hex_string (lo), hex_string (hi));
24a55014 3159 continue;
f652bce2 3160 }
24a55014 3161
b76e467d 3162 if (cu_index >= dwarf2_per_objfile->all_comp_units.size ())
f652bce2 3163 {
b98664d3 3164 complaint (_(".gdb_index address table has invalid CU number %u"),
f652bce2 3165 (unsigned) cu_index);
24a55014 3166 continue;
f652bce2 3167 }
24a55014 3168
79748972
TT
3169 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr) - baseaddr;
3170 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr) - baseaddr;
ed2dc618 3171 addrmap_set_empty (mutable_map, lo, hi - 1,
ff4c9fec 3172 dwarf2_per_objfile->get_cu (cu_index));
9291a0cd
TT
3173 }
3174
d320c2b5 3175 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 3176 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
9291a0cd
TT
3177}
3178
927aa2e7
JK
3179/* Read the address map data from DWARF-5 .debug_aranges, and use it to
3180 populate the objfile's psymtabs_addrmap. */
3181
3182static void
ed2dc618 3183create_addrmap_from_aranges (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
3184 struct dwarf2_section_info *section)
3185{
ed2dc618 3186 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7
JK
3187 bfd *abfd = objfile->obfd;
3188 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3189 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
3190 SECT_OFF_TEXT (objfile));
3191
3192 auto_obstack temp_obstack;
3193 addrmap *mutable_map = addrmap_create_mutable (&temp_obstack);
3194
3195 std::unordered_map<sect_offset,
3196 dwarf2_per_cu_data *,
3197 gdb::hash_enum<sect_offset>>
3198 debug_info_offset_to_per_cu;
b76e467d 3199 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 3200 {
927aa2e7
JK
3201 const auto insertpair
3202 = debug_info_offset_to_per_cu.emplace (per_cu->sect_off, per_cu);
3203 if (!insertpair.second)
3204 {
3205 warning (_("Section .debug_aranges in %s has duplicate "
9d8780f0
SM
3206 "debug_info_offset %s, ignoring .debug_aranges."),
3207 objfile_name (objfile), sect_offset_str (per_cu->sect_off));
927aa2e7
JK
3208 return;
3209 }
3210 }
3211
3212 dwarf2_read_section (objfile, section);
3213
3214 const bfd_endian dwarf5_byte_order = gdbarch_byte_order (gdbarch);
3215
3216 const gdb_byte *addr = section->buffer;
3217
3218 while (addr < section->buffer + section->size)
3219 {
3220 const gdb_byte *const entry_addr = addr;
3221 unsigned int bytes_read;
3222
3223 const LONGEST entry_length = read_initial_length (abfd, addr,
3224 &bytes_read);
3225 addr += bytes_read;
3226
3227 const gdb_byte *const entry_end = addr + entry_length;
3228 const bool dwarf5_is_dwarf64 = bytes_read != 4;
3229 const uint8_t offset_size = dwarf5_is_dwarf64 ? 8 : 4;
3230 if (addr + entry_length > section->buffer + section->size)
3231 {
47e3f474 3232 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
3233 "length %s exceeds section length %s, "
3234 "ignoring .debug_aranges."),
47e3f474
TV
3235 objfile_name (objfile),
3236 plongest (entry_addr - section->buffer),
927aa2e7
JK
3237 plongest (bytes_read + entry_length),
3238 pulongest (section->size));
3239 return;
3240 }
3241
3242 /* The version number. */
3243 const uint16_t version = read_2_bytes (abfd, addr);
3244 addr += 2;
3245 if (version != 2)
3246 {
47e3f474 3247 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 3248 "has unsupported version %d, ignoring .debug_aranges."),
47e3f474
TV
3249 objfile_name (objfile),
3250 plongest (entry_addr - section->buffer), version);
927aa2e7
JK
3251 return;
3252 }
3253
3254 const uint64_t debug_info_offset
3255 = extract_unsigned_integer (addr, offset_size, dwarf5_byte_order);
3256 addr += offset_size;
3257 const auto per_cu_it
3258 = debug_info_offset_to_per_cu.find (sect_offset (debug_info_offset));
3259 if (per_cu_it == debug_info_offset_to_per_cu.cend ())
3260 {
47e3f474 3261 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
3262 "debug_info_offset %s does not exists, "
3263 "ignoring .debug_aranges."),
47e3f474
TV
3264 objfile_name (objfile),
3265 plongest (entry_addr - section->buffer),
927aa2e7
JK
3266 pulongest (debug_info_offset));
3267 return;
3268 }
3269 dwarf2_per_cu_data *const per_cu = per_cu_it->second;
3270
3271 const uint8_t address_size = *addr++;
3272 if (address_size < 1 || address_size > 8)
3273 {
47e3f474 3274 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 3275 "address_size %u is invalid, ignoring .debug_aranges."),
47e3f474
TV
3276 objfile_name (objfile),
3277 plongest (entry_addr - section->buffer), address_size);
927aa2e7
JK
3278 return;
3279 }
3280
3281 const uint8_t segment_selector_size = *addr++;
3282 if (segment_selector_size != 0)
3283 {
47e3f474 3284 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
3285 "segment_selector_size %u is not supported, "
3286 "ignoring .debug_aranges."),
47e3f474
TV
3287 objfile_name (objfile),
3288 plongest (entry_addr - section->buffer),
927aa2e7
JK
3289 segment_selector_size);
3290 return;
3291 }
3292
3293 /* Must pad to an alignment boundary that is twice the address
3294 size. It is undocumented by the DWARF standard but GCC does
3295 use it. */
3296 for (size_t padding = ((-(addr - section->buffer))
3297 & (2 * address_size - 1));
3298 padding > 0; padding--)
3299 if (*addr++ != 0)
3300 {
47e3f474 3301 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 3302 "padding is not zero, ignoring .debug_aranges."),
47e3f474
TV
3303 objfile_name (objfile),
3304 plongest (entry_addr - section->buffer));
927aa2e7
JK
3305 return;
3306 }
3307
3308 for (;;)
3309 {
3310 if (addr + 2 * address_size > entry_end)
3311 {
47e3f474 3312 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
3313 "address list is not properly terminated, "
3314 "ignoring .debug_aranges."),
47e3f474
TV
3315 objfile_name (objfile),
3316 plongest (entry_addr - section->buffer));
927aa2e7
JK
3317 return;
3318 }
3319 ULONGEST start = extract_unsigned_integer (addr, address_size,
3320 dwarf5_byte_order);
3321 addr += address_size;
3322 ULONGEST length = extract_unsigned_integer (addr, address_size,
3323 dwarf5_byte_order);
3324 addr += address_size;
3325 if (start == 0 && length == 0)
3326 break;
3327 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
3328 {
3329 /* Symbol was eliminated due to a COMDAT group. */
3330 continue;
3331 }
3332 ULONGEST end = start + length;
79748972
TT
3333 start = (gdbarch_adjust_dwarf2_addr (gdbarch, start + baseaddr)
3334 - baseaddr);
3335 end = (gdbarch_adjust_dwarf2_addr (gdbarch, end + baseaddr)
3336 - baseaddr);
927aa2e7
JK
3337 addrmap_set_empty (mutable_map, start, end - 1, per_cu);
3338 }
3339 }
3340
d320c2b5 3341 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 3342 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
927aa2e7
JK
3343}
3344
9291a0cd
TT
3345/* Find a slot in the mapped index INDEX for the object named NAME.
3346 If NAME is found, set *VEC_OUT to point to the CU vector in the
109483d9
PA
3347 constant pool and return true. If NAME cannot be found, return
3348 false. */
2fdf6df6 3349
109483d9 3350static bool
9291a0cd
TT
3351find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
3352 offset_type **vec_out)
3353{
0cf03b49 3354 offset_type hash;
9291a0cd 3355 offset_type slot, step;
559a7a62 3356 int (*cmp) (const char *, const char *);
9291a0cd 3357
791afaa2 3358 gdb::unique_xmalloc_ptr<char> without_params;
0cf03b49 3359 if (current_language->la_language == language_cplus
45280282
IB
3360 || current_language->la_language == language_fortran
3361 || current_language->la_language == language_d)
0cf03b49
JK
3362 {
3363 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
3364 not contain any. */
a8719064 3365
72998fb3 3366 if (strchr (name, '(') != NULL)
0cf03b49 3367 {
109483d9 3368 without_params = cp_remove_params (name);
0cf03b49 3369
72998fb3 3370 if (without_params != NULL)
791afaa2 3371 name = without_params.get ();
0cf03b49
JK
3372 }
3373 }
3374
559a7a62 3375 /* Index version 4 did not support case insensitive searches. But the
feea76c2 3376 indices for case insensitive languages are built in lowercase, therefore
559a7a62
JK
3377 simulate our NAME being searched is also lowercased. */
3378 hash = mapped_index_string_hash ((index->version == 4
3379 && case_sensitivity == case_sensitive_off
3380 ? 5 : index->version),
3381 name);
3382
f00a2de2
PA
3383 slot = hash & (index->symbol_table.size () - 1);
3384 step = ((hash * 17) & (index->symbol_table.size () - 1)) | 1;
559a7a62 3385 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
9291a0cd
TT
3386
3387 for (;;)
3388 {
9291a0cd 3389 const char *str;
f00a2de2
PA
3390
3391 const auto &bucket = index->symbol_table[slot];
3392 if (bucket.name == 0 && bucket.vec == 0)
109483d9 3393 return false;
9291a0cd 3394
f00a2de2 3395 str = index->constant_pool + MAYBE_SWAP (bucket.name);
559a7a62 3396 if (!cmp (name, str))
9291a0cd
TT
3397 {
3398 *vec_out = (offset_type *) (index->constant_pool
f00a2de2 3399 + MAYBE_SWAP (bucket.vec));
109483d9 3400 return true;
9291a0cd
TT
3401 }
3402
f00a2de2 3403 slot = (slot + step) & (index->symbol_table.size () - 1);
9291a0cd
TT
3404 }
3405}
3406
4485a1c1
SM
3407/* A helper function that reads the .gdb_index from BUFFER and fills
3408 in MAP. FILENAME is the name of the file containing the data;
d33bc52e 3409 it is used for error reporting. DEPRECATED_OK is true if it is
2ec9a5e0
TT
3410 ok to use deprecated sections.
3411
3412 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
3413 out parameters that are filled in with information about the CU and
3414 TU lists in the section.
3415
4485a1c1 3416 Returns true if all went well, false otherwise. */
2fdf6df6 3417
d33bc52e 3418static bool
4485a1c1
SM
3419read_gdb_index_from_buffer (struct objfile *objfile,
3420 const char *filename,
3421 bool deprecated_ok,
3422 gdb::array_view<const gdb_byte> buffer,
3423 struct mapped_index *map,
3424 const gdb_byte **cu_list,
3425 offset_type *cu_list_elements,
3426 const gdb_byte **types_list,
3427 offset_type *types_list_elements)
3428{
3429 const gdb_byte *addr = &buffer[0];
82430852 3430
9291a0cd 3431 /* Version check. */
4485a1c1 3432 offset_type version = MAYBE_SWAP (*(offset_type *) addr);
987d643c 3433 /* Versions earlier than 3 emitted every copy of a psymbol. This
a6e293d1 3434 causes the index to behave very poorly for certain requests. Version 3
831adc1f 3435 contained incomplete addrmap. So, it seems better to just ignore such
481860b3 3436 indices. */
831adc1f 3437 if (version < 4)
481860b3
GB
3438 {
3439 static int warning_printed = 0;
3440 if (!warning_printed)
3441 {
3442 warning (_("Skipping obsolete .gdb_index section in %s."),
2ec9a5e0 3443 filename);
481860b3
GB
3444 warning_printed = 1;
3445 }
3446 return 0;
3447 }
3448 /* Index version 4 uses a different hash function than index version
3449 5 and later.
3450
3451 Versions earlier than 6 did not emit psymbols for inlined
3452 functions. Using these files will cause GDB not to be able to
3453 set breakpoints on inlined functions by name, so we ignore these
e615022a
DE
3454 indices unless the user has done
3455 "set use-deprecated-index-sections on". */
2ec9a5e0 3456 if (version < 6 && !deprecated_ok)
481860b3
GB
3457 {
3458 static int warning_printed = 0;
3459 if (!warning_printed)
3460 {
e615022a
DE
3461 warning (_("\
3462Skipping deprecated .gdb_index section in %s.\n\
3463Do \"set use-deprecated-index-sections on\" before the file is read\n\
3464to use the section anyway."),
2ec9a5e0 3465 filename);
481860b3
GB
3466 warning_printed = 1;
3467 }
3468 return 0;
3469 }
796a7ff8 3470 /* Version 7 indices generated by gold refer to the CU for a symbol instead
8943b874
DE
3471 of the TU (for symbols coming from TUs),
3472 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3473 Plus gold-generated indices can have duplicate entries for global symbols,
3474 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3475 These are just performance bugs, and we can't distinguish gdb-generated
3476 indices from gold-generated ones, so issue no warning here. */
796a7ff8 3477
481860b3 3478 /* Indexes with higher version than the one supported by GDB may be no
594e8718 3479 longer backward compatible. */
796a7ff8 3480 if (version > 8)
594e8718 3481 return 0;
9291a0cd 3482
559a7a62 3483 map->version = version;
9291a0cd 3484
4485a1c1 3485 offset_type *metadata = (offset_type *) (addr + sizeof (offset_type));
1fd400ff 3486
4485a1c1 3487 int i = 0;
2ec9a5e0
TT
3488 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3489 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3490 / 8);
1fd400ff
TT
3491 ++i;
3492
2ec9a5e0
TT
3493 *types_list = addr + MAYBE_SWAP (metadata[i]);
3494 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3495 - MAYBE_SWAP (metadata[i]))
3496 / 8);
987d643c 3497 ++i;
1fd400ff 3498
f00a2de2
PA
3499 const gdb_byte *address_table = addr + MAYBE_SWAP (metadata[i]);
3500 const gdb_byte *address_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3501 map->address_table
3502 = gdb::array_view<const gdb_byte> (address_table, address_table_end);
1fd400ff
TT
3503 ++i;
3504
f00a2de2
PA
3505 const gdb_byte *symbol_table = addr + MAYBE_SWAP (metadata[i]);
3506 const gdb_byte *symbol_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3507 map->symbol_table
3508 = gdb::array_view<mapped_index::symbol_table_slot>
3509 ((mapped_index::symbol_table_slot *) symbol_table,
3510 (mapped_index::symbol_table_slot *) symbol_table_end);
9291a0cd 3511
f00a2de2 3512 ++i;
f9d83a0b 3513 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
1fd400ff 3514
2ec9a5e0
TT
3515 return 1;
3516}
3517
4485a1c1
SM
3518/* Callback types for dwarf2_read_gdb_index. */
3519
3520typedef gdb::function_view
3521 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_objfile *)>
3522 get_gdb_index_contents_ftype;
3523typedef gdb::function_view
3524 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
3525 get_gdb_index_contents_dwz_ftype;
3526
927aa2e7 3527/* Read .gdb_index. If everything went ok, initialize the "quick"
2ec9a5e0
TT
3528 elements of all the CUs and return 1. Otherwise, return 0. */
3529
3530static int
4485a1c1
SM
3531dwarf2_read_gdb_index
3532 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3533 get_gdb_index_contents_ftype get_gdb_index_contents,
3534 get_gdb_index_contents_dwz_ftype get_gdb_index_contents_dwz)
2ec9a5e0 3535{
2ec9a5e0
TT
3536 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3537 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
4db1a1dc 3538 struct dwz_file *dwz;
12359b5e 3539 struct objfile *objfile = dwarf2_per_objfile->objfile;
2ec9a5e0 3540
4485a1c1
SM
3541 gdb::array_view<const gdb_byte> main_index_contents
3542 = get_gdb_index_contents (objfile, dwarf2_per_objfile);
3543
3544 if (main_index_contents.empty ())
3545 return 0;
3546
3063847f 3547 std::unique_ptr<struct mapped_index> map (new struct mapped_index);
4485a1c1
SM
3548 if (!read_gdb_index_from_buffer (objfile, objfile_name (objfile),
3549 use_deprecated_index_sections,
3550 main_index_contents, map.get (), &cu_list,
3551 &cu_list_elements, &types_list,
3552 &types_list_elements))
2ec9a5e0
TT
3553 return 0;
3554
0fefef59 3555 /* Don't use the index if it's empty. */
3063847f 3556 if (map->symbol_table.empty ())
0fefef59
DE
3557 return 0;
3558
2ec9a5e0
TT
3559 /* If there is a .dwz file, read it so we can get its CU list as
3560 well. */
ed2dc618 3561 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
4db1a1dc 3562 if (dwz != NULL)
2ec9a5e0 3563 {
2ec9a5e0
TT
3564 struct mapped_index dwz_map;
3565 const gdb_byte *dwz_types_ignore;
3566 offset_type dwz_types_elements_ignore;
3567
4485a1c1
SM
3568 gdb::array_view<const gdb_byte> dwz_index_content
3569 = get_gdb_index_contents_dwz (objfile, dwz);
3570
3571 if (dwz_index_content.empty ())
3572 return 0;
3573
3574 if (!read_gdb_index_from_buffer (objfile,
3575 bfd_get_filename (dwz->dwz_bfd), 1,
3576 dwz_index_content, &dwz_map,
3577 &dwz_list, &dwz_list_elements,
3578 &dwz_types_ignore,
3579 &dwz_types_elements_ignore))
2ec9a5e0
TT
3580 {
3581 warning (_("could not read '.gdb_index' section from %s; skipping"),
3582 bfd_get_filename (dwz->dwz_bfd));
3583 return 0;
3584 }
3585 }
3586
12359b5e
SM
3587 create_cus_from_index (dwarf2_per_objfile, cu_list, cu_list_elements,
3588 dwz_list, dwz_list_elements);
1fd400ff 3589
8b70b953
TT
3590 if (types_list_elements)
3591 {
8b70b953
TT
3592 /* We can only handle a single .debug_types when we have an
3593 index. */
fd5866f6 3594 if (dwarf2_per_objfile->types.size () != 1)
8b70b953
TT
3595 return 0;
3596
fd5866f6 3597 dwarf2_section_info *section = &dwarf2_per_objfile->types[0];
8b70b953 3598
12359b5e
SM
3599 create_signatured_type_table_from_index (dwarf2_per_objfile, section,
3600 types_list, types_list_elements);
8b70b953 3601 }
9291a0cd 3602
3063847f 3603 create_addrmap_from_index (dwarf2_per_objfile, map.get ());
9291a0cd 3604
3063847f 3605 dwarf2_per_objfile->index_table = std::move (map);
9291a0cd 3606 dwarf2_per_objfile->using_index = 1;
7b9f3c50 3607 dwarf2_per_objfile->quick_file_names_table =
b76e467d 3608 create_quick_file_names_table (dwarf2_per_objfile->all_comp_units.size ());
9291a0cd
TT
3609
3610 return 1;
3611}
3612
dee91e82 3613/* die_reader_func for dw2_get_file_names. */
2fdf6df6 3614
dee91e82
DE
3615static void
3616dw2_get_file_names_reader (const struct die_reader_specs *reader,
d521ce57 3617 const gdb_byte *info_ptr,
dee91e82
DE
3618 struct die_info *comp_unit_die,
3619 int has_children,
3620 void *data)
9291a0cd 3621{
dee91e82 3622 struct dwarf2_cu *cu = reader->cu;
ed2dc618 3623 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
518817b3
SM
3624 struct dwarf2_per_objfile *dwarf2_per_objfile
3625 = cu->per_cu->dwarf2_per_objfile;
dee91e82 3626 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 3627 struct dwarf2_per_cu_data *lh_cu;
9291a0cd 3628 struct attribute *attr;
dee91e82 3629 int i;
7b9f3c50
DE
3630 void **slot;
3631 struct quick_file_names *qfn;
9291a0cd 3632
0186c6a7
DE
3633 gdb_assert (! this_cu->is_debug_types);
3634
07261596
TT
3635 /* Our callers never want to match partial units -- instead they
3636 will match the enclosing full CU. */
3637 if (comp_unit_die->tag == DW_TAG_partial_unit)
3638 {
3639 this_cu->v.quick->no_file_data = 1;
3640 return;
3641 }
3642
0186c6a7 3643 lh_cu = this_cu;
7b9f3c50 3644 slot = NULL;
dee91e82 3645
fff8551c 3646 line_header_up lh;
9c541725 3647 sect_offset line_offset {};
fff8551c 3648
dee91e82 3649 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
9291a0cd
TT
3650 if (attr)
3651 {
7b9f3c50
DE
3652 struct quick_file_names find_entry;
3653
9c541725 3654 line_offset = (sect_offset) DW_UNSND (attr);
7b9f3c50
DE
3655
3656 /* We may have already read in this line header (TU line header sharing).
3657 If we have we're done. */
094b34ac 3658 find_entry.hash.dwo_unit = cu->dwo_unit;
9c541725 3659 find_entry.hash.line_sect_off = line_offset;
7b9f3c50
DE
3660 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
3661 &find_entry, INSERT);
3662 if (*slot != NULL)
3663 {
9a3c8263 3664 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
dee91e82 3665 return;
7b9f3c50
DE
3666 }
3667
3019eac3 3668 lh = dwarf_decode_line_header (line_offset, cu);
9291a0cd
TT
3669 }
3670 if (lh == NULL)
3671 {
094b34ac 3672 lh_cu->v.quick->no_file_data = 1;
dee91e82 3673 return;
9291a0cd
TT
3674 }
3675
8d749320 3676 qfn = XOBNEW (&objfile->objfile_obstack, struct quick_file_names);
094b34ac 3677 qfn->hash.dwo_unit = cu->dwo_unit;
9c541725 3678 qfn->hash.line_sect_off = line_offset;
7b9f3c50
DE
3679 gdb_assert (slot != NULL);
3680 *slot = qfn;
9291a0cd 3681
d721ba37 3682 file_and_directory fnd = find_file_and_directory (comp_unit_die, cu);
9291a0cd 3683
fff8551c 3684 qfn->num_file_names = lh->file_names.size ();
8d749320 3685 qfn->file_names =
fff8551c
PA
3686 XOBNEWVEC (&objfile->objfile_obstack, const char *, lh->file_names.size ());
3687 for (i = 0; i < lh->file_names.size (); ++i)
3688 qfn->file_names[i] = file_full_name (i + 1, lh.get (), fnd.comp_dir);
7b9f3c50 3689 qfn->real_names = NULL;
9291a0cd 3690
094b34ac 3691 lh_cu->v.quick->file_names = qfn;
dee91e82
DE
3692}
3693
3694/* A helper for the "quick" functions which attempts to read the line
3695 table for THIS_CU. */
3696
3697static struct quick_file_names *
e4a48d9d 3698dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
dee91e82 3699{
0186c6a7
DE
3700 /* This should never be called for TUs. */
3701 gdb_assert (! this_cu->is_debug_types);
3702 /* Nor type unit groups. */
3703 gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
f4dc4d17 3704
dee91e82
DE
3705 if (this_cu->v.quick->file_names != NULL)
3706 return this_cu->v.quick->file_names;
3707 /* If we know there is no line data, no point in looking again. */
3708 if (this_cu->v.quick->no_file_data)
3709 return NULL;
3710
0186c6a7 3711 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
dee91e82
DE
3712
3713 if (this_cu->v.quick->no_file_data)
3714 return NULL;
3715 return this_cu->v.quick->file_names;
9291a0cd
TT
3716}
3717
3718/* A helper for the "quick" functions which computes and caches the
7b9f3c50 3719 real path for a given file name from the line table. */
2fdf6df6 3720
9291a0cd 3721static const char *
7b9f3c50
DE
3722dw2_get_real_path (struct objfile *objfile,
3723 struct quick_file_names *qfn, int index)
9291a0cd 3724{
7b9f3c50
DE
3725 if (qfn->real_names == NULL)
3726 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
26f2dc30 3727 qfn->num_file_names, const char *);
9291a0cd 3728
7b9f3c50 3729 if (qfn->real_names[index] == NULL)
14278e1f 3730 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]).release ();
9291a0cd 3731
7b9f3c50 3732 return qfn->real_names[index];
9291a0cd
TT
3733}
3734
3735static struct symtab *
3736dw2_find_last_source_symtab (struct objfile *objfile)
3737{
ed2dc618
SM
3738 struct dwarf2_per_objfile *dwarf2_per_objfile
3739 = get_dwarf2_per_objfile (objfile);
b76e467d 3740 dwarf2_per_cu_data *dwarf_cu = dwarf2_per_objfile->all_comp_units.back ();
58f0c718 3741 compunit_symtab *cust = dw2_instantiate_symtab (dwarf_cu, false);
ae2de4f8 3742
43f3e411
DE
3743 if (cust == NULL)
3744 return NULL;
ed2dc618 3745
43f3e411 3746 return compunit_primary_filetab (cust);
9291a0cd
TT
3747}
3748
7b9f3c50
DE
3749/* Traversal function for dw2_forget_cached_source_info. */
3750
3751static int
3752dw2_free_cached_file_names (void **slot, void *info)
9291a0cd 3753{
7b9f3c50 3754 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
9291a0cd 3755
7b9f3c50 3756 if (file_data->real_names)
9291a0cd 3757 {
7b9f3c50 3758 int i;
9291a0cd 3759
7b9f3c50 3760 for (i = 0; i < file_data->num_file_names; ++i)
9291a0cd 3761 {
7b9f3c50
DE
3762 xfree ((void*) file_data->real_names[i]);
3763 file_data->real_names[i] = NULL;
9291a0cd
TT
3764 }
3765 }
7b9f3c50
DE
3766
3767 return 1;
3768}
3769
3770static void
3771dw2_forget_cached_source_info (struct objfile *objfile)
3772{
ed2dc618
SM
3773 struct dwarf2_per_objfile *dwarf2_per_objfile
3774 = get_dwarf2_per_objfile (objfile);
7b9f3c50
DE
3775
3776 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3777 dw2_free_cached_file_names, NULL);
9291a0cd
TT
3778}
3779
f8eba3c6
TT
3780/* Helper function for dw2_map_symtabs_matching_filename that expands
3781 the symtabs and calls the iterator. */
3782
3783static int
3784dw2_map_expand_apply (struct objfile *objfile,
3785 struct dwarf2_per_cu_data *per_cu,
f5b95b50 3786 const char *name, const char *real_path,
14bc53a8 3787 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 3788{
43f3e411 3789 struct compunit_symtab *last_made = objfile->compunit_symtabs;
f8eba3c6
TT
3790
3791 /* Don't visit already-expanded CUs. */
43f3e411 3792 if (per_cu->v.quick->compunit_symtab)
f8eba3c6
TT
3793 return 0;
3794
3795 /* This may expand more than one symtab, and we want to iterate over
3796 all of them. */
58f0c718 3797 dw2_instantiate_symtab (per_cu, false);
f8eba3c6 3798
14bc53a8
PA
3799 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
3800 last_made, callback);
f8eba3c6
TT
3801}
3802
3803/* Implementation of the map_symtabs_matching_filename method. */
3804
14bc53a8
PA
3805static bool
3806dw2_map_symtabs_matching_filename
3807 (struct objfile *objfile, const char *name, const char *real_path,
3808 gdb::function_view<bool (symtab *)> callback)
9291a0cd 3809{
c011a4f4 3810 const char *name_basename = lbasename (name);
ed2dc618
SM
3811 struct dwarf2_per_objfile *dwarf2_per_objfile
3812 = get_dwarf2_per_objfile (objfile);
ae2de4f8 3813
848e3e78
DE
3814 /* The rule is CUs specify all the files, including those used by
3815 any TU, so there's no need to scan TUs here. */
f4dc4d17 3816
b76e467d 3817 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
9291a0cd 3818 {
3d7bb9d9 3819 /* We only need to look at symtabs not already expanded. */
43f3e411 3820 if (per_cu->v.quick->compunit_symtab)
9291a0cd
TT
3821 continue;
3822
b76e467d 3823 quick_file_names *file_data = dw2_get_file_names (per_cu);
7b9f3c50 3824 if (file_data == NULL)
9291a0cd
TT
3825 continue;
3826
b76e467d 3827 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3828 {
7b9f3c50 3829 const char *this_name = file_data->file_names[j];
da235a7c 3830 const char *this_real_name;
9291a0cd 3831
af529f8f 3832 if (compare_filenames_for_search (this_name, name))
9291a0cd 3833 {
f5b95b50 3834 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3835 callback))
3836 return true;
288e77a7 3837 continue;
4aac40c8 3838 }
9291a0cd 3839
c011a4f4
DE
3840 /* Before we invoke realpath, which can get expensive when many
3841 files are involved, do a quick comparison of the basenames. */
3842 if (! basenames_may_differ
3843 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3844 continue;
3845
da235a7c
JK
3846 this_real_name = dw2_get_real_path (objfile, file_data, j);
3847 if (compare_filenames_for_search (this_real_name, name))
9291a0cd 3848 {
da235a7c 3849 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3850 callback))
3851 return true;
288e77a7 3852 continue;
da235a7c 3853 }
9291a0cd 3854
da235a7c
JK
3855 if (real_path != NULL)
3856 {
af529f8f
JK
3857 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3858 gdb_assert (IS_ABSOLUTE_PATH (name));
7b9f3c50 3859 if (this_real_name != NULL
af529f8f 3860 && FILENAME_CMP (real_path, this_real_name) == 0)
9291a0cd 3861 {
f5b95b50 3862 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3863 callback))
3864 return true;
288e77a7 3865 continue;
9291a0cd
TT
3866 }
3867 }
3868 }
3869 }
3870
14bc53a8 3871 return false;
9291a0cd
TT
3872}
3873
da51c347
DE
3874/* Struct used to manage iterating over all CUs looking for a symbol. */
3875
3876struct dw2_symtab_iterator
9291a0cd 3877{
ed2dc618
SM
3878 /* The dwarf2_per_objfile owning the CUs we are iterating on. */
3879 struct dwarf2_per_objfile *dwarf2_per_objfile;
da51c347
DE
3880 /* If non-zero, only look for symbols that match BLOCK_INDEX. */
3881 int want_specific_block;
3882 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3883 Unused if !WANT_SPECIFIC_BLOCK. */
3884 int block_index;
3885 /* The kind of symbol we're looking for. */
3886 domain_enum domain;
3887 /* The list of CUs from the index entry of the symbol,
3888 or NULL if not found. */
3889 offset_type *vec;
3890 /* The next element in VEC to look at. */
3891 int next;
3892 /* The number of elements in VEC, or zero if there is no match. */
3893 int length;
8943b874
DE
3894 /* Have we seen a global version of the symbol?
3895 If so we can ignore all further global instances.
3896 This is to work around gold/15646, inefficient gold-generated
3897 indices. */
3898 int global_seen;
da51c347 3899};
9291a0cd 3900
da51c347
DE
3901/* Initialize the index symtab iterator ITER.
3902 If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3903 in block BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
2fdf6df6 3904
9291a0cd 3905static void
da51c347 3906dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
ed2dc618 3907 struct dwarf2_per_objfile *dwarf2_per_objfile,
da51c347
DE
3908 int want_specific_block,
3909 int block_index,
3910 domain_enum domain,
3911 const char *name)
3912{
ed2dc618 3913 iter->dwarf2_per_objfile = dwarf2_per_objfile;
da51c347
DE
3914 iter->want_specific_block = want_specific_block;
3915 iter->block_index = block_index;
3916 iter->domain = domain;
3917 iter->next = 0;
8943b874 3918 iter->global_seen = 0;
da51c347 3919
3063847f 3920 mapped_index *index = dwarf2_per_objfile->index_table.get ();
ed2dc618
SM
3921
3922 /* index is NULL if OBJF_READNOW. */
3923 if (index != NULL && find_slot_in_mapped_hash (index, name, &iter->vec))
da51c347
DE
3924 iter->length = MAYBE_SWAP (*iter->vec);
3925 else
3926 {
3927 iter->vec = NULL;
3928 iter->length = 0;
3929 }
3930}
3931
3932/* Return the next matching CU or NULL if there are no more. */
3933
3934static struct dwarf2_per_cu_data *
3935dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3936{
ed2dc618
SM
3937 struct dwarf2_per_objfile *dwarf2_per_objfile = iter->dwarf2_per_objfile;
3938
da51c347
DE
3939 for ( ; iter->next < iter->length; ++iter->next)
3940 {
3941 offset_type cu_index_and_attrs =
3942 MAYBE_SWAP (iter->vec[iter->next + 1]);
3943 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
da51c347
DE
3944 int want_static = iter->block_index != GLOBAL_BLOCK;
3945 /* This value is only valid for index versions >= 7. */
3946 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3947 gdb_index_symbol_kind symbol_kind =
3948 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3949 /* Only check the symbol attributes if they're present.
3950 Indices prior to version 7 don't record them,
3951 and indices >= 7 may elide them for certain symbols
3952 (gold does this). */
3953 int attrs_valid =
ed2dc618 3954 (dwarf2_per_objfile->index_table->version >= 7
da51c347
DE
3955 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3956
3190f0c6 3957 /* Don't crash on bad data. */
b76e467d 3958 if (cu_index >= (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 3959 + dwarf2_per_objfile->all_type_units.size ()))
3190f0c6 3960 {
b98664d3 3961 complaint (_(".gdb_index entry has bad CU index"
4262abfb
JK
3962 " [in module %s]"),
3963 objfile_name (dwarf2_per_objfile->objfile));
3190f0c6
DE
3964 continue;
3965 }
3966
ff4c9fec 3967 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (cu_index);
3190f0c6 3968
da51c347 3969 /* Skip if already read in. */
43f3e411 3970 if (per_cu->v.quick->compunit_symtab)
da51c347
DE
3971 continue;
3972
8943b874
DE
3973 /* Check static vs global. */
3974 if (attrs_valid)
3975 {
3976 if (iter->want_specific_block
3977 && want_static != is_static)
3978 continue;
3979 /* Work around gold/15646. */
3980 if (!is_static && iter->global_seen)
3981 continue;
3982 if (!is_static)
3983 iter->global_seen = 1;
3984 }
da51c347
DE
3985
3986 /* Only check the symbol's kind if it has one. */
3987 if (attrs_valid)
3988 {
3989 switch (iter->domain)
3990 {
3991 case VAR_DOMAIN:
3992 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3993 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3994 /* Some types are also in VAR_DOMAIN. */
3995 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3996 continue;
3997 break;
3998 case STRUCT_DOMAIN:
3999 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4000 continue;
4001 break;
4002 case LABEL_DOMAIN:
4003 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
4004 continue;
4005 break;
4006 default:
4007 break;
4008 }
4009 }
4010
4011 ++iter->next;
4012 return per_cu;
4013 }
4014
4015 return NULL;
4016}
4017
43f3e411 4018static struct compunit_symtab *
da51c347
DE
4019dw2_lookup_symbol (struct objfile *objfile, int block_index,
4020 const char *name, domain_enum domain)
9291a0cd 4021{
43f3e411 4022 struct compunit_symtab *stab_best = NULL;
ed2dc618
SM
4023 struct dwarf2_per_objfile *dwarf2_per_objfile
4024 = get_dwarf2_per_objfile (objfile);
9291a0cd 4025
b5ec771e
PA
4026 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
4027
ed2dc618
SM
4028 struct dw2_symtab_iterator iter;
4029 struct dwarf2_per_cu_data *per_cu;
da51c347 4030
ed2dc618 4031 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 1, block_index, domain, name);
9291a0cd 4032
ed2dc618
SM
4033 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
4034 {
4035 struct symbol *sym, *with_opaque = NULL;
58f0c718 4036 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu, false);
ed2dc618 4037 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 4038 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
da51c347 4039
ed2dc618
SM
4040 sym = block_find_symbol (block, name, domain,
4041 block_find_non_opaque_type_preferred,
4042 &with_opaque);
b2e2f908 4043
ed2dc618
SM
4044 /* Some caution must be observed with overloaded functions
4045 and methods, since the index will not contain any overload
4046 information (but NAME might contain it). */
da51c347 4047
ed2dc618
SM
4048 if (sym != NULL
4049 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
4050 return stab;
4051 if (with_opaque != NULL
4052 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
4053 stab_best = stab;
da51c347 4054
ed2dc618 4055 /* Keep looking through other CUs. */
9291a0cd 4056 }
9291a0cd 4057
da51c347 4058 return stab_best;
9291a0cd
TT
4059}
4060
4061static void
4062dw2_print_stats (struct objfile *objfile)
4063{
ed2dc618
SM
4064 struct dwarf2_per_objfile *dwarf2_per_objfile
4065 = get_dwarf2_per_objfile (objfile);
b76e467d 4066 int total = (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 4067 + dwarf2_per_objfile->all_type_units.size ());
ed2dc618 4068 int count = 0;
9291a0cd 4069
ed2dc618 4070 for (int i = 0; i < total; ++i)
9291a0cd 4071 {
ff4c9fec 4072 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 4073
43f3e411 4074 if (!per_cu->v.quick->compunit_symtab)
9291a0cd
TT
4075 ++count;
4076 }
e4a48d9d 4077 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
9291a0cd
TT
4078 printf_filtered (_(" Number of unread CUs: %d\n"), count);
4079}
4080
779bd270
DE
4081/* This dumps minimal information about the index.
4082 It is called via "mt print objfiles".
4083 One use is to verify .gdb_index has been loaded by the
4084 gdb.dwarf2/gdb-index.exp testcase. */
4085
9291a0cd
TT
4086static void
4087dw2_dump (struct objfile *objfile)
4088{
ed2dc618
SM
4089 struct dwarf2_per_objfile *dwarf2_per_objfile
4090 = get_dwarf2_per_objfile (objfile);
4091
779bd270
DE
4092 gdb_assert (dwarf2_per_objfile->using_index);
4093 printf_filtered (".gdb_index:");
4094 if (dwarf2_per_objfile->index_table != NULL)
4095 {
4096 printf_filtered (" version %d\n",
4097 dwarf2_per_objfile->index_table->version);
4098 }
4099 else
4100 printf_filtered (" faked for \"readnow\"\n");
4101 printf_filtered ("\n");
9291a0cd
TT
4102}
4103
9291a0cd
TT
4104static void
4105dw2_expand_symtabs_for_function (struct objfile *objfile,
4106 const char *func_name)
4107{
ed2dc618
SM
4108 struct dwarf2_per_objfile *dwarf2_per_objfile
4109 = get_dwarf2_per_objfile (objfile);
da51c347 4110
ed2dc618
SM
4111 struct dw2_symtab_iterator iter;
4112 struct dwarf2_per_cu_data *per_cu;
da51c347 4113
ed2dc618
SM
4114 /* Note: It doesn't matter what we pass for block_index here. */
4115 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 0, GLOBAL_BLOCK, VAR_DOMAIN,
4116 func_name);
da51c347 4117
ed2dc618 4118 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
58f0c718 4119 dw2_instantiate_symtab (per_cu, false);
da51c347 4120
9291a0cd
TT
4121}
4122
4123static void
4124dw2_expand_all_symtabs (struct objfile *objfile)
4125{
ed2dc618
SM
4126 struct dwarf2_per_objfile *dwarf2_per_objfile
4127 = get_dwarf2_per_objfile (objfile);
b76e467d 4128 int total_units = (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 4129 + dwarf2_per_objfile->all_type_units.size ());
9291a0cd 4130
ed2dc618 4131 for (int i = 0; i < total_units; ++i)
9291a0cd 4132 {
ff4c9fec 4133 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 4134
58f0c718
TT
4135 /* We don't want to directly expand a partial CU, because if we
4136 read it with the wrong language, then assertion failures can
4137 be triggered later on. See PR symtab/23010. So, tell
4138 dw2_instantiate_symtab to skip partial CUs -- any important
4139 partial CU will be read via DW_TAG_imported_unit anyway. */
4140 dw2_instantiate_symtab (per_cu, true);
9291a0cd
TT
4141 }
4142}
4143
4144static void
652a8996
JK
4145dw2_expand_symtabs_with_fullname (struct objfile *objfile,
4146 const char *fullname)
9291a0cd 4147{
ed2dc618
SM
4148 struct dwarf2_per_objfile *dwarf2_per_objfile
4149 = get_dwarf2_per_objfile (objfile);
d4637a04
DE
4150
4151 /* We don't need to consider type units here.
4152 This is only called for examining code, e.g. expand_line_sal.
4153 There can be an order of magnitude (or more) more type units
4154 than comp units, and we avoid them if we can. */
4155
b76e467d 4156 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
9291a0cd 4157 {
3d7bb9d9 4158 /* We only need to look at symtabs not already expanded. */
43f3e411 4159 if (per_cu->v.quick->compunit_symtab)
9291a0cd
TT
4160 continue;
4161
b76e467d 4162 quick_file_names *file_data = dw2_get_file_names (per_cu);
7b9f3c50 4163 if (file_data == NULL)
9291a0cd
TT
4164 continue;
4165
b76e467d 4166 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 4167 {
652a8996
JK
4168 const char *this_fullname = file_data->file_names[j];
4169
4170 if (filename_cmp (this_fullname, fullname) == 0)
9291a0cd 4171 {
58f0c718 4172 dw2_instantiate_symtab (per_cu, false);
9291a0cd
TT
4173 break;
4174 }
4175 }
4176 }
4177}
4178
9291a0cd 4179static void
ade7ed9e 4180dw2_map_matching_symbols (struct objfile *objfile,
fe978cb0 4181 const char * name, domain_enum domain,
ade7ed9e 4182 int global,
582942f4 4183 int (*callback) (const struct block *,
40658b94 4184 struct symbol *, void *),
b5ec771e 4185 void *data, symbol_name_match_type match,
2edb89d3 4186 symbol_compare_ftype *ordered_compare)
9291a0cd 4187{
40658b94 4188 /* Currently unimplemented; used for Ada. The function can be called if the
a9e6a4bb
JK
4189 current language is Ada for a non-Ada objfile using GNU index. As Ada
4190 does not look for non-Ada symbols this function should just return. */
9291a0cd
TT
4191}
4192
b5ec771e
PA
4193/* Symbol name matcher for .gdb_index names.
4194
4195 Symbol names in .gdb_index have a few particularities:
4196
4197 - There's no indication of which is the language of each symbol.
4198
4199 Since each language has its own symbol name matching algorithm,
4200 and we don't know which language is the right one, we must match
3f563c84
PA
4201 each symbol against all languages. This would be a potential
4202 performance problem if it were not mitigated by the
4203 mapped_index::name_components lookup table, which significantly
4204 reduces the number of times we need to call into this matcher,
4205 making it a non-issue.
b5ec771e
PA
4206
4207 - Symbol names in the index have no overload (parameter)
4208 information. I.e., in C++, "foo(int)" and "foo(long)" both
4209 appear as "foo" in the index, for example.
4210
4211 This means that the lookup names passed to the symbol name
4212 matcher functions must have no parameter information either
4213 because (e.g.) symbol search name "foo" does not match
4214 lookup-name "foo(int)" [while swapping search name for lookup
4215 name would match].
4216*/
4217class gdb_index_symbol_name_matcher
4218{
4219public:
4220 /* Prepares the vector of comparison functions for LOOKUP_NAME. */
4221 gdb_index_symbol_name_matcher (const lookup_name_info &lookup_name);
4222
4223 /* Walk all the matcher routines and match SYMBOL_NAME against them.
4224 Returns true if any matcher matches. */
4225 bool matches (const char *symbol_name);
4226
4227private:
4228 /* A reference to the lookup name we're matching against. */
4229 const lookup_name_info &m_lookup_name;
4230
4231 /* A vector holding all the different symbol name matchers, for all
4232 languages. */
4233 std::vector<symbol_name_matcher_ftype *> m_symbol_name_matcher_funcs;
4234};
4235
4236gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher
4237 (const lookup_name_info &lookup_name)
4238 : m_lookup_name (lookup_name)
4239{
4240 /* Prepare the vector of comparison functions upfront, to avoid
4241 doing the same work for each symbol. Care is taken to avoid
4242 matching with the same matcher more than once if/when multiple
4243 languages use the same matcher function. */
4244 auto &matchers = m_symbol_name_matcher_funcs;
4245 matchers.reserve (nr_languages);
4246
4247 matchers.push_back (default_symbol_name_matcher);
4248
4249 for (int i = 0; i < nr_languages; i++)
4250 {
4251 const language_defn *lang = language_def ((enum language) i);
c63d3e8d 4252 symbol_name_matcher_ftype *name_matcher
618daa93 4253 = get_symbol_name_matcher (lang, m_lookup_name);
c63d3e8d
PA
4254
4255 /* Don't insert the same comparison routine more than once.
4256 Note that we do this linear walk instead of a seemingly
4257 cheaper sorted insert, or use a std::set or something like
4258 that, because relative order of function addresses is not
4259 stable. This is not a problem in practice because the number
4260 of supported languages is low, and the cost here is tiny
4261 compared to the number of searches we'll do afterwards using
4262 this object. */
4263 if (name_matcher != default_symbol_name_matcher
4264 && (std::find (matchers.begin (), matchers.end (), name_matcher)
4265 == matchers.end ()))
4266 matchers.push_back (name_matcher);
b5ec771e
PA
4267 }
4268}
4269
4270bool
4271gdb_index_symbol_name_matcher::matches (const char *symbol_name)
4272{
4273 for (auto matches_name : m_symbol_name_matcher_funcs)
4274 if (matches_name (symbol_name, m_lookup_name, NULL))
4275 return true;
4276
4277 return false;
4278}
4279
e1ef7d7a
PA
4280/* Starting from a search name, return the string that finds the upper
4281 bound of all strings that start with SEARCH_NAME in a sorted name
4282 list. Returns the empty string to indicate that the upper bound is
4283 the end of the list. */
4284
4285static std::string
4286make_sort_after_prefix_name (const char *search_name)
4287{
4288 /* When looking to complete "func", we find the upper bound of all
4289 symbols that start with "func" by looking for where we'd insert
4290 the closest string that would follow "func" in lexicographical
4291 order. Usually, that's "func"-with-last-character-incremented,
4292 i.e. "fund". Mind non-ASCII characters, though. Usually those
4293 will be UTF-8 multi-byte sequences, but we can't be certain.
4294 Especially mind the 0xff character, which is a valid character in
4295 non-UTF-8 source character sets (e.g. Latin1 'ÿ'), and we can't
4296 rule out compilers allowing it in identifiers. Note that
4297 conveniently, strcmp/strcasecmp are specified to compare
4298 characters interpreted as unsigned char. So what we do is treat
4299 the whole string as a base 256 number composed of a sequence of
4300 base 256 "digits" and add 1 to it. I.e., adding 1 to 0xff wraps
4301 to 0, and carries 1 to the following more-significant position.
4302 If the very first character in SEARCH_NAME ends up incremented
4303 and carries/overflows, then the upper bound is the end of the
4304 list. The string after the empty string is also the empty
4305 string.
4306
4307 Some examples of this operation:
4308
4309 SEARCH_NAME => "+1" RESULT
4310
4311 "abc" => "abd"
4312 "ab\xff" => "ac"
4313 "\xff" "a" "\xff" => "\xff" "b"
4314 "\xff" => ""
4315 "\xff\xff" => ""
4316 "" => ""
4317
4318 Then, with these symbols for example:
4319
4320 func
4321 func1
4322 fund
4323
4324 completing "func" looks for symbols between "func" and
4325 "func"-with-last-character-incremented, i.e. "fund" (exclusive),
4326 which finds "func" and "func1", but not "fund".
4327
4328 And with:
4329
4330 funcÿ (Latin1 'ÿ' [0xff])
4331 funcÿ1
4332 fund
4333
4334 completing "funcÿ" looks for symbols between "funcÿ" and "fund"
4335 (exclusive), which finds "funcÿ" and "funcÿ1", but not "fund".
4336
4337 And with:
4338
4339 ÿÿ (Latin1 'ÿ' [0xff])
4340 ÿÿ1
4341
4342 completing "ÿ" or "ÿÿ" looks for symbols between between "ÿÿ" and
4343 the end of the list.
4344 */
4345 std::string after = search_name;
4346 while (!after.empty () && (unsigned char) after.back () == 0xff)
4347 after.pop_back ();
4348 if (!after.empty ())
4349 after.back () = (unsigned char) after.back () + 1;
4350 return after;
4351}
4352
5c58de74 4353/* See declaration. */
61d96d7e 4354
5c58de74
PA
4355std::pair<std::vector<name_component>::const_iterator,
4356 std::vector<name_component>::const_iterator>
44ed8f3e 4357mapped_index_base::find_name_components_bounds
5c58de74 4358 (const lookup_name_info &lookup_name_without_params) const
3f563c84 4359{
5c58de74
PA
4360 auto *name_cmp
4361 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3f563c84
PA
4362
4363 const char *cplus
c62446b1 4364 = lookup_name_without_params.cplus ().lookup_name ().c_str ();
9291a0cd 4365
3f563c84
PA
4366 /* Comparison function object for lower_bound that matches against a
4367 given symbol name. */
4368 auto lookup_compare_lower = [&] (const name_component &elem,
4369 const char *name)
4370 {
5c58de74 4371 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
4372 const char *elem_name = elem_qualified + elem.name_offset;
4373 return name_cmp (elem_name, name) < 0;
4374 };
4375
4376 /* Comparison function object for upper_bound that matches against a
4377 given symbol name. */
4378 auto lookup_compare_upper = [&] (const char *name,
4379 const name_component &elem)
4380 {
5c58de74 4381 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
4382 const char *elem_name = elem_qualified + elem.name_offset;
4383 return name_cmp (name, elem_name) < 0;
4384 };
4385
5c58de74
PA
4386 auto begin = this->name_components.begin ();
4387 auto end = this->name_components.end ();
3f563c84
PA
4388
4389 /* Find the lower bound. */
4390 auto lower = [&] ()
4391 {
5c58de74 4392 if (lookup_name_without_params.completion_mode () && cplus[0] == '\0')
3f563c84
PA
4393 return begin;
4394 else
4395 return std::lower_bound (begin, end, cplus, lookup_compare_lower);
4396 } ();
4397
4398 /* Find the upper bound. */
4399 auto upper = [&] ()
4400 {
5c58de74 4401 if (lookup_name_without_params.completion_mode ())
3f563c84 4402 {
e1ef7d7a
PA
4403 /* In completion mode, we want UPPER to point past all
4404 symbols names that have the same prefix. I.e., with
4405 these symbols, and completing "func":
4406
4407 function << lower bound
4408 function1
4409 other_function << upper bound
4410
4411 We find the upper bound by looking for the insertion
4412 point of "func"-with-last-character-incremented,
4413 i.e. "fund". */
4414 std::string after = make_sort_after_prefix_name (cplus);
4415 if (after.empty ())
3f563c84 4416 return end;
e6b2f5ef
PA
4417 return std::lower_bound (lower, end, after.c_str (),
4418 lookup_compare_lower);
3f563c84
PA
4419 }
4420 else
4421 return std::upper_bound (lower, end, cplus, lookup_compare_upper);
4422 } ();
4423
5c58de74
PA
4424 return {lower, upper};
4425}
4426
4427/* See declaration. */
4428
4429void
44ed8f3e 4430mapped_index_base::build_name_components ()
5c58de74
PA
4431{
4432 if (!this->name_components.empty ())
4433 return;
4434
4435 this->name_components_casing = case_sensitivity;
4436 auto *name_cmp
4437 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
4438
4439 /* The code below only knows how to break apart components of C++
4440 symbol names (and other languages that use '::' as
4441 namespace/module separator). If we add support for wild matching
4442 to some language that uses some other operator (E.g., Ada, Go and
4443 D use '.'), then we'll need to try splitting the symbol name
4444 according to that language too. Note that Ada does support wild
4445 matching, but doesn't currently support .gdb_index. */
44ed8f3e
PA
4446 auto count = this->symbol_name_count ();
4447 for (offset_type idx = 0; idx < count; idx++)
5c58de74 4448 {
44ed8f3e 4449 if (this->symbol_name_slot_invalid (idx))
5c58de74
PA
4450 continue;
4451
4452 const char *name = this->symbol_name_at (idx);
4453
4454 /* Add each name component to the name component table. */
4455 unsigned int previous_len = 0;
4456 for (unsigned int current_len = cp_find_first_component (name);
4457 name[current_len] != '\0';
4458 current_len += cp_find_first_component (name + current_len))
4459 {
4460 gdb_assert (name[current_len] == ':');
4461 this->name_components.push_back ({previous_len, idx});
4462 /* Skip the '::'. */
4463 current_len += 2;
4464 previous_len = current_len;
4465 }
4466 this->name_components.push_back ({previous_len, idx});
4467 }
4468
4469 /* Sort name_components elements by name. */
4470 auto name_comp_compare = [&] (const name_component &left,
4471 const name_component &right)
4472 {
4473 const char *left_qualified = this->symbol_name_at (left.idx);
4474 const char *right_qualified = this->symbol_name_at (right.idx);
4475
4476 const char *left_name = left_qualified + left.name_offset;
4477 const char *right_name = right_qualified + right.name_offset;
4478
4479 return name_cmp (left_name, right_name) < 0;
4480 };
4481
4482 std::sort (this->name_components.begin (),
4483 this->name_components.end (),
4484 name_comp_compare);
4485}
4486
4487/* Helper for dw2_expand_symtabs_matching that works with a
44ed8f3e
PA
4488 mapped_index_base instead of the containing objfile. This is split
4489 to a separate function in order to be able to unit test the
4490 name_components matching using a mock mapped_index_base. For each
5c58de74 4491 symbol name that matches, calls MATCH_CALLBACK, passing it the
44ed8f3e 4492 symbol's index in the mapped_index_base symbol table. */
5c58de74
PA
4493
4494static void
4495dw2_expand_symtabs_matching_symbol
44ed8f3e 4496 (mapped_index_base &index,
5c58de74
PA
4497 const lookup_name_info &lookup_name_in,
4498 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4499 enum search_domain kind,
4500 gdb::function_view<void (offset_type)> match_callback)
4501{
4502 lookup_name_info lookup_name_without_params
4503 = lookup_name_in.make_ignore_params ();
4504 gdb_index_symbol_name_matcher lookup_name_matcher
4505 (lookup_name_without_params);
4506
4507 /* Build the symbol name component sorted vector, if we haven't
4508 yet. */
4509 index.build_name_components ();
4510
4511 auto bounds = index.find_name_components_bounds (lookup_name_without_params);
4512
3f563c84
PA
4513 /* Now for each symbol name in range, check to see if we have a name
4514 match, and if so, call the MATCH_CALLBACK callback. */
4515
4516 /* The same symbol may appear more than once in the range though.
4517 E.g., if we're looking for symbols that complete "w", and we have
4518 a symbol named "w1::w2", we'll find the two name components for
4519 that same symbol in the range. To be sure we only call the
4520 callback once per symbol, we first collect the symbol name
4521 indexes that matched in a temporary vector and ignore
4522 duplicates. */
4523 std::vector<offset_type> matches;
5c58de74 4524 matches.reserve (std::distance (bounds.first, bounds.second));
3f563c84 4525
5c58de74 4526 for (; bounds.first != bounds.second; ++bounds.first)
3f563c84 4527 {
5c58de74 4528 const char *qualified = index.symbol_name_at (bounds.first->idx);
3f563c84
PA
4529
4530 if (!lookup_name_matcher.matches (qualified)
4531 || (symbol_matcher != NULL && !symbol_matcher (qualified)))
9291a0cd
TT
4532 continue;
4533
5c58de74 4534 matches.push_back (bounds.first->idx);
3f563c84
PA
4535 }
4536
4537 std::sort (matches.begin (), matches.end ());
4538
4539 /* Finally call the callback, once per match. */
4540 ULONGEST prev = -1;
4541 for (offset_type idx : matches)
4542 {
4543 if (prev != idx)
4544 {
4545 match_callback (idx);
4546 prev = idx;
4547 }
4548 }
4549
4550 /* Above we use a type wider than idx's for 'prev', since 0 and
4551 (offset_type)-1 are both possible values. */
4552 static_assert (sizeof (prev) > sizeof (offset_type), "");
4553}
4554
c62446b1
PA
4555#if GDB_SELF_TEST
4556
4557namespace selftests { namespace dw2_expand_symtabs_matching {
4558
a3c5fafd
PA
4559/* A mock .gdb_index/.debug_names-like name index table, enough to
4560 exercise dw2_expand_symtabs_matching_symbol, which works with the
4561 mapped_index_base interface. Builds an index from the symbol list
4562 passed as parameter to the constructor. */
4563class mock_mapped_index : public mapped_index_base
c62446b1
PA
4564{
4565public:
a3c5fafd
PA
4566 mock_mapped_index (gdb::array_view<const char *> symbols)
4567 : m_symbol_table (symbols)
c62446b1
PA
4568 {}
4569
a3c5fafd 4570 DISABLE_COPY_AND_ASSIGN (mock_mapped_index);
c62446b1 4571
a3c5fafd 4572 /* Return the number of names in the symbol table. */
632e107b 4573 size_t symbol_name_count () const override
c62446b1 4574 {
a3c5fafd 4575 return m_symbol_table.size ();
c62446b1
PA
4576 }
4577
a3c5fafd 4578 /* Get the name of the symbol at IDX in the symbol table. */
632e107b 4579 const char *symbol_name_at (offset_type idx) const override
a3c5fafd
PA
4580 {
4581 return m_symbol_table[idx];
4582 }
c62446b1 4583
a3c5fafd
PA
4584private:
4585 gdb::array_view<const char *> m_symbol_table;
c62446b1
PA
4586};
4587
4588/* Convenience function that converts a NULL pointer to a "<null>"
4589 string, to pass to print routines. */
4590
4591static const char *
4592string_or_null (const char *str)
4593{
4594 return str != NULL ? str : "<null>";
4595}
4596
4597/* Check if a lookup_name_info built from
4598 NAME/MATCH_TYPE/COMPLETION_MODE matches the symbols in the mock
4599 index. EXPECTED_LIST is the list of expected matches, in expected
4600 matching order. If no match expected, then an empty list is
4601 specified. Returns true on success. On failure prints a warning
4602 indicating the file:line that failed, and returns false. */
4603
4604static bool
4605check_match (const char *file, int line,
4606 mock_mapped_index &mock_index,
4607 const char *name, symbol_name_match_type match_type,
4608 bool completion_mode,
4609 std::initializer_list<const char *> expected_list)
4610{
4611 lookup_name_info lookup_name (name, match_type, completion_mode);
4612
4613 bool matched = true;
4614
4615 auto mismatch = [&] (const char *expected_str,
4616 const char *got)
4617 {
4618 warning (_("%s:%d: match_type=%s, looking-for=\"%s\", "
4619 "expected=\"%s\", got=\"%s\"\n"),
4620 file, line,
4621 (match_type == symbol_name_match_type::FULL
4622 ? "FULL" : "WILD"),
4623 name, string_or_null (expected_str), string_or_null (got));
4624 matched = false;
4625 };
4626
4627 auto expected_it = expected_list.begin ();
4628 auto expected_end = expected_list.end ();
4629
a3c5fafd 4630 dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
c62446b1
PA
4631 NULL, ALL_DOMAIN,
4632 [&] (offset_type idx)
4633 {
a3c5fafd 4634 const char *matched_name = mock_index.symbol_name_at (idx);
c62446b1
PA
4635 const char *expected_str
4636 = expected_it == expected_end ? NULL : *expected_it++;
4637
4638 if (expected_str == NULL || strcmp (expected_str, matched_name) != 0)
4639 mismatch (expected_str, matched_name);
4640 });
4641
4642 const char *expected_str
4643 = expected_it == expected_end ? NULL : *expected_it++;
4644 if (expected_str != NULL)
4645 mismatch (expected_str, NULL);
4646
4647 return matched;
4648}
4649
4650/* The symbols added to the mock mapped_index for testing (in
4651 canonical form). */
4652static const char *test_symbols[] = {
4653 "function",
4654 "std::bar",
4655 "std::zfunction",
4656 "std::zfunction2",
4657 "w1::w2",
4658 "ns::foo<char*>",
4659 "ns::foo<int>",
4660 "ns::foo<long>",
a20714ff
PA
4661 "ns2::tmpl<int>::foo2",
4662 "(anonymous namespace)::A::B::C",
c62446b1 4663
e1ef7d7a
PA
4664 /* These are used to check that the increment-last-char in the
4665 matching algorithm for completion doesn't match "t1_fund" when
4666 completing "t1_func". */
4667 "t1_func",
4668 "t1_func1",
4669 "t1_fund",
4670 "t1_fund1",
4671
4672 /* A UTF-8 name with multi-byte sequences to make sure that
4673 cp-name-parser understands this as a single identifier ("função"
4674 is "function" in PT). */
4675 u8"u8função",
4676
4677 /* \377 (0xff) is Latin1 'ÿ'. */
4678 "yfunc\377",
4679
4680 /* \377 (0xff) is Latin1 'ÿ'. */
4681 "\377",
4682 "\377\377123",
4683
c62446b1
PA
4684 /* A name with all sorts of complications. Starts with "z" to make
4685 it easier for the completion tests below. */
4686#define Z_SYM_NAME \
4687 "z::std::tuple<(anonymous namespace)::ui*, std::bar<(anonymous namespace)::ui> >" \
4688 "::tuple<(anonymous namespace)::ui*, " \
4689 "std::default_delete<(anonymous namespace)::ui>, void>"
4690
4691 Z_SYM_NAME
4692};
4693
a3c5fafd
PA
4694/* Returns true if the mapped_index_base::find_name_component_bounds
4695 method finds EXPECTED_SYMS in INDEX when looking for SEARCH_NAME,
4696 in completion mode. */
5c58de74
PA
4697
4698static bool
a3c5fafd 4699check_find_bounds_finds (mapped_index_base &index,
5c58de74
PA
4700 const char *search_name,
4701 gdb::array_view<const char *> expected_syms)
4702{
4703 lookup_name_info lookup_name (search_name,
4704 symbol_name_match_type::FULL, true);
4705
4706 auto bounds = index.find_name_components_bounds (lookup_name);
4707
4708 size_t distance = std::distance (bounds.first, bounds.second);
4709 if (distance != expected_syms.size ())
4710 return false;
4711
4712 for (size_t exp_elem = 0; exp_elem < distance; exp_elem++)
4713 {
4714 auto nc_elem = bounds.first + exp_elem;
4715 const char *qualified = index.symbol_name_at (nc_elem->idx);
4716 if (strcmp (qualified, expected_syms[exp_elem]) != 0)
4717 return false;
4718 }
4719
4720 return true;
4721}
4722
4723/* Test the lower-level mapped_index::find_name_component_bounds
4724 method. */
4725
c62446b1 4726static void
5c58de74
PA
4727test_mapped_index_find_name_component_bounds ()
4728{
4729 mock_mapped_index mock_index (test_symbols);
4730
a3c5fafd 4731 mock_index.build_name_components ();
5c58de74
PA
4732
4733 /* Test the lower-level mapped_index::find_name_component_bounds
4734 method in completion mode. */
4735 {
4736 static const char *expected_syms[] = {
4737 "t1_func",
4738 "t1_func1",
5c58de74
PA
4739 };
4740
a3c5fafd 4741 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4742 "t1_func", expected_syms));
4743 }
4744
4745 /* Check that the increment-last-char in the name matching algorithm
4746 for completion doesn't get confused with Ansi1 'ÿ' / 0xff. */
4747 {
4748 static const char *expected_syms1[] = {
4749 "\377",
4750 "\377\377123",
4751 };
a3c5fafd 4752 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4753 "\377", expected_syms1));
4754
4755 static const char *expected_syms2[] = {
4756 "\377\377123",
4757 };
a3c5fafd 4758 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4759 "\377\377", expected_syms2));
4760 }
4761}
4762
4763/* Test dw2_expand_symtabs_matching_symbol. */
4764
4765static void
4766test_dw2_expand_symtabs_matching_symbol ()
c62446b1
PA
4767{
4768 mock_mapped_index mock_index (test_symbols);
4769
4770 /* We let all tests run until the end even if some fails, for debug
4771 convenience. */
4772 bool any_mismatch = false;
4773
4774 /* Create the expected symbols list (an initializer_list). Needed
4775 because lists have commas, and we need to pass them to CHECK,
4776 which is a macro. */
4777#define EXPECT(...) { __VA_ARGS__ }
4778
4779 /* Wrapper for check_match that passes down the current
4780 __FILE__/__LINE__. */
4781#define CHECK_MATCH(NAME, MATCH_TYPE, COMPLETION_MODE, EXPECTED_LIST) \
4782 any_mismatch |= !check_match (__FILE__, __LINE__, \
4783 mock_index, \
4784 NAME, MATCH_TYPE, COMPLETION_MODE, \
4785 EXPECTED_LIST)
4786
4787 /* Identity checks. */
4788 for (const char *sym : test_symbols)
4789 {
4790 /* Should be able to match all existing symbols. */
4791 CHECK_MATCH (sym, symbol_name_match_type::FULL, false,
4792 EXPECT (sym));
4793
4794 /* Should be able to match all existing symbols with
4795 parameters. */
4796 std::string with_params = std::string (sym) + "(int)";
4797 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4798 EXPECT (sym));
4799
4800 /* Should be able to match all existing symbols with
4801 parameters and qualifiers. */
4802 with_params = std::string (sym) + " ( int ) const";
4803 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4804 EXPECT (sym));
4805
4806 /* This should really find sym, but cp-name-parser.y doesn't
4807 know about lvalue/rvalue qualifiers yet. */
4808 with_params = std::string (sym) + " ( int ) &&";
4809 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4810 {});
4811 }
4812
e1ef7d7a
PA
4813 /* Check that the name matching algorithm for completion doesn't get
4814 confused with Latin1 'ÿ' / 0xff. */
4815 {
4816 static const char str[] = "\377";
4817 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4818 EXPECT ("\377", "\377\377123"));
4819 }
4820
4821 /* Check that the increment-last-char in the matching algorithm for
4822 completion doesn't match "t1_fund" when completing "t1_func". */
4823 {
4824 static const char str[] = "t1_func";
4825 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4826 EXPECT ("t1_func", "t1_func1"));
4827 }
4828
c62446b1
PA
4829 /* Check that completion mode works at each prefix of the expected
4830 symbol name. */
4831 {
4832 static const char str[] = "function(int)";
4833 size_t len = strlen (str);
4834 std::string lookup;
4835
4836 for (size_t i = 1; i < len; i++)
4837 {
4838 lookup.assign (str, i);
4839 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4840 EXPECT ("function"));
4841 }
4842 }
4843
4844 /* While "w" is a prefix of both components, the match function
4845 should still only be called once. */
4846 {
4847 CHECK_MATCH ("w", symbol_name_match_type::FULL, true,
4848 EXPECT ("w1::w2"));
a20714ff
PA
4849 CHECK_MATCH ("w", symbol_name_match_type::WILD, true,
4850 EXPECT ("w1::w2"));
c62446b1
PA
4851 }
4852
4853 /* Same, with a "complicated" symbol. */
4854 {
4855 static const char str[] = Z_SYM_NAME;
4856 size_t len = strlen (str);
4857 std::string lookup;
4858
4859 for (size_t i = 1; i < len; i++)
4860 {
4861 lookup.assign (str, i);
4862 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4863 EXPECT (Z_SYM_NAME));
4864 }
4865 }
4866
4867 /* In FULL mode, an incomplete symbol doesn't match. */
4868 {
4869 CHECK_MATCH ("std::zfunction(int", symbol_name_match_type::FULL, false,
4870 {});
4871 }
4872
4873 /* A complete symbol with parameters matches any overload, since the
4874 index has no overload info. */
4875 {
4876 CHECK_MATCH ("std::zfunction(int)", symbol_name_match_type::FULL, true,
4877 EXPECT ("std::zfunction", "std::zfunction2"));
a20714ff
PA
4878 CHECK_MATCH ("zfunction(int)", symbol_name_match_type::WILD, true,
4879 EXPECT ("std::zfunction", "std::zfunction2"));
4880 CHECK_MATCH ("zfunc", symbol_name_match_type::WILD, true,
4881 EXPECT ("std::zfunction", "std::zfunction2"));
c62446b1
PA
4882 }
4883
4884 /* Check that whitespace is ignored appropriately. A symbol with a
4885 template argument list. */
4886 {
4887 static const char expected[] = "ns::foo<int>";
4888 CHECK_MATCH ("ns :: foo < int > ", symbol_name_match_type::FULL, false,
4889 EXPECT (expected));
a20714ff
PA
4890 CHECK_MATCH ("foo < int > ", symbol_name_match_type::WILD, false,
4891 EXPECT (expected));
c62446b1
PA
4892 }
4893
4894 /* Check that whitespace is ignored appropriately. A symbol with a
4895 template argument list that includes a pointer. */
4896 {
4897 static const char expected[] = "ns::foo<char*>";
4898 /* Try both completion and non-completion modes. */
4899 static const bool completion_mode[2] = {false, true};
4900 for (size_t i = 0; i < 2; i++)
4901 {
4902 CHECK_MATCH ("ns :: foo < char * >", symbol_name_match_type::FULL,
4903 completion_mode[i], EXPECT (expected));
a20714ff
PA
4904 CHECK_MATCH ("foo < char * >", symbol_name_match_type::WILD,
4905 completion_mode[i], EXPECT (expected));
c62446b1
PA
4906
4907 CHECK_MATCH ("ns :: foo < char * > (int)", symbol_name_match_type::FULL,
4908 completion_mode[i], EXPECT (expected));
a20714ff
PA
4909 CHECK_MATCH ("foo < char * > (int)", symbol_name_match_type::WILD,
4910 completion_mode[i], EXPECT (expected));
c62446b1
PA
4911 }
4912 }
4913
4914 {
4915 /* Check method qualifiers are ignored. */
4916 static const char expected[] = "ns::foo<char*>";
4917 CHECK_MATCH ("ns :: foo < char * > ( int ) const",
4918 symbol_name_match_type::FULL, true, EXPECT (expected));
4919 CHECK_MATCH ("ns :: foo < char * > ( int ) &&",
4920 symbol_name_match_type::FULL, true, EXPECT (expected));
a20714ff
PA
4921 CHECK_MATCH ("foo < char * > ( int ) const",
4922 symbol_name_match_type::WILD, true, EXPECT (expected));
4923 CHECK_MATCH ("foo < char * > ( int ) &&",
4924 symbol_name_match_type::WILD, true, EXPECT (expected));
c62446b1
PA
4925 }
4926
4927 /* Test lookup names that don't match anything. */
4928 {
a20714ff
PA
4929 CHECK_MATCH ("bar2", symbol_name_match_type::WILD, false,
4930 {});
4931
c62446b1
PA
4932 CHECK_MATCH ("doesntexist", symbol_name_match_type::FULL, false,
4933 {});
4934 }
4935
a20714ff
PA
4936 /* Some wild matching tests, exercising "(anonymous namespace)",
4937 which should not be confused with a parameter list. */
4938 {
4939 static const char *syms[] = {
4940 "A::B::C",
4941 "B::C",
4942 "C",
4943 "A :: B :: C ( int )",
4944 "B :: C ( int )",
4945 "C ( int )",
4946 };
4947
4948 for (const char *s : syms)
4949 {
4950 CHECK_MATCH (s, symbol_name_match_type::WILD, false,
4951 EXPECT ("(anonymous namespace)::A::B::C"));
4952 }
4953 }
4954
4955 {
4956 static const char expected[] = "ns2::tmpl<int>::foo2";
4957 CHECK_MATCH ("tmp", symbol_name_match_type::WILD, true,
4958 EXPECT (expected));
4959 CHECK_MATCH ("tmpl<", symbol_name_match_type::WILD, true,
4960 EXPECT (expected));
4961 }
4962
c62446b1
PA
4963 SELF_CHECK (!any_mismatch);
4964
4965#undef EXPECT
4966#undef CHECK_MATCH
4967}
4968
5c58de74
PA
4969static void
4970run_test ()
4971{
4972 test_mapped_index_find_name_component_bounds ();
4973 test_dw2_expand_symtabs_matching_symbol ();
4974}
4975
c62446b1
PA
4976}} // namespace selftests::dw2_expand_symtabs_matching
4977
4978#endif /* GDB_SELF_TEST */
4979
4b514bc8
JK
4980/* If FILE_MATCHER is NULL or if PER_CU has
4981 dwarf2_per_cu_quick_data::MARK set (see
4982 dw_expand_symtabs_matching_file_matcher), expand the CU and call
4983 EXPANSION_NOTIFY on it. */
4984
4985static void
4986dw2_expand_symtabs_matching_one
4987 (struct dwarf2_per_cu_data *per_cu,
4988 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
4989 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify)
4990{
4991 if (file_matcher == NULL || per_cu->v.quick->mark)
4992 {
4993 bool symtab_was_null
4994 = (per_cu->v.quick->compunit_symtab == NULL);
4995
58f0c718 4996 dw2_instantiate_symtab (per_cu, false);
4b514bc8
JK
4997
4998 if (expansion_notify != NULL
4999 && symtab_was_null
5000 && per_cu->v.quick->compunit_symtab != NULL)
5001 expansion_notify (per_cu->v.quick->compunit_symtab);
5002 }
5003}
5004
3f563c84
PA
5005/* Helper for dw2_expand_matching symtabs. Called on each symbol
5006 matched, to expand corresponding CUs that were marked. IDX is the
5007 index of the symbol name that matched. */
5008
5009static void
5010dw2_expand_marked_cus
ed2dc618 5011 (struct dwarf2_per_objfile *dwarf2_per_objfile, offset_type idx,
3f563c84
PA
5012 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5013 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5014 search_domain kind)
5015{
3f563c84
PA
5016 offset_type *vec, vec_len, vec_idx;
5017 bool global_seen = false;
ed2dc618 5018 mapped_index &index = *dwarf2_per_objfile->index_table;
3f563c84 5019
61920122 5020 vec = (offset_type *) (index.constant_pool
f00a2de2 5021 + MAYBE_SWAP (index.symbol_table[idx].vec));
61920122
PA
5022 vec_len = MAYBE_SWAP (vec[0]);
5023 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
5024 {
61920122
PA
5025 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
5026 /* This value is only valid for index versions >= 7. */
5027 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
5028 gdb_index_symbol_kind symbol_kind =
5029 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
5030 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
5031 /* Only check the symbol attributes if they're present.
5032 Indices prior to version 7 don't record them,
5033 and indices >= 7 may elide them for certain symbols
5034 (gold does this). */
5035 int attrs_valid =
5036 (index.version >= 7
5037 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
5038
5039 /* Work around gold/15646. */
5040 if (attrs_valid)
9291a0cd 5041 {
61920122
PA
5042 if (!is_static && global_seen)
5043 continue;
5044 if (!is_static)
5045 global_seen = true;
5046 }
3190f0c6 5047
61920122
PA
5048 /* Only check the symbol's kind if it has one. */
5049 if (attrs_valid)
5050 {
5051 switch (kind)
8943b874 5052 {
61920122
PA
5053 case VARIABLES_DOMAIN:
5054 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
5055 continue;
5056 break;
5057 case FUNCTIONS_DOMAIN:
5058 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
8943b874 5059 continue;
61920122
PA
5060 break;
5061 case TYPES_DOMAIN:
5062 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
5063 continue;
5064 break;
5065 default:
5066 break;
8943b874 5067 }
61920122 5068 }
8943b874 5069
61920122 5070 /* Don't crash on bad data. */
b76e467d 5071 if (cu_index >= (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 5072 + dwarf2_per_objfile->all_type_units.size ()))
61920122 5073 {
b98664d3 5074 complaint (_(".gdb_index entry has bad CU index"
ed2dc618
SM
5075 " [in module %s]"),
5076 objfile_name (dwarf2_per_objfile->objfile));
61920122
PA
5077 continue;
5078 }
5079
ff4c9fec 5080 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (cu_index);
4b514bc8
JK
5081 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
5082 expansion_notify);
61920122
PA
5083 }
5084}
5085
4b514bc8
JK
5086/* If FILE_MATCHER is non-NULL, set all the
5087 dwarf2_per_cu_quick_data::MARK of the current DWARF2_PER_OBJFILE
5088 that match FILE_MATCHER. */
5089
61920122 5090static void
4b514bc8 5091dw_expand_symtabs_matching_file_matcher
ed2dc618
SM
5092 (struct dwarf2_per_objfile *dwarf2_per_objfile,
5093 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher)
61920122 5094{
4b514bc8 5095 if (file_matcher == NULL)
61920122
PA
5096 return;
5097
4b514bc8
JK
5098 objfile *const objfile = dwarf2_per_objfile->objfile;
5099
5100 htab_up visited_found (htab_create_alloc (10, htab_hash_pointer,
5101 htab_eq_pointer,
5102 NULL, xcalloc, xfree));
5103 htab_up visited_not_found (htab_create_alloc (10, htab_hash_pointer,
61920122
PA
5104 htab_eq_pointer,
5105 NULL, xcalloc, xfree));
61920122 5106
4b514bc8
JK
5107 /* The rule is CUs specify all the files, including those used by
5108 any TU, so there's no need to scan TUs here. */
61920122 5109
b76e467d 5110 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5111 {
927aa2e7
JK
5112 QUIT;
5113
5114 per_cu->v.quick->mark = 0;
5115
5116 /* We only need to look at symtabs not already expanded. */
5117 if (per_cu->v.quick->compunit_symtab)
5118 continue;
5119
b76e467d 5120 quick_file_names *file_data = dw2_get_file_names (per_cu);
927aa2e7
JK
5121 if (file_data == NULL)
5122 continue;
5123
5124 if (htab_find (visited_not_found.get (), file_data) != NULL)
5125 continue;
5126 else if (htab_find (visited_found.get (), file_data) != NULL)
5127 {
5128 per_cu->v.quick->mark = 1;
5129 continue;
5130 }
5131
b76e467d 5132 for (int j = 0; j < file_data->num_file_names; ++j)
927aa2e7
JK
5133 {
5134 const char *this_real_name;
5135
5136 if (file_matcher (file_data->file_names[j], false))
5137 {
5138 per_cu->v.quick->mark = 1;
5139 break;
5140 }
5141
5142 /* Before we invoke realpath, which can get expensive when many
5143 files are involved, do a quick comparison of the basenames. */
5144 if (!basenames_may_differ
5145 && !file_matcher (lbasename (file_data->file_names[j]),
5146 true))
5147 continue;
5148
5149 this_real_name = dw2_get_real_path (objfile, file_data, j);
5150 if (file_matcher (this_real_name, false))
5151 {
5152 per_cu->v.quick->mark = 1;
5153 break;
5154 }
5155 }
5156
b76e467d
SM
5157 void **slot = htab_find_slot (per_cu->v.quick->mark
5158 ? visited_found.get ()
5159 : visited_not_found.get (),
5160 file_data, INSERT);
927aa2e7
JK
5161 *slot = file_data;
5162 }
5163}
5164
5165static void
5166dw2_expand_symtabs_matching
5167 (struct objfile *objfile,
5168 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5169 const lookup_name_info &lookup_name,
5170 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
5171 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5172 enum search_domain kind)
5173{
ed2dc618
SM
5174 struct dwarf2_per_objfile *dwarf2_per_objfile
5175 = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
5176
5177 /* index_table is NULL if OBJF_READNOW. */
5178 if (!dwarf2_per_objfile->index_table)
5179 return;
5180
ed2dc618 5181 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
927aa2e7
JK
5182
5183 mapped_index &index = *dwarf2_per_objfile->index_table;
5184
5185 dw2_expand_symtabs_matching_symbol (index, lookup_name,
5186 symbol_matcher,
5187 kind, [&] (offset_type idx)
5188 {
ed2dc618 5189 dw2_expand_marked_cus (dwarf2_per_objfile, idx, file_matcher,
927aa2e7
JK
5190 expansion_notify, kind);
5191 });
5192}
5193
5194/* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
5195 symtab. */
5196
5197static struct compunit_symtab *
5198recursively_find_pc_sect_compunit_symtab (struct compunit_symtab *cust,
5199 CORE_ADDR pc)
5200{
5201 int i;
5202
5203 if (COMPUNIT_BLOCKVECTOR (cust) != NULL
5204 && blockvector_contains_pc (COMPUNIT_BLOCKVECTOR (cust), pc))
5205 return cust;
5206
5207 if (cust->includes == NULL)
5208 return NULL;
5209
5210 for (i = 0; cust->includes[i]; ++i)
5211 {
5212 struct compunit_symtab *s = cust->includes[i];
5213
5214 s = recursively_find_pc_sect_compunit_symtab (s, pc);
5215 if (s != NULL)
5216 return s;
5217 }
5218
5219 return NULL;
5220}
5221
5222static struct compunit_symtab *
5223dw2_find_pc_sect_compunit_symtab (struct objfile *objfile,
5224 struct bound_minimal_symbol msymbol,
5225 CORE_ADDR pc,
5226 struct obj_section *section,
5227 int warn_if_readin)
5228{
5229 struct dwarf2_per_cu_data *data;
5230 struct compunit_symtab *result;
5231
d320c2b5 5232 if (!objfile->partial_symtabs->psymtabs_addrmap)
927aa2e7
JK
5233 return NULL;
5234
79748972
TT
5235 CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
5236 SECT_OFF_TEXT (objfile));
d320c2b5
TT
5237 data = (struct dwarf2_per_cu_data *) addrmap_find
5238 (objfile->partial_symtabs->psymtabs_addrmap, pc - baseaddr);
927aa2e7
JK
5239 if (!data)
5240 return NULL;
5241
5242 if (warn_if_readin && data->v.quick->compunit_symtab)
5243 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
5244 paddress (get_objfile_arch (objfile), pc));
5245
5246 result
58f0c718
TT
5247 = recursively_find_pc_sect_compunit_symtab (dw2_instantiate_symtab (data,
5248 false),
927aa2e7
JK
5249 pc);
5250 gdb_assert (result != NULL);
5251 return result;
5252}
5253
5254static void
5255dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
5256 void *data, int need_fullname)
5257{
ed2dc618
SM
5258 struct dwarf2_per_objfile *dwarf2_per_objfile
5259 = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
5260
5261 if (!dwarf2_per_objfile->filenames_cache)
5262 {
5263 dwarf2_per_objfile->filenames_cache.emplace ();
5264
5265 htab_up visited (htab_create_alloc (10,
5266 htab_hash_pointer, htab_eq_pointer,
5267 NULL, xcalloc, xfree));
5268
5269 /* The rule is CUs specify all the files, including those used
5270 by any TU, so there's no need to scan TUs here. We can
5271 ignore file names coming from already-expanded CUs. */
5272
b76e467d 5273 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5274 {
927aa2e7
JK
5275 if (per_cu->v.quick->compunit_symtab)
5276 {
5277 void **slot = htab_find_slot (visited.get (),
5278 per_cu->v.quick->file_names,
5279 INSERT);
5280
5281 *slot = per_cu->v.quick->file_names;
5282 }
5283 }
5284
b76e467d 5285 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5286 {
927aa2e7
JK
5287 /* We only need to look at symtabs not already expanded. */
5288 if (per_cu->v.quick->compunit_symtab)
5289 continue;
5290
b76e467d 5291 quick_file_names *file_data = dw2_get_file_names (per_cu);
927aa2e7
JK
5292 if (file_data == NULL)
5293 continue;
5294
b76e467d 5295 void **slot = htab_find_slot (visited.get (), file_data, INSERT);
927aa2e7
JK
5296 if (*slot)
5297 {
5298 /* Already visited. */
5299 continue;
5300 }
5301 *slot = file_data;
5302
5303 for (int j = 0; j < file_data->num_file_names; ++j)
5304 {
5305 const char *filename = file_data->file_names[j];
5306 dwarf2_per_objfile->filenames_cache->seen (filename);
5307 }
5308 }
5309 }
5310
5311 dwarf2_per_objfile->filenames_cache->traverse ([&] (const char *filename)
5312 {
5313 gdb::unique_xmalloc_ptr<char> this_real_name;
5314
5315 if (need_fullname)
5316 this_real_name = gdb_realpath (filename);
5317 (*fun) (filename, this_real_name.get (), data);
5318 });
5319}
5320
5321static int
5322dw2_has_symbols (struct objfile *objfile)
5323{
5324 return 1;
5325}
5326
5327const struct quick_symbol_functions dwarf2_gdb_index_functions =
5328{
5329 dw2_has_symbols,
5330 dw2_find_last_source_symtab,
5331 dw2_forget_cached_source_info,
5332 dw2_map_symtabs_matching_filename,
5333 dw2_lookup_symbol,
5334 dw2_print_stats,
5335 dw2_dump,
927aa2e7
JK
5336 dw2_expand_symtabs_for_function,
5337 dw2_expand_all_symtabs,
5338 dw2_expand_symtabs_with_fullname,
5339 dw2_map_matching_symbols,
5340 dw2_expand_symtabs_matching,
5341 dw2_find_pc_sect_compunit_symtab,
5342 NULL,
5343 dw2_map_symbol_filenames
5344};
5345
5346/* DWARF-5 debug_names reader. */
5347
5348/* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. */
5349static const gdb_byte dwarf5_augmentation[] = { 'G', 'D', 'B', 0 };
5350
5351/* A helper function that reads the .debug_names section in SECTION
5352 and fills in MAP. FILENAME is the name of the file containing the
5353 section; it is used for error reporting.
5354
5355 Returns true if all went well, false otherwise. */
5356
5357static bool
5358read_debug_names_from_section (struct objfile *objfile,
5359 const char *filename,
5360 struct dwarf2_section_info *section,
5361 mapped_debug_names &map)
5362{
5363 if (dwarf2_section_empty_p (section))
5364 return false;
5365
5366 /* Older elfutils strip versions could keep the section in the main
5367 executable while splitting it for the separate debug info file. */
5368 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
5369 return false;
5370
5371 dwarf2_read_section (objfile, section);
5372
5373 map.dwarf5_byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
5374
5375 const gdb_byte *addr = section->buffer;
5376
5377 bfd *const abfd = get_section_bfd_owner (section);
5378
5379 unsigned int bytes_read;
5380 LONGEST length = read_initial_length (abfd, addr, &bytes_read);
5381 addr += bytes_read;
5382
5383 map.dwarf5_is_dwarf64 = bytes_read != 4;
5384 map.offset_size = map.dwarf5_is_dwarf64 ? 8 : 4;
5385 if (bytes_read + length != section->size)
5386 {
5387 /* There may be multiple per-CU indices. */
5388 warning (_("Section .debug_names in %s length %s does not match "
5389 "section length %s, ignoring .debug_names."),
5390 filename, plongest (bytes_read + length),
5391 pulongest (section->size));
5392 return false;
5393 }
5394
5395 /* The version number. */
5396 uint16_t version = read_2_bytes (abfd, addr);
5397 addr += 2;
5398 if (version != 5)
5399 {
5400 warning (_("Section .debug_names in %s has unsupported version %d, "
5401 "ignoring .debug_names."),
5402 filename, version);
5403 return false;
5404 }
5405
5406 /* Padding. */
5407 uint16_t padding = read_2_bytes (abfd, addr);
5408 addr += 2;
5409 if (padding != 0)
5410 {
5411 warning (_("Section .debug_names in %s has unsupported padding %d, "
5412 "ignoring .debug_names."),
5413 filename, padding);
5414 return false;
5415 }
5416
5417 /* comp_unit_count - The number of CUs in the CU list. */
5418 map.cu_count = read_4_bytes (abfd, addr);
5419 addr += 4;
5420
5421 /* local_type_unit_count - The number of TUs in the local TU
5422 list. */
5423 map.tu_count = read_4_bytes (abfd, addr);
5424 addr += 4;
5425
5426 /* foreign_type_unit_count - The number of TUs in the foreign TU
5427 list. */
5428 uint32_t foreign_tu_count = read_4_bytes (abfd, addr);
5429 addr += 4;
5430 if (foreign_tu_count != 0)
5431 {
5432 warning (_("Section .debug_names in %s has unsupported %lu foreign TUs, "
5433 "ignoring .debug_names."),
5434 filename, static_cast<unsigned long> (foreign_tu_count));
5435 return false;
5436 }
5437
5438 /* bucket_count - The number of hash buckets in the hash lookup
5439 table. */
5440 map.bucket_count = read_4_bytes (abfd, addr);
5441 addr += 4;
5442
5443 /* name_count - The number of unique names in the index. */
5444 map.name_count = read_4_bytes (abfd, addr);
5445 addr += 4;
5446
5447 /* abbrev_table_size - The size in bytes of the abbreviations
5448 table. */
5449 uint32_t abbrev_table_size = read_4_bytes (abfd, addr);
5450 addr += 4;
5451
5452 /* augmentation_string_size - The size in bytes of the augmentation
5453 string. This value is rounded up to a multiple of 4. */
5454 uint32_t augmentation_string_size = read_4_bytes (abfd, addr);
5455 addr += 4;
5456 map.augmentation_is_gdb = ((augmentation_string_size
5457 == sizeof (dwarf5_augmentation))
5458 && memcmp (addr, dwarf5_augmentation,
5459 sizeof (dwarf5_augmentation)) == 0);
5460 augmentation_string_size += (-augmentation_string_size) & 3;
5461 addr += augmentation_string_size;
5462
5463 /* List of CUs */
5464 map.cu_table_reordered = addr;
5465 addr += map.cu_count * map.offset_size;
5466
5467 /* List of Local TUs */
5468 map.tu_table_reordered = addr;
5469 addr += map.tu_count * map.offset_size;
5470
5471 /* Hash Lookup Table */
5472 map.bucket_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5473 addr += map.bucket_count * 4;
5474 map.hash_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5475 addr += map.name_count * 4;
5476
5477 /* Name Table */
5478 map.name_table_string_offs_reordered = addr;
5479 addr += map.name_count * map.offset_size;
5480 map.name_table_entry_offs_reordered = addr;
5481 addr += map.name_count * map.offset_size;
5482
5483 const gdb_byte *abbrev_table_start = addr;
5484 for (;;)
5485 {
927aa2e7
JK
5486 const ULONGEST index_num = read_unsigned_leb128 (abfd, addr, &bytes_read);
5487 addr += bytes_read;
5488 if (index_num == 0)
5489 break;
5490
5491 const auto insertpair
5492 = map.abbrev_map.emplace (index_num, mapped_debug_names::index_val ());
5493 if (!insertpair.second)
5494 {
5495 warning (_("Section .debug_names in %s has duplicate index %s, "
5496 "ignoring .debug_names."),
5497 filename, pulongest (index_num));
5498 return false;
5499 }
5500 mapped_debug_names::index_val &indexval = insertpair.first->second;
5501 indexval.dwarf_tag = read_unsigned_leb128 (abfd, addr, &bytes_read);
5502 addr += bytes_read;
5503
5504 for (;;)
5505 {
5506 mapped_debug_names::index_val::attr attr;
5507 attr.dw_idx = read_unsigned_leb128 (abfd, addr, &bytes_read);
5508 addr += bytes_read;
5509 attr.form = read_unsigned_leb128 (abfd, addr, &bytes_read);
5510 addr += bytes_read;
5511 if (attr.form == DW_FORM_implicit_const)
5512 {
5513 attr.implicit_const = read_signed_leb128 (abfd, addr,
5514 &bytes_read);
5515 addr += bytes_read;
5516 }
5517 if (attr.dw_idx == 0 && attr.form == 0)
5518 break;
5519 indexval.attr_vec.push_back (std::move (attr));
5520 }
5521 }
5522 if (addr != abbrev_table_start + abbrev_table_size)
5523 {
5524 warning (_("Section .debug_names in %s has abbreviation_table "
47e3f474
TV
5525 "of size %s vs. written as %u, ignoring .debug_names."),
5526 filename, plongest (addr - abbrev_table_start),
5527 abbrev_table_size);
927aa2e7
JK
5528 return false;
5529 }
5530 map.entry_pool = addr;
5531
5532 return true;
5533}
5534
5535/* A helper for create_cus_from_debug_names that handles the MAP's CU
5536 list. */
5537
5538static void
ed2dc618 5539create_cus_from_debug_names_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5540 const mapped_debug_names &map,
5541 dwarf2_section_info &section,
b76e467d 5542 bool is_dwz)
927aa2e7
JK
5543{
5544 sect_offset sect_off_prev;
5545 for (uint32_t i = 0; i <= map.cu_count; ++i)
5546 {
5547 sect_offset sect_off_next;
5548 if (i < map.cu_count)
5549 {
5550 sect_off_next
5551 = (sect_offset) (extract_unsigned_integer
5552 (map.cu_table_reordered + i * map.offset_size,
5553 map.offset_size,
5554 map.dwarf5_byte_order));
5555 }
5556 else
5557 sect_off_next = (sect_offset) section.size;
5558 if (i >= 1)
5559 {
5560 const ULONGEST length = sect_off_next - sect_off_prev;
b76e467d 5561 dwarf2_per_cu_data *per_cu
ed2dc618 5562 = create_cu_from_index_list (dwarf2_per_objfile, &section, is_dwz,
927aa2e7 5563 sect_off_prev, length);
b76e467d 5564 dwarf2_per_objfile->all_comp_units.push_back (per_cu);
927aa2e7
JK
5565 }
5566 sect_off_prev = sect_off_next;
5567 }
5568}
5569
5570/* Read the CU list from the mapped index, and use it to create all
ed2dc618 5571 the CU objects for this dwarf2_per_objfile. */
927aa2e7
JK
5572
5573static void
ed2dc618 5574create_cus_from_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5575 const mapped_debug_names &map,
5576 const mapped_debug_names &dwz_map)
5577{
b76e467d
SM
5578 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
5579 dwarf2_per_objfile->all_comp_units.reserve (map.cu_count + dwz_map.cu_count);
927aa2e7 5580
ed2dc618
SM
5581 create_cus_from_debug_names_list (dwarf2_per_objfile, map,
5582 dwarf2_per_objfile->info,
b76e467d 5583 false /* is_dwz */);
927aa2e7
JK
5584
5585 if (dwz_map.cu_count == 0)
5586 return;
5587
ed2dc618
SM
5588 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
5589 create_cus_from_debug_names_list (dwarf2_per_objfile, dwz_map, dwz->info,
b76e467d 5590 true /* is_dwz */);
927aa2e7
JK
5591}
5592
5593/* Read .debug_names. If everything went ok, initialize the "quick"
5594 elements of all the CUs and return true. Otherwise, return false. */
5595
5596static bool
ed2dc618 5597dwarf2_read_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile)
927aa2e7 5598{
22ca247e
TT
5599 std::unique_ptr<mapped_debug_names> map
5600 (new mapped_debug_names (dwarf2_per_objfile));
ed2dc618
SM
5601 mapped_debug_names dwz_map (dwarf2_per_objfile);
5602 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7
JK
5603
5604 if (!read_debug_names_from_section (objfile, objfile_name (objfile),
5605 &dwarf2_per_objfile->debug_names,
22ca247e 5606 *map))
927aa2e7
JK
5607 return false;
5608
5609 /* Don't use the index if it's empty. */
22ca247e 5610 if (map->name_count == 0)
927aa2e7
JK
5611 return false;
5612
5613 /* If there is a .dwz file, read it so we can get its CU list as
5614 well. */
ed2dc618 5615 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
927aa2e7
JK
5616 if (dwz != NULL)
5617 {
5618 if (!read_debug_names_from_section (objfile,
5619 bfd_get_filename (dwz->dwz_bfd),
5620 &dwz->debug_names, dwz_map))
5621 {
5622 warning (_("could not read '.debug_names' section from %s; skipping"),
5623 bfd_get_filename (dwz->dwz_bfd));
5624 return false;
5625 }
5626 }
5627
22ca247e 5628 create_cus_from_debug_names (dwarf2_per_objfile, *map, dwz_map);
927aa2e7 5629
22ca247e 5630 if (map->tu_count != 0)
927aa2e7
JK
5631 {
5632 /* We can only handle a single .debug_types when we have an
5633 index. */
fd5866f6 5634 if (dwarf2_per_objfile->types.size () != 1)
927aa2e7
JK
5635 return false;
5636
fd5866f6 5637 dwarf2_section_info *section = &dwarf2_per_objfile->types[0];
927aa2e7
JK
5638
5639 create_signatured_type_table_from_debug_names
22ca247e 5640 (dwarf2_per_objfile, *map, section, &dwarf2_per_objfile->abbrev);
927aa2e7
JK
5641 }
5642
ed2dc618
SM
5643 create_addrmap_from_aranges (dwarf2_per_objfile,
5644 &dwarf2_per_objfile->debug_aranges);
927aa2e7 5645
22ca247e 5646 dwarf2_per_objfile->debug_names_table = std::move (map);
927aa2e7
JK
5647 dwarf2_per_objfile->using_index = 1;
5648 dwarf2_per_objfile->quick_file_names_table =
b76e467d 5649 create_quick_file_names_table (dwarf2_per_objfile->all_comp_units.size ());
927aa2e7
JK
5650
5651 return true;
5652}
5653
927aa2e7
JK
5654/* Type used to manage iterating over all CUs looking for a symbol for
5655 .debug_names. */
5656
5657class dw2_debug_names_iterator
5658{
5659public:
5660 /* If WANT_SPECIFIC_BLOCK is true, only look for symbols in block
5661 BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
5662 dw2_debug_names_iterator (const mapped_debug_names &map,
5663 bool want_specific_block,
5664 block_enum block_index, domain_enum domain,
5665 const char *name)
5666 : m_map (map), m_want_specific_block (want_specific_block),
5667 m_block_index (block_index), m_domain (domain),
5668 m_addr (find_vec_in_debug_names (map, name))
5669 {}
5670
5671 dw2_debug_names_iterator (const mapped_debug_names &map,
5672 search_domain search, uint32_t namei)
5673 : m_map (map),
5674 m_search (search),
5675 m_addr (find_vec_in_debug_names (map, namei))
5676 {}
5677
5678 /* Return the next matching CU or NULL if there are no more. */
5679 dwarf2_per_cu_data *next ();
5680
5681private:
5682 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5683 const char *name);
5684 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5685 uint32_t namei);
5686
5687 /* The internalized form of .debug_names. */
5688 const mapped_debug_names &m_map;
5689
5690 /* If true, only look for symbols that match BLOCK_INDEX. */
5691 const bool m_want_specific_block = false;
5692
5693 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
5694 Unused if !WANT_SPECIFIC_BLOCK - FIRST_LOCAL_BLOCK is an invalid
5695 value. */
5696 const block_enum m_block_index = FIRST_LOCAL_BLOCK;
5697
5698 /* The kind of symbol we're looking for. */
5699 const domain_enum m_domain = UNDEF_DOMAIN;
5700 const search_domain m_search = ALL_DOMAIN;
5701
5702 /* The list of CUs from the index entry of the symbol, or NULL if
5703 not found. */
5704 const gdb_byte *m_addr;
5705};
5706
5707const char *
5708mapped_debug_names::namei_to_name (uint32_t namei) const
5709{
5710 const ULONGEST namei_string_offs
5711 = extract_unsigned_integer ((name_table_string_offs_reordered
5712 + namei * offset_size),
5713 offset_size,
5714 dwarf5_byte_order);
5715 return read_indirect_string_at_offset
ed2dc618 5716 (dwarf2_per_objfile, dwarf2_per_objfile->objfile->obfd, namei_string_offs);
927aa2e7
JK
5717}
5718
5719/* Find a slot in .debug_names for the object named NAME. If NAME is
5720 found, return pointer to its pool data. If NAME cannot be found,
5721 return NULL. */
5722
5723const gdb_byte *
5724dw2_debug_names_iterator::find_vec_in_debug_names
5725 (const mapped_debug_names &map, const char *name)
5726{
5727 int (*cmp) (const char *, const char *);
5728
5729 if (current_language->la_language == language_cplus
5730 || current_language->la_language == language_fortran
5731 || current_language->la_language == language_d)
5732 {
5733 /* NAME is already canonical. Drop any qualifiers as
5734 .debug_names does not contain any. */
5735
5736 if (strchr (name, '(') != NULL)
5737 {
5738 gdb::unique_xmalloc_ptr<char> without_params
5739 = cp_remove_params (name);
5740
5741 if (without_params != NULL)
5742 {
5743 name = without_params.get();
5744 }
5745 }
5746 }
5747
5748 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
5749
5750 const uint32_t full_hash = dwarf5_djb_hash (name);
5751 uint32_t namei
5752 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5753 (map.bucket_table_reordered
5754 + (full_hash % map.bucket_count)), 4,
5755 map.dwarf5_byte_order);
5756 if (namei == 0)
5757 return NULL;
5758 --namei;
5759 if (namei >= map.name_count)
5760 {
b98664d3 5761 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5762 "[in module %s]"),
5763 namei, map.name_count,
ed2dc618 5764 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5765 return NULL;
5766 }
5767
5768 for (;;)
5769 {
5770 const uint32_t namei_full_hash
5771 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5772 (map.hash_table_reordered + namei), 4,
5773 map.dwarf5_byte_order);
5774 if (full_hash % map.bucket_count != namei_full_hash % map.bucket_count)
5775 return NULL;
5776
5777 if (full_hash == namei_full_hash)
5778 {
5779 const char *const namei_string = map.namei_to_name (namei);
5780
5781#if 0 /* An expensive sanity check. */
5782 if (namei_full_hash != dwarf5_djb_hash (namei_string))
5783 {
b98664d3 5784 complaint (_("Wrong .debug_names hash for string at index %u "
927aa2e7
JK
5785 "[in module %s]"),
5786 namei, objfile_name (dwarf2_per_objfile->objfile));
5787 return NULL;
5788 }
5789#endif
5790
5791 if (cmp (namei_string, name) == 0)
5792 {
5793 const ULONGEST namei_entry_offs
5794 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5795 + namei * map.offset_size),
5796 map.offset_size, map.dwarf5_byte_order);
5797 return map.entry_pool + namei_entry_offs;
5798 }
5799 }
5800
5801 ++namei;
5802 if (namei >= map.name_count)
5803 return NULL;
5804 }
5805}
5806
5807const gdb_byte *
5808dw2_debug_names_iterator::find_vec_in_debug_names
5809 (const mapped_debug_names &map, uint32_t namei)
5810{
5811 if (namei >= map.name_count)
5812 {
b98664d3 5813 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5814 "[in module %s]"),
5815 namei, map.name_count,
ed2dc618 5816 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5817 return NULL;
5818 }
5819
5820 const ULONGEST namei_entry_offs
5821 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5822 + namei * map.offset_size),
5823 map.offset_size, map.dwarf5_byte_order);
5824 return map.entry_pool + namei_entry_offs;
5825}
5826
5827/* See dw2_debug_names_iterator. */
5828
5829dwarf2_per_cu_data *
5830dw2_debug_names_iterator::next ()
5831{
5832 if (m_addr == NULL)
5833 return NULL;
5834
ed2dc618
SM
5835 struct dwarf2_per_objfile *dwarf2_per_objfile = m_map.dwarf2_per_objfile;
5836 struct objfile *objfile = dwarf2_per_objfile->objfile;
5837 bfd *const abfd = objfile->obfd;
927aa2e7
JK
5838
5839 again:
5840
5841 unsigned int bytes_read;
5842 const ULONGEST abbrev = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5843 m_addr += bytes_read;
5844 if (abbrev == 0)
5845 return NULL;
5846
5847 const auto indexval_it = m_map.abbrev_map.find (abbrev);
5848 if (indexval_it == m_map.abbrev_map.cend ())
5849 {
b98664d3 5850 complaint (_("Wrong .debug_names undefined abbrev code %s "
927aa2e7 5851 "[in module %s]"),
ed2dc618 5852 pulongest (abbrev), objfile_name (objfile));
927aa2e7
JK
5853 return NULL;
5854 }
5855 const mapped_debug_names::index_val &indexval = indexval_it->second;
5856 bool have_is_static = false;
5857 bool is_static;
5858 dwarf2_per_cu_data *per_cu = NULL;
5859 for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec)
5860 {
5861 ULONGEST ull;
5862 switch (attr.form)
5863 {
5864 case DW_FORM_implicit_const:
5865 ull = attr.implicit_const;
5866 break;
5867 case DW_FORM_flag_present:
5868 ull = 1;
5869 break;
5870 case DW_FORM_udata:
5871 ull = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5872 m_addr += bytes_read;
5873 break;
5874 default:
b98664d3 5875 complaint (_("Unsupported .debug_names form %s [in module %s]"),
927aa2e7 5876 dwarf_form_name (attr.form),
ed2dc618 5877 objfile_name (objfile));
927aa2e7
JK
5878 return NULL;
5879 }
5880 switch (attr.dw_idx)
5881 {
5882 case DW_IDX_compile_unit:
5883 /* Don't crash on bad data. */
b76e467d 5884 if (ull >= dwarf2_per_objfile->all_comp_units.size ())
927aa2e7 5885 {
b98664d3 5886 complaint (_(".debug_names entry has bad CU index %s"
927aa2e7
JK
5887 " [in module %s]"),
5888 pulongest (ull),
5889 objfile_name (dwarf2_per_objfile->objfile));
5890 continue;
5891 }
ff4c9fec 5892 per_cu = dwarf2_per_objfile->get_cutu (ull);
927aa2e7 5893 break;
8af5c486
JK
5894 case DW_IDX_type_unit:
5895 /* Don't crash on bad data. */
b2bdb8cf 5896 if (ull >= dwarf2_per_objfile->all_type_units.size ())
8af5c486 5897 {
b98664d3 5898 complaint (_(".debug_names entry has bad TU index %s"
8af5c486
JK
5899 " [in module %s]"),
5900 pulongest (ull),
5901 objfile_name (dwarf2_per_objfile->objfile));
5902 continue;
5903 }
ff4c9fec 5904 per_cu = &dwarf2_per_objfile->get_tu (ull)->per_cu;
8af5c486 5905 break;
927aa2e7
JK
5906 case DW_IDX_GNU_internal:
5907 if (!m_map.augmentation_is_gdb)
5908 break;
5909 have_is_static = true;
5910 is_static = true;
5911 break;
5912 case DW_IDX_GNU_external:
5913 if (!m_map.augmentation_is_gdb)
5914 break;
5915 have_is_static = true;
5916 is_static = false;
5917 break;
5918 }
5919 }
5920
5921 /* Skip if already read in. */
5922 if (per_cu->v.quick->compunit_symtab)
5923 goto again;
5924
5925 /* Check static vs global. */
5926 if (have_is_static)
5927 {
5928 const bool want_static = m_block_index != GLOBAL_BLOCK;
5929 if (m_want_specific_block && want_static != is_static)
5930 goto again;
5931 }
5932
5933 /* Match dw2_symtab_iter_next, symbol_kind
5934 and debug_names::psymbol_tag. */
5935 switch (m_domain)
5936 {
5937 case VAR_DOMAIN:
5938 switch (indexval.dwarf_tag)
5939 {
5940 case DW_TAG_variable:
5941 case DW_TAG_subprogram:
5942 /* Some types are also in VAR_DOMAIN. */
5943 case DW_TAG_typedef:
5944 case DW_TAG_structure_type:
5945 break;
5946 default:
5947 goto again;
5948 }
5949 break;
5950 case STRUCT_DOMAIN:
5951 switch (indexval.dwarf_tag)
5952 {
5953 case DW_TAG_typedef:
5954 case DW_TAG_structure_type:
5955 break;
5956 default:
5957 goto again;
5958 }
5959 break;
5960 case LABEL_DOMAIN:
5961 switch (indexval.dwarf_tag)
5962 {
5963 case 0:
5964 case DW_TAG_variable:
5965 break;
5966 default:
5967 goto again;
5968 }
5969 break;
5970 default:
5971 break;
5972 }
5973
5974 /* Match dw2_expand_symtabs_matching, symbol_kind and
5975 debug_names::psymbol_tag. */
5976 switch (m_search)
4b514bc8 5977 {
927aa2e7
JK
5978 case VARIABLES_DOMAIN:
5979 switch (indexval.dwarf_tag)
4b514bc8 5980 {
927aa2e7
JK
5981 case DW_TAG_variable:
5982 break;
5983 default:
5984 goto again;
4b514bc8 5985 }
927aa2e7
JK
5986 break;
5987 case FUNCTIONS_DOMAIN:
5988 switch (indexval.dwarf_tag)
4b514bc8 5989 {
927aa2e7
JK
5990 case DW_TAG_subprogram:
5991 break;
5992 default:
5993 goto again;
4b514bc8 5994 }
927aa2e7
JK
5995 break;
5996 case TYPES_DOMAIN:
5997 switch (indexval.dwarf_tag)
5998 {
5999 case DW_TAG_typedef:
6000 case DW_TAG_structure_type:
6001 break;
6002 default:
6003 goto again;
6004 }
6005 break;
6006 default:
6007 break;
4b514bc8 6008 }
927aa2e7
JK
6009
6010 return per_cu;
4b514bc8 6011}
61920122 6012
927aa2e7
JK
6013static struct compunit_symtab *
6014dw2_debug_names_lookup_symbol (struct objfile *objfile, int block_index_int,
6015 const char *name, domain_enum domain)
4b514bc8 6016{
927aa2e7 6017 const block_enum block_index = static_cast<block_enum> (block_index_int);
ed2dc618
SM
6018 struct dwarf2_per_objfile *dwarf2_per_objfile
6019 = get_dwarf2_per_objfile (objfile);
61920122 6020
927aa2e7
JK
6021 const auto &mapp = dwarf2_per_objfile->debug_names_table;
6022 if (!mapp)
61920122 6023 {
927aa2e7
JK
6024 /* index is NULL if OBJF_READNOW. */
6025 return NULL;
6026 }
6027 const auto &map = *mapp;
9291a0cd 6028
927aa2e7
JK
6029 dw2_debug_names_iterator iter (map, true /* want_specific_block */,
6030 block_index, domain, name);
9703b513 6031
927aa2e7
JK
6032 struct compunit_symtab *stab_best = NULL;
6033 struct dwarf2_per_cu_data *per_cu;
6034 while ((per_cu = iter.next ()) != NULL)
6035 {
6036 struct symbol *sym, *with_opaque = NULL;
58f0c718 6037 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu, false);
927aa2e7 6038 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 6039 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
9703b513 6040
927aa2e7
JK
6041 sym = block_find_symbol (block, name, domain,
6042 block_find_non_opaque_type_preferred,
6043 &with_opaque);
9703b513 6044
927aa2e7
JK
6045 /* Some caution must be observed with overloaded functions and
6046 methods, since the index will not contain any overload
6047 information (but NAME might contain it). */
a3ec0bb1 6048
927aa2e7
JK
6049 if (sym != NULL
6050 && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
6051 return stab;
6052 if (with_opaque != NULL
6053 && strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
6054 stab_best = stab;
9703b513 6055
927aa2e7 6056 /* Keep looking through other CUs. */
9703b513
TT
6057 }
6058
927aa2e7 6059 return stab_best;
9703b513
TT
6060}
6061
927aa2e7
JK
6062/* This dumps minimal information about .debug_names. It is called
6063 via "mt print objfiles". The gdb.dwarf2/gdb-index.exp testcase
6064 uses this to verify that .debug_names has been loaded. */
9291a0cd 6065
927aa2e7
JK
6066static void
6067dw2_debug_names_dump (struct objfile *objfile)
6068{
ed2dc618
SM
6069 struct dwarf2_per_objfile *dwarf2_per_objfile
6070 = get_dwarf2_per_objfile (objfile);
6071
927aa2e7
JK
6072 gdb_assert (dwarf2_per_objfile->using_index);
6073 printf_filtered (".debug_names:");
6074 if (dwarf2_per_objfile->debug_names_table)
6075 printf_filtered (" exists\n");
6076 else
6077 printf_filtered (" faked for \"readnow\"\n");
6078 printf_filtered ("\n");
9291a0cd
TT
6079}
6080
9291a0cd 6081static void
927aa2e7
JK
6082dw2_debug_names_expand_symtabs_for_function (struct objfile *objfile,
6083 const char *func_name)
9291a0cd 6084{
ed2dc618
SM
6085 struct dwarf2_per_objfile *dwarf2_per_objfile
6086 = get_dwarf2_per_objfile (objfile);
ae2de4f8 6087
927aa2e7
JK
6088 /* dwarf2_per_objfile->debug_names_table is NULL if OBJF_READNOW. */
6089 if (dwarf2_per_objfile->debug_names_table)
24c79950 6090 {
927aa2e7 6091 const mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
24c79950 6092
927aa2e7
JK
6093 /* Note: It doesn't matter what we pass for block_index here. */
6094 dw2_debug_names_iterator iter (map, false /* want_specific_block */,
6095 GLOBAL_BLOCK, VAR_DOMAIN, func_name);
24c79950 6096
927aa2e7
JK
6097 struct dwarf2_per_cu_data *per_cu;
6098 while ((per_cu = iter.next ()) != NULL)
58f0c718 6099 dw2_instantiate_symtab (per_cu, false);
927aa2e7
JK
6100 }
6101}
24c79950 6102
927aa2e7
JK
6103static void
6104dw2_debug_names_expand_symtabs_matching
6105 (struct objfile *objfile,
6106 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
6107 const lookup_name_info &lookup_name,
6108 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
6109 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
6110 enum search_domain kind)
6111{
ed2dc618
SM
6112 struct dwarf2_per_objfile *dwarf2_per_objfile
6113 = get_dwarf2_per_objfile (objfile);
9291a0cd 6114
927aa2e7
JK
6115 /* debug_names_table is NULL if OBJF_READNOW. */
6116 if (!dwarf2_per_objfile->debug_names_table)
6117 return;
9291a0cd 6118
ed2dc618 6119 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
24c79950 6120
44ed8f3e 6121 mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
bbf2f4df 6122
44ed8f3e
PA
6123 dw2_expand_symtabs_matching_symbol (map, lookup_name,
6124 symbol_matcher,
6125 kind, [&] (offset_type namei)
927aa2e7 6126 {
927aa2e7
JK
6127 /* The name was matched, now expand corresponding CUs that were
6128 marked. */
6129 dw2_debug_names_iterator iter (map, kind, namei);
bbf2f4df 6130
927aa2e7
JK
6131 struct dwarf2_per_cu_data *per_cu;
6132 while ((per_cu = iter.next ()) != NULL)
6133 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
6134 expansion_notify);
44ed8f3e 6135 });
9291a0cd
TT
6136}
6137
927aa2e7 6138const struct quick_symbol_functions dwarf2_debug_names_functions =
9291a0cd
TT
6139{
6140 dw2_has_symbols,
6141 dw2_find_last_source_symtab,
6142 dw2_forget_cached_source_info,
f8eba3c6 6143 dw2_map_symtabs_matching_filename,
927aa2e7 6144 dw2_debug_names_lookup_symbol,
9291a0cd 6145 dw2_print_stats,
927aa2e7 6146 dw2_debug_names_dump,
927aa2e7 6147 dw2_debug_names_expand_symtabs_for_function,
9291a0cd 6148 dw2_expand_all_symtabs,
652a8996 6149 dw2_expand_symtabs_with_fullname,
40658b94 6150 dw2_map_matching_symbols,
927aa2e7 6151 dw2_debug_names_expand_symtabs_matching,
43f3e411 6152 dw2_find_pc_sect_compunit_symtab,
71a3c369 6153 NULL,
9291a0cd
TT
6154 dw2_map_symbol_filenames
6155};
6156
4485a1c1
SM
6157/* Get the content of the .gdb_index section of OBJ. SECTION_OWNER should point
6158 to either a dwarf2_per_objfile or dwz_file object. */
6159
6160template <typename T>
6161static gdb::array_view<const gdb_byte>
6162get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
6163{
6164 dwarf2_section_info *section = &section_owner->gdb_index;
6165
6166 if (dwarf2_section_empty_p (section))
6167 return {};
6168
6169 /* Older elfutils strip versions could keep the section in the main
6170 executable while splitting it for the separate debug info file. */
6171 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
6172 return {};
6173
6174 dwarf2_read_section (obj, section);
6175
8bebfcda
PA
6176 /* dwarf2_section_info::size is a bfd_size_type, while
6177 gdb::array_view works with size_t. On 32-bit hosts, with
6178 --enable-64-bit-bfd, bfd_size_type is a 64-bit type, while size_t
6179 is 32-bit. So we need an explicit narrowing conversion here.
6180 This is fine, because it's impossible to allocate or mmap an
6181 array/buffer larger than what size_t can represent. */
6182 return gdb::make_array_view (section->buffer, section->size);
4485a1c1
SM
6183}
6184
87d6a7aa
SM
6185/* Lookup the index cache for the contents of the index associated to
6186 DWARF2_OBJ. */
6187
6188static gdb::array_view<const gdb_byte>
6189get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_objfile *dwarf2_obj)
6190{
6191 const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
6192 if (build_id == nullptr)
6193 return {};
6194
6195 return global_index_cache.lookup_gdb_index (build_id,
6196 &dwarf2_obj->index_cache_res);
6197}
6198
6199/* Same as the above, but for DWZ. */
6200
6201static gdb::array_view<const gdb_byte>
6202get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
6203{
6204 const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
6205 if (build_id == nullptr)
6206 return {};
6207
6208 return global_index_cache.lookup_gdb_index (build_id, &dwz->index_cache_res);
6209}
6210
3c0aa29a 6211/* See symfile.h. */
9291a0cd 6212
3c0aa29a
PA
6213bool
6214dwarf2_initialize_objfile (struct objfile *objfile, dw_index_kind *index_kind)
9291a0cd 6215{
ed2dc618
SM
6216 struct dwarf2_per_objfile *dwarf2_per_objfile
6217 = get_dwarf2_per_objfile (objfile);
6218
9291a0cd
TT
6219 /* If we're about to read full symbols, don't bother with the
6220 indices. In this case we also don't care if some other debug
6221 format is making psymtabs, because they are all about to be
6222 expanded anyway. */
6223 if ((objfile->flags & OBJF_READNOW))
6224 {
9291a0cd 6225 dwarf2_per_objfile->using_index = 1;
ed2dc618
SM
6226 create_all_comp_units (dwarf2_per_objfile);
6227 create_all_type_units (dwarf2_per_objfile);
b76e467d
SM
6228 dwarf2_per_objfile->quick_file_names_table
6229 = create_quick_file_names_table
6230 (dwarf2_per_objfile->all_comp_units.size ());
9291a0cd 6231
b76e467d 6232 for (int i = 0; i < (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 6233 + dwarf2_per_objfile->all_type_units.size ()); ++i)
9291a0cd 6234 {
ff4c9fec 6235 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 6236
e254ef6a
DE
6237 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6238 struct dwarf2_per_cu_quick_data);
9291a0cd
TT
6239 }
6240
6241 /* Return 1 so that gdb sees the "quick" functions. However,
6242 these functions will be no-ops because we will have expanded
6243 all symtabs. */
3c0aa29a
PA
6244 *index_kind = dw_index_kind::GDB_INDEX;
6245 return true;
9291a0cd
TT
6246 }
6247
ed2dc618 6248 if (dwarf2_read_debug_names (dwarf2_per_objfile))
3c0aa29a
PA
6249 {
6250 *index_kind = dw_index_kind::DEBUG_NAMES;
6251 return true;
6252 }
927aa2e7 6253
4485a1c1
SM
6254 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
6255 get_gdb_index_contents_from_section<struct dwarf2_per_objfile>,
6256 get_gdb_index_contents_from_section<dwz_file>))
3c0aa29a
PA
6257 {
6258 *index_kind = dw_index_kind::GDB_INDEX;
6259 return true;
6260 }
9291a0cd 6261
87d6a7aa
SM
6262 /* ... otherwise, try to find the index in the index cache. */
6263 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
6264 get_gdb_index_contents_from_cache,
6265 get_gdb_index_contents_from_cache_dwz))
6266 {
6267 global_index_cache.hit ();
6268 *index_kind = dw_index_kind::GDB_INDEX;
6269 return true;
6270 }
6271
6272 global_index_cache.miss ();
3c0aa29a 6273 return false;
9291a0cd
TT
6274}
6275
6276\f
6277
dce234bc
PP
6278/* Build a partial symbol table. */
6279
6280void
f29dff0a 6281dwarf2_build_psymtabs (struct objfile *objfile)
dce234bc 6282{
ed2dc618
SM
6283 struct dwarf2_per_objfile *dwarf2_per_objfile
6284 = get_dwarf2_per_objfile (objfile);
c9bf0622 6285
6eee24ce 6286 init_psymbol_list (objfile, 1024);
c906108c 6287
a70b8144 6288 try
c9bf0622
TT
6289 {
6290 /* This isn't really ideal: all the data we allocate on the
6291 objfile's obstack is still uselessly kept around. However,
6292 freeing it seems unsafe. */
906768f9 6293 psymtab_discarder psymtabs (objfile);
ed2dc618 6294 dwarf2_build_psymtabs_hard (dwarf2_per_objfile);
906768f9 6295 psymtabs.keep ();
87d6a7aa
SM
6296
6297 /* (maybe) store an index in the cache. */
6298 global_index_cache.store (dwarf2_per_objfile);
c9bf0622 6299 }
230d2906 6300 catch (const gdb_exception_error &except)
492d29ea
PA
6301 {
6302 exception_print (gdb_stderr, except);
6303 }
c906108c 6304}
c906108c 6305
1ce1cefd
DE
6306/* Return the total length of the CU described by HEADER. */
6307
6308static unsigned int
6309get_cu_length (const struct comp_unit_head *header)
6310{
6311 return header->initial_length_size + header->length;
6312}
6313
9c541725 6314/* Return TRUE if SECT_OFF is within CU_HEADER. */
45452591 6315
9c541725
PA
6316static inline bool
6317offset_in_cu_p (const comp_unit_head *cu_header, sect_offset sect_off)
45452591 6318{
9c541725
PA
6319 sect_offset bottom = cu_header->sect_off;
6320 sect_offset top = cu_header->sect_off + get_cu_length (cu_header);
9a619af0 6321
9c541725 6322 return sect_off >= bottom && sect_off < top;
45452591
DE
6323}
6324
3b80fe9b
DE
6325/* Find the base address of the compilation unit for range lists and
6326 location lists. It will normally be specified by DW_AT_low_pc.
6327 In DWARF-3 draft 4, the base address could be overridden by
6328 DW_AT_entry_pc. It's been removed, but GCC still uses this for
6329 compilation units with discontinuous ranges. */
6330
6331static void
6332dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
6333{
6334 struct attribute *attr;
6335
6336 cu->base_known = 0;
6337 cu->base_address = 0;
6338
6339 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
6340 if (attr)
6341 {
31aa7e4e 6342 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
6343 cu->base_known = 1;
6344 }
6345 else
6346 {
6347 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6348 if (attr)
6349 {
31aa7e4e 6350 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
6351 cu->base_known = 1;
6352 }
6353 }
6354}
6355
93311388 6356/* Read in the comp unit header information from the debug_info at info_ptr.
43988095 6357 Use rcuh_kind::COMPILE as the default type if not known by the caller.
93311388
DE
6358 NOTE: This leaves members offset, first_die_offset to be filled in
6359 by the caller. */
107d2387 6360
d521ce57 6361static const gdb_byte *
107d2387 6362read_comp_unit_head (struct comp_unit_head *cu_header,
43988095
JK
6363 const gdb_byte *info_ptr,
6364 struct dwarf2_section_info *section,
6365 rcuh_kind section_kind)
107d2387
AC
6366{
6367 int signed_addr;
891d2f0b 6368 unsigned int bytes_read;
43988095
JK
6369 const char *filename = get_section_file_name (section);
6370 bfd *abfd = get_section_bfd_owner (section);
c764a876
DE
6371
6372 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
6373 cu_header->initial_length_size = bytes_read;
6374 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
613e1657 6375 info_ptr += bytes_read;
107d2387 6376 cu_header->version = read_2_bytes (abfd, info_ptr);
1ea5da02
TV
6377 if (cu_header->version < 2 || cu_header->version > 5)
6378 error (_("Dwarf Error: wrong version in compilation unit header "
6379 "(is %d, should be 2, 3, 4 or 5) [in module %s]"),
6380 cu_header->version, filename);
107d2387 6381 info_ptr += 2;
43988095
JK
6382 if (cu_header->version < 5)
6383 switch (section_kind)
6384 {
6385 case rcuh_kind::COMPILE:
6386 cu_header->unit_type = DW_UT_compile;
6387 break;
6388 case rcuh_kind::TYPE:
6389 cu_header->unit_type = DW_UT_type;
6390 break;
6391 default:
6392 internal_error (__FILE__, __LINE__,
6393 _("read_comp_unit_head: invalid section_kind"));
6394 }
6395 else
6396 {
6397 cu_header->unit_type = static_cast<enum dwarf_unit_type>
6398 (read_1_byte (abfd, info_ptr));
6399 info_ptr += 1;
6400 switch (cu_header->unit_type)
6401 {
6402 case DW_UT_compile:
6403 if (section_kind != rcuh_kind::COMPILE)
6404 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6405 "(is DW_UT_compile, should be DW_UT_type) [in module %s]"),
6406 filename);
6407 break;
6408 case DW_UT_type:
6409 section_kind = rcuh_kind::TYPE;
6410 break;
6411 default:
6412 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6413 "(is %d, should be %d or %d) [in module %s]"),
6414 cu_header->unit_type, DW_UT_compile, DW_UT_type, filename);
6415 }
6416
6417 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6418 info_ptr += 1;
6419 }
9c541725
PA
6420 cu_header->abbrev_sect_off = (sect_offset) read_offset (abfd, info_ptr,
6421 cu_header,
6422 &bytes_read);
613e1657 6423 info_ptr += bytes_read;
43988095
JK
6424 if (cu_header->version < 5)
6425 {
6426 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6427 info_ptr += 1;
6428 }
107d2387
AC
6429 signed_addr = bfd_get_sign_extend_vma (abfd);
6430 if (signed_addr < 0)
8e65ff28 6431 internal_error (__FILE__, __LINE__,
e2e0b3e5 6432 _("read_comp_unit_head: dwarf from non elf file"));
107d2387 6433 cu_header->signed_addr_p = signed_addr;
c764a876 6434
43988095
JK
6435 if (section_kind == rcuh_kind::TYPE)
6436 {
6437 LONGEST type_offset;
6438
6439 cu_header->signature = read_8_bytes (abfd, info_ptr);
6440 info_ptr += 8;
6441
6442 type_offset = read_offset (abfd, info_ptr, cu_header, &bytes_read);
6443 info_ptr += bytes_read;
9c541725
PA
6444 cu_header->type_cu_offset_in_tu = (cu_offset) type_offset;
6445 if (to_underlying (cu_header->type_cu_offset_in_tu) != type_offset)
43988095
JK
6446 error (_("Dwarf Error: Too big type_offset in compilation unit "
6447 "header (is %s) [in module %s]"), plongest (type_offset),
6448 filename);
6449 }
6450
107d2387
AC
6451 return info_ptr;
6452}
6453
36586728
TT
6454/* Helper function that returns the proper abbrev section for
6455 THIS_CU. */
6456
6457static struct dwarf2_section_info *
6458get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
6459{
6460 struct dwarf2_section_info *abbrev;
ed2dc618 6461 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
36586728
TT
6462
6463 if (this_cu->is_dwz)
ed2dc618 6464 abbrev = &dwarf2_get_dwz_file (dwarf2_per_objfile)->abbrev;
36586728
TT
6465 else
6466 abbrev = &dwarf2_per_objfile->abbrev;
6467
6468 return abbrev;
6469}
6470
9ff913ba
DE
6471/* Subroutine of read_and_check_comp_unit_head and
6472 read_and_check_type_unit_head to simplify them.
6473 Perform various error checking on the header. */
6474
6475static void
ed2dc618
SM
6476error_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6477 struct comp_unit_head *header,
4bdcc0c1
DE
6478 struct dwarf2_section_info *section,
6479 struct dwarf2_section_info *abbrev_section)
9ff913ba 6480{
a32a8923 6481 const char *filename = get_section_file_name (section);
9ff913ba 6482
9c541725 6483 if (to_underlying (header->abbrev_sect_off)
36586728 6484 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
9d8780f0
SM
6485 error (_("Dwarf Error: bad offset (%s) in compilation unit header "
6486 "(offset %s + 6) [in module %s]"),
6487 sect_offset_str (header->abbrev_sect_off),
6488 sect_offset_str (header->sect_off),
9ff913ba
DE
6489 filename);
6490
9c541725 6491 /* Cast to ULONGEST to use 64-bit arithmetic when possible to
9ff913ba 6492 avoid potential 32-bit overflow. */
9c541725 6493 if (((ULONGEST) header->sect_off + get_cu_length (header))
9ff913ba 6494 > section->size)
9c541725 6495 error (_("Dwarf Error: bad length (0x%x) in compilation unit header "
9d8780f0
SM
6496 "(offset %s + 0) [in module %s]"),
6497 header->length, sect_offset_str (header->sect_off),
9ff913ba
DE
6498 filename);
6499}
6500
6501/* Read in a CU/TU header and perform some basic error checking.
6502 The contents of the header are stored in HEADER.
6503 The result is a pointer to the start of the first DIE. */
adabb602 6504
d521ce57 6505static const gdb_byte *
ed2dc618
SM
6506read_and_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6507 struct comp_unit_head *header,
9ff913ba 6508 struct dwarf2_section_info *section,
4bdcc0c1 6509 struct dwarf2_section_info *abbrev_section,
d521ce57 6510 const gdb_byte *info_ptr,
43988095 6511 rcuh_kind section_kind)
72bf9492 6512{
d521ce57 6513 const gdb_byte *beg_of_comp_unit = info_ptr;
72bf9492 6514
9c541725 6515 header->sect_off = (sect_offset) (beg_of_comp_unit - section->buffer);
adabb602 6516
43988095 6517 info_ptr = read_comp_unit_head (header, info_ptr, section, section_kind);
9ff913ba 6518
9c541725 6519 header->first_die_cu_offset = (cu_offset) (info_ptr - beg_of_comp_unit);
348e048f 6520
ed2dc618
SM
6521 error_check_comp_unit_head (dwarf2_per_objfile, header, section,
6522 abbrev_section);
9ff913ba
DE
6523
6524 return info_ptr;
348e048f
DE
6525}
6526
f4dc4d17
DE
6527/* Fetch the abbreviation table offset from a comp or type unit header. */
6528
6529static sect_offset
ed2dc618
SM
6530read_abbrev_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
6531 struct dwarf2_section_info *section,
9c541725 6532 sect_offset sect_off)
f4dc4d17 6533{
a32a8923 6534 bfd *abfd = get_section_bfd_owner (section);
d521ce57 6535 const gdb_byte *info_ptr;
ac298888 6536 unsigned int initial_length_size, offset_size;
43988095 6537 uint16_t version;
f4dc4d17
DE
6538
6539 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
9c541725 6540 info_ptr = section->buffer + to_underlying (sect_off);
ac298888 6541 read_initial_length (abfd, info_ptr, &initial_length_size);
f4dc4d17 6542 offset_size = initial_length_size == 4 ? 4 : 8;
43988095
JK
6543 info_ptr += initial_length_size;
6544
6545 version = read_2_bytes (abfd, info_ptr);
6546 info_ptr += 2;
6547 if (version >= 5)
6548 {
6549 /* Skip unit type and address size. */
6550 info_ptr += 2;
6551 }
6552
9c541725 6553 return (sect_offset) read_offset_1 (abfd, info_ptr, offset_size);
f4dc4d17
DE
6554}
6555
aaa75496
JB
6556/* Allocate a new partial symtab for file named NAME and mark this new
6557 partial symtab as being an include of PST. */
6558
6559static void
d521ce57 6560dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
aaa75496
JB
6561 struct objfile *objfile)
6562{
6563 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
6564
fbd9ab74
JK
6565 if (!IS_ABSOLUTE_PATH (subpst->filename))
6566 {
6567 /* It shares objfile->objfile_obstack. */
6568 subpst->dirname = pst->dirname;
6569 }
6570
a9342b62 6571 subpst->dependencies = objfile->partial_symtabs->allocate_dependencies (1);
aaa75496
JB
6572 subpst->dependencies[0] = pst;
6573 subpst->number_of_dependencies = 1;
6574
aaa75496 6575 subpst->read_symtab = pst->read_symtab;
aaa75496
JB
6576
6577 /* No private part is necessary for include psymtabs. This property
6578 can be used to differentiate between such include psymtabs and
10b3939b 6579 the regular ones. */
58a9656e 6580 subpst->read_symtab_private = NULL;
aaa75496
JB
6581}
6582
6583/* Read the Line Number Program data and extract the list of files
6584 included by the source file represented by PST. Build an include
d85a05f0 6585 partial symtab for each of these included files. */
aaa75496
JB
6586
6587static void
6588dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
dee91e82
DE
6589 struct die_info *die,
6590 struct partial_symtab *pst)
aaa75496 6591{
fff8551c 6592 line_header_up lh;
d85a05f0 6593 struct attribute *attr;
aaa75496 6594
d85a05f0
DJ
6595 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
6596 if (attr)
9c541725 6597 lh = dwarf_decode_line_header ((sect_offset) DW_UNSND (attr), cu);
aaa75496
JB
6598 if (lh == NULL)
6599 return; /* No linetable, so no includes. */
6600
79748972
TT
6601 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). Also note
6602 that we pass in the raw text_low here; that is ok because we're
6603 only decoding the line table to make include partial symtabs, and
6604 so the addresses aren't really used. */
4ae976d1 6605 dwarf_decode_lines (lh.get (), pst->dirname, cu, pst,
79748972 6606 pst->raw_text_low (), 1);
aaa75496
JB
6607}
6608
348e048f 6609static hashval_t
52dc124a 6610hash_signatured_type (const void *item)
348e048f 6611{
9a3c8263
SM
6612 const struct signatured_type *sig_type
6613 = (const struct signatured_type *) item;
9a619af0 6614
348e048f 6615 /* This drops the top 32 bits of the signature, but is ok for a hash. */
52dc124a 6616 return sig_type->signature;
348e048f
DE
6617}
6618
6619static int
52dc124a 6620eq_signatured_type (const void *item_lhs, const void *item_rhs)
348e048f 6621{
9a3c8263
SM
6622 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
6623 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
9a619af0 6624
348e048f
DE
6625 return lhs->signature == rhs->signature;
6626}
6627
1fd400ff
TT
6628/* Allocate a hash table for signatured types. */
6629
6630static htab_t
673bfd45 6631allocate_signatured_type_table (struct objfile *objfile)
1fd400ff
TT
6632{
6633 return htab_create_alloc_ex (41,
52dc124a
DE
6634 hash_signatured_type,
6635 eq_signatured_type,
1fd400ff
TT
6636 NULL,
6637 &objfile->objfile_obstack,
6638 hashtab_obstack_allocate,
6639 dummy_obstack_deallocate);
6640}
6641
d467dd73 6642/* A helper function to add a signatured type CU to a table. */
1fd400ff
TT
6643
6644static int
d467dd73 6645add_signatured_type_cu_to_table (void **slot, void *datum)
1fd400ff 6646{
9a3c8263 6647 struct signatured_type *sigt = (struct signatured_type *) *slot;
b2bdb8cf
SM
6648 std::vector<signatured_type *> *all_type_units
6649 = (std::vector<signatured_type *> *) datum;
1fd400ff 6650
b2bdb8cf 6651 all_type_units->push_back (sigt);
1fd400ff
TT
6652
6653 return 1;
6654}
6655
78d4d2c5 6656/* A helper for create_debug_types_hash_table. Read types from SECTION
43988095
JK
6657 and fill them into TYPES_HTAB. It will process only type units,
6658 therefore DW_UT_type. */
c88ee1f0 6659
78d4d2c5 6660static void
ed2dc618
SM
6661create_debug_type_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6662 struct dwo_file *dwo_file,
43988095
JK
6663 dwarf2_section_info *section, htab_t &types_htab,
6664 rcuh_kind section_kind)
348e048f 6665{
3019eac3 6666 struct objfile *objfile = dwarf2_per_objfile->objfile;
4bdcc0c1 6667 struct dwarf2_section_info *abbrev_section;
78d4d2c5
JK
6668 bfd *abfd;
6669 const gdb_byte *info_ptr, *end_ptr;
348e048f 6670
4bdcc0c1
DE
6671 abbrev_section = (dwo_file != NULL
6672 ? &dwo_file->sections.abbrev
6673 : &dwarf2_per_objfile->abbrev);
6674
b4f54984 6675 if (dwarf_read_debug)
43988095
JK
6676 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
6677 get_section_name (section),
a32a8923 6678 get_section_file_name (abbrev_section));
09406207 6679
78d4d2c5
JK
6680 dwarf2_read_section (objfile, section);
6681 info_ptr = section->buffer;
348e048f 6682
78d4d2c5
JK
6683 if (info_ptr == NULL)
6684 return;
348e048f 6685
78d4d2c5
JK
6686 /* We can't set abfd until now because the section may be empty or
6687 not present, in which case the bfd is unknown. */
6688 abfd = get_section_bfd_owner (section);
348e048f 6689
78d4d2c5
JK
6690 /* We don't use init_cutu_and_read_dies_simple, or some such, here
6691 because we don't need to read any dies: the signature is in the
6692 header. */
3019eac3 6693
78d4d2c5
JK
6694 end_ptr = info_ptr + section->size;
6695 while (info_ptr < end_ptr)
6696 {
78d4d2c5
JK
6697 struct signatured_type *sig_type;
6698 struct dwo_unit *dwo_tu;
6699 void **slot;
6700 const gdb_byte *ptr = info_ptr;
6701 struct comp_unit_head header;
6702 unsigned int length;
8b70b953 6703
9c541725 6704 sect_offset sect_off = (sect_offset) (ptr - section->buffer);
348e048f 6705
a49dd8dd
JK
6706 /* Initialize it due to a false compiler warning. */
6707 header.signature = -1;
9c541725 6708 header.type_cu_offset_in_tu = (cu_offset) -1;
a49dd8dd 6709
78d4d2c5
JK
6710 /* We need to read the type's signature in order to build the hash
6711 table, but we don't need anything else just yet. */
348e048f 6712
ed2dc618 6713 ptr = read_and_check_comp_unit_head (dwarf2_per_objfile, &header, section,
43988095 6714 abbrev_section, ptr, section_kind);
348e048f 6715
78d4d2c5 6716 length = get_cu_length (&header);
6caca83c 6717
78d4d2c5
JK
6718 /* Skip dummy type units. */
6719 if (ptr >= info_ptr + length
43988095
JK
6720 || peek_abbrev_code (abfd, ptr) == 0
6721 || header.unit_type != DW_UT_type)
78d4d2c5
JK
6722 {
6723 info_ptr += length;
6724 continue;
6725 }
dee91e82 6726
78d4d2c5
JK
6727 if (types_htab == NULL)
6728 {
6729 if (dwo_file)
6730 types_htab = allocate_dwo_unit_table (objfile);
6731 else
6732 types_htab = allocate_signatured_type_table (objfile);
6733 }
8b70b953 6734
78d4d2c5
JK
6735 if (dwo_file)
6736 {
6737 sig_type = NULL;
6738 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6739 struct dwo_unit);
6740 dwo_tu->dwo_file = dwo_file;
43988095 6741 dwo_tu->signature = header.signature;
9c541725 6742 dwo_tu->type_offset_in_tu = header.type_cu_offset_in_tu;
78d4d2c5 6743 dwo_tu->section = section;
9c541725 6744 dwo_tu->sect_off = sect_off;
78d4d2c5
JK
6745 dwo_tu->length = length;
6746 }
6747 else
6748 {
6749 /* N.B.: type_offset is not usable if this type uses a DWO file.
6750 The real type_offset is in the DWO file. */
6751 dwo_tu = NULL;
6752 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6753 struct signatured_type);
43988095 6754 sig_type->signature = header.signature;
9c541725 6755 sig_type->type_offset_in_tu = header.type_cu_offset_in_tu;
e3b94546 6756 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
78d4d2c5
JK
6757 sig_type->per_cu.is_debug_types = 1;
6758 sig_type->per_cu.section = section;
9c541725 6759 sig_type->per_cu.sect_off = sect_off;
78d4d2c5
JK
6760 sig_type->per_cu.length = length;
6761 }
6762
6763 slot = htab_find_slot (types_htab,
6764 dwo_file ? (void*) dwo_tu : (void *) sig_type,
6765 INSERT);
6766 gdb_assert (slot != NULL);
6767 if (*slot != NULL)
6768 {
9c541725 6769 sect_offset dup_sect_off;
0349ea22 6770
3019eac3
DE
6771 if (dwo_file)
6772 {
78d4d2c5
JK
6773 const struct dwo_unit *dup_tu
6774 = (const struct dwo_unit *) *slot;
6775
9c541725 6776 dup_sect_off = dup_tu->sect_off;
3019eac3
DE
6777 }
6778 else
6779 {
78d4d2c5
JK
6780 const struct signatured_type *dup_tu
6781 = (const struct signatured_type *) *slot;
6782
9c541725 6783 dup_sect_off = dup_tu->per_cu.sect_off;
3019eac3 6784 }
8b70b953 6785
b98664d3 6786 complaint (_("debug type entry at offset %s is duplicate to"
9d8780f0
SM
6787 " the entry at offset %s, signature %s"),
6788 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
43988095 6789 hex_string (header.signature));
78d4d2c5
JK
6790 }
6791 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
3019eac3 6792
78d4d2c5 6793 if (dwarf_read_debug > 1)
9d8780f0
SM
6794 fprintf_unfiltered (gdb_stdlog, " offset %s, signature %s\n",
6795 sect_offset_str (sect_off),
43988095 6796 hex_string (header.signature));
3019eac3 6797
78d4d2c5
JK
6798 info_ptr += length;
6799 }
6800}
3019eac3 6801
78d4d2c5
JK
6802/* Create the hash table of all entries in the .debug_types
6803 (or .debug_types.dwo) section(s).
6804 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
6805 otherwise it is NULL.
b3c8eb43 6806
78d4d2c5 6807 The result is a pointer to the hash table or NULL if there are no types.
348e048f 6808
78d4d2c5 6809 Note: This function processes DWO files only, not DWP files. */
348e048f 6810
78d4d2c5 6811static void
ed2dc618
SM
6812create_debug_types_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6813 struct dwo_file *dwo_file,
fd5866f6 6814 gdb::array_view<dwarf2_section_info> type_sections,
78d4d2c5
JK
6815 htab_t &types_htab)
6816{
fd5866f6
SM
6817 for (dwarf2_section_info &section : type_sections)
6818 create_debug_type_hash_table (dwarf2_per_objfile, dwo_file, &section,
ed2dc618 6819 types_htab, rcuh_kind::TYPE);
3019eac3
DE
6820}
6821
6822/* Create the hash table of all entries in the .debug_types section,
6823 and initialize all_type_units.
6824 The result is zero if there is an error (e.g. missing .debug_types section),
6825 otherwise non-zero. */
6826
6827static int
ed2dc618 6828create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
3019eac3 6829{
78d4d2c5 6830 htab_t types_htab = NULL;
3019eac3 6831
ed2dc618
SM
6832 create_debug_type_hash_table (dwarf2_per_objfile, NULL,
6833 &dwarf2_per_objfile->info, types_htab,
43988095 6834 rcuh_kind::COMPILE);
ed2dc618
SM
6835 create_debug_types_hash_table (dwarf2_per_objfile, NULL,
6836 dwarf2_per_objfile->types, types_htab);
3019eac3
DE
6837 if (types_htab == NULL)
6838 {
6839 dwarf2_per_objfile->signatured_types = NULL;
6840 return 0;
6841 }
6842
348e048f
DE
6843 dwarf2_per_objfile->signatured_types = types_htab;
6844
b2bdb8cf
SM
6845 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
6846 dwarf2_per_objfile->all_type_units.reserve (htab_elements (types_htab));
6847
6848 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table,
6849 &dwarf2_per_objfile->all_type_units);
1fd400ff 6850
348e048f
DE
6851 return 1;
6852}
6853
6aa5f3a6
DE
6854/* Add an entry for signature SIG to dwarf2_per_objfile->signatured_types.
6855 If SLOT is non-NULL, it is the entry to use in the hash table.
6856 Otherwise we find one. */
6857
6858static struct signatured_type *
ed2dc618
SM
6859add_type_unit (struct dwarf2_per_objfile *dwarf2_per_objfile, ULONGEST sig,
6860 void **slot)
6aa5f3a6
DE
6861{
6862 struct objfile *objfile = dwarf2_per_objfile->objfile;
6aa5f3a6 6863
b2bdb8cf
SM
6864 if (dwarf2_per_objfile->all_type_units.size ()
6865 == dwarf2_per_objfile->all_type_units.capacity ())
6866 ++dwarf2_per_objfile->tu_stats.nr_all_type_units_reallocs;
6aa5f3a6 6867
b2bdb8cf
SM
6868 signatured_type *sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6869 struct signatured_type);
6870
6871 dwarf2_per_objfile->all_type_units.push_back (sig_type);
6aa5f3a6
DE
6872 sig_type->signature = sig;
6873 sig_type->per_cu.is_debug_types = 1;
6874 if (dwarf2_per_objfile->using_index)
6875 {
6876 sig_type->per_cu.v.quick =
6877 OBSTACK_ZALLOC (&objfile->objfile_obstack,
6878 struct dwarf2_per_cu_quick_data);
6879 }
6880
6881 if (slot == NULL)
6882 {
6883 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
6884 sig_type, INSERT);
6885 }
6886 gdb_assert (*slot == NULL);
6887 *slot = sig_type;
6888 /* The rest of sig_type must be filled in by the caller. */
6889 return sig_type;
6890}
6891
a2ce51a0
DE
6892/* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
6893 Fill in SIG_ENTRY with DWO_ENTRY. */
6894
6895static void
ed2dc618 6896fill_in_sig_entry_from_dwo_entry (struct dwarf2_per_objfile *dwarf2_per_objfile,
a2ce51a0
DE
6897 struct signatured_type *sig_entry,
6898 struct dwo_unit *dwo_entry)
6899{
7ee85ab1 6900 /* Make sure we're not clobbering something we don't expect to. */
a2ce51a0
DE
6901 gdb_assert (! sig_entry->per_cu.queued);
6902 gdb_assert (sig_entry->per_cu.cu == NULL);
6aa5f3a6
DE
6903 if (dwarf2_per_objfile->using_index)
6904 {
6905 gdb_assert (sig_entry->per_cu.v.quick != NULL);
43f3e411 6906 gdb_assert (sig_entry->per_cu.v.quick->compunit_symtab == NULL);
6aa5f3a6
DE
6907 }
6908 else
6909 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
a2ce51a0 6910 gdb_assert (sig_entry->signature == dwo_entry->signature);
9c541725 6911 gdb_assert (to_underlying (sig_entry->type_offset_in_section) == 0);
a2ce51a0 6912 gdb_assert (sig_entry->type_unit_group == NULL);
7ee85ab1
DE
6913 gdb_assert (sig_entry->dwo_unit == NULL);
6914
6915 sig_entry->per_cu.section = dwo_entry->section;
9c541725 6916 sig_entry->per_cu.sect_off = dwo_entry->sect_off;
7ee85ab1
DE
6917 sig_entry->per_cu.length = dwo_entry->length;
6918 sig_entry->per_cu.reading_dwo_directly = 1;
e3b94546 6919 sig_entry->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
a2ce51a0
DE
6920 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
6921 sig_entry->dwo_unit = dwo_entry;
6922}
6923
6924/* Subroutine of lookup_signatured_type.
7ee85ab1
DE
6925 If we haven't read the TU yet, create the signatured_type data structure
6926 for a TU to be read in directly from a DWO file, bypassing the stub.
6927 This is the "Stay in DWO Optimization": When there is no DWP file and we're
6928 using .gdb_index, then when reading a CU we want to stay in the DWO file
6929 containing that CU. Otherwise we could end up reading several other DWO
6930 files (due to comdat folding) to process the transitive closure of all the
6931 mentioned TUs, and that can be slow. The current DWO file will have every
6932 type signature that it needs.
a2ce51a0
DE
6933 We only do this for .gdb_index because in the psymtab case we already have
6934 to read all the DWOs to build the type unit groups. */
6935
6936static struct signatured_type *
6937lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6938{
518817b3
SM
6939 struct dwarf2_per_objfile *dwarf2_per_objfile
6940 = cu->per_cu->dwarf2_per_objfile;
a2ce51a0
DE
6941 struct objfile *objfile = dwarf2_per_objfile->objfile;
6942 struct dwo_file *dwo_file;
6943 struct dwo_unit find_dwo_entry, *dwo_entry;
6944 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6945 void **slot;
a2ce51a0
DE
6946
6947 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
6948
6aa5f3a6
DE
6949 /* If TU skeletons have been removed then we may not have read in any
6950 TUs yet. */
6951 if (dwarf2_per_objfile->signatured_types == NULL)
6952 {
6953 dwarf2_per_objfile->signatured_types
6954 = allocate_signatured_type_table (objfile);
6955 }
a2ce51a0
DE
6956
6957 /* We only ever need to read in one copy of a signatured type.
6aa5f3a6
DE
6958 Use the global signatured_types array to do our own comdat-folding
6959 of types. If this is the first time we're reading this TU, and
6960 the TU has an entry in .gdb_index, replace the recorded data from
6961 .gdb_index with this TU. */
a2ce51a0 6962
a2ce51a0 6963 find_sig_entry.signature = sig;
6aa5f3a6
DE
6964 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
6965 &find_sig_entry, INSERT);
9a3c8263 6966 sig_entry = (struct signatured_type *) *slot;
7ee85ab1
DE
6967
6968 /* We can get here with the TU already read, *or* in the process of being
6aa5f3a6
DE
6969 read. Don't reassign the global entry to point to this DWO if that's
6970 the case. Also note that if the TU is already being read, it may not
6971 have come from a DWO, the program may be a mix of Fission-compiled
6972 code and non-Fission-compiled code. */
6973
6974 /* Have we already tried to read this TU?
6975 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
6976 needn't exist in the global table yet). */
6977 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
a2ce51a0
DE
6978 return sig_entry;
6979
6aa5f3a6
DE
6980 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
6981 dwo_unit of the TU itself. */
6982 dwo_file = cu->dwo_unit->dwo_file;
6983
a2ce51a0
DE
6984 /* Ok, this is the first time we're reading this TU. */
6985 if (dwo_file->tus == NULL)
6986 return NULL;
6987 find_dwo_entry.signature = sig;
9a3c8263 6988 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_entry);
a2ce51a0
DE
6989 if (dwo_entry == NULL)
6990 return NULL;
6991
6aa5f3a6
DE
6992 /* If the global table doesn't have an entry for this TU, add one. */
6993 if (sig_entry == NULL)
ed2dc618 6994 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
6aa5f3a6 6995
ed2dc618 6996 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
89e63ee4 6997 sig_entry->per_cu.tu_read = 1;
a2ce51a0
DE
6998 return sig_entry;
6999}
7000
a2ce51a0
DE
7001/* Subroutine of lookup_signatured_type.
7002 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
6aa5f3a6
DE
7003 then try the DWP file. If the TU stub (skeleton) has been removed then
7004 it won't be in .gdb_index. */
a2ce51a0
DE
7005
7006static struct signatured_type *
7007lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
7008{
518817b3
SM
7009 struct dwarf2_per_objfile *dwarf2_per_objfile
7010 = cu->per_cu->dwarf2_per_objfile;
a2ce51a0 7011 struct objfile *objfile = dwarf2_per_objfile->objfile;
ed2dc618 7012 struct dwp_file *dwp_file = get_dwp_file (dwarf2_per_objfile);
a2ce51a0
DE
7013 struct dwo_unit *dwo_entry;
7014 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 7015 void **slot;
a2ce51a0
DE
7016
7017 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
7018 gdb_assert (dwp_file != NULL);
7019
6aa5f3a6
DE
7020 /* If TU skeletons have been removed then we may not have read in any
7021 TUs yet. */
7022 if (dwarf2_per_objfile->signatured_types == NULL)
a2ce51a0 7023 {
6aa5f3a6
DE
7024 dwarf2_per_objfile->signatured_types
7025 = allocate_signatured_type_table (objfile);
a2ce51a0
DE
7026 }
7027
6aa5f3a6
DE
7028 find_sig_entry.signature = sig;
7029 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
7030 &find_sig_entry, INSERT);
9a3c8263 7031 sig_entry = (struct signatured_type *) *slot;
6aa5f3a6
DE
7032
7033 /* Have we already tried to read this TU?
7034 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
7035 needn't exist in the global table yet). */
7036 if (sig_entry != NULL)
7037 return sig_entry;
7038
a2ce51a0
DE
7039 if (dwp_file->tus == NULL)
7040 return NULL;
ed2dc618 7041 dwo_entry = lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, NULL,
57d63ce2 7042 sig, 1 /* is_debug_types */);
a2ce51a0
DE
7043 if (dwo_entry == NULL)
7044 return NULL;
7045
ed2dc618
SM
7046 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
7047 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
a2ce51a0 7048
a2ce51a0
DE
7049 return sig_entry;
7050}
7051
380bca97 7052/* Lookup a signature based type for DW_FORM_ref_sig8.
5a8b3f62
DE
7053 Returns NULL if signature SIG is not present in the table.
7054 It is up to the caller to complain about this. */
348e048f
DE
7055
7056static struct signatured_type *
a2ce51a0 7057lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
348e048f 7058{
518817b3
SM
7059 struct dwarf2_per_objfile *dwarf2_per_objfile
7060 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 7061
a2ce51a0
DE
7062 if (cu->dwo_unit
7063 && dwarf2_per_objfile->using_index)
7064 {
7065 /* We're in a DWO/DWP file, and we're using .gdb_index.
7066 These cases require special processing. */
ed2dc618 7067 if (get_dwp_file (dwarf2_per_objfile) == NULL)
a2ce51a0
DE
7068 return lookup_dwo_signatured_type (cu, sig);
7069 else
7070 return lookup_dwp_signatured_type (cu, sig);
7071 }
7072 else
7073 {
7074 struct signatured_type find_entry, *entry;
348e048f 7075
a2ce51a0
DE
7076 if (dwarf2_per_objfile->signatured_types == NULL)
7077 return NULL;
7078 find_entry.signature = sig;
9a3c8263
SM
7079 entry = ((struct signatured_type *)
7080 htab_find (dwarf2_per_objfile->signatured_types, &find_entry));
a2ce51a0
DE
7081 return entry;
7082 }
348e048f 7083}
42e7ad6c
DE
7084\f
7085/* Low level DIE reading support. */
348e048f 7086
d85a05f0
DJ
7087/* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
7088
7089static void
7090init_cu_die_reader (struct die_reader_specs *reader,
dee91e82 7091 struct dwarf2_cu *cu,
3019eac3 7092 struct dwarf2_section_info *section,
685af9cd
TT
7093 struct dwo_file *dwo_file,
7094 struct abbrev_table *abbrev_table)
d85a05f0 7095{
fceca515 7096 gdb_assert (section->readin && section->buffer != NULL);
a32a8923 7097 reader->abfd = get_section_bfd_owner (section);
d85a05f0 7098 reader->cu = cu;
3019eac3 7099 reader->dwo_file = dwo_file;
dee91e82
DE
7100 reader->die_section = section;
7101 reader->buffer = section->buffer;
f664829e 7102 reader->buffer_end = section->buffer + section->size;
a2ce51a0 7103 reader->comp_dir = NULL;
685af9cd 7104 reader->abbrev_table = abbrev_table;
d85a05f0
DJ
7105}
7106
b0c7bfa9
DE
7107/* Subroutine of init_cutu_and_read_dies to simplify it.
7108 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
7109 There's just a lot of work to do, and init_cutu_and_read_dies is big enough
7110 already.
7111
7112 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
7113 from it to the DIE in the DWO. If NULL we are skipping the stub.
a2ce51a0
DE
7114 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
7115 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
c54a1dd8
DE
7116 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
7117 STUB_COMP_DIR may be non-NULL.
b0c7bfa9
DE
7118 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
7119 are filled in with the info of the DIE from the DWO file.
685af9cd
TT
7120 *RESULT_DWO_ABBREV_TABLE will be filled in with the abbrev table allocated
7121 from the dwo. Since *RESULT_READER references this abbrev table, it must be
7122 kept around for at least as long as *RESULT_READER.
7123
b0c7bfa9
DE
7124 The result is non-zero if a valid (non-dummy) DIE was found. */
7125
7126static int
7127read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
7128 struct dwo_unit *dwo_unit,
b0c7bfa9 7129 struct die_info *stub_comp_unit_die,
a2ce51a0 7130 const char *stub_comp_dir,
b0c7bfa9 7131 struct die_reader_specs *result_reader,
d521ce57 7132 const gdb_byte **result_info_ptr,
b0c7bfa9 7133 struct die_info **result_comp_unit_die,
685af9cd
TT
7134 int *result_has_children,
7135 abbrev_table_up *result_dwo_abbrev_table)
b0c7bfa9 7136{
ed2dc618 7137 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
b0c7bfa9
DE
7138 struct objfile *objfile = dwarf2_per_objfile->objfile;
7139 struct dwarf2_cu *cu = this_cu->cu;
b0c7bfa9 7140 bfd *abfd;
d521ce57 7141 const gdb_byte *begin_info_ptr, *info_ptr;
b0c7bfa9
DE
7142 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
7143 int i,num_extra_attrs;
7144 struct dwarf2_section_info *dwo_abbrev_section;
7145 struct attribute *attr;
7146 struct die_info *comp_unit_die;
7147
b0aeadb3
DE
7148 /* At most one of these may be provided. */
7149 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
a2ce51a0 7150
b0c7bfa9
DE
7151 /* These attributes aren't processed until later:
7152 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
0d60c288
DE
7153 DW_AT_comp_dir is used now, to find the DWO file, but it is also
7154 referenced later. However, these attributes are found in the stub
7155 which we won't have later. In order to not impose this complication
7156 on the rest of the code, we read them here and copy them to the
7157 DWO CU/TU die. */
b0c7bfa9
DE
7158
7159 stmt_list = NULL;
7160 low_pc = NULL;
7161 high_pc = NULL;
7162 ranges = NULL;
7163 comp_dir = NULL;
7164
7165 if (stub_comp_unit_die != NULL)
7166 {
7167 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
7168 DWO file. */
7169 if (! this_cu->is_debug_types)
7170 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
7171 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
7172 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
7173 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
7174 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
7175
7176 /* There should be a DW_AT_addr_base attribute here (if needed).
336d760d
AT
7177 We need the value before we can process DW_FORM_GNU_addr_index
7178 or DW_FORM_addrx. */
b0c7bfa9
DE
7179 cu->addr_base = 0;
7180 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
7181 if (attr)
7182 cu->addr_base = DW_UNSND (attr);
7183
7184 /* There should be a DW_AT_ranges_base attribute here (if needed).
7185 We need the value before we can process DW_AT_ranges. */
7186 cu->ranges_base = 0;
7187 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
7188 if (attr)
7189 cu->ranges_base = DW_UNSND (attr);
7190 }
a2ce51a0
DE
7191 else if (stub_comp_dir != NULL)
7192 {
7193 /* Reconstruct the comp_dir attribute to simplify the code below. */
8d749320 7194 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
a2ce51a0
DE
7195 comp_dir->name = DW_AT_comp_dir;
7196 comp_dir->form = DW_FORM_string;
7197 DW_STRING_IS_CANONICAL (comp_dir) = 0;
7198 DW_STRING (comp_dir) = stub_comp_dir;
7199 }
b0c7bfa9
DE
7200
7201 /* Set up for reading the DWO CU/TU. */
7202 cu->dwo_unit = dwo_unit;
685af9cd 7203 dwarf2_section_info *section = dwo_unit->section;
b0c7bfa9 7204 dwarf2_read_section (objfile, section);
a32a8923 7205 abfd = get_section_bfd_owner (section);
9c541725
PA
7206 begin_info_ptr = info_ptr = (section->buffer
7207 + to_underlying (dwo_unit->sect_off));
b0c7bfa9 7208 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
b0c7bfa9
DE
7209
7210 if (this_cu->is_debug_types)
7211 {
b0c7bfa9
DE
7212 struct signatured_type *sig_type = (struct signatured_type *) this_cu;
7213
ed2dc618
SM
7214 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7215 &cu->header, section,
b0c7bfa9 7216 dwo_abbrev_section,
43988095 7217 info_ptr, rcuh_kind::TYPE);
a2ce51a0 7218 /* This is not an assert because it can be caused by bad debug info. */
43988095 7219 if (sig_type->signature != cu->header.signature)
a2ce51a0
DE
7220 {
7221 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
9d8780f0 7222 " TU at offset %s [in module %s]"),
a2ce51a0 7223 hex_string (sig_type->signature),
43988095 7224 hex_string (cu->header.signature),
9d8780f0 7225 sect_offset_str (dwo_unit->sect_off),
a2ce51a0
DE
7226 bfd_get_filename (abfd));
7227 }
9c541725 7228 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
7229 /* For DWOs coming from DWP files, we don't know the CU length
7230 nor the type's offset in the TU until now. */
7231 dwo_unit->length = get_cu_length (&cu->header);
9c541725 7232 dwo_unit->type_offset_in_tu = cu->header.type_cu_offset_in_tu;
b0c7bfa9
DE
7233
7234 /* Establish the type offset that can be used to lookup the type.
7235 For DWO files, we don't know it until now. */
9c541725
PA
7236 sig_type->type_offset_in_section
7237 = dwo_unit->sect_off + to_underlying (dwo_unit->type_offset_in_tu);
b0c7bfa9
DE
7238 }
7239 else
7240 {
ed2dc618
SM
7241 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7242 &cu->header, section,
b0c7bfa9 7243 dwo_abbrev_section,
43988095 7244 info_ptr, rcuh_kind::COMPILE);
9c541725 7245 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
7246 /* For DWOs coming from DWP files, we don't know the CU length
7247 until now. */
7248 dwo_unit->length = get_cu_length (&cu->header);
7249 }
7250
685af9cd
TT
7251 *result_dwo_abbrev_table
7252 = abbrev_table_read_table (dwarf2_per_objfile, dwo_abbrev_section,
7253 cu->header.abbrev_sect_off);
7254 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file,
7255 result_dwo_abbrev_table->get ());
b0c7bfa9
DE
7256
7257 /* Read in the die, but leave space to copy over the attributes
7258 from the stub. This has the benefit of simplifying the rest of
7259 the code - all the work to maintain the illusion of a single
7260 DW_TAG_{compile,type}_unit DIE is done here. */
7261 num_extra_attrs = ((stmt_list != NULL)
7262 + (low_pc != NULL)
7263 + (high_pc != NULL)
7264 + (ranges != NULL)
7265 + (comp_dir != NULL));
7266 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
7267 result_has_children, num_extra_attrs);
7268
7269 /* Copy over the attributes from the stub to the DIE we just read in. */
7270 comp_unit_die = *result_comp_unit_die;
7271 i = comp_unit_die->num_attrs;
7272 if (stmt_list != NULL)
7273 comp_unit_die->attrs[i++] = *stmt_list;
7274 if (low_pc != NULL)
7275 comp_unit_die->attrs[i++] = *low_pc;
7276 if (high_pc != NULL)
7277 comp_unit_die->attrs[i++] = *high_pc;
7278 if (ranges != NULL)
7279 comp_unit_die->attrs[i++] = *ranges;
7280 if (comp_dir != NULL)
7281 comp_unit_die->attrs[i++] = *comp_dir;
7282 comp_unit_die->num_attrs += num_extra_attrs;
7283
b4f54984 7284 if (dwarf_die_debug)
bf6af496
DE
7285 {
7286 fprintf_unfiltered (gdb_stdlog,
7287 "Read die from %s@0x%x of %s:\n",
a32a8923 7288 get_section_name (section),
bf6af496
DE
7289 (unsigned) (begin_info_ptr - section->buffer),
7290 bfd_get_filename (abfd));
b4f54984 7291 dump_die (comp_unit_die, dwarf_die_debug);
bf6af496
DE
7292 }
7293
a2ce51a0
DE
7294 /* Save the comp_dir attribute. If there is no DWP file then we'll read
7295 TUs by skipping the stub and going directly to the entry in the DWO file.
7296 However, skipping the stub means we won't get DW_AT_comp_dir, so we have
7297 to get it via circuitous means. Blech. */
7298 if (comp_dir != NULL)
7299 result_reader->comp_dir = DW_STRING (comp_dir);
7300
b0c7bfa9
DE
7301 /* Skip dummy compilation units. */
7302 if (info_ptr >= begin_info_ptr + dwo_unit->length
7303 || peek_abbrev_code (abfd, info_ptr) == 0)
7304 return 0;
7305
7306 *result_info_ptr = info_ptr;
7307 return 1;
7308}
7309
7310/* Subroutine of init_cutu_and_read_dies to simplify it.
7311 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
6a506a2d 7312 Returns NULL if the specified DWO unit cannot be found. */
b0c7bfa9
DE
7313
7314static struct dwo_unit *
7315lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
7316 struct die_info *comp_unit_die)
7317{
7318 struct dwarf2_cu *cu = this_cu->cu;
b0c7bfa9
DE
7319 ULONGEST signature;
7320 struct dwo_unit *dwo_unit;
7321 const char *comp_dir, *dwo_name;
7322
a2ce51a0
DE
7323 gdb_assert (cu != NULL);
7324
b0c7bfa9 7325 /* Yeah, we look dwo_name up again, but it simplifies the code. */
7d45c7c3
KB
7326 dwo_name = dwarf2_string_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
7327 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
b0c7bfa9
DE
7328
7329 if (this_cu->is_debug_types)
7330 {
7331 struct signatured_type *sig_type;
7332
7333 /* Since this_cu is the first member of struct signatured_type,
7334 we can go from a pointer to one to a pointer to the other. */
7335 sig_type = (struct signatured_type *) this_cu;
7336 signature = sig_type->signature;
7337 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
7338 }
7339 else
7340 {
7341 struct attribute *attr;
7342
7343 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
7344 if (! attr)
7345 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
7346 " [in module %s]"),
e3b94546 7347 dwo_name, objfile_name (this_cu->dwarf2_per_objfile->objfile));
b0c7bfa9
DE
7348 signature = DW_UNSND (attr);
7349 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
7350 signature);
7351 }
7352
b0c7bfa9
DE
7353 return dwo_unit;
7354}
7355
a2ce51a0 7356/* Subroutine of init_cutu_and_read_dies to simplify it.
6aa5f3a6 7357 See it for a description of the parameters.
fcd3b13d 7358 Read a TU directly from a DWO file, bypassing the stub. */
a2ce51a0
DE
7359
7360static void
6aa5f3a6
DE
7361init_tu_and_read_dwo_dies (struct dwarf2_per_cu_data *this_cu,
7362 int use_existing_cu, int keep,
a2ce51a0
DE
7363 die_reader_func_ftype *die_reader_func,
7364 void *data)
7365{
fcd3b13d 7366 std::unique_ptr<dwarf2_cu> new_cu;
a2ce51a0 7367 struct signatured_type *sig_type;
a2ce51a0
DE
7368 struct die_reader_specs reader;
7369 const gdb_byte *info_ptr;
7370 struct die_info *comp_unit_die;
7371 int has_children;
ed2dc618 7372 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
a2ce51a0
DE
7373
7374 /* Verify we can do the following downcast, and that we have the
7375 data we need. */
7376 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
7377 sig_type = (struct signatured_type *) this_cu;
7378 gdb_assert (sig_type->dwo_unit != NULL);
7379
6aa5f3a6
DE
7380 if (use_existing_cu && this_cu->cu != NULL)
7381 {
7382 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
6aa5f3a6
DE
7383 /* There's no need to do the rereading_dwo_cu handling that
7384 init_cutu_and_read_dies does since we don't read the stub. */
7385 }
7386 else
7387 {
7388 /* If !use_existing_cu, this_cu->cu must be NULL. */
7389 gdb_assert (this_cu->cu == NULL);
fcd3b13d 7390 new_cu.reset (new dwarf2_cu (this_cu));
6aa5f3a6
DE
7391 }
7392
7393 /* A future optimization, if needed, would be to use an existing
7394 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
7395 could share abbrev tables. */
a2ce51a0 7396
685af9cd
TT
7397 /* The abbreviation table used by READER, this must live at least as long as
7398 READER. */
7399 abbrev_table_up dwo_abbrev_table;
7400
a2ce51a0 7401 if (read_cutu_die_from_dwo (this_cu, sig_type->dwo_unit,
a2ce51a0
DE
7402 NULL /* stub_comp_unit_die */,
7403 sig_type->dwo_unit->dwo_file->comp_dir,
7404 &reader, &info_ptr,
685af9cd
TT
7405 &comp_unit_die, &has_children,
7406 &dwo_abbrev_table) == 0)
a2ce51a0
DE
7407 {
7408 /* Dummy die. */
a2ce51a0
DE
7409 return;
7410 }
7411
7412 /* All the "real" work is done here. */
7413 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7414
6aa5f3a6 7415 /* This duplicates the code in init_cutu_and_read_dies,
a2ce51a0
DE
7416 but the alternative is making the latter more complex.
7417 This function is only for the special case of using DWO files directly:
7418 no point in overly complicating the general case just to handle this. */
fcd3b13d 7419 if (new_cu != NULL && keep)
a2ce51a0 7420 {
fcd3b13d
SM
7421 /* Link this CU into read_in_chain. */
7422 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7423 dwarf2_per_objfile->read_in_chain = this_cu;
7424 /* The chain owns it now. */
7425 new_cu.release ();
a2ce51a0 7426 }
a2ce51a0
DE
7427}
7428
fd820528 7429/* Initialize a CU (or TU) and read its DIEs.
3019eac3 7430 If the CU defers to a DWO file, read the DWO file as well.
dee91e82 7431
f4dc4d17
DE
7432 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
7433 Otherwise the table specified in the comp unit header is read in and used.
7434 This is an optimization for when we already have the abbrev table.
7435
dee91e82
DE
7436 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
7437 Otherwise, a new CU is allocated with xmalloc.
7438
7439 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
7440 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
7441
7442 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
fd820528 7443 linker) then DIE_READER_FUNC will not get called. */
aaa75496 7444
70221824 7445static void
fd820528 7446init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
f4dc4d17 7447 struct abbrev_table *abbrev_table,
fd820528 7448 int use_existing_cu, int keep,
58f0c718 7449 bool skip_partial,
fd820528
DE
7450 die_reader_func_ftype *die_reader_func,
7451 void *data)
c906108c 7452{
ed2dc618 7453 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
dee91e82 7454 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 7455 struct dwarf2_section_info *section = this_cu->section;
a32a8923 7456 bfd *abfd = get_section_bfd_owner (section);
dee91e82 7457 struct dwarf2_cu *cu;
d521ce57 7458 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7459 struct die_reader_specs reader;
d85a05f0 7460 struct die_info *comp_unit_die;
dee91e82 7461 int has_children;
d85a05f0 7462 struct attribute *attr;
dee91e82 7463 struct signatured_type *sig_type = NULL;
4bdcc0c1 7464 struct dwarf2_section_info *abbrev_section;
42e7ad6c
DE
7465 /* Non-zero if CU currently points to a DWO file and we need to
7466 reread it. When this happens we need to reread the skeleton die
a2ce51a0 7467 before we can reread the DWO file (this only applies to CUs, not TUs). */
42e7ad6c 7468 int rereading_dwo_cu = 0;
c906108c 7469
b4f54984 7470 if (dwarf_die_debug)
9d8780f0 7471 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7472 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7473 sect_offset_str (this_cu->sect_off));
09406207 7474
dee91e82
DE
7475 if (use_existing_cu)
7476 gdb_assert (keep);
23745b47 7477
a2ce51a0
DE
7478 /* If we're reading a TU directly from a DWO file, including a virtual DWO
7479 file (instead of going through the stub), short-circuit all of this. */
7480 if (this_cu->reading_dwo_directly)
7481 {
7482 /* Narrow down the scope of possibilities to have to understand. */
7483 gdb_assert (this_cu->is_debug_types);
7484 gdb_assert (abbrev_table == NULL);
6aa5f3a6
DE
7485 init_tu_and_read_dwo_dies (this_cu, use_existing_cu, keep,
7486 die_reader_func, data);
a2ce51a0
DE
7487 return;
7488 }
7489
dee91e82
DE
7490 /* This is cheap if the section is already read in. */
7491 dwarf2_read_section (objfile, section);
7492
9c541725 7493 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
36586728
TT
7494
7495 abbrev_section = get_abbrev_section_for_cu (this_cu);
dee91e82 7496
fcd3b13d 7497 std::unique_ptr<dwarf2_cu> new_cu;
dee91e82
DE
7498 if (use_existing_cu && this_cu->cu != NULL)
7499 {
7500 cu = this_cu->cu;
42e7ad6c
DE
7501 /* If this CU is from a DWO file we need to start over, we need to
7502 refetch the attributes from the skeleton CU.
7503 This could be optimized by retrieving those attributes from when we
7504 were here the first time: the previous comp_unit_die was stored in
7505 comp_unit_obstack. But there's no data yet that we need this
7506 optimization. */
7507 if (cu->dwo_unit != NULL)
7508 rereading_dwo_cu = 1;
dee91e82
DE
7509 }
7510 else
7511 {
7512 /* If !use_existing_cu, this_cu->cu must be NULL. */
7513 gdb_assert (this_cu->cu == NULL);
fcd3b13d
SM
7514 new_cu.reset (new dwarf2_cu (this_cu));
7515 cu = new_cu.get ();
42e7ad6c 7516 }
dee91e82 7517
b0c7bfa9 7518 /* Get the header. */
9c541725 7519 if (to_underlying (cu->header.first_die_cu_offset) != 0 && !rereading_dwo_cu)
42e7ad6c
DE
7520 {
7521 /* We already have the header, there's no need to read it in again. */
9c541725 7522 info_ptr += to_underlying (cu->header.first_die_cu_offset);
42e7ad6c
DE
7523 }
7524 else
7525 {
3019eac3 7526 if (this_cu->is_debug_types)
dee91e82 7527 {
ed2dc618
SM
7528 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7529 &cu->header, section,
4bdcc0c1 7530 abbrev_section, info_ptr,
43988095 7531 rcuh_kind::TYPE);
dee91e82 7532
42e7ad6c
DE
7533 /* Since per_cu is the first member of struct signatured_type,
7534 we can go from a pointer to one to a pointer to the other. */
7535 sig_type = (struct signatured_type *) this_cu;
43988095 7536 gdb_assert (sig_type->signature == cu->header.signature);
9c541725
PA
7537 gdb_assert (sig_type->type_offset_in_tu
7538 == cu->header.type_cu_offset_in_tu);
7539 gdb_assert (this_cu->sect_off == cu->header.sect_off);
dee91e82 7540
42e7ad6c
DE
7541 /* LENGTH has not been set yet for type units if we're
7542 using .gdb_index. */
1ce1cefd 7543 this_cu->length = get_cu_length (&cu->header);
3019eac3
DE
7544
7545 /* Establish the type offset that can be used to lookup the type. */
9c541725
PA
7546 sig_type->type_offset_in_section =
7547 this_cu->sect_off + to_underlying (sig_type->type_offset_in_tu);
43988095
JK
7548
7549 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7550 }
7551 else
7552 {
ed2dc618
SM
7553 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7554 &cu->header, section,
4bdcc0c1 7555 abbrev_section,
43988095
JK
7556 info_ptr,
7557 rcuh_kind::COMPILE);
dee91e82 7558
9c541725 7559 gdb_assert (this_cu->sect_off == cu->header.sect_off);
1ce1cefd 7560 gdb_assert (this_cu->length == get_cu_length (&cu->header));
43988095 7561 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7562 }
7563 }
10b3939b 7564
6caca83c 7565 /* Skip dummy compilation units. */
dee91e82 7566 if (info_ptr >= begin_info_ptr + this_cu->length
6caca83c 7567 || peek_abbrev_code (abfd, info_ptr) == 0)
fcd3b13d 7568 return;
6caca83c 7569
433df2d4
DE
7570 /* If we don't have them yet, read the abbrevs for this compilation unit.
7571 And if we need to read them now, make sure they're freed when we're
685af9cd
TT
7572 done (own the table through ABBREV_TABLE_HOLDER). */
7573 abbrev_table_up abbrev_table_holder;
f4dc4d17 7574 if (abbrev_table != NULL)
685af9cd
TT
7575 gdb_assert (cu->header.abbrev_sect_off == abbrev_table->sect_off);
7576 else
f4dc4d17 7577 {
685af9cd
TT
7578 abbrev_table_holder
7579 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7580 cu->header.abbrev_sect_off);
7581 abbrev_table = abbrev_table_holder.get ();
42e7ad6c 7582 }
af703f96 7583
dee91e82 7584 /* Read the top level CU/TU die. */
685af9cd 7585 init_cu_die_reader (&reader, cu, section, NULL, abbrev_table);
dee91e82 7586 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
93311388 7587
58f0c718
TT
7588 if (skip_partial && comp_unit_die->tag == DW_TAG_partial_unit)
7589 return;
7590
b0c7bfa9 7591 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
685af9cd
TT
7592 from the DWO file. read_cutu_die_from_dwo will allocate the abbreviation
7593 table from the DWO file and pass the ownership over to us. It will be
7594 referenced from READER, so we must make sure to free it after we're done
7595 with READER.
7596
b0c7bfa9
DE
7597 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
7598 DWO CU, that this test will fail (the attribute will not be present). */
3019eac3 7599 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
685af9cd 7600 abbrev_table_up dwo_abbrev_table;
3019eac3
DE
7601 if (attr)
7602 {
3019eac3 7603 struct dwo_unit *dwo_unit;
b0c7bfa9 7604 struct die_info *dwo_comp_unit_die;
3019eac3
DE
7605
7606 if (has_children)
6a506a2d 7607 {
b98664d3 7608 complaint (_("compilation unit with DW_AT_GNU_dwo_name"
9d8780f0
SM
7609 " has children (offset %s) [in module %s]"),
7610 sect_offset_str (this_cu->sect_off),
7611 bfd_get_filename (abfd));
6a506a2d 7612 }
b0c7bfa9 7613 dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
6a506a2d 7614 if (dwo_unit != NULL)
3019eac3 7615 {
6a506a2d 7616 if (read_cutu_die_from_dwo (this_cu, dwo_unit,
a2ce51a0 7617 comp_unit_die, NULL,
6a506a2d 7618 &reader, &info_ptr,
685af9cd
TT
7619 &dwo_comp_unit_die, &has_children,
7620 &dwo_abbrev_table) == 0)
6a506a2d
DE
7621 {
7622 /* Dummy die. */
6a506a2d
DE
7623 return;
7624 }
7625 comp_unit_die = dwo_comp_unit_die;
7626 }
7627 else
7628 {
7629 /* Yikes, we couldn't find the rest of the DIE, we only have
7630 the stub. A complaint has already been logged. There's
7631 not much more we can do except pass on the stub DIE to
7632 die_reader_func. We don't want to throw an error on bad
7633 debug info. */
3019eac3
DE
7634 }
7635 }
7636
b0c7bfa9 7637 /* All of the above is setup for this call. Yikes. */
dee91e82
DE
7638 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7639
b0c7bfa9 7640 /* Done, clean up. */
fcd3b13d 7641 if (new_cu != NULL && keep)
348e048f 7642 {
fcd3b13d
SM
7643 /* Link this CU into read_in_chain. */
7644 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7645 dwarf2_per_objfile->read_in_chain = this_cu;
7646 /* The chain owns it now. */
7647 new_cu.release ();
348e048f 7648 }
dee91e82
DE
7649}
7650
33e80786
DE
7651/* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name if present.
7652 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed
7653 to have already done the lookup to find the DWO file).
dee91e82
DE
7654
7655 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
3019eac3 7656 THIS_CU->is_debug_types, but nothing else.
dee91e82
DE
7657
7658 We fill in THIS_CU->length.
7659
7660 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
7661 linker) then DIE_READER_FUNC will not get called.
7662
7663 THIS_CU->cu is always freed when done.
3019eac3
DE
7664 This is done in order to not leave THIS_CU->cu in a state where we have
7665 to care whether it refers to the "main" CU or the DWO CU. */
dee91e82
DE
7666
7667static void
7668init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
3019eac3 7669 struct dwo_file *dwo_file,
dee91e82
DE
7670 die_reader_func_ftype *die_reader_func,
7671 void *data)
7672{
ed2dc618 7673 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
dee91e82 7674 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 7675 struct dwarf2_section_info *section = this_cu->section;
a32a8923 7676 bfd *abfd = get_section_bfd_owner (section);
33e80786 7677 struct dwarf2_section_info *abbrev_section;
d521ce57 7678 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7679 struct die_reader_specs reader;
dee91e82
DE
7680 struct die_info *comp_unit_die;
7681 int has_children;
7682
b4f54984 7683 if (dwarf_die_debug)
9d8780f0 7684 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7685 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7686 sect_offset_str (this_cu->sect_off));
09406207 7687
dee91e82
DE
7688 gdb_assert (this_cu->cu == NULL);
7689
33e80786
DE
7690 abbrev_section = (dwo_file != NULL
7691 ? &dwo_file->sections.abbrev
7692 : get_abbrev_section_for_cu (this_cu));
7693
dee91e82
DE
7694 /* This is cheap if the section is already read in. */
7695 dwarf2_read_section (objfile, section);
7696
fcd3b13d 7697 struct dwarf2_cu cu (this_cu);
dee91e82 7698
9c541725 7699 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
ed2dc618
SM
7700 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7701 &cu.header, section,
4bdcc0c1 7702 abbrev_section, info_ptr,
43988095
JK
7703 (this_cu->is_debug_types
7704 ? rcuh_kind::TYPE
7705 : rcuh_kind::COMPILE));
dee91e82 7706
1ce1cefd 7707 this_cu->length = get_cu_length (&cu.header);
dee91e82
DE
7708
7709 /* Skip dummy compilation units. */
7710 if (info_ptr >= begin_info_ptr + this_cu->length
7711 || peek_abbrev_code (abfd, info_ptr) == 0)
fcd3b13d 7712 return;
72bf9492 7713
685af9cd
TT
7714 abbrev_table_up abbrev_table
7715 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7716 cu.header.abbrev_sect_off);
dee91e82 7717
685af9cd 7718 init_cu_die_reader (&reader, &cu, section, dwo_file, abbrev_table.get ());
dee91e82
DE
7719 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
7720
7721 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
dee91e82
DE
7722}
7723
3019eac3
DE
7724/* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
7725 does not lookup the specified DWO file.
7726 This cannot be used to read DWO files.
dee91e82
DE
7727
7728 THIS_CU->cu is always freed when done.
3019eac3
DE
7729 This is done in order to not leave THIS_CU->cu in a state where we have
7730 to care whether it refers to the "main" CU or the DWO CU.
7731 We can revisit this if the data shows there's a performance issue. */
dee91e82
DE
7732
7733static void
7734init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
7735 die_reader_func_ftype *die_reader_func,
7736 void *data)
7737{
33e80786 7738 init_cutu_and_read_dies_no_follow (this_cu, NULL, die_reader_func, data);
dee91e82 7739}
0018ea6f
DE
7740\f
7741/* Type Unit Groups.
dee91e82 7742
0018ea6f
DE
7743 Type Unit Groups are a way to collapse the set of all TUs (type units) into
7744 a more manageable set. The grouping is done by DW_AT_stmt_list entry
7745 so that all types coming from the same compilation (.o file) are grouped
7746 together. A future step could be to put the types in the same symtab as
7747 the CU the types ultimately came from. */
ff013f42 7748
f4dc4d17
DE
7749static hashval_t
7750hash_type_unit_group (const void *item)
7751{
9a3c8263
SM
7752 const struct type_unit_group *tu_group
7753 = (const struct type_unit_group *) item;
f4dc4d17 7754
094b34ac 7755 return hash_stmt_list_entry (&tu_group->hash);
f4dc4d17 7756}
348e048f
DE
7757
7758static int
f4dc4d17 7759eq_type_unit_group (const void *item_lhs, const void *item_rhs)
348e048f 7760{
9a3c8263
SM
7761 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
7762 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
348e048f 7763
094b34ac 7764 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
f4dc4d17 7765}
348e048f 7766
f4dc4d17
DE
7767/* Allocate a hash table for type unit groups. */
7768
7769static htab_t
ed2dc618 7770allocate_type_unit_groups_table (struct objfile *objfile)
f4dc4d17
DE
7771{
7772 return htab_create_alloc_ex (3,
7773 hash_type_unit_group,
7774 eq_type_unit_group,
7775 NULL,
ed2dc618 7776 &objfile->objfile_obstack,
f4dc4d17
DE
7777 hashtab_obstack_allocate,
7778 dummy_obstack_deallocate);
7779}
dee91e82 7780
f4dc4d17
DE
7781/* Type units that don't have DW_AT_stmt_list are grouped into their own
7782 partial symtabs. We combine several TUs per psymtab to not let the size
7783 of any one psymtab grow too big. */
7784#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
7785#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
dee91e82 7786
094b34ac 7787/* Helper routine for get_type_unit_group.
f4dc4d17
DE
7788 Create the type_unit_group object used to hold one or more TUs. */
7789
7790static struct type_unit_group *
094b34ac 7791create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
f4dc4d17 7792{
518817b3
SM
7793 struct dwarf2_per_objfile *dwarf2_per_objfile
7794 = cu->per_cu->dwarf2_per_objfile;
f4dc4d17 7795 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 7796 struct dwarf2_per_cu_data *per_cu;
f4dc4d17 7797 struct type_unit_group *tu_group;
f4dc4d17
DE
7798
7799 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7800 struct type_unit_group);
094b34ac 7801 per_cu = &tu_group->per_cu;
518817b3 7802 per_cu->dwarf2_per_objfile = dwarf2_per_objfile;
f4dc4d17 7803
094b34ac
DE
7804 if (dwarf2_per_objfile->using_index)
7805 {
7806 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7807 struct dwarf2_per_cu_quick_data);
094b34ac
DE
7808 }
7809 else
7810 {
9c541725 7811 unsigned int line_offset = to_underlying (line_offset_struct);
094b34ac 7812 struct partial_symtab *pst;
528e1572 7813 std::string name;
094b34ac
DE
7814
7815 /* Give the symtab a useful name for debug purposes. */
7816 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
528e1572
SM
7817 name = string_printf ("<type_units_%d>",
7818 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
094b34ac 7819 else
528e1572 7820 name = string_printf ("<type_units_at_0x%x>", line_offset);
094b34ac 7821
528e1572 7822 pst = create_partial_symtab (per_cu, name.c_str ());
094b34ac 7823 pst->anonymous = 1;
094b34ac 7824 }
f4dc4d17 7825
094b34ac 7826 tu_group->hash.dwo_unit = cu->dwo_unit;
9c541725 7827 tu_group->hash.line_sect_off = line_offset_struct;
f4dc4d17
DE
7828
7829 return tu_group;
7830}
7831
094b34ac
DE
7832/* Look up the type_unit_group for type unit CU, and create it if necessary.
7833 STMT_LIST is a DW_AT_stmt_list attribute. */
f4dc4d17
DE
7834
7835static struct type_unit_group *
ff39bb5e 7836get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
f4dc4d17 7837{
518817b3
SM
7838 struct dwarf2_per_objfile *dwarf2_per_objfile
7839 = cu->per_cu->dwarf2_per_objfile;
f4dc4d17
DE
7840 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
7841 struct type_unit_group *tu_group;
7842 void **slot;
7843 unsigned int line_offset;
7844 struct type_unit_group type_unit_group_for_lookup;
7845
7846 if (dwarf2_per_objfile->type_unit_groups == NULL)
7847 {
7848 dwarf2_per_objfile->type_unit_groups =
ed2dc618 7849 allocate_type_unit_groups_table (dwarf2_per_objfile->objfile);
f4dc4d17
DE
7850 }
7851
7852 /* Do we need to create a new group, or can we use an existing one? */
7853
7854 if (stmt_list)
7855 {
7856 line_offset = DW_UNSND (stmt_list);
7857 ++tu_stats->nr_symtab_sharers;
7858 }
7859 else
7860 {
7861 /* Ugh, no stmt_list. Rare, but we have to handle it.
7862 We can do various things here like create one group per TU or
7863 spread them over multiple groups to split up the expansion work.
7864 To avoid worst case scenarios (too many groups or too large groups)
7865 we, umm, group them in bunches. */
7866 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
7867 | (tu_stats->nr_stmt_less_type_units
7868 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
7869 ++tu_stats->nr_stmt_less_type_units;
7870 }
7871
094b34ac 7872 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
9c541725 7873 type_unit_group_for_lookup.hash.line_sect_off = (sect_offset) line_offset;
f4dc4d17
DE
7874 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
7875 &type_unit_group_for_lookup, INSERT);
7876 if (*slot != NULL)
7877 {
9a3c8263 7878 tu_group = (struct type_unit_group *) *slot;
f4dc4d17
DE
7879 gdb_assert (tu_group != NULL);
7880 }
7881 else
7882 {
9c541725 7883 sect_offset line_offset_struct = (sect_offset) line_offset;
094b34ac 7884 tu_group = create_type_unit_group (cu, line_offset_struct);
f4dc4d17
DE
7885 *slot = tu_group;
7886 ++tu_stats->nr_symtabs;
7887 }
7888
7889 return tu_group;
7890}
0018ea6f
DE
7891\f
7892/* Partial symbol tables. */
7893
7894/* Create a psymtab named NAME and assign it to PER_CU.
7895
7896 The caller must fill in the following details:
7897 dirname, textlow, texthigh. */
7898
7899static struct partial_symtab *
7900create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
7901{
e3b94546 7902 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
0018ea6f
DE
7903 struct partial_symtab *pst;
7904
939652a5 7905 pst = start_psymtab_common (objfile, name, 0);
0018ea6f
DE
7906
7907 pst->psymtabs_addrmap_supported = 1;
7908
7909 /* This is the glue that links PST into GDB's symbol API. */
7910 pst->read_symtab_private = per_cu;
7911 pst->read_symtab = dwarf2_read_symtab;
7912 per_cu->v.psymtab = pst;
7913
7914 return pst;
7915}
7916
b93601f3
TT
7917/* The DATA object passed to process_psymtab_comp_unit_reader has this
7918 type. */
7919
7920struct process_psymtab_comp_unit_data
7921{
7922 /* True if we are reading a DW_TAG_partial_unit. */
7923
7924 int want_partial_unit;
7925
7926 /* The "pretend" language that is used if the CU doesn't declare a
7927 language. */
7928
7929 enum language pretend_language;
7930};
7931
0018ea6f
DE
7932/* die_reader_func for process_psymtab_comp_unit. */
7933
7934static void
7935process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 7936 const gdb_byte *info_ptr,
0018ea6f
DE
7937 struct die_info *comp_unit_die,
7938 int has_children,
7939 void *data)
7940{
7941 struct dwarf2_cu *cu = reader->cu;
518817b3 7942 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 7943 struct gdbarch *gdbarch = get_objfile_arch (objfile);
0018ea6f 7944 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0018ea6f
DE
7945 CORE_ADDR baseaddr;
7946 CORE_ADDR best_lowpc = 0, best_highpc = 0;
7947 struct partial_symtab *pst;
3a2b436a 7948 enum pc_bounds_kind cu_bounds_kind;
0018ea6f 7949 const char *filename;
9a3c8263
SM
7950 struct process_psymtab_comp_unit_data *info
7951 = (struct process_psymtab_comp_unit_data *) data;
0018ea6f 7952
b93601f3 7953 if (comp_unit_die->tag == DW_TAG_partial_unit && !info->want_partial_unit)
0018ea6f
DE
7954 return;
7955
7956 gdb_assert (! per_cu->is_debug_types);
7957
b93601f3 7958 prepare_one_comp_unit (cu, comp_unit_die, info->pretend_language);
0018ea6f 7959
0018ea6f 7960 /* Allocate a new partial symbol table structure. */
7d45c7c3
KB
7961 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
7962 if (filename == NULL)
0018ea6f 7963 filename = "";
0018ea6f
DE
7964
7965 pst = create_partial_symtab (per_cu, filename);
7966
7967 /* This must be done before calling dwarf2_build_include_psymtabs. */
7d45c7c3 7968 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
0018ea6f
DE
7969
7970 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7971
7972 dwarf2_find_base_address (comp_unit_die, cu);
7973
7974 /* Possibly set the default values of LOWPC and HIGHPC from
7975 `DW_AT_ranges'. */
3a2b436a
JK
7976 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
7977 &best_highpc, cu, pst);
7978 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
79748972
TT
7979 {
7980 CORE_ADDR low
7981 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr)
7982 - baseaddr);
7983 CORE_ADDR high
7984 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr)
7985 - baseaddr - 1);
7986 /* Store the contiguous range if it is not empty; it can be
7987 empty for CUs with no code. */
d320c2b5
TT
7988 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
7989 low, high, pst);
79748972 7990 }
0018ea6f
DE
7991
7992 /* Check if comp unit has_children.
7993 If so, read the rest of the partial symbols from this comp unit.
7994 If not, there's no more debug_info for this comp unit. */
7995 if (has_children)
7996 {
7997 struct partial_die_info *first_die;
7998 CORE_ADDR lowpc, highpc;
7999
8000 lowpc = ((CORE_ADDR) -1);
8001 highpc = ((CORE_ADDR) 0);
8002
8003 first_die = load_partial_dies (reader, info_ptr, 1);
8004
8005 scan_partial_symbols (first_die, &lowpc, &highpc,
e385593e 8006 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
0018ea6f
DE
8007
8008 /* If we didn't find a lowpc, set it to highpc to avoid
8009 complaints from `maint check'. */
8010 if (lowpc == ((CORE_ADDR) -1))
8011 lowpc = highpc;
8012
8013 /* If the compilation unit didn't have an explicit address range,
8014 then use the information extracted from its child dies. */
e385593e 8015 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
0018ea6f
DE
8016 {
8017 best_lowpc = lowpc;
8018 best_highpc = highpc;
8019 }
8020 }
4ae976d1 8021 pst->set_text_low (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
8022 best_lowpc + baseaddr)
8023 - baseaddr);
4ae976d1 8024 pst->set_text_high (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
8025 best_highpc + baseaddr)
8026 - baseaddr);
0018ea6f 8027
8763cede 8028 end_psymtab_common (objfile, pst);
0018ea6f
DE
8029
8030 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
8031 {
8032 int i;
8033 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8034 struct dwarf2_per_cu_data *iter;
8035
8036 /* Fill in 'dependencies' here; we fill in 'users' in a
8037 post-pass. */
8038 pst->number_of_dependencies = len;
a9342b62
TT
8039 pst->dependencies
8040 = objfile->partial_symtabs->allocate_dependencies (len);
0018ea6f
DE
8041 for (i = 0;
8042 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
8043 i, iter);
8044 ++i)
8045 pst->dependencies[i] = iter->v.psymtab;
8046
8047 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8048 }
8049
8050 /* Get the list of files included in the current compilation unit,
8051 and build a psymtab for each of them. */
8052 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
8053
b4f54984 8054 if (dwarf_read_debug)
b926417a
TT
8055 fprintf_unfiltered (gdb_stdlog,
8056 "Psymtab for %s unit @%s: %s - %s"
8057 ", %d global, %d static syms\n",
8058 per_cu->is_debug_types ? "type" : "comp",
8059 sect_offset_str (per_cu->sect_off),
8060 paddress (gdbarch, pst->text_low (objfile)),
8061 paddress (gdbarch, pst->text_high (objfile)),
8062 pst->n_global_syms, pst->n_static_syms);
0018ea6f
DE
8063}
8064
8065/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8066 Process compilation unit THIS_CU for a psymtab. */
8067
8068static void
8069process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
b93601f3
TT
8070 int want_partial_unit,
8071 enum language pretend_language)
0018ea6f
DE
8072{
8073 /* If this compilation unit was already read in, free the
8074 cached copy in order to read it in again. This is
8075 necessary because we skipped some symbols when we first
8076 read in the compilation unit (see load_partial_dies).
8077 This problem could be avoided, but the benefit is unclear. */
8078 if (this_cu->cu != NULL)
8079 free_one_cached_comp_unit (this_cu);
8080
f1902523 8081 if (this_cu->is_debug_types)
58f0c718
TT
8082 init_cutu_and_read_dies (this_cu, NULL, 0, 0, false,
8083 build_type_psymtabs_reader, NULL);
f1902523
JK
8084 else
8085 {
8086 process_psymtab_comp_unit_data info;
8087 info.want_partial_unit = want_partial_unit;
8088 info.pretend_language = pretend_language;
58f0c718 8089 init_cutu_and_read_dies (this_cu, NULL, 0, 0, false,
f1902523
JK
8090 process_psymtab_comp_unit_reader, &info);
8091 }
0018ea6f
DE
8092
8093 /* Age out any secondary CUs. */
ed2dc618 8094 age_cached_comp_units (this_cu->dwarf2_per_objfile);
0018ea6f 8095}
f4dc4d17
DE
8096
8097/* Reader function for build_type_psymtabs. */
8098
8099static void
8100build_type_psymtabs_reader (const struct die_reader_specs *reader,
d521ce57 8101 const gdb_byte *info_ptr,
f4dc4d17
DE
8102 struct die_info *type_unit_die,
8103 int has_children,
8104 void *data)
8105{
ed2dc618 8106 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 8107 = reader->cu->per_cu->dwarf2_per_objfile;
f4dc4d17
DE
8108 struct objfile *objfile = dwarf2_per_objfile->objfile;
8109 struct dwarf2_cu *cu = reader->cu;
8110 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0186c6a7 8111 struct signatured_type *sig_type;
f4dc4d17
DE
8112 struct type_unit_group *tu_group;
8113 struct attribute *attr;
8114 struct partial_die_info *first_die;
8115 CORE_ADDR lowpc, highpc;
8116 struct partial_symtab *pst;
8117
8118 gdb_assert (data == NULL);
0186c6a7
DE
8119 gdb_assert (per_cu->is_debug_types);
8120 sig_type = (struct signatured_type *) per_cu;
f4dc4d17
DE
8121
8122 if (! has_children)
8123 return;
8124
8125 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
094b34ac 8126 tu_group = get_type_unit_group (cu, attr);
f4dc4d17 8127
0186c6a7 8128 VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
f4dc4d17
DE
8129
8130 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
f4dc4d17
DE
8131 pst = create_partial_symtab (per_cu, "");
8132 pst->anonymous = 1;
8133
8134 first_die = load_partial_dies (reader, info_ptr, 1);
8135
8136 lowpc = (CORE_ADDR) -1;
8137 highpc = (CORE_ADDR) 0;
8138 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
8139
8763cede 8140 end_psymtab_common (objfile, pst);
f4dc4d17
DE
8141}
8142
73051182
DE
8143/* Struct used to sort TUs by their abbreviation table offset. */
8144
8145struct tu_abbrev_offset
8146{
b2bdb8cf
SM
8147 tu_abbrev_offset (signatured_type *sig_type_, sect_offset abbrev_offset_)
8148 : sig_type (sig_type_), abbrev_offset (abbrev_offset_)
8149 {}
8150
8151 signatured_type *sig_type;
73051182
DE
8152 sect_offset abbrev_offset;
8153};
8154
484cf504 8155/* Helper routine for build_type_psymtabs_1, passed to std::sort. */
73051182 8156
484cf504
TT
8157static bool
8158sort_tu_by_abbrev_offset (const struct tu_abbrev_offset &a,
8159 const struct tu_abbrev_offset &b)
73051182 8160{
484cf504 8161 return a.abbrev_offset < b.abbrev_offset;
73051182
DE
8162}
8163
8164/* Efficiently read all the type units.
8165 This does the bulk of the work for build_type_psymtabs.
8166
8167 The efficiency is because we sort TUs by the abbrev table they use and
8168 only read each abbrev table once. In one program there are 200K TUs
8169 sharing 8K abbrev tables.
8170
8171 The main purpose of this function is to support building the
8172 dwarf2_per_objfile->type_unit_groups table.
8173 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
8174 can collapse the search space by grouping them by stmt_list.
8175 The savings can be significant, in the same program from above the 200K TUs
8176 share 8K stmt_list tables.
8177
8178 FUNC is expected to call get_type_unit_group, which will create the
8179 struct type_unit_group if necessary and add it to
8180 dwarf2_per_objfile->type_unit_groups. */
8181
8182static void
ed2dc618 8183build_type_psymtabs_1 (struct dwarf2_per_objfile *dwarf2_per_objfile)
73051182 8184{
73051182 8185 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
685af9cd 8186 abbrev_table_up abbrev_table;
73051182 8187 sect_offset abbrev_offset;
73051182
DE
8188
8189 /* It's up to the caller to not call us multiple times. */
8190 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
8191
b2bdb8cf 8192 if (dwarf2_per_objfile->all_type_units.empty ())
73051182
DE
8193 return;
8194
8195 /* TUs typically share abbrev tables, and there can be way more TUs than
8196 abbrev tables. Sort by abbrev table to reduce the number of times we
8197 read each abbrev table in.
8198 Alternatives are to punt or to maintain a cache of abbrev tables.
8199 This is simpler and efficient enough for now.
8200
8201 Later we group TUs by their DW_AT_stmt_list value (as this defines the
8202 symtab to use). Typically TUs with the same abbrev offset have the same
8203 stmt_list value too so in practice this should work well.
8204
8205 The basic algorithm here is:
8206
8207 sort TUs by abbrev table
8208 for each TU with same abbrev table:
8209 read abbrev table if first user
8210 read TU top level DIE
8211 [IWBN if DWO skeletons had DW_AT_stmt_list]
8212 call FUNC */
8213
b4f54984 8214 if (dwarf_read_debug)
73051182
DE
8215 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
8216
8217 /* Sort in a separate table to maintain the order of all_type_units
8218 for .gdb_index: TU indices directly index all_type_units. */
b2bdb8cf
SM
8219 std::vector<tu_abbrev_offset> sorted_by_abbrev;
8220 sorted_by_abbrev.reserve (dwarf2_per_objfile->all_type_units.size ());
8221
8222 for (signatured_type *sig_type : dwarf2_per_objfile->all_type_units)
8223 sorted_by_abbrev.emplace_back
8224 (sig_type, read_abbrev_offset (dwarf2_per_objfile,
8225 sig_type->per_cu.section,
8226 sig_type->per_cu.sect_off));
73051182 8227
484cf504
TT
8228 std::sort (sorted_by_abbrev.begin (), sorted_by_abbrev.end (),
8229 sort_tu_by_abbrev_offset);
73051182 8230
9c541725 8231 abbrev_offset = (sect_offset) ~(unsigned) 0;
73051182 8232
b2bdb8cf 8233 for (const tu_abbrev_offset &tu : sorted_by_abbrev)
73051182 8234 {
73051182
DE
8235 /* Switch to the next abbrev table if necessary. */
8236 if (abbrev_table == NULL
b2bdb8cf 8237 || tu.abbrev_offset != abbrev_offset)
73051182 8238 {
b2bdb8cf 8239 abbrev_offset = tu.abbrev_offset;
73051182 8240 abbrev_table =
ed2dc618
SM
8241 abbrev_table_read_table (dwarf2_per_objfile,
8242 &dwarf2_per_objfile->abbrev,
73051182
DE
8243 abbrev_offset);
8244 ++tu_stats->nr_uniq_abbrev_tables;
8245 }
8246
b2bdb8cf 8247 init_cutu_and_read_dies (&tu.sig_type->per_cu, abbrev_table.get (),
58f0c718 8248 0, 0, false, build_type_psymtabs_reader, NULL);
73051182 8249 }
6aa5f3a6 8250}
73051182 8251
6aa5f3a6
DE
8252/* Print collected type unit statistics. */
8253
8254static void
ed2dc618 8255print_tu_stats (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6
DE
8256{
8257 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
8258
8259 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
b2bdb8cf
SM
8260 fprintf_unfiltered (gdb_stdlog, " %zu TUs\n",
8261 dwarf2_per_objfile->all_type_units.size ());
6aa5f3a6
DE
8262 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
8263 tu_stats->nr_uniq_abbrev_tables);
8264 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
8265 tu_stats->nr_symtabs);
8266 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
8267 tu_stats->nr_symtab_sharers);
8268 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
8269 tu_stats->nr_stmt_less_type_units);
8270 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
8271 tu_stats->nr_all_type_units_reallocs);
73051182
DE
8272}
8273
f4dc4d17
DE
8274/* Traversal function for build_type_psymtabs. */
8275
8276static int
8277build_type_psymtab_dependencies (void **slot, void *info)
8278{
ed2dc618
SM
8279 struct dwarf2_per_objfile *dwarf2_per_objfile
8280 = (struct dwarf2_per_objfile *) info;
f4dc4d17
DE
8281 struct objfile *objfile = dwarf2_per_objfile->objfile;
8282 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
094b34ac 8283 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
f4dc4d17 8284 struct partial_symtab *pst = per_cu->v.psymtab;
0186c6a7
DE
8285 int len = VEC_length (sig_type_ptr, tu_group->tus);
8286 struct signatured_type *iter;
f4dc4d17
DE
8287 int i;
8288
8289 gdb_assert (len > 0);
0186c6a7 8290 gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
f4dc4d17
DE
8291
8292 pst->number_of_dependencies = len;
a9342b62 8293 pst->dependencies = objfile->partial_symtabs->allocate_dependencies (len);
f4dc4d17 8294 for (i = 0;
0186c6a7 8295 VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
f4dc4d17
DE
8296 ++i)
8297 {
0186c6a7
DE
8298 gdb_assert (iter->per_cu.is_debug_types);
8299 pst->dependencies[i] = iter->per_cu.v.psymtab;
796a7ff8 8300 iter->type_unit_group = tu_group;
f4dc4d17
DE
8301 }
8302
0186c6a7 8303 VEC_free (sig_type_ptr, tu_group->tus);
348e048f
DE
8304
8305 return 1;
8306}
8307
8308/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8309 Build partial symbol tables for the .debug_types comp-units. */
8310
8311static void
ed2dc618 8312build_type_psymtabs (struct dwarf2_per_objfile *dwarf2_per_objfile)
348e048f 8313{
ed2dc618 8314 if (! create_all_type_units (dwarf2_per_objfile))
348e048f
DE
8315 return;
8316
ed2dc618 8317 build_type_psymtabs_1 (dwarf2_per_objfile);
6aa5f3a6 8318}
f4dc4d17 8319
6aa5f3a6
DE
8320/* Traversal function for process_skeletonless_type_unit.
8321 Read a TU in a DWO file and build partial symbols for it. */
8322
8323static int
8324process_skeletonless_type_unit (void **slot, void *info)
8325{
8326 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
ed2dc618
SM
8327 struct dwarf2_per_objfile *dwarf2_per_objfile
8328 = (struct dwarf2_per_objfile *) info;
6aa5f3a6
DE
8329 struct signatured_type find_entry, *entry;
8330
8331 /* If this TU doesn't exist in the global table, add it and read it in. */
8332
8333 if (dwarf2_per_objfile->signatured_types == NULL)
8334 {
8335 dwarf2_per_objfile->signatured_types
ed2dc618 8336 = allocate_signatured_type_table (dwarf2_per_objfile->objfile);
6aa5f3a6
DE
8337 }
8338
8339 find_entry.signature = dwo_unit->signature;
8340 slot = htab_find_slot (dwarf2_per_objfile->signatured_types, &find_entry,
8341 INSERT);
8342 /* If we've already seen this type there's nothing to do. What's happening
8343 is we're doing our own version of comdat-folding here. */
8344 if (*slot != NULL)
8345 return 1;
8346
8347 /* This does the job that create_all_type_units would have done for
8348 this TU. */
ed2dc618
SM
8349 entry = add_type_unit (dwarf2_per_objfile, dwo_unit->signature, slot);
8350 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, entry, dwo_unit);
6aa5f3a6
DE
8351 *slot = entry;
8352
8353 /* This does the job that build_type_psymtabs_1 would have done. */
58f0c718 8354 init_cutu_and_read_dies (&entry->per_cu, NULL, 0, 0, false,
6aa5f3a6
DE
8355 build_type_psymtabs_reader, NULL);
8356
8357 return 1;
8358}
8359
8360/* Traversal function for process_skeletonless_type_units. */
8361
8362static int
8363process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
8364{
8365 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
8366
8367 if (dwo_file->tus != NULL)
8368 {
8369 htab_traverse_noresize (dwo_file->tus,
8370 process_skeletonless_type_unit, info);
8371 }
8372
8373 return 1;
8374}
8375
8376/* Scan all TUs of DWO files, verifying we've processed them.
8377 This is needed in case a TU was emitted without its skeleton.
8378 Note: This can't be done until we know what all the DWO files are. */
8379
8380static void
ed2dc618 8381process_skeletonless_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6
DE
8382{
8383 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
ed2dc618 8384 if (get_dwp_file (dwarf2_per_objfile) == NULL
6aa5f3a6
DE
8385 && dwarf2_per_objfile->dwo_files != NULL)
8386 {
51ac9db5 8387 htab_traverse_noresize (dwarf2_per_objfile->dwo_files.get (),
6aa5f3a6 8388 process_dwo_file_for_skeletonless_type_units,
ed2dc618 8389 dwarf2_per_objfile);
6aa5f3a6 8390 }
348e048f
DE
8391}
8392
ed2dc618 8393/* Compute the 'user' field for each psymtab in DWARF2_PER_OBJFILE. */
95554aad
TT
8394
8395static void
ed2dc618 8396set_partial_user (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 8397{
b76e467d 8398 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
95554aad 8399 {
95554aad 8400 struct partial_symtab *pst = per_cu->v.psymtab;
95554aad 8401
36586728
TT
8402 if (pst == NULL)
8403 continue;
8404
b76e467d 8405 for (int j = 0; j < pst->number_of_dependencies; ++j)
95554aad
TT
8406 {
8407 /* Set the 'user' field only if it is not already set. */
8408 if (pst->dependencies[j]->user == NULL)
8409 pst->dependencies[j]->user = pst;
8410 }
8411 }
8412}
8413
93311388
DE
8414/* Build the partial symbol table by doing a quick pass through the
8415 .debug_info and .debug_abbrev sections. */
72bf9492 8416
93311388 8417static void
ed2dc618 8418dwarf2_build_psymtabs_hard (struct dwarf2_per_objfile *dwarf2_per_objfile)
93311388 8419{
ed2dc618 8420 struct objfile *objfile = dwarf2_per_objfile->objfile;
93311388 8421
b4f54984 8422 if (dwarf_read_debug)
45cfd468
DE
8423 {
8424 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
4262abfb 8425 objfile_name (objfile));
45cfd468
DE
8426 }
8427
98bfdba5
PA
8428 dwarf2_per_objfile->reading_partial_symbols = 1;
8429
be391dca 8430 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
91c24f0a 8431
93311388
DE
8432 /* Any cached compilation units will be linked by the per-objfile
8433 read_in_chain. Make sure to free them when we're done. */
11ed8cad 8434 free_cached_comp_units freer (dwarf2_per_objfile);
72bf9492 8435
ed2dc618 8436 build_type_psymtabs (dwarf2_per_objfile);
348e048f 8437
ed2dc618 8438 create_all_comp_units (dwarf2_per_objfile);
c906108c 8439
60606b2c
TT
8440 /* Create a temporary address map on a temporary obstack. We later
8441 copy this to the final obstack. */
8268c778 8442 auto_obstack temp_obstack;
791afaa2
TT
8443
8444 scoped_restore save_psymtabs_addrmap
d320c2b5 8445 = make_scoped_restore (&objfile->partial_symtabs->psymtabs_addrmap,
791afaa2 8446 addrmap_create_mutable (&temp_obstack));
72bf9492 8447
b76e467d
SM
8448 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
8449 process_psymtab_comp_unit (per_cu, 0, language_minimal);
ff013f42 8450
6aa5f3a6 8451 /* This has to wait until we read the CUs, we need the list of DWOs. */
ed2dc618 8452 process_skeletonless_type_units (dwarf2_per_objfile);
6aa5f3a6
DE
8453
8454 /* Now that all TUs have been processed we can fill in the dependencies. */
8455 if (dwarf2_per_objfile->type_unit_groups != NULL)
8456 {
8457 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
ed2dc618 8458 build_type_psymtab_dependencies, dwarf2_per_objfile);
6aa5f3a6
DE
8459 }
8460
b4f54984 8461 if (dwarf_read_debug)
ed2dc618 8462 print_tu_stats (dwarf2_per_objfile);
6aa5f3a6 8463
ed2dc618 8464 set_partial_user (dwarf2_per_objfile);
95554aad 8465
d320c2b5
TT
8466 objfile->partial_symtabs->psymtabs_addrmap
8467 = addrmap_create_fixed (objfile->partial_symtabs->psymtabs_addrmap,
5923a04c 8468 objfile->partial_symtabs->obstack ());
791afaa2
TT
8469 /* At this point we want to keep the address map. */
8470 save_psymtabs_addrmap.release ();
ff013f42 8471
b4f54984 8472 if (dwarf_read_debug)
45cfd468 8473 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
4262abfb 8474 objfile_name (objfile));
ae038cb0
DJ
8475}
8476
3019eac3 8477/* die_reader_func for load_partial_comp_unit. */
ae038cb0
DJ
8478
8479static void
dee91e82 8480load_partial_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 8481 const gdb_byte *info_ptr,
dee91e82
DE
8482 struct die_info *comp_unit_die,
8483 int has_children,
8484 void *data)
ae038cb0 8485{
dee91e82 8486 struct dwarf2_cu *cu = reader->cu;
ae038cb0 8487
95554aad 8488 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
ae038cb0 8489
ae038cb0
DJ
8490 /* Check if comp unit has_children.
8491 If so, read the rest of the partial symbols from this comp unit.
0963b4bd 8492 If not, there's no more debug_info for this comp unit. */
d85a05f0 8493 if (has_children)
dee91e82
DE
8494 load_partial_dies (reader, info_ptr, 0);
8495}
98bfdba5 8496
dee91e82
DE
8497/* Load the partial DIEs for a secondary CU into memory.
8498 This is also used when rereading a primary CU with load_all_dies. */
c5b7e1cb 8499
dee91e82
DE
8500static void
8501load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
8502{
58f0c718 8503 init_cutu_and_read_dies (this_cu, NULL, 1, 1, false,
f4dc4d17 8504 load_partial_comp_unit_reader, NULL);
ae038cb0
DJ
8505}
8506
ae038cb0 8507static void
ed2dc618 8508read_comp_units_from_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
36586728 8509 struct dwarf2_section_info *section,
f1902523 8510 struct dwarf2_section_info *abbrev_section,
b76e467d 8511 unsigned int is_dwz)
ae038cb0 8512{
d521ce57 8513 const gdb_byte *info_ptr;
ed2dc618 8514 struct objfile *objfile = dwarf2_per_objfile->objfile;
be391dca 8515
b4f54984 8516 if (dwarf_read_debug)
bf6af496 8517 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
a32a8923
DE
8518 get_section_name (section),
8519 get_section_file_name (section));
bf6af496 8520
36586728 8521 dwarf2_read_section (objfile, section);
ae038cb0 8522
36586728 8523 info_ptr = section->buffer;
6e70227d 8524
36586728 8525 while (info_ptr < section->buffer + section->size)
ae038cb0 8526 {
ae038cb0 8527 struct dwarf2_per_cu_data *this_cu;
ae038cb0 8528
9c541725 8529 sect_offset sect_off = (sect_offset) (info_ptr - section->buffer);
ae038cb0 8530
f1902523 8531 comp_unit_head cu_header;
ed2dc618
SM
8532 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
8533 abbrev_section, info_ptr,
8534 rcuh_kind::COMPILE);
ae038cb0
DJ
8535
8536 /* Save the compilation unit for later lookup. */
f1902523
JK
8537 if (cu_header.unit_type != DW_UT_type)
8538 {
8539 this_cu = XOBNEW (&objfile->objfile_obstack,
8540 struct dwarf2_per_cu_data);
8541 memset (this_cu, 0, sizeof (*this_cu));
8542 }
8543 else
8544 {
8545 auto sig_type = XOBNEW (&objfile->objfile_obstack,
8546 struct signatured_type);
8547 memset (sig_type, 0, sizeof (*sig_type));
8548 sig_type->signature = cu_header.signature;
8549 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
8550 this_cu = &sig_type->per_cu;
8551 }
8552 this_cu->is_debug_types = (cu_header.unit_type == DW_UT_type);
9c541725 8553 this_cu->sect_off = sect_off;
f1902523 8554 this_cu->length = cu_header.length + cu_header.initial_length_size;
36586728 8555 this_cu->is_dwz = is_dwz;
e3b94546 8556 this_cu->dwarf2_per_objfile = dwarf2_per_objfile;
8a0459fd 8557 this_cu->section = section;
ae038cb0 8558
b76e467d 8559 dwarf2_per_objfile->all_comp_units.push_back (this_cu);
ae038cb0
DJ
8560
8561 info_ptr = info_ptr + this_cu->length;
8562 }
36586728
TT
8563}
8564
8565/* Create a list of all compilation units in OBJFILE.
8566 This is only done for -readnow and building partial symtabs. */
8567
8568static void
ed2dc618 8569create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
36586728 8570{
b76e467d 8571 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
ed2dc618 8572 read_comp_units_from_section (dwarf2_per_objfile, &dwarf2_per_objfile->info,
b76e467d 8573 &dwarf2_per_objfile->abbrev, 0);
36586728 8574
b76e467d 8575 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
4db1a1dc 8576 if (dwz != NULL)
ed2dc618 8577 read_comp_units_from_section (dwarf2_per_objfile, &dwz->info, &dwz->abbrev,
b76e467d 8578 1);
c906108c
SS
8579}
8580
5734ee8b 8581/* Process all loaded DIEs for compilation unit CU, starting at
cdc07690 8582 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
5734ee8b 8583 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
cdc07690
YQ
8584 DW_AT_ranges). See the comments of add_partial_subprogram on how
8585 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
c906108c 8586
72bf9492
DJ
8587static void
8588scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
cdc07690
YQ
8589 CORE_ADDR *highpc, int set_addrmap,
8590 struct dwarf2_cu *cu)
c906108c 8591{
72bf9492 8592 struct partial_die_info *pdi;
c906108c 8593
91c24f0a
DC
8594 /* Now, march along the PDI's, descending into ones which have
8595 interesting children but skipping the children of the other ones,
8596 until we reach the end of the compilation unit. */
c906108c 8597
72bf9492 8598 pdi = first_die;
91c24f0a 8599
72bf9492
DJ
8600 while (pdi != NULL)
8601 {
52356b79 8602 pdi->fixup (cu);
c906108c 8603
f55ee35c 8604 /* Anonymous namespaces or modules have no name but have interesting
91c24f0a
DC
8605 children, so we need to look at them. Ditto for anonymous
8606 enums. */
933c6fe4 8607
72bf9492 8608 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
95554aad 8609 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
b1dc1806
XR
8610 || pdi->tag == DW_TAG_imported_unit
8611 || pdi->tag == DW_TAG_inlined_subroutine)
c906108c 8612 {
72bf9492 8613 switch (pdi->tag)
c906108c
SS
8614 {
8615 case DW_TAG_subprogram:
b1dc1806 8616 case DW_TAG_inlined_subroutine:
cdc07690 8617 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
c906108c 8618 break;
72929c62 8619 case DW_TAG_constant:
c906108c
SS
8620 case DW_TAG_variable:
8621 case DW_TAG_typedef:
91c24f0a 8622 case DW_TAG_union_type:
72bf9492 8623 if (!pdi->is_declaration)
63d06c5c 8624 {
72bf9492 8625 add_partial_symbol (pdi, cu);
63d06c5c
DC
8626 }
8627 break;
c906108c 8628 case DW_TAG_class_type:
680b30c7 8629 case DW_TAG_interface_type:
c906108c 8630 case DW_TAG_structure_type:
72bf9492 8631 if (!pdi->is_declaration)
c906108c 8632 {
72bf9492 8633 add_partial_symbol (pdi, cu);
c906108c 8634 }
b7fee5a3
KS
8635 if ((cu->language == language_rust
8636 || cu->language == language_cplus) && pdi->has_children)
e98c9e7c
TT
8637 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8638 set_addrmap, cu);
c906108c 8639 break;
91c24f0a 8640 case DW_TAG_enumeration_type:
72bf9492
DJ
8641 if (!pdi->is_declaration)
8642 add_partial_enumeration (pdi, cu);
c906108c
SS
8643 break;
8644 case DW_TAG_base_type:
a02abb62 8645 case DW_TAG_subrange_type:
c906108c 8646 /* File scope base type definitions are added to the partial
c5aa993b 8647 symbol table. */
72bf9492 8648 add_partial_symbol (pdi, cu);
c906108c 8649 break;
d9fa45fe 8650 case DW_TAG_namespace:
cdc07690 8651 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
91c24f0a 8652 break;
5d7cb8df 8653 case DW_TAG_module:
cdc07690 8654 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
5d7cb8df 8655 break;
95554aad
TT
8656 case DW_TAG_imported_unit:
8657 {
8658 struct dwarf2_per_cu_data *per_cu;
8659
f4dc4d17
DE
8660 /* For now we don't handle imported units in type units. */
8661 if (cu->per_cu->is_debug_types)
8662 {
8663 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8664 " supported in type units [in module %s]"),
518817b3 8665 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
f4dc4d17
DE
8666 }
8667
e3b94546
SM
8668 per_cu = dwarf2_find_containing_comp_unit
8669 (pdi->d.sect_off, pdi->is_dwz,
518817b3 8670 cu->per_cu->dwarf2_per_objfile);
95554aad
TT
8671
8672 /* Go read the partial unit, if needed. */
8673 if (per_cu->v.psymtab == NULL)
b93601f3 8674 process_psymtab_comp_unit (per_cu, 1, cu->language);
95554aad 8675
f4dc4d17 8676 VEC_safe_push (dwarf2_per_cu_ptr,
796a7ff8 8677 cu->per_cu->imported_symtabs, per_cu);
95554aad
TT
8678 }
8679 break;
74921315
KS
8680 case DW_TAG_imported_declaration:
8681 add_partial_symbol (pdi, cu);
8682 break;
c906108c
SS
8683 default:
8684 break;
8685 }
8686 }
8687
72bf9492
DJ
8688 /* If the die has a sibling, skip to the sibling. */
8689
8690 pdi = pdi->die_sibling;
8691 }
8692}
8693
8694/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 8695
72bf9492 8696 Normally, this is simple. For C++, the parent DIE's fully scoped
9c37b5ae 8697 name is concatenated with "::" and the partial DIE's name.
72bf9492
DJ
8698 Enumerators are an exception; they use the scope of their parent
8699 enumeration type, i.e. the name of the enumeration type is not
8700 prepended to the enumerator.
91c24f0a 8701
72bf9492
DJ
8702 There are two complexities. One is DW_AT_specification; in this
8703 case "parent" means the parent of the target of the specification,
8704 instead of the direct parent of the DIE. The other is compilers
8705 which do not emit DW_TAG_namespace; in this case we try to guess
8706 the fully qualified name of structure types from their members'
8707 linkage names. This must be done using the DIE's children rather
8708 than the children of any DW_AT_specification target. We only need
8709 to do this for structures at the top level, i.e. if the target of
8710 any DW_AT_specification (if any; otherwise the DIE itself) does not
8711 have a parent. */
8712
8713/* Compute the scope prefix associated with PDI's parent, in
8714 compilation unit CU. The result will be allocated on CU's
8715 comp_unit_obstack, or a copy of the already allocated PDI->NAME
8716 field. NULL is returned if no prefix is necessary. */
15d034d0 8717static const char *
72bf9492
DJ
8718partial_die_parent_scope (struct partial_die_info *pdi,
8719 struct dwarf2_cu *cu)
8720{
15d034d0 8721 const char *grandparent_scope;
72bf9492 8722 struct partial_die_info *parent, *real_pdi;
91c24f0a 8723
72bf9492
DJ
8724 /* We need to look at our parent DIE; if we have a DW_AT_specification,
8725 then this means the parent of the specification DIE. */
8726
8727 real_pdi = pdi;
72bf9492 8728 while (real_pdi->has_specification)
fb816e8b 8729 {
122cf0f2
AB
8730 auto res = find_partial_die (real_pdi->spec_offset,
8731 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
8732 real_pdi = res.pdi;
8733 cu = res.cu;
8734 }
72bf9492
DJ
8735
8736 parent = real_pdi->die_parent;
8737 if (parent == NULL)
8738 return NULL;
8739
8740 if (parent->scope_set)
8741 return parent->scope;
8742
52356b79 8743 parent->fixup (cu);
72bf9492 8744
10b3939b 8745 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492 8746
acebe513
UW
8747 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
8748 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
8749 Work around this problem here. */
8750 if (cu->language == language_cplus
6e70227d 8751 && parent->tag == DW_TAG_namespace
acebe513
UW
8752 && strcmp (parent->name, "::") == 0
8753 && grandparent_scope == NULL)
8754 {
8755 parent->scope = NULL;
8756 parent->scope_set = 1;
8757 return NULL;
8758 }
8759
9c6c53f7
SA
8760 if (pdi->tag == DW_TAG_enumerator)
8761 /* Enumerators should not get the name of the enumeration as a prefix. */
8762 parent->scope = grandparent_scope;
8763 else if (parent->tag == DW_TAG_namespace
f55ee35c 8764 || parent->tag == DW_TAG_module
72bf9492
DJ
8765 || parent->tag == DW_TAG_structure_type
8766 || parent->tag == DW_TAG_class_type
680b30c7 8767 || parent->tag == DW_TAG_interface_type
ceeb3d5a
TT
8768 || parent->tag == DW_TAG_union_type
8769 || parent->tag == DW_TAG_enumeration_type)
72bf9492
DJ
8770 {
8771 if (grandparent_scope == NULL)
8772 parent->scope = parent->name;
8773 else
3e43a32a
MS
8774 parent->scope = typename_concat (&cu->comp_unit_obstack,
8775 grandparent_scope,
f55ee35c 8776 parent->name, 0, cu);
72bf9492 8777 }
72bf9492
DJ
8778 else
8779 {
8780 /* FIXME drow/2004-04-01: What should we be doing with
8781 function-local names? For partial symbols, we should probably be
8782 ignoring them. */
fa9c3fa0
TT
8783 complaint (_("unhandled containing DIE tag %s for DIE at %s"),
8784 dwarf_tag_name (parent->tag),
8785 sect_offset_str (pdi->sect_off));
72bf9492 8786 parent->scope = grandparent_scope;
c906108c
SS
8787 }
8788
72bf9492
DJ
8789 parent->scope_set = 1;
8790 return parent->scope;
8791}
8792
8793/* Return the fully scoped name associated with PDI, from compilation unit
8794 CU. The result will be allocated with malloc. */
4568ecf9 8795
72bf9492
DJ
8796static char *
8797partial_die_full_name (struct partial_die_info *pdi,
8798 struct dwarf2_cu *cu)
8799{
15d034d0 8800 const char *parent_scope;
72bf9492 8801
98bfdba5
PA
8802 /* If this is a template instantiation, we can not work out the
8803 template arguments from partial DIEs. So, unfortunately, we have
8804 to go through the full DIEs. At least any work we do building
8805 types here will be reused if full symbols are loaded later. */
8806 if (pdi->has_template_arguments)
8807 {
52356b79 8808 pdi->fixup (cu);
98bfdba5
PA
8809
8810 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
8811 {
8812 struct die_info *die;
8813 struct attribute attr;
8814 struct dwarf2_cu *ref_cu = cu;
8815
b64f50a1 8816 /* DW_FORM_ref_addr is using section offset. */
b4069958 8817 attr.name = (enum dwarf_attribute) 0;
98bfdba5 8818 attr.form = DW_FORM_ref_addr;
9c541725 8819 attr.u.unsnd = to_underlying (pdi->sect_off);
98bfdba5
PA
8820 die = follow_die_ref (NULL, &attr, &ref_cu);
8821
8822 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
8823 }
8824 }
8825
72bf9492
DJ
8826 parent_scope = partial_die_parent_scope (pdi, cu);
8827 if (parent_scope == NULL)
8828 return NULL;
8829 else
f55ee35c 8830 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
c906108c
SS
8831}
8832
8833static void
72bf9492 8834add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 8835{
518817b3
SM
8836 struct dwarf2_per_objfile *dwarf2_per_objfile
8837 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 8838 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 8839 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c 8840 CORE_ADDR addr = 0;
15d034d0 8841 const char *actual_name = NULL;
e142c38c 8842 CORE_ADDR baseaddr;
15d034d0 8843 char *built_actual_name;
e142c38c
DJ
8844
8845 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 8846
15d034d0
TT
8847 built_actual_name = partial_die_full_name (pdi, cu);
8848 if (built_actual_name != NULL)
8849 actual_name = built_actual_name;
63d06c5c 8850
72bf9492
DJ
8851 if (actual_name == NULL)
8852 actual_name = pdi->name;
8853
c906108c
SS
8854 switch (pdi->tag)
8855 {
b1dc1806 8856 case DW_TAG_inlined_subroutine:
c906108c 8857 case DW_TAG_subprogram:
79748972
TT
8858 addr = (gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr)
8859 - baseaddr);
2cfa0c8d 8860 if (pdi->is_external || cu->language == language_ada)
c906108c 8861 {
2cfa0c8d
JB
8862 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
8863 of the global scope. But in Ada, we want to be able to access
8864 nested procedures globally. So all Ada subprograms are stored
8865 in the global scope. */
f47fb265 8866 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8867 built_actual_name != NULL,
f47fb265 8868 VAR_DOMAIN, LOC_BLOCK,
79748972 8869 SECT_OFF_TEXT (objfile),
75aedd27 8870 psymbol_placement::GLOBAL,
79748972
TT
8871 addr,
8872 cu->language, objfile);
c906108c
SS
8873 }
8874 else
8875 {
f47fb265 8876 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8877 built_actual_name != NULL,
f47fb265 8878 VAR_DOMAIN, LOC_BLOCK,
79748972 8879 SECT_OFF_TEXT (objfile),
75aedd27 8880 psymbol_placement::STATIC,
1762568f 8881 addr, cu->language, objfile);
c906108c 8882 }
0c1b455e
TT
8883
8884 if (pdi->main_subprogram && actual_name != NULL)
8885 set_objfile_main_name (objfile, actual_name, cu->language);
c906108c 8886 break;
72929c62 8887 case DW_TAG_constant:
75aedd27
TT
8888 add_psymbol_to_list (actual_name, strlen (actual_name),
8889 built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
8890 -1, (pdi->is_external
8891 ? psymbol_placement::GLOBAL
8892 : psymbol_placement::STATIC),
8893 0, cu->language, objfile);
72929c62 8894 break;
c906108c 8895 case DW_TAG_variable:
95554aad
TT
8896 if (pdi->d.locdesc)
8897 addr = decode_locdesc (pdi->d.locdesc, cu);
caac4577 8898
95554aad 8899 if (pdi->d.locdesc
caac4577
JG
8900 && addr == 0
8901 && !dwarf2_per_objfile->has_section_at_zero)
8902 {
8903 /* A global or static variable may also have been stripped
8904 out by the linker if unused, in which case its address
8905 will be nullified; do not add such variables into partial
8906 symbol table then. */
8907 }
8908 else if (pdi->is_external)
c906108c
SS
8909 {
8910 /* Global Variable.
8911 Don't enter into the minimal symbol tables as there is
8912 a minimal symbol table entry from the ELF symbols already.
8913 Enter into partial symbol table if it has a location
8914 descriptor or a type.
8915 If the location descriptor is missing, new_symbol will create
8916 a LOC_UNRESOLVED symbol, the address of the variable will then
8917 be determined from the minimal symbol table whenever the variable
8918 is referenced.
8919 The address for the partial symbol table entry is not
8920 used by GDB, but it comes in handy for debugging partial symbol
8921 table building. */
8922
95554aad 8923 if (pdi->d.locdesc || pdi->has_type)
f47fb265 8924 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8925 built_actual_name != NULL,
f47fb265 8926 VAR_DOMAIN, LOC_STATIC,
79748972 8927 SECT_OFF_TEXT (objfile),
75aedd27 8928 psymbol_placement::GLOBAL,
79748972 8929 addr, cu->language, objfile);
c906108c
SS
8930 }
8931 else
8932 {
ff908ebf
AW
8933 int has_loc = pdi->d.locdesc != NULL;
8934
8935 /* Static Variable. Skip symbols whose value we cannot know (those
8936 without location descriptors or constant values). */
8937 if (!has_loc && !pdi->has_const_value)
decbce07 8938 {
15d034d0 8939 xfree (built_actual_name);
decbce07
MS
8940 return;
8941 }
ff908ebf 8942
f47fb265 8943 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8944 built_actual_name != NULL,
f47fb265 8945 VAR_DOMAIN, LOC_STATIC,
79748972 8946 SECT_OFF_TEXT (objfile),
75aedd27 8947 psymbol_placement::STATIC,
79748972 8948 has_loc ? addr : 0,
f47fb265 8949 cu->language, objfile);
c906108c
SS
8950 }
8951 break;
8952 case DW_TAG_typedef:
8953 case DW_TAG_base_type:
a02abb62 8954 case DW_TAG_subrange_type:
38d518c9 8955 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8956 built_actual_name != NULL,
79748972 8957 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 8958 psymbol_placement::STATIC,
1762568f 8959 0, cu->language, objfile);
c906108c 8960 break;
74921315 8961 case DW_TAG_imported_declaration:
72bf9492
DJ
8962 case DW_TAG_namespace:
8963 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8964 built_actual_name != NULL,
79748972 8965 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 8966 psymbol_placement::GLOBAL,
1762568f 8967 0, cu->language, objfile);
72bf9492 8968 break;
530e8392 8969 case DW_TAG_module:
a5fd13a9
BH
8970 /* With Fortran 77 there might be a "BLOCK DATA" module
8971 available without any name. If so, we skip the module as it
8972 doesn't bring any value. */
8973 if (actual_name != nullptr)
8974 add_psymbol_to_list (actual_name, strlen (actual_name),
8975 built_actual_name != NULL,
8976 MODULE_DOMAIN, LOC_TYPEDEF, -1,
8977 psymbol_placement::GLOBAL,
8978 0, cu->language, objfile);
530e8392 8979 break;
c906108c 8980 case DW_TAG_class_type:
680b30c7 8981 case DW_TAG_interface_type:
c906108c
SS
8982 case DW_TAG_structure_type:
8983 case DW_TAG_union_type:
8984 case DW_TAG_enumeration_type:
fa4028e9
JB
8985 /* Skip external references. The DWARF standard says in the section
8986 about "Structure, Union, and Class Type Entries": "An incomplete
8987 structure, union or class type is represented by a structure,
8988 union or class entry that does not have a byte size attribute
8989 and that has a DW_AT_declaration attribute." */
8990 if (!pdi->has_byte_size && pdi->is_declaration)
decbce07 8991 {
15d034d0 8992 xfree (built_actual_name);
decbce07
MS
8993 return;
8994 }
fa4028e9 8995
63d06c5c
DC
8996 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
8997 static vs. global. */
38d518c9 8998 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8999 built_actual_name != NULL,
79748972 9000 STRUCT_DOMAIN, LOC_TYPEDEF, -1,
9c37b5ae 9001 cu->language == language_cplus
75aedd27
TT
9002 ? psymbol_placement::GLOBAL
9003 : psymbol_placement::STATIC,
1762568f 9004 0, cu->language, objfile);
c906108c 9005
c906108c
SS
9006 break;
9007 case DW_TAG_enumerator:
38d518c9 9008 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 9009 built_actual_name != NULL,
79748972 9010 VAR_DOMAIN, LOC_CONST, -1,
9c37b5ae 9011 cu->language == language_cplus
75aedd27
TT
9012 ? psymbol_placement::GLOBAL
9013 : psymbol_placement::STATIC,
1762568f 9014 0, cu->language, objfile);
c906108c
SS
9015 break;
9016 default:
9017 break;
9018 }
5c4e30ca 9019
15d034d0 9020 xfree (built_actual_name);
c906108c
SS
9021}
9022
5c4e30ca
DC
9023/* Read a partial die corresponding to a namespace; also, add a symbol
9024 corresponding to that namespace to the symbol table. NAMESPACE is
9025 the name of the enclosing namespace. */
91c24f0a 9026
72bf9492
DJ
9027static void
9028add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 9029 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 9030 int set_addrmap, struct dwarf2_cu *cu)
91c24f0a 9031{
72bf9492 9032 /* Add a symbol for the namespace. */
e7c27a73 9033
72bf9492 9034 add_partial_symbol (pdi, cu);
5c4e30ca
DC
9035
9036 /* Now scan partial symbols in that namespace. */
9037
91c24f0a 9038 if (pdi->has_children)
cdc07690 9039 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
91c24f0a
DC
9040}
9041
5d7cb8df
JK
9042/* Read a partial die corresponding to a Fortran module. */
9043
9044static void
9045add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 9046 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
5d7cb8df 9047{
530e8392
KB
9048 /* Add a symbol for the namespace. */
9049
9050 add_partial_symbol (pdi, cu);
9051
f55ee35c 9052 /* Now scan partial symbols in that module. */
5d7cb8df
JK
9053
9054 if (pdi->has_children)
cdc07690 9055 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
5d7cb8df
JK
9056}
9057
b1dc1806
XR
9058/* Read a partial die corresponding to a subprogram or an inlined
9059 subprogram and create a partial symbol for that subprogram.
9060 When the CU language allows it, this routine also defines a partial
9061 symbol for each nested subprogram that this subprogram contains.
9062 If SET_ADDRMAP is true, record the covered ranges in the addrmap.
9063 Set *LOWPC and *HIGHPC to the lowest and highest PC values found in PDI.
6e70227d 9064
cdc07690
YQ
9065 PDI may also be a lexical block, in which case we simply search
9066 recursively for subprograms defined inside that lexical block.
bc30ff58
JB
9067 Again, this is only performed when the CU language allows this
9068 type of definitions. */
9069
9070static void
9071add_partial_subprogram (struct partial_die_info *pdi,
9072 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 9073 int set_addrmap, struct dwarf2_cu *cu)
bc30ff58 9074{
b1dc1806 9075 if (pdi->tag == DW_TAG_subprogram || pdi->tag == DW_TAG_inlined_subroutine)
bc30ff58
JB
9076 {
9077 if (pdi->has_pc_info)
9078 {
9079 if (pdi->lowpc < *lowpc)
9080 *lowpc = pdi->lowpc;
9081 if (pdi->highpc > *highpc)
9082 *highpc = pdi->highpc;
cdc07690 9083 if (set_addrmap)
5734ee8b 9084 {
518817b3 9085 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a
MR
9086 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9087 CORE_ADDR baseaddr;
b926417a
TT
9088 CORE_ADDR this_highpc;
9089 CORE_ADDR this_lowpc;
5734ee8b
DJ
9090
9091 baseaddr = ANOFFSET (objfile->section_offsets,
9092 SECT_OFF_TEXT (objfile));
b926417a
TT
9093 this_lowpc
9094 = (gdbarch_adjust_dwarf2_addr (gdbarch,
9095 pdi->lowpc + baseaddr)
9096 - baseaddr);
9097 this_highpc
9098 = (gdbarch_adjust_dwarf2_addr (gdbarch,
9099 pdi->highpc + baseaddr)
9100 - baseaddr);
d320c2b5 9101 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
b926417a 9102 this_lowpc, this_highpc - 1,
9291a0cd 9103 cu->per_cu->v.psymtab);
5734ee8b 9104 }
481860b3
GB
9105 }
9106
9107 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
9108 {
bc30ff58 9109 if (!pdi->is_declaration)
e8d05480
JB
9110 /* Ignore subprogram DIEs that do not have a name, they are
9111 illegal. Do not emit a complaint at this point, we will
9112 do so when we convert this psymtab into a symtab. */
9113 if (pdi->name)
9114 add_partial_symbol (pdi, cu);
bc30ff58
JB
9115 }
9116 }
6e70227d 9117
bc30ff58
JB
9118 if (! pdi->has_children)
9119 return;
9120
9121 if (cu->language == language_ada)
9122 {
9123 pdi = pdi->die_child;
9124 while (pdi != NULL)
9125 {
52356b79 9126 pdi->fixup (cu);
bc30ff58 9127 if (pdi->tag == DW_TAG_subprogram
b1dc1806 9128 || pdi->tag == DW_TAG_inlined_subroutine
bc30ff58 9129 || pdi->tag == DW_TAG_lexical_block)
cdc07690 9130 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
bc30ff58
JB
9131 pdi = pdi->die_sibling;
9132 }
9133 }
9134}
9135
91c24f0a
DC
9136/* Read a partial die corresponding to an enumeration type. */
9137
72bf9492
DJ
9138static void
9139add_partial_enumeration (struct partial_die_info *enum_pdi,
9140 struct dwarf2_cu *cu)
91c24f0a 9141{
72bf9492 9142 struct partial_die_info *pdi;
91c24f0a
DC
9143
9144 if (enum_pdi->name != NULL)
72bf9492
DJ
9145 add_partial_symbol (enum_pdi, cu);
9146
9147 pdi = enum_pdi->die_child;
9148 while (pdi)
91c24f0a 9149 {
72bf9492 9150 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
b98664d3 9151 complaint (_("malformed enumerator DIE ignored"));
91c24f0a 9152 else
72bf9492
DJ
9153 add_partial_symbol (pdi, cu);
9154 pdi = pdi->die_sibling;
91c24f0a 9155 }
91c24f0a
DC
9156}
9157
6caca83c
CC
9158/* Return the initial uleb128 in the die at INFO_PTR. */
9159
9160static unsigned int
d521ce57 9161peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6caca83c
CC
9162{
9163 unsigned int bytes_read;
9164
9165 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9166}
9167
685af9cd
TT
9168/* Read the initial uleb128 in the die at INFO_PTR in compilation unit
9169 READER::CU. Use READER::ABBREV_TABLE to lookup any abbreviation.
9170
4bb7a0a7
DJ
9171 Return the corresponding abbrev, or NULL if the number is zero (indicating
9172 an empty DIE). In either case *BYTES_READ will be set to the length of
9173 the initial number. */
9174
9175static struct abbrev_info *
685af9cd
TT
9176peek_die_abbrev (const die_reader_specs &reader,
9177 const gdb_byte *info_ptr, unsigned int *bytes_read)
4bb7a0a7 9178{
685af9cd 9179 dwarf2_cu *cu = reader.cu;
518817b3 9180 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
685af9cd
TT
9181 unsigned int abbrev_number
9182 = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4bb7a0a7
DJ
9183
9184 if (abbrev_number == 0)
9185 return NULL;
9186
685af9cd 9187 abbrev_info *abbrev = reader.abbrev_table->lookup_abbrev (abbrev_number);
4bb7a0a7
DJ
9188 if (!abbrev)
9189 {
422b9917 9190 error (_("Dwarf Error: Could not find abbrev number %d in %s"
9d8780f0 9191 " at offset %s [in module %s]"),
422b9917 9192 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
9d8780f0 9193 sect_offset_str (cu->header.sect_off), bfd_get_filename (abfd));
4bb7a0a7
DJ
9194 }
9195
9196 return abbrev;
9197}
9198
93311388
DE
9199/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9200 Returns a pointer to the end of a series of DIEs, terminated by an empty
4bb7a0a7
DJ
9201 DIE. Any children of the skipped DIEs will also be skipped. */
9202
d521ce57
TT
9203static const gdb_byte *
9204skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
4bb7a0a7 9205{
4bb7a0a7
DJ
9206 while (1)
9207 {
685af9cd
TT
9208 unsigned int bytes_read;
9209 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
9210
4bb7a0a7
DJ
9211 if (abbrev == NULL)
9212 return info_ptr + bytes_read;
9213 else
dee91e82 9214 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
4bb7a0a7
DJ
9215 }
9216}
9217
93311388
DE
9218/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9219 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4bb7a0a7
DJ
9220 abbrev corresponding to that skipped uleb128 should be passed in
9221 ABBREV. Returns a pointer to this DIE's sibling, skipping any
9222 children. */
9223
d521ce57
TT
9224static const gdb_byte *
9225skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
dee91e82 9226 struct abbrev_info *abbrev)
4bb7a0a7
DJ
9227{
9228 unsigned int bytes_read;
9229 struct attribute attr;
dee91e82
DE
9230 bfd *abfd = reader->abfd;
9231 struct dwarf2_cu *cu = reader->cu;
d521ce57 9232 const gdb_byte *buffer = reader->buffer;
f664829e 9233 const gdb_byte *buffer_end = reader->buffer_end;
4bb7a0a7
DJ
9234 unsigned int form, i;
9235
9236 for (i = 0; i < abbrev->num_attrs; i++)
9237 {
9238 /* The only abbrev we care about is DW_AT_sibling. */
9239 if (abbrev->attrs[i].name == DW_AT_sibling)
9240 {
dee91e82 9241 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
4bb7a0a7 9242 if (attr.form == DW_FORM_ref_addr)
b98664d3 9243 complaint (_("ignoring absolute DW_AT_sibling"));
4bb7a0a7 9244 else
b9502d3f 9245 {
9c541725
PA
9246 sect_offset off = dwarf2_get_ref_die_offset (&attr);
9247 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
9248
9249 if (sibling_ptr < info_ptr)
b98664d3 9250 complaint (_("DW_AT_sibling points backwards"));
22869d73
KS
9251 else if (sibling_ptr > reader->buffer_end)
9252 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f
WN
9253 else
9254 return sibling_ptr;
9255 }
4bb7a0a7
DJ
9256 }
9257
9258 /* If it isn't DW_AT_sibling, skip this attribute. */
9259 form = abbrev->attrs[i].form;
9260 skip_attribute:
9261 switch (form)
9262 {
4bb7a0a7 9263 case DW_FORM_ref_addr:
ae411497
TT
9264 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
9265 and later it is offset sized. */
9266 if (cu->header.version == 2)
9267 info_ptr += cu->header.addr_size;
9268 else
9269 info_ptr += cu->header.offset_size;
9270 break;
36586728
TT
9271 case DW_FORM_GNU_ref_alt:
9272 info_ptr += cu->header.offset_size;
9273 break;
ae411497 9274 case DW_FORM_addr:
4bb7a0a7
DJ
9275 info_ptr += cu->header.addr_size;
9276 break;
9277 case DW_FORM_data1:
9278 case DW_FORM_ref1:
9279 case DW_FORM_flag:
9280 info_ptr += 1;
9281 break;
2dc7f7b3 9282 case DW_FORM_flag_present:
43988095 9283 case DW_FORM_implicit_const:
2dc7f7b3 9284 break;
4bb7a0a7
DJ
9285 case DW_FORM_data2:
9286 case DW_FORM_ref2:
9287 info_ptr += 2;
9288 break;
9289 case DW_FORM_data4:
9290 case DW_FORM_ref4:
9291 info_ptr += 4;
9292 break;
9293 case DW_FORM_data8:
9294 case DW_FORM_ref8:
55f1336d 9295 case DW_FORM_ref_sig8:
4bb7a0a7
DJ
9296 info_ptr += 8;
9297 break;
0224619f
JK
9298 case DW_FORM_data16:
9299 info_ptr += 16;
9300 break;
4bb7a0a7 9301 case DW_FORM_string:
9b1c24c8 9302 read_direct_string (abfd, info_ptr, &bytes_read);
4bb7a0a7
DJ
9303 info_ptr += bytes_read;
9304 break;
2dc7f7b3 9305 case DW_FORM_sec_offset:
4bb7a0a7 9306 case DW_FORM_strp:
36586728 9307 case DW_FORM_GNU_strp_alt:
4bb7a0a7
DJ
9308 info_ptr += cu->header.offset_size;
9309 break;
2dc7f7b3 9310 case DW_FORM_exprloc:
4bb7a0a7
DJ
9311 case DW_FORM_block:
9312 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9313 info_ptr += bytes_read;
9314 break;
9315 case DW_FORM_block1:
9316 info_ptr += 1 + read_1_byte (abfd, info_ptr);
9317 break;
9318 case DW_FORM_block2:
9319 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
9320 break;
9321 case DW_FORM_block4:
9322 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
9323 break;
336d760d 9324 case DW_FORM_addrx:
cf532bd1 9325 case DW_FORM_strx:
4bb7a0a7
DJ
9326 case DW_FORM_sdata:
9327 case DW_FORM_udata:
9328 case DW_FORM_ref_udata:
3019eac3
DE
9329 case DW_FORM_GNU_addr_index:
9330 case DW_FORM_GNU_str_index:
d521ce57 9331 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
4bb7a0a7
DJ
9332 break;
9333 case DW_FORM_indirect:
9334 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9335 info_ptr += bytes_read;
9336 /* We need to continue parsing from here, so just go back to
9337 the top. */
9338 goto skip_attribute;
9339
9340 default:
3e43a32a
MS
9341 error (_("Dwarf Error: Cannot handle %s "
9342 "in DWARF reader [in module %s]"),
4bb7a0a7
DJ
9343 dwarf_form_name (form),
9344 bfd_get_filename (abfd));
9345 }
9346 }
9347
9348 if (abbrev->has_children)
dee91e82 9349 return skip_children (reader, info_ptr);
4bb7a0a7
DJ
9350 else
9351 return info_ptr;
9352}
9353
93311388 9354/* Locate ORIG_PDI's sibling.
dee91e82 9355 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
91c24f0a 9356
d521ce57 9357static const gdb_byte *
dee91e82
DE
9358locate_pdi_sibling (const struct die_reader_specs *reader,
9359 struct partial_die_info *orig_pdi,
d521ce57 9360 const gdb_byte *info_ptr)
91c24f0a
DC
9361{
9362 /* Do we know the sibling already? */
72bf9492 9363
91c24f0a
DC
9364 if (orig_pdi->sibling)
9365 return orig_pdi->sibling;
9366
9367 /* Are there any children to deal with? */
9368
9369 if (!orig_pdi->has_children)
9370 return info_ptr;
9371
4bb7a0a7 9372 /* Skip the children the long way. */
91c24f0a 9373
dee91e82 9374 return skip_children (reader, info_ptr);
91c24f0a
DC
9375}
9376
257e7a09 9377/* Expand this partial symbol table into a full symbol table. SELF is
442e4d9c 9378 not NULL. */
c906108c
SS
9379
9380static void
257e7a09
YQ
9381dwarf2_read_symtab (struct partial_symtab *self,
9382 struct objfile *objfile)
c906108c 9383{
ed2dc618
SM
9384 struct dwarf2_per_objfile *dwarf2_per_objfile
9385 = get_dwarf2_per_objfile (objfile);
9386
257e7a09 9387 if (self->readin)
c906108c 9388 {
442e4d9c 9389 warning (_("bug: psymtab for %s is already read in."),
257e7a09 9390 self->filename);
442e4d9c
YQ
9391 }
9392 else
9393 {
9394 if (info_verbose)
c906108c 9395 {
442e4d9c 9396 printf_filtered (_("Reading in symbols for %s..."),
257e7a09 9397 self->filename);
442e4d9c 9398 gdb_flush (gdb_stdout);
c906108c 9399 }
c906108c 9400
442e4d9c
YQ
9401 /* If this psymtab is constructed from a debug-only objfile, the
9402 has_section_at_zero flag will not necessarily be correct. We
9403 can get the correct value for this flag by looking at the data
9404 associated with the (presumably stripped) associated objfile. */
9405 if (objfile->separate_debug_objfile_backlink)
9406 {
9407 struct dwarf2_per_objfile *dpo_backlink
ed2dc618 9408 = get_dwarf2_per_objfile (objfile->separate_debug_objfile_backlink);
9a619af0 9409
442e4d9c
YQ
9410 dwarf2_per_objfile->has_section_at_zero
9411 = dpo_backlink->has_section_at_zero;
9412 }
b2ab525c 9413
442e4d9c 9414 dwarf2_per_objfile->reading_partial_symbols = 0;
98bfdba5 9415
257e7a09 9416 psymtab_to_symtab_1 (self);
c906108c 9417
442e4d9c
YQ
9418 /* Finish up the debug error message. */
9419 if (info_verbose)
9420 printf_filtered (_("done.\n"));
c906108c 9421 }
95554aad 9422
ed2dc618 9423 process_cu_includes (dwarf2_per_objfile);
c906108c 9424}
9cdd5dbd
DE
9425\f
9426/* Reading in full CUs. */
c906108c 9427
10b3939b
DJ
9428/* Add PER_CU to the queue. */
9429
9430static void
95554aad
TT
9431queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
9432 enum language pretend_language)
10b3939b
DJ
9433{
9434 struct dwarf2_queue_item *item;
9435
9436 per_cu->queued = 1;
8d749320 9437 item = XNEW (struct dwarf2_queue_item);
10b3939b 9438 item->per_cu = per_cu;
95554aad 9439 item->pretend_language = pretend_language;
10b3939b
DJ
9440 item->next = NULL;
9441
9442 if (dwarf2_queue == NULL)
9443 dwarf2_queue = item;
9444 else
9445 dwarf2_queue_tail->next = item;
9446
9447 dwarf2_queue_tail = item;
9448}
9449
89e63ee4
DE
9450/* If PER_CU is not yet queued, add it to the queue.
9451 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
9452 dependency.
0907af0c 9453 The result is non-zero if PER_CU was queued, otherwise the result is zero
69d751e3
DE
9454 meaning either PER_CU is already queued or it is already loaded.
9455
9456 N.B. There is an invariant here that if a CU is queued then it is loaded.
9457 The caller is required to load PER_CU if we return non-zero. */
0907af0c
DE
9458
9459static int
89e63ee4 9460maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
0907af0c
DE
9461 struct dwarf2_per_cu_data *per_cu,
9462 enum language pretend_language)
9463{
9464 /* We may arrive here during partial symbol reading, if we need full
9465 DIEs to process an unusual case (e.g. template arguments). Do
9466 not queue PER_CU, just tell our caller to load its DIEs. */
ed2dc618 9467 if (per_cu->dwarf2_per_objfile->reading_partial_symbols)
0907af0c
DE
9468 {
9469 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
9470 return 1;
9471 return 0;
9472 }
9473
9474 /* Mark the dependence relation so that we don't flush PER_CU
9475 too early. */
89e63ee4
DE
9476 if (dependent_cu != NULL)
9477 dwarf2_add_dependence (dependent_cu, per_cu);
0907af0c
DE
9478
9479 /* If it's already on the queue, we have nothing to do. */
9480 if (per_cu->queued)
9481 return 0;
9482
9483 /* If the compilation unit is already loaded, just mark it as
9484 used. */
9485 if (per_cu->cu != NULL)
9486 {
9487 per_cu->cu->last_used = 0;
9488 return 0;
9489 }
9490
9491 /* Add it to the queue. */
9492 queue_comp_unit (per_cu, pretend_language);
9493
9494 return 1;
9495}
9496
10b3939b
DJ
9497/* Process the queue. */
9498
9499static void
ed2dc618 9500process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile)
10b3939b
DJ
9501{
9502 struct dwarf2_queue_item *item, *next_item;
9503
b4f54984 9504 if (dwarf_read_debug)
45cfd468
DE
9505 {
9506 fprintf_unfiltered (gdb_stdlog,
9507 "Expanding one or more symtabs of objfile %s ...\n",
4262abfb 9508 objfile_name (dwarf2_per_objfile->objfile));
45cfd468
DE
9509 }
9510
03dd20cc
DJ
9511 /* The queue starts out with one item, but following a DIE reference
9512 may load a new CU, adding it to the end of the queue. */
10b3939b
DJ
9513 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
9514 {
cc12ce38
DE
9515 if ((dwarf2_per_objfile->using_index
9516 ? !item->per_cu->v.quick->compunit_symtab
9517 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
9518 /* Skip dummy CUs. */
9519 && item->per_cu->cu != NULL)
f4dc4d17
DE
9520 {
9521 struct dwarf2_per_cu_data *per_cu = item->per_cu;
73be47f5 9522 unsigned int debug_print_threshold;
247f5c4f 9523 char buf[100];
f4dc4d17 9524
247f5c4f 9525 if (per_cu->is_debug_types)
f4dc4d17 9526 {
247f5c4f
DE
9527 struct signatured_type *sig_type =
9528 (struct signatured_type *) per_cu;
9529
9d8780f0 9530 sprintf (buf, "TU %s at offset %s",
73be47f5 9531 hex_string (sig_type->signature),
9d8780f0 9532 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9533 /* There can be 100s of TUs.
9534 Only print them in verbose mode. */
9535 debug_print_threshold = 2;
f4dc4d17 9536 }
247f5c4f 9537 else
73be47f5 9538 {
9d8780f0
SM
9539 sprintf (buf, "CU at offset %s",
9540 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9541 debug_print_threshold = 1;
9542 }
247f5c4f 9543
b4f54984 9544 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9545 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
f4dc4d17
DE
9546
9547 if (per_cu->is_debug_types)
9548 process_full_type_unit (per_cu, item->pretend_language);
9549 else
9550 process_full_comp_unit (per_cu, item->pretend_language);
9551
b4f54984 9552 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9553 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
f4dc4d17 9554 }
10b3939b
DJ
9555
9556 item->per_cu->queued = 0;
9557 next_item = item->next;
9558 xfree (item);
9559 }
9560
9561 dwarf2_queue_tail = NULL;
45cfd468 9562
b4f54984 9563 if (dwarf_read_debug)
45cfd468
DE
9564 {
9565 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
4262abfb 9566 objfile_name (dwarf2_per_objfile->objfile));
45cfd468 9567 }
10b3939b
DJ
9568}
9569
10b3939b
DJ
9570/* Read in full symbols for PST, and anything it depends on. */
9571
c906108c 9572static void
fba45db2 9573psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c 9574{
10b3939b 9575 struct dwarf2_per_cu_data *per_cu;
aaa75496
JB
9576 int i;
9577
95554aad
TT
9578 if (pst->readin)
9579 return;
9580
aaa75496 9581 for (i = 0; i < pst->number_of_dependencies; i++)
95554aad
TT
9582 if (!pst->dependencies[i]->readin
9583 && pst->dependencies[i]->user == NULL)
aaa75496
JB
9584 {
9585 /* Inform about additional files that need to be read in. */
9586 if (info_verbose)
9587 {
a3f17187 9588 /* FIXME: i18n: Need to make this a single string. */
aaa75496
JB
9589 fputs_filtered (" ", gdb_stdout);
9590 wrap_here ("");
9591 fputs_filtered ("and ", gdb_stdout);
9592 wrap_here ("");
9593 printf_filtered ("%s...", pst->dependencies[i]->filename);
0963b4bd 9594 wrap_here (""); /* Flush output. */
aaa75496
JB
9595 gdb_flush (gdb_stdout);
9596 }
9597 psymtab_to_symtab_1 (pst->dependencies[i]);
9598 }
9599
9a3c8263 9600 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
10b3939b
DJ
9601
9602 if (per_cu == NULL)
aaa75496
JB
9603 {
9604 /* It's an include file, no symbols to read for it.
9605 Everything is in the parent symtab. */
9606 pst->readin = 1;
9607 return;
9608 }
c906108c 9609
58f0c718 9610 dw2_do_instantiate_symtab (per_cu, false);
10b3939b
DJ
9611}
9612
dee91e82
DE
9613/* Trivial hash function for die_info: the hash value of a DIE
9614 is its offset in .debug_info for this objfile. */
10b3939b 9615
dee91e82
DE
9616static hashval_t
9617die_hash (const void *item)
10b3939b 9618{
9a3c8263 9619 const struct die_info *die = (const struct die_info *) item;
6502dd73 9620
9c541725 9621 return to_underlying (die->sect_off);
dee91e82 9622}
63d06c5c 9623
dee91e82
DE
9624/* Trivial comparison function for die_info structures: two DIEs
9625 are equal if they have the same offset. */
98bfdba5 9626
dee91e82
DE
9627static int
9628die_eq (const void *item_lhs, const void *item_rhs)
9629{
9a3c8263
SM
9630 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
9631 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
c906108c 9632
9c541725 9633 return die_lhs->sect_off == die_rhs->sect_off;
dee91e82 9634}
c906108c 9635
dee91e82
DE
9636/* die_reader_func for load_full_comp_unit.
9637 This is identical to read_signatured_type_reader,
9638 but is kept separate for now. */
c906108c 9639
dee91e82
DE
9640static void
9641load_full_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 9642 const gdb_byte *info_ptr,
dee91e82
DE
9643 struct die_info *comp_unit_die,
9644 int has_children,
9645 void *data)
9646{
9647 struct dwarf2_cu *cu = reader->cu;
9a3c8263 9648 enum language *language_ptr = (enum language *) data;
6caca83c 9649
dee91e82
DE
9650 gdb_assert (cu->die_hash == NULL);
9651 cu->die_hash =
9652 htab_create_alloc_ex (cu->header.length / 12,
9653 die_hash,
9654 die_eq,
9655 NULL,
9656 &cu->comp_unit_obstack,
9657 hashtab_obstack_allocate,
9658 dummy_obstack_deallocate);
e142c38c 9659
dee91e82
DE
9660 if (has_children)
9661 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
9662 &info_ptr, comp_unit_die);
9663 cu->dies = comp_unit_die;
9664 /* comp_unit_die is not stored in die_hash, no need. */
10b3939b
DJ
9665
9666 /* We try not to read any attributes in this function, because not
9cdd5dbd 9667 all CUs needed for references have been loaded yet, and symbol
10b3939b 9668 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
9669 or we won't be able to build types correctly.
9670 Similarly, if we do not read the producer, we can not apply
9671 producer-specific interpretation. */
95554aad 9672 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
dee91e82 9673}
10b3939b 9674
dee91e82 9675/* Load the DIEs associated with PER_CU into memory. */
a6c727b2 9676
dee91e82 9677static void
95554aad 9678load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
58f0c718 9679 bool skip_partial,
95554aad 9680 enum language pretend_language)
dee91e82 9681{
3019eac3 9682 gdb_assert (! this_cu->is_debug_types);
c5b7e1cb 9683
58f0c718 9684 init_cutu_and_read_dies (this_cu, NULL, 1, 1, skip_partial,
f4dc4d17 9685 load_full_comp_unit_reader, &pretend_language);
10b3939b
DJ
9686}
9687
3da10d80
KS
9688/* Add a DIE to the delayed physname list. */
9689
9690static void
9691add_to_method_list (struct type *type, int fnfield_index, int index,
9692 const char *name, struct die_info *die,
9693 struct dwarf2_cu *cu)
9694{
9695 struct delayed_method_info mi;
9696 mi.type = type;
9697 mi.fnfield_index = fnfield_index;
9698 mi.index = index;
9699 mi.name = name;
9700 mi.die = die;
c89b44cd 9701 cu->method_list.push_back (mi);
3da10d80
KS
9702}
9703
3693fdb3
PA
9704/* Check whether [PHYSNAME, PHYSNAME+LEN) ends with a modifier like
9705 "const" / "volatile". If so, decrements LEN by the length of the
9706 modifier and return true. Otherwise return false. */
9707
9708template<size_t N>
9709static bool
9710check_modifier (const char *physname, size_t &len, const char (&mod)[N])
9711{
9712 size_t mod_len = sizeof (mod) - 1;
9713 if (len > mod_len && startswith (physname + (len - mod_len), mod))
9714 {
9715 len -= mod_len;
9716 return true;
9717 }
9718 return false;
9719}
9720
3da10d80
KS
9721/* Compute the physnames of any methods on the CU's method list.
9722
9723 The computation of method physnames is delayed in order to avoid the
9724 (bad) condition that one of the method's formal parameters is of an as yet
9725 incomplete type. */
9726
9727static void
9728compute_delayed_physnames (struct dwarf2_cu *cu)
9729{
3693fdb3 9730 /* Only C++ delays computing physnames. */
c89b44cd 9731 if (cu->method_list.empty ())
3693fdb3
PA
9732 return;
9733 gdb_assert (cu->language == language_cplus);
9734
52941706 9735 for (const delayed_method_info &mi : cu->method_list)
3da10d80 9736 {
1d06ead6 9737 const char *physname;
3da10d80 9738 struct fn_fieldlist *fn_flp
c89b44cd
TT
9739 = &TYPE_FN_FIELDLIST (mi.type, mi.fnfield_index);
9740 physname = dwarf2_physname (mi.name, mi.die, cu);
9741 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi.index)
005e54bb 9742 = physname ? physname : "";
3693fdb3
PA
9743
9744 /* Since there's no tag to indicate whether a method is a
9745 const/volatile overload, extract that information out of the
9746 demangled name. */
9747 if (physname != NULL)
9748 {
9749 size_t len = strlen (physname);
9750
9751 while (1)
9752 {
9753 if (physname[len] == ')') /* shortcut */
9754 break;
9755 else if (check_modifier (physname, len, " const"))
c89b44cd 9756 TYPE_FN_FIELD_CONST (fn_flp->fn_fields, mi.index) = 1;
3693fdb3 9757 else if (check_modifier (physname, len, " volatile"))
c89b44cd 9758 TYPE_FN_FIELD_VOLATILE (fn_flp->fn_fields, mi.index) = 1;
3693fdb3
PA
9759 else
9760 break;
9761 }
9762 }
3da10d80 9763 }
c89b44cd
TT
9764
9765 /* The list is no longer needed. */
9766 cu->method_list.clear ();
3da10d80
KS
9767}
9768
a766d390
DE
9769/* Go objects should be embedded in a DW_TAG_module DIE,
9770 and it's not clear if/how imported objects will appear.
9771 To keep Go support simple until that's worked out,
9772 go back through what we've read and create something usable.
9773 We could do this while processing each DIE, and feels kinda cleaner,
9774 but that way is more invasive.
9775 This is to, for example, allow the user to type "p var" or "b main"
9776 without having to specify the package name, and allow lookups
9777 of module.object to work in contexts that use the expression
9778 parser. */
9779
9780static void
9781fixup_go_packaging (struct dwarf2_cu *cu)
9782{
9783 char *package_name = NULL;
9784 struct pending *list;
9785 int i;
9786
c24bdb02 9787 for (list = *cu->get_builder ()->get_global_symbols ();
804d2729
TT
9788 list != NULL;
9789 list = list->next)
a766d390
DE
9790 {
9791 for (i = 0; i < list->nsyms; ++i)
9792 {
9793 struct symbol *sym = list->symbol[i];
9794
9795 if (SYMBOL_LANGUAGE (sym) == language_go
9796 && SYMBOL_CLASS (sym) == LOC_BLOCK)
9797 {
9798 char *this_package_name = go_symbol_package_name (sym);
9799
9800 if (this_package_name == NULL)
9801 continue;
9802 if (package_name == NULL)
9803 package_name = this_package_name;
9804 else
9805 {
518817b3
SM
9806 struct objfile *objfile
9807 = cu->per_cu->dwarf2_per_objfile->objfile;
a766d390 9808 if (strcmp (package_name, this_package_name) != 0)
b98664d3 9809 complaint (_("Symtab %s has objects from two different Go packages: %s and %s"),
08be3fe3
DE
9810 (symbol_symtab (sym) != NULL
9811 ? symtab_to_filename_for_display
9812 (symbol_symtab (sym))
e3b94546 9813 : objfile_name (objfile)),
a766d390
DE
9814 this_package_name, package_name);
9815 xfree (this_package_name);
9816 }
9817 }
9818 }
9819 }
9820
9821 if (package_name != NULL)
9822 {
518817b3 9823 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
34a68019 9824 const char *saved_package_name
224c3ddb
SM
9825 = (const char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
9826 package_name,
9827 strlen (package_name));
19f392bc
UW
9828 struct type *type = init_type (objfile, TYPE_CODE_MODULE, 0,
9829 saved_package_name);
a766d390
DE
9830 struct symbol *sym;
9831
e623cf5d 9832 sym = allocate_symbol (objfile);
f85f34ed 9833 SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
86f62fd7
TT
9834 SYMBOL_SET_NAMES (sym, saved_package_name,
9835 strlen (saved_package_name), 0, objfile);
a766d390
DE
9836 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
9837 e.g., "main" finds the "main" module and not C's main(). */
9838 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
f1e6e072 9839 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
a766d390
DE
9840 SYMBOL_TYPE (sym) = type;
9841
c24bdb02 9842 add_symbol_to_list (sym, cu->get_builder ()->get_global_symbols ());
a766d390
DE
9843
9844 xfree (package_name);
9845 }
9846}
9847
c9317f21
TT
9848/* Allocate a fully-qualified name consisting of the two parts on the
9849 obstack. */
9850
9851static const char *
9852rust_fully_qualify (struct obstack *obstack, const char *p1, const char *p2)
9853{
9854 return obconcat (obstack, p1, "::", p2, (char *) NULL);
9855}
9856
9857/* A helper that allocates a struct discriminant_info to attach to a
9858 union type. */
9859
9860static struct discriminant_info *
9861alloc_discriminant_info (struct type *type, int discriminant_index,
9862 int default_index)
9863{
9864 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
c7b15a66
TT
9865 gdb_assert (discriminant_index == -1
9866 || (discriminant_index >= 0
9867 && discriminant_index < TYPE_NFIELDS (type)));
c9317f21 9868 gdb_assert (default_index == -1
c7b15a66 9869 || (default_index >= 0 && default_index < TYPE_NFIELDS (type)));
c9317f21
TT
9870
9871 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
9872
9873 struct discriminant_info *disc
9874 = ((struct discriminant_info *)
9875 TYPE_ZALLOC (type,
9876 offsetof (struct discriminant_info, discriminants)
9877 + TYPE_NFIELDS (type) * sizeof (disc->discriminants[0])));
9878 disc->default_index = default_index;
9879 disc->discriminant_index = discriminant_index;
9880
9881 struct dynamic_prop prop;
9882 prop.kind = PROP_UNDEFINED;
9883 prop.data.baton = disc;
9884
9885 add_dyn_prop (DYN_PROP_DISCRIMINATED, prop, type);
9886
9887 return disc;
9888}
9889
9890/* Some versions of rustc emitted enums in an unusual way.
9891
9892 Ordinary enums were emitted as unions. The first element of each
9893 structure in the union was named "RUST$ENUM$DISR". This element
9894 held the discriminant.
9895
9896 These versions of Rust also implemented the "non-zero"
9897 optimization. When the enum had two values, and one is empty and
9898 the other holds a pointer that cannot be zero, the pointer is used
9899 as the discriminant, with a zero value meaning the empty variant.
9900 Here, the union's first member is of the form
9901 RUST$ENCODED$ENUM$<fieldno>$<fieldno>$...$<variantname>
9902 where the fieldnos are the indices of the fields that should be
9903 traversed in order to find the field (which may be several fields deep)
9904 and the variantname is the name of the variant of the case when the
9905 field is zero.
9906
9907 This function recognizes whether TYPE is of one of these forms,
9908 and, if so, smashes it to be a variant type. */
9909
9910static void
9911quirk_rust_enum (struct type *type, struct objfile *objfile)
9912{
9913 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
9914
9915 /* We don't need to deal with empty enums. */
9916 if (TYPE_NFIELDS (type) == 0)
9917 return;
9918
9919#define RUST_ENUM_PREFIX "RUST$ENCODED$ENUM$"
9920 if (TYPE_NFIELDS (type) == 1
9921 && startswith (TYPE_FIELD_NAME (type, 0), RUST_ENUM_PREFIX))
9922 {
9923 const char *name = TYPE_FIELD_NAME (type, 0) + strlen (RUST_ENUM_PREFIX);
9924
9925 /* Decode the field name to find the offset of the
9926 discriminant. */
9927 ULONGEST bit_offset = 0;
9928 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
9929 while (name[0] >= '0' && name[0] <= '9')
9930 {
9931 char *tail;
9932 unsigned long index = strtoul (name, &tail, 10);
9933 name = tail;
9934 if (*name != '$'
9935 || index >= TYPE_NFIELDS (field_type)
9936 || (TYPE_FIELD_LOC_KIND (field_type, index)
9937 != FIELD_LOC_KIND_BITPOS))
9938 {
b98664d3 9939 complaint (_("Could not parse Rust enum encoding string \"%s\""
c9317f21
TT
9940 "[in module %s]"),
9941 TYPE_FIELD_NAME (type, 0),
9942 objfile_name (objfile));
9943 return;
9944 }
9945 ++name;
9946
9947 bit_offset += TYPE_FIELD_BITPOS (field_type, index);
9948 field_type = TYPE_FIELD_TYPE (field_type, index);
9949 }
9950
9951 /* Make a union to hold the variants. */
9952 struct type *union_type = alloc_type (objfile);
9953 TYPE_CODE (union_type) = TYPE_CODE_UNION;
9954 TYPE_NFIELDS (union_type) = 3;
9955 TYPE_FIELDS (union_type)
9956 = (struct field *) TYPE_ZALLOC (type, 3 * sizeof (struct field));
9957 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 9958 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
9959
9960 /* Put the discriminant must at index 0. */
9961 TYPE_FIELD_TYPE (union_type, 0) = field_type;
9962 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
9963 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
9964 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 0), bit_offset);
9965
9966 /* The order of fields doesn't really matter, so put the real
9967 field at index 1 and the data-less field at index 2. */
9968 struct discriminant_info *disc
9969 = alloc_discriminant_info (union_type, 0, 1);
9970 TYPE_FIELD (union_type, 1) = TYPE_FIELD (type, 0);
9971 TYPE_FIELD_NAME (union_type, 1)
9972 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1)));
9973 TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1))
9974 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
9975 TYPE_FIELD_NAME (union_type, 1));
9976
9977 const char *dataless_name
9978 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
9979 name);
9980 struct type *dataless_type = init_type (objfile, TYPE_CODE_VOID, 0,
9981 dataless_name);
9982 TYPE_FIELD_TYPE (union_type, 2) = dataless_type;
9983 /* NAME points into the original discriminant name, which
9984 already has the correct lifetime. */
9985 TYPE_FIELD_NAME (union_type, 2) = name;
9986 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 2), 0);
9987 disc->discriminants[2] = 0;
9988
9989 /* Smash this type to be a structure type. We have to do this
9990 because the type has already been recorded. */
9991 TYPE_CODE (type) = TYPE_CODE_STRUCT;
9992 TYPE_NFIELDS (type) = 1;
9993 TYPE_FIELDS (type)
9994 = (struct field *) TYPE_ZALLOC (type, sizeof (struct field));
9995
9996 /* Install the variant part. */
9997 TYPE_FIELD_TYPE (type, 0) = union_type;
9998 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
9999 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10000 }
10001 else if (TYPE_NFIELDS (type) == 1)
10002 {
10003 /* We assume that a union with a single field is a univariant
10004 enum. */
10005 /* Smash this type to be a structure type. We have to do this
10006 because the type has already been recorded. */
10007 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10008
10009 /* Make a union to hold the variants. */
10010 struct type *union_type = alloc_type (objfile);
10011 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10012 TYPE_NFIELDS (union_type) = TYPE_NFIELDS (type);
10013 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 10014 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
10015 TYPE_FIELDS (union_type) = TYPE_FIELDS (type);
10016
10017 struct type *field_type = TYPE_FIELD_TYPE (union_type, 0);
10018 const char *variant_name
10019 = rust_last_path_segment (TYPE_NAME (field_type));
10020 TYPE_FIELD_NAME (union_type, 0) = variant_name;
10021 TYPE_NAME (field_type)
10022 = rust_fully_qualify (&objfile->objfile_obstack,
c7b15a66 10023 TYPE_NAME (type), variant_name);
c9317f21
TT
10024
10025 /* Install the union in the outer struct type. */
10026 TYPE_NFIELDS (type) = 1;
10027 TYPE_FIELDS (type)
10028 = (struct field *) TYPE_ZALLOC (union_type, sizeof (struct field));
10029 TYPE_FIELD_TYPE (type, 0) = union_type;
10030 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10031 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10032
10033 alloc_discriminant_info (union_type, -1, 0);
10034 }
10035 else
10036 {
10037 struct type *disr_type = nullptr;
10038 for (int i = 0; i < TYPE_NFIELDS (type); ++i)
10039 {
10040 disr_type = TYPE_FIELD_TYPE (type, i);
10041
a037790e
TT
10042 if (TYPE_CODE (disr_type) != TYPE_CODE_STRUCT)
10043 {
10044 /* All fields of a true enum will be structs. */
10045 return;
10046 }
10047 else if (TYPE_NFIELDS (disr_type) == 0)
c9317f21
TT
10048 {
10049 /* Could be data-less variant, so keep going. */
a037790e 10050 disr_type = nullptr;
c9317f21
TT
10051 }
10052 else if (strcmp (TYPE_FIELD_NAME (disr_type, 0),
10053 "RUST$ENUM$DISR") != 0)
10054 {
10055 /* Not a Rust enum. */
10056 return;
10057 }
10058 else
10059 {
10060 /* Found one. */
10061 break;
10062 }
10063 }
10064
10065 /* If we got here without a discriminant, then it's probably
10066 just a union. */
10067 if (disr_type == nullptr)
10068 return;
10069
10070 /* Smash this type to be a structure type. We have to do this
10071 because the type has already been recorded. */
10072 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10073
10074 /* Make a union to hold the variants. */
10075 struct field *disr_field = &TYPE_FIELD (disr_type, 0);
10076 struct type *union_type = alloc_type (objfile);
10077 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10078 TYPE_NFIELDS (union_type) = 1 + TYPE_NFIELDS (type);
10079 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 10080 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
10081 TYPE_FIELDS (union_type)
10082 = (struct field *) TYPE_ZALLOC (union_type,
10083 (TYPE_NFIELDS (union_type)
10084 * sizeof (struct field)));
10085
10086 memcpy (TYPE_FIELDS (union_type) + 1, TYPE_FIELDS (type),
10087 TYPE_NFIELDS (type) * sizeof (struct field));
10088
10089 /* Install the discriminant at index 0 in the union. */
10090 TYPE_FIELD (union_type, 0) = *disr_field;
10091 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
10092 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
10093
10094 /* Install the union in the outer struct type. */
10095 TYPE_FIELD_TYPE (type, 0) = union_type;
10096 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10097 TYPE_NFIELDS (type) = 1;
10098
10099 /* Set the size and offset of the union type. */
10100 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10101
10102 /* We need a way to find the correct discriminant given a
10103 variant name. For convenience we build a map here. */
10104 struct type *enum_type = FIELD_TYPE (*disr_field);
10105 std::unordered_map<std::string, ULONGEST> discriminant_map;
10106 for (int i = 0; i < TYPE_NFIELDS (enum_type); ++i)
10107 {
10108 if (TYPE_FIELD_LOC_KIND (enum_type, i) == FIELD_LOC_KIND_ENUMVAL)
10109 {
10110 const char *name
10111 = rust_last_path_segment (TYPE_FIELD_NAME (enum_type, i));
10112 discriminant_map[name] = TYPE_FIELD_ENUMVAL (enum_type, i);
10113 }
10114 }
10115
10116 int n_fields = TYPE_NFIELDS (union_type);
10117 struct discriminant_info *disc
10118 = alloc_discriminant_info (union_type, 0, -1);
10119 /* Skip the discriminant here. */
10120 for (int i = 1; i < n_fields; ++i)
10121 {
10122 /* Find the final word in the name of this variant's type.
10123 That name can be used to look up the correct
10124 discriminant. */
10125 const char *variant_name
10126 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type,
10127 i)));
10128
10129 auto iter = discriminant_map.find (variant_name);
10130 if (iter != discriminant_map.end ())
10131 disc->discriminants[i] = iter->second;
10132
bedda9ac 10133 /* Remove the discriminant field, if it exists. */
c9317f21 10134 struct type *sub_type = TYPE_FIELD_TYPE (union_type, i);
bedda9ac
TT
10135 if (TYPE_NFIELDS (sub_type) > 0)
10136 {
10137 --TYPE_NFIELDS (sub_type);
10138 ++TYPE_FIELDS (sub_type);
10139 }
c9317f21
TT
10140 TYPE_FIELD_NAME (union_type, i) = variant_name;
10141 TYPE_NAME (sub_type)
10142 = rust_fully_qualify (&objfile->objfile_obstack,
10143 TYPE_NAME (type), variant_name);
10144 }
10145 }
10146}
10147
10148/* Rewrite some Rust unions to be structures with variants parts. */
10149
10150static void
10151rust_union_quirks (struct dwarf2_cu *cu)
10152{
10153 gdb_assert (cu->language == language_rust);
52941706
SM
10154 for (type *type_ : cu->rust_unions)
10155 quirk_rust_enum (type_, cu->per_cu->dwarf2_per_objfile->objfile);
2d79090e
TT
10156 /* We don't need this any more. */
10157 cu->rust_unions.clear ();
c9317f21
TT
10158}
10159
95554aad
TT
10160/* Return the symtab for PER_CU. This works properly regardless of
10161 whether we're using the index or psymtabs. */
10162
43f3e411
DE
10163static struct compunit_symtab *
10164get_compunit_symtab (struct dwarf2_per_cu_data *per_cu)
95554aad 10165{
ed2dc618 10166 return (per_cu->dwarf2_per_objfile->using_index
43f3e411
DE
10167 ? per_cu->v.quick->compunit_symtab
10168 : per_cu->v.psymtab->compunit_symtab);
95554aad
TT
10169}
10170
10171/* A helper function for computing the list of all symbol tables
10172 included by PER_CU. */
10173
10174static void
4c39bc03 10175recursively_compute_inclusions (std::vector<compunit_symtab *> *result,
ec94af83 10176 htab_t all_children, htab_t all_type_symtabs,
f9125b6c 10177 struct dwarf2_per_cu_data *per_cu,
43f3e411 10178 struct compunit_symtab *immediate_parent)
95554aad
TT
10179{
10180 void **slot;
10181 int ix;
43f3e411 10182 struct compunit_symtab *cust;
95554aad
TT
10183 struct dwarf2_per_cu_data *iter;
10184
10185 slot = htab_find_slot (all_children, per_cu, INSERT);
10186 if (*slot != NULL)
10187 {
10188 /* This inclusion and its children have been processed. */
10189 return;
10190 }
10191
10192 *slot = per_cu;
10193 /* Only add a CU if it has a symbol table. */
43f3e411
DE
10194 cust = get_compunit_symtab (per_cu);
10195 if (cust != NULL)
ec94af83
DE
10196 {
10197 /* If this is a type unit only add its symbol table if we haven't
10198 seen it yet (type unit per_cu's can share symtabs). */
10199 if (per_cu->is_debug_types)
10200 {
43f3e411 10201 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
ec94af83
DE
10202 if (*slot == NULL)
10203 {
43f3e411 10204 *slot = cust;
4c39bc03 10205 result->push_back (cust);
43f3e411
DE
10206 if (cust->user == NULL)
10207 cust->user = immediate_parent;
ec94af83
DE
10208 }
10209 }
10210 else
f9125b6c 10211 {
4c39bc03 10212 result->push_back (cust);
43f3e411
DE
10213 if (cust->user == NULL)
10214 cust->user = immediate_parent;
f9125b6c 10215 }
ec94af83 10216 }
95554aad
TT
10217
10218 for (ix = 0;
796a7ff8 10219 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
95554aad 10220 ++ix)
ec94af83
DE
10221 {
10222 recursively_compute_inclusions (result, all_children,
43f3e411 10223 all_type_symtabs, iter, cust);
ec94af83 10224 }
95554aad
TT
10225}
10226
43f3e411 10227/* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
95554aad
TT
10228 PER_CU. */
10229
10230static void
43f3e411 10231compute_compunit_symtab_includes (struct dwarf2_per_cu_data *per_cu)
95554aad 10232{
f4dc4d17
DE
10233 gdb_assert (! per_cu->is_debug_types);
10234
796a7ff8 10235 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
95554aad
TT
10236 {
10237 int ix, len;
ec94af83 10238 struct dwarf2_per_cu_data *per_cu_iter;
4c39bc03 10239 std::vector<compunit_symtab *> result_symtabs;
ec94af83 10240 htab_t all_children, all_type_symtabs;
43f3e411 10241 struct compunit_symtab *cust = get_compunit_symtab (per_cu);
95554aad
TT
10242
10243 /* If we don't have a symtab, we can just skip this case. */
43f3e411 10244 if (cust == NULL)
95554aad
TT
10245 return;
10246
10247 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10248 NULL, xcalloc, xfree);
ec94af83
DE
10249 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10250 NULL, xcalloc, xfree);
95554aad
TT
10251
10252 for (ix = 0;
796a7ff8 10253 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
ec94af83 10254 ix, per_cu_iter);
95554aad 10255 ++ix)
ec94af83
DE
10256 {
10257 recursively_compute_inclusions (&result_symtabs, all_children,
f9125b6c 10258 all_type_symtabs, per_cu_iter,
43f3e411 10259 cust);
ec94af83 10260 }
95554aad 10261
ec94af83 10262 /* Now we have a transitive closure of all the included symtabs. */
4c39bc03 10263 len = result_symtabs.size ();
43f3e411 10264 cust->includes
ed2dc618 10265 = XOBNEWVEC (&per_cu->dwarf2_per_objfile->objfile->objfile_obstack,
8d749320 10266 struct compunit_symtab *, len + 1);
4c39bc03
TT
10267 memcpy (cust->includes, result_symtabs.data (),
10268 len * sizeof (compunit_symtab *));
43f3e411 10269 cust->includes[len] = NULL;
95554aad 10270
95554aad 10271 htab_delete (all_children);
ec94af83 10272 htab_delete (all_type_symtabs);
95554aad
TT
10273 }
10274}
10275
10276/* Compute the 'includes' field for the symtabs of all the CUs we just
10277 read. */
10278
10279static void
ed2dc618 10280process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 10281{
71b73764 10282 for (dwarf2_per_cu_data *iter : dwarf2_per_objfile->just_read_cus)
f4dc4d17
DE
10283 {
10284 if (! iter->is_debug_types)
43f3e411 10285 compute_compunit_symtab_includes (iter);
f4dc4d17 10286 }
95554aad 10287
c5d0225d 10288 dwarf2_per_objfile->just_read_cus.clear ();
95554aad
TT
10289}
10290
9cdd5dbd 10291/* Generate full symbol information for PER_CU, whose DIEs have
10b3939b
DJ
10292 already been loaded into memory. */
10293
10294static void
95554aad
TT
10295process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
10296 enum language pretend_language)
10b3939b 10297{
10b3939b 10298 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618
SM
10299 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10300 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 10301 struct gdbarch *gdbarch = get_objfile_arch (objfile);
10b3939b 10302 CORE_ADDR lowpc, highpc;
43f3e411 10303 struct compunit_symtab *cust;
10b3939b 10304 CORE_ADDR baseaddr;
4359dff1 10305 struct block *static_block;
3e29f34a 10306 CORE_ADDR addr;
10b3939b
DJ
10307
10308 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10309
c89b44cd
TT
10310 /* Clear the list here in case something was left over. */
10311 cu->method_list.clear ();
10b3939b 10312
95554aad
TT
10313 cu->language = pretend_language;
10314 cu->language_defn = language_def (cu->language);
10315
c906108c 10316 /* Do line number decoding in read_file_scope () */
10b3939b 10317 process_die (cu->dies, cu);
c906108c 10318
a766d390
DE
10319 /* For now fudge the Go package. */
10320 if (cu->language == language_go)
10321 fixup_go_packaging (cu);
10322
3da10d80
KS
10323 /* Now that we have processed all the DIEs in the CU, all the types
10324 should be complete, and it should now be safe to compute all of the
10325 physnames. */
10326 compute_delayed_physnames (cu);
3da10d80 10327
c9317f21
TT
10328 if (cu->language == language_rust)
10329 rust_union_quirks (cu);
10330
fae299cd
DC
10331 /* Some compilers don't define a DW_AT_high_pc attribute for the
10332 compilation unit. If the DW_AT_high_pc is missing, synthesize
10333 it, by scanning the DIE's below the compilation unit. */
10b3939b 10334 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 10335
3e29f34a 10336 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c24bdb02 10337 static_block = cu->get_builder ()->end_symtab_get_static_block (addr, 0, 1);
4359dff1
JK
10338
10339 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
10340 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
10341 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
10342 addrmap to help ensure it has an accurate map of pc values belonging to
10343 this comp unit. */
10344 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
10345
c24bdb02 10346 cust = cu->get_builder ()->end_symtab_from_static_block (static_block,
804d2729
TT
10347 SECT_OFF_TEXT (objfile),
10348 0);
c906108c 10349
43f3e411 10350 if (cust != NULL)
c906108c 10351 {
df15bd07 10352 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
4632c0d0 10353
8be455d7
JK
10354 /* Set symtab language to language from DW_AT_language. If the
10355 compilation is from a C file generated by language preprocessors, do
10356 not set the language if it was already deduced by start_subfile. */
43f3e411 10357 if (!(cu->language == language_c
40e3ad0e 10358 && COMPUNIT_FILETABS (cust)->language != language_unknown))
43f3e411 10359 COMPUNIT_FILETABS (cust)->language = cu->language;
8be455d7
JK
10360
10361 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
10362 produce DW_AT_location with location lists but it can be possibly
ab260dad
JK
10363 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
10364 there were bugs in prologue debug info, fixed later in GCC-4.5
10365 by "unwind info for epilogues" patch (which is not directly related).
8be455d7
JK
10366
10367 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
10368 needed, it would be wrong due to missing DW_AT_producer there.
10369
10370 Still one can confuse GDB by using non-standard GCC compilation
10371 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
10372 */
ab260dad 10373 if (cu->has_loclist && gcc_4_minor >= 5)
43f3e411 10374 cust->locations_valid = 1;
e0d00bc7
JK
10375
10376 if (gcc_4_minor >= 5)
43f3e411 10377 cust->epilogue_unwind_valid = 1;
96408a79 10378
43f3e411 10379 cust->call_site_htab = cu->call_site_htab;
c906108c 10380 }
9291a0cd
TT
10381
10382 if (dwarf2_per_objfile->using_index)
43f3e411 10383 per_cu->v.quick->compunit_symtab = cust;
9291a0cd
TT
10384 else
10385 {
10386 struct partial_symtab *pst = per_cu->v.psymtab;
43f3e411 10387 pst->compunit_symtab = cust;
9291a0cd
TT
10388 pst->readin = 1;
10389 }
c906108c 10390
95554aad 10391 /* Push it for inclusion processing later. */
c5d0225d 10392 dwarf2_per_objfile->just_read_cus.push_back (per_cu);
804d2729
TT
10393
10394 /* Not needed any more. */
c24bdb02 10395 cu->reset_builder ();
f4dc4d17 10396}
45cfd468 10397
f4dc4d17
DE
10398/* Generate full symbol information for type unit PER_CU, whose DIEs have
10399 already been loaded into memory. */
10400
10401static void
10402process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
10403 enum language pretend_language)
10404{
10405 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618
SM
10406 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10407 struct objfile *objfile = dwarf2_per_objfile->objfile;
43f3e411 10408 struct compunit_symtab *cust;
0186c6a7
DE
10409 struct signatured_type *sig_type;
10410
10411 gdb_assert (per_cu->is_debug_types);
10412 sig_type = (struct signatured_type *) per_cu;
f4dc4d17 10413
c89b44cd
TT
10414 /* Clear the list here in case something was left over. */
10415 cu->method_list.clear ();
f4dc4d17 10416
f4dc4d17
DE
10417 cu->language = pretend_language;
10418 cu->language_defn = language_def (cu->language);
10419
10420 /* The symbol tables are set up in read_type_unit_scope. */
10421 process_die (cu->dies, cu);
10422
10423 /* For now fudge the Go package. */
10424 if (cu->language == language_go)
10425 fixup_go_packaging (cu);
10426
10427 /* Now that we have processed all the DIEs in the CU, all the types
10428 should be complete, and it should now be safe to compute all of the
10429 physnames. */
10430 compute_delayed_physnames (cu);
f4dc4d17 10431
c9317f21
TT
10432 if (cu->language == language_rust)
10433 rust_union_quirks (cu);
10434
f4dc4d17
DE
10435 /* TUs share symbol tables.
10436 If this is the first TU to use this symtab, complete the construction
094b34ac
DE
10437 of it with end_expandable_symtab. Otherwise, complete the addition of
10438 this TU's symbols to the existing symtab. */
43f3e411 10439 if (sig_type->type_unit_group->compunit_symtab == NULL)
45cfd468 10440 {
c24bdb02
KS
10441 buildsym_compunit *builder = cu->get_builder ();
10442 cust = builder->end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
43f3e411 10443 sig_type->type_unit_group->compunit_symtab = cust;
f4dc4d17 10444
43f3e411 10445 if (cust != NULL)
f4dc4d17
DE
10446 {
10447 /* Set symtab language to language from DW_AT_language. If the
10448 compilation is from a C file generated by language preprocessors,
10449 do not set the language if it was already deduced by
10450 start_subfile. */
43f3e411
DE
10451 if (!(cu->language == language_c
10452 && COMPUNIT_FILETABS (cust)->language != language_c))
10453 COMPUNIT_FILETABS (cust)->language = cu->language;
f4dc4d17
DE
10454 }
10455 }
10456 else
10457 {
c24bdb02 10458 cu->get_builder ()->augment_type_symtab ();
43f3e411 10459 cust = sig_type->type_unit_group->compunit_symtab;
f4dc4d17
DE
10460 }
10461
10462 if (dwarf2_per_objfile->using_index)
43f3e411 10463 per_cu->v.quick->compunit_symtab = cust;
f4dc4d17
DE
10464 else
10465 {
10466 struct partial_symtab *pst = per_cu->v.psymtab;
43f3e411 10467 pst->compunit_symtab = cust;
f4dc4d17 10468 pst->readin = 1;
45cfd468 10469 }
804d2729
TT
10470
10471 /* Not needed any more. */
c24bdb02 10472 cu->reset_builder ();
c906108c
SS
10473}
10474
95554aad
TT
10475/* Process an imported unit DIE. */
10476
10477static void
10478process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
10479{
10480 struct attribute *attr;
10481
f4dc4d17
DE
10482 /* For now we don't handle imported units in type units. */
10483 if (cu->per_cu->is_debug_types)
10484 {
10485 error (_("Dwarf Error: DW_TAG_imported_unit is not"
10486 " supported in type units [in module %s]"),
518817b3 10487 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
f4dc4d17
DE
10488 }
10489
95554aad
TT
10490 attr = dwarf2_attr (die, DW_AT_import, cu);
10491 if (attr != NULL)
10492 {
9c541725
PA
10493 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
10494 bool is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
10495 dwarf2_per_cu_data *per_cu
e3b94546 10496 = dwarf2_find_containing_comp_unit (sect_off, is_dwz,
518817b3 10497 cu->per_cu->dwarf2_per_objfile);
95554aad 10498
69d751e3 10499 /* If necessary, add it to the queue and load its DIEs. */
95554aad 10500 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
58f0c718 10501 load_full_comp_unit (per_cu, false, cu->language);
95554aad 10502
796a7ff8 10503 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
95554aad
TT
10504 per_cu);
10505 }
10506}
10507
4c8aa72d
PA
10508/* RAII object that represents a process_die scope: i.e.,
10509 starts/finishes processing a DIE. */
10510class process_die_scope
adde2bff 10511{
4c8aa72d
PA
10512public:
10513 process_die_scope (die_info *die, dwarf2_cu *cu)
10514 : m_die (die), m_cu (cu)
10515 {
10516 /* We should only be processing DIEs not already in process. */
10517 gdb_assert (!m_die->in_process);
10518 m_die->in_process = true;
10519 }
8c3cb9fa 10520
4c8aa72d
PA
10521 ~process_die_scope ()
10522 {
10523 m_die->in_process = false;
10524
10525 /* If we're done processing the DIE for the CU that owns the line
10526 header, we don't need the line header anymore. */
10527 if (m_cu->line_header_die_owner == m_die)
10528 {
10529 delete m_cu->line_header;
10530 m_cu->line_header = NULL;
10531 m_cu->line_header_die_owner = NULL;
10532 }
10533 }
10534
10535private:
10536 die_info *m_die;
10537 dwarf2_cu *m_cu;
10538};
adde2bff 10539
c906108c
SS
10540/* Process a die and its children. */
10541
10542static void
e7c27a73 10543process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 10544{
4c8aa72d 10545 process_die_scope scope (die, cu);
adde2bff 10546
c906108c
SS
10547 switch (die->tag)
10548 {
10549 case DW_TAG_padding:
10550 break;
10551 case DW_TAG_compile_unit:
95554aad 10552 case DW_TAG_partial_unit:
e7c27a73 10553 read_file_scope (die, cu);
c906108c 10554 break;
348e048f
DE
10555 case DW_TAG_type_unit:
10556 read_type_unit_scope (die, cu);
10557 break;
c906108c 10558 case DW_TAG_subprogram:
c906108c 10559 case DW_TAG_inlined_subroutine:
edb3359d 10560 read_func_scope (die, cu);
c906108c
SS
10561 break;
10562 case DW_TAG_lexical_block:
14898363
L
10563 case DW_TAG_try_block:
10564 case DW_TAG_catch_block:
e7c27a73 10565 read_lexical_block_scope (die, cu);
c906108c 10566 break;
216f72a1 10567 case DW_TAG_call_site:
96408a79
SA
10568 case DW_TAG_GNU_call_site:
10569 read_call_site_scope (die, cu);
10570 break;
c906108c 10571 case DW_TAG_class_type:
680b30c7 10572 case DW_TAG_interface_type:
c906108c
SS
10573 case DW_TAG_structure_type:
10574 case DW_TAG_union_type:
134d01f1 10575 process_structure_scope (die, cu);
c906108c
SS
10576 break;
10577 case DW_TAG_enumeration_type:
134d01f1 10578 process_enumeration_scope (die, cu);
c906108c 10579 break;
134d01f1 10580
f792889a
DJ
10581 /* These dies have a type, but processing them does not create
10582 a symbol or recurse to process the children. Therefore we can
10583 read them on-demand through read_type_die. */
c906108c 10584 case DW_TAG_subroutine_type:
72019c9c 10585 case DW_TAG_set_type:
c906108c 10586 case DW_TAG_array_type:
c906108c 10587 case DW_TAG_pointer_type:
c906108c 10588 case DW_TAG_ptr_to_member_type:
c906108c 10589 case DW_TAG_reference_type:
4297a3f0 10590 case DW_TAG_rvalue_reference_type:
c906108c 10591 case DW_TAG_string_type:
c906108c 10592 break;
134d01f1 10593
c906108c 10594 case DW_TAG_base_type:
a02abb62 10595 case DW_TAG_subrange_type:
cb249c71 10596 case DW_TAG_typedef:
134d01f1
DJ
10597 /* Add a typedef symbol for the type definition, if it has a
10598 DW_AT_name. */
f792889a 10599 new_symbol (die, read_type_die (die, cu), cu);
a02abb62 10600 break;
c906108c 10601 case DW_TAG_common_block:
e7c27a73 10602 read_common_block (die, cu);
c906108c
SS
10603 break;
10604 case DW_TAG_common_inclusion:
10605 break;
d9fa45fe 10606 case DW_TAG_namespace:
9068261f 10607 cu->processing_has_namespace_info = true;
e7c27a73 10608 read_namespace (die, cu);
d9fa45fe 10609 break;
5d7cb8df 10610 case DW_TAG_module:
9068261f 10611 cu->processing_has_namespace_info = true;
5d7cb8df
JK
10612 read_module (die, cu);
10613 break;
d9fa45fe 10614 case DW_TAG_imported_declaration:
9068261f 10615 cu->processing_has_namespace_info = true;
74921315
KS
10616 if (read_namespace_alias (die, cu))
10617 break;
86a73007
TT
10618 /* The declaration is not a global namespace alias. */
10619 /* Fall through. */
d9fa45fe 10620 case DW_TAG_imported_module:
9068261f 10621 cu->processing_has_namespace_info = true;
27aa8d6a
SW
10622 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
10623 || cu->language != language_fortran))
b98664d3 10624 complaint (_("Tag '%s' has unexpected children"),
27aa8d6a
SW
10625 dwarf_tag_name (die->tag));
10626 read_import_statement (die, cu);
d9fa45fe 10627 break;
95554aad
TT
10628
10629 case DW_TAG_imported_unit:
10630 process_imported_unit_die (die, cu);
10631 break;
10632
71a3c369
TT
10633 case DW_TAG_variable:
10634 read_variable (die, cu);
10635 break;
10636
c906108c 10637 default:
e7c27a73 10638 new_symbol (die, NULL, cu);
c906108c
SS
10639 break;
10640 }
10641}
ca69b9e6
DE
10642\f
10643/* DWARF name computation. */
c906108c 10644
94af9270
KS
10645/* A helper function for dwarf2_compute_name which determines whether DIE
10646 needs to have the name of the scope prepended to the name listed in the
10647 die. */
10648
10649static int
10650die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
10651{
1c809c68
TT
10652 struct attribute *attr;
10653
94af9270
KS
10654 switch (die->tag)
10655 {
10656 case DW_TAG_namespace:
10657 case DW_TAG_typedef:
10658 case DW_TAG_class_type:
10659 case DW_TAG_interface_type:
10660 case DW_TAG_structure_type:
10661 case DW_TAG_union_type:
10662 case DW_TAG_enumeration_type:
10663 case DW_TAG_enumerator:
10664 case DW_TAG_subprogram:
08a76f8a 10665 case DW_TAG_inlined_subroutine:
94af9270 10666 case DW_TAG_member:
74921315 10667 case DW_TAG_imported_declaration:
94af9270
KS
10668 return 1;
10669
10670 case DW_TAG_variable:
c2b0a229 10671 case DW_TAG_constant:
94af9270
KS
10672 /* We only need to prefix "globally" visible variables. These include
10673 any variable marked with DW_AT_external or any variable that
10674 lives in a namespace. [Variables in anonymous namespaces
10675 require prefixing, but they are not DW_AT_external.] */
10676
10677 if (dwarf2_attr (die, DW_AT_specification, cu))
10678 {
10679 struct dwarf2_cu *spec_cu = cu;
9a619af0 10680
94af9270
KS
10681 return die_needs_namespace (die_specification (die, &spec_cu),
10682 spec_cu);
10683 }
10684
1c809c68 10685 attr = dwarf2_attr (die, DW_AT_external, cu);
f55ee35c
JK
10686 if (attr == NULL && die->parent->tag != DW_TAG_namespace
10687 && die->parent->tag != DW_TAG_module)
1c809c68
TT
10688 return 0;
10689 /* A variable in a lexical block of some kind does not need a
10690 namespace, even though in C++ such variables may be external
10691 and have a mangled name. */
10692 if (die->parent->tag == DW_TAG_lexical_block
10693 || die->parent->tag == DW_TAG_try_block
1054b214
TT
10694 || die->parent->tag == DW_TAG_catch_block
10695 || die->parent->tag == DW_TAG_subprogram)
1c809c68
TT
10696 return 0;
10697 return 1;
94af9270
KS
10698
10699 default:
10700 return 0;
10701 }
10702}
10703
73b9be8b
KS
10704/* Return the DIE's linkage name attribute, either DW_AT_linkage_name
10705 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10706 defined for the given DIE. */
10707
10708static struct attribute *
10709dw2_linkage_name_attr (struct die_info *die, struct dwarf2_cu *cu)
10710{
10711 struct attribute *attr;
10712
10713 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
10714 if (attr == NULL)
10715 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
10716
10717 return attr;
10718}
10719
10720/* Return the DIE's linkage name as a string, either DW_AT_linkage_name
10721 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10722 defined for the given DIE. */
10723
10724static const char *
10725dw2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
10726{
10727 const char *linkage_name;
10728
10729 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
10730 if (linkage_name == NULL)
10731 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
10732
10733 return linkage_name;
10734}
10735
94af9270 10736/* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
a766d390 10737 compute the physname for the object, which include a method's:
9c37b5ae 10738 - formal parameters (C++),
a766d390 10739 - receiver type (Go),
a766d390
DE
10740
10741 The term "physname" is a bit confusing.
10742 For C++, for example, it is the demangled name.
10743 For Go, for example, it's the mangled name.
94af9270 10744
af6b7be1
JB
10745 For Ada, return the DIE's linkage name rather than the fully qualified
10746 name. PHYSNAME is ignored..
10747
94af9270
KS
10748 The result is allocated on the objfile_obstack and canonicalized. */
10749
10750static const char *
15d034d0
TT
10751dwarf2_compute_name (const char *name,
10752 struct die_info *die, struct dwarf2_cu *cu,
94af9270
KS
10753 int physname)
10754{
518817b3 10755 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
bb5ed363 10756
94af9270
KS
10757 if (name == NULL)
10758 name = dwarf2_name (die, cu);
10759
2ee7123e
DE
10760 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
10761 but otherwise compute it by typename_concat inside GDB.
10762 FIXME: Actually this is not really true, or at least not always true.
10763 It's all very confusing. SYMBOL_SET_NAMES doesn't try to demangle
5e2db402 10764 Fortran names because there is no mangling standard. So new_symbol
2ee7123e
DE
10765 will set the demangled name to the result of dwarf2_full_name, and it is
10766 the demangled name that GDB uses if it exists. */
f55ee35c
JK
10767 if (cu->language == language_ada
10768 || (cu->language == language_fortran && physname))
10769 {
10770 /* For Ada unit, we prefer the linkage name over the name, as
10771 the former contains the exported name, which the user expects
10772 to be able to reference. Ideally, we want the user to be able
10773 to reference this entity using either natural or linkage name,
10774 but we haven't started looking at this enhancement yet. */
73b9be8b 10775 const char *linkage_name = dw2_linkage_name (die, cu);
f55ee35c 10776
2ee7123e
DE
10777 if (linkage_name != NULL)
10778 return linkage_name;
f55ee35c
JK
10779 }
10780
94af9270
KS
10781 /* These are the only languages we know how to qualify names in. */
10782 if (name != NULL
9c37b5ae 10783 && (cu->language == language_cplus
c44af4eb
TT
10784 || cu->language == language_fortran || cu->language == language_d
10785 || cu->language == language_rust))
94af9270
KS
10786 {
10787 if (die_needs_namespace (die, cu))
10788 {
0d5cff50 10789 const char *prefix;
34a68019 10790 const char *canonical_name = NULL;
94af9270 10791
d7e74731
PA
10792 string_file buf;
10793
94af9270 10794 prefix = determine_prefix (die, cu);
94af9270
KS
10795 if (*prefix != '\0')
10796 {
f55ee35c
JK
10797 char *prefixed_name = typename_concat (NULL, prefix, name,
10798 physname, cu);
9a619af0 10799
d7e74731 10800 buf.puts (prefixed_name);
94af9270
KS
10801 xfree (prefixed_name);
10802 }
10803 else
d7e74731 10804 buf.puts (name);
94af9270 10805
98bfdba5
PA
10806 /* Template parameters may be specified in the DIE's DW_AT_name, or
10807 as children with DW_TAG_template_type_param or
10808 DW_TAG_value_type_param. If the latter, add them to the name
10809 here. If the name already has template parameters, then
10810 skip this step; some versions of GCC emit both, and
10811 it is more efficient to use the pre-computed name.
10812
10813 Something to keep in mind about this process: it is very
10814 unlikely, or in some cases downright impossible, to produce
10815 something that will match the mangled name of a function.
10816 If the definition of the function has the same debug info,
10817 we should be able to match up with it anyway. But fallbacks
10818 using the minimal symbol, for instance to find a method
10819 implemented in a stripped copy of libstdc++, will not work.
10820 If we do not have debug info for the definition, we will have to
10821 match them up some other way.
10822
10823 When we do name matching there is a related problem with function
10824 templates; two instantiated function templates are allowed to
10825 differ only by their return types, which we do not add here. */
10826
10827 if (cu->language == language_cplus && strchr (name, '<') == NULL)
10828 {
10829 struct attribute *attr;
10830 struct die_info *child;
10831 int first = 1;
10832
10833 die->building_fullname = 1;
10834
10835 for (child = die->child; child != NULL; child = child->sibling)
10836 {
10837 struct type *type;
12df843f 10838 LONGEST value;
d521ce57 10839 const gdb_byte *bytes;
98bfdba5
PA
10840 struct dwarf2_locexpr_baton *baton;
10841 struct value *v;
10842
10843 if (child->tag != DW_TAG_template_type_param
10844 && child->tag != DW_TAG_template_value_param)
10845 continue;
10846
10847 if (first)
10848 {
d7e74731 10849 buf.puts ("<");
98bfdba5
PA
10850 first = 0;
10851 }
10852 else
d7e74731 10853 buf.puts (", ");
98bfdba5
PA
10854
10855 attr = dwarf2_attr (child, DW_AT_type, cu);
10856 if (attr == NULL)
10857 {
b98664d3 10858 complaint (_("template parameter missing DW_AT_type"));
d7e74731 10859 buf.puts ("UNKNOWN_TYPE");
98bfdba5
PA
10860 continue;
10861 }
10862 type = die_type (child, cu);
10863
10864 if (child->tag == DW_TAG_template_type_param)
10865 {
c1ec8cea
TT
10866 c_print_type (type, "", &buf, -1, 0, cu->language,
10867 &type_print_raw_options);
98bfdba5
PA
10868 continue;
10869 }
10870
10871 attr = dwarf2_attr (child, DW_AT_const_value, cu);
10872 if (attr == NULL)
10873 {
b98664d3 10874 complaint (_("template parameter missing "
3e43a32a 10875 "DW_AT_const_value"));
d7e74731 10876 buf.puts ("UNKNOWN_VALUE");
98bfdba5
PA
10877 continue;
10878 }
10879
10880 dwarf2_const_value_attr (attr, type, name,
10881 &cu->comp_unit_obstack, cu,
10882 &value, &bytes, &baton);
10883
10884 if (TYPE_NOSIGN (type))
10885 /* GDB prints characters as NUMBER 'CHAR'. If that's
10886 changed, this can use value_print instead. */
d7e74731 10887 c_printchar (value, type, &buf);
98bfdba5
PA
10888 else
10889 {
10890 struct value_print_options opts;
10891
10892 if (baton != NULL)
10893 v = dwarf2_evaluate_loc_desc (type, NULL,
10894 baton->data,
10895 baton->size,
10896 baton->per_cu);
10897 else if (bytes != NULL)
10898 {
10899 v = allocate_value (type);
10900 memcpy (value_contents_writeable (v), bytes,
10901 TYPE_LENGTH (type));
10902 }
10903 else
10904 v = value_from_longest (type, value);
10905
3e43a32a
MS
10906 /* Specify decimal so that we do not depend on
10907 the radix. */
98bfdba5
PA
10908 get_formatted_print_options (&opts, 'd');
10909 opts.raw = 1;
d7e74731 10910 value_print (v, &buf, &opts);
98bfdba5 10911 release_value (v);
98bfdba5
PA
10912 }
10913 }
10914
10915 die->building_fullname = 0;
10916
10917 if (!first)
10918 {
10919 /* Close the argument list, with a space if necessary
10920 (nested templates). */
d7e74731
PA
10921 if (!buf.empty () && buf.string ().back () == '>')
10922 buf.puts (" >");
98bfdba5 10923 else
d7e74731 10924 buf.puts (">");
98bfdba5
PA
10925 }
10926 }
10927
9c37b5ae 10928 /* For C++ methods, append formal parameter type
94af9270 10929 information, if PHYSNAME. */
6e70227d 10930
94af9270 10931 if (physname && die->tag == DW_TAG_subprogram
9c37b5ae 10932 && cu->language == language_cplus)
94af9270
KS
10933 {
10934 struct type *type = read_type_die (die, cu);
10935
d7e74731 10936 c_type_print_args (type, &buf, 1, cu->language,
79d43c61 10937 &type_print_raw_options);
94af9270 10938
9c37b5ae 10939 if (cu->language == language_cplus)
94af9270 10940 {
60430eff
DJ
10941 /* Assume that an artificial first parameter is
10942 "this", but do not crash if it is not. RealView
10943 marks unnamed (and thus unused) parameters as
10944 artificial; there is no way to differentiate
10945 the two cases. */
94af9270
KS
10946 if (TYPE_NFIELDS (type) > 0
10947 && TYPE_FIELD_ARTIFICIAL (type, 0)
60430eff 10948 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
3e43a32a
MS
10949 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
10950 0))))
d7e74731 10951 buf.puts (" const");
94af9270
KS
10952 }
10953 }
10954
d7e74731 10955 const std::string &intermediate_name = buf.string ();
94af9270
KS
10956
10957 if (cu->language == language_cplus)
34a68019 10958 canonical_name
322a8516 10959 = dwarf2_canonicalize_name (intermediate_name.c_str (), cu,
34a68019
TT
10960 &objfile->per_bfd->storage_obstack);
10961
10962 /* If we only computed INTERMEDIATE_NAME, or if
10963 INTERMEDIATE_NAME is already canonical, then we need to
10964 copy it to the appropriate obstack. */
322a8516 10965 if (canonical_name == NULL || canonical_name == intermediate_name.c_str ())
224c3ddb
SM
10966 name = ((const char *)
10967 obstack_copy0 (&objfile->per_bfd->storage_obstack,
322a8516
PA
10968 intermediate_name.c_str (),
10969 intermediate_name.length ()));
34a68019
TT
10970 else
10971 name = canonical_name;
94af9270
KS
10972 }
10973 }
10974
10975 return name;
10976}
10977
0114d602
DJ
10978/* Return the fully qualified name of DIE, based on its DW_AT_name.
10979 If scope qualifiers are appropriate they will be added. The result
34a68019 10980 will be allocated on the storage_obstack, or NULL if the DIE does
94af9270
KS
10981 not have a name. NAME may either be from a previous call to
10982 dwarf2_name or NULL.
10983
9c37b5ae 10984 The output string will be canonicalized (if C++). */
0114d602
DJ
10985
10986static const char *
15d034d0 10987dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
0114d602 10988{
94af9270
KS
10989 return dwarf2_compute_name (name, die, cu, 0);
10990}
0114d602 10991
94af9270
KS
10992/* Construct a physname for the given DIE in CU. NAME may either be
10993 from a previous call to dwarf2_name or NULL. The result will be
10994 allocated on the objfile_objstack or NULL if the DIE does not have a
10995 name.
0114d602 10996
9c37b5ae 10997 The output string will be canonicalized (if C++). */
0114d602 10998
94af9270 10999static const char *
15d034d0 11000dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
94af9270 11001{
518817b3 11002 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
900e11f9 11003 const char *retval, *mangled = NULL, *canon = NULL;
900e11f9
JK
11004 int need_copy = 1;
11005
11006 /* In this case dwarf2_compute_name is just a shortcut not building anything
11007 on its own. */
11008 if (!die_needs_namespace (die, cu))
11009 return dwarf2_compute_name (name, die, cu, 1);
11010
73b9be8b 11011 mangled = dw2_linkage_name (die, cu);
900e11f9 11012
e98c9e7c
TT
11013 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
11014 See https://github.com/rust-lang/rust/issues/32925. */
11015 if (cu->language == language_rust && mangled != NULL
11016 && strchr (mangled, '{') != NULL)
11017 mangled = NULL;
11018
900e11f9
JK
11019 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
11020 has computed. */
791afaa2 11021 gdb::unique_xmalloc_ptr<char> demangled;
7d45c7c3 11022 if (mangled != NULL)
900e11f9 11023 {
900e11f9 11024
59cc4834
JB
11025 if (language_def (cu->language)->la_store_sym_names_in_linkage_form_p)
11026 {
11027 /* Do nothing (do not demangle the symbol name). */
11028 }
11029 else if (cu->language == language_go)
a766d390 11030 {
5e2db402
TT
11031 /* This is a lie, but we already lie to the caller new_symbol.
11032 new_symbol assumes we return the mangled name.
a766d390 11033 This just undoes that lie until things are cleaned up. */
a766d390
DE
11034 }
11035 else
11036 {
0eb876f5
JB
11037 /* Use DMGL_RET_DROP for C++ template functions to suppress
11038 their return type. It is easier for GDB users to search
11039 for such functions as `name(params)' than `long name(params)'.
11040 In such case the minimal symbol names do not match the full
11041 symbol names but for template functions there is never a need
11042 to look up their definition from their declaration so
11043 the only disadvantage remains the minimal symbol variant
11044 `long name(params)' does not have the proper inferior type. */
791afaa2
TT
11045 demangled.reset (gdb_demangle (mangled,
11046 (DMGL_PARAMS | DMGL_ANSI
11047 | DMGL_RET_DROP)));
a766d390 11048 }
900e11f9 11049 if (demangled)
791afaa2 11050 canon = demangled.get ();
900e11f9
JK
11051 else
11052 {
11053 canon = mangled;
11054 need_copy = 0;
11055 }
11056 }
11057
11058 if (canon == NULL || check_physname)
11059 {
11060 const char *physname = dwarf2_compute_name (name, die, cu, 1);
11061
11062 if (canon != NULL && strcmp (physname, canon) != 0)
11063 {
11064 /* It may not mean a bug in GDB. The compiler could also
11065 compute DW_AT_linkage_name incorrectly. But in such case
11066 GDB would need to be bug-to-bug compatible. */
11067
b98664d3 11068 complaint (_("Computed physname <%s> does not match demangled <%s> "
9d8780f0
SM
11069 "(from linkage <%s>) - DIE at %s [in module %s]"),
11070 physname, canon, mangled, sect_offset_str (die->sect_off),
4262abfb 11071 objfile_name (objfile));
900e11f9
JK
11072
11073 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
11074 is available here - over computed PHYSNAME. It is safer
11075 against both buggy GDB and buggy compilers. */
11076
11077 retval = canon;
11078 }
11079 else
11080 {
11081 retval = physname;
11082 need_copy = 0;
11083 }
11084 }
11085 else
11086 retval = canon;
11087
11088 if (need_copy)
224c3ddb
SM
11089 retval = ((const char *)
11090 obstack_copy0 (&objfile->per_bfd->storage_obstack,
11091 retval, strlen (retval)));
900e11f9 11092
900e11f9 11093 return retval;
0114d602
DJ
11094}
11095
74921315
KS
11096/* Inspect DIE in CU for a namespace alias. If one exists, record
11097 a new symbol for it.
11098
11099 Returns 1 if a namespace alias was recorded, 0 otherwise. */
11100
11101static int
11102read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
11103{
11104 struct attribute *attr;
11105
11106 /* If the die does not have a name, this is not a namespace
11107 alias. */
11108 attr = dwarf2_attr (die, DW_AT_name, cu);
11109 if (attr != NULL)
11110 {
11111 int num;
11112 struct die_info *d = die;
11113 struct dwarf2_cu *imported_cu = cu;
11114
11115 /* If the compiler has nested DW_AT_imported_declaration DIEs,
11116 keep inspecting DIEs until we hit the underlying import. */
11117#define MAX_NESTED_IMPORTED_DECLARATIONS 100
11118 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
11119 {
11120 attr = dwarf2_attr (d, DW_AT_import, cu);
11121 if (attr == NULL)
11122 break;
11123
11124 d = follow_die_ref (d, attr, &imported_cu);
11125 if (d->tag != DW_TAG_imported_declaration)
11126 break;
11127 }
11128
11129 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
11130 {
b98664d3 11131 complaint (_("DIE at %s has too many recursively imported "
9d8780f0 11132 "declarations"), sect_offset_str (d->sect_off));
74921315
KS
11133 return 0;
11134 }
11135
11136 if (attr != NULL)
11137 {
11138 struct type *type;
9c541725 11139 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
74921315 11140
9c541725 11141 type = get_die_type_at_offset (sect_off, cu->per_cu);
74921315
KS
11142 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
11143 {
11144 /* This declaration is a global namespace alias. Add
11145 a symbol for it whose type is the aliased namespace. */
11146 new_symbol (die, type, cu);
11147 return 1;
11148 }
11149 }
11150 }
11151
11152 return 0;
11153}
11154
22cee43f 11155/* Return the using directives repository (global or local?) to use in the
804d2729 11156 current context for CU.
22cee43f
PMR
11157
11158 For Ada, imported declarations can materialize renamings, which *may* be
11159 global. However it is impossible (for now?) in DWARF to distinguish
11160 "external" imported declarations and "static" ones. As all imported
11161 declarations seem to be static in all other languages, make them all CU-wide
11162 global only in Ada. */
11163
11164static struct using_direct **
804d2729 11165using_directives (struct dwarf2_cu *cu)
22cee43f 11166{
c24bdb02
KS
11167 if (cu->language == language_ada
11168 && cu->get_builder ()->outermost_context_p ())
11169 return cu->get_builder ()->get_global_using_directives ();
22cee43f 11170 else
c24bdb02 11171 return cu->get_builder ()->get_local_using_directives ();
22cee43f
PMR
11172}
11173
27aa8d6a
SW
11174/* Read the import statement specified by the given die and record it. */
11175
11176static void
11177read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
11178{
518817b3 11179 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
27aa8d6a 11180 struct attribute *import_attr;
32019081 11181 struct die_info *imported_die, *child_die;
de4affc9 11182 struct dwarf2_cu *imported_cu;
27aa8d6a 11183 const char *imported_name;
794684b6 11184 const char *imported_name_prefix;
13387711
SW
11185 const char *canonical_name;
11186 const char *import_alias;
11187 const char *imported_declaration = NULL;
794684b6 11188 const char *import_prefix;
eb1e02fd 11189 std::vector<const char *> excludes;
13387711 11190
27aa8d6a
SW
11191 import_attr = dwarf2_attr (die, DW_AT_import, cu);
11192 if (import_attr == NULL)
11193 {
b98664d3 11194 complaint (_("Tag '%s' has no DW_AT_import"),
27aa8d6a
SW
11195 dwarf_tag_name (die->tag));
11196 return;
11197 }
11198
de4affc9
CC
11199 imported_cu = cu;
11200 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
11201 imported_name = dwarf2_name (imported_die, imported_cu);
27aa8d6a
SW
11202 if (imported_name == NULL)
11203 {
11204 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
11205
11206 The import in the following code:
11207 namespace A
11208 {
11209 typedef int B;
11210 }
11211
11212 int main ()
11213 {
11214 using A::B;
11215 B b;
11216 return b;
11217 }
11218
11219 ...
11220 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
11221 <52> DW_AT_decl_file : 1
11222 <53> DW_AT_decl_line : 6
11223 <54> DW_AT_import : <0x75>
11224 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
11225 <59> DW_AT_name : B
11226 <5b> DW_AT_decl_file : 1
11227 <5c> DW_AT_decl_line : 2
11228 <5d> DW_AT_type : <0x6e>
11229 ...
11230 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
11231 <76> DW_AT_byte_size : 4
11232 <77> DW_AT_encoding : 5 (signed)
11233
11234 imports the wrong die ( 0x75 instead of 0x58 ).
11235 This case will be ignored until the gcc bug is fixed. */
11236 return;
11237 }
11238
82856980
SW
11239 /* Figure out the local name after import. */
11240 import_alias = dwarf2_name (die, cu);
27aa8d6a 11241
794684b6
SW
11242 /* Figure out where the statement is being imported to. */
11243 import_prefix = determine_prefix (die, cu);
11244
11245 /* Figure out what the scope of the imported die is and prepend it
11246 to the name of the imported die. */
de4affc9 11247 imported_name_prefix = determine_prefix (imported_die, imported_cu);
794684b6 11248
f55ee35c
JK
11249 if (imported_die->tag != DW_TAG_namespace
11250 && imported_die->tag != DW_TAG_module)
794684b6 11251 {
13387711
SW
11252 imported_declaration = imported_name;
11253 canonical_name = imported_name_prefix;
794684b6 11254 }
13387711 11255 else if (strlen (imported_name_prefix) > 0)
12aaed36 11256 canonical_name = obconcat (&objfile->objfile_obstack,
45280282
IB
11257 imported_name_prefix,
11258 (cu->language == language_d ? "." : "::"),
11259 imported_name, (char *) NULL);
13387711
SW
11260 else
11261 canonical_name = imported_name;
794684b6 11262
32019081
JK
11263 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
11264 for (child_die = die->child; child_die && child_die->tag;
11265 child_die = sibling_die (child_die))
11266 {
11267 /* DWARF-4: A Fortran use statement with a “rename list” may be
11268 represented by an imported module entry with an import attribute
11269 referring to the module and owned entries corresponding to those
11270 entities that are renamed as part of being imported. */
11271
11272 if (child_die->tag != DW_TAG_imported_declaration)
11273 {
b98664d3 11274 complaint (_("child DW_TAG_imported_declaration expected "
9d8780f0
SM
11275 "- DIE at %s [in module %s]"),
11276 sect_offset_str (child_die->sect_off),
11277 objfile_name (objfile));
32019081
JK
11278 continue;
11279 }
11280
11281 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
11282 if (import_attr == NULL)
11283 {
b98664d3 11284 complaint (_("Tag '%s' has no DW_AT_import"),
32019081
JK
11285 dwarf_tag_name (child_die->tag));
11286 continue;
11287 }
11288
11289 imported_cu = cu;
11290 imported_die = follow_die_ref_or_sig (child_die, import_attr,
11291 &imported_cu);
11292 imported_name = dwarf2_name (imported_die, imported_cu);
11293 if (imported_name == NULL)
11294 {
b98664d3 11295 complaint (_("child DW_TAG_imported_declaration has unknown "
9d8780f0
SM
11296 "imported name - DIE at %s [in module %s]"),
11297 sect_offset_str (child_die->sect_off),
11298 objfile_name (objfile));
32019081
JK
11299 continue;
11300 }
11301
eb1e02fd 11302 excludes.push_back (imported_name);
32019081
JK
11303
11304 process_die (child_die, cu);
11305 }
11306
804d2729 11307 add_using_directive (using_directives (cu),
22cee43f
PMR
11308 import_prefix,
11309 canonical_name,
11310 import_alias,
11311 imported_declaration,
11312 excludes,
11313 0,
11314 &objfile->objfile_obstack);
27aa8d6a
SW
11315}
11316
5230b05a
WT
11317/* ICC<14 does not output the required DW_AT_declaration on incomplete
11318 types, but gives them a size of zero. Starting with version 14,
11319 ICC is compatible with GCC. */
11320
9068261f 11321static bool
5230b05a
WT
11322producer_is_icc_lt_14 (struct dwarf2_cu *cu)
11323{
11324 if (!cu->checked_producer)
11325 check_producer (cu);
11326
11327 return cu->producer_is_icc_lt_14;
11328}
11329
eb77c9df
AB
11330/* ICC generates a DW_AT_type for C void functions. This was observed on
11331 ICC 14.0.5.212, and appears to be against the DWARF spec (V5 3.3.2)
11332 which says that void functions should not have a DW_AT_type. */
11333
11334static bool
11335producer_is_icc (struct dwarf2_cu *cu)
11336{
11337 if (!cu->checked_producer)
11338 check_producer (cu);
11339
11340 return cu->producer_is_icc;
11341}
11342
1b80a9fa
JK
11343/* Check for possibly missing DW_AT_comp_dir with relative .debug_line
11344 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
11345 this, it was first present in GCC release 4.3.0. */
11346
9068261f 11347static bool
1b80a9fa
JK
11348producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
11349{
11350 if (!cu->checked_producer)
11351 check_producer (cu);
11352
11353 return cu->producer_is_gcc_lt_4_3;
11354}
11355
d721ba37
PA
11356static file_and_directory
11357find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu)
9291a0cd 11358{
d721ba37
PA
11359 file_and_directory res;
11360
9291a0cd
TT
11361 /* Find the filename. Do not use dwarf2_name here, since the filename
11362 is not a source language identifier. */
d721ba37
PA
11363 res.name = dwarf2_string_attr (die, DW_AT_name, cu);
11364 res.comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
9291a0cd 11365
d721ba37
PA
11366 if (res.comp_dir == NULL
11367 && producer_is_gcc_lt_4_3 (cu) && res.name != NULL
11368 && IS_ABSOLUTE_PATH (res.name))
9291a0cd 11369 {
d721ba37
PA
11370 res.comp_dir_storage = ldirname (res.name);
11371 if (!res.comp_dir_storage.empty ())
11372 res.comp_dir = res.comp_dir_storage.c_str ();
9291a0cd 11373 }
d721ba37 11374 if (res.comp_dir != NULL)
9291a0cd
TT
11375 {
11376 /* Irix 6.2 native cc prepends <machine>.: to the compilation
11377 directory, get rid of it. */
d721ba37 11378 const char *cp = strchr (res.comp_dir, ':');
9291a0cd 11379
d721ba37
PA
11380 if (cp && cp != res.comp_dir && cp[-1] == '.' && cp[1] == '/')
11381 res.comp_dir = cp + 1;
9291a0cd
TT
11382 }
11383
d721ba37
PA
11384 if (res.name == NULL)
11385 res.name = "<unknown>";
11386
11387 return res;
9291a0cd
TT
11388}
11389
f4dc4d17
DE
11390/* Handle DW_AT_stmt_list for a compilation unit.
11391 DIE is the DW_TAG_compile_unit die for CU.
c3b7b696
YQ
11392 COMP_DIR is the compilation directory. LOWPC is passed to
11393 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
2ab95328
TT
11394
11395static void
11396handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
c3b7b696 11397 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
2ab95328 11398{
518817b3
SM
11399 struct dwarf2_per_objfile *dwarf2_per_objfile
11400 = cu->per_cu->dwarf2_per_objfile;
527f3840 11401 struct objfile *objfile = dwarf2_per_objfile->objfile;
2ab95328 11402 struct attribute *attr;
527f3840
JK
11403 struct line_header line_header_local;
11404 hashval_t line_header_local_hash;
527f3840
JK
11405 void **slot;
11406 int decode_mapping;
2ab95328 11407
f4dc4d17
DE
11408 gdb_assert (! cu->per_cu->is_debug_types);
11409
2ab95328 11410 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
527f3840
JK
11411 if (attr == NULL)
11412 return;
11413
9c541725 11414 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
527f3840
JK
11415
11416 /* The line header hash table is only created if needed (it exists to
11417 prevent redundant reading of the line table for partial_units).
11418 If we're given a partial_unit, we'll need it. If we're given a
11419 compile_unit, then use the line header hash table if it's already
11420 created, but don't create one just yet. */
11421
11422 if (dwarf2_per_objfile->line_header_hash == NULL
11423 && die->tag == DW_TAG_partial_unit)
2ab95328 11424 {
527f3840
JK
11425 dwarf2_per_objfile->line_header_hash
11426 = htab_create_alloc_ex (127, line_header_hash_voidp,
11427 line_header_eq_voidp,
11428 free_line_header_voidp,
11429 &objfile->objfile_obstack,
11430 hashtab_obstack_allocate,
11431 dummy_obstack_deallocate);
11432 }
2ab95328 11433
9c541725 11434 line_header_local.sect_off = line_offset;
527f3840
JK
11435 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
11436 line_header_local_hash = line_header_hash (&line_header_local);
11437 if (dwarf2_per_objfile->line_header_hash != NULL)
11438 {
11439 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11440 &line_header_local,
11441 line_header_local_hash, NO_INSERT);
11442
11443 /* For DW_TAG_compile_unit we need info like symtab::linetable which
11444 is not present in *SLOT (since if there is something in *SLOT then
11445 it will be for a partial_unit). */
11446 if (die->tag == DW_TAG_partial_unit && slot != NULL)
dee91e82 11447 {
527f3840 11448 gdb_assert (*slot != NULL);
9a3c8263 11449 cu->line_header = (struct line_header *) *slot;
527f3840 11450 return;
dee91e82 11451 }
2ab95328 11452 }
527f3840
JK
11453
11454 /* dwarf_decode_line_header does not yet provide sufficient information.
11455 We always have to call also dwarf_decode_lines for it. */
fff8551c
PA
11456 line_header_up lh = dwarf_decode_line_header (line_offset, cu);
11457 if (lh == NULL)
527f3840 11458 return;
4c8aa72d
PA
11459
11460 cu->line_header = lh.release ();
11461 cu->line_header_die_owner = die;
527f3840
JK
11462
11463 if (dwarf2_per_objfile->line_header_hash == NULL)
11464 slot = NULL;
11465 else
11466 {
11467 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11468 &line_header_local,
11469 line_header_local_hash, INSERT);
11470 gdb_assert (slot != NULL);
11471 }
11472 if (slot != NULL && *slot == NULL)
11473 {
11474 /* This newly decoded line number information unit will be owned
11475 by line_header_hash hash table. */
11476 *slot = cu->line_header;
4c8aa72d 11477 cu->line_header_die_owner = NULL;
527f3840
JK
11478 }
11479 else
11480 {
11481 /* We cannot free any current entry in (*slot) as that struct line_header
11482 may be already used by multiple CUs. Create only temporary decoded
11483 line_header for this CU - it may happen at most once for each line
11484 number information unit. And if we're not using line_header_hash
11485 then this is what we want as well. */
11486 gdb_assert (die->tag != DW_TAG_partial_unit);
527f3840
JK
11487 }
11488 decode_mapping = (die->tag != DW_TAG_partial_unit);
11489 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
11490 decode_mapping);
fff8551c 11491
2ab95328
TT
11492}
11493
95554aad 11494/* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
ae2de4f8 11495
c906108c 11496static void
e7c27a73 11497read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 11498{
518817b3
SM
11499 struct dwarf2_per_objfile *dwarf2_per_objfile
11500 = cu->per_cu->dwarf2_per_objfile;
dee91e82 11501 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 11502 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2acceee2 11503 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
11504 CORE_ADDR highpc = ((CORE_ADDR) 0);
11505 struct attribute *attr;
c906108c 11506 struct die_info *child_die;
e142c38c 11507 CORE_ADDR baseaddr;
6e70227d 11508
380618d6 11509 prepare_one_comp_unit (cu, die, cu->language);
e142c38c 11510 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 11511
fae299cd 11512 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
11513
11514 /* If we didn't find a lowpc, set it to highpc to avoid complaints
11515 from finish_block. */
2acceee2 11516 if (lowpc == ((CORE_ADDR) -1))
c906108c 11517 lowpc = highpc;
3e29f34a 11518 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
c906108c 11519
d721ba37 11520 file_and_directory fnd = find_file_and_directory (die, cu);
e1024ff1 11521
f4b8a18d
KW
11522 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
11523 standardised yet. As a workaround for the language detection we fall
11524 back to the DW_AT_producer string. */
11525 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
11526 cu->language = language_opencl;
11527
3019eac3
DE
11528 /* Similar hack for Go. */
11529 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
11530 set_cu_language (DW_LANG_Go, cu);
11531
c24bdb02 11532 cu->start_symtab (fnd.name, fnd.comp_dir, lowpc);
3019eac3
DE
11533
11534 /* Decode line number information if present. We do this before
11535 processing child DIEs, so that the line header table is available
11536 for DW_AT_decl_file. */
d721ba37 11537 handle_DW_AT_stmt_list (die, cu, fnd.comp_dir, lowpc);
3019eac3
DE
11538
11539 /* Process all dies in compilation unit. */
11540 if (die->child != NULL)
11541 {
11542 child_die = die->child;
11543 while (child_die && child_die->tag)
11544 {
11545 process_die (child_die, cu);
11546 child_die = sibling_die (child_die);
11547 }
11548 }
11549
11550 /* Decode macro information, if present. Dwarf 2 macro information
11551 refers to information in the line number info statement program
11552 header, so we can only read it if we've read the header
11553 successfully. */
0af92d60
JK
11554 attr = dwarf2_attr (die, DW_AT_macros, cu);
11555 if (attr == NULL)
11556 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
3019eac3
DE
11557 if (attr && cu->line_header)
11558 {
11559 if (dwarf2_attr (die, DW_AT_macro_info, cu))
b98664d3 11560 complaint (_("CU refers to both DW_AT_macros and DW_AT_macro_info"));
3019eac3 11561
43f3e411 11562 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
3019eac3
DE
11563 }
11564 else
11565 {
11566 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
11567 if (attr && cu->line_header)
11568 {
11569 unsigned int macro_offset = DW_UNSND (attr);
11570
43f3e411 11571 dwarf_decode_macros (cu, macro_offset, 0);
3019eac3
DE
11572 }
11573 }
3019eac3
DE
11574}
11575
c24bdb02
KS
11576void
11577dwarf2_cu::setup_type_unit_groups (struct die_info *die)
3019eac3 11578{
f4dc4d17
DE
11579 struct type_unit_group *tu_group;
11580 int first_time;
3019eac3 11581 struct attribute *attr;
9c541725 11582 unsigned int i;
0186c6a7 11583 struct signatured_type *sig_type;
3019eac3 11584
f4dc4d17 11585 gdb_assert (per_cu->is_debug_types);
0186c6a7 11586 sig_type = (struct signatured_type *) per_cu;
3019eac3 11587
c24bdb02 11588 attr = dwarf2_attr (die, DW_AT_stmt_list, this);
3019eac3 11589
f4dc4d17 11590 /* If we're using .gdb_index (includes -readnow) then
74e04d1c 11591 per_cu->type_unit_group may not have been set up yet. */
0186c6a7 11592 if (sig_type->type_unit_group == NULL)
c24bdb02 11593 sig_type->type_unit_group = get_type_unit_group (this, attr);
0186c6a7 11594 tu_group = sig_type->type_unit_group;
f4dc4d17
DE
11595
11596 /* If we've already processed this stmt_list there's no real need to
11597 do it again, we could fake it and just recreate the part we need
11598 (file name,index -> symtab mapping). If data shows this optimization
11599 is useful we can do it then. */
43f3e411 11600 first_time = tu_group->compunit_symtab == NULL;
f4dc4d17
DE
11601
11602 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
11603 debug info. */
fff8551c 11604 line_header_up lh;
f4dc4d17 11605 if (attr != NULL)
3019eac3 11606 {
9c541725 11607 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
c24bdb02 11608 lh = dwarf_decode_line_header (line_offset, this);
f4dc4d17
DE
11609 }
11610 if (lh == NULL)
11611 {
11612 if (first_time)
c24bdb02 11613 start_symtab ("", NULL, 0);
f4dc4d17
DE
11614 else
11615 {
11616 gdb_assert (tu_group->symtabs == NULL);
c24bdb02 11617 gdb_assert (m_builder == nullptr);
804d2729 11618 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11619 m_builder.reset (new struct buildsym_compunit
11620 (COMPUNIT_OBJFILE (cust), "",
11621 COMPUNIT_DIRNAME (cust),
11622 compunit_language (cust),
11623 0, cust));
f4dc4d17 11624 }
f4dc4d17 11625 return;
3019eac3
DE
11626 }
11627
c24bdb02
KS
11628 line_header = lh.release ();
11629 line_header_die_owner = die;
3019eac3 11630
f4dc4d17
DE
11631 if (first_time)
11632 {
c24bdb02 11633 struct compunit_symtab *cust = start_symtab ("", NULL, 0);
3019eac3 11634
1fd60fc0
DE
11635 /* Note: We don't assign tu_group->compunit_symtab yet because we're
11636 still initializing it, and our caller (a few levels up)
11637 process_full_type_unit still needs to know if this is the first
11638 time. */
11639
c24bdb02 11640 tu_group->num_symtabs = line_header->file_names.size ();
4c8aa72d 11641 tu_group->symtabs = XNEWVEC (struct symtab *,
c24bdb02 11642 line_header->file_names.size ());
3019eac3 11643
c24bdb02 11644 for (i = 0; i < line_header->file_names.size (); ++i)
f4dc4d17 11645 {
c24bdb02 11646 file_entry &fe = line_header->file_names[i];
3019eac3 11647
c24bdb02
KS
11648 dwarf2_start_subfile (this, fe.name,
11649 fe.include_dir (line_header));
11650 buildsym_compunit *b = get_builder ();
11651 if (b->get_current_subfile ()->symtab == NULL)
f4dc4d17 11652 {
4c8aa72d
PA
11653 /* NOTE: start_subfile will recognize when it's been
11654 passed a file it has already seen. So we can't
11655 assume there's a simple mapping from
11656 cu->line_header->file_names to subfiles, plus
11657 cu->line_header->file_names may contain dups. */
c24bdb02
KS
11658 b->get_current_subfile ()->symtab
11659 = allocate_symtab (cust, b->get_current_subfile ()->name);
f4dc4d17
DE
11660 }
11661
c24bdb02 11662 fe.symtab = b->get_current_subfile ()->symtab;
8c43009f 11663 tu_group->symtabs[i] = fe.symtab;
f4dc4d17
DE
11664 }
11665 }
11666 else
3019eac3 11667 {
c24bdb02 11668 gdb_assert (m_builder == nullptr);
804d2729 11669 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11670 m_builder.reset (new struct buildsym_compunit
11671 (COMPUNIT_OBJFILE (cust), "",
11672 COMPUNIT_DIRNAME (cust),
11673 compunit_language (cust),
11674 0, cust));
f4dc4d17 11675
c24bdb02 11676 for (i = 0; i < line_header->file_names.size (); ++i)
f4dc4d17 11677 {
c24bdb02 11678 file_entry &fe = line_header->file_names[i];
f4dc4d17 11679
4c8aa72d 11680 fe.symtab = tu_group->symtabs[i];
f4dc4d17 11681 }
3019eac3
DE
11682 }
11683
f4dc4d17
DE
11684 /* The main symtab is allocated last. Type units don't have DW_AT_name
11685 so they don't have a "real" (so to speak) symtab anyway.
11686 There is later code that will assign the main symtab to all symbols
11687 that don't have one. We need to handle the case of a symbol with a
11688 missing symtab (DW_AT_decl_file) anyway. */
11689}
3019eac3 11690
f4dc4d17
DE
11691/* Process DW_TAG_type_unit.
11692 For TUs we want to skip the first top level sibling if it's not the
11693 actual type being defined by this TU. In this case the first top
11694 level sibling is there to provide context only. */
3019eac3 11695
f4dc4d17
DE
11696static void
11697read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
11698{
11699 struct die_info *child_die;
3019eac3 11700
f4dc4d17
DE
11701 prepare_one_comp_unit (cu, die, language_minimal);
11702
11703 /* Initialize (or reinitialize) the machinery for building symtabs.
11704 We do this before processing child DIEs, so that the line header table
11705 is available for DW_AT_decl_file. */
c24bdb02 11706 cu->setup_type_unit_groups (die);
f4dc4d17
DE
11707
11708 if (die->child != NULL)
11709 {
11710 child_die = die->child;
11711 while (child_die && child_die->tag)
11712 {
11713 process_die (child_die, cu);
11714 child_die = sibling_die (child_die);
11715 }
11716 }
3019eac3
DE
11717}
11718\f
80626a55
DE
11719/* DWO/DWP files.
11720
11721 http://gcc.gnu.org/wiki/DebugFission
11722 http://gcc.gnu.org/wiki/DebugFissionDWP
11723
11724 To simplify handling of both DWO files ("object" files with the DWARF info)
11725 and DWP files (a file with the DWOs packaged up into one file), we treat
11726 DWP files as having a collection of virtual DWO files. */
3019eac3
DE
11727
11728static hashval_t
11729hash_dwo_file (const void *item)
11730{
9a3c8263 11731 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
a2ce51a0 11732 hashval_t hash;
3019eac3 11733
a2ce51a0
DE
11734 hash = htab_hash_string (dwo_file->dwo_name);
11735 if (dwo_file->comp_dir != NULL)
11736 hash += htab_hash_string (dwo_file->comp_dir);
11737 return hash;
3019eac3
DE
11738}
11739
11740static int
11741eq_dwo_file (const void *item_lhs, const void *item_rhs)
11742{
9a3c8263
SM
11743 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
11744 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
3019eac3 11745
a2ce51a0
DE
11746 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
11747 return 0;
11748 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
11749 return lhs->comp_dir == rhs->comp_dir;
11750 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
3019eac3
DE
11751}
11752
11753/* Allocate a hash table for DWO files. */
11754
51ac9db5 11755static htab_up
ed2dc618 11756allocate_dwo_file_hash_table (struct objfile *objfile)
3019eac3 11757{
51ac9db5
SM
11758 auto delete_dwo_file = [] (void *item)
11759 {
11760 struct dwo_file *dwo_file = (struct dwo_file *) item;
11761
11762 delete dwo_file;
11763 };
11764
11765 return htab_up (htab_create_alloc_ex (41,
11766 hash_dwo_file,
11767 eq_dwo_file,
11768 delete_dwo_file,
11769 &objfile->objfile_obstack,
11770 hashtab_obstack_allocate,
11771 dummy_obstack_deallocate));
3019eac3
DE
11772}
11773
80626a55
DE
11774/* Lookup DWO file DWO_NAME. */
11775
11776static void **
ed2dc618
SM
11777lookup_dwo_file_slot (struct dwarf2_per_objfile *dwarf2_per_objfile,
11778 const char *dwo_name,
11779 const char *comp_dir)
80626a55
DE
11780{
11781 struct dwo_file find_entry;
11782 void **slot;
11783
11784 if (dwarf2_per_objfile->dwo_files == NULL)
ed2dc618
SM
11785 dwarf2_per_objfile->dwo_files
11786 = allocate_dwo_file_hash_table (dwarf2_per_objfile->objfile);
80626a55 11787
0ac5b59e
DE
11788 find_entry.dwo_name = dwo_name;
11789 find_entry.comp_dir = comp_dir;
51ac9db5
SM
11790 slot = htab_find_slot (dwarf2_per_objfile->dwo_files.get (), &find_entry,
11791 INSERT);
80626a55
DE
11792
11793 return slot;
11794}
11795
3019eac3
DE
11796static hashval_t
11797hash_dwo_unit (const void *item)
11798{
9a3c8263 11799 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3
DE
11800
11801 /* This drops the top 32 bits of the id, but is ok for a hash. */
11802 return dwo_unit->signature;
11803}
11804
11805static int
11806eq_dwo_unit (const void *item_lhs, const void *item_rhs)
11807{
9a3c8263
SM
11808 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
11809 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
3019eac3
DE
11810
11811 /* The signature is assumed to be unique within the DWO file.
11812 So while object file CU dwo_id's always have the value zero,
11813 that's OK, assuming each object file DWO file has only one CU,
11814 and that's the rule for now. */
11815 return lhs->signature == rhs->signature;
11816}
11817
11818/* Allocate a hash table for DWO CUs,TUs.
11819 There is one of these tables for each of CUs,TUs for each DWO file. */
11820
11821static htab_t
11822allocate_dwo_unit_table (struct objfile *objfile)
11823{
11824 /* Start out with a pretty small number.
11825 Generally DWO files contain only one CU and maybe some TUs. */
11826 return htab_create_alloc_ex (3,
11827 hash_dwo_unit,
11828 eq_dwo_unit,
11829 NULL,
11830 &objfile->objfile_obstack,
11831 hashtab_obstack_allocate,
11832 dummy_obstack_deallocate);
11833}
11834
80626a55 11835/* Structure used to pass data to create_dwo_debug_info_hash_table_reader. */
3019eac3 11836
19c3d4c9 11837struct create_dwo_cu_data
3019eac3
DE
11838{
11839 struct dwo_file *dwo_file;
19c3d4c9 11840 struct dwo_unit dwo_unit;
3019eac3
DE
11841};
11842
19c3d4c9 11843/* die_reader_func for create_dwo_cu. */
3019eac3
DE
11844
11845static void
19c3d4c9
DE
11846create_dwo_cu_reader (const struct die_reader_specs *reader,
11847 const gdb_byte *info_ptr,
11848 struct die_info *comp_unit_die,
11849 int has_children,
11850 void *datap)
3019eac3
DE
11851{
11852 struct dwarf2_cu *cu = reader->cu;
9c541725 11853 sect_offset sect_off = cu->per_cu->sect_off;
8a0459fd 11854 struct dwarf2_section_info *section = cu->per_cu->section;
9a3c8263 11855 struct create_dwo_cu_data *data = (struct create_dwo_cu_data *) datap;
3019eac3 11856 struct dwo_file *dwo_file = data->dwo_file;
19c3d4c9 11857 struct dwo_unit *dwo_unit = &data->dwo_unit;
3019eac3 11858 struct attribute *attr;
3019eac3
DE
11859
11860 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
11861 if (attr == NULL)
11862 {
b98664d3 11863 complaint (_("Dwarf Error: debug entry at offset %s is missing"
19c3d4c9 11864 " its dwo_id [in module %s]"),
9d8780f0 11865 sect_offset_str (sect_off), dwo_file->dwo_name);
3019eac3
DE
11866 return;
11867 }
11868
3019eac3
DE
11869 dwo_unit->dwo_file = dwo_file;
11870 dwo_unit->signature = DW_UNSND (attr);
8a0459fd 11871 dwo_unit->section = section;
9c541725 11872 dwo_unit->sect_off = sect_off;
3019eac3
DE
11873 dwo_unit->length = cu->per_cu->length;
11874
b4f54984 11875 if (dwarf_read_debug)
9d8780f0
SM
11876 fprintf_unfiltered (gdb_stdlog, " offset %s, dwo_id %s\n",
11877 sect_offset_str (sect_off),
9c541725 11878 hex_string (dwo_unit->signature));
3019eac3
DE
11879}
11880
33c5cd75 11881/* Create the dwo_units for the CUs in a DWO_FILE.
19c3d4c9 11882 Note: This function processes DWO files only, not DWP files. */
3019eac3 11883
33c5cd75 11884static void
ed2dc618
SM
11885create_cus_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
11886 struct dwo_file &dwo_file, dwarf2_section_info &section,
33c5cd75 11887 htab_t &cus_htab)
3019eac3
DE
11888{
11889 struct objfile *objfile = dwarf2_per_objfile->objfile;
d521ce57 11890 const gdb_byte *info_ptr, *end_ptr;
3019eac3 11891
33c5cd75
DB
11892 dwarf2_read_section (objfile, &section);
11893 info_ptr = section.buffer;
3019eac3
DE
11894
11895 if (info_ptr == NULL)
33c5cd75 11896 return;
3019eac3 11897
b4f54984 11898 if (dwarf_read_debug)
19c3d4c9
DE
11899 {
11900 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
33c5cd75
DB
11901 get_section_name (&section),
11902 get_section_file_name (&section));
19c3d4c9 11903 }
3019eac3 11904
33c5cd75 11905 end_ptr = info_ptr + section.size;
3019eac3
DE
11906 while (info_ptr < end_ptr)
11907 {
11908 struct dwarf2_per_cu_data per_cu;
33c5cd75
DB
11909 struct create_dwo_cu_data create_dwo_cu_data;
11910 struct dwo_unit *dwo_unit;
11911 void **slot;
11912 sect_offset sect_off = (sect_offset) (info_ptr - section.buffer);
3019eac3 11913
19c3d4c9
DE
11914 memset (&create_dwo_cu_data.dwo_unit, 0,
11915 sizeof (create_dwo_cu_data.dwo_unit));
3019eac3 11916 memset (&per_cu, 0, sizeof (per_cu));
e3b94546 11917 per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
3019eac3 11918 per_cu.is_debug_types = 0;
33c5cd75
DB
11919 per_cu.sect_off = sect_offset (info_ptr - section.buffer);
11920 per_cu.section = &section;
c5ed0576 11921 create_dwo_cu_data.dwo_file = &dwo_file;
33c5cd75
DB
11922
11923 init_cutu_and_read_dies_no_follow (
11924 &per_cu, &dwo_file, create_dwo_cu_reader, &create_dwo_cu_data);
11925 info_ptr += per_cu.length;
11926
11927 // If the unit could not be parsed, skip it.
11928 if (create_dwo_cu_data.dwo_unit.dwo_file == NULL)
11929 continue;
3019eac3 11930
33c5cd75
DB
11931 if (cus_htab == NULL)
11932 cus_htab = allocate_dwo_unit_table (objfile);
19c3d4c9 11933
33c5cd75
DB
11934 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
11935 *dwo_unit = create_dwo_cu_data.dwo_unit;
11936 slot = htab_find_slot (cus_htab, dwo_unit, INSERT);
11937 gdb_assert (slot != NULL);
11938 if (*slot != NULL)
19c3d4c9 11939 {
33c5cd75
DB
11940 const struct dwo_unit *dup_cu = (const struct dwo_unit *)*slot;
11941 sect_offset dup_sect_off = dup_cu->sect_off;
19c3d4c9 11942
b98664d3 11943 complaint (_("debug cu entry at offset %s is duplicate to"
9d8780f0
SM
11944 " the entry at offset %s, signature %s"),
11945 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
33c5cd75 11946 hex_string (dwo_unit->signature));
19c3d4c9 11947 }
33c5cd75 11948 *slot = (void *)dwo_unit;
3019eac3 11949 }
3019eac3
DE
11950}
11951
80626a55
DE
11952/* DWP file .debug_{cu,tu}_index section format:
11953 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
11954
d2415c6c
DE
11955 DWP Version 1:
11956
80626a55
DE
11957 Both index sections have the same format, and serve to map a 64-bit
11958 signature to a set of section numbers. Each section begins with a header,
11959 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
11960 indexes, and a pool of 32-bit section numbers. The index sections will be
11961 aligned at 8-byte boundaries in the file.
11962
d2415c6c
DE
11963 The index section header consists of:
11964
11965 V, 32 bit version number
11966 -, 32 bits unused
11967 N, 32 bit number of compilation units or type units in the index
11968 M, 32 bit number of slots in the hash table
80626a55 11969
d2415c6c 11970 Numbers are recorded using the byte order of the application binary.
80626a55 11971
d2415c6c
DE
11972 The hash table begins at offset 16 in the section, and consists of an array
11973 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
11974 order of the application binary). Unused slots in the hash table are 0.
11975 (We rely on the extreme unlikeliness of a signature being exactly 0.)
80626a55 11976
d2415c6c
DE
11977 The parallel table begins immediately after the hash table
11978 (at offset 16 + 8 * M from the beginning of the section), and consists of an
11979 array of 32-bit indexes (using the byte order of the application binary),
11980 corresponding 1-1 with slots in the hash table. Each entry in the parallel
11981 table contains a 32-bit index into the pool of section numbers. For unused
11982 hash table slots, the corresponding entry in the parallel table will be 0.
80626a55 11983
73869dc2
DE
11984 The pool of section numbers begins immediately following the hash table
11985 (at offset 16 + 12 * M from the beginning of the section). The pool of
11986 section numbers consists of an array of 32-bit words (using the byte order
11987 of the application binary). Each item in the array is indexed starting
11988 from 0. The hash table entry provides the index of the first section
11989 number in the set. Additional section numbers in the set follow, and the
11990 set is terminated by a 0 entry (section number 0 is not used in ELF).
11991
11992 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
11993 section must be the first entry in the set, and the .debug_abbrev.dwo must
11994 be the second entry. Other members of the set may follow in any order.
11995
11996 ---
11997
11998 DWP Version 2:
11999
12000 DWP Version 2 combines all the .debug_info, etc. sections into one,
12001 and the entries in the index tables are now offsets into these sections.
12002 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
12003 section.
12004
12005 Index Section Contents:
12006 Header
12007 Hash Table of Signatures dwp_hash_table.hash_table
12008 Parallel Table of Indices dwp_hash_table.unit_table
12009 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
12010 Table of Section Sizes dwp_hash_table.v2.sizes
12011
12012 The index section header consists of:
12013
12014 V, 32 bit version number
12015 L, 32 bit number of columns in the table of section offsets
12016 N, 32 bit number of compilation units or type units in the index
12017 M, 32 bit number of slots in the hash table
12018
12019 Numbers are recorded using the byte order of the application binary.
12020
12021 The hash table has the same format as version 1.
12022 The parallel table of indices has the same format as version 1,
12023 except that the entries are origin-1 indices into the table of sections
12024 offsets and the table of section sizes.
12025
12026 The table of offsets begins immediately following the parallel table
12027 (at offset 16 + 12 * M from the beginning of the section). The table is
12028 a two-dimensional array of 32-bit words (using the byte order of the
12029 application binary), with L columns and N+1 rows, in row-major order.
12030 Each row in the array is indexed starting from 0. The first row provides
12031 a key to the remaining rows: each column in this row provides an identifier
12032 for a debug section, and the offsets in the same column of subsequent rows
12033 refer to that section. The section identifiers are:
12034
12035 DW_SECT_INFO 1 .debug_info.dwo
12036 DW_SECT_TYPES 2 .debug_types.dwo
12037 DW_SECT_ABBREV 3 .debug_abbrev.dwo
12038 DW_SECT_LINE 4 .debug_line.dwo
12039 DW_SECT_LOC 5 .debug_loc.dwo
12040 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
12041 DW_SECT_MACINFO 7 .debug_macinfo.dwo
12042 DW_SECT_MACRO 8 .debug_macro.dwo
12043
12044 The offsets provided by the CU and TU index sections are the base offsets
12045 for the contributions made by each CU or TU to the corresponding section
12046 in the package file. Each CU and TU header contains an abbrev_offset
12047 field, used to find the abbreviations table for that CU or TU within the
12048 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
12049 be interpreted as relative to the base offset given in the index section.
12050 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
12051 should be interpreted as relative to the base offset for .debug_line.dwo,
12052 and offsets into other debug sections obtained from DWARF attributes should
12053 also be interpreted as relative to the corresponding base offset.
12054
12055 The table of sizes begins immediately following the table of offsets.
12056 Like the table of offsets, it is a two-dimensional array of 32-bit words,
12057 with L columns and N rows, in row-major order. Each row in the array is
12058 indexed starting from 1 (row 0 is shared by the two tables).
12059
12060 ---
12061
12062 Hash table lookup is handled the same in version 1 and 2:
12063
12064 We assume that N and M will not exceed 2^32 - 1.
12065 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
12066
d2415c6c
DE
12067 Given a 64-bit compilation unit signature or a type signature S, an entry
12068 in the hash table is located as follows:
80626a55 12069
d2415c6c
DE
12070 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
12071 the low-order k bits all set to 1.
80626a55 12072
d2415c6c 12073 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
80626a55 12074
d2415c6c
DE
12075 3) If the hash table entry at index H matches the signature, use that
12076 entry. If the hash table entry at index H is unused (all zeroes),
12077 terminate the search: the signature is not present in the table.
80626a55 12078
d2415c6c 12079 4) Let H = (H + H') modulo M. Repeat at Step 3.
80626a55 12080
d2415c6c 12081 Because M > N and H' and M are relatively prime, the search is guaranteed
73869dc2 12082 to stop at an unused slot or find the match. */
80626a55
DE
12083
12084/* Create a hash table to map DWO IDs to their CU/TU entry in
12085 .debug_{info,types}.dwo in DWP_FILE.
12086 Returns NULL if there isn't one.
12087 Note: This function processes DWP files only, not DWO files. */
12088
12089static struct dwp_hash_table *
ed2dc618
SM
12090create_dwp_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
12091 struct dwp_file *dwp_file, int is_debug_types)
80626a55
DE
12092{
12093 struct objfile *objfile = dwarf2_per_objfile->objfile;
400174b1 12094 bfd *dbfd = dwp_file->dbfd.get ();
948f8e3d 12095 const gdb_byte *index_ptr, *index_end;
80626a55 12096 struct dwarf2_section_info *index;
73869dc2 12097 uint32_t version, nr_columns, nr_units, nr_slots;
80626a55
DE
12098 struct dwp_hash_table *htab;
12099
12100 if (is_debug_types)
12101 index = &dwp_file->sections.tu_index;
12102 else
12103 index = &dwp_file->sections.cu_index;
12104
12105 if (dwarf2_section_empty_p (index))
12106 return NULL;
12107 dwarf2_read_section (objfile, index);
12108
12109 index_ptr = index->buffer;
12110 index_end = index_ptr + index->size;
12111
12112 version = read_4_bytes (dbfd, index_ptr);
73869dc2
DE
12113 index_ptr += 4;
12114 if (version == 2)
12115 nr_columns = read_4_bytes (dbfd, index_ptr);
12116 else
12117 nr_columns = 0;
12118 index_ptr += 4;
80626a55
DE
12119 nr_units = read_4_bytes (dbfd, index_ptr);
12120 index_ptr += 4;
12121 nr_slots = read_4_bytes (dbfd, index_ptr);
12122 index_ptr += 4;
12123
73869dc2 12124 if (version != 1 && version != 2)
80626a55 12125 {
21aa081e 12126 error (_("Dwarf Error: unsupported DWP file version (%s)"
80626a55 12127 " [in module %s]"),
21aa081e 12128 pulongest (version), dwp_file->name);
80626a55
DE
12129 }
12130 if (nr_slots != (nr_slots & -nr_slots))
12131 {
21aa081e 12132 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
80626a55 12133 " is not power of 2 [in module %s]"),
21aa081e 12134 pulongest (nr_slots), dwp_file->name);
80626a55
DE
12135 }
12136
12137 htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
73869dc2
DE
12138 htab->version = version;
12139 htab->nr_columns = nr_columns;
80626a55
DE
12140 htab->nr_units = nr_units;
12141 htab->nr_slots = nr_slots;
12142 htab->hash_table = index_ptr;
12143 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
73869dc2
DE
12144
12145 /* Exit early if the table is empty. */
12146 if (nr_slots == 0 || nr_units == 0
12147 || (version == 2 && nr_columns == 0))
12148 {
12149 /* All must be zero. */
12150 if (nr_slots != 0 || nr_units != 0
12151 || (version == 2 && nr_columns != 0))
12152 {
b98664d3 12153 complaint (_("Empty DWP but nr_slots,nr_units,nr_columns not"
73869dc2
DE
12154 " all zero [in modules %s]"),
12155 dwp_file->name);
12156 }
12157 return htab;
12158 }
12159
12160 if (version == 1)
12161 {
12162 htab->section_pool.v1.indices =
12163 htab->unit_table + sizeof (uint32_t) * nr_slots;
12164 /* It's harder to decide whether the section is too small in v1.
12165 V1 is deprecated anyway so we punt. */
12166 }
12167 else
12168 {
12169 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
12170 int *ids = htab->section_pool.v2.section_ids;
04fd5eed 12171 size_t sizeof_ids = sizeof (htab->section_pool.v2.section_ids);
73869dc2
DE
12172 /* Reverse map for error checking. */
12173 int ids_seen[DW_SECT_MAX + 1];
12174 int i;
12175
12176 if (nr_columns < 2)
12177 {
12178 error (_("Dwarf Error: bad DWP hash table, too few columns"
12179 " in section table [in module %s]"),
12180 dwp_file->name);
12181 }
12182 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
12183 {
12184 error (_("Dwarf Error: bad DWP hash table, too many columns"
12185 " in section table [in module %s]"),
12186 dwp_file->name);
12187 }
04fd5eed
GB
12188 memset (ids, 255, sizeof_ids);
12189 memset (ids_seen, 255, sizeof (ids_seen));
73869dc2
DE
12190 for (i = 0; i < nr_columns; ++i)
12191 {
12192 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
12193
12194 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
12195 {
12196 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
12197 " in section table [in module %s]"),
12198 id, dwp_file->name);
12199 }
12200 if (ids_seen[id] != -1)
12201 {
12202 error (_("Dwarf Error: bad DWP hash table, duplicate section"
12203 " id %d in section table [in module %s]"),
12204 id, dwp_file->name);
12205 }
12206 ids_seen[id] = i;
12207 ids[i] = id;
12208 }
12209 /* Must have exactly one info or types section. */
12210 if (((ids_seen[DW_SECT_INFO] != -1)
12211 + (ids_seen[DW_SECT_TYPES] != -1))
12212 != 1)
12213 {
12214 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
12215 " DWO info/types section [in module %s]"),
12216 dwp_file->name);
12217 }
12218 /* Must have an abbrev section. */
12219 if (ids_seen[DW_SECT_ABBREV] == -1)
12220 {
12221 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
12222 " section [in module %s]"),
12223 dwp_file->name);
12224 }
12225 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
12226 htab->section_pool.v2.sizes =
12227 htab->section_pool.v2.offsets + (sizeof (uint32_t)
12228 * nr_units * nr_columns);
12229 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
12230 * nr_units * nr_columns))
12231 > index_end)
12232 {
12233 error (_("Dwarf Error: DWP index section is corrupt (too small)"
12234 " [in module %s]"),
12235 dwp_file->name);
12236 }
12237 }
80626a55
DE
12238
12239 return htab;
12240}
12241
12242/* Update SECTIONS with the data from SECTP.
12243
12244 This function is like the other "locate" section routines that are
12245 passed to bfd_map_over_sections, but in this context the sections to
73869dc2 12246 read comes from the DWP V1 hash table, not the full ELF section table.
80626a55
DE
12247
12248 The result is non-zero for success, or zero if an error was found. */
12249
12250static int
73869dc2
DE
12251locate_v1_virtual_dwo_sections (asection *sectp,
12252 struct virtual_v1_dwo_sections *sections)
80626a55
DE
12253{
12254 const struct dwop_section_names *names = &dwop_section_names;
12255
12256 if (section_is_p (sectp->name, &names->abbrev_dwo))
12257 {
12258 /* There can be only one. */
049412e3 12259 if (sections->abbrev.s.section != NULL)
80626a55 12260 return 0;
049412e3 12261 sections->abbrev.s.section = sectp;
80626a55
DE
12262 sections->abbrev.size = bfd_get_section_size (sectp);
12263 }
12264 else if (section_is_p (sectp->name, &names->info_dwo)
12265 || section_is_p (sectp->name, &names->types_dwo))
12266 {
12267 /* There can be only one. */
049412e3 12268 if (sections->info_or_types.s.section != NULL)
80626a55 12269 return 0;
049412e3 12270 sections->info_or_types.s.section = sectp;
80626a55
DE
12271 sections->info_or_types.size = bfd_get_section_size (sectp);
12272 }
12273 else if (section_is_p (sectp->name, &names->line_dwo))
12274 {
12275 /* There can be only one. */
049412e3 12276 if (sections->line.s.section != NULL)
80626a55 12277 return 0;
049412e3 12278 sections->line.s.section = sectp;
80626a55
DE
12279 sections->line.size = bfd_get_section_size (sectp);
12280 }
12281 else if (section_is_p (sectp->name, &names->loc_dwo))
12282 {
12283 /* There can be only one. */
049412e3 12284 if (sections->loc.s.section != NULL)
80626a55 12285 return 0;
049412e3 12286 sections->loc.s.section = sectp;
80626a55
DE
12287 sections->loc.size = bfd_get_section_size (sectp);
12288 }
12289 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12290 {
12291 /* There can be only one. */
049412e3 12292 if (sections->macinfo.s.section != NULL)
80626a55 12293 return 0;
049412e3 12294 sections->macinfo.s.section = sectp;
80626a55
DE
12295 sections->macinfo.size = bfd_get_section_size (sectp);
12296 }
12297 else if (section_is_p (sectp->name, &names->macro_dwo))
12298 {
12299 /* There can be only one. */
049412e3 12300 if (sections->macro.s.section != NULL)
80626a55 12301 return 0;
049412e3 12302 sections->macro.s.section = sectp;
80626a55
DE
12303 sections->macro.size = bfd_get_section_size (sectp);
12304 }
12305 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12306 {
12307 /* There can be only one. */
049412e3 12308 if (sections->str_offsets.s.section != NULL)
80626a55 12309 return 0;
049412e3 12310 sections->str_offsets.s.section = sectp;
80626a55
DE
12311 sections->str_offsets.size = bfd_get_section_size (sectp);
12312 }
12313 else
12314 {
12315 /* No other kind of section is valid. */
12316 return 0;
12317 }
12318
12319 return 1;
12320}
12321
73869dc2
DE
12322/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12323 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12324 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12325 This is for DWP version 1 files. */
80626a55
DE
12326
12327static struct dwo_unit *
ed2dc618
SM
12328create_dwo_unit_in_dwp_v1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12329 struct dwp_file *dwp_file,
73869dc2
DE
12330 uint32_t unit_index,
12331 const char *comp_dir,
12332 ULONGEST signature, int is_debug_types)
80626a55
DE
12333{
12334 struct objfile *objfile = dwarf2_per_objfile->objfile;
73869dc2
DE
12335 const struct dwp_hash_table *dwp_htab =
12336 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12337 bfd *dbfd = dwp_file->dbfd.get ();
80626a55
DE
12338 const char *kind = is_debug_types ? "TU" : "CU";
12339 struct dwo_file *dwo_file;
12340 struct dwo_unit *dwo_unit;
73869dc2 12341 struct virtual_v1_dwo_sections sections;
80626a55 12342 void **dwo_file_slot;
80626a55
DE
12343 int i;
12344
73869dc2
DE
12345 gdb_assert (dwp_file->version == 1);
12346
b4f54984 12347 if (dwarf_read_debug)
80626a55 12348 {
73869dc2 12349 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
80626a55 12350 kind,
73869dc2 12351 pulongest (unit_index), hex_string (signature),
80626a55
DE
12352 dwp_file->name);
12353 }
12354
19ac8c2e 12355 /* Fetch the sections of this DWO unit.
80626a55
DE
12356 Put a limit on the number of sections we look for so that bad data
12357 doesn't cause us to loop forever. */
12358
73869dc2 12359#define MAX_NR_V1_DWO_SECTIONS \
80626a55
DE
12360 (1 /* .debug_info or .debug_types */ \
12361 + 1 /* .debug_abbrev */ \
12362 + 1 /* .debug_line */ \
12363 + 1 /* .debug_loc */ \
12364 + 1 /* .debug_str_offsets */ \
19ac8c2e 12365 + 1 /* .debug_macro or .debug_macinfo */ \
80626a55
DE
12366 + 1 /* trailing zero */)
12367
12368 memset (&sections, 0, sizeof (sections));
80626a55 12369
73869dc2 12370 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
80626a55
DE
12371 {
12372 asection *sectp;
12373 uint32_t section_nr =
12374 read_4_bytes (dbfd,
73869dc2
DE
12375 dwp_htab->section_pool.v1.indices
12376 + (unit_index + i) * sizeof (uint32_t));
80626a55
DE
12377
12378 if (section_nr == 0)
12379 break;
12380 if (section_nr >= dwp_file->num_sections)
12381 {
12382 error (_("Dwarf Error: bad DWP hash table, section number too large"
12383 " [in module %s]"),
12384 dwp_file->name);
12385 }
12386
12387 sectp = dwp_file->elf_sections[section_nr];
73869dc2 12388 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
80626a55
DE
12389 {
12390 error (_("Dwarf Error: bad DWP hash table, invalid section found"
12391 " [in module %s]"),
12392 dwp_file->name);
12393 }
12394 }
12395
12396 if (i < 2
a32a8923
DE
12397 || dwarf2_section_empty_p (&sections.info_or_types)
12398 || dwarf2_section_empty_p (&sections.abbrev))
80626a55
DE
12399 {
12400 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
12401 " [in module %s]"),
12402 dwp_file->name);
12403 }
73869dc2 12404 if (i == MAX_NR_V1_DWO_SECTIONS)
80626a55
DE
12405 {
12406 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
12407 " [in module %s]"),
12408 dwp_file->name);
12409 }
12410
12411 /* It's easier for the rest of the code if we fake a struct dwo_file and
12412 have dwo_unit "live" in that. At least for now.
12413
12414 The DWP file can be made up of a random collection of CUs and TUs.
c766f7ec 12415 However, for each CU + set of TUs that came from the same original DWO
57d63ce2
DE
12416 file, we can combine them back into a virtual DWO file to save space
12417 (fewer struct dwo_file objects to allocate). Remember that for really
80626a55
DE
12418 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12419
791afaa2
TT
12420 std::string virtual_dwo_name =
12421 string_printf ("virtual-dwo/%d-%d-%d-%d",
12422 get_section_id (&sections.abbrev),
12423 get_section_id (&sections.line),
12424 get_section_id (&sections.loc),
12425 get_section_id (&sections.str_offsets));
80626a55 12426 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
12427 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12428 virtual_dwo_name.c_str (),
12429 comp_dir);
80626a55
DE
12430 /* Create one if necessary. */
12431 if (*dwo_file_slot == NULL)
12432 {
b4f54984 12433 if (dwarf_read_debug)
80626a55
DE
12434 {
12435 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12436 virtual_dwo_name.c_str ());
80626a55 12437 }
51ac9db5 12438 dwo_file = new struct dwo_file;
224c3ddb
SM
12439 dwo_file->dwo_name
12440 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
791afaa2
TT
12441 virtual_dwo_name.c_str (),
12442 virtual_dwo_name.size ());
0ac5b59e 12443 dwo_file->comp_dir = comp_dir;
80626a55
DE
12444 dwo_file->sections.abbrev = sections.abbrev;
12445 dwo_file->sections.line = sections.line;
12446 dwo_file->sections.loc = sections.loc;
12447 dwo_file->sections.macinfo = sections.macinfo;
12448 dwo_file->sections.macro = sections.macro;
12449 dwo_file->sections.str_offsets = sections.str_offsets;
12450 /* The "str" section is global to the entire DWP file. */
12451 dwo_file->sections.str = dwp_file->sections.str;
57d63ce2 12452 /* The info or types section is assigned below to dwo_unit,
80626a55
DE
12453 there's no need to record it in dwo_file.
12454 Also, we can't simply record type sections in dwo_file because
12455 we record a pointer into the vector in dwo_unit. As we collect more
12456 types we'll grow the vector and eventually have to reallocate space
57d63ce2
DE
12457 for it, invalidating all copies of pointers into the previous
12458 contents. */
80626a55
DE
12459 *dwo_file_slot = dwo_file;
12460 }
12461 else
12462 {
b4f54984 12463 if (dwarf_read_debug)
80626a55
DE
12464 {
12465 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12466 virtual_dwo_name.c_str ());
80626a55 12467 }
9a3c8263 12468 dwo_file = (struct dwo_file *) *dwo_file_slot;
80626a55 12469 }
80626a55
DE
12470
12471 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12472 dwo_unit->dwo_file = dwo_file;
12473 dwo_unit->signature = signature;
8d749320
SM
12474 dwo_unit->section =
12475 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
8a0459fd 12476 *dwo_unit->section = sections.info_or_types;
57d63ce2 12477 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
80626a55
DE
12478
12479 return dwo_unit;
12480}
12481
73869dc2
DE
12482/* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
12483 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
12484 piece within that section used by a TU/CU, return a virtual section
12485 of just that piece. */
12486
12487static struct dwarf2_section_info
ed2dc618
SM
12488create_dwp_v2_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
12489 struct dwarf2_section_info *section,
73869dc2
DE
12490 bfd_size_type offset, bfd_size_type size)
12491{
12492 struct dwarf2_section_info result;
12493 asection *sectp;
12494
12495 gdb_assert (section != NULL);
12496 gdb_assert (!section->is_virtual);
12497
12498 memset (&result, 0, sizeof (result));
12499 result.s.containing_section = section;
dc4ccb6f 12500 result.is_virtual = true;
73869dc2
DE
12501
12502 if (size == 0)
12503 return result;
12504
12505 sectp = get_section_bfd_section (section);
12506
12507 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
12508 bounds of the real section. This is a pretty-rare event, so just
12509 flag an error (easier) instead of a warning and trying to cope. */
12510 if (sectp == NULL
12511 || offset + size > bfd_get_section_size (sectp))
12512 {
73869dc2
DE
12513 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
12514 " in section %s [in module %s]"),
12515 sectp ? bfd_section_name (abfd, sectp) : "<unknown>",
12516 objfile_name (dwarf2_per_objfile->objfile));
12517 }
12518
12519 result.virtual_offset = offset;
12520 result.size = size;
12521 return result;
12522}
12523
12524/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12525 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12526 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12527 This is for DWP version 2 files. */
12528
12529static struct dwo_unit *
ed2dc618
SM
12530create_dwo_unit_in_dwp_v2 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12531 struct dwp_file *dwp_file,
73869dc2
DE
12532 uint32_t unit_index,
12533 const char *comp_dir,
12534 ULONGEST signature, int is_debug_types)
12535{
12536 struct objfile *objfile = dwarf2_per_objfile->objfile;
12537 const struct dwp_hash_table *dwp_htab =
12538 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12539 bfd *dbfd = dwp_file->dbfd.get ();
73869dc2
DE
12540 const char *kind = is_debug_types ? "TU" : "CU";
12541 struct dwo_file *dwo_file;
12542 struct dwo_unit *dwo_unit;
12543 struct virtual_v2_dwo_sections sections;
12544 void **dwo_file_slot;
73869dc2
DE
12545 int i;
12546
12547 gdb_assert (dwp_file->version == 2);
12548
b4f54984 12549 if (dwarf_read_debug)
73869dc2
DE
12550 {
12551 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
12552 kind,
12553 pulongest (unit_index), hex_string (signature),
12554 dwp_file->name);
12555 }
12556
12557 /* Fetch the section offsets of this DWO unit. */
12558
12559 memset (&sections, 0, sizeof (sections));
73869dc2
DE
12560
12561 for (i = 0; i < dwp_htab->nr_columns; ++i)
12562 {
12563 uint32_t offset = read_4_bytes (dbfd,
12564 dwp_htab->section_pool.v2.offsets
12565 + (((unit_index - 1) * dwp_htab->nr_columns
12566 + i)
12567 * sizeof (uint32_t)));
12568 uint32_t size = read_4_bytes (dbfd,
12569 dwp_htab->section_pool.v2.sizes
12570 + (((unit_index - 1) * dwp_htab->nr_columns
12571 + i)
12572 * sizeof (uint32_t)));
12573
12574 switch (dwp_htab->section_pool.v2.section_ids[i])
12575 {
12576 case DW_SECT_INFO:
12577 case DW_SECT_TYPES:
12578 sections.info_or_types_offset = offset;
12579 sections.info_or_types_size = size;
12580 break;
12581 case DW_SECT_ABBREV:
12582 sections.abbrev_offset = offset;
12583 sections.abbrev_size = size;
12584 break;
12585 case DW_SECT_LINE:
12586 sections.line_offset = offset;
12587 sections.line_size = size;
12588 break;
12589 case DW_SECT_LOC:
12590 sections.loc_offset = offset;
12591 sections.loc_size = size;
12592 break;
12593 case DW_SECT_STR_OFFSETS:
12594 sections.str_offsets_offset = offset;
12595 sections.str_offsets_size = size;
12596 break;
12597 case DW_SECT_MACINFO:
12598 sections.macinfo_offset = offset;
12599 sections.macinfo_size = size;
12600 break;
12601 case DW_SECT_MACRO:
12602 sections.macro_offset = offset;
12603 sections.macro_size = size;
12604 break;
12605 }
12606 }
12607
12608 /* It's easier for the rest of the code if we fake a struct dwo_file and
12609 have dwo_unit "live" in that. At least for now.
12610
12611 The DWP file can be made up of a random collection of CUs and TUs.
12612 However, for each CU + set of TUs that came from the same original DWO
12613 file, we can combine them back into a virtual DWO file to save space
12614 (fewer struct dwo_file objects to allocate). Remember that for really
12615 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12616
791afaa2
TT
12617 std::string virtual_dwo_name =
12618 string_printf ("virtual-dwo/%ld-%ld-%ld-%ld",
12619 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
12620 (long) (sections.line_size ? sections.line_offset : 0),
12621 (long) (sections.loc_size ? sections.loc_offset : 0),
12622 (long) (sections.str_offsets_size
12623 ? sections.str_offsets_offset : 0));
73869dc2 12624 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
12625 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12626 virtual_dwo_name.c_str (),
12627 comp_dir);
73869dc2
DE
12628 /* Create one if necessary. */
12629 if (*dwo_file_slot == NULL)
12630 {
b4f54984 12631 if (dwarf_read_debug)
73869dc2
DE
12632 {
12633 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12634 virtual_dwo_name.c_str ());
73869dc2 12635 }
51ac9db5 12636 dwo_file = new struct dwo_file;
224c3ddb
SM
12637 dwo_file->dwo_name
12638 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
791afaa2
TT
12639 virtual_dwo_name.c_str (),
12640 virtual_dwo_name.size ());
73869dc2
DE
12641 dwo_file->comp_dir = comp_dir;
12642 dwo_file->sections.abbrev =
ed2dc618 12643 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.abbrev,
73869dc2
DE
12644 sections.abbrev_offset, sections.abbrev_size);
12645 dwo_file->sections.line =
ed2dc618 12646 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.line,
73869dc2
DE
12647 sections.line_offset, sections.line_size);
12648 dwo_file->sections.loc =
ed2dc618 12649 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.loc,
73869dc2
DE
12650 sections.loc_offset, sections.loc_size);
12651 dwo_file->sections.macinfo =
ed2dc618 12652 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macinfo,
73869dc2
DE
12653 sections.macinfo_offset, sections.macinfo_size);
12654 dwo_file->sections.macro =
ed2dc618 12655 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macro,
73869dc2
DE
12656 sections.macro_offset, sections.macro_size);
12657 dwo_file->sections.str_offsets =
ed2dc618
SM
12658 create_dwp_v2_section (dwarf2_per_objfile,
12659 &dwp_file->sections.str_offsets,
73869dc2
DE
12660 sections.str_offsets_offset,
12661 sections.str_offsets_size);
12662 /* The "str" section is global to the entire DWP file. */
12663 dwo_file->sections.str = dwp_file->sections.str;
12664 /* The info or types section is assigned below to dwo_unit,
12665 there's no need to record it in dwo_file.
12666 Also, we can't simply record type sections in dwo_file because
12667 we record a pointer into the vector in dwo_unit. As we collect more
12668 types we'll grow the vector and eventually have to reallocate space
12669 for it, invalidating all copies of pointers into the previous
12670 contents. */
12671 *dwo_file_slot = dwo_file;
12672 }
12673 else
12674 {
b4f54984 12675 if (dwarf_read_debug)
73869dc2
DE
12676 {
12677 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12678 virtual_dwo_name.c_str ());
73869dc2 12679 }
9a3c8263 12680 dwo_file = (struct dwo_file *) *dwo_file_slot;
73869dc2 12681 }
73869dc2
DE
12682
12683 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12684 dwo_unit->dwo_file = dwo_file;
12685 dwo_unit->signature = signature;
8d749320
SM
12686 dwo_unit->section =
12687 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
ed2dc618
SM
12688 *dwo_unit->section = create_dwp_v2_section (dwarf2_per_objfile,
12689 is_debug_types
73869dc2
DE
12690 ? &dwp_file->sections.types
12691 : &dwp_file->sections.info,
12692 sections.info_or_types_offset,
12693 sections.info_or_types_size);
12694 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12695
12696 return dwo_unit;
12697}
12698
57d63ce2
DE
12699/* Lookup the DWO unit with SIGNATURE in DWP_FILE.
12700 Returns NULL if the signature isn't found. */
80626a55
DE
12701
12702static struct dwo_unit *
ed2dc618
SM
12703lookup_dwo_unit_in_dwp (struct dwarf2_per_objfile *dwarf2_per_objfile,
12704 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 12705 ULONGEST signature, int is_debug_types)
80626a55 12706{
57d63ce2
DE
12707 const struct dwp_hash_table *dwp_htab =
12708 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12709 bfd *dbfd = dwp_file->dbfd.get ();
57d63ce2 12710 uint32_t mask = dwp_htab->nr_slots - 1;
80626a55
DE
12711 uint32_t hash = signature & mask;
12712 uint32_t hash2 = ((signature >> 32) & mask) | 1;
12713 unsigned int i;
12714 void **slot;
870f88f7 12715 struct dwo_unit find_dwo_cu;
80626a55
DE
12716
12717 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
12718 find_dwo_cu.signature = signature;
19ac8c2e
DE
12719 slot = htab_find_slot (is_debug_types
12720 ? dwp_file->loaded_tus
12721 : dwp_file->loaded_cus,
12722 &find_dwo_cu, INSERT);
80626a55
DE
12723
12724 if (*slot != NULL)
9a3c8263 12725 return (struct dwo_unit *) *slot;
80626a55
DE
12726
12727 /* Use a for loop so that we don't loop forever on bad debug info. */
57d63ce2 12728 for (i = 0; i < dwp_htab->nr_slots; ++i)
80626a55
DE
12729 {
12730 ULONGEST signature_in_table;
12731
12732 signature_in_table =
57d63ce2 12733 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
80626a55
DE
12734 if (signature_in_table == signature)
12735 {
57d63ce2
DE
12736 uint32_t unit_index =
12737 read_4_bytes (dbfd,
12738 dwp_htab->unit_table + hash * sizeof (uint32_t));
80626a55 12739
73869dc2
DE
12740 if (dwp_file->version == 1)
12741 {
ed2dc618
SM
12742 *slot = create_dwo_unit_in_dwp_v1 (dwarf2_per_objfile,
12743 dwp_file, unit_index,
73869dc2
DE
12744 comp_dir, signature,
12745 is_debug_types);
12746 }
12747 else
12748 {
ed2dc618
SM
12749 *slot = create_dwo_unit_in_dwp_v2 (dwarf2_per_objfile,
12750 dwp_file, unit_index,
73869dc2
DE
12751 comp_dir, signature,
12752 is_debug_types);
12753 }
9a3c8263 12754 return (struct dwo_unit *) *slot;
80626a55
DE
12755 }
12756 if (signature_in_table == 0)
12757 return NULL;
12758 hash = (hash + hash2) & mask;
12759 }
12760
12761 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
12762 " [in module %s]"),
12763 dwp_file->name);
12764}
12765
ab5088bf 12766/* Subroutine of open_dwo_file,open_dwp_file to simplify them.
3019eac3
DE
12767 Open the file specified by FILE_NAME and hand it off to BFD for
12768 preliminary analysis. Return a newly initialized bfd *, which
12769 includes a canonicalized copy of FILE_NAME.
80626a55 12770 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
6ac97d4c
DE
12771 SEARCH_CWD is true if the current directory is to be searched.
12772 It will be searched before debug-file-directory.
13aaf454
DE
12773 If successful, the file is added to the bfd include table of the
12774 objfile's bfd (see gdb_bfd_record_inclusion).
6ac97d4c 12775 If unable to find/open the file, return NULL.
3019eac3
DE
12776 NOTE: This function is derived from symfile_bfd_open. */
12777
192b62ce 12778static gdb_bfd_ref_ptr
ed2dc618
SM
12779try_open_dwop_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12780 const char *file_name, int is_dwp, int search_cwd)
3019eac3 12781{
24b9144d 12782 int desc;
9c02c129
DE
12783 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
12784 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
12785 to debug_file_directory. */
e0cc99a6 12786 const char *search_path;
9c02c129
DE
12787 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
12788
e0cc99a6 12789 gdb::unique_xmalloc_ptr<char> search_path_holder;
6ac97d4c
DE
12790 if (search_cwd)
12791 {
12792 if (*debug_file_directory != '\0')
e0cc99a6
TT
12793 {
12794 search_path_holder.reset (concat (".", dirname_separator_string,
12795 debug_file_directory,
12796 (char *) NULL));
12797 search_path = search_path_holder.get ();
12798 }
6ac97d4c 12799 else
e0cc99a6 12800 search_path = ".";
6ac97d4c 12801 }
9c02c129 12802 else
e0cc99a6 12803 search_path = debug_file_directory;
3019eac3 12804
24b9144d 12805 openp_flags flags = OPF_RETURN_REALPATH;
80626a55
DE
12806 if (is_dwp)
12807 flags |= OPF_SEARCH_IN_PATH;
e0cc99a6
TT
12808
12809 gdb::unique_xmalloc_ptr<char> absolute_name;
9c02c129 12810 desc = openp (search_path, flags, file_name,
3019eac3
DE
12811 O_RDONLY | O_BINARY, &absolute_name);
12812 if (desc < 0)
12813 return NULL;
12814
e0cc99a6
TT
12815 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (absolute_name.get (),
12816 gnutarget, desc));
9c02c129
DE
12817 if (sym_bfd == NULL)
12818 return NULL;
192b62ce 12819 bfd_set_cacheable (sym_bfd.get (), 1);
3019eac3 12820
192b62ce
TT
12821 if (!bfd_check_format (sym_bfd.get (), bfd_object))
12822 return NULL;
3019eac3 12823
13aaf454
DE
12824 /* Success. Record the bfd as having been included by the objfile's bfd.
12825 This is important because things like demangled_names_hash lives in the
12826 objfile's per_bfd space and may have references to things like symbol
12827 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
192b62ce 12828 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd.get ());
13aaf454 12829
3019eac3
DE
12830 return sym_bfd;
12831}
12832
ab5088bf 12833/* Try to open DWO file FILE_NAME.
3019eac3
DE
12834 COMP_DIR is the DW_AT_comp_dir attribute.
12835 The result is the bfd handle of the file.
12836 If there is a problem finding or opening the file, return NULL.
12837 Upon success, the canonicalized path of the file is stored in the bfd,
12838 same as symfile_bfd_open. */
12839
192b62ce 12840static gdb_bfd_ref_ptr
ed2dc618
SM
12841open_dwo_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12842 const char *file_name, const char *comp_dir)
3019eac3 12843{
80626a55 12844 if (IS_ABSOLUTE_PATH (file_name))
ed2dc618
SM
12845 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12846 0 /*is_dwp*/, 0 /*search_cwd*/);
3019eac3
DE
12847
12848 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
12849
12850 if (comp_dir != NULL)
12851 {
b36cec19
PA
12852 char *path_to_try = concat (comp_dir, SLASH_STRING,
12853 file_name, (char *) NULL);
3019eac3
DE
12854
12855 /* NOTE: If comp_dir is a relative path, this will also try the
12856 search path, which seems useful. */
ed2dc618
SM
12857 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile,
12858 path_to_try,
12859 0 /*is_dwp*/,
192b62ce 12860 1 /*search_cwd*/));
3019eac3
DE
12861 xfree (path_to_try);
12862 if (abfd != NULL)
12863 return abfd;
12864 }
12865
12866 /* That didn't work, try debug-file-directory, which, despite its name,
12867 is a list of paths. */
12868
12869 if (*debug_file_directory == '\0')
12870 return NULL;
12871
ed2dc618
SM
12872 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12873 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
12874}
12875
80626a55
DE
12876/* This function is mapped across the sections and remembers the offset and
12877 size of each of the DWO debugging sections we are interested in. */
12878
12879static void
12880dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
12881{
9a3c8263 12882 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
80626a55
DE
12883 const struct dwop_section_names *names = &dwop_section_names;
12884
12885 if (section_is_p (sectp->name, &names->abbrev_dwo))
12886 {
049412e3 12887 dwo_sections->abbrev.s.section = sectp;
80626a55
DE
12888 dwo_sections->abbrev.size = bfd_get_section_size (sectp);
12889 }
12890 else if (section_is_p (sectp->name, &names->info_dwo))
12891 {
049412e3 12892 dwo_sections->info.s.section = sectp;
80626a55
DE
12893 dwo_sections->info.size = bfd_get_section_size (sectp);
12894 }
12895 else if (section_is_p (sectp->name, &names->line_dwo))
12896 {
049412e3 12897 dwo_sections->line.s.section = sectp;
80626a55
DE
12898 dwo_sections->line.size = bfd_get_section_size (sectp);
12899 }
12900 else if (section_is_p (sectp->name, &names->loc_dwo))
12901 {
049412e3 12902 dwo_sections->loc.s.section = sectp;
80626a55
DE
12903 dwo_sections->loc.size = bfd_get_section_size (sectp);
12904 }
12905 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12906 {
049412e3 12907 dwo_sections->macinfo.s.section = sectp;
80626a55
DE
12908 dwo_sections->macinfo.size = bfd_get_section_size (sectp);
12909 }
12910 else if (section_is_p (sectp->name, &names->macro_dwo))
12911 {
049412e3 12912 dwo_sections->macro.s.section = sectp;
80626a55
DE
12913 dwo_sections->macro.size = bfd_get_section_size (sectp);
12914 }
12915 else if (section_is_p (sectp->name, &names->str_dwo))
12916 {
049412e3 12917 dwo_sections->str.s.section = sectp;
80626a55
DE
12918 dwo_sections->str.size = bfd_get_section_size (sectp);
12919 }
12920 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12921 {
049412e3 12922 dwo_sections->str_offsets.s.section = sectp;
80626a55
DE
12923 dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
12924 }
12925 else if (section_is_p (sectp->name, &names->types_dwo))
12926 {
12927 struct dwarf2_section_info type_section;
12928
12929 memset (&type_section, 0, sizeof (type_section));
049412e3 12930 type_section.s.section = sectp;
80626a55 12931 type_section.size = bfd_get_section_size (sectp);
fd5866f6 12932 dwo_sections->types.push_back (type_section);
80626a55
DE
12933 }
12934}
12935
ab5088bf 12936/* Initialize the use of the DWO file specified by DWO_NAME and referenced
19c3d4c9 12937 by PER_CU. This is for the non-DWP case.
80626a55 12938 The result is NULL if DWO_NAME can't be found. */
3019eac3
DE
12939
12940static struct dwo_file *
0ac5b59e
DE
12941open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
12942 const char *dwo_name, const char *comp_dir)
3019eac3 12943{
ed2dc618 12944 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
3019eac3 12945
fb1eb2f9 12946 gdb_bfd_ref_ptr dbfd = open_dwo_file (dwarf2_per_objfile, dwo_name, comp_dir);
80626a55
DE
12947 if (dbfd == NULL)
12948 {
b4f54984 12949 if (dwarf_read_debug)
80626a55
DE
12950 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
12951 return NULL;
12952 }
263db9a1 12953
51ac9db5 12954 dwo_file_up dwo_file (new struct dwo_file);
0ac5b59e
DE
12955 dwo_file->dwo_name = dwo_name;
12956 dwo_file->comp_dir = comp_dir;
fb1eb2f9 12957 dwo_file->dbfd = std::move (dbfd);
3019eac3 12958
fb1eb2f9 12959 bfd_map_over_sections (dwo_file->dbfd.get (), dwarf2_locate_dwo_sections,
192b62ce 12960 &dwo_file->sections);
3019eac3 12961
ed2dc618
SM
12962 create_cus_hash_table (dwarf2_per_objfile, *dwo_file, dwo_file->sections.info,
12963 dwo_file->cus);
3019eac3 12964
263db9a1 12965 create_debug_types_hash_table (dwarf2_per_objfile, dwo_file.get (),
ed2dc618 12966 dwo_file->sections.types, dwo_file->tus);
3019eac3 12967
b4f54984 12968 if (dwarf_read_debug)
80626a55
DE
12969 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
12970
263db9a1 12971 return dwo_file.release ();
3019eac3
DE
12972}
12973
80626a55 12974/* This function is mapped across the sections and remembers the offset and
73869dc2
DE
12975 size of each of the DWP debugging sections common to version 1 and 2 that
12976 we are interested in. */
3019eac3 12977
80626a55 12978static void
73869dc2
DE
12979dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
12980 void *dwp_file_ptr)
3019eac3 12981{
9a3c8263 12982 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
80626a55
DE
12983 const struct dwop_section_names *names = &dwop_section_names;
12984 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
3019eac3 12985
80626a55 12986 /* Record the ELF section number for later lookup: this is what the
73869dc2 12987 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
80626a55
DE
12988 gdb_assert (elf_section_nr < dwp_file->num_sections);
12989 dwp_file->elf_sections[elf_section_nr] = sectp;
3019eac3 12990
80626a55
DE
12991 /* Look for specific sections that we need. */
12992 if (section_is_p (sectp->name, &names->str_dwo))
12993 {
049412e3 12994 dwp_file->sections.str.s.section = sectp;
80626a55
DE
12995 dwp_file->sections.str.size = bfd_get_section_size (sectp);
12996 }
12997 else if (section_is_p (sectp->name, &names->cu_index))
12998 {
049412e3 12999 dwp_file->sections.cu_index.s.section = sectp;
80626a55
DE
13000 dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
13001 }
13002 else if (section_is_p (sectp->name, &names->tu_index))
13003 {
049412e3 13004 dwp_file->sections.tu_index.s.section = sectp;
80626a55
DE
13005 dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
13006 }
13007}
3019eac3 13008
73869dc2
DE
13009/* This function is mapped across the sections and remembers the offset and
13010 size of each of the DWP version 2 debugging sections that we are interested
13011 in. This is split into a separate function because we don't know if we
13012 have version 1 or 2 until we parse the cu_index/tu_index sections. */
13013
13014static void
13015dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
13016{
9a3c8263 13017 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
73869dc2
DE
13018 const struct dwop_section_names *names = &dwop_section_names;
13019 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
13020
13021 /* Record the ELF section number for later lookup: this is what the
13022 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
13023 gdb_assert (elf_section_nr < dwp_file->num_sections);
13024 dwp_file->elf_sections[elf_section_nr] = sectp;
13025
13026 /* Look for specific sections that we need. */
13027 if (section_is_p (sectp->name, &names->abbrev_dwo))
13028 {
049412e3 13029 dwp_file->sections.abbrev.s.section = sectp;
73869dc2
DE
13030 dwp_file->sections.abbrev.size = bfd_get_section_size (sectp);
13031 }
13032 else if (section_is_p (sectp->name, &names->info_dwo))
13033 {
049412e3 13034 dwp_file->sections.info.s.section = sectp;
73869dc2
DE
13035 dwp_file->sections.info.size = bfd_get_section_size (sectp);
13036 }
13037 else if (section_is_p (sectp->name, &names->line_dwo))
13038 {
049412e3 13039 dwp_file->sections.line.s.section = sectp;
73869dc2
DE
13040 dwp_file->sections.line.size = bfd_get_section_size (sectp);
13041 }
13042 else if (section_is_p (sectp->name, &names->loc_dwo))
13043 {
049412e3 13044 dwp_file->sections.loc.s.section = sectp;
73869dc2
DE
13045 dwp_file->sections.loc.size = bfd_get_section_size (sectp);
13046 }
13047 else if (section_is_p (sectp->name, &names->macinfo_dwo))
13048 {
049412e3 13049 dwp_file->sections.macinfo.s.section = sectp;
73869dc2
DE
13050 dwp_file->sections.macinfo.size = bfd_get_section_size (sectp);
13051 }
13052 else if (section_is_p (sectp->name, &names->macro_dwo))
13053 {
049412e3 13054 dwp_file->sections.macro.s.section = sectp;
73869dc2
DE
13055 dwp_file->sections.macro.size = bfd_get_section_size (sectp);
13056 }
13057 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
13058 {
049412e3 13059 dwp_file->sections.str_offsets.s.section = sectp;
73869dc2
DE
13060 dwp_file->sections.str_offsets.size = bfd_get_section_size (sectp);
13061 }
13062 else if (section_is_p (sectp->name, &names->types_dwo))
13063 {
049412e3 13064 dwp_file->sections.types.s.section = sectp;
73869dc2
DE
13065 dwp_file->sections.types.size = bfd_get_section_size (sectp);
13066 }
13067}
13068
80626a55 13069/* Hash function for dwp_file loaded CUs/TUs. */
3019eac3 13070
80626a55
DE
13071static hashval_t
13072hash_dwp_loaded_cutus (const void *item)
13073{
9a3c8263 13074 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3 13075
80626a55
DE
13076 /* This drops the top 32 bits of the signature, but is ok for a hash. */
13077 return dwo_unit->signature;
3019eac3
DE
13078}
13079
80626a55 13080/* Equality function for dwp_file loaded CUs/TUs. */
3019eac3 13081
80626a55
DE
13082static int
13083eq_dwp_loaded_cutus (const void *a, const void *b)
3019eac3 13084{
9a3c8263
SM
13085 const struct dwo_unit *dua = (const struct dwo_unit *) a;
13086 const struct dwo_unit *dub = (const struct dwo_unit *) b;
3019eac3 13087
80626a55
DE
13088 return dua->signature == dub->signature;
13089}
3019eac3 13090
80626a55 13091/* Allocate a hash table for dwp_file loaded CUs/TUs. */
3019eac3 13092
80626a55
DE
13093static htab_t
13094allocate_dwp_loaded_cutus_table (struct objfile *objfile)
13095{
13096 return htab_create_alloc_ex (3,
13097 hash_dwp_loaded_cutus,
13098 eq_dwp_loaded_cutus,
13099 NULL,
13100 &objfile->objfile_obstack,
13101 hashtab_obstack_allocate,
13102 dummy_obstack_deallocate);
13103}
3019eac3 13104
ab5088bf
DE
13105/* Try to open DWP file FILE_NAME.
13106 The result is the bfd handle of the file.
13107 If there is a problem finding or opening the file, return NULL.
13108 Upon success, the canonicalized path of the file is stored in the bfd,
13109 same as symfile_bfd_open. */
13110
192b62ce 13111static gdb_bfd_ref_ptr
ed2dc618
SM
13112open_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
13113 const char *file_name)
ab5088bf 13114{
ed2dc618
SM
13115 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile, file_name,
13116 1 /*is_dwp*/,
192b62ce 13117 1 /*search_cwd*/));
6ac97d4c
DE
13118 if (abfd != NULL)
13119 return abfd;
13120
13121 /* Work around upstream bug 15652.
13122 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
13123 [Whether that's a "bug" is debatable, but it is getting in our way.]
13124 We have no real idea where the dwp file is, because gdb's realpath-ing
13125 of the executable's path may have discarded the needed info.
13126 [IWBN if the dwp file name was recorded in the executable, akin to
13127 .gnu_debuglink, but that doesn't exist yet.]
13128 Strip the directory from FILE_NAME and search again. */
13129 if (*debug_file_directory != '\0')
13130 {
13131 /* Don't implicitly search the current directory here.
13132 If the user wants to search "." to handle this case,
13133 it must be added to debug-file-directory. */
ed2dc618
SM
13134 return try_open_dwop_file (dwarf2_per_objfile,
13135 lbasename (file_name), 1 /*is_dwp*/,
6ac97d4c
DE
13136 0 /*search_cwd*/);
13137 }
13138
13139 return NULL;
ab5088bf
DE
13140}
13141
80626a55
DE
13142/* Initialize the use of the DWP file for the current objfile.
13143 By convention the name of the DWP file is ${objfile}.dwp.
13144 The result is NULL if it can't be found. */
a766d390 13145
400174b1 13146static std::unique_ptr<struct dwp_file>
ed2dc618 13147open_and_init_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
80626a55
DE
13148{
13149 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55 13150
82bf32bc
JK
13151 /* Try to find first .dwp for the binary file before any symbolic links
13152 resolving. */
6c447423
DE
13153
13154 /* If the objfile is a debug file, find the name of the real binary
13155 file and get the name of dwp file from there. */
d721ba37 13156 std::string dwp_name;
6c447423
DE
13157 if (objfile->separate_debug_objfile_backlink != NULL)
13158 {
13159 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
13160 const char *backlink_basename = lbasename (backlink->original_name);
6c447423 13161
d721ba37 13162 dwp_name = ldirname (objfile->original_name) + SLASH_STRING + backlink_basename;
6c447423
DE
13163 }
13164 else
d721ba37
PA
13165 dwp_name = objfile->original_name;
13166
13167 dwp_name += ".dwp";
80626a55 13168
ed2dc618 13169 gdb_bfd_ref_ptr dbfd (open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ()));
82bf32bc
JK
13170 if (dbfd == NULL
13171 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
13172 {
13173 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
d721ba37
PA
13174 dwp_name = objfile_name (objfile);
13175 dwp_name += ".dwp";
ed2dc618 13176 dbfd = open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ());
82bf32bc
JK
13177 }
13178
80626a55
DE
13179 if (dbfd == NULL)
13180 {
b4f54984 13181 if (dwarf_read_debug)
d721ba37 13182 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name.c_str ());
400174b1 13183 return std::unique_ptr<dwp_file> ();
3019eac3 13184 }
400174b1
TT
13185
13186 const char *name = bfd_get_filename (dbfd.get ());
13187 std::unique_ptr<struct dwp_file> dwp_file
13188 (new struct dwp_file (name, std::move (dbfd)));
c906108c 13189
0a0f4c01 13190 dwp_file->num_sections = elf_numsections (dwp_file->dbfd);
80626a55
DE
13191 dwp_file->elf_sections =
13192 OBSTACK_CALLOC (&objfile->objfile_obstack,
13193 dwp_file->num_sections, asection *);
13194
400174b1
TT
13195 bfd_map_over_sections (dwp_file->dbfd.get (),
13196 dwarf2_locate_common_dwp_sections,
13197 dwp_file.get ());
80626a55 13198
400174b1
TT
13199 dwp_file->cus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
13200 0);
80626a55 13201
400174b1
TT
13202 dwp_file->tus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
13203 1);
80626a55 13204
73869dc2 13205 /* The DWP file version is stored in the hash table. Oh well. */
08302ed2
DE
13206 if (dwp_file->cus && dwp_file->tus
13207 && dwp_file->cus->version != dwp_file->tus->version)
73869dc2
DE
13208 {
13209 /* Technically speaking, we should try to limp along, but this is
fbcbc3fd 13210 pretty bizarre. We use pulongest here because that's the established
4d65956b 13211 portability solution (e.g, we cannot use %u for uint32_t). */
fbcbc3fd
DE
13212 error (_("Dwarf Error: DWP file CU version %s doesn't match"
13213 " TU version %s [in DWP file %s]"),
13214 pulongest (dwp_file->cus->version),
d721ba37 13215 pulongest (dwp_file->tus->version), dwp_name.c_str ());
73869dc2 13216 }
08302ed2
DE
13217
13218 if (dwp_file->cus)
13219 dwp_file->version = dwp_file->cus->version;
13220 else if (dwp_file->tus)
13221 dwp_file->version = dwp_file->tus->version;
13222 else
13223 dwp_file->version = 2;
73869dc2
DE
13224
13225 if (dwp_file->version == 2)
400174b1
TT
13226 bfd_map_over_sections (dwp_file->dbfd.get (),
13227 dwarf2_locate_v2_dwp_sections,
13228 dwp_file.get ());
73869dc2 13229
19ac8c2e
DE
13230 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table (objfile);
13231 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table (objfile);
80626a55 13232
b4f54984 13233 if (dwarf_read_debug)
80626a55
DE
13234 {
13235 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
13236 fprintf_unfiltered (gdb_stdlog,
21aa081e
PA
13237 " %s CUs, %s TUs\n",
13238 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
13239 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
80626a55
DE
13240 }
13241
13242 return dwp_file;
3019eac3 13243}
c906108c 13244
ab5088bf
DE
13245/* Wrapper around open_and_init_dwp_file, only open it once. */
13246
13247static struct dwp_file *
ed2dc618 13248get_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
ab5088bf
DE
13249{
13250 if (! dwarf2_per_objfile->dwp_checked)
13251 {
ed2dc618
SM
13252 dwarf2_per_objfile->dwp_file
13253 = open_and_init_dwp_file (dwarf2_per_objfile);
ab5088bf
DE
13254 dwarf2_per_objfile->dwp_checked = 1;
13255 }
400174b1 13256 return dwarf2_per_objfile->dwp_file.get ();
ab5088bf
DE
13257}
13258
80626a55
DE
13259/* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
13260 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
13261 or in the DWP file for the objfile, referenced by THIS_UNIT.
3019eac3 13262 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
80626a55
DE
13263 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
13264
13265 This is called, for example, when wanting to read a variable with a
13266 complex location. Therefore we don't want to do file i/o for every call.
13267 Therefore we don't want to look for a DWO file on every call.
13268 Therefore we first see if we've already seen SIGNATURE in a DWP file,
13269 then we check if we've already seen DWO_NAME, and only THEN do we check
13270 for a DWO file.
13271
1c658ad5 13272 The result is a pointer to the dwo_unit object or NULL if we didn't find it
80626a55 13273 (dwo_id mismatch or couldn't find the DWO/DWP file). */
debd256d 13274
3019eac3 13275static struct dwo_unit *
80626a55
DE
13276lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
13277 const char *dwo_name, const char *comp_dir,
13278 ULONGEST signature, int is_debug_types)
3019eac3 13279{
ed2dc618 13280 struct dwarf2_per_objfile *dwarf2_per_objfile = this_unit->dwarf2_per_objfile;
3019eac3 13281 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55
DE
13282 const char *kind = is_debug_types ? "TU" : "CU";
13283 void **dwo_file_slot;
3019eac3 13284 struct dwo_file *dwo_file;
80626a55 13285 struct dwp_file *dwp_file;
cb1df416 13286
6a506a2d
DE
13287 /* First see if there's a DWP file.
13288 If we have a DWP file but didn't find the DWO inside it, don't
13289 look for the original DWO file. It makes gdb behave differently
13290 depending on whether one is debugging in the build tree. */
cf2c3c16 13291
ed2dc618 13292 dwp_file = get_dwp_file (dwarf2_per_objfile);
80626a55 13293 if (dwp_file != NULL)
cf2c3c16 13294 {
80626a55
DE
13295 const struct dwp_hash_table *dwp_htab =
13296 is_debug_types ? dwp_file->tus : dwp_file->cus;
13297
13298 if (dwp_htab != NULL)
13299 {
13300 struct dwo_unit *dwo_cutu =
ed2dc618 13301 lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, comp_dir,
57d63ce2 13302 signature, is_debug_types);
80626a55
DE
13303
13304 if (dwo_cutu != NULL)
13305 {
b4f54984 13306 if (dwarf_read_debug)
80626a55
DE
13307 {
13308 fprintf_unfiltered (gdb_stdlog,
13309 "Virtual DWO %s %s found: @%s\n",
13310 kind, hex_string (signature),
13311 host_address_to_string (dwo_cutu));
13312 }
13313 return dwo_cutu;
13314 }
13315 }
13316 }
6a506a2d 13317 else
80626a55 13318 {
6a506a2d 13319 /* No DWP file, look for the DWO file. */
80626a55 13320
ed2dc618
SM
13321 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
13322 dwo_name, comp_dir);
6a506a2d 13323 if (*dwo_file_slot == NULL)
80626a55 13324 {
6a506a2d
DE
13325 /* Read in the file and build a table of the CUs/TUs it contains. */
13326 *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
19c3d4c9 13327 }
6a506a2d 13328 /* NOTE: This will be NULL if unable to open the file. */
9a3c8263 13329 dwo_file = (struct dwo_file *) *dwo_file_slot;
3019eac3 13330
6a506a2d 13331 if (dwo_file != NULL)
19c3d4c9 13332 {
6a506a2d
DE
13333 struct dwo_unit *dwo_cutu = NULL;
13334
13335 if (is_debug_types && dwo_file->tus)
13336 {
13337 struct dwo_unit find_dwo_cutu;
13338
13339 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13340 find_dwo_cutu.signature = signature;
9a3c8263
SM
13341 dwo_cutu
13342 = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_cutu);
6a506a2d 13343 }
33c5cd75 13344 else if (!is_debug_types && dwo_file->cus)
80626a55 13345 {
33c5cd75
DB
13346 struct dwo_unit find_dwo_cutu;
13347
13348 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13349 find_dwo_cutu.signature = signature;
13350 dwo_cutu = (struct dwo_unit *)htab_find (dwo_file->cus,
13351 &find_dwo_cutu);
6a506a2d
DE
13352 }
13353
13354 if (dwo_cutu != NULL)
13355 {
b4f54984 13356 if (dwarf_read_debug)
6a506a2d
DE
13357 {
13358 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
13359 kind, dwo_name, hex_string (signature),
13360 host_address_to_string (dwo_cutu));
13361 }
13362 return dwo_cutu;
80626a55
DE
13363 }
13364 }
2e276125 13365 }
9cdd5dbd 13366
80626a55
DE
13367 /* We didn't find it. This could mean a dwo_id mismatch, or
13368 someone deleted the DWO/DWP file, or the search path isn't set up
13369 correctly to find the file. */
13370
b4f54984 13371 if (dwarf_read_debug)
80626a55
DE
13372 {
13373 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
13374 kind, dwo_name, hex_string (signature));
13375 }
3019eac3 13376
6656a72d
DE
13377 /* This is a warning and not a complaint because it can be caused by
13378 pilot error (e.g., user accidentally deleting the DWO). */
43942612
DE
13379 {
13380 /* Print the name of the DWP file if we looked there, helps the user
13381 better diagnose the problem. */
791afaa2 13382 std::string dwp_text;
43942612
DE
13383
13384 if (dwp_file != NULL)
791afaa2
TT
13385 dwp_text = string_printf (" [in DWP file %s]",
13386 lbasename (dwp_file->name));
43942612 13387
9d8780f0 13388 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset %s"
43942612
DE
13389 " [in module %s]"),
13390 kind, dwo_name, hex_string (signature),
791afaa2 13391 dwp_text.c_str (),
43942612 13392 this_unit->is_debug_types ? "TU" : "CU",
9d8780f0 13393 sect_offset_str (this_unit->sect_off), objfile_name (objfile));
43942612 13394 }
3019eac3 13395 return NULL;
5fb290d7
DJ
13396}
13397
80626a55
DE
13398/* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
13399 See lookup_dwo_cutu_unit for details. */
13400
13401static struct dwo_unit *
13402lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
13403 const char *dwo_name, const char *comp_dir,
13404 ULONGEST signature)
13405{
13406 return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
13407}
13408
13409/* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
13410 See lookup_dwo_cutu_unit for details. */
13411
13412static struct dwo_unit *
13413lookup_dwo_type_unit (struct signatured_type *this_tu,
13414 const char *dwo_name, const char *comp_dir)
13415{
13416 return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
13417}
13418
89e63ee4
DE
13419/* Traversal function for queue_and_load_all_dwo_tus. */
13420
13421static int
13422queue_and_load_dwo_tu (void **slot, void *info)
13423{
13424 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
13425 struct dwarf2_per_cu_data *per_cu = (struct dwarf2_per_cu_data *) info;
13426 ULONGEST signature = dwo_unit->signature;
13427 struct signatured_type *sig_type =
13428 lookup_dwo_signatured_type (per_cu->cu, signature);
13429
13430 if (sig_type != NULL)
13431 {
13432 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
13433
13434 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
13435 a real dependency of PER_CU on SIG_TYPE. That is detected later
13436 while processing PER_CU. */
13437 if (maybe_queue_comp_unit (NULL, sig_cu, per_cu->cu->language))
13438 load_full_type_unit (sig_cu);
13439 VEC_safe_push (dwarf2_per_cu_ptr, per_cu->imported_symtabs, sig_cu);
13440 }
13441
13442 return 1;
13443}
13444
13445/* Queue all TUs contained in the DWO of PER_CU to be read in.
13446 The DWO may have the only definition of the type, though it may not be
13447 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
13448 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
13449
13450static void
13451queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
13452{
13453 struct dwo_unit *dwo_unit;
13454 struct dwo_file *dwo_file;
13455
13456 gdb_assert (!per_cu->is_debug_types);
ed2dc618 13457 gdb_assert (get_dwp_file (per_cu->dwarf2_per_objfile) == NULL);
89e63ee4
DE
13458 gdb_assert (per_cu->cu != NULL);
13459
13460 dwo_unit = per_cu->cu->dwo_unit;
13461 gdb_assert (dwo_unit != NULL);
13462
13463 dwo_file = dwo_unit->dwo_file;
13464 if (dwo_file->tus != NULL)
13465 htab_traverse_noresize (dwo_file->tus, queue_and_load_dwo_tu, per_cu);
13466}
13467
3019eac3 13468/* Read in various DIEs. */
348e048f 13469
d389af10 13470/* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3e43a32a
MS
13471 Inherit only the children of the DW_AT_abstract_origin DIE not being
13472 already referenced by DW_AT_abstract_origin from the children of the
13473 current DIE. */
d389af10
JK
13474
13475static void
13476inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
13477{
13478 struct die_info *child_die;
791afaa2 13479 sect_offset *offsetp;
d389af10
JK
13480 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
13481 struct die_info *origin_die;
13482 /* Iterator of the ORIGIN_DIE children. */
13483 struct die_info *origin_child_die;
d389af10 13484 struct attribute *attr;
cd02d79d
PA
13485 struct dwarf2_cu *origin_cu;
13486 struct pending **origin_previous_list_in_scope;
d389af10
JK
13487
13488 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13489 if (!attr)
13490 return;
13491
cd02d79d
PA
13492 /* Note that following die references may follow to a die in a
13493 different cu. */
13494
13495 origin_cu = cu;
13496 origin_die = follow_die_ref (die, attr, &origin_cu);
13497
13498 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
13499 symbols in. */
13500 origin_previous_list_in_scope = origin_cu->list_in_scope;
13501 origin_cu->list_in_scope = cu->list_in_scope;
13502
edb3359d
DJ
13503 if (die->tag != origin_die->tag
13504 && !(die->tag == DW_TAG_inlined_subroutine
13505 && origin_die->tag == DW_TAG_subprogram))
b98664d3 13506 complaint (_("DIE %s and its abstract origin %s have different tags"),
9d8780f0
SM
13507 sect_offset_str (die->sect_off),
13508 sect_offset_str (origin_die->sect_off));
d389af10 13509
791afaa2 13510 std::vector<sect_offset> offsets;
d389af10 13511
3ea89b92
PMR
13512 for (child_die = die->child;
13513 child_die && child_die->tag;
13514 child_die = sibling_die (child_die))
13515 {
13516 struct die_info *child_origin_die;
13517 struct dwarf2_cu *child_origin_cu;
13518
13519 /* We are trying to process concrete instance entries:
216f72a1 13520 DW_TAG_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
3ea89b92
PMR
13521 it's not relevant to our analysis here. i.e. detecting DIEs that are
13522 present in the abstract instance but not referenced in the concrete
13523 one. */
216f72a1
JK
13524 if (child_die->tag == DW_TAG_call_site
13525 || child_die->tag == DW_TAG_GNU_call_site)
3ea89b92
PMR
13526 continue;
13527
c38f313d
DJ
13528 /* For each CHILD_DIE, find the corresponding child of
13529 ORIGIN_DIE. If there is more than one layer of
13530 DW_AT_abstract_origin, follow them all; there shouldn't be,
13531 but GCC versions at least through 4.4 generate this (GCC PR
13532 40573). */
3ea89b92
PMR
13533 child_origin_die = child_die;
13534 child_origin_cu = cu;
c38f313d
DJ
13535 while (1)
13536 {
cd02d79d
PA
13537 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
13538 child_origin_cu);
c38f313d
DJ
13539 if (attr == NULL)
13540 break;
cd02d79d
PA
13541 child_origin_die = follow_die_ref (child_origin_die, attr,
13542 &child_origin_cu);
c38f313d
DJ
13543 }
13544
d389af10
JK
13545 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
13546 counterpart may exist. */
c38f313d 13547 if (child_origin_die != child_die)
d389af10 13548 {
edb3359d
DJ
13549 if (child_die->tag != child_origin_die->tag
13550 && !(child_die->tag == DW_TAG_inlined_subroutine
13551 && child_origin_die->tag == DW_TAG_subprogram))
b98664d3 13552 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13553 "different tags"),
9d8780f0
SM
13554 sect_offset_str (child_die->sect_off),
13555 sect_offset_str (child_origin_die->sect_off));
c38f313d 13556 if (child_origin_die->parent != origin_die)
b98664d3 13557 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13558 "different parents"),
9d8780f0
SM
13559 sect_offset_str (child_die->sect_off),
13560 sect_offset_str (child_origin_die->sect_off));
c38f313d 13561 else
791afaa2 13562 offsets.push_back (child_origin_die->sect_off);
d389af10 13563 }
d389af10 13564 }
791afaa2
TT
13565 std::sort (offsets.begin (), offsets.end ());
13566 sect_offset *offsets_end = offsets.data () + offsets.size ();
13567 for (offsetp = offsets.data () + 1; offsetp < offsets_end; offsetp++)
9c541725 13568 if (offsetp[-1] == *offsetp)
b98664d3 13569 complaint (_("Multiple children of DIE %s refer "
9d8780f0
SM
13570 "to DIE %s as their abstract origin"),
13571 sect_offset_str (die->sect_off), sect_offset_str (*offsetp));
d389af10 13572
791afaa2 13573 offsetp = offsets.data ();
d389af10
JK
13574 origin_child_die = origin_die->child;
13575 while (origin_child_die && origin_child_die->tag)
13576 {
13577 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
b64f50a1 13578 while (offsetp < offsets_end
9c541725 13579 && *offsetp < origin_child_die->sect_off)
d389af10 13580 offsetp++;
b64f50a1 13581 if (offsetp >= offsets_end
9c541725 13582 || *offsetp > origin_child_die->sect_off)
d389af10 13583 {
adde2bff
DE
13584 /* Found that ORIGIN_CHILD_DIE is really not referenced.
13585 Check whether we're already processing ORIGIN_CHILD_DIE.
13586 This can happen with mutually referenced abstract_origins.
13587 PR 16581. */
13588 if (!origin_child_die->in_process)
13589 process_die (origin_child_die, origin_cu);
d389af10
JK
13590 }
13591 origin_child_die = sibling_die (origin_child_die);
13592 }
cd02d79d 13593 origin_cu->list_in_scope = origin_previous_list_in_scope;
d389af10
JK
13594}
13595
c906108c 13596static void
e7c27a73 13597read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13598{
518817b3 13599 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 13600 struct gdbarch *gdbarch = get_objfile_arch (objfile);
fe978cb0 13601 struct context_stack *newobj;
c906108c
SS
13602 CORE_ADDR lowpc;
13603 CORE_ADDR highpc;
13604 struct die_info *child_die;
edb3359d 13605 struct attribute *attr, *call_line, *call_file;
15d034d0 13606 const char *name;
e142c38c 13607 CORE_ADDR baseaddr;
801e3a5b 13608 struct block *block;
edb3359d 13609 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
2f4732b0 13610 std::vector<struct symbol *> template_args;
34eaf542 13611 struct template_symbol *templ_func = NULL;
edb3359d
DJ
13612
13613 if (inlined_func)
13614 {
13615 /* If we do not have call site information, we can't show the
13616 caller of this inlined function. That's too confusing, so
13617 only use the scope for local variables. */
13618 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
13619 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
13620 if (call_line == NULL || call_file == NULL)
13621 {
13622 read_lexical_block_scope (die, cu);
13623 return;
13624 }
13625 }
c906108c 13626
e142c38c
DJ
13627 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13628
94af9270 13629 name = dwarf2_name (die, cu);
c906108c 13630
e8d05480
JB
13631 /* Ignore functions with missing or empty names. These are actually
13632 illegal according to the DWARF standard. */
13633 if (name == NULL)
13634 {
b98664d3 13635 complaint (_("missing name for subprogram DIE at %s"),
9d8780f0 13636 sect_offset_str (die->sect_off));
e8d05480
JB
13637 return;
13638 }
13639
13640 /* Ignore functions with missing or invalid low and high pc attributes. */
3a2b436a 13641 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
e385593e 13642 <= PC_BOUNDS_INVALID)
e8d05480 13643 {
ae4d0c03
PM
13644 attr = dwarf2_attr (die, DW_AT_external, cu);
13645 if (!attr || !DW_UNSND (attr))
b98664d3 13646 complaint (_("cannot get low and high bounds "
9d8780f0
SM
13647 "for subprogram DIE at %s"),
13648 sect_offset_str (die->sect_off));
e8d05480
JB
13649 return;
13650 }
c906108c 13651
3e29f34a
MR
13652 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13653 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13654
34eaf542
TT
13655 /* If we have any template arguments, then we must allocate a
13656 different sort of symbol. */
13657 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
13658 {
13659 if (child_die->tag == DW_TAG_template_type_param
13660 || child_die->tag == DW_TAG_template_value_param)
13661 {
e623cf5d 13662 templ_func = allocate_template_symbol (objfile);
cf724bc9 13663 templ_func->subclass = SYMBOL_TEMPLATE;
34eaf542
TT
13664 break;
13665 }
13666 }
13667
c24bdb02 13668 newobj = cu->get_builder ()->push_context (0, lowpc);
5e2db402
TT
13669 newobj->name = new_symbol (die, read_type_die (die, cu), cu,
13670 (struct symbol *) templ_func);
4c2df51b 13671
81873cc8
TV
13672 if (dwarf2_flag_true_p (die, DW_AT_main_subprogram, cu))
13673 set_objfile_main_name (objfile, SYMBOL_LINKAGE_NAME (newobj->name),
13674 cu->language);
13675
4cecd739
DJ
13676 /* If there is a location expression for DW_AT_frame_base, record
13677 it. */
e142c38c 13678 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
4c2df51b 13679 if (attr)
fe978cb0 13680 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
4c2df51b 13681
63e43d3a
PMR
13682 /* If there is a location for the static link, record it. */
13683 newobj->static_link = NULL;
13684 attr = dwarf2_attr (die, DW_AT_static_link, cu);
13685 if (attr)
13686 {
224c3ddb
SM
13687 newobj->static_link
13688 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
63e43d3a
PMR
13689 attr_to_dynamic_prop (attr, die, cu, newobj->static_link);
13690 }
13691
c24bdb02 13692 cu->list_in_scope = cu->get_builder ()->get_local_symbols ();
c906108c 13693
639d11d3 13694 if (die->child != NULL)
c906108c 13695 {
639d11d3 13696 child_die = die->child;
c906108c
SS
13697 while (child_die && child_die->tag)
13698 {
34eaf542
TT
13699 if (child_die->tag == DW_TAG_template_type_param
13700 || child_die->tag == DW_TAG_template_value_param)
13701 {
13702 struct symbol *arg = new_symbol (child_die, NULL, cu);
13703
f1078f66 13704 if (arg != NULL)
2f4732b0 13705 template_args.push_back (arg);
34eaf542
TT
13706 }
13707 else
13708 process_die (child_die, cu);
c906108c
SS
13709 child_die = sibling_die (child_die);
13710 }
13711 }
13712
d389af10
JK
13713 inherit_abstract_dies (die, cu);
13714
4a811a97
UW
13715 /* If we have a DW_AT_specification, we might need to import using
13716 directives from the context of the specification DIE. See the
13717 comment in determine_prefix. */
13718 if (cu->language == language_cplus
13719 && dwarf2_attr (die, DW_AT_specification, cu))
13720 {
13721 struct dwarf2_cu *spec_cu = cu;
13722 struct die_info *spec_die = die_specification (die, &spec_cu);
13723
13724 while (spec_die)
13725 {
13726 child_die = spec_die->child;
13727 while (child_die && child_die->tag)
13728 {
13729 if (child_die->tag == DW_TAG_imported_module)
13730 process_die (child_die, spec_cu);
13731 child_die = sibling_die (child_die);
13732 }
13733
13734 /* In some cases, GCC generates specification DIEs that
13735 themselves contain DW_AT_specification attributes. */
13736 spec_die = die_specification (spec_die, &spec_cu);
13737 }
13738 }
13739
c24bdb02 13740 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13741 /* Make a block for the local symbols within. */
c24bdb02 13742 block = cu->get_builder ()->finish_block (cstk.name, cstk.old_blocks,
804d2729 13743 cstk.static_link, lowpc, highpc);
801e3a5b 13744
df8a16a1 13745 /* For C++, set the block's scope. */
45280282
IB
13746 if ((cu->language == language_cplus
13747 || cu->language == language_fortran
c44af4eb
TT
13748 || cu->language == language_d
13749 || cu->language == language_rust)
4d4ec4e5 13750 && cu->processing_has_namespace_info)
195a3f6c
TT
13751 block_set_scope (block, determine_prefix (die, cu),
13752 &objfile->objfile_obstack);
df8a16a1 13753
801e3a5b
JB
13754 /* If we have address ranges, record them. */
13755 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6e70227d 13756
a60f3166 13757 gdbarch_make_symbol_special (gdbarch, cstk.name, objfile);
3e29f34a 13758
34eaf542 13759 /* Attach template arguments to function. */
2f4732b0 13760 if (!template_args.empty ())
34eaf542
TT
13761 {
13762 gdb_assert (templ_func != NULL);
13763
2f4732b0 13764 templ_func->n_template_arguments = template_args.size ();
34eaf542 13765 templ_func->template_arguments
8d749320
SM
13766 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
13767 templ_func->n_template_arguments);
34eaf542 13768 memcpy (templ_func->template_arguments,
2f4732b0 13769 template_args.data (),
34eaf542 13770 (templ_func->n_template_arguments * sizeof (struct symbol *)));
3e1d3d8c
TT
13771
13772 /* Make sure that the symtab is set on the new symbols. Even
13773 though they don't appear in this symtab directly, other parts
13774 of gdb assume that symbols do, and this is reasonably
13775 true. */
8634679f 13776 for (symbol *sym : template_args)
3e1d3d8c 13777 symbol_set_symtab (sym, symbol_symtab (templ_func));
34eaf542
TT
13778 }
13779
208d8187
JB
13780 /* In C++, we can have functions nested inside functions (e.g., when
13781 a function declares a class that has methods). This means that
13782 when we finish processing a function scope, we may need to go
13783 back to building a containing block's symbol lists. */
c24bdb02
KS
13784 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13785 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
208d8187 13786
921e78cf
JB
13787 /* If we've finished processing a top-level function, subsequent
13788 symbols go in the file symbol list. */
c24bdb02
KS
13789 if (cu->get_builder ()->outermost_context_p ())
13790 cu->list_in_scope = cu->get_builder ()->get_file_symbols ();
c906108c
SS
13791}
13792
13793/* Process all the DIES contained within a lexical block scope. Start
13794 a new scope, process the dies, and then close the scope. */
13795
13796static void
e7c27a73 13797read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13798{
518817b3 13799 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 13800 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
13801 CORE_ADDR lowpc, highpc;
13802 struct die_info *child_die;
e142c38c
DJ
13803 CORE_ADDR baseaddr;
13804
13805 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
13806
13807 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
13808 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
13809 as multiple lexical blocks? Handling children in a sane way would
6e70227d 13810 be nasty. Might be easier to properly extend generic blocks to
af34e669 13811 describe ranges. */
e385593e
JK
13812 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
13813 {
13814 case PC_BOUNDS_NOT_PRESENT:
13815 /* DW_TAG_lexical_block has no attributes, process its children as if
13816 there was no wrapping by that DW_TAG_lexical_block.
13817 GCC does no longer produces such DWARF since GCC r224161. */
13818 for (child_die = die->child;
13819 child_die != NULL && child_die->tag;
13820 child_die = sibling_die (child_die))
13821 process_die (child_die, cu);
13822 return;
13823 case PC_BOUNDS_INVALID:
13824 return;
13825 }
3e29f34a
MR
13826 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13827 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13828
c24bdb02 13829 cu->get_builder ()->push_context (0, lowpc);
639d11d3 13830 if (die->child != NULL)
c906108c 13831 {
639d11d3 13832 child_die = die->child;
c906108c
SS
13833 while (child_die && child_die->tag)
13834 {
e7c27a73 13835 process_die (child_die, cu);
c906108c
SS
13836 child_die = sibling_die (child_die);
13837 }
13838 }
3ea89b92 13839 inherit_abstract_dies (die, cu);
c24bdb02 13840 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13841
c24bdb02
KS
13842 if (*cu->get_builder ()->get_local_symbols () != NULL
13843 || (*cu->get_builder ()->get_local_using_directives ()) != NULL)
c906108c 13844 {
801e3a5b 13845 struct block *block
c24bdb02 13846 = cu->get_builder ()->finish_block (0, cstk.old_blocks, NULL,
804d2729 13847 cstk.start_addr, highpc);
801e3a5b
JB
13848
13849 /* Note that recording ranges after traversing children, as we
13850 do here, means that recording a parent's ranges entails
13851 walking across all its children's ranges as they appear in
13852 the address map, which is quadratic behavior.
13853
13854 It would be nicer to record the parent's ranges before
13855 traversing its children, simply overriding whatever you find
13856 there. But since we don't even decide whether to create a
13857 block until after we've traversed its children, that's hard
13858 to do. */
13859 dwarf2_record_block_ranges (die, block, baseaddr, cu);
c906108c 13860 }
c24bdb02
KS
13861 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13862 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
c906108c
SS
13863}
13864
216f72a1 13865/* Read in DW_TAG_call_site and insert it to CU->call_site_htab. */
96408a79
SA
13866
13867static void
13868read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
13869{
518817b3 13870 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
96408a79
SA
13871 struct gdbarch *gdbarch = get_objfile_arch (objfile);
13872 CORE_ADDR pc, baseaddr;
13873 struct attribute *attr;
13874 struct call_site *call_site, call_site_local;
13875 void **slot;
13876 int nparams;
13877 struct die_info *child_die;
13878
13879 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13880
216f72a1
JK
13881 attr = dwarf2_attr (die, DW_AT_call_return_pc, cu);
13882 if (attr == NULL)
13883 {
13884 /* This was a pre-DWARF-5 GNU extension alias
13885 for DW_AT_call_return_pc. */
13886 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
13887 }
96408a79
SA
13888 if (!attr)
13889 {
b98664d3 13890 complaint (_("missing DW_AT_call_return_pc for DW_TAG_call_site "
9d8780f0
SM
13891 "DIE %s [in module %s]"),
13892 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13893 return;
13894 }
31aa7e4e 13895 pc = attr_value_as_address (attr) + baseaddr;
3e29f34a 13896 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
96408a79
SA
13897
13898 if (cu->call_site_htab == NULL)
13899 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
13900 NULL, &objfile->objfile_obstack,
13901 hashtab_obstack_allocate, NULL);
13902 call_site_local.pc = pc;
13903 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
13904 if (*slot != NULL)
13905 {
b98664d3 13906 complaint (_("Duplicate PC %s for DW_TAG_call_site "
9d8780f0
SM
13907 "DIE %s [in module %s]"),
13908 paddress (gdbarch, pc), sect_offset_str (die->sect_off),
4262abfb 13909 objfile_name (objfile));
96408a79
SA
13910 return;
13911 }
13912
13913 /* Count parameters at the caller. */
13914
13915 nparams = 0;
13916 for (child_die = die->child; child_die && child_die->tag;
13917 child_die = sibling_die (child_die))
13918 {
216f72a1
JK
13919 if (child_die->tag != DW_TAG_call_site_parameter
13920 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79 13921 {
b98664d3 13922 complaint (_("Tag %d is not DW_TAG_call_site_parameter in "
9d8780f0
SM
13923 "DW_TAG_call_site child DIE %s [in module %s]"),
13924 child_die->tag, sect_offset_str (child_die->sect_off),
4262abfb 13925 objfile_name (objfile));
96408a79
SA
13926 continue;
13927 }
13928
13929 nparams++;
13930 }
13931
224c3ddb
SM
13932 call_site
13933 = ((struct call_site *)
13934 obstack_alloc (&objfile->objfile_obstack,
13935 sizeof (*call_site)
13936 + (sizeof (*call_site->parameter) * (nparams - 1))));
96408a79
SA
13937 *slot = call_site;
13938 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
13939 call_site->pc = pc;
13940
216f72a1
JK
13941 if (dwarf2_flag_true_p (die, DW_AT_call_tail_call, cu)
13942 || dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
96408a79
SA
13943 {
13944 struct die_info *func_die;
13945
13946 /* Skip also over DW_TAG_inlined_subroutine. */
13947 for (func_die = die->parent;
13948 func_die && func_die->tag != DW_TAG_subprogram
13949 && func_die->tag != DW_TAG_subroutine_type;
13950 func_die = func_die->parent);
13951
216f72a1
JK
13952 /* DW_AT_call_all_calls is a superset
13953 of DW_AT_call_all_tail_calls. */
96408a79 13954 if (func_die
216f72a1 13955 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_calls, cu)
96408a79 13956 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
216f72a1 13957 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_tail_calls, cu)
96408a79
SA
13958 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
13959 {
13960 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
13961 not complete. But keep CALL_SITE for look ups via call_site_htab,
13962 both the initial caller containing the real return address PC and
13963 the final callee containing the current PC of a chain of tail
13964 calls do not need to have the tail call list complete. But any
13965 function candidate for a virtual tail call frame searched via
13966 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
13967 determined unambiguously. */
13968 }
13969 else
13970 {
13971 struct type *func_type = NULL;
13972
13973 if (func_die)
13974 func_type = get_die_type (func_die, cu);
13975 if (func_type != NULL)
13976 {
13977 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
13978
13979 /* Enlist this call site to the function. */
13980 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
13981 TYPE_TAIL_CALL_LIST (func_type) = call_site;
13982 }
13983 else
b98664d3 13984 complaint (_("Cannot find function owning DW_TAG_call_site "
9d8780f0
SM
13985 "DIE %s [in module %s]"),
13986 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13987 }
13988 }
13989
216f72a1
JK
13990 attr = dwarf2_attr (die, DW_AT_call_target, cu);
13991 if (attr == NULL)
13992 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
13993 if (attr == NULL)
13994 attr = dwarf2_attr (die, DW_AT_call_origin, cu);
96408a79 13995 if (attr == NULL)
216f72a1
JK
13996 {
13997 /* This was a pre-DWARF-5 GNU extension alias for DW_AT_call_origin. */
13998 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13999 }
96408a79
SA
14000 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
14001 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
14002 /* Keep NULL DWARF_BLOCK. */;
14003 else if (attr_form_is_block (attr))
14004 {
14005 struct dwarf2_locexpr_baton *dlbaton;
14006
8d749320 14007 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
96408a79
SA
14008 dlbaton->data = DW_BLOCK (attr)->data;
14009 dlbaton->size = DW_BLOCK (attr)->size;
14010 dlbaton->per_cu = cu->per_cu;
14011
14012 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
14013 }
7771576e 14014 else if (attr_form_is_ref (attr))
96408a79 14015 {
96408a79
SA
14016 struct dwarf2_cu *target_cu = cu;
14017 struct die_info *target_die;
14018
ac9ec31b 14019 target_die = follow_die_ref (die, attr, &target_cu);
518817b3 14020 gdb_assert (target_cu->per_cu->dwarf2_per_objfile->objfile == objfile);
96408a79
SA
14021 if (die_is_declaration (target_die, target_cu))
14022 {
7d45c7c3 14023 const char *target_physname;
9112db09
JK
14024
14025 /* Prefer the mangled name; otherwise compute the demangled one. */
73b9be8b 14026 target_physname = dw2_linkage_name (target_die, target_cu);
7d45c7c3 14027 if (target_physname == NULL)
9112db09 14028 target_physname = dwarf2_physname (NULL, target_die, target_cu);
96408a79 14029 if (target_physname == NULL)
b98664d3 14030 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
14031 "physname, for referencing DIE %s [in module %s]"),
14032 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 14033 else
7d455152 14034 SET_FIELD_PHYSNAME (call_site->target, target_physname);
96408a79
SA
14035 }
14036 else
14037 {
14038 CORE_ADDR lowpc;
14039
14040 /* DW_AT_entry_pc should be preferred. */
3a2b436a 14041 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
e385593e 14042 <= PC_BOUNDS_INVALID)
b98664d3 14043 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
14044 "low pc, for referencing DIE %s [in module %s]"),
14045 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 14046 else
3e29f34a
MR
14047 {
14048 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
14049 SET_FIELD_PHYSADDR (call_site->target, lowpc);
14050 }
96408a79
SA
14051 }
14052 }
14053 else
b98664d3 14054 complaint (_("DW_TAG_call_site DW_AT_call_target is neither "
9d8780f0
SM
14055 "block nor reference, for DIE %s [in module %s]"),
14056 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
14057
14058 call_site->per_cu = cu->per_cu;
14059
14060 for (child_die = die->child;
14061 child_die && child_die->tag;
14062 child_die = sibling_die (child_die))
14063 {
96408a79 14064 struct call_site_parameter *parameter;
1788b2d3 14065 struct attribute *loc, *origin;
96408a79 14066
216f72a1
JK
14067 if (child_die->tag != DW_TAG_call_site_parameter
14068 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79
SA
14069 {
14070 /* Already printed the complaint above. */
14071 continue;
14072 }
14073
14074 gdb_assert (call_site->parameter_count < nparams);
14075 parameter = &call_site->parameter[call_site->parameter_count];
14076
1788b2d3
JK
14077 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
14078 specifies DW_TAG_formal_parameter. Value of the data assumed for the
216f72a1 14079 register is contained in DW_AT_call_value. */
96408a79 14080
24c5c679 14081 loc = dwarf2_attr (child_die, DW_AT_location, cu);
216f72a1
JK
14082 origin = dwarf2_attr (child_die, DW_AT_call_parameter, cu);
14083 if (origin == NULL)
14084 {
14085 /* This was a pre-DWARF-5 GNU extension alias
14086 for DW_AT_call_parameter. */
14087 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
14088 }
7771576e 14089 if (loc == NULL && origin != NULL && attr_form_is_ref (origin))
1788b2d3 14090 {
1788b2d3 14091 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9c541725
PA
14092
14093 sect_offset sect_off
14094 = (sect_offset) dwarf2_get_ref_die_offset (origin);
14095 if (!offset_in_cu_p (&cu->header, sect_off))
d76b7dbc
JK
14096 {
14097 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
14098 binding can be done only inside one CU. Such referenced DIE
14099 therefore cannot be even moved to DW_TAG_partial_unit. */
b98664d3 14100 complaint (_("DW_AT_call_parameter offset is not in CU for "
9d8780f0
SM
14101 "DW_TAG_call_site child DIE %s [in module %s]"),
14102 sect_offset_str (child_die->sect_off),
9c541725 14103 objfile_name (objfile));
d76b7dbc
JK
14104 continue;
14105 }
9c541725
PA
14106 parameter->u.param_cu_off
14107 = (cu_offset) (sect_off - cu->header.sect_off);
1788b2d3
JK
14108 }
14109 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
96408a79 14110 {
b98664d3 14111 complaint (_("No DW_FORM_block* DW_AT_location for "
9d8780f0
SM
14112 "DW_TAG_call_site child DIE %s [in module %s]"),
14113 sect_offset_str (child_die->sect_off), objfile_name (objfile));
96408a79
SA
14114 continue;
14115 }
24c5c679 14116 else
96408a79 14117 {
24c5c679
JK
14118 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
14119 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
14120 if (parameter->u.dwarf_reg != -1)
14121 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
14122 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
14123 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
14124 &parameter->u.fb_offset))
14125 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
14126 else
14127 {
b98664d3 14128 complaint (_("Only single DW_OP_reg or DW_OP_fbreg is supported "
24c5c679 14129 "for DW_FORM_block* DW_AT_location is supported for "
9d8780f0 14130 "DW_TAG_call_site child DIE %s "
24c5c679 14131 "[in module %s]"),
9d8780f0 14132 sect_offset_str (child_die->sect_off),
9c541725 14133 objfile_name (objfile));
24c5c679
JK
14134 continue;
14135 }
96408a79
SA
14136 }
14137
216f72a1
JK
14138 attr = dwarf2_attr (child_die, DW_AT_call_value, cu);
14139 if (attr == NULL)
14140 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
96408a79
SA
14141 if (!attr_form_is_block (attr))
14142 {
b98664d3 14143 complaint (_("No DW_FORM_block* DW_AT_call_value for "
9d8780f0
SM
14144 "DW_TAG_call_site child DIE %s [in module %s]"),
14145 sect_offset_str (child_die->sect_off),
9c541725 14146 objfile_name (objfile));
96408a79
SA
14147 continue;
14148 }
14149 parameter->value = DW_BLOCK (attr)->data;
14150 parameter->value_size = DW_BLOCK (attr)->size;
14151
14152 /* Parameters are not pre-cleared by memset above. */
14153 parameter->data_value = NULL;
14154 parameter->data_value_size = 0;
14155 call_site->parameter_count++;
14156
216f72a1
JK
14157 attr = dwarf2_attr (child_die, DW_AT_call_data_value, cu);
14158 if (attr == NULL)
14159 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
96408a79
SA
14160 if (attr)
14161 {
14162 if (!attr_form_is_block (attr))
b98664d3 14163 complaint (_("No DW_FORM_block* DW_AT_call_data_value for "
9d8780f0
SM
14164 "DW_TAG_call_site child DIE %s [in module %s]"),
14165 sect_offset_str (child_die->sect_off),
9c541725 14166 objfile_name (objfile));
96408a79
SA
14167 else
14168 {
14169 parameter->data_value = DW_BLOCK (attr)->data;
14170 parameter->data_value_size = DW_BLOCK (attr)->size;
14171 }
14172 }
14173 }
14174}
14175
71a3c369
TT
14176/* Helper function for read_variable. If DIE represents a virtual
14177 table, then return the type of the concrete object that is
14178 associated with the virtual table. Otherwise, return NULL. */
14179
14180static struct type *
14181rust_containing_type (struct die_info *die, struct dwarf2_cu *cu)
14182{
14183 struct attribute *attr = dwarf2_attr (die, DW_AT_type, cu);
14184 if (attr == NULL)
14185 return NULL;
14186
14187 /* Find the type DIE. */
14188 struct die_info *type_die = NULL;
14189 struct dwarf2_cu *type_cu = cu;
14190
14191 if (attr_form_is_ref (attr))
14192 type_die = follow_die_ref (die, attr, &type_cu);
14193 if (type_die == NULL)
14194 return NULL;
14195
14196 if (dwarf2_attr (type_die, DW_AT_containing_type, type_cu) == NULL)
14197 return NULL;
14198 return die_containing_type (type_die, type_cu);
14199}
14200
14201/* Read a variable (DW_TAG_variable) DIE and create a new symbol. */
14202
14203static void
14204read_variable (struct die_info *die, struct dwarf2_cu *cu)
14205{
14206 struct rust_vtable_symbol *storage = NULL;
14207
14208 if (cu->language == language_rust)
14209 {
14210 struct type *containing_type = rust_containing_type (die, cu);
14211
14212 if (containing_type != NULL)
14213 {
518817b3 14214 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
71a3c369
TT
14215
14216 storage = OBSTACK_ZALLOC (&objfile->objfile_obstack,
14217 struct rust_vtable_symbol);
14218 initialize_objfile_symbol (storage);
14219 storage->concrete_type = containing_type;
cf724bc9 14220 storage->subclass = SYMBOL_RUST_VTABLE;
71a3c369
TT
14221 }
14222 }
14223
e4a62c65
TV
14224 struct symbol *res = new_symbol (die, NULL, cu, storage);
14225 struct attribute *abstract_origin
14226 = dwarf2_attr (die, DW_AT_abstract_origin, cu);
14227 struct attribute *loc = dwarf2_attr (die, DW_AT_location, cu);
14228 if (res == NULL && loc && abstract_origin)
14229 {
14230 /* We have a variable without a name, but with a location and an abstract
14231 origin. This may be a concrete instance of an abstract variable
14232 referenced from an DW_OP_GNU_variable_value, so save it to find it back
14233 later. */
14234 struct dwarf2_cu *origin_cu = cu;
14235 struct die_info *origin_die
14236 = follow_die_ref (die, abstract_origin, &origin_cu);
14237 dwarf2_per_objfile *dpo = cu->per_cu->dwarf2_per_objfile;
3360b6e7 14238 dpo->abstract_to_concrete[origin_die->sect_off].push_back (die->sect_off);
e4a62c65 14239 }
71a3c369
TT
14240}
14241
43988095
JK
14242/* Call CALLBACK from DW_AT_ranges attribute value OFFSET
14243 reading .debug_rnglists.
14244 Callback's type should be:
14245 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
14246 Return true if the attributes are present and valid, otherwise,
14247 return false. */
14248
14249template <typename Callback>
14250static bool
14251dwarf2_rnglists_process (unsigned offset, struct dwarf2_cu *cu,
14252 Callback &&callback)
14253{
ed2dc618 14254 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 14255 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 14256 struct objfile *objfile = dwarf2_per_objfile->objfile;
43988095 14257 bfd *obfd = objfile->obfd;
43988095
JK
14258 /* Base address selection entry. */
14259 CORE_ADDR base;
14260 int found_base;
43988095 14261 const gdb_byte *buffer;
43988095
JK
14262 CORE_ADDR baseaddr;
14263 bool overflow = false;
14264
14265 found_base = cu->base_known;
14266 base = cu->base_address;
14267
14268 dwarf2_read_section (objfile, &dwarf2_per_objfile->rnglists);
14269 if (offset >= dwarf2_per_objfile->rnglists.size)
14270 {
b98664d3 14271 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43988095
JK
14272 offset);
14273 return false;
14274 }
14275 buffer = dwarf2_per_objfile->rnglists.buffer + offset;
14276
14277 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14278
14279 while (1)
14280 {
7814882a
JK
14281 /* Initialize it due to a false compiler warning. */
14282 CORE_ADDR range_beginning = 0, range_end = 0;
43988095
JK
14283 const gdb_byte *buf_end = (dwarf2_per_objfile->rnglists.buffer
14284 + dwarf2_per_objfile->rnglists.size);
14285 unsigned int bytes_read;
14286
14287 if (buffer == buf_end)
14288 {
14289 overflow = true;
14290 break;
14291 }
14292 const auto rlet = static_cast<enum dwarf_range_list_entry>(*buffer++);
14293 switch (rlet)
14294 {
14295 case DW_RLE_end_of_list:
14296 break;
14297 case DW_RLE_base_address:
14298 if (buffer + cu->header.addr_size > buf_end)
14299 {
14300 overflow = true;
14301 break;
14302 }
14303 base = read_address (obfd, buffer, cu, &bytes_read);
14304 found_base = 1;
14305 buffer += bytes_read;
14306 break;
14307 case DW_RLE_start_length:
14308 if (buffer + cu->header.addr_size > buf_end)
14309 {
14310 overflow = true;
14311 break;
14312 }
14313 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14314 buffer += bytes_read;
14315 range_end = (range_beginning
14316 + read_unsigned_leb128 (obfd, buffer, &bytes_read));
14317 buffer += bytes_read;
14318 if (buffer > buf_end)
14319 {
14320 overflow = true;
14321 break;
14322 }
14323 break;
14324 case DW_RLE_offset_pair:
14325 range_beginning = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14326 buffer += bytes_read;
14327 if (buffer > buf_end)
14328 {
14329 overflow = true;
14330 break;
14331 }
14332 range_end = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14333 buffer += bytes_read;
14334 if (buffer > buf_end)
14335 {
14336 overflow = true;
14337 break;
14338 }
14339 break;
14340 case DW_RLE_start_end:
14341 if (buffer + 2 * cu->header.addr_size > buf_end)
14342 {
14343 overflow = true;
14344 break;
14345 }
14346 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14347 buffer += bytes_read;
14348 range_end = read_address (obfd, buffer, cu, &bytes_read);
14349 buffer += bytes_read;
14350 break;
14351 default:
b98664d3 14352 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
14353 return false;
14354 }
14355 if (rlet == DW_RLE_end_of_list || overflow)
14356 break;
14357 if (rlet == DW_RLE_base_address)
14358 continue;
14359
14360 if (!found_base)
14361 {
14362 /* We have no valid base address for the ranges
14363 data. */
b98664d3 14364 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
14365 return false;
14366 }
14367
14368 if (range_beginning > range_end)
14369 {
14370 /* Inverted range entries are invalid. */
b98664d3 14371 complaint (_("Invalid .debug_rnglists data (inverted range)"));
43988095
JK
14372 return false;
14373 }
14374
14375 /* Empty range entries have no effect. */
14376 if (range_beginning == range_end)
14377 continue;
14378
14379 range_beginning += base;
14380 range_end += base;
14381
14382 /* A not-uncommon case of bad debug info.
14383 Don't pollute the addrmap with bad data. */
14384 if (range_beginning + baseaddr == 0
14385 && !dwarf2_per_objfile->has_section_at_zero)
14386 {
b98664d3 14387 complaint (_(".debug_rnglists entry has start address of zero"
43988095
JK
14388 " [in module %s]"), objfile_name (objfile));
14389 continue;
14390 }
14391
14392 callback (range_beginning, range_end);
14393 }
14394
14395 if (overflow)
14396 {
b98664d3 14397 complaint (_("Offset %d is not terminated "
43988095
JK
14398 "for DW_AT_ranges attribute"),
14399 offset);
14400 return false;
14401 }
14402
14403 return true;
14404}
14405
14406/* Call CALLBACK from DW_AT_ranges attribute value OFFSET reading .debug_ranges.
14407 Callback's type should be:
14408 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
5f46c5a5 14409 Return 1 if the attributes are present and valid, otherwise, return 0. */
43039443 14410
43988095 14411template <typename Callback>
43039443 14412static int
5f46c5a5 14413dwarf2_ranges_process (unsigned offset, struct dwarf2_cu *cu,
43988095 14414 Callback &&callback)
43039443 14415{
ed2dc618 14416 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 14417 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 14418 struct objfile *objfile = dwarf2_per_objfile->objfile;
43039443
JK
14419 struct comp_unit_head *cu_header = &cu->header;
14420 bfd *obfd = objfile->obfd;
14421 unsigned int addr_size = cu_header->addr_size;
14422 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
14423 /* Base address selection entry. */
14424 CORE_ADDR base;
14425 int found_base;
14426 unsigned int dummy;
d521ce57 14427 const gdb_byte *buffer;
ff013f42 14428 CORE_ADDR baseaddr;
43039443 14429
43988095
JK
14430 if (cu_header->version >= 5)
14431 return dwarf2_rnglists_process (offset, cu, callback);
14432
d00adf39
DE
14433 found_base = cu->base_known;
14434 base = cu->base_address;
43039443 14435
be391dca 14436 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
dce234bc 14437 if (offset >= dwarf2_per_objfile->ranges.size)
43039443 14438 {
b98664d3 14439 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43039443
JK
14440 offset);
14441 return 0;
14442 }
dce234bc 14443 buffer = dwarf2_per_objfile->ranges.buffer + offset;
43039443 14444
e7030f15 14445 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
ff013f42 14446
43039443
JK
14447 while (1)
14448 {
14449 CORE_ADDR range_beginning, range_end;
14450
14451 range_beginning = read_address (obfd, buffer, cu, &dummy);
14452 buffer += addr_size;
14453 range_end = read_address (obfd, buffer, cu, &dummy);
14454 buffer += addr_size;
14455 offset += 2 * addr_size;
14456
14457 /* An end of list marker is a pair of zero addresses. */
14458 if (range_beginning == 0 && range_end == 0)
14459 /* Found the end of list entry. */
14460 break;
14461
14462 /* Each base address selection entry is a pair of 2 values.
14463 The first is the largest possible address, the second is
14464 the base address. Check for a base address here. */
14465 if ((range_beginning & mask) == mask)
14466 {
28d2bfb9
AB
14467 /* If we found the largest possible address, then we already
14468 have the base address in range_end. */
14469 base = range_end;
43039443
JK
14470 found_base = 1;
14471 continue;
14472 }
14473
14474 if (!found_base)
14475 {
14476 /* We have no valid base address for the ranges
14477 data. */
b98664d3 14478 complaint (_("Invalid .debug_ranges data (no base address)"));
43039443
JK
14479 return 0;
14480 }
14481
9277c30c
UW
14482 if (range_beginning > range_end)
14483 {
14484 /* Inverted range entries are invalid. */
b98664d3 14485 complaint (_("Invalid .debug_ranges data (inverted range)"));
9277c30c
UW
14486 return 0;
14487 }
14488
14489 /* Empty range entries have no effect. */
14490 if (range_beginning == range_end)
14491 continue;
14492
43039443
JK
14493 range_beginning += base;
14494 range_end += base;
14495
01093045
DE
14496 /* A not-uncommon case of bad debug info.
14497 Don't pollute the addrmap with bad data. */
14498 if (range_beginning + baseaddr == 0
14499 && !dwarf2_per_objfile->has_section_at_zero)
14500 {
b98664d3 14501 complaint (_(".debug_ranges entry has start address of zero"
4262abfb 14502 " [in module %s]"), objfile_name (objfile));
01093045
DE
14503 continue;
14504 }
14505
5f46c5a5
JK
14506 callback (range_beginning, range_end);
14507 }
14508
14509 return 1;
14510}
14511
14512/* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
14513 Return 1 if the attributes are present and valid, otherwise, return 0.
14514 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
14515
14516static int
14517dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
14518 CORE_ADDR *high_return, struct dwarf2_cu *cu,
14519 struct partial_symtab *ranges_pst)
14520{
518817b3 14521 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
5f46c5a5
JK
14522 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14523 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
14524 SECT_OFF_TEXT (objfile));
14525 int low_set = 0;
14526 CORE_ADDR low = 0;
14527 CORE_ADDR high = 0;
14528 int retval;
14529
14530 retval = dwarf2_ranges_process (offset, cu,
14531 [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
14532 {
9277c30c 14533 if (ranges_pst != NULL)
3e29f34a
MR
14534 {
14535 CORE_ADDR lowpc;
14536 CORE_ADDR highpc;
14537
79748972
TT
14538 lowpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14539 range_beginning + baseaddr)
14540 - baseaddr);
14541 highpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14542 range_end + baseaddr)
14543 - baseaddr);
d320c2b5
TT
14544 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
14545 lowpc, highpc - 1, ranges_pst);
3e29f34a 14546 }
ff013f42 14547
43039443
JK
14548 /* FIXME: This is recording everything as a low-high
14549 segment of consecutive addresses. We should have a
14550 data structure for discontiguous block ranges
14551 instead. */
14552 if (! low_set)
14553 {
14554 low = range_beginning;
14555 high = range_end;
14556 low_set = 1;
14557 }
14558 else
14559 {
14560 if (range_beginning < low)
14561 low = range_beginning;
14562 if (range_end > high)
14563 high = range_end;
14564 }
5f46c5a5
JK
14565 });
14566 if (!retval)
14567 return 0;
43039443
JK
14568
14569 if (! low_set)
14570 /* If the first entry is an end-of-list marker, the range
14571 describes an empty scope, i.e. no instructions. */
14572 return 0;
14573
14574 if (low_return)
14575 *low_return = low;
14576 if (high_return)
14577 *high_return = high;
14578 return 1;
14579}
14580
3a2b436a
JK
14581/* Get low and high pc attributes from a die. See enum pc_bounds_kind
14582 definition for the return value. *LOWPC and *HIGHPC are set iff
e385593e 14583 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
380bca97 14584
3a2b436a 14585static enum pc_bounds_kind
af34e669 14586dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
d85a05f0
DJ
14587 CORE_ADDR *highpc, struct dwarf2_cu *cu,
14588 struct partial_symtab *pst)
c906108c 14589{
518817b3
SM
14590 struct dwarf2_per_objfile *dwarf2_per_objfile
14591 = cu->per_cu->dwarf2_per_objfile;
c906108c 14592 struct attribute *attr;
91da1414 14593 struct attribute *attr_high;
af34e669
DJ
14594 CORE_ADDR low = 0;
14595 CORE_ADDR high = 0;
e385593e 14596 enum pc_bounds_kind ret;
c906108c 14597
91da1414
MW
14598 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14599 if (attr_high)
af34e669 14600 {
e142c38c 14601 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
af34e669 14602 if (attr)
91da1414 14603 {
31aa7e4e
JB
14604 low = attr_value_as_address (attr);
14605 high = attr_value_as_address (attr_high);
14606 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14607 high += low;
91da1414 14608 }
af34e669
DJ
14609 else
14610 /* Found high w/o low attribute. */
e385593e 14611 return PC_BOUNDS_INVALID;
af34e669
DJ
14612
14613 /* Found consecutive range of addresses. */
3a2b436a 14614 ret = PC_BOUNDS_HIGH_LOW;
af34e669 14615 }
c906108c 14616 else
af34e669 14617 {
e142c38c 14618 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
14619 if (attr != NULL)
14620 {
ab435259
DE
14621 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14622 We take advantage of the fact that DW_AT_ranges does not appear
14623 in DW_TAG_compile_unit of DWO files. */
14624 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14625 unsigned int ranges_offset = (DW_UNSND (attr)
14626 + (need_ranges_base
14627 ? cu->ranges_base
14628 : 0));
2e3cf129 14629
af34e669 14630 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 14631 .debug_ranges section. */
2e3cf129 14632 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
e385593e 14633 return PC_BOUNDS_INVALID;
43039443 14634 /* Found discontinuous range of addresses. */
3a2b436a 14635 ret = PC_BOUNDS_RANGES;
af34e669 14636 }
e385593e
JK
14637 else
14638 return PC_BOUNDS_NOT_PRESENT;
af34e669 14639 }
c906108c 14640
48fbe735 14641 /* partial_die_info::read has also the strict LOW < HIGH requirement. */
9373cf26 14642 if (high <= low)
e385593e 14643 return PC_BOUNDS_INVALID;
c906108c
SS
14644
14645 /* When using the GNU linker, .gnu.linkonce. sections are used to
14646 eliminate duplicate copies of functions and vtables and such.
14647 The linker will arbitrarily choose one and discard the others.
14648 The AT_*_pc values for such functions refer to local labels in
14649 these sections. If the section from that file was discarded, the
14650 labels are not in the output, so the relocs get a value of 0.
14651 If this is a discarded function, mark the pc bounds as invalid,
14652 so that GDB will ignore it. */
72dca2f5 14653 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
e385593e 14654 return PC_BOUNDS_INVALID;
c906108c
SS
14655
14656 *lowpc = low;
96408a79
SA
14657 if (highpc)
14658 *highpc = high;
af34e669 14659 return ret;
c906108c
SS
14660}
14661
b084d499
JB
14662/* Assuming that DIE represents a subprogram DIE or a lexical block, get
14663 its low and high PC addresses. Do nothing if these addresses could not
14664 be determined. Otherwise, set LOWPC to the low address if it is smaller,
14665 and HIGHPC to the high address if greater than HIGHPC. */
14666
14667static void
14668dwarf2_get_subprogram_pc_bounds (struct die_info *die,
14669 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14670 struct dwarf2_cu *cu)
14671{
14672 CORE_ADDR low, high;
14673 struct die_info *child = die->child;
14674
e385593e 14675 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
b084d499 14676 {
325fac50
PA
14677 *lowpc = std::min (*lowpc, low);
14678 *highpc = std::max (*highpc, high);
b084d499
JB
14679 }
14680
14681 /* If the language does not allow nested subprograms (either inside
14682 subprograms or lexical blocks), we're done. */
14683 if (cu->language != language_ada)
14684 return;
6e70227d 14685
b084d499
JB
14686 /* Check all the children of the given DIE. If it contains nested
14687 subprograms, then check their pc bounds. Likewise, we need to
14688 check lexical blocks as well, as they may also contain subprogram
14689 definitions. */
14690 while (child && child->tag)
14691 {
14692 if (child->tag == DW_TAG_subprogram
14693 || child->tag == DW_TAG_lexical_block)
14694 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
14695 child = sibling_die (child);
14696 }
14697}
14698
fae299cd
DC
14699/* Get the low and high pc's represented by the scope DIE, and store
14700 them in *LOWPC and *HIGHPC. If the correct values can't be
14701 determined, set *LOWPC to -1 and *HIGHPC to 0. */
14702
14703static void
14704get_scope_pc_bounds (struct die_info *die,
14705 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14706 struct dwarf2_cu *cu)
14707{
14708 CORE_ADDR best_low = (CORE_ADDR) -1;
14709 CORE_ADDR best_high = (CORE_ADDR) 0;
14710 CORE_ADDR current_low, current_high;
14711
3a2b436a 14712 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL)
e385593e 14713 >= PC_BOUNDS_RANGES)
fae299cd
DC
14714 {
14715 best_low = current_low;
14716 best_high = current_high;
14717 }
14718 else
14719 {
14720 struct die_info *child = die->child;
14721
14722 while (child && child->tag)
14723 {
14724 switch (child->tag) {
14725 case DW_TAG_subprogram:
b084d499 14726 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
fae299cd
DC
14727 break;
14728 case DW_TAG_namespace:
f55ee35c 14729 case DW_TAG_module:
fae299cd
DC
14730 /* FIXME: carlton/2004-01-16: Should we do this for
14731 DW_TAG_class_type/DW_TAG_structure_type, too? I think
14732 that current GCC's always emit the DIEs corresponding
14733 to definitions of methods of classes as children of a
14734 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
14735 the DIEs giving the declarations, which could be
14736 anywhere). But I don't see any reason why the
14737 standards says that they have to be there. */
14738 get_scope_pc_bounds (child, &current_low, &current_high, cu);
14739
14740 if (current_low != ((CORE_ADDR) -1))
14741 {
325fac50
PA
14742 best_low = std::min (best_low, current_low);
14743 best_high = std::max (best_high, current_high);
fae299cd
DC
14744 }
14745 break;
14746 default:
0963b4bd 14747 /* Ignore. */
fae299cd
DC
14748 break;
14749 }
14750
14751 child = sibling_die (child);
14752 }
14753 }
14754
14755 *lowpc = best_low;
14756 *highpc = best_high;
14757}
14758
801e3a5b
JB
14759/* Record the address ranges for BLOCK, offset by BASEADDR, as given
14760 in DIE. */
380bca97 14761
801e3a5b
JB
14762static void
14763dwarf2_record_block_ranges (struct die_info *die, struct block *block,
14764 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
14765{
518817b3 14766 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 14767 struct gdbarch *gdbarch = get_objfile_arch (objfile);
801e3a5b 14768 struct attribute *attr;
91da1414 14769 struct attribute *attr_high;
801e3a5b 14770
91da1414
MW
14771 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14772 if (attr_high)
801e3a5b 14773 {
801e3a5b
JB
14774 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
14775 if (attr)
14776 {
31aa7e4e
JB
14777 CORE_ADDR low = attr_value_as_address (attr);
14778 CORE_ADDR high = attr_value_as_address (attr_high);
14779
14780 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14781 high += low;
9a619af0 14782
3e29f34a
MR
14783 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
14784 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
c24bdb02 14785 cu->get_builder ()->record_block_range (block, low, high - 1);
801e3a5b
JB
14786 }
14787 }
14788
14789 attr = dwarf2_attr (die, DW_AT_ranges, cu);
14790 if (attr)
14791 {
ab435259
DE
14792 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14793 We take advantage of the fact that DW_AT_ranges does not appear
14794 in DW_TAG_compile_unit of DWO files. */
14795 int need_ranges_base = die->tag != DW_TAG_compile_unit;
801e3a5b
JB
14796
14797 /* The value of the DW_AT_ranges attribute is the offset of the
14798 address range list in the .debug_ranges section. */
ab435259
DE
14799 unsigned long offset = (DW_UNSND (attr)
14800 + (need_ranges_base ? cu->ranges_base : 0));
801e3a5b 14801
2d5f09ec 14802 std::vector<blockrange> blockvec;
5f46c5a5
JK
14803 dwarf2_ranges_process (offset, cu,
14804 [&] (CORE_ADDR start, CORE_ADDR end)
14805 {
58fdfd2c
JK
14806 start += baseaddr;
14807 end += baseaddr;
5f46c5a5
JK
14808 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
14809 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
c24bdb02 14810 cu->get_builder ()->record_block_range (block, start, end - 1);
2d5f09ec 14811 blockvec.emplace_back (start, end);
5f46c5a5 14812 });
2d5f09ec
KB
14813
14814 BLOCK_RANGES(block) = make_blockranges (objfile, blockvec);
801e3a5b
JB
14815 }
14816}
14817
685b1105
JK
14818/* Check whether the producer field indicates either of GCC < 4.6, or the
14819 Intel C/C++ compiler, and cache the result in CU. */
60d5a603 14820
685b1105
JK
14821static void
14822check_producer (struct dwarf2_cu *cu)
60d5a603 14823{
38360086 14824 int major, minor;
60d5a603
JK
14825
14826 if (cu->producer == NULL)
14827 {
14828 /* For unknown compilers expect their behavior is DWARF version
14829 compliant.
14830
14831 GCC started to support .debug_types sections by -gdwarf-4 since
14832 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
14833 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
14834 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
14835 interpreted incorrectly by GDB now - GCC PR debug/48229. */
60d5a603 14836 }
b1ffba5a 14837 else if (producer_is_gcc (cu->producer, &major, &minor))
60d5a603 14838 {
38360086
MW
14839 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
14840 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
685b1105 14841 }
5230b05a 14842 else if (producer_is_icc (cu->producer, &major, &minor))
eb77c9df
AB
14843 {
14844 cu->producer_is_icc = true;
14845 cu->producer_is_icc_lt_14 = major < 14;
14846 }
c258c396
JD
14847 else if (startswith (cu->producer, "CodeWarrior S12/L-ISA"))
14848 cu->producer_is_codewarrior = true;
685b1105
JK
14849 else
14850 {
14851 /* For other non-GCC compilers, expect their behavior is DWARF version
14852 compliant. */
60d5a603
JK
14853 }
14854
9068261f 14855 cu->checked_producer = true;
685b1105 14856}
ba919b58 14857
685b1105
JK
14858/* Check for GCC PR debug/45124 fix which is not present in any G++ version up
14859 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
14860 during 4.6.0 experimental. */
14861
9068261f 14862static bool
685b1105
JK
14863producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
14864{
14865 if (!cu->checked_producer)
14866 check_producer (cu);
14867
14868 return cu->producer_is_gxx_lt_4_6;
60d5a603
JK
14869}
14870
c258c396
JD
14871
14872/* Codewarrior (at least as of version 5.0.40) generates dwarf line information
14873 with incorrect is_stmt attributes. */
14874
14875static bool
14876producer_is_codewarrior (struct dwarf2_cu *cu)
14877{
14878 if (!cu->checked_producer)
14879 check_producer (cu);
14880
14881 return cu->producer_is_codewarrior;
14882}
14883
60d5a603
JK
14884/* Return the default accessibility type if it is not overriden by
14885 DW_AT_accessibility. */
14886
14887static enum dwarf_access_attribute
14888dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
14889{
14890 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
14891 {
14892 /* The default DWARF 2 accessibility for members is public, the default
14893 accessibility for inheritance is private. */
14894
14895 if (die->tag != DW_TAG_inheritance)
14896 return DW_ACCESS_public;
14897 else
14898 return DW_ACCESS_private;
14899 }
14900 else
14901 {
14902 /* DWARF 3+ defines the default accessibility a different way. The same
14903 rules apply now for DW_TAG_inheritance as for the members and it only
14904 depends on the container kind. */
14905
14906 if (die->parent->tag == DW_TAG_class_type)
14907 return DW_ACCESS_private;
14908 else
14909 return DW_ACCESS_public;
14910 }
14911}
14912
74ac6d43
TT
14913/* Look for DW_AT_data_member_location. Set *OFFSET to the byte
14914 offset. If the attribute was not found return 0, otherwise return
14915 1. If it was found but could not properly be handled, set *OFFSET
14916 to 0. */
14917
14918static int
14919handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14920 LONGEST *offset)
14921{
14922 struct attribute *attr;
14923
14924 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14925 if (attr != NULL)
14926 {
14927 *offset = 0;
14928
14929 /* Note that we do not check for a section offset first here.
14930 This is because DW_AT_data_member_location is new in DWARF 4,
14931 so if we see it, we can assume that a constant form is really
14932 a constant and not a section offset. */
14933 if (attr_form_is_constant (attr))
14934 *offset = dwarf2_get_attr_constant_value (attr, 0);
14935 else if (attr_form_is_section_offset (attr))
14936 dwarf2_complex_location_expr_complaint ();
14937 else if (attr_form_is_block (attr))
14938 *offset = decode_locdesc (DW_BLOCK (attr), cu);
14939 else
14940 dwarf2_complex_location_expr_complaint ();
14941
14942 return 1;
14943 }
14944
14945 return 0;
14946}
14947
c906108c
SS
14948/* Add an aggregate field to the field list. */
14949
14950static void
107d2387 14951dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73 14952 struct dwarf2_cu *cu)
6e70227d 14953{
518817b3 14954 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
5e2b427d 14955 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
14956 struct nextfield *new_field;
14957 struct attribute *attr;
14958 struct field *fp;
15d034d0 14959 const char *fieldname = "";
c906108c 14960
7d0ccb61
DJ
14961 if (die->tag == DW_TAG_inheritance)
14962 {
be2daae6
TT
14963 fip->baseclasses.emplace_back ();
14964 new_field = &fip->baseclasses.back ();
7d0ccb61
DJ
14965 }
14966 else
14967 {
be2daae6
TT
14968 fip->fields.emplace_back ();
14969 new_field = &fip->fields.back ();
7d0ccb61 14970 }
be2daae6 14971
c906108c
SS
14972 fip->nfields++;
14973
e142c38c 14974 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c
SS
14975 if (attr)
14976 new_field->accessibility = DW_UNSND (attr);
60d5a603
JK
14977 else
14978 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
c906108c
SS
14979 if (new_field->accessibility != DW_ACCESS_public)
14980 fip->non_public_fields = 1;
60d5a603 14981
e142c38c 14982 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
c906108c
SS
14983 if (attr)
14984 new_field->virtuality = DW_UNSND (attr);
60d5a603
JK
14985 else
14986 new_field->virtuality = DW_VIRTUALITY_none;
c906108c
SS
14987
14988 fp = &new_field->field;
a9a9bd0f 14989
e142c38c 14990 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 14991 {
74ac6d43
TT
14992 LONGEST offset;
14993
a9a9bd0f 14994 /* Data member other than a C++ static data member. */
6e70227d 14995
c906108c 14996 /* Get type of field. */
e7c27a73 14997 fp->type = die_type (die, cu);
c906108c 14998
d6a843b5 14999 SET_FIELD_BITPOS (*fp, 0);
01ad7f36 15000
c906108c 15001 /* Get bit size of field (zero if none). */
e142c38c 15002 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
c906108c
SS
15003 if (attr)
15004 {
15005 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
15006 }
15007 else
15008 {
15009 FIELD_BITSIZE (*fp) = 0;
15010 }
15011
15012 /* Get bit offset of field. */
74ac6d43
TT
15013 if (handle_data_member_location (die, cu, &offset))
15014 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
e142c38c 15015 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
c906108c
SS
15016 if (attr)
15017 {
5e2b427d 15018 if (gdbarch_bits_big_endian (gdbarch))
c906108c
SS
15019 {
15020 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
15021 additional bit offset from the MSB of the containing
15022 anonymous object to the MSB of the field. We don't
15023 have to do anything special since we don't need to
15024 know the size of the anonymous object. */
f41f5e61 15025 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
c906108c
SS
15026 }
15027 else
15028 {
15029 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
15030 MSB of the anonymous object, subtract off the number of
15031 bits from the MSB of the field to the MSB of the
15032 object, and then subtract off the number of bits of
15033 the field itself. The result is the bit offset of
15034 the LSB of the field. */
c906108c
SS
15035 int anonymous_size;
15036 int bit_offset = DW_UNSND (attr);
15037
e142c38c 15038 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
15039 if (attr)
15040 {
15041 /* The size of the anonymous object containing
15042 the bit field is explicit, so use the
15043 indicated size (in bytes). */
15044 anonymous_size = DW_UNSND (attr);
15045 }
15046 else
15047 {
15048 /* The size of the anonymous object containing
15049 the bit field must be inferred from the type
15050 attribute of the data member containing the
15051 bit field. */
15052 anonymous_size = TYPE_LENGTH (fp->type);
15053 }
f41f5e61
PA
15054 SET_FIELD_BITPOS (*fp,
15055 (FIELD_BITPOS (*fp)
15056 + anonymous_size * bits_per_byte
15057 - bit_offset - FIELD_BITSIZE (*fp)));
c906108c
SS
15058 }
15059 }
da5b30da
AA
15060 attr = dwarf2_attr (die, DW_AT_data_bit_offset, cu);
15061 if (attr != NULL)
15062 SET_FIELD_BITPOS (*fp, (FIELD_BITPOS (*fp)
15063 + dwarf2_get_attr_constant_value (attr, 0)));
c906108c
SS
15064
15065 /* Get name of field. */
39cbfefa
DJ
15066 fieldname = dwarf2_name (die, cu);
15067 if (fieldname == NULL)
15068 fieldname = "";
d8151005
DJ
15069
15070 /* The name is already allocated along with this objfile, so we don't
15071 need to duplicate it for the type. */
15072 fp->name = fieldname;
c906108c
SS
15073
15074 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 15075 pointer or virtual base class pointer) to private. */
e142c38c 15076 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c 15077 {
d48cc9dd 15078 FIELD_ARTIFICIAL (*fp) = 1;
c906108c
SS
15079 new_field->accessibility = DW_ACCESS_private;
15080 fip->non_public_fields = 1;
15081 }
15082 }
a9a9bd0f 15083 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 15084 {
a9a9bd0f
DC
15085 /* C++ static member. */
15086
15087 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
15088 is a declaration, but all versions of G++ as of this writing
15089 (so through at least 3.2.1) incorrectly generate
15090 DW_TAG_variable tags. */
6e70227d 15091
ff355380 15092 const char *physname;
c906108c 15093
a9a9bd0f 15094 /* Get name of field. */
39cbfefa
DJ
15095 fieldname = dwarf2_name (die, cu);
15096 if (fieldname == NULL)
c906108c
SS
15097 return;
15098
254e6b9e 15099 attr = dwarf2_attr (die, DW_AT_const_value, cu);
3863f96c
DE
15100 if (attr
15101 /* Only create a symbol if this is an external value.
15102 new_symbol checks this and puts the value in the global symbol
15103 table, which we want. If it is not external, new_symbol
15104 will try to put the value in cu->list_in_scope which is wrong. */
15105 && dwarf2_flag_true_p (die, DW_AT_external, cu))
254e6b9e
DE
15106 {
15107 /* A static const member, not much different than an enum as far as
15108 we're concerned, except that we can support more types. */
15109 new_symbol (die, NULL, cu);
15110 }
15111
2df3850c 15112 /* Get physical name. */
ff355380 15113 physname = dwarf2_physname (fieldname, die, cu);
c906108c 15114
d8151005
DJ
15115 /* The name is already allocated along with this objfile, so we don't
15116 need to duplicate it for the type. */
15117 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 15118 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 15119 FIELD_NAME (*fp) = fieldname;
c906108c
SS
15120 }
15121 else if (die->tag == DW_TAG_inheritance)
15122 {
74ac6d43 15123 LONGEST offset;
d4b96c9a 15124
74ac6d43
TT
15125 /* C++ base class field. */
15126 if (handle_data_member_location (die, cu, &offset))
15127 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
c906108c 15128 FIELD_BITSIZE (*fp) = 0;
e7c27a73 15129 FIELD_TYPE (*fp) = die_type (die, cu);
a737d952 15130 FIELD_NAME (*fp) = TYPE_NAME (fp->type);
c906108c 15131 }
2ddeaf8a
TT
15132 else if (die->tag == DW_TAG_variant_part)
15133 {
15134 /* process_structure_scope will treat this DIE as a union. */
15135 process_structure_scope (die, cu);
15136
15137 /* The variant part is relative to the start of the enclosing
15138 structure. */
15139 SET_FIELD_BITPOS (*fp, 0);
15140 fp->type = get_die_type (die, cu);
15141 fp->artificial = 1;
15142 fp->name = "<<variant>>";
c8c81635
TT
15143
15144 /* Normally a DW_TAG_variant_part won't have a size, but our
15145 representation requires one, so set it to the maximum of the
15146 child sizes. */
15147 if (TYPE_LENGTH (fp->type) == 0)
15148 {
15149 unsigned max = 0;
15150 for (int i = 0; i < TYPE_NFIELDS (fp->type); ++i)
15151 if (TYPE_LENGTH (TYPE_FIELD_TYPE (fp->type, i)) > max)
15152 max = TYPE_LENGTH (TYPE_FIELD_TYPE (fp->type, i));
15153 TYPE_LENGTH (fp->type) = max;
15154 }
2ddeaf8a
TT
15155 }
15156 else
15157 gdb_assert_not_reached ("missing case in dwarf2_add_field");
c906108c
SS
15158}
15159
883fd55a
KS
15160/* Can the type given by DIE define another type? */
15161
15162static bool
15163type_can_define_types (const struct die_info *die)
15164{
15165 switch (die->tag)
15166 {
15167 case DW_TAG_typedef:
15168 case DW_TAG_class_type:
15169 case DW_TAG_structure_type:
15170 case DW_TAG_union_type:
15171 case DW_TAG_enumeration_type:
15172 return true;
15173
15174 default:
15175 return false;
15176 }
15177}
15178
15179/* Add a type definition defined in the scope of the FIP's class. */
98751a41
JK
15180
15181static void
883fd55a
KS
15182dwarf2_add_type_defn (struct field_info *fip, struct die_info *die,
15183 struct dwarf2_cu *cu)
6e70227d 15184{
be2daae6
TT
15185 struct decl_field fp;
15186 memset (&fp, 0, sizeof (fp));
98751a41 15187
883fd55a 15188 gdb_assert (type_can_define_types (die));
98751a41 15189
883fd55a 15190 /* Get name of field. NULL is okay here, meaning an anonymous type. */
be2daae6
TT
15191 fp.name = dwarf2_name (die, cu);
15192 fp.type = read_type_die (die, cu);
98751a41 15193
c191a687
KS
15194 /* Save accessibility. */
15195 enum dwarf_access_attribute accessibility;
15196 struct attribute *attr = dwarf2_attr (die, DW_AT_accessibility, cu);
15197 if (attr != NULL)
15198 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
15199 else
15200 accessibility = dwarf2_default_access_attribute (die, cu);
15201 switch (accessibility)
15202 {
15203 case DW_ACCESS_public:
15204 /* The assumed value if neither private nor protected. */
15205 break;
15206 case DW_ACCESS_private:
be2daae6 15207 fp.is_private = 1;
c191a687
KS
15208 break;
15209 case DW_ACCESS_protected:
be2daae6 15210 fp.is_protected = 1;
c191a687
KS
15211 break;
15212 default:
b98664d3 15213 complaint (_("Unhandled DW_AT_accessibility value (%x)"), accessibility);
c191a687
KS
15214 }
15215
883fd55a 15216 if (die->tag == DW_TAG_typedef)
be2daae6 15217 fip->typedef_field_list.push_back (fp);
883fd55a 15218 else
be2daae6 15219 fip->nested_types_list.push_back (fp);
98751a41
JK
15220}
15221
c906108c
SS
15222/* Create the vector of fields, and attach it to the type. */
15223
15224static void
fba45db2 15225dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15226 struct dwarf2_cu *cu)
c906108c
SS
15227{
15228 int nfields = fip->nfields;
15229
15230 /* Record the field count, allocate space for the array of fields,
15231 and create blank accessibility bitfields if necessary. */
15232 TYPE_NFIELDS (type) = nfields;
15233 TYPE_FIELDS (type) = (struct field *)
be2daae6 15234 TYPE_ZALLOC (type, sizeof (struct field) * nfields);
c906108c 15235
b4ba55a1 15236 if (fip->non_public_fields && cu->language != language_ada)
c906108c
SS
15237 {
15238 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15239
15240 TYPE_FIELD_PRIVATE_BITS (type) =
15241 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15242 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
15243
15244 TYPE_FIELD_PROTECTED_BITS (type) =
15245 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15246 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
15247
774b6a14
TT
15248 TYPE_FIELD_IGNORE_BITS (type) =
15249 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15250 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
c906108c
SS
15251 }
15252
15253 /* If the type has baseclasses, allocate and clear a bit vector for
15254 TYPE_FIELD_VIRTUAL_BITS. */
be2daae6 15255 if (!fip->baseclasses.empty () && cu->language != language_ada)
c906108c 15256 {
be2daae6 15257 int num_bytes = B_BYTES (fip->baseclasses.size ());
fe1b8b76 15258 unsigned char *pointer;
c906108c
SS
15259
15260 ALLOCATE_CPLUS_STRUCT_TYPE (type);
224c3ddb 15261 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
fe1b8b76 15262 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
be2daae6
TT
15263 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->baseclasses.size ());
15264 TYPE_N_BASECLASSES (type) = fip->baseclasses.size ();
c906108c
SS
15265 }
15266
2ddeaf8a
TT
15267 if (TYPE_FLAG_DISCRIMINATED_UNION (type))
15268 {
15269 struct discriminant_info *di = alloc_discriminant_info (type, -1, -1);
15270
be2daae6 15271 for (int index = 0; index < nfields; ++index)
2ddeaf8a 15272 {
be2daae6
TT
15273 struct nextfield &field = fip->fields[index];
15274
15275 if (field.variant.is_discriminant)
2ddeaf8a 15276 di->discriminant_index = index;
be2daae6 15277 else if (field.variant.default_branch)
2ddeaf8a
TT
15278 di->default_index = index;
15279 else
be2daae6 15280 di->discriminants[index] = field.variant.discriminant_value;
2ddeaf8a
TT
15281 }
15282 }
15283
be2daae6
TT
15284 /* Copy the saved-up fields into the field vector. */
15285 for (int i = 0; i < nfields; ++i)
c906108c 15286 {
be2daae6
TT
15287 struct nextfield &field
15288 = ((i < fip->baseclasses.size ()) ? fip->baseclasses[i]
15289 : fip->fields[i - fip->baseclasses.size ()]);
7d0ccb61 15290
be2daae6
TT
15291 TYPE_FIELD (type, i) = field.field;
15292 switch (field.accessibility)
c906108c 15293 {
c5aa993b 15294 case DW_ACCESS_private:
b4ba55a1 15295 if (cu->language != language_ada)
be2daae6 15296 SET_TYPE_FIELD_PRIVATE (type, i);
c5aa993b 15297 break;
c906108c 15298
c5aa993b 15299 case DW_ACCESS_protected:
b4ba55a1 15300 if (cu->language != language_ada)
be2daae6 15301 SET_TYPE_FIELD_PROTECTED (type, i);
c5aa993b 15302 break;
c906108c 15303
c5aa993b
JM
15304 case DW_ACCESS_public:
15305 break;
c906108c 15306
c5aa993b
JM
15307 default:
15308 /* Unknown accessibility. Complain and treat it as public. */
15309 {
b98664d3 15310 complaint (_("unsupported accessibility %d"),
be2daae6 15311 field.accessibility);
c5aa993b
JM
15312 }
15313 break;
c906108c 15314 }
be2daae6 15315 if (i < fip->baseclasses.size ())
c906108c 15316 {
be2daae6 15317 switch (field.virtuality)
c906108c 15318 {
c5aa993b
JM
15319 case DW_VIRTUALITY_virtual:
15320 case DW_VIRTUALITY_pure_virtual:
b4ba55a1 15321 if (cu->language == language_ada)
a73c6dcd 15322 error (_("unexpected virtuality in component of Ada type"));
be2daae6 15323 SET_TYPE_FIELD_VIRTUAL (type, i);
c5aa993b 15324 break;
c906108c
SS
15325 }
15326 }
c906108c
SS
15327 }
15328}
15329
7d27a96d
TT
15330/* Return true if this member function is a constructor, false
15331 otherwise. */
15332
15333static int
15334dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
15335{
15336 const char *fieldname;
fe978cb0 15337 const char *type_name;
7d27a96d
TT
15338 int len;
15339
15340 if (die->parent == NULL)
15341 return 0;
15342
15343 if (die->parent->tag != DW_TAG_structure_type
15344 && die->parent->tag != DW_TAG_union_type
15345 && die->parent->tag != DW_TAG_class_type)
15346 return 0;
15347
15348 fieldname = dwarf2_name (die, cu);
fe978cb0
PA
15349 type_name = dwarf2_name (die->parent, cu);
15350 if (fieldname == NULL || type_name == NULL)
7d27a96d
TT
15351 return 0;
15352
15353 len = strlen (fieldname);
fe978cb0
PA
15354 return (strncmp (fieldname, type_name, len) == 0
15355 && (type_name[len] == '\0' || type_name[len] == '<'));
7d27a96d
TT
15356}
15357
c906108c
SS
15358/* Add a member function to the proper fieldlist. */
15359
15360static void
107d2387 15361dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 15362 struct type *type, struct dwarf2_cu *cu)
c906108c 15363{
518817b3 15364 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 15365 struct attribute *attr;
c906108c 15366 int i;
be2daae6 15367 struct fnfieldlist *flp = nullptr;
c906108c 15368 struct fn_field *fnp;
15d034d0 15369 const char *fieldname;
f792889a 15370 struct type *this_type;
60d5a603 15371 enum dwarf_access_attribute accessibility;
c906108c 15372
b4ba55a1 15373 if (cu->language == language_ada)
a73c6dcd 15374 error (_("unexpected member function in Ada type"));
b4ba55a1 15375
2df3850c 15376 /* Get name of member function. */
39cbfefa
DJ
15377 fieldname = dwarf2_name (die, cu);
15378 if (fieldname == NULL)
2df3850c 15379 return;
c906108c 15380
c906108c 15381 /* Look up member function name in fieldlist. */
be2daae6 15382 for (i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15383 {
27bfe10e 15384 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
be2daae6
TT
15385 {
15386 flp = &fip->fnfieldlists[i];
15387 break;
15388 }
c906108c
SS
15389 }
15390
be2daae6
TT
15391 /* Create a new fnfieldlist if necessary. */
15392 if (flp == nullptr)
c906108c 15393 {
be2daae6
TT
15394 fip->fnfieldlists.emplace_back ();
15395 flp = &fip->fnfieldlists.back ();
c906108c 15396 flp->name = fieldname;
be2daae6 15397 i = fip->fnfieldlists.size () - 1;
c906108c
SS
15398 }
15399
be2daae6
TT
15400 /* Create a new member function field and add it to the vector of
15401 fnfieldlists. */
15402 flp->fnfields.emplace_back ();
15403 fnp = &flp->fnfields.back ();
3da10d80
KS
15404
15405 /* Delay processing of the physname until later. */
9c37b5ae 15406 if (cu->language == language_cplus)
be2daae6
TT
15407 add_to_method_list (type, i, flp->fnfields.size () - 1, fieldname,
15408 die, cu);
3da10d80
KS
15409 else
15410 {
1d06ead6 15411 const char *physname = dwarf2_physname (fieldname, die, cu);
3da10d80
KS
15412 fnp->physname = physname ? physname : "";
15413 }
15414
c906108c 15415 fnp->type = alloc_type (objfile);
f792889a
DJ
15416 this_type = read_type_die (die, cu);
15417 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
c906108c 15418 {
f792889a 15419 int nparams = TYPE_NFIELDS (this_type);
c906108c 15420
f792889a 15421 /* TYPE is the domain of this method, and THIS_TYPE is the type
e26fb1d7
DC
15422 of the method itself (TYPE_CODE_METHOD). */
15423 smash_to_method_type (fnp->type, type,
f792889a
DJ
15424 TYPE_TARGET_TYPE (this_type),
15425 TYPE_FIELDS (this_type),
15426 TYPE_NFIELDS (this_type),
15427 TYPE_VARARGS (this_type));
c906108c
SS
15428
15429 /* Handle static member functions.
c5aa993b 15430 Dwarf2 has no clean way to discern C++ static and non-static
0963b4bd
MS
15431 member functions. G++ helps GDB by marking the first
15432 parameter for non-static member functions (which is the this
15433 pointer) as artificial. We obtain this information from
15434 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
f792889a 15435 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
c906108c
SS
15436 fnp->voffset = VOFFSET_STATIC;
15437 }
15438 else
b98664d3 15439 complaint (_("member function type missing for '%s'"),
3da10d80 15440 dwarf2_full_name (fieldname, die, cu));
c906108c
SS
15441
15442 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 15443 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 15444 fnp->fcontext = die_containing_type (die, cu);
c906108c 15445
3e43a32a
MS
15446 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
15447 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
c906108c
SS
15448
15449 /* Get accessibility. */
e142c38c 15450 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c 15451 if (attr)
aead7601 15452 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
60d5a603
JK
15453 else
15454 accessibility = dwarf2_default_access_attribute (die, cu);
15455 switch (accessibility)
c906108c 15456 {
60d5a603
JK
15457 case DW_ACCESS_private:
15458 fnp->is_private = 1;
15459 break;
15460 case DW_ACCESS_protected:
15461 fnp->is_protected = 1;
15462 break;
c906108c
SS
15463 }
15464
b02dede2 15465 /* Check for artificial methods. */
e142c38c 15466 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
15467 if (attr && DW_UNSND (attr) != 0)
15468 fnp->is_artificial = 1;
15469
7d27a96d
TT
15470 fnp->is_constructor = dwarf2_is_constructor (die, cu);
15471
0d564a31 15472 /* Get index in virtual function table if it is a virtual member
aec5aa8b
TT
15473 function. For older versions of GCC, this is an offset in the
15474 appropriate virtual table, as specified by DW_AT_containing_type.
15475 For everyone else, it is an expression to be evaluated relative
0d564a31
DJ
15476 to the object address. */
15477
e142c38c 15478 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
aec5aa8b 15479 if (attr)
8e19ed76 15480 {
aec5aa8b 15481 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
8e19ed76 15482 {
aec5aa8b
TT
15483 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
15484 {
15485 /* Old-style GCC. */
15486 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
15487 }
15488 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
15489 || (DW_BLOCK (attr)->size > 1
15490 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
15491 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
15492 {
aec5aa8b
TT
15493 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
15494 if ((fnp->voffset % cu->header.addr_size) != 0)
15495 dwarf2_complex_location_expr_complaint ();
15496 else
15497 fnp->voffset /= cu->header.addr_size;
15498 fnp->voffset += 2;
15499 }
15500 else
15501 dwarf2_complex_location_expr_complaint ();
15502
15503 if (!fnp->fcontext)
7e993ebf
KS
15504 {
15505 /* If there is no `this' field and no DW_AT_containing_type,
15506 we cannot actually find a base class context for the
15507 vtable! */
15508 if (TYPE_NFIELDS (this_type) == 0
15509 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
15510 {
b98664d3 15511 complaint (_("cannot determine context for virtual member "
9d8780f0
SM
15512 "function \"%s\" (offset %s)"),
15513 fieldname, sect_offset_str (die->sect_off));
7e993ebf
KS
15514 }
15515 else
15516 {
15517 fnp->fcontext
15518 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
15519 }
15520 }
aec5aa8b 15521 }
3690dd37 15522 else if (attr_form_is_section_offset (attr))
8e19ed76 15523 {
4d3c2250 15524 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
15525 }
15526 else
15527 {
4d3c2250
KB
15528 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
15529 fieldname);
8e19ed76 15530 }
0d564a31 15531 }
d48cc9dd
DJ
15532 else
15533 {
15534 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15535 if (attr && DW_UNSND (attr))
15536 {
15537 /* GCC does this, as of 2008-08-25; PR debug/37237. */
b98664d3 15538 complaint (_("Member function \"%s\" (offset %s) is virtual "
3e43a32a 15539 "but the vtable offset is not specified"),
9d8780f0 15540 fieldname, sect_offset_str (die->sect_off));
9655fd1a 15541 ALLOCATE_CPLUS_STRUCT_TYPE (type);
d48cc9dd
DJ
15542 TYPE_CPLUS_DYNAMIC (type) = 1;
15543 }
15544 }
c906108c
SS
15545}
15546
15547/* Create the vector of member function fields, and attach it to the type. */
15548
15549static void
fba45db2 15550dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15551 struct dwarf2_cu *cu)
c906108c 15552{
b4ba55a1 15553 if (cu->language == language_ada)
a73c6dcd 15554 error (_("unexpected member functions in Ada type"));
b4ba55a1 15555
c906108c
SS
15556 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15557 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
be2daae6
TT
15558 TYPE_ALLOC (type,
15559 sizeof (struct fn_fieldlist) * fip->fnfieldlists.size ());
c906108c 15560
be2daae6 15561 for (int i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15562 {
be2daae6 15563 struct fnfieldlist &nf = fip->fnfieldlists[i];
c906108c 15564 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
c906108c 15565
be2daae6
TT
15566 TYPE_FN_FIELDLIST_NAME (type, i) = nf.name;
15567 TYPE_FN_FIELDLIST_LENGTH (type, i) = nf.fnfields.size ();
c906108c 15568 fn_flp->fn_fields = (struct fn_field *)
be2daae6
TT
15569 TYPE_ALLOC (type, sizeof (struct fn_field) * nf.fnfields.size ());
15570
15571 for (int k = 0; k < nf.fnfields.size (); ++k)
15572 fn_flp->fn_fields[k] = nf.fnfields[k];
c906108c
SS
15573 }
15574
be2daae6 15575 TYPE_NFN_FIELDS (type) = fip->fnfieldlists.size ();
c906108c
SS
15576}
15577
1168df01
JB
15578/* Returns non-zero if NAME is the name of a vtable member in CU's
15579 language, zero otherwise. */
15580static int
15581is_vtable_name (const char *name, struct dwarf2_cu *cu)
15582{
15583 static const char vptr[] = "_vptr";
15584
9c37b5ae
TT
15585 /* Look for the C++ form of the vtable. */
15586 if (startswith (name, vptr) && is_cplus_marker (name[sizeof (vptr) - 1]))
1168df01
JB
15587 return 1;
15588
15589 return 0;
15590}
15591
c0dd20ea 15592/* GCC outputs unnamed structures that are really pointers to member
0b92b5bb
TT
15593 functions, with the ABI-specified layout. If TYPE describes
15594 such a structure, smash it into a member function type.
61049d3b
DJ
15595
15596 GCC shouldn't do this; it should just output pointer to member DIEs.
15597 This is GCC PR debug/28767. */
c0dd20ea 15598
0b92b5bb
TT
15599static void
15600quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
c0dd20ea 15601{
09e2d7c7 15602 struct type *pfn_type, *self_type, *new_type;
c0dd20ea
DJ
15603
15604 /* Check for a structure with no name and two children. */
0b92b5bb
TT
15605 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
15606 return;
c0dd20ea
DJ
15607
15608 /* Check for __pfn and __delta members. */
0b92b5bb
TT
15609 if (TYPE_FIELD_NAME (type, 0) == NULL
15610 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
15611 || TYPE_FIELD_NAME (type, 1) == NULL
15612 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
15613 return;
c0dd20ea
DJ
15614
15615 /* Find the type of the method. */
0b92b5bb 15616 pfn_type = TYPE_FIELD_TYPE (type, 0);
c0dd20ea
DJ
15617 if (pfn_type == NULL
15618 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
15619 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
0b92b5bb 15620 return;
c0dd20ea
DJ
15621
15622 /* Look for the "this" argument. */
15623 pfn_type = TYPE_TARGET_TYPE (pfn_type);
15624 if (TYPE_NFIELDS (pfn_type) == 0
0b92b5bb 15625 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
c0dd20ea 15626 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
0b92b5bb 15627 return;
c0dd20ea 15628
09e2d7c7 15629 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
0b92b5bb 15630 new_type = alloc_type (objfile);
09e2d7c7 15631 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
c0dd20ea
DJ
15632 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
15633 TYPE_VARARGS (pfn_type));
0b92b5bb 15634 smash_to_methodptr_type (type, new_type);
c0dd20ea 15635}
1168df01 15636
2b4424c3
TT
15637/* If the DIE has a DW_AT_alignment attribute, return its value, doing
15638 appropriate error checking and issuing complaints if there is a
15639 problem. */
15640
15641static ULONGEST
15642get_alignment (struct dwarf2_cu *cu, struct die_info *die)
15643{
15644 struct attribute *attr = dwarf2_attr (die, DW_AT_alignment, cu);
15645
15646 if (attr == nullptr)
15647 return 0;
15648
15649 if (!attr_form_is_constant (attr))
15650 {
b98664d3 15651 complaint (_("DW_AT_alignment must have constant form"
2b4424c3
TT
15652 " - DIE at %s [in module %s]"),
15653 sect_offset_str (die->sect_off),
15654 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15655 return 0;
15656 }
15657
15658 ULONGEST align;
15659 if (attr->form == DW_FORM_sdata)
15660 {
15661 LONGEST val = DW_SND (attr);
15662 if (val < 0)
15663 {
b98664d3 15664 complaint (_("DW_AT_alignment value must not be negative"
2b4424c3
TT
15665 " - DIE at %s [in module %s]"),
15666 sect_offset_str (die->sect_off),
15667 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15668 return 0;
15669 }
15670 align = val;
15671 }
15672 else
15673 align = DW_UNSND (attr);
15674
15675 if (align == 0)
15676 {
b98664d3 15677 complaint (_("DW_AT_alignment value must not be zero"
2b4424c3
TT
15678 " - DIE at %s [in module %s]"),
15679 sect_offset_str (die->sect_off),
15680 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15681 return 0;
15682 }
15683 if ((align & (align - 1)) != 0)
15684 {
b98664d3 15685 complaint (_("DW_AT_alignment value must be a power of 2"
2b4424c3
TT
15686 " - DIE at %s [in module %s]"),
15687 sect_offset_str (die->sect_off),
15688 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15689 return 0;
15690 }
15691
15692 return align;
15693}
15694
15695/* If the DIE has a DW_AT_alignment attribute, use its value to set
15696 the alignment for TYPE. */
15697
15698static void
15699maybe_set_alignment (struct dwarf2_cu *cu, struct die_info *die,
15700 struct type *type)
15701{
15702 if (!set_type_align (type, get_alignment (cu, die)))
b98664d3 15703 complaint (_("DW_AT_alignment value too large"
2b4424c3
TT
15704 " - DIE at %s [in module %s]"),
15705 sect_offset_str (die->sect_off),
15706 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15707}
685b1105 15708
c906108c 15709/* Called when we find the DIE that starts a structure or union scope
c767944b
DJ
15710 (definition) to create a type for the structure or union. Fill in
15711 the type's name and general properties; the members will not be
83655187
DE
15712 processed until process_structure_scope. A symbol table entry for
15713 the type will also not be done until process_structure_scope (assuming
15714 the type has a name).
c906108c 15715
c767944b
DJ
15716 NOTE: we need to call these functions regardless of whether or not the
15717 DIE has a DW_AT_name attribute, since it might be an anonymous
c906108c 15718 structure or union. This gets the type entered into our set of
83655187 15719 user defined types. */
c906108c 15720
f792889a 15721static struct type *
134d01f1 15722read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 15723{
518817b3 15724 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c
SS
15725 struct type *type;
15726 struct attribute *attr;
15d034d0 15727 const char *name;
c906108c 15728
348e048f
DE
15729 /* If the definition of this type lives in .debug_types, read that type.
15730 Don't follow DW_AT_specification though, that will take us back up
15731 the chain and we want to go down. */
45e58e77 15732 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
15733 if (attr)
15734 {
ac9ec31b 15735 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 15736
ac9ec31b 15737 /* The type's CU may not be the same as CU.
02142a6c 15738 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
15739 return set_die_type (die, type, cu);
15740 }
15741
c0dd20ea 15742 type = alloc_type (objfile);
c906108c 15743 INIT_CPLUS_SPECIFIC (type);
93311388 15744
39cbfefa
DJ
15745 name = dwarf2_name (die, cu);
15746 if (name != NULL)
c906108c 15747 {
987504bb 15748 if (cu->language == language_cplus
c44af4eb
TT
15749 || cu->language == language_d
15750 || cu->language == language_rust)
63d06c5c 15751 {
15d034d0 15752 const char *full_name = dwarf2_full_name (name, die, cu);
3da10d80
KS
15753
15754 /* dwarf2_full_name might have already finished building the DIE's
15755 type. If so, there is no need to continue. */
15756 if (get_die_type (die, cu) != NULL)
15757 return get_die_type (die, cu);
15758
e86ca25f 15759 TYPE_NAME (type) = full_name;
63d06c5c
DC
15760 }
15761 else
15762 {
d8151005
DJ
15763 /* The name is already allocated along with this objfile, so
15764 we don't need to duplicate it for the type. */
e86ca25f 15765 TYPE_NAME (type) = name;
63d06c5c 15766 }
c906108c
SS
15767 }
15768
15769 if (die->tag == DW_TAG_structure_type)
15770 {
15771 TYPE_CODE (type) = TYPE_CODE_STRUCT;
15772 }
15773 else if (die->tag == DW_TAG_union_type)
15774 {
15775 TYPE_CODE (type) = TYPE_CODE_UNION;
15776 }
2ddeaf8a
TT
15777 else if (die->tag == DW_TAG_variant_part)
15778 {
15779 TYPE_CODE (type) = TYPE_CODE_UNION;
15780 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
15781 }
c906108c
SS
15782 else
15783 {
4753d33b 15784 TYPE_CODE (type) = TYPE_CODE_STRUCT;
c906108c
SS
15785 }
15786
0cc2414c
TT
15787 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
15788 TYPE_DECLARED_CLASS (type) = 1;
15789
e142c38c 15790 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
15791 if (attr)
15792 {
155bfbd3
JB
15793 if (attr_form_is_constant (attr))
15794 TYPE_LENGTH (type) = DW_UNSND (attr);
15795 else
15796 {
15797 /* For the moment, dynamic type sizes are not supported
15798 by GDB's struct type. The actual size is determined
15799 on-demand when resolving the type of a given object,
15800 so set the type's length to zero for now. Otherwise,
15801 we record an expression as the length, and that expression
15802 could lead to a very large value, which could eventually
15803 lead to us trying to allocate that much memory when creating
15804 a value of that type. */
15805 TYPE_LENGTH (type) = 0;
15806 }
c906108c
SS
15807 }
15808 else
15809 {
15810 TYPE_LENGTH (type) = 0;
15811 }
15812
2b4424c3
TT
15813 maybe_set_alignment (cu, die, type);
15814
5230b05a 15815 if (producer_is_icc_lt_14 (cu) && (TYPE_LENGTH (type) == 0))
685b1105 15816 {
5230b05a
WT
15817 /* ICC<14 does not output the required DW_AT_declaration on
15818 incomplete types, but gives them a size of zero. */
422b1cb0 15819 TYPE_STUB (type) = 1;
685b1105
JK
15820 }
15821 else
15822 TYPE_STUB_SUPPORTED (type) = 1;
15823
dc718098 15824 if (die_is_declaration (die, cu))
876cecd0 15825 TYPE_STUB (type) = 1;
a6c727b2
DJ
15826 else if (attr == NULL && die->child == NULL
15827 && producer_is_realview (cu->producer))
15828 /* RealView does not output the required DW_AT_declaration
15829 on incomplete types. */
15830 TYPE_STUB (type) = 1;
dc718098 15831
c906108c
SS
15832 /* We need to add the type field to the die immediately so we don't
15833 infinitely recurse when dealing with pointers to the structure
0963b4bd 15834 type within the structure itself. */
1c379e20 15835 set_die_type (die, type, cu);
c906108c 15836
7e314c57
JK
15837 /* set_die_type should be already done. */
15838 set_descriptive_type (type, die, cu);
15839
c767944b
DJ
15840 return type;
15841}
15842
2ddeaf8a
TT
15843/* A helper for process_structure_scope that handles a single member
15844 DIE. */
15845
15846static void
15847handle_struct_member_die (struct die_info *child_die, struct type *type,
15848 struct field_info *fi,
15849 std::vector<struct symbol *> *template_args,
15850 struct dwarf2_cu *cu)
15851{
15852 if (child_die->tag == DW_TAG_member
15853 || child_die->tag == DW_TAG_variable
15854 || child_die->tag == DW_TAG_variant_part)
15855 {
15856 /* NOTE: carlton/2002-11-05: A C++ static data member
15857 should be a DW_TAG_member that is a declaration, but
15858 all versions of G++ as of this writing (so through at
15859 least 3.2.1) incorrectly generate DW_TAG_variable
15860 tags for them instead. */
15861 dwarf2_add_field (fi, child_die, cu);
15862 }
15863 else if (child_die->tag == DW_TAG_subprogram)
15864 {
15865 /* Rust doesn't have member functions in the C++ sense.
15866 However, it does emit ordinary functions as children
15867 of a struct DIE. */
15868 if (cu->language == language_rust)
15869 read_func_scope (child_die, cu);
15870 else
15871 {
15872 /* C++ member function. */
15873 dwarf2_add_member_fn (fi, child_die, type, cu);
15874 }
15875 }
15876 else if (child_die->tag == DW_TAG_inheritance)
15877 {
15878 /* C++ base class field. */
15879 dwarf2_add_field (fi, child_die, cu);
15880 }
15881 else if (type_can_define_types (child_die))
15882 dwarf2_add_type_defn (fi, child_die, cu);
15883 else if (child_die->tag == DW_TAG_template_type_param
15884 || child_die->tag == DW_TAG_template_value_param)
15885 {
15886 struct symbol *arg = new_symbol (child_die, NULL, cu);
15887
15888 if (arg != NULL)
15889 template_args->push_back (arg);
15890 }
15891 else if (child_die->tag == DW_TAG_variant)
15892 {
15893 /* In a variant we want to get the discriminant and also add a
15894 field for our sole member child. */
15895 struct attribute *discr = dwarf2_attr (child_die, DW_AT_discr_value, cu);
15896
bde09ab7 15897 for (die_info *variant_child = child_die->child;
2ddeaf8a
TT
15898 variant_child != NULL;
15899 variant_child = sibling_die (variant_child))
15900 {
15901 if (variant_child->tag == DW_TAG_member)
15902 {
15903 handle_struct_member_die (variant_child, type, fi,
15904 template_args, cu);
15905 /* Only handle the one. */
15906 break;
15907 }
15908 }
15909
15910 /* We don't handle this but we might as well report it if we see
15911 it. */
15912 if (dwarf2_attr (child_die, DW_AT_discr_list, cu) != nullptr)
b98664d3 15913 complaint (_("DW_AT_discr_list is not supported yet"
2ddeaf8a
TT
15914 " - DIE at %s [in module %s]"),
15915 sect_offset_str (child_die->sect_off),
15916 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15917
15918 /* The first field was just added, so we can stash the
15919 discriminant there. */
be2daae6 15920 gdb_assert (!fi->fields.empty ());
2ddeaf8a 15921 if (discr == NULL)
be2daae6 15922 fi->fields.back ().variant.default_branch = true;
2ddeaf8a 15923 else
be2daae6 15924 fi->fields.back ().variant.discriminant_value = DW_UNSND (discr);
2ddeaf8a
TT
15925 }
15926}
15927
c767944b
DJ
15928/* Finish creating a structure or union type, including filling in
15929 its members and creating a symbol for it. */
15930
15931static void
15932process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
15933{
518817b3 15934 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
ca040673 15935 struct die_info *child_die;
c767944b
DJ
15936 struct type *type;
15937
15938 type = get_die_type (die, cu);
15939 if (type == NULL)
15940 type = read_structure_type (die, cu);
15941
2ddeaf8a
TT
15942 /* When reading a DW_TAG_variant_part, we need to notice when we
15943 read the discriminant member, so we can record it later in the
15944 discriminant_info. */
15945 bool is_variant_part = TYPE_FLAG_DISCRIMINATED_UNION (type);
15946 sect_offset discr_offset;
3e1d3d8c 15947 bool has_template_parameters = false;
2ddeaf8a
TT
15948
15949 if (is_variant_part)
15950 {
15951 struct attribute *discr = dwarf2_attr (die, DW_AT_discr, cu);
15952 if (discr == NULL)
15953 {
15954 /* Maybe it's a univariant form, an extension we support.
15955 In this case arrange not to check the offset. */
15956 is_variant_part = false;
15957 }
15958 else if (attr_form_is_ref (discr))
15959 {
15960 struct dwarf2_cu *target_cu = cu;
15961 struct die_info *target_die = follow_die_ref (die, discr, &target_cu);
15962
15963 discr_offset = target_die->sect_off;
15964 }
15965 else
15966 {
b98664d3 15967 complaint (_("DW_AT_discr does not have DIE reference form"
2ddeaf8a
TT
15968 " - DIE at %s [in module %s]"),
15969 sect_offset_str (die->sect_off),
15970 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15971 is_variant_part = false;
15972 }
15973 }
15974
e142c38c 15975 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
15976 {
15977 struct field_info fi;
2f4732b0 15978 std::vector<struct symbol *> template_args;
c906108c 15979
639d11d3 15980 child_die = die->child;
c906108c
SS
15981
15982 while (child_die && child_die->tag)
15983 {
2ddeaf8a 15984 handle_struct_member_die (child_die, type, &fi, &template_args, cu);
34eaf542 15985
2ddeaf8a 15986 if (is_variant_part && discr_offset == child_die->sect_off)
be2daae6 15987 fi.fields.back ().variant.is_discriminant = true;
34eaf542 15988
c906108c
SS
15989 child_die = sibling_die (child_die);
15990 }
15991
34eaf542 15992 /* Attach template arguments to type. */
2f4732b0 15993 if (!template_args.empty ())
34eaf542 15994 {
3e1d3d8c 15995 has_template_parameters = true;
34eaf542 15996 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2f4732b0 15997 TYPE_N_TEMPLATE_ARGUMENTS (type) = template_args.size ();
34eaf542 15998 TYPE_TEMPLATE_ARGUMENTS (type)
8d749320
SM
15999 = XOBNEWVEC (&objfile->objfile_obstack,
16000 struct symbol *,
16001 TYPE_N_TEMPLATE_ARGUMENTS (type));
34eaf542 16002 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
2f4732b0 16003 template_args.data (),
34eaf542
TT
16004 (TYPE_N_TEMPLATE_ARGUMENTS (type)
16005 * sizeof (struct symbol *)));
34eaf542
TT
16006 }
16007
c906108c
SS
16008 /* Attach fields and member functions to the type. */
16009 if (fi.nfields)
e7c27a73 16010 dwarf2_attach_fields_to_type (&fi, type, cu);
be2daae6 16011 if (!fi.fnfieldlists.empty ())
c906108c 16012 {
e7c27a73 16013 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 16014
c5aa993b 16015 /* Get the type which refers to the base class (possibly this
c906108c 16016 class itself) which contains the vtable pointer for the current
0d564a31
DJ
16017 class from the DW_AT_containing_type attribute. This use of
16018 DW_AT_containing_type is a GNU extension. */
c906108c 16019
e142c38c 16020 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 16021 {
e7c27a73 16022 struct type *t = die_containing_type (die, cu);
c906108c 16023
ae6ae975 16024 set_type_vptr_basetype (type, t);
c906108c
SS
16025 if (type == t)
16026 {
c906108c
SS
16027 int i;
16028
16029 /* Our own class provides vtbl ptr. */
16030 for (i = TYPE_NFIELDS (t) - 1;
16031 i >= TYPE_N_BASECLASSES (t);
16032 --i)
16033 {
0d5cff50 16034 const char *fieldname = TYPE_FIELD_NAME (t, i);
c906108c 16035
1168df01 16036 if (is_vtable_name (fieldname, cu))
c906108c 16037 {
ae6ae975 16038 set_type_vptr_fieldno (type, i);
c906108c
SS
16039 break;
16040 }
16041 }
16042
16043 /* Complain if virtual function table field not found. */
16044 if (i < TYPE_N_BASECLASSES (t))
b98664d3 16045 complaint (_("virtual function table pointer "
3e43a32a 16046 "not found when defining class '%s'"),
e86ca25f 16047 TYPE_NAME (type) ? TYPE_NAME (type) : "");
c906108c
SS
16048 }
16049 else
16050 {
ae6ae975 16051 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
c906108c
SS
16052 }
16053 }
f6235d4c 16054 else if (cu->producer
61012eef 16055 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
f6235d4c
EZ
16056 {
16057 /* The IBM XLC compiler does not provide direct indication
16058 of the containing type, but the vtable pointer is
16059 always named __vfp. */
16060
16061 int i;
16062
16063 for (i = TYPE_NFIELDS (type) - 1;
16064 i >= TYPE_N_BASECLASSES (type);
16065 --i)
16066 {
16067 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
16068 {
ae6ae975
DE
16069 set_type_vptr_fieldno (type, i);
16070 set_type_vptr_basetype (type, type);
f6235d4c
EZ
16071 break;
16072 }
16073 }
16074 }
c906108c 16075 }
98751a41
JK
16076
16077 /* Copy fi.typedef_field_list linked list elements content into the
16078 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
be2daae6 16079 if (!fi.typedef_field_list.empty ())
98751a41 16080 {
be2daae6 16081 int count = fi.typedef_field_list.size ();
98751a41 16082
a0d7a4ff 16083 ALLOCATE_CPLUS_STRUCT_TYPE (type);
98751a41 16084 TYPE_TYPEDEF_FIELD_ARRAY (type)
883fd55a 16085 = ((struct decl_field *)
be2daae6
TT
16086 TYPE_ALLOC (type,
16087 sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * count));
16088 TYPE_TYPEDEF_FIELD_COUNT (type) = count;
6e70227d 16089
be2daae6
TT
16090 for (int i = 0; i < fi.typedef_field_list.size (); ++i)
16091 TYPE_TYPEDEF_FIELD (type, i) = fi.typedef_field_list[i];
98751a41 16092 }
c767944b 16093
883fd55a
KS
16094 /* Copy fi.nested_types_list linked list elements content into the
16095 allocated array TYPE_NESTED_TYPES_ARRAY (type). */
be2daae6 16096 if (!fi.nested_types_list.empty () && cu->language != language_ada)
883fd55a 16097 {
be2daae6 16098 int count = fi.nested_types_list.size ();
883fd55a
KS
16099
16100 ALLOCATE_CPLUS_STRUCT_TYPE (type);
16101 TYPE_NESTED_TYPES_ARRAY (type)
16102 = ((struct decl_field *)
be2daae6
TT
16103 TYPE_ALLOC (type, sizeof (struct decl_field) * count));
16104 TYPE_NESTED_TYPES_COUNT (type) = count;
883fd55a 16105
be2daae6
TT
16106 for (int i = 0; i < fi.nested_types_list.size (); ++i)
16107 TYPE_NESTED_TYPES_FIELD (type, i) = fi.nested_types_list[i];
883fd55a 16108 }
c906108c 16109 }
63d06c5c 16110
bb5ed363 16111 quirk_gcc_member_function_pointer (type, objfile);
c9317f21
TT
16112 if (cu->language == language_rust && die->tag == DW_TAG_union_type)
16113 cu->rust_unions.push_back (type);
0b92b5bb 16114
90aeadfc
DC
16115 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
16116 snapshots) has been known to create a die giving a declaration
16117 for a class that has, as a child, a die giving a definition for a
16118 nested class. So we have to process our children even if the
16119 current die is a declaration. Normally, of course, a declaration
16120 won't have any children at all. */
134d01f1 16121
ca040673
DE
16122 child_die = die->child;
16123
90aeadfc
DC
16124 while (child_die != NULL && child_die->tag)
16125 {
16126 if (child_die->tag == DW_TAG_member
16127 || child_die->tag == DW_TAG_variable
34eaf542
TT
16128 || child_die->tag == DW_TAG_inheritance
16129 || child_die->tag == DW_TAG_template_value_param
16130 || child_die->tag == DW_TAG_template_type_param)
134d01f1 16131 {
90aeadfc 16132 /* Do nothing. */
134d01f1 16133 }
90aeadfc
DC
16134 else
16135 process_die (child_die, cu);
134d01f1 16136
90aeadfc 16137 child_die = sibling_die (child_die);
134d01f1
DJ
16138 }
16139
fa4028e9
JB
16140 /* Do not consider external references. According to the DWARF standard,
16141 these DIEs are identified by the fact that they have no byte_size
16142 attribute, and a declaration attribute. */
16143 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
16144 || !die_is_declaration (die, cu))
3e1d3d8c
TT
16145 {
16146 struct symbol *sym = new_symbol (die, type, cu);
16147
16148 if (has_template_parameters)
16149 {
a776957c
TT
16150 struct symtab *symtab;
16151 if (sym != nullptr)
16152 symtab = symbol_symtab (sym);
16153 else if (cu->line_header != nullptr)
16154 {
16155 /* Any related symtab will do. */
16156 symtab
16157 = cu->line_header->file_name_at (file_name_index (1))->symtab;
16158 }
16159 else
16160 {
16161 symtab = nullptr;
16162 complaint (_("could not find suitable "
16163 "symtab for template parameter"
16164 " - DIE at %s [in module %s]"),
16165 sect_offset_str (die->sect_off),
16166 objfile_name (objfile));
16167 }
16168
16169 if (symtab != nullptr)
16170 {
16171 /* Make sure that the symtab is set on the new symbols.
16172 Even though they don't appear in this symtab directly,
16173 other parts of gdb assume that symbols do, and this is
16174 reasonably true. */
16175 for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i)
16176 symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i), symtab);
16177 }
3e1d3d8c
TT
16178 }
16179 }
134d01f1
DJ
16180}
16181
55426c9d
JB
16182/* Assuming DIE is an enumeration type, and TYPE is its associated type,
16183 update TYPE using some information only available in DIE's children. */
16184
16185static void
16186update_enumeration_type_from_children (struct die_info *die,
16187 struct type *type,
16188 struct dwarf2_cu *cu)
16189{
60f7655a 16190 struct die_info *child_die;
55426c9d
JB
16191 int unsigned_enum = 1;
16192 int flag_enum = 1;
16193 ULONGEST mask = 0;
55426c9d 16194
8268c778 16195 auto_obstack obstack;
55426c9d 16196
60f7655a
DE
16197 for (child_die = die->child;
16198 child_die != NULL && child_die->tag;
16199 child_die = sibling_die (child_die))
55426c9d
JB
16200 {
16201 struct attribute *attr;
16202 LONGEST value;
16203 const gdb_byte *bytes;
16204 struct dwarf2_locexpr_baton *baton;
16205 const char *name;
60f7655a 16206
55426c9d
JB
16207 if (child_die->tag != DW_TAG_enumerator)
16208 continue;
16209
16210 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
16211 if (attr == NULL)
16212 continue;
16213
16214 name = dwarf2_name (child_die, cu);
16215 if (name == NULL)
16216 name = "<anonymous enumerator>";
16217
16218 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
16219 &value, &bytes, &baton);
16220 if (value < 0)
16221 {
16222 unsigned_enum = 0;
16223 flag_enum = 0;
16224 }
16225 else if ((mask & value) != 0)
16226 flag_enum = 0;
16227 else
16228 mask |= value;
16229
16230 /* If we already know that the enum type is neither unsigned, nor
16231 a flag type, no need to look at the rest of the enumerates. */
16232 if (!unsigned_enum && !flag_enum)
16233 break;
55426c9d
JB
16234 }
16235
16236 if (unsigned_enum)
16237 TYPE_UNSIGNED (type) = 1;
16238 if (flag_enum)
16239 TYPE_FLAG_ENUM (type) = 1;
55426c9d
JB
16240}
16241
134d01f1
DJ
16242/* Given a DW_AT_enumeration_type die, set its type. We do not
16243 complete the type's fields yet, or create any symbols. */
c906108c 16244
f792889a 16245static struct type *
134d01f1 16246read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16247{
518817b3 16248 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 16249 struct type *type;
c906108c 16250 struct attribute *attr;
0114d602 16251 const char *name;
134d01f1 16252
348e048f
DE
16253 /* If the definition of this type lives in .debug_types, read that type.
16254 Don't follow DW_AT_specification though, that will take us back up
16255 the chain and we want to go down. */
45e58e77 16256 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
16257 if (attr)
16258 {
ac9ec31b 16259 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 16260
ac9ec31b 16261 /* The type's CU may not be the same as CU.
02142a6c 16262 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
16263 return set_die_type (die, type, cu);
16264 }
16265
c906108c
SS
16266 type = alloc_type (objfile);
16267
16268 TYPE_CODE (type) = TYPE_CODE_ENUM;
94af9270 16269 name = dwarf2_full_name (NULL, die, cu);
39cbfefa 16270 if (name != NULL)
e86ca25f 16271 TYPE_NAME (type) = name;
c906108c 16272
0626fc76
TT
16273 attr = dwarf2_attr (die, DW_AT_type, cu);
16274 if (attr != NULL)
16275 {
16276 struct type *underlying_type = die_type (die, cu);
16277
16278 TYPE_TARGET_TYPE (type) = underlying_type;
16279 }
16280
e142c38c 16281 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
16282 if (attr)
16283 {
16284 TYPE_LENGTH (type) = DW_UNSND (attr);
16285 }
16286 else
16287 {
16288 TYPE_LENGTH (type) = 0;
16289 }
16290
2b4424c3
TT
16291 maybe_set_alignment (cu, die, type);
16292
137033e9
JB
16293 /* The enumeration DIE can be incomplete. In Ada, any type can be
16294 declared as private in the package spec, and then defined only
16295 inside the package body. Such types are known as Taft Amendment
16296 Types. When another package uses such a type, an incomplete DIE
16297 may be generated by the compiler. */
02eb380e 16298 if (die_is_declaration (die, cu))
876cecd0 16299 TYPE_STUB (type) = 1;
02eb380e 16300
0626fc76
TT
16301 /* Finish the creation of this type by using the enum's children.
16302 We must call this even when the underlying type has been provided
16303 so that we can determine if we're looking at a "flag" enum. */
55426c9d
JB
16304 update_enumeration_type_from_children (die, type, cu);
16305
0626fc76
TT
16306 /* If this type has an underlying type that is not a stub, then we
16307 may use its attributes. We always use the "unsigned" attribute
16308 in this situation, because ordinarily we guess whether the type
16309 is unsigned -- but the guess can be wrong and the underlying type
16310 can tell us the reality. However, we defer to a local size
16311 attribute if one exists, because this lets the compiler override
16312 the underlying type if needed. */
16313 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
16314 {
16315 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TYPE_TARGET_TYPE (type));
16316 if (TYPE_LENGTH (type) == 0)
16317 TYPE_LENGTH (type) = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
2b4424c3
TT
16318 if (TYPE_RAW_ALIGN (type) == 0
16319 && TYPE_RAW_ALIGN (TYPE_TARGET_TYPE (type)) != 0)
16320 set_type_align (type, TYPE_RAW_ALIGN (TYPE_TARGET_TYPE (type)));
0626fc76
TT
16321 }
16322
3d567982
TT
16323 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
16324
f792889a 16325 return set_die_type (die, type, cu);
134d01f1
DJ
16326}
16327
16328/* Given a pointer to a die which begins an enumeration, process all
16329 the dies that define the members of the enumeration, and create the
16330 symbol for the enumeration type.
16331
16332 NOTE: We reverse the order of the element list. */
16333
16334static void
16335process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
16336{
f792889a 16337 struct type *this_type;
134d01f1 16338
f792889a
DJ
16339 this_type = get_die_type (die, cu);
16340 if (this_type == NULL)
16341 this_type = read_enumeration_type (die, cu);
9dc481d3 16342
639d11d3 16343 if (die->child != NULL)
c906108c 16344 {
9dc481d3
DE
16345 struct die_info *child_die;
16346 struct symbol *sym;
16347 struct field *fields = NULL;
16348 int num_fields = 0;
15d034d0 16349 const char *name;
9dc481d3 16350
639d11d3 16351 child_die = die->child;
c906108c
SS
16352 while (child_die && child_die->tag)
16353 {
16354 if (child_die->tag != DW_TAG_enumerator)
16355 {
e7c27a73 16356 process_die (child_die, cu);
c906108c
SS
16357 }
16358 else
16359 {
39cbfefa
DJ
16360 name = dwarf2_name (child_die, cu);
16361 if (name)
c906108c 16362 {
f792889a 16363 sym = new_symbol (child_die, this_type, cu);
c906108c
SS
16364
16365 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
16366 {
16367 fields = (struct field *)
16368 xrealloc (fields,
16369 (num_fields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 16370 * sizeof (struct field));
c906108c
SS
16371 }
16372
3567439c 16373 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
c906108c 16374 FIELD_TYPE (fields[num_fields]) = NULL;
14e75d8e 16375 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
c906108c
SS
16376 FIELD_BITSIZE (fields[num_fields]) = 0;
16377
16378 num_fields++;
16379 }
16380 }
16381
16382 child_die = sibling_die (child_die);
16383 }
16384
16385 if (num_fields)
16386 {
f792889a
DJ
16387 TYPE_NFIELDS (this_type) = num_fields;
16388 TYPE_FIELDS (this_type) = (struct field *)
16389 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
16390 memcpy (TYPE_FIELDS (this_type), fields,
c906108c 16391 sizeof (struct field) * num_fields);
b8c9b27d 16392 xfree (fields);
c906108c 16393 }
c906108c 16394 }
134d01f1 16395
6c83ed52
TT
16396 /* If we are reading an enum from a .debug_types unit, and the enum
16397 is a declaration, and the enum is not the signatured type in the
16398 unit, then we do not want to add a symbol for it. Adding a
16399 symbol would in some cases obscure the true definition of the
16400 enum, giving users an incomplete type when the definition is
16401 actually available. Note that we do not want to do this for all
16402 enums which are just declarations, because C++0x allows forward
16403 enum declarations. */
3019eac3 16404 if (cu->per_cu->is_debug_types
6c83ed52
TT
16405 && die_is_declaration (die, cu))
16406 {
52dc124a 16407 struct signatured_type *sig_type;
6c83ed52 16408
c0f78cd4 16409 sig_type = (struct signatured_type *) cu->per_cu;
9c541725
PA
16410 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
16411 if (sig_type->type_offset_in_section != die->sect_off)
6c83ed52
TT
16412 return;
16413 }
16414
f792889a 16415 new_symbol (die, this_type, cu);
c906108c
SS
16416}
16417
16418/* Extract all information from a DW_TAG_array_type DIE and put it in
16419 the DIE's type field. For now, this only handles one dimensional
16420 arrays. */
16421
f792889a 16422static struct type *
e7c27a73 16423read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16424{
518817b3 16425 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 16426 struct die_info *child_die;
7e314c57 16427 struct type *type;
c906108c 16428 struct type *element_type, *range_type, *index_type;
c906108c 16429 struct attribute *attr;
15d034d0 16430 const char *name;
a405673c 16431 struct dynamic_prop *byte_stride_prop = NULL;
dc53a7ad 16432 unsigned int bit_stride = 0;
c906108c 16433
e7c27a73 16434 element_type = die_type (die, cu);
c906108c 16435
7e314c57
JK
16436 /* The die_type call above may have already set the type for this DIE. */
16437 type = get_die_type (die, cu);
16438 if (type)
16439 return type;
16440
dc53a7ad
JB
16441 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
16442 if (attr != NULL)
a405673c
JB
16443 {
16444 int stride_ok;
16445
16446 byte_stride_prop
16447 = (struct dynamic_prop *) alloca (sizeof (struct dynamic_prop));
16448 stride_ok = attr_to_dynamic_prop (attr, die, cu, byte_stride_prop);
16449 if (!stride_ok)
16450 {
b98664d3 16451 complaint (_("unable to read array DW_AT_byte_stride "
9d8780f0
SM
16452 " - DIE at %s [in module %s]"),
16453 sect_offset_str (die->sect_off),
518817b3 16454 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
a405673c
JB
16455 /* Ignore this attribute. We will likely not be able to print
16456 arrays of this type correctly, but there is little we can do
16457 to help if we cannot read the attribute's value. */
16458 byte_stride_prop = NULL;
16459 }
16460 }
dc53a7ad
JB
16461
16462 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
16463 if (attr != NULL)
16464 bit_stride = DW_UNSND (attr);
16465
c906108c
SS
16466 /* Irix 6.2 native cc creates array types without children for
16467 arrays with unspecified length. */
639d11d3 16468 if (die->child == NULL)
c906108c 16469 {
46bf5051 16470 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 16471 range_type = create_static_range_type (NULL, index_type, 0, -1);
dc53a7ad 16472 type = create_array_type_with_stride (NULL, element_type, range_type,
a405673c 16473 byte_stride_prop, bit_stride);
f792889a 16474 return set_die_type (die, type, cu);
c906108c
SS
16475 }
16476
791afaa2 16477 std::vector<struct type *> range_types;
639d11d3 16478 child_die = die->child;
c906108c
SS
16479 while (child_die && child_die->tag)
16480 {
16481 if (child_die->tag == DW_TAG_subrange_type)
16482 {
f792889a 16483 struct type *child_type = read_type_die (child_die, cu);
9a619af0 16484
f792889a 16485 if (child_type != NULL)
a02abb62 16486 {
0963b4bd
MS
16487 /* The range type was succesfully read. Save it for the
16488 array type creation. */
791afaa2 16489 range_types.push_back (child_type);
a02abb62 16490 }
c906108c
SS
16491 }
16492 child_die = sibling_die (child_die);
16493 }
16494
16495 /* Dwarf2 dimensions are output from left to right, create the
16496 necessary array types in backwards order. */
7ca2d3a3 16497
c906108c 16498 type = element_type;
7ca2d3a3
DL
16499
16500 if (read_array_order (die, cu) == DW_ORD_col_major)
16501 {
16502 int i = 0;
9a619af0 16503
791afaa2 16504 while (i < range_types.size ())
dc53a7ad 16505 type = create_array_type_with_stride (NULL, type, range_types[i++],
a405673c 16506 byte_stride_prop, bit_stride);
7ca2d3a3
DL
16507 }
16508 else
16509 {
791afaa2 16510 size_t ndim = range_types.size ();
7ca2d3a3 16511 while (ndim-- > 0)
dc53a7ad 16512 type = create_array_type_with_stride (NULL, type, range_types[ndim],
a405673c 16513 byte_stride_prop, bit_stride);
7ca2d3a3 16514 }
c906108c 16515
f5f8a009
EZ
16516 /* Understand Dwarf2 support for vector types (like they occur on
16517 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
16518 array type. This is not part of the Dwarf2/3 standard yet, but a
16519 custom vendor extension. The main difference between a regular
16520 array and the vector variant is that vectors are passed by value
16521 to functions. */
e142c38c 16522 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
f5f8a009 16523 if (attr)
ea37ba09 16524 make_vector_type (type);
f5f8a009 16525
dbc98a8b
KW
16526 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
16527 implementation may choose to implement triple vectors using this
16528 attribute. */
16529 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
16530 if (attr)
16531 {
16532 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
16533 TYPE_LENGTH (type) = DW_UNSND (attr);
16534 else
b98664d3 16535 complaint (_("DW_AT_byte_size for array type smaller "
3e43a32a 16536 "than the total size of elements"));
dbc98a8b
KW
16537 }
16538
39cbfefa
DJ
16539 name = dwarf2_name (die, cu);
16540 if (name)
16541 TYPE_NAME (type) = name;
6e70227d 16542
2b4424c3
TT
16543 maybe_set_alignment (cu, die, type);
16544
0963b4bd 16545 /* Install the type in the die. */
7e314c57
JK
16546 set_die_type (die, type, cu);
16547
16548 /* set_die_type should be already done. */
b4ba55a1
JB
16549 set_descriptive_type (type, die, cu);
16550
7e314c57 16551 return type;
c906108c
SS
16552}
16553
7ca2d3a3 16554static enum dwarf_array_dim_ordering
6e70227d 16555read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7ca2d3a3
DL
16556{
16557 struct attribute *attr;
16558
16559 attr = dwarf2_attr (die, DW_AT_ordering, cu);
16560
aead7601
SM
16561 if (attr)
16562 return (enum dwarf_array_dim_ordering) DW_SND (attr);
7ca2d3a3 16563
0963b4bd
MS
16564 /* GNU F77 is a special case, as at 08/2004 array type info is the
16565 opposite order to the dwarf2 specification, but data is still
16566 laid out as per normal fortran.
7ca2d3a3 16567
0963b4bd
MS
16568 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
16569 version checking. */
7ca2d3a3 16570
905e0470
PM
16571 if (cu->language == language_fortran
16572 && cu->producer && strstr (cu->producer, "GNU F77"))
7ca2d3a3
DL
16573 {
16574 return DW_ORD_row_major;
16575 }
16576
6e70227d 16577 switch (cu->language_defn->la_array_ordering)
7ca2d3a3
DL
16578 {
16579 case array_column_major:
16580 return DW_ORD_col_major;
16581 case array_row_major:
16582 default:
16583 return DW_ORD_row_major;
16584 };
16585}
16586
72019c9c 16587/* Extract all information from a DW_TAG_set_type DIE and put it in
0963b4bd 16588 the DIE's type field. */
72019c9c 16589
f792889a 16590static struct type *
72019c9c
GM
16591read_set_type (struct die_info *die, struct dwarf2_cu *cu)
16592{
7e314c57
JK
16593 struct type *domain_type, *set_type;
16594 struct attribute *attr;
f792889a 16595
7e314c57
JK
16596 domain_type = die_type (die, cu);
16597
16598 /* The die_type call above may have already set the type for this DIE. */
16599 set_type = get_die_type (die, cu);
16600 if (set_type)
16601 return set_type;
16602
16603 set_type = create_set_type (NULL, domain_type);
16604
16605 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
d09039dd
PM
16606 if (attr)
16607 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7e314c57 16608
2b4424c3
TT
16609 maybe_set_alignment (cu, die, set_type);
16610
f792889a 16611 return set_die_type (die, set_type, cu);
72019c9c 16612}
7ca2d3a3 16613
0971de02
TT
16614/* A helper for read_common_block that creates a locexpr baton.
16615 SYM is the symbol which we are marking as computed.
16616 COMMON_DIE is the DIE for the common block.
16617 COMMON_LOC is the location expression attribute for the common
16618 block itself.
16619 MEMBER_LOC is the location expression attribute for the particular
16620 member of the common block that we are processing.
16621 CU is the CU from which the above come. */
16622
16623static void
16624mark_common_block_symbol_computed (struct symbol *sym,
16625 struct die_info *common_die,
16626 struct attribute *common_loc,
16627 struct attribute *member_loc,
16628 struct dwarf2_cu *cu)
16629{
518817b3
SM
16630 struct dwarf2_per_objfile *dwarf2_per_objfile
16631 = cu->per_cu->dwarf2_per_objfile;
0971de02
TT
16632 struct objfile *objfile = dwarf2_per_objfile->objfile;
16633 struct dwarf2_locexpr_baton *baton;
16634 gdb_byte *ptr;
16635 unsigned int cu_off;
16636 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
16637 LONGEST offset = 0;
16638
16639 gdb_assert (common_loc && member_loc);
16640 gdb_assert (attr_form_is_block (common_loc));
16641 gdb_assert (attr_form_is_block (member_loc)
16642 || attr_form_is_constant (member_loc));
16643
8d749320 16644 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
0971de02
TT
16645 baton->per_cu = cu->per_cu;
16646 gdb_assert (baton->per_cu);
16647
16648 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
16649
16650 if (attr_form_is_constant (member_loc))
16651 {
16652 offset = dwarf2_get_attr_constant_value (member_loc, 0);
16653 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
16654 }
16655 else
16656 baton->size += DW_BLOCK (member_loc)->size;
16657
224c3ddb 16658 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
0971de02
TT
16659 baton->data = ptr;
16660
16661 *ptr++ = DW_OP_call4;
9c541725 16662 cu_off = common_die->sect_off - cu->per_cu->sect_off;
0971de02
TT
16663 store_unsigned_integer (ptr, 4, byte_order, cu_off);
16664 ptr += 4;
16665
16666 if (attr_form_is_constant (member_loc))
16667 {
16668 *ptr++ = DW_OP_addr;
16669 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
16670 ptr += cu->header.addr_size;
16671 }
16672 else
16673 {
16674 /* We have to copy the data here, because DW_OP_call4 will only
16675 use a DW_AT_location attribute. */
16676 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
16677 ptr += DW_BLOCK (member_loc)->size;
16678 }
16679
16680 *ptr++ = DW_OP_plus;
16681 gdb_assert (ptr - baton->data == baton->size);
16682
0971de02 16683 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 16684 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
0971de02
TT
16685}
16686
4357ac6c
TT
16687/* Create appropriate locally-scoped variables for all the
16688 DW_TAG_common_block entries. Also create a struct common_block
16689 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
16690 is used to sepate the common blocks name namespace from regular
16691 variable names. */
c906108c
SS
16692
16693static void
e7c27a73 16694read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16695{
0971de02
TT
16696 struct attribute *attr;
16697
16698 attr = dwarf2_attr (die, DW_AT_location, cu);
16699 if (attr)
16700 {
16701 /* Support the .debug_loc offsets. */
16702 if (attr_form_is_block (attr))
16703 {
16704 /* Ok. */
16705 }
16706 else if (attr_form_is_section_offset (attr))
16707 {
16708 dwarf2_complex_location_expr_complaint ();
16709 attr = NULL;
16710 }
16711 else
16712 {
16713 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
16714 "common block member");
16715 attr = NULL;
16716 }
16717 }
16718
639d11d3 16719 if (die->child != NULL)
c906108c 16720 {
518817b3 16721 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
4357ac6c
TT
16722 struct die_info *child_die;
16723 size_t n_entries = 0, size;
16724 struct common_block *common_block;
16725 struct symbol *sym;
74ac6d43 16726
4357ac6c
TT
16727 for (child_die = die->child;
16728 child_die && child_die->tag;
16729 child_die = sibling_die (child_die))
16730 ++n_entries;
16731
16732 size = (sizeof (struct common_block)
16733 + (n_entries - 1) * sizeof (struct symbol *));
224c3ddb
SM
16734 common_block
16735 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
16736 size);
4357ac6c
TT
16737 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
16738 common_block->n_entries = 0;
16739
16740 for (child_die = die->child;
16741 child_die && child_die->tag;
16742 child_die = sibling_die (child_die))
16743 {
16744 /* Create the symbol in the DW_TAG_common_block block in the current
16745 symbol scope. */
e7c27a73 16746 sym = new_symbol (child_die, NULL, cu);
0971de02
TT
16747 if (sym != NULL)
16748 {
16749 struct attribute *member_loc;
16750
16751 common_block->contents[common_block->n_entries++] = sym;
16752
16753 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
16754 cu);
16755 if (member_loc)
16756 {
16757 /* GDB has handled this for a long time, but it is
16758 not specified by DWARF. It seems to have been
16759 emitted by gfortran at least as recently as:
16760 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
b98664d3 16761 complaint (_("Variable in common block has "
0971de02 16762 "DW_AT_data_member_location "
9d8780f0
SM
16763 "- DIE at %s [in module %s]"),
16764 sect_offset_str (child_die->sect_off),
518817b3 16765 objfile_name (objfile));
0971de02
TT
16766
16767 if (attr_form_is_section_offset (member_loc))
16768 dwarf2_complex_location_expr_complaint ();
16769 else if (attr_form_is_constant (member_loc)
16770 || attr_form_is_block (member_loc))
16771 {
16772 if (attr)
16773 mark_common_block_symbol_computed (sym, die, attr,
16774 member_loc, cu);
16775 }
16776 else
16777 dwarf2_complex_location_expr_complaint ();
16778 }
16779 }
c906108c 16780 }
4357ac6c
TT
16781
16782 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
16783 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
c906108c
SS
16784 }
16785}
16786
0114d602 16787/* Create a type for a C++ namespace. */
d9fa45fe 16788
0114d602
DJ
16789static struct type *
16790read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 16791{
518817b3 16792 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 16793 const char *previous_prefix, *name;
9219021c 16794 int is_anonymous;
0114d602
DJ
16795 struct type *type;
16796
16797 /* For extensions, reuse the type of the original namespace. */
16798 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
16799 {
16800 struct die_info *ext_die;
16801 struct dwarf2_cu *ext_cu = cu;
9a619af0 16802
0114d602
DJ
16803 ext_die = dwarf2_extension (die, &ext_cu);
16804 type = read_type_die (ext_die, ext_cu);
9dc481d3
DE
16805
16806 /* EXT_CU may not be the same as CU.
02142a6c 16807 Ensure TYPE is recorded with CU in die_type_hash. */
0114d602
DJ
16808 return set_die_type (die, type, cu);
16809 }
9219021c 16810
e142c38c 16811 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
16812
16813 /* Now build the name of the current namespace. */
16814
0114d602
DJ
16815 previous_prefix = determine_prefix (die, cu);
16816 if (previous_prefix[0] != '\0')
16817 name = typename_concat (&objfile->objfile_obstack,
f55ee35c 16818 previous_prefix, name, 0, cu);
0114d602
DJ
16819
16820 /* Create the type. */
19f392bc 16821 type = init_type (objfile, TYPE_CODE_NAMESPACE, 0, name);
0114d602 16822
60531b24 16823 return set_die_type (die, type, cu);
0114d602
DJ
16824}
16825
22cee43f 16826/* Read a namespace scope. */
0114d602
DJ
16827
16828static void
16829read_namespace (struct die_info *die, struct dwarf2_cu *cu)
16830{
518817b3 16831 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 16832 int is_anonymous;
9219021c 16833
5c4e30ca
DC
16834 /* Add a symbol associated to this if we haven't seen the namespace
16835 before. Also, add a using directive if it's an anonymous
16836 namespace. */
9219021c 16837
f2f0e013 16838 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5c4e30ca
DC
16839 {
16840 struct type *type;
16841
0114d602 16842 type = read_type_die (die, cu);
e7c27a73 16843 new_symbol (die, type, cu);
5c4e30ca 16844
e8e80198 16845 namespace_name (die, &is_anonymous, cu);
5c4e30ca 16846 if (is_anonymous)
0114d602
DJ
16847 {
16848 const char *previous_prefix = determine_prefix (die, cu);
9a619af0 16849
eb1e02fd 16850 std::vector<const char *> excludes;
804d2729 16851 add_using_directive (using_directives (cu),
22cee43f 16852 previous_prefix, TYPE_NAME (type), NULL,
eb1e02fd 16853 NULL, excludes, 0, &objfile->objfile_obstack);
0114d602 16854 }
5c4e30ca 16855 }
9219021c 16856
639d11d3 16857 if (die->child != NULL)
d9fa45fe 16858 {
639d11d3 16859 struct die_info *child_die = die->child;
6e70227d 16860
d9fa45fe
DC
16861 while (child_die && child_die->tag)
16862 {
e7c27a73 16863 process_die (child_die, cu);
d9fa45fe
DC
16864 child_die = sibling_die (child_die);
16865 }
16866 }
38d518c9
EZ
16867}
16868
f55ee35c
JK
16869/* Read a Fortran module as type. This DIE can be only a declaration used for
16870 imported module. Still we need that type as local Fortran "use ... only"
16871 declaration imports depend on the created type in determine_prefix. */
16872
16873static struct type *
16874read_module_type (struct die_info *die, struct dwarf2_cu *cu)
16875{
518817b3 16876 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15d034d0 16877 const char *module_name;
f55ee35c
JK
16878 struct type *type;
16879
16880 module_name = dwarf2_name (die, cu);
19f392bc 16881 type = init_type (objfile, TYPE_CODE_MODULE, 0, module_name);
f55ee35c 16882
f55ee35c
JK
16883 return set_die_type (die, type, cu);
16884}
16885
5d7cb8df
JK
16886/* Read a Fortran module. */
16887
16888static void
16889read_module (struct die_info *die, struct dwarf2_cu *cu)
16890{
16891 struct die_info *child_die = die->child;
530e8392
KB
16892 struct type *type;
16893
16894 type = read_type_die (die, cu);
16895 new_symbol (die, type, cu);
5d7cb8df 16896
5d7cb8df
JK
16897 while (child_die && child_die->tag)
16898 {
16899 process_die (child_die, cu);
16900 child_die = sibling_die (child_die);
16901 }
16902}
16903
38d518c9
EZ
16904/* Return the name of the namespace represented by DIE. Set
16905 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
16906 namespace. */
16907
16908static const char *
e142c38c 16909namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
16910{
16911 struct die_info *current_die;
16912 const char *name = NULL;
16913
16914 /* Loop through the extensions until we find a name. */
16915
16916 for (current_die = die;
16917 current_die != NULL;
f2f0e013 16918 current_die = dwarf2_extension (die, &cu))
38d518c9 16919 {
96553a0c
DE
16920 /* We don't use dwarf2_name here so that we can detect the absence
16921 of a name -> anonymous namespace. */
7d45c7c3 16922 name = dwarf2_string_attr (die, DW_AT_name, cu);
96553a0c 16923
38d518c9
EZ
16924 if (name != NULL)
16925 break;
16926 }
16927
16928 /* Is it an anonymous namespace? */
16929
16930 *is_anonymous = (name == NULL);
16931 if (*is_anonymous)
2b1dbab0 16932 name = CP_ANONYMOUS_NAMESPACE_STR;
38d518c9
EZ
16933
16934 return name;
d9fa45fe
DC
16935}
16936
c906108c
SS
16937/* Extract all information from a DW_TAG_pointer_type DIE and add to
16938 the user defined type vector. */
16939
f792889a 16940static struct type *
e7c27a73 16941read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16942{
518817b3
SM
16943 struct gdbarch *gdbarch
16944 = get_objfile_arch (cu->per_cu->dwarf2_per_objfile->objfile);
e7c27a73 16945 struct comp_unit_head *cu_header = &cu->header;
c906108c 16946 struct type *type;
8b2dbe47
KB
16947 struct attribute *attr_byte_size;
16948 struct attribute *attr_address_class;
16949 int byte_size, addr_class;
7e314c57
JK
16950 struct type *target_type;
16951
16952 target_type = die_type (die, cu);
c906108c 16953
7e314c57
JK
16954 /* The die_type call above may have already set the type for this DIE. */
16955 type = get_die_type (die, cu);
16956 if (type)
16957 return type;
16958
16959 type = lookup_pointer_type (target_type);
8b2dbe47 16960
e142c38c 16961 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
16962 if (attr_byte_size)
16963 byte_size = DW_UNSND (attr_byte_size);
c906108c 16964 else
8b2dbe47
KB
16965 byte_size = cu_header->addr_size;
16966
e142c38c 16967 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
16968 if (attr_address_class)
16969 addr_class = DW_UNSND (attr_address_class);
16970 else
16971 addr_class = DW_ADDR_none;
16972
2b4424c3
TT
16973 ULONGEST alignment = get_alignment (cu, die);
16974
16975 /* If the pointer size, alignment, or address class is different
16976 than the default, create a type variant marked as such and set
16977 the length accordingly. */
16978 if (TYPE_LENGTH (type) != byte_size
16979 || (alignment != 0 && TYPE_RAW_ALIGN (type) != 0
16980 && alignment != TYPE_RAW_ALIGN (type))
16981 || addr_class != DW_ADDR_none)
c906108c 16982 {
5e2b427d 16983 if (gdbarch_address_class_type_flags_p (gdbarch))
8b2dbe47
KB
16984 {
16985 int type_flags;
16986
849957d9 16987 type_flags = gdbarch_address_class_type_flags
5e2b427d 16988 (gdbarch, byte_size, addr_class);
876cecd0
TT
16989 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
16990 == 0);
8b2dbe47
KB
16991 type = make_type_with_address_space (type, type_flags);
16992 }
16993 else if (TYPE_LENGTH (type) != byte_size)
16994 {
b98664d3 16995 complaint (_("invalid pointer size %d"), byte_size);
8b2dbe47 16996 }
2b4424c3
TT
16997 else if (TYPE_RAW_ALIGN (type) != alignment)
16998 {
b98664d3 16999 complaint (_("Invalid DW_AT_alignment"
2b4424c3
TT
17000 " - DIE at %s [in module %s]"),
17001 sect_offset_str (die->sect_off),
17002 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17003 }
6e70227d 17004 else
9a619af0
MS
17005 {
17006 /* Should we also complain about unhandled address classes? */
17007 }
c906108c 17008 }
8b2dbe47
KB
17009
17010 TYPE_LENGTH (type) = byte_size;
2b4424c3 17011 set_type_align (type, alignment);
f792889a 17012 return set_die_type (die, type, cu);
c906108c
SS
17013}
17014
17015/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
17016 the user defined type vector. */
17017
f792889a 17018static struct type *
e7c27a73 17019read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
17020{
17021 struct type *type;
17022 struct type *to_type;
17023 struct type *domain;
17024
e7c27a73
DJ
17025 to_type = die_type (die, cu);
17026 domain = die_containing_type (die, cu);
0d5de010 17027
7e314c57
JK
17028 /* The calls above may have already set the type for this DIE. */
17029 type = get_die_type (die, cu);
17030 if (type)
17031 return type;
17032
0d5de010
DJ
17033 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
17034 type = lookup_methodptr_type (to_type);
7078baeb
TT
17035 else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
17036 {
518817b3
SM
17037 struct type *new_type
17038 = alloc_type (cu->per_cu->dwarf2_per_objfile->objfile);
7078baeb
TT
17039
17040 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
17041 TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
17042 TYPE_VARARGS (to_type));
17043 type = lookup_methodptr_type (new_type);
17044 }
0d5de010
DJ
17045 else
17046 type = lookup_memberptr_type (to_type, domain);
c906108c 17047
f792889a 17048 return set_die_type (die, type, cu);
c906108c
SS
17049}
17050
4297a3f0 17051/* Extract all information from a DW_TAG_{rvalue_,}reference_type DIE and add to
c906108c
SS
17052 the user defined type vector. */
17053
f792889a 17054static struct type *
4297a3f0
AV
17055read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu,
17056 enum type_code refcode)
c906108c 17057{
e7c27a73 17058 struct comp_unit_head *cu_header = &cu->header;
7e314c57 17059 struct type *type, *target_type;
c906108c
SS
17060 struct attribute *attr;
17061
4297a3f0
AV
17062 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
17063
7e314c57
JK
17064 target_type = die_type (die, cu);
17065
17066 /* The die_type call above may have already set the type for this DIE. */
17067 type = get_die_type (die, cu);
17068 if (type)
17069 return type;
17070
4297a3f0 17071 type = lookup_reference_type (target_type, refcode);
e142c38c 17072 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
17073 if (attr)
17074 {
17075 TYPE_LENGTH (type) = DW_UNSND (attr);
17076 }
17077 else
17078 {
107d2387 17079 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 17080 }
2b4424c3 17081 maybe_set_alignment (cu, die, type);
f792889a 17082 return set_die_type (die, type, cu);
c906108c
SS
17083}
17084
cf363f18
MW
17085/* Add the given cv-qualifiers to the element type of the array. GCC
17086 outputs DWARF type qualifiers that apply to an array, not the
17087 element type. But GDB relies on the array element type to carry
17088 the cv-qualifiers. This mimics section 6.7.3 of the C99
17089 specification. */
17090
17091static struct type *
17092add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
17093 struct type *base_type, int cnst, int voltl)
17094{
17095 struct type *el_type, *inner_array;
17096
17097 base_type = copy_type (base_type);
17098 inner_array = base_type;
17099
17100 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
17101 {
17102 TYPE_TARGET_TYPE (inner_array) =
17103 copy_type (TYPE_TARGET_TYPE (inner_array));
17104 inner_array = TYPE_TARGET_TYPE (inner_array);
17105 }
17106
17107 el_type = TYPE_TARGET_TYPE (inner_array);
17108 cnst |= TYPE_CONST (el_type);
17109 voltl |= TYPE_VOLATILE (el_type);
17110 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
17111
17112 return set_die_type (die, base_type, cu);
17113}
17114
f792889a 17115static struct type *
e7c27a73 17116read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17117{
f792889a 17118 struct type *base_type, *cv_type;
c906108c 17119
e7c27a73 17120 base_type = die_type (die, cu);
7e314c57
JK
17121
17122 /* The die_type call above may have already set the type for this DIE. */
17123 cv_type = get_die_type (die, cu);
17124 if (cv_type)
17125 return cv_type;
17126
2f608a3a
KW
17127 /* In case the const qualifier is applied to an array type, the element type
17128 is so qualified, not the array type (section 6.7.3 of C99). */
17129 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
cf363f18 17130 return add_array_cv_type (die, cu, base_type, 1, 0);
2f608a3a 17131
f792889a
DJ
17132 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
17133 return set_die_type (die, cv_type, cu);
c906108c
SS
17134}
17135
f792889a 17136static struct type *
e7c27a73 17137read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17138{
f792889a 17139 struct type *base_type, *cv_type;
c906108c 17140
e7c27a73 17141 base_type = die_type (die, cu);
7e314c57
JK
17142
17143 /* The die_type call above may have already set the type for this DIE. */
17144 cv_type = get_die_type (die, cu);
17145 if (cv_type)
17146 return cv_type;
17147
cf363f18
MW
17148 /* In case the volatile qualifier is applied to an array type, the
17149 element type is so qualified, not the array type (section 6.7.3
17150 of C99). */
17151 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
17152 return add_array_cv_type (die, cu, base_type, 0, 1);
17153
f792889a
DJ
17154 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
17155 return set_die_type (die, cv_type, cu);
c906108c
SS
17156}
17157
06d66ee9
TT
17158/* Handle DW_TAG_restrict_type. */
17159
17160static struct type *
17161read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
17162{
17163 struct type *base_type, *cv_type;
17164
17165 base_type = die_type (die, cu);
17166
17167 /* The die_type call above may have already set the type for this DIE. */
17168 cv_type = get_die_type (die, cu);
17169 if (cv_type)
17170 return cv_type;
17171
17172 cv_type = make_restrict_type (base_type);
17173 return set_die_type (die, cv_type, cu);
17174}
17175
a2c2acaf
MW
17176/* Handle DW_TAG_atomic_type. */
17177
17178static struct type *
17179read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
17180{
17181 struct type *base_type, *cv_type;
17182
17183 base_type = die_type (die, cu);
17184
17185 /* The die_type call above may have already set the type for this DIE. */
17186 cv_type = get_die_type (die, cu);
17187 if (cv_type)
17188 return cv_type;
17189
17190 cv_type = make_atomic_type (base_type);
17191 return set_die_type (die, cv_type, cu);
17192}
17193
c906108c
SS
17194/* Extract all information from a DW_TAG_string_type DIE and add to
17195 the user defined type vector. It isn't really a user defined type,
17196 but it behaves like one, with other DIE's using an AT_user_def_type
17197 attribute to reference it. */
17198
f792889a 17199static struct type *
e7c27a73 17200read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17201{
518817b3 17202 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3b7538c0 17203 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
17204 struct type *type, *range_type, *index_type, *char_type;
17205 struct attribute *attr;
17206 unsigned int length;
17207
e142c38c 17208 attr = dwarf2_attr (die, DW_AT_string_length, cu);
c906108c
SS
17209 if (attr)
17210 {
17211 length = DW_UNSND (attr);
17212 }
17213 else
17214 {
0963b4bd 17215 /* Check for the DW_AT_byte_size attribute. */
e142c38c 17216 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
b21b22e0
PS
17217 if (attr)
17218 {
17219 length = DW_UNSND (attr);
17220 }
17221 else
17222 {
17223 length = 1;
17224 }
c906108c 17225 }
6ccb9162 17226
46bf5051 17227 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 17228 range_type = create_static_range_type (NULL, index_type, 1, length);
3b7538c0
UW
17229 char_type = language_string_char_type (cu->language_defn, gdbarch);
17230 type = create_string_type (NULL, char_type, range_type);
6ccb9162 17231
f792889a 17232 return set_die_type (die, type, cu);
c906108c
SS
17233}
17234
4d804846
JB
17235/* Assuming that DIE corresponds to a function, returns nonzero
17236 if the function is prototyped. */
17237
17238static int
17239prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
17240{
17241 struct attribute *attr;
17242
17243 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
17244 if (attr && (DW_UNSND (attr) != 0))
17245 return 1;
17246
17247 /* The DWARF standard implies that the DW_AT_prototyped attribute
17248 is only meaninful for C, but the concept also extends to other
17249 languages that allow unprototyped functions (Eg: Objective C).
17250 For all other languages, assume that functions are always
17251 prototyped. */
17252 if (cu->language != language_c
17253 && cu->language != language_objc
17254 && cu->language != language_opencl)
17255 return 1;
17256
17257 /* RealView does not emit DW_AT_prototyped. We can not distinguish
17258 prototyped and unprototyped functions; default to prototyped,
17259 since that is more common in modern code (and RealView warns
17260 about unprototyped functions). */
17261 if (producer_is_realview (cu->producer))
17262 return 1;
17263
17264 return 0;
17265}
17266
c906108c
SS
17267/* Handle DIES due to C code like:
17268
17269 struct foo
c5aa993b
JM
17270 {
17271 int (*funcp)(int a, long l);
17272 int b;
17273 };
c906108c 17274
0963b4bd 17275 ('funcp' generates a DW_TAG_subroutine_type DIE). */
c906108c 17276
f792889a 17277static struct type *
e7c27a73 17278read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17279{
518817b3 17280 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0963b4bd
MS
17281 struct type *type; /* Type that this function returns. */
17282 struct type *ftype; /* Function that returns above type. */
c906108c
SS
17283 struct attribute *attr;
17284
e7c27a73 17285 type = die_type (die, cu);
7e314c57
JK
17286
17287 /* The die_type call above may have already set the type for this DIE. */
17288 ftype = get_die_type (die, cu);
17289 if (ftype)
17290 return ftype;
17291
0c8b41f1 17292 ftype = lookup_function_type (type);
c906108c 17293
4d804846 17294 if (prototyped_function_p (die, cu))
a6c727b2 17295 TYPE_PROTOTYPED (ftype) = 1;
c906108c 17296
c055b101
CV
17297 /* Store the calling convention in the type if it's available in
17298 the subroutine die. Otherwise set the calling convention to
17299 the default value DW_CC_normal. */
17300 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
54fcddd0
UW
17301 if (attr)
17302 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
17303 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
17304 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
17305 else
17306 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
76c10ea2 17307
743649fd
MW
17308 /* Record whether the function returns normally to its caller or not
17309 if the DWARF producer set that information. */
17310 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
17311 if (attr && (DW_UNSND (attr) != 0))
17312 TYPE_NO_RETURN (ftype) = 1;
17313
76c10ea2
GM
17314 /* We need to add the subroutine type to the die immediately so
17315 we don't infinitely recurse when dealing with parameters
0963b4bd 17316 declared as the same subroutine type. */
76c10ea2 17317 set_die_type (die, ftype, cu);
6e70227d 17318
639d11d3 17319 if (die->child != NULL)
c906108c 17320 {
bb5ed363 17321 struct type *void_type = objfile_type (objfile)->builtin_void;
c906108c 17322 struct die_info *child_die;
8072405b 17323 int nparams, iparams;
c906108c
SS
17324
17325 /* Count the number of parameters.
17326 FIXME: GDB currently ignores vararg functions, but knows about
17327 vararg member functions. */
8072405b 17328 nparams = 0;
639d11d3 17329 child_die = die->child;
c906108c
SS
17330 while (child_die && child_die->tag)
17331 {
17332 if (child_die->tag == DW_TAG_formal_parameter)
17333 nparams++;
17334 else if (child_die->tag == DW_TAG_unspecified_parameters)
876cecd0 17335 TYPE_VARARGS (ftype) = 1;
c906108c
SS
17336 child_die = sibling_die (child_die);
17337 }
17338
17339 /* Allocate storage for parameters and fill them in. */
17340 TYPE_NFIELDS (ftype) = nparams;
17341 TYPE_FIELDS (ftype) = (struct field *)
ae5a43e0 17342 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
c906108c 17343
8072405b
JK
17344 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
17345 even if we error out during the parameters reading below. */
17346 for (iparams = 0; iparams < nparams; iparams++)
17347 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
17348
17349 iparams = 0;
639d11d3 17350 child_die = die->child;
c906108c
SS
17351 while (child_die && child_die->tag)
17352 {
17353 if (child_die->tag == DW_TAG_formal_parameter)
17354 {
3ce3b1ba
PA
17355 struct type *arg_type;
17356
17357 /* DWARF version 2 has no clean way to discern C++
17358 static and non-static member functions. G++ helps
17359 GDB by marking the first parameter for non-static
17360 member functions (which is the this pointer) as
17361 artificial. We pass this information to
17362 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
17363
17364 DWARF version 3 added DW_AT_object_pointer, which GCC
17365 4.5 does not yet generate. */
e142c38c 17366 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
c906108c
SS
17367 if (attr)
17368 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
17369 else
9c37b5ae 17370 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
3ce3b1ba
PA
17371 arg_type = die_type (child_die, cu);
17372
17373 /* RealView does not mark THIS as const, which the testsuite
17374 expects. GCC marks THIS as const in method definitions,
17375 but not in the class specifications (GCC PR 43053). */
17376 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
17377 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
17378 {
17379 int is_this = 0;
17380 struct dwarf2_cu *arg_cu = cu;
17381 const char *name = dwarf2_name (child_die, cu);
17382
17383 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
17384 if (attr)
17385 {
17386 /* If the compiler emits this, use it. */
17387 if (follow_die_ref (die, attr, &arg_cu) == child_die)
17388 is_this = 1;
17389 }
17390 else if (name && strcmp (name, "this") == 0)
17391 /* Function definitions will have the argument names. */
17392 is_this = 1;
17393 else if (name == NULL && iparams == 0)
17394 /* Declarations may not have the names, so like
17395 elsewhere in GDB, assume an artificial first
17396 argument is "this". */
17397 is_this = 1;
17398
17399 if (is_this)
17400 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
17401 arg_type, 0);
17402 }
17403
17404 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
c906108c
SS
17405 iparams++;
17406 }
17407 child_die = sibling_die (child_die);
17408 }
17409 }
17410
76c10ea2 17411 return ftype;
c906108c
SS
17412}
17413
f792889a 17414static struct type *
e7c27a73 17415read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17416{
518817b3 17417 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 17418 const char *name = NULL;
3c8e0968 17419 struct type *this_type, *target_type;
c906108c 17420
94af9270 17421 name = dwarf2_full_name (NULL, die, cu);
19f392bc
UW
17422 this_type = init_type (objfile, TYPE_CODE_TYPEDEF, 0, name);
17423 TYPE_TARGET_STUB (this_type) = 1;
f792889a 17424 set_die_type (die, this_type, cu);
3c8e0968
DE
17425 target_type = die_type (die, cu);
17426 if (target_type != this_type)
17427 TYPE_TARGET_TYPE (this_type) = target_type;
17428 else
17429 {
17430 /* Self-referential typedefs are, it seems, not allowed by the DWARF
17431 spec and cause infinite loops in GDB. */
b98664d3 17432 complaint (_("Self-referential DW_TAG_typedef "
9d8780f0
SM
17433 "- DIE at %s [in module %s]"),
17434 sect_offset_str (die->sect_off), objfile_name (objfile));
3c8e0968
DE
17435 TYPE_TARGET_TYPE (this_type) = NULL;
17436 }
f792889a 17437 return this_type;
c906108c
SS
17438}
17439
9b790ce7
UW
17440/* Allocate a floating-point type of size BITS and name NAME. Pass NAME_HINT
17441 (which may be different from NAME) to the architecture back-end to allow
17442 it to guess the correct format if necessary. */
17443
17444static struct type *
17445dwarf2_init_float_type (struct objfile *objfile, int bits, const char *name,
17446 const char *name_hint)
17447{
17448 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17449 const struct floatformat **format;
17450 struct type *type;
17451
17452 format = gdbarch_floatformat_for_type (gdbarch, name_hint, bits);
17453 if (format)
17454 type = init_float_type (objfile, bits, name, format);
17455 else
77b7c781 17456 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
9b790ce7
UW
17457
17458 return type;
17459}
17460
eb77c9df
AB
17461/* Allocate an integer type of size BITS and name NAME. */
17462
17463static struct type *
17464dwarf2_init_integer_type (struct dwarf2_cu *cu, struct objfile *objfile,
17465 int bits, int unsigned_p, const char *name)
17466{
17467 struct type *type;
17468
17469 /* Versions of Intel's C Compiler generate an integer type called "void"
17470 instead of using DW_TAG_unspecified_type. This has been seen on
17471 at least versions 14, 17, and 18. */
35ee2dc2
AB
17472 if (bits == 0 && producer_is_icc (cu) && name != nullptr
17473 && strcmp (name, "void") == 0)
eb77c9df
AB
17474 type = objfile_type (objfile)->builtin_void;
17475 else
17476 type = init_integer_type (objfile, bits, unsigned_p, name);
17477
17478 return type;
17479}
17480
8bdc1658
AB
17481/* Initialise and return a floating point type of size BITS suitable for
17482 use as a component of a complex number. The NAME_HINT is passed through
17483 when initialising the floating point type and is the name of the complex
17484 type.
17485
17486 As DWARF doesn't currently provide an explicit name for the components
17487 of a complex number, but it can be helpful to have these components
17488 named, we try to select a suitable name based on the size of the
17489 component. */
17490static struct type *
17491dwarf2_init_complex_target_type (struct dwarf2_cu *cu,
17492 struct objfile *objfile,
17493 int bits, const char *name_hint)
17494{
17495 gdbarch *gdbarch = get_objfile_arch (objfile);
17496 struct type *tt = nullptr;
17497
35add35e
AB
17498 /* Try to find a suitable floating point builtin type of size BITS.
17499 We're going to use the name of this type as the name for the complex
17500 target type that we are about to create. */
1db455a7 17501 switch (cu->language)
8bdc1658 17502 {
1db455a7
AB
17503 case language_fortran:
17504 switch (bits)
17505 {
17506 case 32:
17507 tt = builtin_f_type (gdbarch)->builtin_real;
17508 break;
17509 case 64:
17510 tt = builtin_f_type (gdbarch)->builtin_real_s8;
17511 break;
17512 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17513 case 128:
17514 tt = builtin_f_type (gdbarch)->builtin_real_s16;
17515 break;
17516 }
8bdc1658 17517 break;
1db455a7
AB
17518 default:
17519 switch (bits)
17520 {
17521 case 32:
17522 tt = builtin_type (gdbarch)->builtin_float;
17523 break;
17524 case 64:
17525 tt = builtin_type (gdbarch)->builtin_double;
17526 break;
17527 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17528 case 128:
17529 tt = builtin_type (gdbarch)->builtin_long_double;
17530 break;
17531 }
8bdc1658
AB
17532 break;
17533 }
17534
35add35e
AB
17535 /* If the type we found doesn't match the size we were looking for, then
17536 pretend we didn't find a type at all, the complex target type we
17537 create will then be nameless. */
a12e5744 17538 if (tt != nullptr && TYPE_LENGTH (tt) * TARGET_CHAR_BIT != bits)
35add35e
AB
17539 tt = nullptr;
17540
8bdc1658
AB
17541 const char *name = (tt == nullptr) ? nullptr : TYPE_NAME (tt);
17542 return dwarf2_init_float_type (objfile, bits, name, name_hint);
17543}
17544
c906108c
SS
17545/* Find a representation of a given base type and install
17546 it in the TYPE field of the die. */
17547
f792889a 17548static struct type *
e7c27a73 17549read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17550{
518817b3 17551 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c
SS
17552 struct type *type;
17553 struct attribute *attr;
19f392bc 17554 int encoding = 0, bits = 0;
15d034d0 17555 const char *name;
c906108c 17556
e142c38c 17557 attr = dwarf2_attr (die, DW_AT_encoding, cu);
c906108c
SS
17558 if (attr)
17559 {
17560 encoding = DW_UNSND (attr);
17561 }
e142c38c 17562 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
17563 if (attr)
17564 {
19f392bc 17565 bits = DW_UNSND (attr) * TARGET_CHAR_BIT;
c906108c 17566 }
39cbfefa 17567 name = dwarf2_name (die, cu);
6ccb9162 17568 if (!name)
c906108c 17569 {
b98664d3 17570 complaint (_("DW_AT_name missing from DW_TAG_base_type"));
c906108c 17571 }
6ccb9162
UW
17572
17573 switch (encoding)
c906108c 17574 {
6ccb9162
UW
17575 case DW_ATE_address:
17576 /* Turn DW_ATE_address into a void * pointer. */
77b7c781 17577 type = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, NULL);
19f392bc 17578 type = init_pointer_type (objfile, bits, name, type);
6ccb9162
UW
17579 break;
17580 case DW_ATE_boolean:
19f392bc 17581 type = init_boolean_type (objfile, bits, 1, name);
6ccb9162
UW
17582 break;
17583 case DW_ATE_complex_float:
8bdc1658 17584 type = dwarf2_init_complex_target_type (cu, objfile, bits / 2, name);
19f392bc 17585 type = init_complex_type (objfile, name, type);
6ccb9162
UW
17586 break;
17587 case DW_ATE_decimal_float:
19f392bc 17588 type = init_decfloat_type (objfile, bits, name);
6ccb9162
UW
17589 break;
17590 case DW_ATE_float:
9b790ce7 17591 type = dwarf2_init_float_type (objfile, bits, name, name);
6ccb9162
UW
17592 break;
17593 case DW_ATE_signed:
eb77c9df 17594 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17595 break;
17596 case DW_ATE_unsigned:
3b2b8fea
TT
17597 if (cu->language == language_fortran
17598 && name
61012eef 17599 && startswith (name, "character("))
19f392bc
UW
17600 type = init_character_type (objfile, bits, 1, name);
17601 else
eb77c9df 17602 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162
UW
17603 break;
17604 case DW_ATE_signed_char:
6e70227d 17605 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
17606 || cu->language == language_pascal
17607 || cu->language == language_fortran)
19f392bc
UW
17608 type = init_character_type (objfile, bits, 0, name);
17609 else
eb77c9df 17610 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17611 break;
17612 case DW_ATE_unsigned_char:
868a0084 17613 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea 17614 || cu->language == language_pascal
c44af4eb
TT
17615 || cu->language == language_fortran
17616 || cu->language == language_rust)
19f392bc
UW
17617 type = init_character_type (objfile, bits, 1, name);
17618 else
eb77c9df 17619 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162 17620 break;
75079b2b 17621 case DW_ATE_UTF:
53e710ac
PA
17622 {
17623 gdbarch *arch = get_objfile_arch (objfile);
17624
17625 if (bits == 16)
17626 type = builtin_type (arch)->builtin_char16;
17627 else if (bits == 32)
17628 type = builtin_type (arch)->builtin_char32;
17629 else
17630 {
b98664d3 17631 complaint (_("unsupported DW_ATE_UTF bit size: '%d'"),
53e710ac 17632 bits);
eb77c9df 17633 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
53e710ac
PA
17634 }
17635 return set_die_type (die, type, cu);
17636 }
75079b2b
TT
17637 break;
17638
6ccb9162 17639 default:
b98664d3 17640 complaint (_("unsupported DW_AT_encoding: '%s'"),
6ccb9162 17641 dwarf_type_encoding_name (encoding));
77b7c781 17642 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
6ccb9162 17643 break;
c906108c 17644 }
6ccb9162 17645
0114d602 17646 if (name && strcmp (name, "char") == 0)
876cecd0 17647 TYPE_NOSIGN (type) = 1;
0114d602 17648
2b4424c3
TT
17649 maybe_set_alignment (cu, die, type);
17650
f792889a 17651 return set_die_type (die, type, cu);
c906108c
SS
17652}
17653
80180f79
SA
17654/* Parse dwarf attribute if it's a block, reference or constant and put the
17655 resulting value of the attribute into struct bound_prop.
17656 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
17657
17658static int
17659attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
17660 struct dwarf2_cu *cu, struct dynamic_prop *prop)
17661{
17662 struct dwarf2_property_baton *baton;
518817b3
SM
17663 struct obstack *obstack
17664 = &cu->per_cu->dwarf2_per_objfile->objfile->objfile_obstack;
80180f79
SA
17665
17666 if (attr == NULL || prop == NULL)
17667 return 0;
17668
17669 if (attr_form_is_block (attr))
17670 {
8d749320 17671 baton = XOBNEW (obstack, struct dwarf2_property_baton);
80180f79
SA
17672 baton->referenced_type = NULL;
17673 baton->locexpr.per_cu = cu->per_cu;
17674 baton->locexpr.size = DW_BLOCK (attr)->size;
17675 baton->locexpr.data = DW_BLOCK (attr)->data;
17676 prop->data.baton = baton;
17677 prop->kind = PROP_LOCEXPR;
17678 gdb_assert (prop->data.baton != NULL);
17679 }
17680 else if (attr_form_is_ref (attr))
17681 {
17682 struct dwarf2_cu *target_cu = cu;
17683 struct die_info *target_die;
17684 struct attribute *target_attr;
17685
17686 target_die = follow_die_ref (die, attr, &target_cu);
17687 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
df25ebbd
JB
17688 if (target_attr == NULL)
17689 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
17690 target_cu);
80180f79
SA
17691 if (target_attr == NULL)
17692 return 0;
17693
df25ebbd 17694 switch (target_attr->name)
80180f79 17695 {
df25ebbd
JB
17696 case DW_AT_location:
17697 if (attr_form_is_section_offset (target_attr))
17698 {
8d749320 17699 baton = XOBNEW (obstack, struct dwarf2_property_baton);
df25ebbd
JB
17700 baton->referenced_type = die_type (target_die, target_cu);
17701 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
17702 prop->data.baton = baton;
17703 prop->kind = PROP_LOCLIST;
17704 gdb_assert (prop->data.baton != NULL);
17705 }
17706 else if (attr_form_is_block (target_attr))
17707 {
8d749320 17708 baton = XOBNEW (obstack, struct dwarf2_property_baton);
df25ebbd
JB
17709 baton->referenced_type = die_type (target_die, target_cu);
17710 baton->locexpr.per_cu = cu->per_cu;
17711 baton->locexpr.size = DW_BLOCK (target_attr)->size;
17712 baton->locexpr.data = DW_BLOCK (target_attr)->data;
17713 prop->data.baton = baton;
17714 prop->kind = PROP_LOCEXPR;
17715 gdb_assert (prop->data.baton != NULL);
17716 }
17717 else
17718 {
17719 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
17720 "dynamic property");
17721 return 0;
17722 }
17723 break;
17724 case DW_AT_data_member_location:
17725 {
17726 LONGEST offset;
17727
17728 if (!handle_data_member_location (target_die, target_cu,
17729 &offset))
17730 return 0;
17731
8d749320 17732 baton = XOBNEW (obstack, struct dwarf2_property_baton);
6ad395a7
JB
17733 baton->referenced_type = read_type_die (target_die->parent,
17734 target_cu);
df25ebbd
JB
17735 baton->offset_info.offset = offset;
17736 baton->offset_info.type = die_type (target_die, target_cu);
17737 prop->data.baton = baton;
17738 prop->kind = PROP_ADDR_OFFSET;
17739 break;
17740 }
80180f79
SA
17741 }
17742 }
17743 else if (attr_form_is_constant (attr))
17744 {
17745 prop->data.const_val = dwarf2_get_attr_constant_value (attr, 0);
17746 prop->kind = PROP_CONST;
17747 }
17748 else
17749 {
17750 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
17751 dwarf2_name (die, cu));
17752 return 0;
17753 }
17754
17755 return 1;
17756}
17757
a02abb62
JB
17758/* Read the given DW_AT_subrange DIE. */
17759
f792889a 17760static struct type *
a02abb62
JB
17761read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
17762{
4c9ad8c2 17763 struct type *base_type, *orig_base_type;
a02abb62
JB
17764 struct type *range_type;
17765 struct attribute *attr;
729efb13 17766 struct dynamic_prop low, high;
4fae6e18 17767 int low_default_is_valid;
c451ebe5 17768 int high_bound_is_count = 0;
15d034d0 17769 const char *name;
d359392f 17770 ULONGEST negative_mask;
e77813c8 17771
4c9ad8c2
TT
17772 orig_base_type = die_type (die, cu);
17773 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
17774 whereas the real type might be. So, we use ORIG_BASE_TYPE when
17775 creating the range type, but we use the result of check_typedef
17776 when examining properties of the type. */
17777 base_type = check_typedef (orig_base_type);
a02abb62 17778
7e314c57
JK
17779 /* The die_type call above may have already set the type for this DIE. */
17780 range_type = get_die_type (die, cu);
17781 if (range_type)
17782 return range_type;
17783
729efb13
SA
17784 low.kind = PROP_CONST;
17785 high.kind = PROP_CONST;
17786 high.data.const_val = 0;
17787
4fae6e18
JK
17788 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
17789 omitting DW_AT_lower_bound. */
17790 switch (cu->language)
6e70227d 17791 {
4fae6e18
JK
17792 case language_c:
17793 case language_cplus:
729efb13 17794 low.data.const_val = 0;
4fae6e18
JK
17795 low_default_is_valid = 1;
17796 break;
17797 case language_fortran:
729efb13 17798 low.data.const_val = 1;
4fae6e18
JK
17799 low_default_is_valid = 1;
17800 break;
17801 case language_d:
4fae6e18 17802 case language_objc:
c44af4eb 17803 case language_rust:
729efb13 17804 low.data.const_val = 0;
4fae6e18
JK
17805 low_default_is_valid = (cu->header.version >= 4);
17806 break;
17807 case language_ada:
17808 case language_m2:
17809 case language_pascal:
729efb13 17810 low.data.const_val = 1;
4fae6e18
JK
17811 low_default_is_valid = (cu->header.version >= 4);
17812 break;
17813 default:
729efb13 17814 low.data.const_val = 0;
4fae6e18
JK
17815 low_default_is_valid = 0;
17816 break;
a02abb62
JB
17817 }
17818
e142c38c 17819 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
a02abb62 17820 if (attr)
11c1ba78 17821 attr_to_dynamic_prop (attr, die, cu, &low);
4fae6e18 17822 else if (!low_default_is_valid)
b98664d3 17823 complaint (_("Missing DW_AT_lower_bound "
9d8780f0
SM
17824 "- DIE at %s [in module %s]"),
17825 sect_offset_str (die->sect_off),
518817b3 17826 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
a02abb62 17827
506f5c41
TV
17828 struct attribute *attr_ub, *attr_count;
17829 attr = attr_ub = dwarf2_attr (die, DW_AT_upper_bound, cu);
80180f79 17830 if (!attr_to_dynamic_prop (attr, die, cu, &high))
e77813c8 17831 {
506f5c41 17832 attr = attr_count = dwarf2_attr (die, DW_AT_count, cu);
c451ebe5 17833 if (attr_to_dynamic_prop (attr, die, cu, &high))
6b662e19 17834 {
c451ebe5
SA
17835 /* If bounds are constant do the final calculation here. */
17836 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
17837 high.data.const_val = low.data.const_val + high.data.const_val - 1;
17838 else
17839 high_bound_is_count = 1;
c2ff108b 17840 }
506f5c41
TV
17841 else
17842 {
17843 if (attr_ub != NULL)
17844 complaint (_("Unresolved DW_AT_upper_bound "
17845 "- DIE at %s [in module %s]"),
17846 sect_offset_str (die->sect_off),
17847 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17848 if (attr_count != NULL)
17849 complaint (_("Unresolved DW_AT_count "
17850 "- DIE at %s [in module %s]"),
17851 sect_offset_str (die->sect_off),
17852 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17853 }
17854
e77813c8
PM
17855 }
17856
17857 /* Dwarf-2 specifications explicitly allows to create subrange types
17858 without specifying a base type.
17859 In that case, the base type must be set to the type of
17860 the lower bound, upper bound or count, in that order, if any of these
17861 three attributes references an object that has a type.
17862 If no base type is found, the Dwarf-2 specifications say that
17863 a signed integer type of size equal to the size of an address should
17864 be used.
17865 For the following C code: `extern char gdb_int [];'
17866 GCC produces an empty range DIE.
17867 FIXME: muller/2010-05-28: Possible references to object for low bound,
0963b4bd 17868 high bound or count are not yet handled by this code. */
e77813c8
PM
17869 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
17870 {
518817b3 17871 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e77813c8
PM
17872 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17873 int addr_size = gdbarch_addr_bit (gdbarch) /8;
17874 struct type *int_type = objfile_type (objfile)->builtin_int;
17875
17876 /* Test "int", "long int", and "long long int" objfile types,
17877 and select the first one having a size above or equal to the
17878 architecture address size. */
17879 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17880 base_type = int_type;
17881 else
17882 {
17883 int_type = objfile_type (objfile)->builtin_long;
17884 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17885 base_type = int_type;
17886 else
17887 {
17888 int_type = objfile_type (objfile)->builtin_long_long;
17889 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17890 base_type = int_type;
17891 }
17892 }
17893 }
a02abb62 17894
dbb9c2b1
JB
17895 /* Normally, the DWARF producers are expected to use a signed
17896 constant form (Eg. DW_FORM_sdata) to express negative bounds.
17897 But this is unfortunately not always the case, as witnessed
17898 with GCC, for instance, where the ambiguous DW_FORM_dataN form
17899 is used instead. To work around that ambiguity, we treat
17900 the bounds as signed, and thus sign-extend their values, when
17901 the base type is signed. */
6e70227d 17902 negative_mask =
d359392f 17903 -((ULONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
729efb13
SA
17904 if (low.kind == PROP_CONST
17905 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
17906 low.data.const_val |= negative_mask;
17907 if (high.kind == PROP_CONST
17908 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
17909 high.data.const_val |= negative_mask;
43bbcdc2 17910
729efb13 17911 range_type = create_range_type (NULL, orig_base_type, &low, &high);
a02abb62 17912
c451ebe5
SA
17913 if (high_bound_is_count)
17914 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
17915
c2ff108b
JK
17916 /* Ada expects an empty array on no boundary attributes. */
17917 if (attr == NULL && cu->language != language_ada)
729efb13 17918 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
c2ff108b 17919
39cbfefa
DJ
17920 name = dwarf2_name (die, cu);
17921 if (name)
17922 TYPE_NAME (range_type) = name;
6e70227d 17923
e142c38c 17924 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
a02abb62
JB
17925 if (attr)
17926 TYPE_LENGTH (range_type) = DW_UNSND (attr);
17927
2b4424c3
TT
17928 maybe_set_alignment (cu, die, range_type);
17929
7e314c57
JK
17930 set_die_type (die, range_type, cu);
17931
17932 /* set_die_type should be already done. */
b4ba55a1
JB
17933 set_descriptive_type (range_type, die, cu);
17934
7e314c57 17935 return range_type;
a02abb62 17936}
6e70227d 17937
f792889a 17938static struct type *
81a17f79
JB
17939read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
17940{
17941 struct type *type;
81a17f79 17942
518817b3
SM
17943 type = init_type (cu->per_cu->dwarf2_per_objfile->objfile, TYPE_CODE_VOID,0,
17944 NULL);
0114d602 17945 TYPE_NAME (type) = dwarf2_name (die, cu);
81a17f79 17946
74a2f8ff
JB
17947 /* In Ada, an unspecified type is typically used when the description
17948 of the type is defered to a different unit. When encountering
17949 such a type, we treat it as a stub, and try to resolve it later on,
17950 when needed. */
17951 if (cu->language == language_ada)
17952 TYPE_STUB (type) = 1;
17953
f792889a 17954 return set_die_type (die, type, cu);
81a17f79 17955}
a02abb62 17956
639d11d3
DC
17957/* Read a single die and all its descendents. Set the die's sibling
17958 field to NULL; set other fields in the die correctly, and set all
17959 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
17960 location of the info_ptr after reading all of those dies. PARENT
17961 is the parent of the die in question. */
17962
17963static struct die_info *
dee91e82 17964read_die_and_children (const struct die_reader_specs *reader,
d521ce57
TT
17965 const gdb_byte *info_ptr,
17966 const gdb_byte **new_info_ptr,
dee91e82 17967 struct die_info *parent)
639d11d3
DC
17968{
17969 struct die_info *die;
d521ce57 17970 const gdb_byte *cur_ptr;
639d11d3
DC
17971 int has_children;
17972
bf6af496 17973 cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
1d325ec1
DJ
17974 if (die == NULL)
17975 {
17976 *new_info_ptr = cur_ptr;
17977 return NULL;
17978 }
93311388 17979 store_in_ref_table (die, reader->cu);
639d11d3
DC
17980
17981 if (has_children)
bf6af496 17982 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
639d11d3
DC
17983 else
17984 {
17985 die->child = NULL;
17986 *new_info_ptr = cur_ptr;
17987 }
17988
17989 die->sibling = NULL;
17990 die->parent = parent;
17991 return die;
17992}
17993
17994/* Read a die, all of its descendents, and all of its siblings; set
17995 all of the fields of all of the dies correctly. Arguments are as
17996 in read_die_and_children. */
17997
17998static struct die_info *
bf6af496 17999read_die_and_siblings_1 (const struct die_reader_specs *reader,
d521ce57
TT
18000 const gdb_byte *info_ptr,
18001 const gdb_byte **new_info_ptr,
bf6af496 18002 struct die_info *parent)
639d11d3
DC
18003{
18004 struct die_info *first_die, *last_sibling;
d521ce57 18005 const gdb_byte *cur_ptr;
639d11d3 18006
c906108c 18007 cur_ptr = info_ptr;
639d11d3
DC
18008 first_die = last_sibling = NULL;
18009
18010 while (1)
c906108c 18011 {
639d11d3 18012 struct die_info *die
dee91e82 18013 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
639d11d3 18014
1d325ec1 18015 if (die == NULL)
c906108c 18016 {
639d11d3
DC
18017 *new_info_ptr = cur_ptr;
18018 return first_die;
c906108c 18019 }
1d325ec1
DJ
18020
18021 if (!first_die)
18022 first_die = die;
c906108c 18023 else
1d325ec1
DJ
18024 last_sibling->sibling = die;
18025
18026 last_sibling = die;
c906108c 18027 }
c906108c
SS
18028}
18029
bf6af496
DE
18030/* Read a die, all of its descendents, and all of its siblings; set
18031 all of the fields of all of the dies correctly. Arguments are as
18032 in read_die_and_children.
18033 This the main entry point for reading a DIE and all its children. */
18034
18035static struct die_info *
18036read_die_and_siblings (const struct die_reader_specs *reader,
d521ce57
TT
18037 const gdb_byte *info_ptr,
18038 const gdb_byte **new_info_ptr,
bf6af496
DE
18039 struct die_info *parent)
18040{
18041 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
18042 new_info_ptr, parent);
18043
b4f54984 18044 if (dwarf_die_debug)
bf6af496
DE
18045 {
18046 fprintf_unfiltered (gdb_stdlog,
18047 "Read die from %s@0x%x of %s:\n",
a32a8923 18048 get_section_name (reader->die_section),
bf6af496
DE
18049 (unsigned) (info_ptr - reader->die_section->buffer),
18050 bfd_get_filename (reader->abfd));
b4f54984 18051 dump_die (die, dwarf_die_debug);
bf6af496
DE
18052 }
18053
18054 return die;
18055}
18056
3019eac3
DE
18057/* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
18058 attributes.
18059 The caller is responsible for filling in the extra attributes
18060 and updating (*DIEP)->num_attrs.
18061 Set DIEP to point to a newly allocated die with its information,
18062 except for its child, sibling, and parent fields.
18063 Set HAS_CHILDREN to tell whether the die has children or not. */
93311388 18064
d521ce57 18065static const gdb_byte *
3019eac3 18066read_full_die_1 (const struct die_reader_specs *reader,
d521ce57 18067 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3 18068 int *has_children, int num_extra_attrs)
93311388 18069{
b64f50a1 18070 unsigned int abbrev_number, bytes_read, i;
93311388
DE
18071 struct abbrev_info *abbrev;
18072 struct die_info *die;
18073 struct dwarf2_cu *cu = reader->cu;
18074 bfd *abfd = reader->abfd;
18075
9c541725 18076 sect_offset sect_off = (sect_offset) (info_ptr - reader->buffer);
93311388
DE
18077 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
18078 info_ptr += bytes_read;
18079 if (!abbrev_number)
18080 {
18081 *diep = NULL;
18082 *has_children = 0;
18083 return info_ptr;
18084 }
18085
685af9cd 18086 abbrev = reader->abbrev_table->lookup_abbrev (abbrev_number);
93311388 18087 if (!abbrev)
348e048f
DE
18088 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
18089 abbrev_number,
18090 bfd_get_filename (abfd));
18091
3019eac3 18092 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
9c541725 18093 die->sect_off = sect_off;
93311388
DE
18094 die->tag = abbrev->tag;
18095 die->abbrev = abbrev_number;
18096
3019eac3
DE
18097 /* Make the result usable.
18098 The caller needs to update num_attrs after adding the extra
18099 attributes. */
93311388
DE
18100 die->num_attrs = abbrev->num_attrs;
18101
18102 for (i = 0; i < abbrev->num_attrs; ++i)
dee91e82
DE
18103 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
18104 info_ptr);
93311388
DE
18105
18106 *diep = die;
18107 *has_children = abbrev->has_children;
18108 return info_ptr;
18109}
18110
3019eac3
DE
18111/* Read a die and all its attributes.
18112 Set DIEP to point to a newly allocated die with its information,
18113 except for its child, sibling, and parent fields.
18114 Set HAS_CHILDREN to tell whether the die has children or not. */
18115
d521ce57 18116static const gdb_byte *
3019eac3 18117read_full_die (const struct die_reader_specs *reader,
d521ce57 18118 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3
DE
18119 int *has_children)
18120{
d521ce57 18121 const gdb_byte *result;
bf6af496
DE
18122
18123 result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
18124
b4f54984 18125 if (dwarf_die_debug)
bf6af496
DE
18126 {
18127 fprintf_unfiltered (gdb_stdlog,
18128 "Read die from %s@0x%x of %s:\n",
a32a8923 18129 get_section_name (reader->die_section),
bf6af496
DE
18130 (unsigned) (info_ptr - reader->die_section->buffer),
18131 bfd_get_filename (reader->abfd));
b4f54984 18132 dump_die (*diep, dwarf_die_debug);
bf6af496
DE
18133 }
18134
18135 return result;
3019eac3 18136}
433df2d4
DE
18137\f
18138/* Abbreviation tables.
3019eac3 18139
433df2d4 18140 In DWARF version 2, the description of the debugging information is
c906108c
SS
18141 stored in a separate .debug_abbrev section. Before we read any
18142 dies from a section we read in all abbreviations and install them
433df2d4
DE
18143 in a hash table. */
18144
18145/* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
18146
685af9cd
TT
18147struct abbrev_info *
18148abbrev_table::alloc_abbrev ()
433df2d4
DE
18149{
18150 struct abbrev_info *abbrev;
18151
685af9cd 18152 abbrev = XOBNEW (&abbrev_obstack, struct abbrev_info);
433df2d4 18153 memset (abbrev, 0, sizeof (struct abbrev_info));
8d749320 18154
433df2d4
DE
18155 return abbrev;
18156}
18157
18158/* Add an abbreviation to the table. */
c906108c 18159
685af9cd
TT
18160void
18161abbrev_table::add_abbrev (unsigned int abbrev_number,
18162 struct abbrev_info *abbrev)
433df2d4
DE
18163{
18164 unsigned int hash_number;
18165
18166 hash_number = abbrev_number % ABBREV_HASH_SIZE;
4a17f768
YQ
18167 abbrev->next = m_abbrevs[hash_number];
18168 m_abbrevs[hash_number] = abbrev;
433df2d4 18169}
dee91e82 18170
433df2d4
DE
18171/* Look up an abbrev in the table.
18172 Returns NULL if the abbrev is not found. */
18173
685af9cd
TT
18174struct abbrev_info *
18175abbrev_table::lookup_abbrev (unsigned int abbrev_number)
c906108c 18176{
433df2d4
DE
18177 unsigned int hash_number;
18178 struct abbrev_info *abbrev;
18179
18180 hash_number = abbrev_number % ABBREV_HASH_SIZE;
4a17f768 18181 abbrev = m_abbrevs[hash_number];
433df2d4
DE
18182
18183 while (abbrev)
18184 {
18185 if (abbrev->number == abbrev_number)
18186 return abbrev;
18187 abbrev = abbrev->next;
18188 }
18189 return NULL;
18190}
18191
18192/* Read in an abbrev table. */
18193
685af9cd 18194static abbrev_table_up
ed2dc618
SM
18195abbrev_table_read_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
18196 struct dwarf2_section_info *section,
9c541725 18197 sect_offset sect_off)
433df2d4
DE
18198{
18199 struct objfile *objfile = dwarf2_per_objfile->objfile;
a32a8923 18200 bfd *abfd = get_section_bfd_owner (section);
d521ce57 18201 const gdb_byte *abbrev_ptr;
c906108c
SS
18202 struct abbrev_info *cur_abbrev;
18203 unsigned int abbrev_number, bytes_read, abbrev_name;
433df2d4 18204 unsigned int abbrev_form;
f3dd6933
DJ
18205 struct attr_abbrev *cur_attrs;
18206 unsigned int allocated_attrs;
c906108c 18207
685af9cd 18208 abbrev_table_up abbrev_table (new struct abbrev_table (sect_off));
c906108c 18209
433df2d4 18210 dwarf2_read_section (objfile, section);
9c541725 18211 abbrev_ptr = section->buffer + to_underlying (sect_off);
c906108c
SS
18212 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18213 abbrev_ptr += bytes_read;
18214
f3dd6933 18215 allocated_attrs = ATTR_ALLOC_CHUNK;
8d749320 18216 cur_attrs = XNEWVEC (struct attr_abbrev, allocated_attrs);
6e70227d 18217
0963b4bd 18218 /* Loop until we reach an abbrev number of 0. */
c906108c
SS
18219 while (abbrev_number)
18220 {
685af9cd 18221 cur_abbrev = abbrev_table->alloc_abbrev ();
c906108c
SS
18222
18223 /* read in abbrev header */
18224 cur_abbrev->number = abbrev_number;
aead7601
SM
18225 cur_abbrev->tag
18226 = (enum dwarf_tag) read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
c906108c
SS
18227 abbrev_ptr += bytes_read;
18228 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
18229 abbrev_ptr += 1;
18230
18231 /* now read in declarations */
22d2f3ab 18232 for (;;)
c906108c 18233 {
43988095
JK
18234 LONGEST implicit_const;
18235
22d2f3ab
JK
18236 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18237 abbrev_ptr += bytes_read;
18238 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18239 abbrev_ptr += bytes_read;
43988095
JK
18240 if (abbrev_form == DW_FORM_implicit_const)
18241 {
18242 implicit_const = read_signed_leb128 (abfd, abbrev_ptr,
18243 &bytes_read);
18244 abbrev_ptr += bytes_read;
18245 }
18246 else
18247 {
18248 /* Initialize it due to a false compiler warning. */
18249 implicit_const = -1;
18250 }
22d2f3ab
JK
18251
18252 if (abbrev_name == 0)
18253 break;
18254
f3dd6933 18255 if (cur_abbrev->num_attrs == allocated_attrs)
c906108c 18256 {
f3dd6933
DJ
18257 allocated_attrs += ATTR_ALLOC_CHUNK;
18258 cur_attrs
224c3ddb 18259 = XRESIZEVEC (struct attr_abbrev, cur_attrs, allocated_attrs);
c906108c 18260 }
ae038cb0 18261
aead7601
SM
18262 cur_attrs[cur_abbrev->num_attrs].name
18263 = (enum dwarf_attribute) abbrev_name;
22d2f3ab 18264 cur_attrs[cur_abbrev->num_attrs].form
aead7601 18265 = (enum dwarf_form) abbrev_form;
43988095 18266 cur_attrs[cur_abbrev->num_attrs].implicit_const = implicit_const;
22d2f3ab 18267 ++cur_abbrev->num_attrs;
c906108c
SS
18268 }
18269
8d749320
SM
18270 cur_abbrev->attrs =
18271 XOBNEWVEC (&abbrev_table->abbrev_obstack, struct attr_abbrev,
18272 cur_abbrev->num_attrs);
f3dd6933
DJ
18273 memcpy (cur_abbrev->attrs, cur_attrs,
18274 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
18275
685af9cd 18276 abbrev_table->add_abbrev (abbrev_number, cur_abbrev);
c906108c
SS
18277
18278 /* Get next abbreviation.
18279 Under Irix6 the abbreviations for a compilation unit are not
c5aa993b
JM
18280 always properly terminated with an abbrev number of 0.
18281 Exit loop if we encounter an abbreviation which we have
18282 already read (which means we are about to read the abbreviations
18283 for the next compile unit) or if the end of the abbreviation
18284 table is reached. */
433df2d4 18285 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
c906108c
SS
18286 break;
18287 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18288 abbrev_ptr += bytes_read;
685af9cd 18289 if (abbrev_table->lookup_abbrev (abbrev_number) != NULL)
c906108c
SS
18290 break;
18291 }
f3dd6933
DJ
18292
18293 xfree (cur_attrs);
433df2d4 18294 return abbrev_table;
c906108c
SS
18295}
18296
72bf9492
DJ
18297/* Returns nonzero if TAG represents a type that we might generate a partial
18298 symbol for. */
18299
18300static int
18301is_type_tag_for_partial (int tag)
18302{
18303 switch (tag)
18304 {
18305#if 0
18306 /* Some types that would be reasonable to generate partial symbols for,
18307 that we don't at present. */
18308 case DW_TAG_array_type:
18309 case DW_TAG_file_type:
18310 case DW_TAG_ptr_to_member_type:
18311 case DW_TAG_set_type:
18312 case DW_TAG_string_type:
18313 case DW_TAG_subroutine_type:
18314#endif
18315 case DW_TAG_base_type:
18316 case DW_TAG_class_type:
680b30c7 18317 case DW_TAG_interface_type:
72bf9492
DJ
18318 case DW_TAG_enumeration_type:
18319 case DW_TAG_structure_type:
18320 case DW_TAG_subrange_type:
18321 case DW_TAG_typedef:
18322 case DW_TAG_union_type:
18323 return 1;
18324 default:
18325 return 0;
18326 }
18327}
18328
18329/* Load all DIEs that are interesting for partial symbols into memory. */
18330
18331static struct partial_die_info *
dee91e82 18332load_partial_dies (const struct die_reader_specs *reader,
d521ce57 18333 const gdb_byte *info_ptr, int building_psymtab)
72bf9492 18334{
dee91e82 18335 struct dwarf2_cu *cu = reader->cu;
518817b3 18336 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
72bf9492 18337 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
72bf9492 18338 unsigned int bytes_read;
5afb4e99 18339 unsigned int load_all = 0;
72bf9492
DJ
18340 int nesting_level = 1;
18341
18342 parent_die = NULL;
18343 last_die = NULL;
18344
7adf1e79
DE
18345 gdb_assert (cu->per_cu != NULL);
18346 if (cu->per_cu->load_all_dies)
5afb4e99
DJ
18347 load_all = 1;
18348
72bf9492
DJ
18349 cu->partial_dies
18350 = htab_create_alloc_ex (cu->header.length / 12,
18351 partial_die_hash,
18352 partial_die_eq,
18353 NULL,
18354 &cu->comp_unit_obstack,
18355 hashtab_obstack_allocate,
18356 dummy_obstack_deallocate);
18357
72bf9492
DJ
18358 while (1)
18359 {
685af9cd 18360 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
72bf9492
DJ
18361
18362 /* A NULL abbrev means the end of a series of children. */
18363 if (abbrev == NULL)
18364 {
18365 if (--nesting_level == 0)
cd9983dd
YQ
18366 return first_die;
18367
72bf9492
DJ
18368 info_ptr += bytes_read;
18369 last_die = parent_die;
18370 parent_die = parent_die->die_parent;
18371 continue;
18372 }
18373
98bfdba5
PA
18374 /* Check for template arguments. We never save these; if
18375 they're seen, we just mark the parent, and go on our way. */
18376 if (parent_die != NULL
18377 && cu->language == language_cplus
18378 && (abbrev->tag == DW_TAG_template_type_param
18379 || abbrev->tag == DW_TAG_template_value_param))
18380 {
18381 parent_die->has_template_arguments = 1;
18382
18383 if (!load_all)
18384 {
18385 /* We don't need a partial DIE for the template argument. */
dee91e82 18386 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18387 continue;
18388 }
18389 }
18390
0d99eb77 18391 /* We only recurse into c++ subprograms looking for template arguments.
98bfdba5
PA
18392 Skip their other children. */
18393 if (!load_all
18394 && cu->language == language_cplus
18395 && parent_die != NULL
18396 && parent_die->tag == DW_TAG_subprogram)
18397 {
dee91e82 18398 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18399 continue;
18400 }
18401
5afb4e99
DJ
18402 /* Check whether this DIE is interesting enough to save. Normally
18403 we would not be interested in members here, but there may be
18404 later variables referencing them via DW_AT_specification (for
18405 static members). */
18406 if (!load_all
18407 && !is_type_tag_for_partial (abbrev->tag)
72929c62 18408 && abbrev->tag != DW_TAG_constant
72bf9492
DJ
18409 && abbrev->tag != DW_TAG_enumerator
18410 && abbrev->tag != DW_TAG_subprogram
b1dc1806 18411 && abbrev->tag != DW_TAG_inlined_subroutine
bc30ff58 18412 && abbrev->tag != DW_TAG_lexical_block
72bf9492 18413 && abbrev->tag != DW_TAG_variable
5afb4e99 18414 && abbrev->tag != DW_TAG_namespace
f55ee35c 18415 && abbrev->tag != DW_TAG_module
95554aad 18416 && abbrev->tag != DW_TAG_member
74921315
KS
18417 && abbrev->tag != DW_TAG_imported_unit
18418 && abbrev->tag != DW_TAG_imported_declaration)
72bf9492
DJ
18419 {
18420 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18421 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
72bf9492
DJ
18422 continue;
18423 }
18424
6f06d47b
YQ
18425 struct partial_die_info pdi ((sect_offset) (info_ptr - reader->buffer),
18426 abbrev);
cd9983dd 18427
48fbe735 18428 info_ptr = pdi.read (reader, *abbrev, info_ptr + bytes_read);
72bf9492
DJ
18429
18430 /* This two-pass algorithm for processing partial symbols has a
18431 high cost in cache pressure. Thus, handle some simple cases
18432 here which cover the majority of C partial symbols. DIEs
18433 which neither have specification tags in them, nor could have
18434 specification tags elsewhere pointing at them, can simply be
18435 processed and discarded.
18436
18437 This segment is also optional; scan_partial_symbols and
18438 add_partial_symbol will handle these DIEs if we chain
18439 them in normally. When compilers which do not emit large
18440 quantities of duplicate debug information are more common,
18441 this code can probably be removed. */
18442
18443 /* Any complete simple types at the top level (pretty much all
18444 of them, for a language without namespaces), can be processed
18445 directly. */
18446 if (parent_die == NULL
cd9983dd
YQ
18447 && pdi.has_specification == 0
18448 && pdi.is_declaration == 0
18449 && ((pdi.tag == DW_TAG_typedef && !pdi.has_children)
18450 || pdi.tag == DW_TAG_base_type
18451 || pdi.tag == DW_TAG_subrange_type))
72bf9492 18452 {
cd9983dd
YQ
18453 if (building_psymtab && pdi.name != NULL)
18454 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
79748972 18455 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 18456 psymbol_placement::STATIC,
1762568f 18457 0, cu->language, objfile);
cd9983dd 18458 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18459 continue;
18460 }
18461
d8228535
JK
18462 /* The exception for DW_TAG_typedef with has_children above is
18463 a workaround of GCC PR debug/47510. In the case of this complaint
a737d952 18464 type_name_or_error will error on such types later.
d8228535
JK
18465
18466 GDB skipped children of DW_TAG_typedef by the shortcut above and then
18467 it could not find the child DIEs referenced later, this is checked
18468 above. In correct DWARF DW_TAG_typedef should have no children. */
18469
cd9983dd 18470 if (pdi.tag == DW_TAG_typedef && pdi.has_children)
b98664d3 18471 complaint (_("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
9d8780f0 18472 "- DIE at %s [in module %s]"),
cd9983dd 18473 sect_offset_str (pdi.sect_off), objfile_name (objfile));
d8228535 18474
72bf9492
DJ
18475 /* If we're at the second level, and we're an enumerator, and
18476 our parent has no specification (meaning possibly lives in a
18477 namespace elsewhere), then we can add the partial symbol now
18478 instead of queueing it. */
cd9983dd 18479 if (pdi.tag == DW_TAG_enumerator
72bf9492
DJ
18480 && parent_die != NULL
18481 && parent_die->die_parent == NULL
18482 && parent_die->tag == DW_TAG_enumeration_type
18483 && parent_die->has_specification == 0)
18484 {
cd9983dd 18485 if (pdi.name == NULL)
b98664d3 18486 complaint (_("malformed enumerator DIE ignored"));
72bf9492 18487 else if (building_psymtab)
cd9983dd 18488 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
79748972 18489 VAR_DOMAIN, LOC_CONST, -1,
9c37b5ae 18490 cu->language == language_cplus
75aedd27
TT
18491 ? psymbol_placement::GLOBAL
18492 : psymbol_placement::STATIC,
1762568f 18493 0, cu->language, objfile);
72bf9492 18494
cd9983dd 18495 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18496 continue;
18497 }
18498
cd9983dd 18499 struct partial_die_info *part_die
6f06d47b 18500 = new (&cu->comp_unit_obstack) partial_die_info (pdi);
cd9983dd 18501
72bf9492
DJ
18502 /* We'll save this DIE so link it in. */
18503 part_die->die_parent = parent_die;
18504 part_die->die_sibling = NULL;
18505 part_die->die_child = NULL;
18506
18507 if (last_die && last_die == parent_die)
18508 last_die->die_child = part_die;
18509 else if (last_die)
18510 last_die->die_sibling = part_die;
18511
18512 last_die = part_die;
18513
18514 if (first_die == NULL)
18515 first_die = part_die;
18516
18517 /* Maybe add the DIE to the hash table. Not all DIEs that we
18518 find interesting need to be in the hash table, because we
18519 also have the parent/sibling/child chains; only those that we
18520 might refer to by offset later during partial symbol reading.
18521
18522 For now this means things that might have be the target of a
18523 DW_AT_specification, DW_AT_abstract_origin, or
18524 DW_AT_extension. DW_AT_extension will refer only to
18525 namespaces; DW_AT_abstract_origin refers to functions (and
18526 many things under the function DIE, but we do not recurse
18527 into function DIEs during partial symbol reading) and
18528 possibly variables as well; DW_AT_specification refers to
18529 declarations. Declarations ought to have the DW_AT_declaration
18530 flag. It happens that GCC forgets to put it in sometimes, but
18531 only for functions, not for types.
18532
18533 Adding more things than necessary to the hash table is harmless
18534 except for the performance cost. Adding too few will result in
5afb4e99
DJ
18535 wasted time in find_partial_die, when we reread the compilation
18536 unit with load_all_dies set. */
72bf9492 18537
5afb4e99 18538 if (load_all
72929c62 18539 || abbrev->tag == DW_TAG_constant
5afb4e99 18540 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
18541 || abbrev->tag == DW_TAG_variable
18542 || abbrev->tag == DW_TAG_namespace
18543 || part_die->is_declaration)
18544 {
18545 void **slot;
18546
18547 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
9c541725
PA
18548 to_underlying (part_die->sect_off),
18549 INSERT);
72bf9492
DJ
18550 *slot = part_die;
18551 }
18552
72bf9492 18553 /* For some DIEs we want to follow their children (if any). For C
bc30ff58 18554 we have no reason to follow the children of structures; for other
98bfdba5
PA
18555 languages we have to, so that we can get at method physnames
18556 to infer fully qualified class names, for DW_AT_specification,
18557 and for C++ template arguments. For C++, we also look one level
18558 inside functions to find template arguments (if the name of the
18559 function does not already contain the template arguments).
bc30ff58
JB
18560
18561 For Ada, we need to scan the children of subprograms and lexical
18562 blocks as well because Ada allows the definition of nested
18563 entities that could be interesting for the debugger, such as
18564 nested subprograms for instance. */
72bf9492 18565 if (last_die->has_children
5afb4e99
DJ
18566 && (load_all
18567 || last_die->tag == DW_TAG_namespace
f55ee35c 18568 || last_die->tag == DW_TAG_module
72bf9492 18569 || last_die->tag == DW_TAG_enumeration_type
98bfdba5
PA
18570 || (cu->language == language_cplus
18571 && last_die->tag == DW_TAG_subprogram
18572 && (last_die->name == NULL
18573 || strchr (last_die->name, '<') == NULL))
72bf9492
DJ
18574 || (cu->language != language_c
18575 && (last_die->tag == DW_TAG_class_type
680b30c7 18576 || last_die->tag == DW_TAG_interface_type
72bf9492 18577 || last_die->tag == DW_TAG_structure_type
bc30ff58
JB
18578 || last_die->tag == DW_TAG_union_type))
18579 || (cu->language == language_ada
18580 && (last_die->tag == DW_TAG_subprogram
18581 || last_die->tag == DW_TAG_lexical_block))))
72bf9492
DJ
18582 {
18583 nesting_level++;
18584 parent_die = last_die;
18585 continue;
18586 }
18587
18588 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18589 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
72bf9492
DJ
18590
18591 /* Back to the top, do it again. */
18592 }
18593}
18594
6f06d47b
YQ
18595partial_die_info::partial_die_info (sect_offset sect_off_,
18596 struct abbrev_info *abbrev)
18597 : partial_die_info (sect_off_, abbrev->tag, abbrev->has_children)
18598{
18599}
18600
35cc7ed7
YQ
18601/* Read a minimal amount of information into the minimal die structure.
18602 INFO_PTR should point just after the initial uleb128 of a DIE. */
c906108c 18603
48fbe735
YQ
18604const gdb_byte *
18605partial_die_info::read (const struct die_reader_specs *reader,
18606 const struct abbrev_info &abbrev, const gdb_byte *info_ptr)
c906108c 18607{
dee91e82 18608 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
18609 struct dwarf2_per_objfile *dwarf2_per_objfile
18610 = cu->per_cu->dwarf2_per_objfile;
fa238c03 18611 unsigned int i;
c5aa993b 18612 int has_low_pc_attr = 0;
c906108c 18613 int has_high_pc_attr = 0;
91da1414 18614 int high_pc_relative = 0;
c906108c 18615
fd0a254f 18616 for (i = 0; i < abbrev.num_attrs; ++i)
c906108c 18617 {
48fbe735
YQ
18618 struct attribute attr;
18619
fd0a254f 18620 info_ptr = read_attribute (reader, &attr, &abbrev.attrs[i], info_ptr);
c906108c
SS
18621
18622 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 18623 partial symbol table. */
c906108c
SS
18624 switch (attr.name)
18625 {
18626 case DW_AT_name:
48fbe735 18627 switch (tag)
71c25dea
TT
18628 {
18629 case DW_TAG_compile_unit:
95554aad 18630 case DW_TAG_partial_unit:
348e048f 18631 case DW_TAG_type_unit:
71c25dea
TT
18632 /* Compilation units have a DW_AT_name that is a filename, not
18633 a source language identifier. */
18634 case DW_TAG_enumeration_type:
18635 case DW_TAG_enumerator:
18636 /* These tags always have simple identifiers already; no need
18637 to canonicalize them. */
48fbe735 18638 name = DW_STRING (&attr);
71c25dea
TT
18639 break;
18640 default:
48fbe735
YQ
18641 {
18642 struct objfile *objfile = dwarf2_per_objfile->objfile;
18643
18644 name
18645 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
18646 &objfile->per_bfd->storage_obstack);
18647 }
71c25dea
TT
18648 break;
18649 }
c906108c 18650 break;
31ef98ae 18651 case DW_AT_linkage_name:
c906108c 18652 case DW_AT_MIPS_linkage_name:
31ef98ae
TT
18653 /* Note that both forms of linkage name might appear. We
18654 assume they will be the same, and we only store the last
18655 one we see. */
48fbe735 18656 linkage_name = DW_STRING (&attr);
c906108c
SS
18657 break;
18658 case DW_AT_low_pc:
18659 has_low_pc_attr = 1;
48fbe735 18660 lowpc = attr_value_as_address (&attr);
c906108c
SS
18661 break;
18662 case DW_AT_high_pc:
18663 has_high_pc_attr = 1;
48fbe735 18664 highpc = attr_value_as_address (&attr);
31aa7e4e
JB
18665 if (cu->header.version >= 4 && attr_form_is_constant (&attr))
18666 high_pc_relative = 1;
c906108c
SS
18667 break;
18668 case DW_AT_location:
0963b4bd 18669 /* Support the .debug_loc offsets. */
8e19ed76
PS
18670 if (attr_form_is_block (&attr))
18671 {
48fbe735 18672 d.locdesc = DW_BLOCK (&attr);
8e19ed76 18673 }
3690dd37 18674 else if (attr_form_is_section_offset (&attr))
8e19ed76 18675 {
4d3c2250 18676 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
18677 }
18678 else
18679 {
4d3c2250
KB
18680 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
18681 "partial symbol information");
8e19ed76 18682 }
c906108c 18683 break;
c906108c 18684 case DW_AT_external:
48fbe735 18685 is_external = DW_UNSND (&attr);
c906108c
SS
18686 break;
18687 case DW_AT_declaration:
48fbe735 18688 is_declaration = DW_UNSND (&attr);
c906108c
SS
18689 break;
18690 case DW_AT_type:
48fbe735 18691 has_type = 1;
c906108c
SS
18692 break;
18693 case DW_AT_abstract_origin:
18694 case DW_AT_specification:
72bf9492 18695 case DW_AT_extension:
48fbe735
YQ
18696 has_specification = 1;
18697 spec_offset = dwarf2_get_ref_die_offset (&attr);
18698 spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728 18699 || cu->per_cu->is_dwz);
c906108c
SS
18700 break;
18701 case DW_AT_sibling:
18702 /* Ignore absolute siblings, they might point outside of
18703 the current compile unit. */
18704 if (attr.form == DW_FORM_ref_addr)
b98664d3 18705 complaint (_("ignoring absolute DW_AT_sibling"));
c906108c 18706 else
b9502d3f 18707 {
48fbe735 18708 const gdb_byte *buffer = reader->buffer;
9c541725
PA
18709 sect_offset off = dwarf2_get_ref_die_offset (&attr);
18710 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
18711
18712 if (sibling_ptr < info_ptr)
b98664d3 18713 complaint (_("DW_AT_sibling points backwards"));
22869d73
KS
18714 else if (sibling_ptr > reader->buffer_end)
18715 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f 18716 else
48fbe735 18717 sibling = sibling_ptr;
b9502d3f 18718 }
c906108c 18719 break;
fa4028e9 18720 case DW_AT_byte_size:
48fbe735 18721 has_byte_size = 1;
fa4028e9 18722 break;
ff908ebf 18723 case DW_AT_const_value:
48fbe735 18724 has_const_value = 1;
ff908ebf 18725 break;
68511cec
CES
18726 case DW_AT_calling_convention:
18727 /* DWARF doesn't provide a way to identify a program's source-level
18728 entry point. DW_AT_calling_convention attributes are only meant
18729 to describe functions' calling conventions.
18730
18731 However, because it's a necessary piece of information in
0c1b455e
TT
18732 Fortran, and before DWARF 4 DW_CC_program was the only
18733 piece of debugging information whose definition refers to
18734 a 'main program' at all, several compilers marked Fortran
18735 main programs with DW_CC_program --- even when those
18736 functions use the standard calling conventions.
18737
18738 Although DWARF now specifies a way to provide this
18739 information, we support this practice for backward
18740 compatibility. */
68511cec 18741 if (DW_UNSND (&attr) == DW_CC_program
0c1b455e 18742 && cu->language == language_fortran)
48fbe735 18743 main_subprogram = 1;
68511cec 18744 break;
481860b3
GB
18745 case DW_AT_inline:
18746 if (DW_UNSND (&attr) == DW_INL_inlined
18747 || DW_UNSND (&attr) == DW_INL_declared_inlined)
48fbe735 18748 may_be_inlined = 1;
481860b3 18749 break;
95554aad
TT
18750
18751 case DW_AT_import:
48fbe735 18752 if (tag == DW_TAG_imported_unit)
36586728 18753 {
48fbe735
YQ
18754 d.sect_off = dwarf2_get_ref_die_offset (&attr);
18755 is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728
TT
18756 || cu->per_cu->is_dwz);
18757 }
95554aad
TT
18758 break;
18759
0c1b455e 18760 case DW_AT_main_subprogram:
48fbe735 18761 main_subprogram = DW_UNSND (&attr);
0c1b455e
TT
18762 break;
18763
05caa1d2
TT
18764 case DW_AT_ranges:
18765 {
18766 /* It would be nice to reuse dwarf2_get_pc_bounds here,
18767 but that requires a full DIE, so instead we just
18768 reimplement it. */
18769 int need_ranges_base = tag != DW_TAG_compile_unit;
18770 unsigned int ranges_offset = (DW_UNSND (&attr)
18771 + (need_ranges_base
18772 ? cu->ranges_base
18773 : 0));
18774
18775 /* Value of the DW_AT_ranges attribute is the offset in the
18776 .debug_ranges section. */
18777 if (dwarf2_ranges_read (ranges_offset, &lowpc, &highpc, cu,
18778 nullptr))
18779 has_pc_info = 1;
18780 }
18781 break;
18782
c906108c
SS
18783 default:
18784 break;
18785 }
18786 }
18787
10d06d82
TT
18788 /* For Ada, if both the name and the linkage name appear, we prefer
18789 the latter. This lets "catch exception" work better, regardless
18790 of the order in which the name and linkage name were emitted.
18791 Really, though, this is just a workaround for the fact that gdb
18792 doesn't store both the name and the linkage name. */
18793 if (cu->language == language_ada && linkage_name != nullptr)
18794 name = linkage_name;
18795
91da1414 18796 if (high_pc_relative)
48fbe735 18797 highpc += lowpc;
91da1414 18798
9373cf26
JK
18799 if (has_low_pc_attr && has_high_pc_attr)
18800 {
18801 /* When using the GNU linker, .gnu.linkonce. sections are used to
18802 eliminate duplicate copies of functions and vtables and such.
18803 The linker will arbitrarily choose one and discard the others.
18804 The AT_*_pc values for such functions refer to local labels in
18805 these sections. If the section from that file was discarded, the
18806 labels are not in the output, so the relocs get a value of 0.
18807 If this is a discarded function, mark the pc bounds as invalid,
18808 so that GDB will ignore it. */
48fbe735 18809 if (lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
9373cf26 18810 {
48fbe735 18811 struct objfile *objfile = dwarf2_per_objfile->objfile;
bb5ed363 18812 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26 18813
b98664d3 18814 complaint (_("DW_AT_low_pc %s is zero "
9d8780f0 18815 "for DIE at %s [in module %s]"),
48fbe735
YQ
18816 paddress (gdbarch, lowpc),
18817 sect_offset_str (sect_off),
9d8780f0 18818 objfile_name (objfile));
9373cf26
JK
18819 }
18820 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
48fbe735 18821 else if (lowpc >= highpc)
9373cf26 18822 {
48fbe735 18823 struct objfile *objfile = dwarf2_per_objfile->objfile;
bb5ed363 18824 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26 18825
b98664d3 18826 complaint (_("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
9d8780f0 18827 "for DIE at %s [in module %s]"),
48fbe735
YQ
18828 paddress (gdbarch, lowpc),
18829 paddress (gdbarch, highpc),
18830 sect_offset_str (sect_off),
9c541725 18831 objfile_name (objfile));
9373cf26
JK
18832 }
18833 else
48fbe735 18834 has_pc_info = 1;
9373cf26 18835 }
85cbf3d3 18836
c906108c
SS
18837 return info_ptr;
18838}
18839
72bf9492
DJ
18840/* Find a cached partial DIE at OFFSET in CU. */
18841
d590ff25
YQ
18842struct partial_die_info *
18843dwarf2_cu::find_partial_die (sect_offset sect_off)
72bf9492
DJ
18844{
18845 struct partial_die_info *lookup_die = NULL;
6f06d47b 18846 struct partial_die_info part_die (sect_off);
72bf9492 18847
9a3c8263 18848 lookup_die = ((struct partial_die_info *)
d590ff25 18849 htab_find_with_hash (partial_dies, &part_die,
9c541725 18850 to_underlying (sect_off)));
72bf9492 18851
72bf9492
DJ
18852 return lookup_die;
18853}
18854
348e048f
DE
18855/* Find a partial DIE at OFFSET, which may or may not be in CU,
18856 except in the case of .debug_types DIEs which do not reference
18857 outside their CU (they do however referencing other types via
55f1336d 18858 DW_FORM_ref_sig8). */
72bf9492 18859
122cf0f2 18860static const struct cu_partial_die_info
9c541725 18861find_partial_die (sect_offset sect_off, int offset_in_dwz, struct dwarf2_cu *cu)
72bf9492 18862{
518817b3
SM
18863 struct dwarf2_per_objfile *dwarf2_per_objfile
18864 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 18865 struct objfile *objfile = dwarf2_per_objfile->objfile;
5afb4e99
DJ
18866 struct dwarf2_per_cu_data *per_cu = NULL;
18867 struct partial_die_info *pd = NULL;
72bf9492 18868
36586728 18869 if (offset_in_dwz == cu->per_cu->is_dwz
9c541725 18870 && offset_in_cu_p (&cu->header, sect_off))
5afb4e99 18871 {
d590ff25 18872 pd = cu->find_partial_die (sect_off);
5afb4e99 18873 if (pd != NULL)
fb816e8b 18874 return { cu, pd };
0d99eb77
DE
18875 /* We missed recording what we needed.
18876 Load all dies and try again. */
18877 per_cu = cu->per_cu;
5afb4e99 18878 }
0d99eb77
DE
18879 else
18880 {
18881 /* TUs don't reference other CUs/TUs (except via type signatures). */
3019eac3 18882 if (cu->per_cu->is_debug_types)
0d99eb77 18883 {
9d8780f0
SM
18884 error (_("Dwarf Error: Type Unit at offset %s contains"
18885 " external reference to offset %s [in module %s].\n"),
18886 sect_offset_str (cu->header.sect_off), sect_offset_str (sect_off),
0d99eb77
DE
18887 bfd_get_filename (objfile->obfd));
18888 }
9c541725 18889 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 18890 dwarf2_per_objfile);
72bf9492 18891
0d99eb77
DE
18892 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
18893 load_partial_comp_unit (per_cu);
ae038cb0 18894
0d99eb77 18895 per_cu->cu->last_used = 0;
d590ff25 18896 pd = per_cu->cu->find_partial_die (sect_off);
0d99eb77 18897 }
5afb4e99 18898
dee91e82
DE
18899 /* If we didn't find it, and not all dies have been loaded,
18900 load them all and try again. */
18901
5afb4e99
DJ
18902 if (pd == NULL && per_cu->load_all_dies == 0)
18903 {
5afb4e99 18904 per_cu->load_all_dies = 1;
fd820528
DE
18905
18906 /* This is nasty. When we reread the DIEs, somewhere up the call chain
18907 THIS_CU->cu may already be in use. So we can't just free it and
18908 replace its DIEs with the ones we read in. Instead, we leave those
18909 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
18910 and clobber THIS_CU->cu->partial_dies with the hash table for the new
18911 set. */
dee91e82 18912 load_partial_comp_unit (per_cu);
5afb4e99 18913
d590ff25 18914 pd = per_cu->cu->find_partial_die (sect_off);
5afb4e99
DJ
18915 }
18916
18917 if (pd == NULL)
18918 internal_error (__FILE__, __LINE__,
9d8780f0 18919 _("could not find partial DIE %s "
3e43a32a 18920 "in cache [from module %s]\n"),
9d8780f0 18921 sect_offset_str (sect_off), bfd_get_filename (objfile->obfd));
fb816e8b 18922 return { per_cu->cu, pd };
72bf9492
DJ
18923}
18924
abc72ce4
DE
18925/* See if we can figure out if the class lives in a namespace. We do
18926 this by looking for a member function; its demangled name will
18927 contain namespace info, if there is any. */
18928
18929static void
18930guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
18931 struct dwarf2_cu *cu)
18932{
18933 /* NOTE: carlton/2003-10-07: Getting the info this way changes
18934 what template types look like, because the demangler
18935 frequently doesn't give the same name as the debug info. We
18936 could fix this by only using the demangled name to get the
18937 prefix (but see comment in read_structure_type). */
18938
18939 struct partial_die_info *real_pdi;
18940 struct partial_die_info *child_pdi;
18941
18942 /* If this DIE (this DIE's specification, if any) has a parent, then
18943 we should not do this. We'll prepend the parent's fully qualified
18944 name when we create the partial symbol. */
18945
18946 real_pdi = struct_pdi;
18947 while (real_pdi->has_specification)
fb816e8b 18948 {
122cf0f2
AB
18949 auto res = find_partial_die (real_pdi->spec_offset,
18950 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
18951 real_pdi = res.pdi;
18952 cu = res.cu;
18953 }
abc72ce4
DE
18954
18955 if (real_pdi->die_parent != NULL)
18956 return;
18957
18958 for (child_pdi = struct_pdi->die_child;
18959 child_pdi != NULL;
18960 child_pdi = child_pdi->die_sibling)
18961 {
18962 if (child_pdi->tag == DW_TAG_subprogram
18963 && child_pdi->linkage_name != NULL)
18964 {
18965 char *actual_class_name
18966 = language_class_name_from_physname (cu->language_defn,
18967 child_pdi->linkage_name);
18968 if (actual_class_name != NULL)
18969 {
518817b3 18970 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
abc72ce4 18971 struct_pdi->name
224c3ddb 18972 = ((const char *)
e3b94546 18973 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb
SM
18974 actual_class_name,
18975 strlen (actual_class_name)));
abc72ce4
DE
18976 xfree (actual_class_name);
18977 }
18978 break;
18979 }
18980 }
18981}
18982
52356b79
YQ
18983void
18984partial_die_info::fixup (struct dwarf2_cu *cu)
72bf9492 18985{
abc72ce4
DE
18986 /* Once we've fixed up a die, there's no point in doing so again.
18987 This also avoids a memory leak if we were to call
18988 guess_partial_die_structure_name multiple times. */
52356b79 18989 if (fixup_called)
abc72ce4
DE
18990 return;
18991
72bf9492
DJ
18992 /* If we found a reference attribute and the DIE has no name, try
18993 to find a name in the referred to DIE. */
18994
52356b79 18995 if (name == NULL && has_specification)
72bf9492
DJ
18996 {
18997 struct partial_die_info *spec_die;
72bf9492 18998
122cf0f2 18999 auto res = find_partial_die (spec_offset, spec_is_dwz, cu);
fb816e8b
TV
19000 spec_die = res.pdi;
19001 cu = res.cu;
72bf9492 19002
52356b79 19003 spec_die->fixup (cu);
72bf9492
DJ
19004
19005 if (spec_die->name)
19006 {
52356b79 19007 name = spec_die->name;
72bf9492
DJ
19008
19009 /* Copy DW_AT_external attribute if it is set. */
19010 if (spec_die->is_external)
52356b79 19011 is_external = spec_die->is_external;
72bf9492
DJ
19012 }
19013 }
19014
19015 /* Set default names for some unnamed DIEs. */
72bf9492 19016
52356b79
YQ
19017 if (name == NULL && tag == DW_TAG_namespace)
19018 name = CP_ANONYMOUS_NAMESPACE_STR;
72bf9492 19019
abc72ce4
DE
19020 /* If there is no parent die to provide a namespace, and there are
19021 children, see if we can determine the namespace from their linkage
122d1940 19022 name. */
abc72ce4 19023 if (cu->language == language_cplus
fd5866f6 19024 && !cu->per_cu->dwarf2_per_objfile->types.empty ()
52356b79
YQ
19025 && die_parent == NULL
19026 && has_children
19027 && (tag == DW_TAG_class_type
19028 || tag == DW_TAG_structure_type
19029 || tag == DW_TAG_union_type))
19030 guess_partial_die_structure_name (this, cu);
abc72ce4 19031
53832f31
TT
19032 /* GCC might emit a nameless struct or union that has a linkage
19033 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
52356b79
YQ
19034 if (name == NULL
19035 && (tag == DW_TAG_class_type
19036 || tag == DW_TAG_interface_type
19037 || tag == DW_TAG_structure_type
19038 || tag == DW_TAG_union_type)
19039 && linkage_name != NULL)
53832f31
TT
19040 {
19041 char *demangled;
19042
52356b79 19043 demangled = gdb_demangle (linkage_name, DMGL_TYPES);
53832f31
TT
19044 if (demangled)
19045 {
96408a79
SA
19046 const char *base;
19047
19048 /* Strip any leading namespaces/classes, keep only the base name.
19049 DW_AT_name for named DIEs does not contain the prefixes. */
19050 base = strrchr (demangled, ':');
19051 if (base && base > demangled && base[-1] == ':')
19052 base++;
19053 else
19054 base = demangled;
19055
518817b3 19056 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
52356b79 19057 name
224c3ddb 19058 = ((const char *)
e3b94546 19059 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb 19060 base, strlen (base)));
53832f31
TT
19061 xfree (demangled);
19062 }
19063 }
19064
52356b79 19065 fixup_called = 1;
72bf9492
DJ
19066}
19067
a8329558 19068/* Read an attribute value described by an attribute form. */
c906108c 19069
d521ce57 19070static const gdb_byte *
dee91e82
DE
19071read_attribute_value (const struct die_reader_specs *reader,
19072 struct attribute *attr, unsigned form,
43988095 19073 LONGEST implicit_const, const gdb_byte *info_ptr)
c906108c 19074{
dee91e82 19075 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
19076 struct dwarf2_per_objfile *dwarf2_per_objfile
19077 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 19078 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 19079 struct gdbarch *gdbarch = get_objfile_arch (objfile);
dee91e82 19080 bfd *abfd = reader->abfd;
e7c27a73 19081 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19082 unsigned int bytes_read;
19083 struct dwarf_block *blk;
19084
aead7601 19085 attr->form = (enum dwarf_form) form;
a8329558 19086 switch (form)
c906108c 19087 {
c906108c 19088 case DW_FORM_ref_addr:
ae411497 19089 if (cu->header.version == 2)
4568ecf9 19090 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
ae411497 19091 else
4568ecf9
DE
19092 DW_UNSND (attr) = read_offset (abfd, info_ptr,
19093 &cu->header, &bytes_read);
ae411497
TT
19094 info_ptr += bytes_read;
19095 break;
36586728
TT
19096 case DW_FORM_GNU_ref_alt:
19097 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
19098 info_ptr += bytes_read;
19099 break;
ae411497 19100 case DW_FORM_addr:
e7c27a73 19101 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
3e29f34a 19102 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
107d2387 19103 info_ptr += bytes_read;
c906108c
SS
19104 break;
19105 case DW_FORM_block2:
7b5a2f43 19106 blk = dwarf_alloc_block (cu);
c906108c
SS
19107 blk->size = read_2_bytes (abfd, info_ptr);
19108 info_ptr += 2;
19109 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19110 info_ptr += blk->size;
19111 DW_BLOCK (attr) = blk;
19112 break;
19113 case DW_FORM_block4:
7b5a2f43 19114 blk = dwarf_alloc_block (cu);
c906108c
SS
19115 blk->size = read_4_bytes (abfd, info_ptr);
19116 info_ptr += 4;
19117 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19118 info_ptr += blk->size;
19119 DW_BLOCK (attr) = blk;
19120 break;
19121 case DW_FORM_data2:
19122 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
19123 info_ptr += 2;
19124 break;
19125 case DW_FORM_data4:
19126 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
19127 info_ptr += 4;
19128 break;
19129 case DW_FORM_data8:
19130 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
19131 info_ptr += 8;
19132 break;
0224619f
JK
19133 case DW_FORM_data16:
19134 blk = dwarf_alloc_block (cu);
19135 blk->size = 16;
19136 blk->data = read_n_bytes (abfd, info_ptr, 16);
19137 info_ptr += 16;
19138 DW_BLOCK (attr) = blk;
19139 break;
2dc7f7b3
TT
19140 case DW_FORM_sec_offset:
19141 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
19142 info_ptr += bytes_read;
19143 break;
c906108c 19144 case DW_FORM_string:
9b1c24c8 19145 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
8285870a 19146 DW_STRING_IS_CANONICAL (attr) = 0;
c906108c
SS
19147 info_ptr += bytes_read;
19148 break;
4bdf3d34 19149 case DW_FORM_strp:
36586728
TT
19150 if (!cu->per_cu->is_dwz)
19151 {
ed2dc618
SM
19152 DW_STRING (attr) = read_indirect_string (dwarf2_per_objfile,
19153 abfd, info_ptr, cu_header,
36586728
TT
19154 &bytes_read);
19155 DW_STRING_IS_CANONICAL (attr) = 0;
19156 info_ptr += bytes_read;
19157 break;
19158 }
19159 /* FALLTHROUGH */
43988095
JK
19160 case DW_FORM_line_strp:
19161 if (!cu->per_cu->is_dwz)
19162 {
ed2dc618
SM
19163 DW_STRING (attr) = read_indirect_line_string (dwarf2_per_objfile,
19164 abfd, info_ptr,
43988095
JK
19165 cu_header, &bytes_read);
19166 DW_STRING_IS_CANONICAL (attr) = 0;
19167 info_ptr += bytes_read;
19168 break;
19169 }
19170 /* FALLTHROUGH */
36586728
TT
19171 case DW_FORM_GNU_strp_alt:
19172 {
ed2dc618 19173 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728
TT
19174 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
19175 &bytes_read);
19176
ed2dc618
SM
19177 DW_STRING (attr) = read_indirect_string_from_dwz (objfile,
19178 dwz, str_offset);
36586728
TT
19179 DW_STRING_IS_CANONICAL (attr) = 0;
19180 info_ptr += bytes_read;
19181 }
4bdf3d34 19182 break;
2dc7f7b3 19183 case DW_FORM_exprloc:
c906108c 19184 case DW_FORM_block:
7b5a2f43 19185 blk = dwarf_alloc_block (cu);
c906108c
SS
19186 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19187 info_ptr += bytes_read;
19188 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19189 info_ptr += blk->size;
19190 DW_BLOCK (attr) = blk;
19191 break;
19192 case DW_FORM_block1:
7b5a2f43 19193 blk = dwarf_alloc_block (cu);
c906108c
SS
19194 blk->size = read_1_byte (abfd, info_ptr);
19195 info_ptr += 1;
19196 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19197 info_ptr += blk->size;
19198 DW_BLOCK (attr) = blk;
19199 break;
19200 case DW_FORM_data1:
19201 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19202 info_ptr += 1;
19203 break;
19204 case DW_FORM_flag:
19205 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19206 info_ptr += 1;
19207 break;
2dc7f7b3
TT
19208 case DW_FORM_flag_present:
19209 DW_UNSND (attr) = 1;
19210 break;
c906108c
SS
19211 case DW_FORM_sdata:
19212 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19213 info_ptr += bytes_read;
19214 break;
19215 case DW_FORM_udata:
19216 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19217 info_ptr += bytes_read;
19218 break;
19219 case DW_FORM_ref1:
9c541725 19220 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19221 + read_1_byte (abfd, info_ptr));
c906108c
SS
19222 info_ptr += 1;
19223 break;
19224 case DW_FORM_ref2:
9c541725 19225 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19226 + read_2_bytes (abfd, info_ptr));
c906108c
SS
19227 info_ptr += 2;
19228 break;
19229 case DW_FORM_ref4:
9c541725 19230 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19231 + read_4_bytes (abfd, info_ptr));
c906108c
SS
19232 info_ptr += 4;
19233 break;
613e1657 19234 case DW_FORM_ref8:
9c541725 19235 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19236 + read_8_bytes (abfd, info_ptr));
613e1657
KB
19237 info_ptr += 8;
19238 break;
55f1336d 19239 case DW_FORM_ref_sig8:
ac9ec31b 19240 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
348e048f
DE
19241 info_ptr += 8;
19242 break;
c906108c 19243 case DW_FORM_ref_udata:
9c541725 19244 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19245 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
19246 info_ptr += bytes_read;
19247 break;
c906108c 19248 case DW_FORM_indirect:
a8329558
KW
19249 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19250 info_ptr += bytes_read;
43988095
JK
19251 if (form == DW_FORM_implicit_const)
19252 {
19253 implicit_const = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19254 info_ptr += bytes_read;
19255 }
19256 info_ptr = read_attribute_value (reader, attr, form, implicit_const,
19257 info_ptr);
19258 break;
19259 case DW_FORM_implicit_const:
19260 DW_SND (attr) = implicit_const;
a8329558 19261 break;
336d760d 19262 case DW_FORM_addrx:
3019eac3
DE
19263 case DW_FORM_GNU_addr_index:
19264 if (reader->dwo_file == NULL)
19265 {
19266 /* For now flag a hard error.
19267 Later we can turn this into a complaint. */
19268 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19269 dwarf_form_name (form),
19270 bfd_get_filename (abfd));
19271 }
19272 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
19273 info_ptr += bytes_read;
19274 break;
cf532bd1 19275 case DW_FORM_strx:
15f18d14
AT
19276 case DW_FORM_strx1:
19277 case DW_FORM_strx2:
19278 case DW_FORM_strx3:
19279 case DW_FORM_strx4:
3019eac3
DE
19280 case DW_FORM_GNU_str_index:
19281 if (reader->dwo_file == NULL)
19282 {
19283 /* For now flag a hard error.
19284 Later we can turn this into a complaint if warranted. */
19285 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19286 dwarf_form_name (form),
19287 bfd_get_filename (abfd));
19288 }
19289 {
15f18d14
AT
19290 ULONGEST str_index;
19291 if (form == DW_FORM_strx1)
19292 {
19293 str_index = read_1_byte (abfd, info_ptr);
19294 info_ptr += 1;
19295 }
19296 else if (form == DW_FORM_strx2)
19297 {
19298 str_index = read_2_bytes (abfd, info_ptr);
19299 info_ptr += 2;
19300 }
19301 else if (form == DW_FORM_strx3)
19302 {
19303 str_index = read_3_bytes (abfd, info_ptr);
19304 info_ptr += 3;
19305 }
19306 else if (form == DW_FORM_strx4)
19307 {
19308 str_index = read_4_bytes (abfd, info_ptr);
19309 info_ptr += 4;
19310 }
19311 else
19312 {
19313 str_index = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19314 info_ptr += bytes_read;
19315 }
342587c4 19316 DW_STRING (attr) = read_str_index (reader, str_index);
3019eac3 19317 DW_STRING_IS_CANONICAL (attr) = 0;
3019eac3
DE
19318 }
19319 break;
c906108c 19320 default:
8a3fe4f8 19321 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
19322 dwarf_form_name (form),
19323 bfd_get_filename (abfd));
c906108c 19324 }
28e94949 19325
36586728 19326 /* Super hack. */
7771576e 19327 if (cu->per_cu->is_dwz && attr_form_is_ref (attr))
36586728
TT
19328 attr->form = DW_FORM_GNU_ref_alt;
19329
28e94949
JB
19330 /* We have seen instances where the compiler tried to emit a byte
19331 size attribute of -1 which ended up being encoded as an unsigned
19332 0xffffffff. Although 0xffffffff is technically a valid size value,
19333 an object of this size seems pretty unlikely so we can relatively
19334 safely treat these cases as if the size attribute was invalid and
19335 treat them as zero by default. */
19336 if (attr->name == DW_AT_byte_size
19337 && form == DW_FORM_data4
19338 && DW_UNSND (attr) >= 0xffffffff)
01c66ae6
JB
19339 {
19340 complaint
b98664d3 19341 (_("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
43bbcdc2 19342 hex_string (DW_UNSND (attr)));
01c66ae6
JB
19343 DW_UNSND (attr) = 0;
19344 }
28e94949 19345
c906108c
SS
19346 return info_ptr;
19347}
19348
a8329558
KW
19349/* Read an attribute described by an abbreviated attribute. */
19350
d521ce57 19351static const gdb_byte *
dee91e82
DE
19352read_attribute (const struct die_reader_specs *reader,
19353 struct attribute *attr, struct attr_abbrev *abbrev,
d521ce57 19354 const gdb_byte *info_ptr)
a8329558
KW
19355{
19356 attr->name = abbrev->name;
43988095
JK
19357 return read_attribute_value (reader, attr, abbrev->form,
19358 abbrev->implicit_const, info_ptr);
a8329558
KW
19359}
19360
0963b4bd 19361/* Read dwarf information from a buffer. */
c906108c
SS
19362
19363static unsigned int
a1855c1d 19364read_1_byte (bfd *abfd, const gdb_byte *buf)
c906108c 19365{
fe1b8b76 19366 return bfd_get_8 (abfd, buf);
c906108c
SS
19367}
19368
19369static int
a1855c1d 19370read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
c906108c 19371{
fe1b8b76 19372 return bfd_get_signed_8 (abfd, buf);
c906108c
SS
19373}
19374
19375static unsigned int
a1855c1d 19376read_2_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19377{
fe1b8b76 19378 return bfd_get_16 (abfd, buf);
c906108c
SS
19379}
19380
21ae7a4d 19381static int
a1855c1d 19382read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
19383{
19384 return bfd_get_signed_16 (abfd, buf);
19385}
19386
15f18d14
AT
19387static unsigned int
19388read_3_bytes (bfd *abfd, const gdb_byte *buf)
19389{
19390 unsigned int result = 0;
19391 for (int i = 0; i < 3; ++i)
19392 {
19393 unsigned char byte = bfd_get_8 (abfd, buf);
19394 buf++;
19395 result |= ((unsigned int) byte << (i * 8));
19396 }
19397 return result;
19398}
19399
c906108c 19400static unsigned int
a1855c1d 19401read_4_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19402{
fe1b8b76 19403 return bfd_get_32 (abfd, buf);
c906108c
SS
19404}
19405
21ae7a4d 19406static int
a1855c1d 19407read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
19408{
19409 return bfd_get_signed_32 (abfd, buf);
19410}
19411
93311388 19412static ULONGEST
a1855c1d 19413read_8_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19414{
fe1b8b76 19415 return bfd_get_64 (abfd, buf);
c906108c
SS
19416}
19417
19418static CORE_ADDR
d521ce57 19419read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
891d2f0b 19420 unsigned int *bytes_read)
c906108c 19421{
e7c27a73 19422 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19423 CORE_ADDR retval = 0;
19424
107d2387 19425 if (cu_header->signed_addr_p)
c906108c 19426 {
107d2387
AC
19427 switch (cu_header->addr_size)
19428 {
19429 case 2:
fe1b8b76 19430 retval = bfd_get_signed_16 (abfd, buf);
107d2387
AC
19431 break;
19432 case 4:
fe1b8b76 19433 retval = bfd_get_signed_32 (abfd, buf);
107d2387
AC
19434 break;
19435 case 8:
fe1b8b76 19436 retval = bfd_get_signed_64 (abfd, buf);
107d2387
AC
19437 break;
19438 default:
8e65ff28 19439 internal_error (__FILE__, __LINE__,
e2e0b3e5 19440 _("read_address: bad switch, signed [in module %s]"),
659b0389 19441 bfd_get_filename (abfd));
107d2387
AC
19442 }
19443 }
19444 else
19445 {
19446 switch (cu_header->addr_size)
19447 {
19448 case 2:
fe1b8b76 19449 retval = bfd_get_16 (abfd, buf);
107d2387
AC
19450 break;
19451 case 4:
fe1b8b76 19452 retval = bfd_get_32 (abfd, buf);
107d2387
AC
19453 break;
19454 case 8:
fe1b8b76 19455 retval = bfd_get_64 (abfd, buf);
107d2387
AC
19456 break;
19457 default:
8e65ff28 19458 internal_error (__FILE__, __LINE__,
a73c6dcd
MS
19459 _("read_address: bad switch, "
19460 "unsigned [in module %s]"),
659b0389 19461 bfd_get_filename (abfd));
107d2387 19462 }
c906108c 19463 }
64367e0a 19464
107d2387
AC
19465 *bytes_read = cu_header->addr_size;
19466 return retval;
c906108c
SS
19467}
19468
f7ef9339 19469/* Read the initial length from a section. The (draft) DWARF 3
613e1657
KB
19470 specification allows the initial length to take up either 4 bytes
19471 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
19472 bytes describe the length and all offsets will be 8 bytes in length
19473 instead of 4.
19474
f7ef9339
KB
19475 An older, non-standard 64-bit format is also handled by this
19476 function. The older format in question stores the initial length
19477 as an 8-byte quantity without an escape value. Lengths greater
19478 than 2^32 aren't very common which means that the initial 4 bytes
19479 is almost always zero. Since a length value of zero doesn't make
19480 sense for the 32-bit format, this initial zero can be considered to
19481 be an escape value which indicates the presence of the older 64-bit
19482 format. As written, the code can't detect (old format) lengths
917c78fc
MK
19483 greater than 4GB. If it becomes necessary to handle lengths
19484 somewhat larger than 4GB, we could allow other small values (such
19485 as the non-sensical values of 1, 2, and 3) to also be used as
19486 escape values indicating the presence of the old format.
f7ef9339 19487
917c78fc
MK
19488 The value returned via bytes_read should be used to increment the
19489 relevant pointer after calling read_initial_length().
c764a876 19490
613e1657
KB
19491 [ Note: read_initial_length() and read_offset() are based on the
19492 document entitled "DWARF Debugging Information Format", revision
f7ef9339 19493 3, draft 8, dated November 19, 2001. This document was obtained
613e1657
KB
19494 from:
19495
f7ef9339 19496 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
6e70227d 19497
613e1657
KB
19498 This document is only a draft and is subject to change. (So beware.)
19499
f7ef9339 19500 Details regarding the older, non-standard 64-bit format were
917c78fc
MK
19501 determined empirically by examining 64-bit ELF files produced by
19502 the SGI toolchain on an IRIX 6.5 machine.
f7ef9339
KB
19503
19504 - Kevin, July 16, 2002
613e1657
KB
19505 ] */
19506
19507static LONGEST
d521ce57 19508read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
613e1657 19509{
fe1b8b76 19510 LONGEST length = bfd_get_32 (abfd, buf);
613e1657 19511
dd373385 19512 if (length == 0xffffffff)
613e1657 19513 {
fe1b8b76 19514 length = bfd_get_64 (abfd, buf + 4);
613e1657 19515 *bytes_read = 12;
613e1657 19516 }
dd373385 19517 else if (length == 0)
f7ef9339 19518 {
dd373385 19519 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
fe1b8b76 19520 length = bfd_get_64 (abfd, buf);
f7ef9339 19521 *bytes_read = 8;
f7ef9339 19522 }
613e1657
KB
19523 else
19524 {
19525 *bytes_read = 4;
613e1657
KB
19526 }
19527
c764a876
DE
19528 return length;
19529}
dd373385 19530
c764a876
DE
19531/* Cover function for read_initial_length.
19532 Returns the length of the object at BUF, and stores the size of the
19533 initial length in *BYTES_READ and stores the size that offsets will be in
19534 *OFFSET_SIZE.
19535 If the initial length size is not equivalent to that specified in
19536 CU_HEADER then issue a complaint.
19537 This is useful when reading non-comp-unit headers. */
dd373385 19538
c764a876 19539static LONGEST
d521ce57 19540read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
c764a876
DE
19541 const struct comp_unit_head *cu_header,
19542 unsigned int *bytes_read,
19543 unsigned int *offset_size)
19544{
19545 LONGEST length = read_initial_length (abfd, buf, bytes_read);
19546
19547 gdb_assert (cu_header->initial_length_size == 4
19548 || cu_header->initial_length_size == 8
19549 || cu_header->initial_length_size == 12);
19550
19551 if (cu_header->initial_length_size != *bytes_read)
b98664d3 19552 complaint (_("intermixed 32-bit and 64-bit DWARF sections"));
dd373385 19553
c764a876 19554 *offset_size = (*bytes_read == 4) ? 4 : 8;
dd373385 19555 return length;
613e1657
KB
19556}
19557
19558/* Read an offset from the data stream. The size of the offset is
917c78fc 19559 given by cu_header->offset_size. */
613e1657
KB
19560
19561static LONGEST
d521ce57
TT
19562read_offset (bfd *abfd, const gdb_byte *buf,
19563 const struct comp_unit_head *cu_header,
891d2f0b 19564 unsigned int *bytes_read)
c764a876
DE
19565{
19566 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
9a619af0 19567
c764a876
DE
19568 *bytes_read = cu_header->offset_size;
19569 return offset;
19570}
19571
19572/* Read an offset from the data stream. */
19573
19574static LONGEST
d521ce57 19575read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
613e1657
KB
19576{
19577 LONGEST retval = 0;
19578
c764a876 19579 switch (offset_size)
613e1657
KB
19580 {
19581 case 4:
fe1b8b76 19582 retval = bfd_get_32 (abfd, buf);
613e1657
KB
19583 break;
19584 case 8:
fe1b8b76 19585 retval = bfd_get_64 (abfd, buf);
613e1657
KB
19586 break;
19587 default:
8e65ff28 19588 internal_error (__FILE__, __LINE__,
c764a876 19589 _("read_offset_1: bad switch [in module %s]"),
659b0389 19590 bfd_get_filename (abfd));
613e1657
KB
19591 }
19592
917c78fc 19593 return retval;
613e1657
KB
19594}
19595
d521ce57
TT
19596static const gdb_byte *
19597read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
c906108c
SS
19598{
19599 /* If the size of a host char is 8 bits, we can return a pointer
19600 to the buffer, otherwise we have to copy the data to a buffer
19601 allocated on the temporary obstack. */
4bdf3d34 19602 gdb_assert (HOST_CHAR_BIT == 8);
c906108c 19603 return buf;
c906108c
SS
19604}
19605
d521ce57
TT
19606static const char *
19607read_direct_string (bfd *abfd, const gdb_byte *buf,
19608 unsigned int *bytes_read_ptr)
c906108c
SS
19609{
19610 /* If the size of a host char is 8 bits, we can return a pointer
19611 to the string, otherwise we have to copy the string to a buffer
19612 allocated on the temporary obstack. */
4bdf3d34 19613 gdb_assert (HOST_CHAR_BIT == 8);
c906108c
SS
19614 if (*buf == '\0')
19615 {
19616 *bytes_read_ptr = 1;
19617 return NULL;
19618 }
d521ce57
TT
19619 *bytes_read_ptr = strlen ((const char *) buf) + 1;
19620 return (const char *) buf;
4bdf3d34
JJ
19621}
19622
43988095
JK
19623/* Return pointer to string at section SECT offset STR_OFFSET with error
19624 reporting strings FORM_NAME and SECT_NAME. */
19625
d521ce57 19626static const char *
ed2dc618
SM
19627read_indirect_string_at_offset_from (struct objfile *objfile,
19628 bfd *abfd, LONGEST str_offset,
43988095
JK
19629 struct dwarf2_section_info *sect,
19630 const char *form_name,
19631 const char *sect_name)
19632{
ed2dc618 19633 dwarf2_read_section (objfile, sect);
43988095
JK
19634 if (sect->buffer == NULL)
19635 error (_("%s used without %s section [in module %s]"),
19636 form_name, sect_name, bfd_get_filename (abfd));
19637 if (str_offset >= sect->size)
19638 error (_("%s pointing outside of %s section [in module %s]"),
19639 form_name, sect_name, bfd_get_filename (abfd));
4bdf3d34 19640 gdb_assert (HOST_CHAR_BIT == 8);
43988095 19641 if (sect->buffer[str_offset] == '\0')
4bdf3d34 19642 return NULL;
43988095
JK
19643 return (const char *) (sect->buffer + str_offset);
19644}
19645
19646/* Return pointer to string at .debug_str offset STR_OFFSET. */
19647
19648static const char *
ed2dc618
SM
19649read_indirect_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19650 bfd *abfd, LONGEST str_offset)
43988095 19651{
ed2dc618
SM
19652 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19653 abfd, str_offset,
43988095
JK
19654 &dwarf2_per_objfile->str,
19655 "DW_FORM_strp", ".debug_str");
19656}
19657
19658/* Return pointer to string at .debug_line_str offset STR_OFFSET. */
19659
19660static const char *
ed2dc618
SM
19661read_indirect_line_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19662 bfd *abfd, LONGEST str_offset)
43988095 19663{
ed2dc618
SM
19664 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19665 abfd, str_offset,
43988095
JK
19666 &dwarf2_per_objfile->line_str,
19667 "DW_FORM_line_strp",
19668 ".debug_line_str");
c906108c
SS
19669}
19670
36586728
TT
19671/* Read a string at offset STR_OFFSET in the .debug_str section from
19672 the .dwz file DWZ. Throw an error if the offset is too large. If
19673 the string consists of a single NUL byte, return NULL; otherwise
19674 return a pointer to the string. */
19675
d521ce57 19676static const char *
ed2dc618
SM
19677read_indirect_string_from_dwz (struct objfile *objfile, struct dwz_file *dwz,
19678 LONGEST str_offset)
36586728 19679{
ed2dc618 19680 dwarf2_read_section (objfile, &dwz->str);
36586728
TT
19681
19682 if (dwz->str.buffer == NULL)
19683 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
19684 "section [in module %s]"),
19685 bfd_get_filename (dwz->dwz_bfd));
19686 if (str_offset >= dwz->str.size)
19687 error (_("DW_FORM_GNU_strp_alt pointing outside of "
19688 ".debug_str section [in module %s]"),
19689 bfd_get_filename (dwz->dwz_bfd));
19690 gdb_assert (HOST_CHAR_BIT == 8);
19691 if (dwz->str.buffer[str_offset] == '\0')
19692 return NULL;
d521ce57 19693 return (const char *) (dwz->str.buffer + str_offset);
36586728
TT
19694}
19695
43988095
JK
19696/* Return pointer to string at .debug_str offset as read from BUF.
19697 BUF is assumed to be in a compilation unit described by CU_HEADER.
19698 Return *BYTES_READ_PTR count of bytes read from BUF. */
19699
d521ce57 19700static const char *
ed2dc618
SM
19701read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
19702 const gdb_byte *buf,
cf2c3c16
TT
19703 const struct comp_unit_head *cu_header,
19704 unsigned int *bytes_read_ptr)
19705{
19706 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19707
ed2dc618 19708 return read_indirect_string_at_offset (dwarf2_per_objfile, abfd, str_offset);
cf2c3c16
TT
19709}
19710
43988095
JK
19711/* Return pointer to string at .debug_line_str offset as read from BUF.
19712 BUF is assumed to be in a compilation unit described by CU_HEADER.
19713 Return *BYTES_READ_PTR count of bytes read from BUF. */
19714
19715static const char *
ed2dc618
SM
19716read_indirect_line_string (struct dwarf2_per_objfile *dwarf2_per_objfile,
19717 bfd *abfd, const gdb_byte *buf,
43988095
JK
19718 const struct comp_unit_head *cu_header,
19719 unsigned int *bytes_read_ptr)
19720{
19721 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19722
ed2dc618
SM
19723 return read_indirect_line_string_at_offset (dwarf2_per_objfile, abfd,
19724 str_offset);
43988095
JK
19725}
19726
19727ULONGEST
d521ce57 19728read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
43988095 19729 unsigned int *bytes_read_ptr)
c906108c 19730{
12df843f 19731 ULONGEST result;
ce5d95e1 19732 unsigned int num_read;
870f88f7 19733 int shift;
c906108c
SS
19734 unsigned char byte;
19735
19736 result = 0;
19737 shift = 0;
19738 num_read = 0;
c906108c
SS
19739 while (1)
19740 {
fe1b8b76 19741 byte = bfd_get_8 (abfd, buf);
c906108c
SS
19742 buf++;
19743 num_read++;
12df843f 19744 result |= ((ULONGEST) (byte & 127) << shift);
c906108c
SS
19745 if ((byte & 128) == 0)
19746 {
19747 break;
19748 }
19749 shift += 7;
19750 }
19751 *bytes_read_ptr = num_read;
19752 return result;
19753}
19754
12df843f 19755static LONGEST
d521ce57
TT
19756read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
19757 unsigned int *bytes_read_ptr)
c906108c 19758{
4dd1b460 19759 ULONGEST result;
870f88f7 19760 int shift, num_read;
c906108c
SS
19761 unsigned char byte;
19762
19763 result = 0;
19764 shift = 0;
c906108c 19765 num_read = 0;
c906108c
SS
19766 while (1)
19767 {
fe1b8b76 19768 byte = bfd_get_8 (abfd, buf);
c906108c
SS
19769 buf++;
19770 num_read++;
4dd1b460 19771 result |= ((ULONGEST) (byte & 127) << shift);
c906108c
SS
19772 shift += 7;
19773 if ((byte & 128) == 0)
19774 {
19775 break;
19776 }
19777 }
77e0b926 19778 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
4dd1b460 19779 result |= -(((ULONGEST) 1) << shift);
c906108c
SS
19780 *bytes_read_ptr = num_read;
19781 return result;
19782}
19783
3019eac3
DE
19784/* Given index ADDR_INDEX in .debug_addr, fetch the value.
19785 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
19786 ADDR_SIZE is the size of addresses from the CU header. */
19787
19788static CORE_ADDR
ed2dc618
SM
19789read_addr_index_1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
19790 unsigned int addr_index, ULONGEST addr_base, int addr_size)
3019eac3
DE
19791{
19792 struct objfile *objfile = dwarf2_per_objfile->objfile;
19793 bfd *abfd = objfile->obfd;
19794 const gdb_byte *info_ptr;
19795
19796 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
19797 if (dwarf2_per_objfile->addr.buffer == NULL)
19798 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
4262abfb 19799 objfile_name (objfile));
3019eac3
DE
19800 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
19801 error (_("DW_FORM_addr_index pointing outside of "
19802 ".debug_addr section [in module %s]"),
4262abfb 19803 objfile_name (objfile));
3019eac3
DE
19804 info_ptr = (dwarf2_per_objfile->addr.buffer
19805 + addr_base + addr_index * addr_size);
19806 if (addr_size == 4)
19807 return bfd_get_32 (abfd, info_ptr);
19808 else
19809 return bfd_get_64 (abfd, info_ptr);
19810}
19811
19812/* Given index ADDR_INDEX in .debug_addr, fetch the value. */
19813
19814static CORE_ADDR
19815read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
19816{
518817b3
SM
19817 return read_addr_index_1 (cu->per_cu->dwarf2_per_objfile, addr_index,
19818 cu->addr_base, cu->header.addr_size);
3019eac3
DE
19819}
19820
19821/* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
19822
19823static CORE_ADDR
d521ce57 19824read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
3019eac3
DE
19825 unsigned int *bytes_read)
19826{
518817b3 19827 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
3019eac3
DE
19828 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
19829
19830 return read_addr_index (cu, addr_index);
19831}
19832
19833/* Data structure to pass results from dwarf2_read_addr_index_reader
19834 back to dwarf2_read_addr_index. */
19835
19836struct dwarf2_read_addr_index_data
19837{
19838 ULONGEST addr_base;
19839 int addr_size;
19840};
19841
19842/* die_reader_func for dwarf2_read_addr_index. */
19843
19844static void
19845dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
d521ce57 19846 const gdb_byte *info_ptr,
3019eac3
DE
19847 struct die_info *comp_unit_die,
19848 int has_children,
19849 void *data)
19850{
19851 struct dwarf2_cu *cu = reader->cu;
19852 struct dwarf2_read_addr_index_data *aidata =
19853 (struct dwarf2_read_addr_index_data *) data;
19854
19855 aidata->addr_base = cu->addr_base;
19856 aidata->addr_size = cu->header.addr_size;
19857}
19858
19859/* Given an index in .debug_addr, fetch the value.
19860 NOTE: This can be called during dwarf expression evaluation,
19861 long after the debug information has been read, and thus per_cu->cu
19862 may no longer exist. */
19863
19864CORE_ADDR
19865dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
19866 unsigned int addr_index)
19867{
ed2dc618 19868 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
3019eac3
DE
19869 struct dwarf2_cu *cu = per_cu->cu;
19870 ULONGEST addr_base;
19871 int addr_size;
19872
3019eac3
DE
19873 /* We need addr_base and addr_size.
19874 If we don't have PER_CU->cu, we have to get it.
19875 Nasty, but the alternative is storing the needed info in PER_CU,
19876 which at this point doesn't seem justified: it's not clear how frequently
19877 it would get used and it would increase the size of every PER_CU.
19878 Entry points like dwarf2_per_cu_addr_size do a similar thing
19879 so we're not in uncharted territory here.
19880 Alas we need to be a bit more complicated as addr_base is contained
19881 in the DIE.
19882
19883 We don't need to read the entire CU(/TU).
19884 We just need the header and top level die.
a1b64ce1 19885
3019eac3 19886 IWBN to use the aging mechanism to let us lazily later discard the CU.
a1b64ce1 19887 For now we skip this optimization. */
3019eac3
DE
19888
19889 if (cu != NULL)
19890 {
19891 addr_base = cu->addr_base;
19892 addr_size = cu->header.addr_size;
19893 }
19894 else
19895 {
19896 struct dwarf2_read_addr_index_data aidata;
19897
a1b64ce1
DE
19898 /* Note: We can't use init_cutu_and_read_dies_simple here,
19899 we need addr_base. */
58f0c718 19900 init_cutu_and_read_dies (per_cu, NULL, 0, 0, false,
a1b64ce1 19901 dwarf2_read_addr_index_reader, &aidata);
3019eac3
DE
19902 addr_base = aidata.addr_base;
19903 addr_size = aidata.addr_size;
19904 }
19905
ed2dc618
SM
19906 return read_addr_index_1 (dwarf2_per_objfile, addr_index, addr_base,
19907 addr_size);
3019eac3
DE
19908}
19909
cf532bd1 19910/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
57d63ce2 19911 This is only used by the Fission support. */
3019eac3 19912
d521ce57 19913static const char *
342587c4 19914read_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
3019eac3 19915{
ed2dc618 19916 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
19917 struct dwarf2_per_objfile *dwarf2_per_objfile
19918 = cu->per_cu->dwarf2_per_objfile;
3019eac3 19919 struct objfile *objfile = dwarf2_per_objfile->objfile;
c5164cbc 19920 const char *objf_name = objfile_name (objfile);
3019eac3 19921 bfd *abfd = objfile->obfd;
73869dc2
DE
19922 struct dwarf2_section_info *str_section = &reader->dwo_file->sections.str;
19923 struct dwarf2_section_info *str_offsets_section =
19924 &reader->dwo_file->sections.str_offsets;
d521ce57 19925 const gdb_byte *info_ptr;
3019eac3 19926 ULONGEST str_offset;
cf532bd1 19927 static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";
3019eac3 19928
73869dc2
DE
19929 dwarf2_read_section (objfile, str_section);
19930 dwarf2_read_section (objfile, str_offsets_section);
19931 if (str_section->buffer == NULL)
57d63ce2 19932 error (_("%s used without .debug_str.dwo section"
9d8780f0
SM
19933 " in CU at offset %s [in module %s]"),
19934 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19935 if (str_offsets_section->buffer == NULL)
57d63ce2 19936 error (_("%s used without .debug_str_offsets.dwo section"
9d8780f0
SM
19937 " in CU at offset %s [in module %s]"),
19938 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19939 if (str_index * cu->header.offset_size >= str_offsets_section->size)
57d63ce2 19940 error (_("%s pointing outside of .debug_str_offsets.dwo"
9d8780f0
SM
19941 " section in CU at offset %s [in module %s]"),
19942 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19943 info_ptr = (str_offsets_section->buffer
3019eac3
DE
19944 + str_index * cu->header.offset_size);
19945 if (cu->header.offset_size == 4)
19946 str_offset = bfd_get_32 (abfd, info_ptr);
19947 else
19948 str_offset = bfd_get_64 (abfd, info_ptr);
73869dc2 19949 if (str_offset >= str_section->size)
57d63ce2 19950 error (_("Offset from %s pointing outside of"
9d8780f0
SM
19951 " .debug_str.dwo section in CU at offset %s [in module %s]"),
19952 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19953 return (const char *) (str_section->buffer + str_offset);
3019eac3
DE
19954}
19955
3019eac3
DE
19956/* Return the length of an LEB128 number in BUF. */
19957
19958static int
19959leb128_size (const gdb_byte *buf)
19960{
19961 const gdb_byte *begin = buf;
19962 gdb_byte byte;
19963
19964 while (1)
19965 {
19966 byte = *buf++;
19967 if ((byte & 128) == 0)
19968 return buf - begin;
19969 }
19970}
19971
c906108c 19972static void
e142c38c 19973set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
19974{
19975 switch (lang)
19976 {
19977 case DW_LANG_C89:
76bee0cc 19978 case DW_LANG_C99:
0cfd832f 19979 case DW_LANG_C11:
c906108c 19980 case DW_LANG_C:
d1be3247 19981 case DW_LANG_UPC:
e142c38c 19982 cu->language = language_c;
c906108c 19983 break;
9c37b5ae 19984 case DW_LANG_Java:
c906108c 19985 case DW_LANG_C_plus_plus:
0cfd832f
MW
19986 case DW_LANG_C_plus_plus_11:
19987 case DW_LANG_C_plus_plus_14:
e142c38c 19988 cu->language = language_cplus;
c906108c 19989 break;
6aecb9c2
JB
19990 case DW_LANG_D:
19991 cu->language = language_d;
19992 break;
c906108c
SS
19993 case DW_LANG_Fortran77:
19994 case DW_LANG_Fortran90:
b21b22e0 19995 case DW_LANG_Fortran95:
f7de9aab
MW
19996 case DW_LANG_Fortran03:
19997 case DW_LANG_Fortran08:
e142c38c 19998 cu->language = language_fortran;
c906108c 19999 break;
a766d390
DE
20000 case DW_LANG_Go:
20001 cu->language = language_go;
20002 break;
c906108c 20003 case DW_LANG_Mips_Assembler:
e142c38c 20004 cu->language = language_asm;
c906108c
SS
20005 break;
20006 case DW_LANG_Ada83:
8aaf0b47 20007 case DW_LANG_Ada95:
bc5f45f8
JB
20008 cu->language = language_ada;
20009 break;
72019c9c
GM
20010 case DW_LANG_Modula2:
20011 cu->language = language_m2;
20012 break;
fe8e67fd
PM
20013 case DW_LANG_Pascal83:
20014 cu->language = language_pascal;
20015 break;
22566fbd
DJ
20016 case DW_LANG_ObjC:
20017 cu->language = language_objc;
20018 break;
c44af4eb
TT
20019 case DW_LANG_Rust:
20020 case DW_LANG_Rust_old:
20021 cu->language = language_rust;
20022 break;
c906108c
SS
20023 case DW_LANG_Cobol74:
20024 case DW_LANG_Cobol85:
c906108c 20025 default:
e142c38c 20026 cu->language = language_minimal;
c906108c
SS
20027 break;
20028 }
e142c38c 20029 cu->language_defn = language_def (cu->language);
c906108c
SS
20030}
20031
20032/* Return the named attribute or NULL if not there. */
20033
20034static struct attribute *
e142c38c 20035dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c 20036{
a48e046c 20037 for (;;)
c906108c 20038 {
a48e046c
TT
20039 unsigned int i;
20040 struct attribute *spec = NULL;
20041
20042 for (i = 0; i < die->num_attrs; ++i)
20043 {
20044 if (die->attrs[i].name == name)
20045 return &die->attrs[i];
20046 if (die->attrs[i].name == DW_AT_specification
20047 || die->attrs[i].name == DW_AT_abstract_origin)
20048 spec = &die->attrs[i];
20049 }
20050
20051 if (!spec)
20052 break;
c906108c 20053
f2f0e013 20054 die = follow_die_ref (die, spec, &cu);
f2f0e013 20055 }
c5aa993b 20056
c906108c
SS
20057 return NULL;
20058}
20059
348e048f
DE
20060/* Return the named attribute or NULL if not there,
20061 but do not follow DW_AT_specification, etc.
20062 This is for use in contexts where we're reading .debug_types dies.
20063 Following DW_AT_specification, DW_AT_abstract_origin will take us
20064 back up the chain, and we want to go down. */
20065
20066static struct attribute *
45e58e77 20067dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
348e048f
DE
20068{
20069 unsigned int i;
20070
20071 for (i = 0; i < die->num_attrs; ++i)
20072 if (die->attrs[i].name == name)
20073 return &die->attrs[i];
20074
20075 return NULL;
20076}
20077
7d45c7c3
KB
20078/* Return the string associated with a string-typed attribute, or NULL if it
20079 is either not found or is of an incorrect type. */
20080
20081static const char *
20082dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
20083{
20084 struct attribute *attr;
20085 const char *str = NULL;
20086
20087 attr = dwarf2_attr (die, name, cu);
20088
20089 if (attr != NULL)
20090 {
43988095 20091 if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
b3340438 20092 || attr->form == DW_FORM_string
cf532bd1 20093 || attr->form == DW_FORM_strx
b3340438 20094 || attr->form == DW_FORM_GNU_str_index
16eb6b2d 20095 || attr->form == DW_FORM_GNU_strp_alt)
7d45c7c3
KB
20096 str = DW_STRING (attr);
20097 else
b98664d3 20098 complaint (_("string type expected for attribute %s for "
9d8780f0
SM
20099 "DIE at %s in module %s"),
20100 dwarf_attr_name (name), sect_offset_str (die->sect_off),
518817b3 20101 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
7d45c7c3
KB
20102 }
20103
20104 return str;
20105}
20106
05cf31d1
JB
20107/* Return non-zero iff the attribute NAME is defined for the given DIE,
20108 and holds a non-zero value. This function should only be used for
2dc7f7b3 20109 DW_FORM_flag or DW_FORM_flag_present attributes. */
05cf31d1
JB
20110
20111static int
20112dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
20113{
20114 struct attribute *attr = dwarf2_attr (die, name, cu);
20115
20116 return (attr && DW_UNSND (attr));
20117}
20118
3ca72b44 20119static int
e142c38c 20120die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 20121{
05cf31d1
JB
20122 /* A DIE is a declaration if it has a DW_AT_declaration attribute
20123 which value is non-zero. However, we have to be careful with
20124 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
20125 (via dwarf2_flag_true_p) follows this attribute. So we may
20126 end up accidently finding a declaration attribute that belongs
20127 to a different DIE referenced by the specification attribute,
20128 even though the given DIE does not have a declaration attribute. */
20129 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
20130 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
20131}
20132
63d06c5c 20133/* Return the die giving the specification for DIE, if there is
f2f0e013 20134 one. *SPEC_CU is the CU containing DIE on input, and the CU
edb3359d
DJ
20135 containing the return value on output. If there is no
20136 specification, but there is an abstract origin, that is
20137 returned. */
63d06c5c
DC
20138
20139static struct die_info *
f2f0e013 20140die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
63d06c5c 20141{
f2f0e013
DJ
20142 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
20143 *spec_cu);
63d06c5c 20144
edb3359d
DJ
20145 if (spec_attr == NULL)
20146 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
20147
63d06c5c
DC
20148 if (spec_attr == NULL)
20149 return NULL;
20150 else
f2f0e013 20151 return follow_die_ref (die, spec_attr, spec_cu);
63d06c5c 20152}
c906108c 20153
527f3840
JK
20154/* Stub for free_line_header to match void * callback types. */
20155
20156static void
20157free_line_header_voidp (void *arg)
20158{
9a3c8263 20159 struct line_header *lh = (struct line_header *) arg;
527f3840 20160
fff8551c 20161 delete lh;
527f3840
JK
20162}
20163
fff8551c
PA
20164void
20165line_header::add_include_dir (const char *include_dir)
c906108c 20166{
27e0867f 20167 if (dwarf_line_debug >= 2)
fff8551c
PA
20168 fprintf_unfiltered (gdb_stdlog, "Adding dir %zu: %s\n",
20169 include_dirs.size () + 1, include_dir);
27e0867f 20170
fff8551c 20171 include_dirs.push_back (include_dir);
debd256d 20172}
6e70227d 20173
fff8551c
PA
20174void
20175line_header::add_file_name (const char *name,
ecfb656c 20176 dir_index d_index,
fff8551c
PA
20177 unsigned int mod_time,
20178 unsigned int length)
debd256d 20179{
27e0867f
DE
20180 if (dwarf_line_debug >= 2)
20181 fprintf_unfiltered (gdb_stdlog, "Adding file %u: %s\n",
fff8551c 20182 (unsigned) file_names.size () + 1, name);
27e0867f 20183
ecfb656c 20184 file_names.emplace_back (name, d_index, mod_time, length);
debd256d 20185}
6e70227d 20186
83769d0b 20187/* A convenience function to find the proper .debug_line section for a CU. */
36586728
TT
20188
20189static struct dwarf2_section_info *
20190get_debug_line_section (struct dwarf2_cu *cu)
20191{
20192 struct dwarf2_section_info *section;
518817b3
SM
20193 struct dwarf2_per_objfile *dwarf2_per_objfile
20194 = cu->per_cu->dwarf2_per_objfile;
36586728
TT
20195
20196 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
20197 DWO file. */
20198 if (cu->dwo_unit && cu->per_cu->is_debug_types)
20199 section = &cu->dwo_unit->dwo_file->sections.line;
20200 else if (cu->per_cu->is_dwz)
20201 {
ed2dc618 20202 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728
TT
20203
20204 section = &dwz->line;
20205 }
20206 else
20207 section = &dwarf2_per_objfile->line;
20208
20209 return section;
20210}
20211
43988095
JK
20212/* Read directory or file name entry format, starting with byte of
20213 format count entries, ULEB128 pairs of entry formats, ULEB128 of
20214 entries count and the entries themselves in the described entry
20215 format. */
20216
20217static void
ed2dc618
SM
20218read_formatted_entries (struct dwarf2_per_objfile *dwarf2_per_objfile,
20219 bfd *abfd, const gdb_byte **bufp,
43988095
JK
20220 struct line_header *lh,
20221 const struct comp_unit_head *cu_header,
20222 void (*callback) (struct line_header *lh,
20223 const char *name,
ecfb656c 20224 dir_index d_index,
43988095
JK
20225 unsigned int mod_time,
20226 unsigned int length))
20227{
20228 gdb_byte format_count, formati;
20229 ULONGEST data_count, datai;
20230 const gdb_byte *buf = *bufp;
20231 const gdb_byte *format_header_data;
43988095
JK
20232 unsigned int bytes_read;
20233
20234 format_count = read_1_byte (abfd, buf);
20235 buf += 1;
20236 format_header_data = buf;
20237 for (formati = 0; formati < format_count; formati++)
20238 {
20239 read_unsigned_leb128 (abfd, buf, &bytes_read);
20240 buf += bytes_read;
20241 read_unsigned_leb128 (abfd, buf, &bytes_read);
20242 buf += bytes_read;
20243 }
20244
20245 data_count = read_unsigned_leb128 (abfd, buf, &bytes_read);
20246 buf += bytes_read;
20247 for (datai = 0; datai < data_count; datai++)
20248 {
20249 const gdb_byte *format = format_header_data;
20250 struct file_entry fe;
20251
43988095
JK
20252 for (formati = 0; formati < format_count; formati++)
20253 {
ecfb656c 20254 ULONGEST content_type = read_unsigned_leb128 (abfd, format, &bytes_read);
43988095 20255 format += bytes_read;
43988095 20256
ecfb656c 20257 ULONGEST form = read_unsigned_leb128 (abfd, format, &bytes_read);
43988095 20258 format += bytes_read;
ecfb656c
PA
20259
20260 gdb::optional<const char *> string;
20261 gdb::optional<unsigned int> uint;
20262
43988095
JK
20263 switch (form)
20264 {
20265 case DW_FORM_string:
ecfb656c 20266 string.emplace (read_direct_string (abfd, buf, &bytes_read));
43988095
JK
20267 buf += bytes_read;
20268 break;
20269
20270 case DW_FORM_line_strp:
ed2dc618
SM
20271 string.emplace (read_indirect_line_string (dwarf2_per_objfile,
20272 abfd, buf,
ecfb656c
PA
20273 cu_header,
20274 &bytes_read));
43988095
JK
20275 buf += bytes_read;
20276 break;
20277
20278 case DW_FORM_data1:
ecfb656c 20279 uint.emplace (read_1_byte (abfd, buf));
43988095
JK
20280 buf += 1;
20281 break;
20282
20283 case DW_FORM_data2:
ecfb656c 20284 uint.emplace (read_2_bytes (abfd, buf));
43988095
JK
20285 buf += 2;
20286 break;
20287
20288 case DW_FORM_data4:
ecfb656c 20289 uint.emplace (read_4_bytes (abfd, buf));
43988095
JK
20290 buf += 4;
20291 break;
20292
20293 case DW_FORM_data8:
ecfb656c 20294 uint.emplace (read_8_bytes (abfd, buf));
43988095
JK
20295 buf += 8;
20296 break;
20297
20298 case DW_FORM_udata:
ecfb656c 20299 uint.emplace (read_unsigned_leb128 (abfd, buf, &bytes_read));
43988095
JK
20300 buf += bytes_read;
20301 break;
20302
20303 case DW_FORM_block:
20304 /* It is valid only for DW_LNCT_timestamp which is ignored by
20305 current GDB. */
20306 break;
20307 }
ecfb656c
PA
20308
20309 switch (content_type)
20310 {
20311 case DW_LNCT_path:
20312 if (string.has_value ())
20313 fe.name = *string;
20314 break;
20315 case DW_LNCT_directory_index:
20316 if (uint.has_value ())
20317 fe.d_index = (dir_index) *uint;
20318 break;
20319 case DW_LNCT_timestamp:
20320 if (uint.has_value ())
20321 fe.mod_time = *uint;
20322 break;
20323 case DW_LNCT_size:
20324 if (uint.has_value ())
20325 fe.length = *uint;
20326 break;
20327 case DW_LNCT_MD5:
20328 break;
20329 default:
b98664d3 20330 complaint (_("Unknown format content type %s"),
ecfb656c
PA
20331 pulongest (content_type));
20332 }
43988095
JK
20333 }
20334
ecfb656c 20335 callback (lh, fe.name, fe.d_index, fe.mod_time, fe.length);
43988095
JK
20336 }
20337
20338 *bufp = buf;
20339}
20340
debd256d 20341/* Read the statement program header starting at OFFSET in
3019eac3 20342 .debug_line, or .debug_line.dwo. Return a pointer
6502dd73 20343 to a struct line_header, allocated using xmalloc.
cd366ee8
DE
20344 Returns NULL if there is a problem reading the header, e.g., if it
20345 has a version we don't understand.
debd256d
JB
20346
20347 NOTE: the strings in the include directory and file name tables of
3019eac3
DE
20348 the returned object point into the dwarf line section buffer,
20349 and must not be freed. */
ae2de4f8 20350
fff8551c 20351static line_header_up
9c541725 20352dwarf_decode_line_header (sect_offset sect_off, struct dwarf2_cu *cu)
debd256d 20353{
d521ce57 20354 const gdb_byte *line_ptr;
c764a876 20355 unsigned int bytes_read, offset_size;
debd256d 20356 int i;
d521ce57 20357 const char *cur_dir, *cur_file;
3019eac3
DE
20358 struct dwarf2_section_info *section;
20359 bfd *abfd;
518817b3
SM
20360 struct dwarf2_per_objfile *dwarf2_per_objfile
20361 = cu->per_cu->dwarf2_per_objfile;
3019eac3 20362
36586728 20363 section = get_debug_line_section (cu);
3019eac3
DE
20364 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
20365 if (section->buffer == NULL)
debd256d 20366 {
3019eac3 20367 if (cu->dwo_unit && cu->per_cu->is_debug_types)
b98664d3 20368 complaint (_("missing .debug_line.dwo section"));
3019eac3 20369 else
b98664d3 20370 complaint (_("missing .debug_line section"));
debd256d
JB
20371 return 0;
20372 }
20373
fceca515
DE
20374 /* We can't do this until we know the section is non-empty.
20375 Only then do we know we have such a section. */
a32a8923 20376 abfd = get_section_bfd_owner (section);
fceca515 20377
a738430d
MK
20378 /* Make sure that at least there's room for the total_length field.
20379 That could be 12 bytes long, but we're just going to fudge that. */
9c541725 20380 if (to_underlying (sect_off) + 4 >= section->size)
debd256d 20381 {
4d3c2250 20382 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
20383 return 0;
20384 }
20385
fff8551c 20386 line_header_up lh (new line_header ());
debd256d 20387
9c541725 20388 lh->sect_off = sect_off;
527f3840
JK
20389 lh->offset_in_dwz = cu->per_cu->is_dwz;
20390
9c541725 20391 line_ptr = section->buffer + to_underlying (sect_off);
debd256d 20392
a738430d 20393 /* Read in the header. */
6e70227d 20394 lh->total_length =
c764a876
DE
20395 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
20396 &bytes_read, &offset_size);
debd256d 20397 line_ptr += bytes_read;
3019eac3 20398 if (line_ptr + lh->total_length > (section->buffer + section->size))
debd256d 20399 {
4d3c2250 20400 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
20401 return 0;
20402 }
20403 lh->statement_program_end = line_ptr + lh->total_length;
20404 lh->version = read_2_bytes (abfd, line_ptr);
20405 line_ptr += 2;
43988095 20406 if (lh->version > 5)
cd366ee8
DE
20407 {
20408 /* This is a version we don't understand. The format could have
20409 changed in ways we don't handle properly so just punt. */
b98664d3 20410 complaint (_("unsupported version in .debug_line section"));
cd366ee8
DE
20411 return NULL;
20412 }
43988095
JK
20413 if (lh->version >= 5)
20414 {
20415 gdb_byte segment_selector_size;
20416
20417 /* Skip address size. */
20418 read_1_byte (abfd, line_ptr);
20419 line_ptr += 1;
20420
20421 segment_selector_size = read_1_byte (abfd, line_ptr);
20422 line_ptr += 1;
20423 if (segment_selector_size != 0)
20424 {
b98664d3 20425 complaint (_("unsupported segment selector size %u "
43988095
JK
20426 "in .debug_line section"),
20427 segment_selector_size);
20428 return NULL;
20429 }
20430 }
c764a876
DE
20431 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
20432 line_ptr += offset_size;
debd256d
JB
20433 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
20434 line_ptr += 1;
2dc7f7b3
TT
20435 if (lh->version >= 4)
20436 {
20437 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
20438 line_ptr += 1;
20439 }
20440 else
20441 lh->maximum_ops_per_instruction = 1;
20442
20443 if (lh->maximum_ops_per_instruction == 0)
20444 {
20445 lh->maximum_ops_per_instruction = 1;
b98664d3 20446 complaint (_("invalid maximum_ops_per_instruction "
3e43a32a 20447 "in `.debug_line' section"));
2dc7f7b3
TT
20448 }
20449
debd256d
JB
20450 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
20451 line_ptr += 1;
20452 lh->line_base = read_1_signed_byte (abfd, line_ptr);
20453 line_ptr += 1;
20454 lh->line_range = read_1_byte (abfd, line_ptr);
20455 line_ptr += 1;
20456 lh->opcode_base = read_1_byte (abfd, line_ptr);
20457 line_ptr += 1;
fff8551c 20458 lh->standard_opcode_lengths.reset (new unsigned char[lh->opcode_base]);
debd256d
JB
20459
20460 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
20461 for (i = 1; i < lh->opcode_base; ++i)
20462 {
20463 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
20464 line_ptr += 1;
20465 }
20466
43988095 20467 if (lh->version >= 5)
debd256d 20468 {
43988095 20469 /* Read directory table. */
ed2dc618
SM
20470 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20471 &cu->header,
b926417a 20472 [] (struct line_header *header, const char *name,
ecfb656c 20473 dir_index d_index, unsigned int mod_time,
fff8551c
PA
20474 unsigned int length)
20475 {
b926417a 20476 header->add_include_dir (name);
fff8551c 20477 });
debd256d 20478
43988095 20479 /* Read file name table. */
ed2dc618
SM
20480 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20481 &cu->header,
b926417a 20482 [] (struct line_header *header, const char *name,
ecfb656c 20483 dir_index d_index, unsigned int mod_time,
fff8551c
PA
20484 unsigned int length)
20485 {
b926417a 20486 header->add_file_name (name, d_index, mod_time, length);
fff8551c 20487 });
43988095
JK
20488 }
20489 else
debd256d 20490 {
43988095
JK
20491 /* Read directory table. */
20492 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20493 {
20494 line_ptr += bytes_read;
fff8551c 20495 lh->add_include_dir (cur_dir);
43988095 20496 }
debd256d
JB
20497 line_ptr += bytes_read;
20498
43988095
JK
20499 /* Read file name table. */
20500 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20501 {
ecfb656c
PA
20502 unsigned int mod_time, length;
20503 dir_index d_index;
43988095
JK
20504
20505 line_ptr += bytes_read;
ecfb656c 20506 d_index = (dir_index) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
43988095
JK
20507 line_ptr += bytes_read;
20508 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20509 line_ptr += bytes_read;
20510 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20511 line_ptr += bytes_read;
20512
ecfb656c 20513 lh->add_file_name (cur_file, d_index, mod_time, length);
43988095
JK
20514 }
20515 line_ptr += bytes_read;
debd256d 20516 }
6e70227d 20517 lh->statement_program_start = line_ptr;
debd256d 20518
3019eac3 20519 if (line_ptr > (section->buffer + section->size))
b98664d3 20520 complaint (_("line number info header doesn't "
3e43a32a 20521 "fit in `.debug_line' section"));
debd256d 20522
debd256d
JB
20523 return lh;
20524}
c906108c 20525
c6da4cef
DE
20526/* Subroutine of dwarf_decode_lines to simplify it.
20527 Return the file name of the psymtab for included file FILE_INDEX
20528 in line header LH of PST.
20529 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
c89b44cd
TT
20530 If space for the result is malloc'd, *NAME_HOLDER will be set.
20531 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
c6da4cef 20532
d521ce57 20533static const char *
c6da4cef
DE
20534psymtab_include_file_name (const struct line_header *lh, int file_index,
20535 const struct partial_symtab *pst,
c89b44cd
TT
20536 const char *comp_dir,
20537 gdb::unique_xmalloc_ptr<char> *name_holder)
c6da4cef 20538{
8c43009f 20539 const file_entry &fe = lh->file_names[file_index];
d521ce57
TT
20540 const char *include_name = fe.name;
20541 const char *include_name_to_compare = include_name;
72b9f47f 20542 const char *pst_filename;
c6da4cef
DE
20543 int file_is_pst;
20544
8c43009f 20545 const char *dir_name = fe.include_dir (lh);
c6da4cef 20546
c89b44cd 20547 gdb::unique_xmalloc_ptr<char> hold_compare;
c6da4cef
DE
20548 if (!IS_ABSOLUTE_PATH (include_name)
20549 && (dir_name != NULL || comp_dir != NULL))
20550 {
20551 /* Avoid creating a duplicate psymtab for PST.
20552 We do this by comparing INCLUDE_NAME and PST_FILENAME.
20553 Before we do the comparison, however, we need to account
20554 for DIR_NAME and COMP_DIR.
20555 First prepend dir_name (if non-NULL). If we still don't
20556 have an absolute path prepend comp_dir (if non-NULL).
20557 However, the directory we record in the include-file's
20558 psymtab does not contain COMP_DIR (to match the
20559 corresponding symtab(s)).
20560
20561 Example:
20562
20563 bash$ cd /tmp
20564 bash$ gcc -g ./hello.c
20565 include_name = "hello.c"
20566 dir_name = "."
20567 DW_AT_comp_dir = comp_dir = "/tmp"
5f52445b
YQ
20568 DW_AT_name = "./hello.c"
20569
20570 */
c6da4cef
DE
20571
20572 if (dir_name != NULL)
20573 {
c89b44cd
TT
20574 name_holder->reset (concat (dir_name, SLASH_STRING,
20575 include_name, (char *) NULL));
20576 include_name = name_holder->get ();
c6da4cef 20577 include_name_to_compare = include_name;
c6da4cef
DE
20578 }
20579 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
20580 {
c89b44cd
TT
20581 hold_compare.reset (concat (comp_dir, SLASH_STRING,
20582 include_name, (char *) NULL));
20583 include_name_to_compare = hold_compare.get ();
c6da4cef
DE
20584 }
20585 }
20586
20587 pst_filename = pst->filename;
c89b44cd 20588 gdb::unique_xmalloc_ptr<char> copied_name;
c6da4cef
DE
20589 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
20590 {
c89b44cd
TT
20591 copied_name.reset (concat (pst->dirname, SLASH_STRING,
20592 pst_filename, (char *) NULL));
20593 pst_filename = copied_name.get ();
c6da4cef
DE
20594 }
20595
1e3fad37 20596 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
c6da4cef 20597
c6da4cef
DE
20598 if (file_is_pst)
20599 return NULL;
20600 return include_name;
20601}
20602
d9b3de22
DE
20603/* State machine to track the state of the line number program. */
20604
6f77053d 20605class lnp_state_machine
d9b3de22 20606{
6f77053d
PA
20607public:
20608 /* Initialize a machine state for the start of a line number
20609 program. */
804d2729
TT
20610 lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch, line_header *lh,
20611 bool record_lines_p);
6f77053d 20612
8c43009f
PA
20613 file_entry *current_file ()
20614 {
20615 /* lh->file_names is 0-based, but the file name numbers in the
20616 statement program are 1-based. */
6f77053d
PA
20617 return m_line_header->file_name_at (m_file);
20618 }
20619
20620 /* Record the line in the state machine. END_SEQUENCE is true if
20621 we're processing the end of a sequence. */
20622 void record_line (bool end_sequence);
20623
7ab6656f
OJ
20624 /* Check ADDRESS is zero and less than UNRELOCATED_LOWPC and if true
20625 nop-out rest of the lines in this sequence. */
6f77053d
PA
20626 void check_line_address (struct dwarf2_cu *cu,
20627 const gdb_byte *line_ptr,
7ab6656f 20628 CORE_ADDR unrelocated_lowpc, CORE_ADDR address);
6f77053d
PA
20629
20630 void handle_set_discriminator (unsigned int discriminator)
20631 {
20632 m_discriminator = discriminator;
20633 m_line_has_non_zero_discriminator |= discriminator != 0;
20634 }
20635
20636 /* Handle DW_LNE_set_address. */
20637 void handle_set_address (CORE_ADDR baseaddr, CORE_ADDR address)
20638 {
20639 m_op_index = 0;
20640 address += baseaddr;
20641 m_address = gdbarch_adjust_dwarf2_line (m_gdbarch, address, false);
20642 }
20643
20644 /* Handle DW_LNS_advance_pc. */
20645 void handle_advance_pc (CORE_ADDR adjust);
20646
20647 /* Handle a special opcode. */
20648 void handle_special_opcode (unsigned char op_code);
20649
20650 /* Handle DW_LNS_advance_line. */
20651 void handle_advance_line (int line_delta)
20652 {
20653 advance_line (line_delta);
20654 }
20655
20656 /* Handle DW_LNS_set_file. */
20657 void handle_set_file (file_name_index file);
20658
20659 /* Handle DW_LNS_negate_stmt. */
20660 void handle_negate_stmt ()
20661 {
20662 m_is_stmt = !m_is_stmt;
20663 }
20664
20665 /* Handle DW_LNS_const_add_pc. */
20666 void handle_const_add_pc ();
20667
20668 /* Handle DW_LNS_fixed_advance_pc. */
20669 void handle_fixed_advance_pc (CORE_ADDR addr_adj)
20670 {
20671 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20672 m_op_index = 0;
20673 }
20674
20675 /* Handle DW_LNS_copy. */
20676 void handle_copy ()
20677 {
20678 record_line (false);
20679 m_discriminator = 0;
20680 }
20681
20682 /* Handle DW_LNE_end_sequence. */
20683 void handle_end_sequence ()
20684 {
804d2729 20685 m_currently_recording_lines = true;
6f77053d
PA
20686 }
20687
20688private:
20689 /* Advance the line by LINE_DELTA. */
20690 void advance_line (int line_delta)
20691 {
20692 m_line += line_delta;
20693
20694 if (line_delta != 0)
20695 m_line_has_non_zero_discriminator = m_discriminator != 0;
8c43009f
PA
20696 }
20697
804d2729
TT
20698 struct dwarf2_cu *m_cu;
20699
6f77053d
PA
20700 gdbarch *m_gdbarch;
20701
20702 /* True if we're recording lines.
20703 Otherwise we're building partial symtabs and are just interested in
20704 finding include files mentioned by the line number program. */
20705 bool m_record_lines_p;
20706
8c43009f 20707 /* The line number header. */
6f77053d 20708 line_header *m_line_header;
8c43009f 20709
6f77053d
PA
20710 /* These are part of the standard DWARF line number state machine,
20711 and initialized according to the DWARF spec. */
d9b3de22 20712
6f77053d 20713 unsigned char m_op_index = 0;
8c43009f 20714 /* The line table index (1-based) of the current file. */
6f77053d
PA
20715 file_name_index m_file = (file_name_index) 1;
20716 unsigned int m_line = 1;
20717
20718 /* These are initialized in the constructor. */
20719
20720 CORE_ADDR m_address;
20721 bool m_is_stmt;
20722 unsigned int m_discriminator;
d9b3de22
DE
20723
20724 /* Additional bits of state we need to track. */
20725
20726 /* The last file that we called dwarf2_start_subfile for.
20727 This is only used for TLLs. */
6f77053d 20728 unsigned int m_last_file = 0;
d9b3de22 20729 /* The last file a line number was recorded for. */
6f77053d 20730 struct subfile *m_last_subfile = NULL;
d9b3de22 20731
804d2729
TT
20732 /* When true, record the lines we decode. */
20733 bool m_currently_recording_lines = false;
d9b3de22
DE
20734
20735 /* The last line number that was recorded, used to coalesce
20736 consecutive entries for the same line. This can happen, for
20737 example, when discriminators are present. PR 17276. */
6f77053d
PA
20738 unsigned int m_last_line = 0;
20739 bool m_line_has_non_zero_discriminator = false;
8c43009f 20740};
d9b3de22 20741
6f77053d
PA
20742void
20743lnp_state_machine::handle_advance_pc (CORE_ADDR adjust)
20744{
20745 CORE_ADDR addr_adj = (((m_op_index + adjust)
20746 / m_line_header->maximum_ops_per_instruction)
20747 * m_line_header->minimum_instruction_length);
20748 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20749 m_op_index = ((m_op_index + adjust)
20750 % m_line_header->maximum_ops_per_instruction);
20751}
d9b3de22 20752
6f77053d
PA
20753void
20754lnp_state_machine::handle_special_opcode (unsigned char op_code)
d9b3de22 20755{
6f77053d
PA
20756 unsigned char adj_opcode = op_code - m_line_header->opcode_base;
20757 CORE_ADDR addr_adj = (((m_op_index
20758 + (adj_opcode / m_line_header->line_range))
20759 / m_line_header->maximum_ops_per_instruction)
20760 * m_line_header->minimum_instruction_length);
20761 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20762 m_op_index = ((m_op_index + (adj_opcode / m_line_header->line_range))
20763 % m_line_header->maximum_ops_per_instruction);
d9b3de22 20764
6f77053d
PA
20765 int line_delta = (m_line_header->line_base
20766 + (adj_opcode % m_line_header->line_range));
20767 advance_line (line_delta);
20768 record_line (false);
20769 m_discriminator = 0;
20770}
d9b3de22 20771
6f77053d
PA
20772void
20773lnp_state_machine::handle_set_file (file_name_index file)
20774{
20775 m_file = file;
20776
20777 const file_entry *fe = current_file ();
20778 if (fe == NULL)
20779 dwarf2_debug_line_missing_file_complaint ();
20780 else if (m_record_lines_p)
20781 {
20782 const char *dir = fe->include_dir (m_line_header);
20783
c24bdb02 20784 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20785 m_line_has_non_zero_discriminator = m_discriminator != 0;
804d2729 20786 dwarf2_start_subfile (m_cu, fe->name, dir);
6f77053d
PA
20787 }
20788}
20789
20790void
20791lnp_state_machine::handle_const_add_pc ()
20792{
20793 CORE_ADDR adjust
20794 = (255 - m_line_header->opcode_base) / m_line_header->line_range;
20795
20796 CORE_ADDR addr_adj
20797 = (((m_op_index + adjust)
20798 / m_line_header->maximum_ops_per_instruction)
20799 * m_line_header->minimum_instruction_length);
20800
20801 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20802 m_op_index = ((m_op_index + adjust)
20803 % m_line_header->maximum_ops_per_instruction);
20804}
d9b3de22 20805
a05a36a5
DE
20806/* Return non-zero if we should add LINE to the line number table.
20807 LINE is the line to add, LAST_LINE is the last line that was added,
20808 LAST_SUBFILE is the subfile for LAST_LINE.
20809 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
20810 had a non-zero discriminator.
20811
20812 We have to be careful in the presence of discriminators.
20813 E.g., for this line:
20814
20815 for (i = 0; i < 100000; i++);
20816
20817 clang can emit four line number entries for that one line,
20818 each with a different discriminator.
20819 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
20820
20821 However, we want gdb to coalesce all four entries into one.
20822 Otherwise the user could stepi into the middle of the line and
20823 gdb would get confused about whether the pc really was in the
20824 middle of the line.
20825
20826 Things are further complicated by the fact that two consecutive
20827 line number entries for the same line is a heuristic used by gcc
20828 to denote the end of the prologue. So we can't just discard duplicate
20829 entries, we have to be selective about it. The heuristic we use is
20830 that we only collapse consecutive entries for the same line if at least
20831 one of those entries has a non-zero discriminator. PR 17276.
20832
20833 Note: Addresses in the line number state machine can never go backwards
20834 within one sequence, thus this coalescing is ok. */
20835
20836static int
804d2729
TT
20837dwarf_record_line_p (struct dwarf2_cu *cu,
20838 unsigned int line, unsigned int last_line,
a05a36a5
DE
20839 int line_has_non_zero_discriminator,
20840 struct subfile *last_subfile)
20841{
c24bdb02 20842 if (cu->get_builder ()->get_current_subfile () != last_subfile)
a05a36a5
DE
20843 return 1;
20844 if (line != last_line)
20845 return 1;
20846 /* Same line for the same file that we've seen already.
20847 As a last check, for pr 17276, only record the line if the line
20848 has never had a non-zero discriminator. */
20849 if (!line_has_non_zero_discriminator)
20850 return 1;
20851 return 0;
20852}
20853
804d2729
TT
20854/* Use the CU's builder to record line number LINE beginning at
20855 address ADDRESS in the line table of subfile SUBFILE. */
252a6764
DE
20856
20857static void
d9b3de22
DE
20858dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
20859 unsigned int line, CORE_ADDR address,
804d2729 20860 struct dwarf2_cu *cu)
252a6764
DE
20861{
20862 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
20863
27e0867f
DE
20864 if (dwarf_line_debug)
20865 {
20866 fprintf_unfiltered (gdb_stdlog,
20867 "Recording line %u, file %s, address %s\n",
20868 line, lbasename (subfile->name),
20869 paddress (gdbarch, address));
20870 }
20871
804d2729 20872 if (cu != nullptr)
c24bdb02 20873 cu->get_builder ()->record_line (subfile, line, addr);
252a6764
DE
20874}
20875
20876/* Subroutine of dwarf_decode_lines_1 to simplify it.
20877 Mark the end of a set of line number records.
d9b3de22 20878 The arguments are the same as for dwarf_record_line_1.
252a6764
DE
20879 If SUBFILE is NULL the request is ignored. */
20880
20881static void
20882dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
804d2729 20883 CORE_ADDR address, struct dwarf2_cu *cu)
252a6764 20884{
27e0867f
DE
20885 if (subfile == NULL)
20886 return;
20887
20888 if (dwarf_line_debug)
20889 {
20890 fprintf_unfiltered (gdb_stdlog,
20891 "Finishing current line, file %s, address %s\n",
20892 lbasename (subfile->name),
20893 paddress (gdbarch, address));
20894 }
20895
804d2729 20896 dwarf_record_line_1 (gdbarch, subfile, 0, address, cu);
d9b3de22
DE
20897}
20898
6f77053d
PA
20899void
20900lnp_state_machine::record_line (bool end_sequence)
d9b3de22 20901{
d9b3de22
DE
20902 if (dwarf_line_debug)
20903 {
20904 fprintf_unfiltered (gdb_stdlog,
20905 "Processing actual line %u: file %u,"
20906 " address %s, is_stmt %u, discrim %u\n",
6f77053d
PA
20907 m_line, to_underlying (m_file),
20908 paddress (m_gdbarch, m_address),
20909 m_is_stmt, m_discriminator);
d9b3de22
DE
20910 }
20911
6f77053d 20912 file_entry *fe = current_file ();
8c43009f
PA
20913
20914 if (fe == NULL)
d9b3de22
DE
20915 dwarf2_debug_line_missing_file_complaint ();
20916 /* For now we ignore lines not starting on an instruction boundary.
20917 But not when processing end_sequence for compatibility with the
20918 previous version of the code. */
6f77053d 20919 else if (m_op_index == 0 || end_sequence)
d9b3de22 20920 {
8c43009f 20921 fe->included_p = 1;
c258c396 20922 if (m_record_lines_p && (producer_is_codewarrior (m_cu) || m_is_stmt))
d9b3de22 20923 {
c24bdb02 20924 if (m_last_subfile != m_cu->get_builder ()->get_current_subfile ()
804d2729 20925 || end_sequence)
d9b3de22 20926 {
804d2729
TT
20927 dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
20928 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22
DE
20929 }
20930
20931 if (!end_sequence)
20932 {
804d2729 20933 if (dwarf_record_line_p (m_cu, m_line, m_last_line,
6f77053d
PA
20934 m_line_has_non_zero_discriminator,
20935 m_last_subfile))
d9b3de22 20936 {
c24bdb02 20937 buildsym_compunit *builder = m_cu->get_builder ();
804d2729 20938 dwarf_record_line_1 (m_gdbarch,
c24bdb02 20939 builder->get_current_subfile (),
6f77053d 20940 m_line, m_address,
804d2729 20941 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22 20942 }
c24bdb02 20943 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20944 m_last_line = m_line;
d9b3de22
DE
20945 }
20946 }
20947 }
20948}
20949
804d2729
TT
20950lnp_state_machine::lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch,
20951 line_header *lh, bool record_lines_p)
d9b3de22 20952{
804d2729 20953 m_cu = cu;
6f77053d
PA
20954 m_gdbarch = arch;
20955 m_record_lines_p = record_lines_p;
20956 m_line_header = lh;
d9b3de22 20957
804d2729 20958 m_currently_recording_lines = true;
d9b3de22 20959
d9b3de22
DE
20960 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
20961 was a line entry for it so that the backend has a chance to adjust it
20962 and also record it in case it needs it. This is currently used by MIPS
20963 code, cf. `mips_adjust_dwarf2_line'. */
6f77053d
PA
20964 m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
20965 m_is_stmt = lh->default_is_stmt;
20966 m_discriminator = 0;
252a6764
DE
20967}
20968
6f77053d
PA
20969void
20970lnp_state_machine::check_line_address (struct dwarf2_cu *cu,
20971 const gdb_byte *line_ptr,
7ab6656f 20972 CORE_ADDR unrelocated_lowpc, CORE_ADDR address)
924c2928 20973{
7ab6656f
OJ
20974 /* If ADDRESS < UNRELOCATED_LOWPC then it's not a usable value, it's outside
20975 the pc range of the CU. However, we restrict the test to only ADDRESS
20976 values of zero to preserve GDB's previous behaviour which is to handle
20977 the specific case of a function being GC'd by the linker. */
924c2928 20978
7ab6656f 20979 if (address == 0 && address < unrelocated_lowpc)
924c2928
DE
20980 {
20981 /* This line table is for a function which has been
20982 GCd by the linker. Ignore it. PR gdb/12528 */
20983
518817b3 20984 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
924c2928
DE
20985 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
20986
b98664d3 20987 complaint (_(".debug_line address at offset 0x%lx is 0 [in module %s]"),
924c2928 20988 line_offset, objfile_name (objfile));
804d2729
TT
20989 m_currently_recording_lines = false;
20990 /* Note: m_currently_recording_lines is left as false until we see
20991 DW_LNE_end_sequence. */
924c2928
DE
20992 }
20993}
20994
f3f5162e 20995/* Subroutine of dwarf_decode_lines to simplify it.
d9b3de22
DE
20996 Process the line number information in LH.
20997 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
20998 program in order to set included_p for every referenced header. */
debd256d 20999
c906108c 21000static void
43f3e411
DE
21001dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
21002 const int decode_for_pst_p, CORE_ADDR lowpc)
c906108c 21003{
d521ce57
TT
21004 const gdb_byte *line_ptr, *extended_end;
21005 const gdb_byte *line_end;
a8c50c1f 21006 unsigned int bytes_read, extended_len;
699ca60a 21007 unsigned char op_code, extended_op;
e142c38c 21008 CORE_ADDR baseaddr;
518817b3 21009 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
f3f5162e 21010 bfd *abfd = objfile->obfd;
fbf65064 21011 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6f77053d
PA
21012 /* True if we're recording line info (as opposed to building partial
21013 symtabs and just interested in finding include files mentioned by
21014 the line number program). */
21015 bool record_lines_p = !decode_for_pst_p;
e142c38c
DJ
21016
21017 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 21018
debd256d
JB
21019 line_ptr = lh->statement_program_start;
21020 line_end = lh->statement_program_end;
c906108c
SS
21021
21022 /* Read the statement sequences until there's nothing left. */
21023 while (line_ptr < line_end)
21024 {
6f77053d
PA
21025 /* The DWARF line number program state machine. Reset the state
21026 machine at the start of each sequence. */
804d2729 21027 lnp_state_machine state_machine (cu, gdbarch, lh, record_lines_p);
6f77053d 21028 bool end_sequence = false;
d9b3de22 21029
8c43009f 21030 if (record_lines_p)
c906108c 21031 {
8c43009f
PA
21032 /* Start a subfile for the current file of the state
21033 machine. */
21034 const file_entry *fe = state_machine.current_file ();
21035
21036 if (fe != NULL)
804d2729 21037 dwarf2_start_subfile (cu, fe->name, fe->include_dir (lh));
c906108c
SS
21038 }
21039
a738430d 21040 /* Decode the table. */
d9b3de22 21041 while (line_ptr < line_end && !end_sequence)
c906108c
SS
21042 {
21043 op_code = read_1_byte (abfd, line_ptr);
21044 line_ptr += 1;
9aa1fe7e 21045
debd256d 21046 if (op_code >= lh->opcode_base)
6e70227d 21047 {
8e07a239 21048 /* Special opcode. */
6f77053d 21049 state_machine.handle_special_opcode (op_code);
9aa1fe7e
GK
21050 }
21051 else switch (op_code)
c906108c
SS
21052 {
21053 case DW_LNS_extended_op:
3e43a32a
MS
21054 extended_len = read_unsigned_leb128 (abfd, line_ptr,
21055 &bytes_read);
473b7be6 21056 line_ptr += bytes_read;
a8c50c1f 21057 extended_end = line_ptr + extended_len;
c906108c
SS
21058 extended_op = read_1_byte (abfd, line_ptr);
21059 line_ptr += 1;
21060 switch (extended_op)
21061 {
21062 case DW_LNE_end_sequence:
6f77053d
PA
21063 state_machine.handle_end_sequence ();
21064 end_sequence = true;
c906108c
SS
21065 break;
21066 case DW_LNE_set_address:
d9b3de22
DE
21067 {
21068 CORE_ADDR address
21069 = read_address (abfd, line_ptr, cu, &bytes_read);
d9b3de22 21070 line_ptr += bytes_read;
6f77053d
PA
21071
21072 state_machine.check_line_address (cu, line_ptr,
7ab6656f 21073 lowpc - baseaddr, address);
6f77053d 21074 state_machine.handle_set_address (baseaddr, address);
d9b3de22 21075 }
c906108c
SS
21076 break;
21077 case DW_LNE_define_file:
debd256d 21078 {
d521ce57 21079 const char *cur_file;
ecfb656c
PA
21080 unsigned int mod_time, length;
21081 dir_index dindex;
6e70227d 21082
3e43a32a
MS
21083 cur_file = read_direct_string (abfd, line_ptr,
21084 &bytes_read);
debd256d 21085 line_ptr += bytes_read;
ecfb656c 21086 dindex = (dir_index)
debd256d
JB
21087 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21088 line_ptr += bytes_read;
21089 mod_time =
21090 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21091 line_ptr += bytes_read;
21092 length =
21093 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21094 line_ptr += bytes_read;
ecfb656c 21095 lh->add_file_name (cur_file, dindex, mod_time, length);
debd256d 21096 }
c906108c 21097 break;
d0c6ba3d 21098 case DW_LNE_set_discriminator:
6f77053d
PA
21099 {
21100 /* The discriminator is not interesting to the
21101 debugger; just ignore it. We still need to
21102 check its value though:
21103 if there are consecutive entries for the same
21104 (non-prologue) line we want to coalesce them.
21105 PR 17276. */
21106 unsigned int discr
21107 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21108 line_ptr += bytes_read;
21109
21110 state_machine.handle_set_discriminator (discr);
21111 }
d0c6ba3d 21112 break;
c906108c 21113 default:
b98664d3 21114 complaint (_("mangled .debug_line section"));
debd256d 21115 return;
c906108c 21116 }
a8c50c1f
DJ
21117 /* Make sure that we parsed the extended op correctly. If e.g.
21118 we expected a different address size than the producer used,
21119 we may have read the wrong number of bytes. */
21120 if (line_ptr != extended_end)
21121 {
b98664d3 21122 complaint (_("mangled .debug_line section"));
a8c50c1f
DJ
21123 return;
21124 }
c906108c
SS
21125 break;
21126 case DW_LNS_copy:
6f77053d 21127 state_machine.handle_copy ();
c906108c
SS
21128 break;
21129 case DW_LNS_advance_pc:
2dc7f7b3
TT
21130 {
21131 CORE_ADDR adjust
21132 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
2dc7f7b3 21133 line_ptr += bytes_read;
6f77053d
PA
21134
21135 state_machine.handle_advance_pc (adjust);
2dc7f7b3 21136 }
c906108c
SS
21137 break;
21138 case DW_LNS_advance_line:
a05a36a5
DE
21139 {
21140 int line_delta
21141 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
a05a36a5 21142 line_ptr += bytes_read;
6f77053d
PA
21143
21144 state_machine.handle_advance_line (line_delta);
a05a36a5 21145 }
c906108c
SS
21146 break;
21147 case DW_LNS_set_file:
d9b3de22 21148 {
6f77053d 21149 file_name_index file
ecfb656c
PA
21150 = (file_name_index) read_unsigned_leb128 (abfd, line_ptr,
21151 &bytes_read);
d9b3de22 21152 line_ptr += bytes_read;
8c43009f 21153
6f77053d 21154 state_machine.handle_set_file (file);
d9b3de22 21155 }
c906108c
SS
21156 break;
21157 case DW_LNS_set_column:
0ad93d4f 21158 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
c906108c
SS
21159 line_ptr += bytes_read;
21160 break;
21161 case DW_LNS_negate_stmt:
6f77053d 21162 state_machine.handle_negate_stmt ();
c906108c
SS
21163 break;
21164 case DW_LNS_set_basic_block:
c906108c 21165 break;
c2c6d25f
JM
21166 /* Add to the address register of the state machine the
21167 address increment value corresponding to special opcode
a738430d
MK
21168 255. I.e., this value is scaled by the minimum
21169 instruction length since special opcode 255 would have
b021a221 21170 scaled the increment. */
c906108c 21171 case DW_LNS_const_add_pc:
6f77053d 21172 state_machine.handle_const_add_pc ();
c906108c
SS
21173 break;
21174 case DW_LNS_fixed_advance_pc:
3e29f34a 21175 {
6f77053d 21176 CORE_ADDR addr_adj = read_2_bytes (abfd, line_ptr);
3e29f34a 21177 line_ptr += 2;
6f77053d
PA
21178
21179 state_machine.handle_fixed_advance_pc (addr_adj);
3e29f34a 21180 }
c906108c 21181 break;
9aa1fe7e 21182 default:
a738430d
MK
21183 {
21184 /* Unknown standard opcode, ignore it. */
9aa1fe7e 21185 int i;
a738430d 21186
debd256d 21187 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
21188 {
21189 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21190 line_ptr += bytes_read;
21191 }
21192 }
c906108c
SS
21193 }
21194 }
d9b3de22
DE
21195
21196 if (!end_sequence)
21197 dwarf2_debug_line_missing_end_sequence_complaint ();
21198
21199 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
21200 in which case we still finish recording the last line). */
6f77053d 21201 state_machine.record_line (true);
c906108c 21202 }
f3f5162e
DE
21203}
21204
21205/* Decode the Line Number Program (LNP) for the given line_header
21206 structure and CU. The actual information extracted and the type
21207 of structures created from the LNP depends on the value of PST.
21208
21209 1. If PST is NULL, then this procedure uses the data from the program
21210 to create all necessary symbol tables, and their linetables.
21211
21212 2. If PST is not NULL, this procedure reads the program to determine
21213 the list of files included by the unit represented by PST, and
21214 builds all the associated partial symbol tables.
21215
21216 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
21217 It is used for relative paths in the line table.
21218 NOTE: When processing partial symtabs (pst != NULL),
21219 comp_dir == pst->dirname.
21220
21221 NOTE: It is important that psymtabs have the same file name (via strcmp)
21222 as the corresponding symtab. Since COMP_DIR is not used in the name of the
21223 symtab we don't use it in the name of the psymtabs we create.
21224 E.g. expand_line_sal requires this when finding psymtabs to expand.
c3b7b696
YQ
21225 A good testcase for this is mb-inline.exp.
21226
527f3840
JK
21227 LOWPC is the lowest address in CU (or 0 if not known).
21228
21229 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
21230 for its PC<->lines mapping information. Otherwise only the filename
21231 table is read in. */
f3f5162e
DE
21232
21233static void
21234dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
c3b7b696 21235 struct dwarf2_cu *cu, struct partial_symtab *pst,
527f3840 21236 CORE_ADDR lowpc, int decode_mapping)
f3f5162e 21237{
518817b3 21238 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
f3f5162e 21239 const int decode_for_pst_p = (pst != NULL);
f3f5162e 21240
527f3840
JK
21241 if (decode_mapping)
21242 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
aaa75496
JB
21243
21244 if (decode_for_pst_p)
21245 {
21246 int file_index;
21247
21248 /* Now that we're done scanning the Line Header Program, we can
21249 create the psymtab of each included file. */
fff8551c 21250 for (file_index = 0; file_index < lh->file_names.size (); file_index++)
aaa75496
JB
21251 if (lh->file_names[file_index].included_p == 1)
21252 {
c89b44cd 21253 gdb::unique_xmalloc_ptr<char> name_holder;
d521ce57 21254 const char *include_name =
c89b44cd
TT
21255 psymtab_include_file_name (lh, file_index, pst, comp_dir,
21256 &name_holder);
c6da4cef 21257 if (include_name != NULL)
aaa75496
JB
21258 dwarf2_create_include_psymtab (include_name, pst, objfile);
21259 }
21260 }
cb1df416
DJ
21261 else
21262 {
21263 /* Make sure a symtab is created for every file, even files
21264 which contain only variables (i.e. no code with associated
21265 line numbers). */
c24bdb02
KS
21266 buildsym_compunit *builder = cu->get_builder ();
21267 struct compunit_symtab *cust = builder->get_compunit_symtab ();
cb1df416 21268 int i;
cb1df416 21269
fff8551c 21270 for (i = 0; i < lh->file_names.size (); i++)
cb1df416 21271 {
8c43009f 21272 file_entry &fe = lh->file_names[i];
9a619af0 21273
804d2729 21274 dwarf2_start_subfile (cu, fe.name, fe.include_dir (lh));
cb1df416 21275
c24bdb02 21276 if (builder->get_current_subfile ()->symtab == NULL)
43f3e411 21277 {
c24bdb02 21278 builder->get_current_subfile ()->symtab
804d2729 21279 = allocate_symtab (cust,
c24bdb02 21280 builder->get_current_subfile ()->name);
43f3e411 21281 }
c24bdb02 21282 fe.symtab = builder->get_current_subfile ()->symtab;
cb1df416
DJ
21283 }
21284 }
c906108c
SS
21285}
21286
21287/* Start a subfile for DWARF. FILENAME is the name of the file and
21288 DIRNAME the name of the source directory which contains FILENAME
4d663531 21289 or NULL if not known.
c906108c
SS
21290 This routine tries to keep line numbers from identical absolute and
21291 relative file names in a common subfile.
21292
21293 Using the `list' example from the GDB testsuite, which resides in
21294 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
21295 of /srcdir/list0.c yields the following debugging information for list0.c:
21296
c5aa993b 21297 DW_AT_name: /srcdir/list0.c
4d663531 21298 DW_AT_comp_dir: /compdir
357e46e7 21299 files.files[0].name: list0.h
c5aa993b 21300 files.files[0].dir: /srcdir
357e46e7 21301 files.files[1].name: list0.c
c5aa993b 21302 files.files[1].dir: /srcdir
c906108c
SS
21303
21304 The line number information for list0.c has to end up in a single
4f1520fb
FR
21305 subfile, so that `break /srcdir/list0.c:1' works as expected.
21306 start_subfile will ensure that this happens provided that we pass the
21307 concatenation of files.files[1].dir and files.files[1].name as the
21308 subfile's name. */
c906108c
SS
21309
21310static void
804d2729
TT
21311dwarf2_start_subfile (struct dwarf2_cu *cu, const char *filename,
21312 const char *dirname)
c906108c 21313{
d521ce57 21314 char *copy = NULL;
4f1520fb 21315
4d663531 21316 /* In order not to lose the line information directory,
4f1520fb
FR
21317 we concatenate it to the filename when it makes sense.
21318 Note that the Dwarf3 standard says (speaking of filenames in line
21319 information): ``The directory index is ignored for file names
21320 that represent full path names''. Thus ignoring dirname in the
21321 `else' branch below isn't an issue. */
c906108c 21322
d5166ae1 21323 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
d521ce57
TT
21324 {
21325 copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
21326 filename = copy;
21327 }
c906108c 21328
c24bdb02 21329 cu->get_builder ()->start_subfile (filename);
4f1520fb 21330
d521ce57
TT
21331 if (copy != NULL)
21332 xfree (copy);
c906108c
SS
21333}
21334
804d2729
TT
21335/* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
21336 buildsym_compunit constructor. */
f4dc4d17 21337
c24bdb02
KS
21338struct compunit_symtab *
21339dwarf2_cu::start_symtab (const char *name, const char *comp_dir,
21340 CORE_ADDR low_pc)
f4dc4d17 21341{
c24bdb02 21342 gdb_assert (m_builder == nullptr);
43f3e411 21343
c24bdb02
KS
21344 m_builder.reset (new struct buildsym_compunit
21345 (per_cu->dwarf2_per_objfile->objfile,
21346 name, comp_dir, language, low_pc));
93b8bea4 21347
c24bdb02 21348 list_in_scope = get_builder ()->get_file_symbols ();
804d2729 21349
c24bdb02
KS
21350 get_builder ()->record_debugformat ("DWARF 2");
21351 get_builder ()->record_producer (producer);
f4dc4d17 21352
c24bdb02 21353 processing_has_namespace_info = false;
43f3e411 21354
c24bdb02 21355 return get_builder ()->get_compunit_symtab ();
f4dc4d17
DE
21356}
21357
4c2df51b
DJ
21358static void
21359var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 21360 struct dwarf2_cu *cu)
4c2df51b 21361{
518817b3 21362 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e7c27a73
DJ
21363 struct comp_unit_head *cu_header = &cu->header;
21364
4c2df51b
DJ
21365 /* NOTE drow/2003-01-30: There used to be a comment and some special
21366 code here to turn a symbol with DW_AT_external and a
21367 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
21368 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
21369 with some versions of binutils) where shared libraries could have
21370 relocations against symbols in their debug information - the
21371 minimal symbol would have the right address, but the debug info
21372 would not. It's no longer necessary, because we will explicitly
21373 apply relocations when we read in the debug information now. */
21374
21375 /* A DW_AT_location attribute with no contents indicates that a
21376 variable has been optimized away. */
21377 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
21378 {
f1e6e072 21379 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
4c2df51b
DJ
21380 return;
21381 }
21382
21383 /* Handle one degenerate form of location expression specially, to
21384 preserve GDB's previous behavior when section offsets are
336d760d
AT
21385 specified. If this is just a DW_OP_addr, DW_OP_addrx, or
21386 DW_OP_GNU_addr_index then mark this symbol as LOC_STATIC. */
4c2df51b
DJ
21387
21388 if (attr_form_is_block (attr)
3019eac3
DE
21389 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
21390 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
336d760d
AT
21391 || ((DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
21392 || DW_BLOCK (attr)->data[0] == DW_OP_addrx)
3019eac3
DE
21393 && (DW_BLOCK (attr)->size
21394 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
4c2df51b 21395 {
891d2f0b 21396 unsigned int dummy;
4c2df51b 21397
3019eac3
DE
21398 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
21399 SYMBOL_VALUE_ADDRESS (sym) =
21400 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
21401 else
21402 SYMBOL_VALUE_ADDRESS (sym) =
21403 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
f1e6e072 21404 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
4c2df51b
DJ
21405 fixup_symbol_section (sym, objfile);
21406 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
21407 SYMBOL_SECTION (sym));
4c2df51b
DJ
21408 return;
21409 }
21410
21411 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
21412 expression evaluator, and use LOC_COMPUTED only when necessary
21413 (i.e. when the value of a register or memory location is
21414 referenced, or a thread-local block, etc.). Then again, it might
21415 not be worthwhile. I'm assuming that it isn't unless performance
21416 or memory numbers show me otherwise. */
21417
f1e6e072 21418 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
8be455d7 21419
f1e6e072 21420 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
9068261f 21421 cu->has_loclist = true;
4c2df51b
DJ
21422}
21423
c906108c
SS
21424/* Given a pointer to a DWARF information entry, figure out if we need
21425 to make a symbol table entry for it, and if so, create a new entry
21426 and return a pointer to it.
21427 If TYPE is NULL, determine symbol type from the die, otherwise
34eaf542
TT
21428 used the passed type.
21429 If SPACE is not NULL, use it to hold the new symbol. If it is
21430 NULL, allocate a new symbol on the objfile's obstack. */
c906108c
SS
21431
21432static struct symbol *
5e2db402
TT
21433new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
21434 struct symbol *space)
c906108c 21435{
518817b3
SM
21436 struct dwarf2_per_objfile *dwarf2_per_objfile
21437 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 21438 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 21439 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c 21440 struct symbol *sym = NULL;
15d034d0 21441 const char *name;
c906108c
SS
21442 struct attribute *attr = NULL;
21443 struct attribute *attr2 = NULL;
e142c38c 21444 CORE_ADDR baseaddr;
e37fd15a
SW
21445 struct pending **list_to_add = NULL;
21446
edb3359d 21447 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
e142c38c
DJ
21448
21449 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 21450
94af9270 21451 name = dwarf2_name (die, cu);
c906108c
SS
21452 if (name)
21453 {
94af9270 21454 const char *linkagename;
34eaf542 21455 int suppress_add = 0;
94af9270 21456
34eaf542
TT
21457 if (space)
21458 sym = space;
21459 else
e623cf5d 21460 sym = allocate_symbol (objfile);
c906108c 21461 OBJSTAT (objfile, n_syms++);
2de7ced7
DJ
21462
21463 /* Cache this symbol's name and the name's demangled form (if any). */
f85f34ed 21464 SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
94af9270
KS
21465 linkagename = dwarf2_physname (name, die, cu);
21466 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
c906108c 21467
f55ee35c
JK
21468 /* Fortran does not have mangling standard and the mangling does differ
21469 between gfortran, iFort etc. */
21470 if (cu->language == language_fortran
b250c185 21471 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
29df156d 21472 symbol_set_demangled_name (&(sym->ginfo),
cfc594ee 21473 dwarf2_full_name (name, die, cu),
29df156d 21474 NULL);
f55ee35c 21475
c906108c 21476 /* Default assumptions.
c5aa993b 21477 Use the passed type or decode it from the die. */
176620f1 21478 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
f1e6e072 21479 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
21480 if (type != NULL)
21481 SYMBOL_TYPE (sym) = type;
21482 else
e7c27a73 21483 SYMBOL_TYPE (sym) = die_type (die, cu);
edb3359d
DJ
21484 attr = dwarf2_attr (die,
21485 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
21486 cu);
c906108c
SS
21487 if (attr)
21488 {
21489 SYMBOL_LINE (sym) = DW_UNSND (attr);
21490 }
cb1df416 21491
edb3359d
DJ
21492 attr = dwarf2_attr (die,
21493 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
21494 cu);
cb1df416
DJ
21495 if (attr)
21496 {
ecfb656c 21497 file_name_index file_index = (file_name_index) DW_UNSND (attr);
8c43009f 21498 struct file_entry *fe;
9a619af0 21499
ecfb656c
PA
21500 if (cu->line_header != NULL)
21501 fe = cu->line_header->file_name_at (file_index);
8c43009f
PA
21502 else
21503 fe = NULL;
21504
21505 if (fe == NULL)
b98664d3 21506 complaint (_("file index out of range"));
8c43009f
PA
21507 else
21508 symbol_set_symtab (sym, fe->symtab);
cb1df416
DJ
21509 }
21510
c906108c
SS
21511 switch (die->tag)
21512 {
21513 case DW_TAG_label:
e142c38c 21514 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
c906108c 21515 if (attr)
3e29f34a
MR
21516 {
21517 CORE_ADDR addr;
21518
21519 addr = attr_value_as_address (attr);
21520 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
21521 SYMBOL_VALUE_ADDRESS (sym) = addr;
21522 }
0f5238ed
TT
21523 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
21524 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
f1e6e072 21525 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
d3cb6808 21526 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
21527 break;
21528 case DW_TAG_subprogram:
21529 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21530 finish_block. */
f1e6e072 21531 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
e142c38c 21532 attr2 = dwarf2_attr (die, DW_AT_external, cu);
2cfa0c8d
JB
21533 if ((attr2 && (DW_UNSND (attr2) != 0))
21534 || cu->language == language_ada)
c906108c 21535 {
2cfa0c8d
JB
21536 /* Subprograms marked external are stored as a global symbol.
21537 Ada subprograms, whether marked external or not, are always
21538 stored as a global symbol, because we want to be able to
21539 access them globally. For instance, we want to be able
21540 to break on a nested subprogram without having to
21541 specify the context. */
c24bdb02 21542 list_to_add = cu->get_builder ()->get_global_symbols ();
c906108c
SS
21543 }
21544 else
21545 {
e37fd15a 21546 list_to_add = cu->list_in_scope;
c906108c
SS
21547 }
21548 break;
edb3359d
DJ
21549 case DW_TAG_inlined_subroutine:
21550 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21551 finish_block. */
f1e6e072 21552 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
edb3359d 21553 SYMBOL_INLINED (sym) = 1;
481860b3 21554 list_to_add = cu->list_in_scope;
edb3359d 21555 break;
34eaf542
TT
21556 case DW_TAG_template_value_param:
21557 suppress_add = 1;
21558 /* Fall through. */
72929c62 21559 case DW_TAG_constant:
c906108c 21560 case DW_TAG_variable:
254e6b9e 21561 case DW_TAG_member:
0963b4bd
MS
21562 /* Compilation with minimal debug info may result in
21563 variables with missing type entries. Change the
21564 misleading `void' type to something sensible. */
c906108c 21565 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
46a4882b 21566 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_int;
64c50499 21567
e142c38c 21568 attr = dwarf2_attr (die, DW_AT_const_value, cu);
254e6b9e
DE
21569 /* In the case of DW_TAG_member, we should only be called for
21570 static const members. */
21571 if (die->tag == DW_TAG_member)
21572 {
3863f96c
DE
21573 /* dwarf2_add_field uses die_is_declaration,
21574 so we do the same. */
254e6b9e
DE
21575 gdb_assert (die_is_declaration (die, cu));
21576 gdb_assert (attr);
21577 }
c906108c
SS
21578 if (attr)
21579 {
e7c27a73 21580 dwarf2_const_value (attr, sym, cu);
e142c38c 21581 attr2 = dwarf2_attr (die, DW_AT_external, cu);
e37fd15a 21582 if (!suppress_add)
34eaf542
TT
21583 {
21584 if (attr2 && (DW_UNSND (attr2) != 0))
c24bdb02 21585 list_to_add = cu->get_builder ()->get_global_symbols ();
34eaf542 21586 else
e37fd15a 21587 list_to_add = cu->list_in_scope;
34eaf542 21588 }
c906108c
SS
21589 break;
21590 }
e142c38c 21591 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
21592 if (attr)
21593 {
e7c27a73 21594 var_decode_location (attr, sym, cu);
e142c38c 21595 attr2 = dwarf2_attr (die, DW_AT_external, cu);
4357ac6c
TT
21596
21597 /* Fortran explicitly imports any global symbols to the local
21598 scope by DW_TAG_common_block. */
21599 if (cu->language == language_fortran && die->parent
21600 && die->parent->tag == DW_TAG_common_block)
21601 attr2 = NULL;
21602
caac4577
JG
21603 if (SYMBOL_CLASS (sym) == LOC_STATIC
21604 && SYMBOL_VALUE_ADDRESS (sym) == 0
21605 && !dwarf2_per_objfile->has_section_at_zero)
21606 {
21607 /* When a static variable is eliminated by the linker,
21608 the corresponding debug information is not stripped
21609 out, but the variable address is set to null;
21610 do not add such variables into symbol table. */
21611 }
21612 else if (attr2 && (DW_UNSND (attr2) != 0))
1c809c68 21613 {
f55ee35c
JK
21614 /* Workaround gfortran PR debug/40040 - it uses
21615 DW_AT_location for variables in -fPIC libraries which may
21616 get overriden by other libraries/executable and get
21617 a different address. Resolve it by the minimal symbol
21618 which may come from inferior's executable using copy
21619 relocation. Make this workaround only for gfortran as for
21620 other compilers GDB cannot guess the minimal symbol
21621 Fortran mangling kind. */
21622 if (cu->language == language_fortran && die->parent
21623 && die->parent->tag == DW_TAG_module
21624 && cu->producer
28586665 21625 && startswith (cu->producer, "GNU Fortran"))
f1e6e072 21626 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
f55ee35c 21627
1c809c68
TT
21628 /* A variable with DW_AT_external is never static,
21629 but it may be block-scoped. */
804d2729 21630 list_to_add
c24bdb02
KS
21631 = ((cu->list_in_scope
21632 == cu->get_builder ()->get_file_symbols ())
21633 ? cu->get_builder ()->get_global_symbols ()
804d2729 21634 : cu->list_in_scope);
1c809c68 21635 }
c906108c 21636 else
e37fd15a 21637 list_to_add = cu->list_in_scope;
c906108c
SS
21638 }
21639 else
21640 {
21641 /* We do not know the address of this symbol.
c5aa993b
JM
21642 If it is an external symbol and we have type information
21643 for it, enter the symbol as a LOC_UNRESOLVED symbol.
21644 The address of the variable will then be determined from
21645 the minimal symbol table whenever the variable is
21646 referenced. */
e142c38c 21647 attr2 = dwarf2_attr (die, DW_AT_external, cu);
0971de02
TT
21648
21649 /* Fortran explicitly imports any global symbols to the local
21650 scope by DW_TAG_common_block. */
21651 if (cu->language == language_fortran && die->parent
21652 && die->parent->tag == DW_TAG_common_block)
21653 {
21654 /* SYMBOL_CLASS doesn't matter here because
21655 read_common_block is going to reset it. */
21656 if (!suppress_add)
21657 list_to_add = cu->list_in_scope;
21658 }
21659 else if (attr2 && (DW_UNSND (attr2) != 0)
21660 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c 21661 {
0fe7935b
DJ
21662 /* A variable with DW_AT_external is never static, but it
21663 may be block-scoped. */
804d2729 21664 list_to_add
c24bdb02
KS
21665 = ((cu->list_in_scope
21666 == cu->get_builder ()->get_file_symbols ())
21667 ? cu->get_builder ()->get_global_symbols ()
804d2729 21668 : cu->list_in_scope);
0fe7935b 21669
f1e6e072 21670 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
c906108c 21671 }
442ddf59
JK
21672 else if (!die_is_declaration (die, cu))
21673 {
21674 /* Use the default LOC_OPTIMIZED_OUT class. */
21675 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
e37fd15a
SW
21676 if (!suppress_add)
21677 list_to_add = cu->list_in_scope;
442ddf59 21678 }
c906108c
SS
21679 }
21680 break;
21681 case DW_TAG_formal_parameter:
a60f3166
TT
21682 {
21683 /* If we are inside a function, mark this as an argument. If
21684 not, we might be looking at an argument to an inlined function
21685 when we do not have enough information to show inlined frames;
21686 pretend it's a local variable in that case so that the user can
21687 still see it. */
804d2729 21688 struct context_stack *curr
c24bdb02 21689 = cu->get_builder ()->get_current_context_stack ();
a60f3166
TT
21690 if (curr != nullptr && curr->name != nullptr)
21691 SYMBOL_IS_ARGUMENT (sym) = 1;
21692 attr = dwarf2_attr (die, DW_AT_location, cu);
21693 if (attr)
21694 {
21695 var_decode_location (attr, sym, cu);
21696 }
21697 attr = dwarf2_attr (die, DW_AT_const_value, cu);
21698 if (attr)
21699 {
21700 dwarf2_const_value (attr, sym, cu);
21701 }
f346a30d 21702
a60f3166
TT
21703 list_to_add = cu->list_in_scope;
21704 }
c906108c
SS
21705 break;
21706 case DW_TAG_unspecified_parameters:
21707 /* From varargs functions; gdb doesn't seem to have any
21708 interest in this information, so just ignore it for now.
21709 (FIXME?) */
21710 break;
34eaf542
TT
21711 case DW_TAG_template_type_param:
21712 suppress_add = 1;
21713 /* Fall through. */
c906108c 21714 case DW_TAG_class_type:
680b30c7 21715 case DW_TAG_interface_type:
c906108c
SS
21716 case DW_TAG_structure_type:
21717 case DW_TAG_union_type:
72019c9c 21718 case DW_TAG_set_type:
c906108c 21719 case DW_TAG_enumeration_type:
f1e6e072 21720 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21721 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 21722
63d06c5c 21723 {
9c37b5ae 21724 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
63d06c5c
DC
21725 really ever be static objects: otherwise, if you try
21726 to, say, break of a class's method and you're in a file
21727 which doesn't mention that class, it won't work unless
21728 the check for all static symbols in lookup_symbol_aux
21729 saves you. See the OtherFileClass tests in
21730 gdb.c++/namespace.exp. */
21731
e37fd15a 21732 if (!suppress_add)
34eaf542 21733 {
c24bdb02 21734 buildsym_compunit *builder = cu->get_builder ();
804d2729 21735 list_to_add
c24bdb02 21736 = (cu->list_in_scope == builder->get_file_symbols ()
804d2729 21737 && cu->language == language_cplus
c24bdb02 21738 ? builder->get_global_symbols ()
804d2729 21739 : cu->list_in_scope);
63d06c5c 21740
64382290 21741 /* The semantics of C++ state that "struct foo {
9c37b5ae 21742 ... }" also defines a typedef for "foo". */
64382290 21743 if (cu->language == language_cplus
45280282 21744 || cu->language == language_ada
c44af4eb
TT
21745 || cu->language == language_d
21746 || cu->language == language_rust)
64382290
TT
21747 {
21748 /* The symbol's name is already allocated along
21749 with this objfile, so we don't need to
21750 duplicate it for the type. */
21751 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
21752 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
21753 }
63d06c5c
DC
21754 }
21755 }
c906108c
SS
21756 break;
21757 case DW_TAG_typedef:
f1e6e072 21758 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
63d06c5c 21759 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21760 list_to_add = cu->list_in_scope;
63d06c5c 21761 break;
c906108c 21762 case DW_TAG_base_type:
a02abb62 21763 case DW_TAG_subrange_type:
f1e6e072 21764 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21765 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21766 list_to_add = cu->list_in_scope;
c906108c
SS
21767 break;
21768 case DW_TAG_enumerator:
e142c38c 21769 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
21770 if (attr)
21771 {
e7c27a73 21772 dwarf2_const_value (attr, sym, cu);
c906108c 21773 }
63d06c5c
DC
21774 {
21775 /* NOTE: carlton/2003-11-10: See comment above in the
21776 DW_TAG_class_type, etc. block. */
21777
804d2729 21778 list_to_add
c24bdb02 21779 = (cu->list_in_scope == cu->get_builder ()->get_file_symbols ()
804d2729 21780 && cu->language == language_cplus
c24bdb02 21781 ? cu->get_builder ()->get_global_symbols ()
804d2729 21782 : cu->list_in_scope);
63d06c5c 21783 }
c906108c 21784 break;
74921315 21785 case DW_TAG_imported_declaration:
5c4e30ca 21786 case DW_TAG_namespace:
f1e6e072 21787 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
c24bdb02 21788 list_to_add = cu->get_builder ()->get_global_symbols ();
5c4e30ca 21789 break;
530e8392
KB
21790 case DW_TAG_module:
21791 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21792 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
c24bdb02 21793 list_to_add = cu->get_builder ()->get_global_symbols ();
530e8392 21794 break;
4357ac6c 21795 case DW_TAG_common_block:
f1e6e072 21796 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
4357ac6c 21797 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
d3cb6808 21798 add_symbol_to_list (sym, cu->list_in_scope);
4357ac6c 21799 break;
c906108c
SS
21800 default:
21801 /* Not a tag we recognize. Hopefully we aren't processing
21802 trash data, but since we must specifically ignore things
21803 we don't recognize, there is nothing else we should do at
0963b4bd 21804 this point. */
b98664d3 21805 complaint (_("unsupported tag: '%s'"),
4d3c2250 21806 dwarf_tag_name (die->tag));
c906108c
SS
21807 break;
21808 }
df8a16a1 21809
e37fd15a
SW
21810 if (suppress_add)
21811 {
21812 sym->hash_next = objfile->template_symbols;
21813 objfile->template_symbols = sym;
21814 list_to_add = NULL;
21815 }
21816
21817 if (list_to_add != NULL)
d3cb6808 21818 add_symbol_to_list (sym, list_to_add);
e37fd15a 21819
df8a16a1
DJ
21820 /* For the benefit of old versions of GCC, check for anonymous
21821 namespaces based on the demangled name. */
4d4ec4e5 21822 if (!cu->processing_has_namespace_info
94af9270 21823 && cu->language == language_cplus)
c24bdb02 21824 cp_scan_for_anonymous_namespaces (cu->get_builder (), sym, objfile);
c906108c
SS
21825 }
21826 return (sym);
21827}
21828
98bfdba5
PA
21829/* Given an attr with a DW_FORM_dataN value in host byte order,
21830 zero-extend it as appropriate for the symbol's type. The DWARF
21831 standard (v4) is not entirely clear about the meaning of using
21832 DW_FORM_dataN for a constant with a signed type, where the type is
21833 wider than the data. The conclusion of a discussion on the DWARF
21834 list was that this is unspecified. We choose to always zero-extend
21835 because that is the interpretation long in use by GCC. */
c906108c 21836
98bfdba5 21837static gdb_byte *
ff39bb5e 21838dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
12df843f 21839 struct dwarf2_cu *cu, LONGEST *value, int bits)
c906108c 21840{
518817b3 21841 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e17a4113
UW
21842 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
21843 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
98bfdba5
PA
21844 LONGEST l = DW_UNSND (attr);
21845
21846 if (bits < sizeof (*value) * 8)
21847 {
21848 l &= ((LONGEST) 1 << bits) - 1;
21849 *value = l;
21850 }
21851 else if (bits == sizeof (*value) * 8)
21852 *value = l;
21853 else
21854 {
224c3ddb 21855 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
98bfdba5
PA
21856 store_unsigned_integer (bytes, bits / 8, byte_order, l);
21857 return bytes;
21858 }
21859
21860 return NULL;
21861}
21862
21863/* Read a constant value from an attribute. Either set *VALUE, or if
21864 the value does not fit in *VALUE, set *BYTES - either already
21865 allocated on the objfile obstack, or newly allocated on OBSTACK,
21866 or, set *BATON, if we translated the constant to a location
21867 expression. */
21868
21869static void
ff39bb5e 21870dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
98bfdba5
PA
21871 const char *name, struct obstack *obstack,
21872 struct dwarf2_cu *cu,
d521ce57 21873 LONGEST *value, const gdb_byte **bytes,
98bfdba5
PA
21874 struct dwarf2_locexpr_baton **baton)
21875{
518817b3 21876 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
98bfdba5 21877 struct comp_unit_head *cu_header = &cu->header;
c906108c 21878 struct dwarf_block *blk;
98bfdba5
PA
21879 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
21880 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
21881
21882 *value = 0;
21883 *bytes = NULL;
21884 *baton = NULL;
c906108c
SS
21885
21886 switch (attr->form)
21887 {
21888 case DW_FORM_addr:
336d760d 21889 case DW_FORM_addrx:
3019eac3 21890 case DW_FORM_GNU_addr_index:
ac56253d 21891 {
ac56253d
TT
21892 gdb_byte *data;
21893
98bfdba5
PA
21894 if (TYPE_LENGTH (type) != cu_header->addr_size)
21895 dwarf2_const_value_length_mismatch_complaint (name,
ac56253d 21896 cu_header->addr_size,
98bfdba5 21897 TYPE_LENGTH (type));
ac56253d
TT
21898 /* Symbols of this form are reasonably rare, so we just
21899 piggyback on the existing location code rather than writing
21900 a new implementation of symbol_computed_ops. */
8d749320 21901 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
98bfdba5
PA
21902 (*baton)->per_cu = cu->per_cu;
21903 gdb_assert ((*baton)->per_cu);
ac56253d 21904
98bfdba5 21905 (*baton)->size = 2 + cu_header->addr_size;
224c3ddb 21906 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
98bfdba5 21907 (*baton)->data = data;
ac56253d
TT
21908
21909 data[0] = DW_OP_addr;
21910 store_unsigned_integer (&data[1], cu_header->addr_size,
21911 byte_order, DW_ADDR (attr));
21912 data[cu_header->addr_size + 1] = DW_OP_stack_value;
ac56253d 21913 }
c906108c 21914 break;
4ac36638 21915 case DW_FORM_string:
93b5768b 21916 case DW_FORM_strp:
cf532bd1 21917 case DW_FORM_strx:
3019eac3 21918 case DW_FORM_GNU_str_index:
36586728 21919 case DW_FORM_GNU_strp_alt:
98bfdba5
PA
21920 /* DW_STRING is already allocated on the objfile obstack, point
21921 directly to it. */
d521ce57 21922 *bytes = (const gdb_byte *) DW_STRING (attr);
93b5768b 21923 break;
c906108c
SS
21924 case DW_FORM_block1:
21925 case DW_FORM_block2:
21926 case DW_FORM_block4:
21927 case DW_FORM_block:
2dc7f7b3 21928 case DW_FORM_exprloc:
0224619f 21929 case DW_FORM_data16:
c906108c 21930 blk = DW_BLOCK (attr);
98bfdba5
PA
21931 if (TYPE_LENGTH (type) != blk->size)
21932 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
21933 TYPE_LENGTH (type));
21934 *bytes = blk->data;
c906108c 21935 break;
2df3850c
JM
21936
21937 /* The DW_AT_const_value attributes are supposed to carry the
21938 symbol's value "represented as it would be on the target
21939 architecture." By the time we get here, it's already been
21940 converted to host endianness, so we just need to sign- or
21941 zero-extend it as appropriate. */
21942 case DW_FORM_data1:
3aef2284 21943 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
2df3850c 21944 break;
c906108c 21945 case DW_FORM_data2:
3aef2284 21946 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
2df3850c 21947 break;
c906108c 21948 case DW_FORM_data4:
3aef2284 21949 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
2df3850c 21950 break;
c906108c 21951 case DW_FORM_data8:
3aef2284 21952 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
2df3850c
JM
21953 break;
21954
c906108c 21955 case DW_FORM_sdata:
663c44ac 21956 case DW_FORM_implicit_const:
98bfdba5 21957 *value = DW_SND (attr);
2df3850c
JM
21958 break;
21959
c906108c 21960 case DW_FORM_udata:
98bfdba5 21961 *value = DW_UNSND (attr);
c906108c 21962 break;
2df3850c 21963
c906108c 21964 default:
b98664d3 21965 complaint (_("unsupported const value attribute form: '%s'"),
4d3c2250 21966 dwarf_form_name (attr->form));
98bfdba5 21967 *value = 0;
c906108c
SS
21968 break;
21969 }
21970}
21971
2df3850c 21972
98bfdba5
PA
21973/* Copy constant value from an attribute to a symbol. */
21974
2df3850c 21975static void
ff39bb5e 21976dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
98bfdba5 21977 struct dwarf2_cu *cu)
2df3850c 21978{
518817b3 21979 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
12df843f 21980 LONGEST value;
d521ce57 21981 const gdb_byte *bytes;
98bfdba5 21982 struct dwarf2_locexpr_baton *baton;
2df3850c 21983
98bfdba5
PA
21984 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
21985 SYMBOL_PRINT_NAME (sym),
21986 &objfile->objfile_obstack, cu,
21987 &value, &bytes, &baton);
2df3850c 21988
98bfdba5
PA
21989 if (baton != NULL)
21990 {
98bfdba5 21991 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 21992 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
98bfdba5
PA
21993 }
21994 else if (bytes != NULL)
21995 {
21996 SYMBOL_VALUE_BYTES (sym) = bytes;
f1e6e072 21997 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
98bfdba5
PA
21998 }
21999 else
22000 {
22001 SYMBOL_VALUE (sym) = value;
f1e6e072 22002 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
98bfdba5 22003 }
2df3850c
JM
22004}
22005
c906108c
SS
22006/* Return the type of the die in question using its DW_AT_type attribute. */
22007
22008static struct type *
e7c27a73 22009die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22010{
c906108c 22011 struct attribute *type_attr;
c906108c 22012
e142c38c 22013 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
22014 if (!type_attr)
22015 {
518817b3 22016 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 22017 /* A missing DW_AT_type represents a void type. */
518817b3 22018 return objfile_type (objfile)->builtin_void;
c906108c 22019 }
348e048f 22020
673bfd45 22021 return lookup_die_type (die, type_attr, cu);
c906108c
SS
22022}
22023
b4ba55a1
JB
22024/* True iff CU's producer generates GNAT Ada auxiliary information
22025 that allows to find parallel types through that information instead
22026 of having to do expensive parallel lookups by type name. */
22027
22028static int
22029need_gnat_info (struct dwarf2_cu *cu)
22030{
de4cb04a
JB
22031 /* Assume that the Ada compiler was GNAT, which always produces
22032 the auxiliary information. */
22033 return (cu->language == language_ada);
b4ba55a1
JB
22034}
22035
b4ba55a1
JB
22036/* Return the auxiliary type of the die in question using its
22037 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
22038 attribute is not present. */
22039
22040static struct type *
22041die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
22042{
b4ba55a1 22043 struct attribute *type_attr;
b4ba55a1
JB
22044
22045 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
22046 if (!type_attr)
22047 return NULL;
22048
673bfd45 22049 return lookup_die_type (die, type_attr, cu);
b4ba55a1
JB
22050}
22051
22052/* If DIE has a descriptive_type attribute, then set the TYPE's
22053 descriptive type accordingly. */
22054
22055static void
22056set_descriptive_type (struct type *type, struct die_info *die,
22057 struct dwarf2_cu *cu)
22058{
22059 struct type *descriptive_type = die_descriptive_type (die, cu);
22060
22061 if (descriptive_type)
22062 {
22063 ALLOCATE_GNAT_AUX_TYPE (type);
22064 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
22065 }
22066}
22067
c906108c
SS
22068/* Return the containing type of the die in question using its
22069 DW_AT_containing_type attribute. */
22070
22071static struct type *
e7c27a73 22072die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22073{
c906108c 22074 struct attribute *type_attr;
518817b3 22075 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 22076
e142c38c 22077 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
33ac96f0
JK
22078 if (!type_attr)
22079 error (_("Dwarf Error: Problem turning containing type into gdb type "
518817b3 22080 "[in module %s]"), objfile_name (objfile));
33ac96f0 22081
673bfd45 22082 return lookup_die_type (die, type_attr, cu);
c906108c
SS
22083}
22084
ac9ec31b
DE
22085/* Return an error marker type to use for the ill formed type in DIE/CU. */
22086
22087static struct type *
22088build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
22089{
518817b3
SM
22090 struct dwarf2_per_objfile *dwarf2_per_objfile
22091 = cu->per_cu->dwarf2_per_objfile;
ac9ec31b 22092 struct objfile *objfile = dwarf2_per_objfile->objfile;
528e1572 22093 char *saved;
ac9ec31b 22094
528e1572
SM
22095 std::string message
22096 = string_printf (_("<unknown type in %s, CU %s, DIE %s>"),
22097 objfile_name (objfile),
22098 sect_offset_str (cu->header.sect_off),
22099 sect_offset_str (die->sect_off));
224c3ddb 22100 saved = (char *) obstack_copy0 (&objfile->objfile_obstack,
528e1572 22101 message.c_str (), message.length ());
ac9ec31b 22102
19f392bc 22103 return init_type (objfile, TYPE_CODE_ERROR, 0, saved);
ac9ec31b
DE
22104}
22105
673bfd45 22106/* Look up the type of DIE in CU using its type attribute ATTR.
ac9ec31b
DE
22107 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
22108 DW_AT_containing_type.
673bfd45
DE
22109 If there is no type substitute an error marker. */
22110
c906108c 22111static struct type *
ff39bb5e 22112lookup_die_type (struct die_info *die, const struct attribute *attr,
673bfd45 22113 struct dwarf2_cu *cu)
c906108c 22114{
518817b3
SM
22115 struct dwarf2_per_objfile *dwarf2_per_objfile
22116 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 22117 struct objfile *objfile = dwarf2_per_objfile->objfile;
f792889a
DJ
22118 struct type *this_type;
22119
ac9ec31b
DE
22120 gdb_assert (attr->name == DW_AT_type
22121 || attr->name == DW_AT_GNAT_descriptive_type
22122 || attr->name == DW_AT_containing_type);
22123
673bfd45
DE
22124 /* First see if we have it cached. */
22125
36586728
TT
22126 if (attr->form == DW_FORM_GNU_ref_alt)
22127 {
22128 struct dwarf2_per_cu_data *per_cu;
9c541725 22129 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
36586728 22130
ed2dc618
SM
22131 per_cu = dwarf2_find_containing_comp_unit (sect_off, 1,
22132 dwarf2_per_objfile);
9c541725 22133 this_type = get_die_type_at_offset (sect_off, per_cu);
36586728 22134 }
7771576e 22135 else if (attr_form_is_ref (attr))
673bfd45 22136 {
9c541725 22137 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
673bfd45 22138
9c541725 22139 this_type = get_die_type_at_offset (sect_off, cu->per_cu);
673bfd45 22140 }
55f1336d 22141 else if (attr->form == DW_FORM_ref_sig8)
673bfd45 22142 {
ac9ec31b 22143 ULONGEST signature = DW_SIGNATURE (attr);
673bfd45 22144
ac9ec31b 22145 return get_signatured_type (die, signature, cu);
673bfd45
DE
22146 }
22147 else
22148 {
b98664d3 22149 complaint (_("Dwarf Error: Bad type attribute %s in DIE"
9d8780f0
SM
22150 " at %s [in module %s]"),
22151 dwarf_attr_name (attr->name), sect_offset_str (die->sect_off),
4262abfb 22152 objfile_name (objfile));
ac9ec31b 22153 return build_error_marker_type (cu, die);
673bfd45
DE
22154 }
22155
22156 /* If not cached we need to read it in. */
22157
22158 if (this_type == NULL)
22159 {
ac9ec31b 22160 struct die_info *type_die = NULL;
673bfd45
DE
22161 struct dwarf2_cu *type_cu = cu;
22162
7771576e 22163 if (attr_form_is_ref (attr))
ac9ec31b
DE
22164 type_die = follow_die_ref (die, attr, &type_cu);
22165 if (type_die == NULL)
22166 return build_error_marker_type (cu, die);
22167 /* If we find the type now, it's probably because the type came
3019eac3
DE
22168 from an inter-CU reference and the type's CU got expanded before
22169 ours. */
ac9ec31b 22170 this_type = read_type_die (type_die, type_cu);
673bfd45
DE
22171 }
22172
22173 /* If we still don't have a type use an error marker. */
22174
22175 if (this_type == NULL)
ac9ec31b 22176 return build_error_marker_type (cu, die);
673bfd45 22177
f792889a 22178 return this_type;
c906108c
SS
22179}
22180
673bfd45
DE
22181/* Return the type in DIE, CU.
22182 Returns NULL for invalid types.
22183
02142a6c 22184 This first does a lookup in die_type_hash,
673bfd45
DE
22185 and only reads the die in if necessary.
22186
22187 NOTE: This can be called when reading in partial or full symbols. */
22188
f792889a 22189static struct type *
e7c27a73 22190read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22191{
f792889a
DJ
22192 struct type *this_type;
22193
22194 this_type = get_die_type (die, cu);
22195 if (this_type)
22196 return this_type;
22197
673bfd45
DE
22198 return read_type_die_1 (die, cu);
22199}
22200
22201/* Read the type in DIE, CU.
22202 Returns NULL for invalid types. */
22203
22204static struct type *
22205read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
22206{
22207 struct type *this_type = NULL;
22208
c906108c
SS
22209 switch (die->tag)
22210 {
22211 case DW_TAG_class_type:
680b30c7 22212 case DW_TAG_interface_type:
c906108c
SS
22213 case DW_TAG_structure_type:
22214 case DW_TAG_union_type:
f792889a 22215 this_type = read_structure_type (die, cu);
c906108c
SS
22216 break;
22217 case DW_TAG_enumeration_type:
f792889a 22218 this_type = read_enumeration_type (die, cu);
c906108c
SS
22219 break;
22220 case DW_TAG_subprogram:
22221 case DW_TAG_subroutine_type:
edb3359d 22222 case DW_TAG_inlined_subroutine:
f792889a 22223 this_type = read_subroutine_type (die, cu);
c906108c
SS
22224 break;
22225 case DW_TAG_array_type:
f792889a 22226 this_type = read_array_type (die, cu);
c906108c 22227 break;
72019c9c 22228 case DW_TAG_set_type:
f792889a 22229 this_type = read_set_type (die, cu);
72019c9c 22230 break;
c906108c 22231 case DW_TAG_pointer_type:
f792889a 22232 this_type = read_tag_pointer_type (die, cu);
c906108c
SS
22233 break;
22234 case DW_TAG_ptr_to_member_type:
f792889a 22235 this_type = read_tag_ptr_to_member_type (die, cu);
c906108c
SS
22236 break;
22237 case DW_TAG_reference_type:
4297a3f0
AV
22238 this_type = read_tag_reference_type (die, cu, TYPE_CODE_REF);
22239 break;
22240 case DW_TAG_rvalue_reference_type:
22241 this_type = read_tag_reference_type (die, cu, TYPE_CODE_RVALUE_REF);
c906108c
SS
22242 break;
22243 case DW_TAG_const_type:
f792889a 22244 this_type = read_tag_const_type (die, cu);
c906108c
SS
22245 break;
22246 case DW_TAG_volatile_type:
f792889a 22247 this_type = read_tag_volatile_type (die, cu);
c906108c 22248 break;
06d66ee9
TT
22249 case DW_TAG_restrict_type:
22250 this_type = read_tag_restrict_type (die, cu);
22251 break;
c906108c 22252 case DW_TAG_string_type:
f792889a 22253 this_type = read_tag_string_type (die, cu);
c906108c
SS
22254 break;
22255 case DW_TAG_typedef:
f792889a 22256 this_type = read_typedef (die, cu);
c906108c 22257 break;
a02abb62 22258 case DW_TAG_subrange_type:
f792889a 22259 this_type = read_subrange_type (die, cu);
a02abb62 22260 break;
c906108c 22261 case DW_TAG_base_type:
f792889a 22262 this_type = read_base_type (die, cu);
c906108c 22263 break;
81a17f79 22264 case DW_TAG_unspecified_type:
f792889a 22265 this_type = read_unspecified_type (die, cu);
81a17f79 22266 break;
0114d602
DJ
22267 case DW_TAG_namespace:
22268 this_type = read_namespace_type (die, cu);
22269 break;
f55ee35c
JK
22270 case DW_TAG_module:
22271 this_type = read_module_type (die, cu);
22272 break;
a2c2acaf
MW
22273 case DW_TAG_atomic_type:
22274 this_type = read_tag_atomic_type (die, cu);
22275 break;
c906108c 22276 default:
b98664d3 22277 complaint (_("unexpected tag in read_type_die: '%s'"),
4d3c2250 22278 dwarf_tag_name (die->tag));
c906108c
SS
22279 break;
22280 }
63d06c5c 22281
f792889a 22282 return this_type;
63d06c5c
DC
22283}
22284
abc72ce4
DE
22285/* See if we can figure out if the class lives in a namespace. We do
22286 this by looking for a member function; its demangled name will
22287 contain namespace info, if there is any.
22288 Return the computed name or NULL.
22289 Space for the result is allocated on the objfile's obstack.
22290 This is the full-die version of guess_partial_die_structure_name.
22291 In this case we know DIE has no useful parent. */
22292
22293static char *
22294guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
22295{
22296 struct die_info *spec_die;
22297 struct dwarf2_cu *spec_cu;
22298 struct die_info *child;
518817b3 22299 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
abc72ce4
DE
22300
22301 spec_cu = cu;
22302 spec_die = die_specification (die, &spec_cu);
22303 if (spec_die != NULL)
22304 {
22305 die = spec_die;
22306 cu = spec_cu;
22307 }
22308
22309 for (child = die->child;
22310 child != NULL;
22311 child = child->sibling)
22312 {
22313 if (child->tag == DW_TAG_subprogram)
22314 {
73b9be8b 22315 const char *linkage_name = dw2_linkage_name (child, cu);
abc72ce4 22316
7d45c7c3 22317 if (linkage_name != NULL)
abc72ce4
DE
22318 {
22319 char *actual_name
22320 = language_class_name_from_physname (cu->language_defn,
7d45c7c3 22321 linkage_name);
abc72ce4
DE
22322 char *name = NULL;
22323
22324 if (actual_name != NULL)
22325 {
15d034d0 22326 const char *die_name = dwarf2_name (die, cu);
abc72ce4
DE
22327
22328 if (die_name != NULL
22329 && strcmp (die_name, actual_name) != 0)
22330 {
22331 /* Strip off the class name from the full name.
22332 We want the prefix. */
22333 int die_name_len = strlen (die_name);
22334 int actual_name_len = strlen (actual_name);
22335
22336 /* Test for '::' as a sanity check. */
22337 if (actual_name_len > die_name_len + 2
3e43a32a
MS
22338 && actual_name[actual_name_len
22339 - die_name_len - 1] == ':')
224c3ddb 22340 name = (char *) obstack_copy0 (
e3b94546 22341 &objfile->per_bfd->storage_obstack,
224c3ddb 22342 actual_name, actual_name_len - die_name_len - 2);
abc72ce4
DE
22343 }
22344 }
22345 xfree (actual_name);
22346 return name;
22347 }
22348 }
22349 }
22350
22351 return NULL;
22352}
22353
96408a79
SA
22354/* GCC might emit a nameless typedef that has a linkage name. Determine the
22355 prefix part in such case. See
22356 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22357
a121b7c1 22358static const char *
96408a79
SA
22359anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
22360{
22361 struct attribute *attr;
e6a959d6 22362 const char *base;
96408a79
SA
22363
22364 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
22365 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
22366 return NULL;
22367
7d45c7c3 22368 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
96408a79
SA
22369 return NULL;
22370
73b9be8b 22371 attr = dw2_linkage_name_attr (die, cu);
96408a79
SA
22372 if (attr == NULL || DW_STRING (attr) == NULL)
22373 return NULL;
22374
22375 /* dwarf2_name had to be already called. */
22376 gdb_assert (DW_STRING_IS_CANONICAL (attr));
22377
22378 /* Strip the base name, keep any leading namespaces/classes. */
22379 base = strrchr (DW_STRING (attr), ':');
22380 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
22381 return "";
22382
518817b3 22383 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e3b94546 22384 return (char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb
SM
22385 DW_STRING (attr),
22386 &base[-1] - DW_STRING (attr));
96408a79
SA
22387}
22388
fdde2d81 22389/* Return the name of the namespace/class that DIE is defined within,
0114d602 22390 or "" if we can't tell. The caller should not xfree the result.
fdde2d81 22391
0114d602
DJ
22392 For example, if we're within the method foo() in the following
22393 code:
22394
22395 namespace N {
22396 class C {
22397 void foo () {
22398 }
22399 };
22400 }
22401
22402 then determine_prefix on foo's die will return "N::C". */
fdde2d81 22403
0d5cff50 22404static const char *
e142c38c 22405determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 22406{
518817b3
SM
22407 struct dwarf2_per_objfile *dwarf2_per_objfile
22408 = cu->per_cu->dwarf2_per_objfile;
0114d602
DJ
22409 struct die_info *parent, *spec_die;
22410 struct dwarf2_cu *spec_cu;
22411 struct type *parent_type;
a121b7c1 22412 const char *retval;
63d06c5c 22413
9c37b5ae 22414 if (cu->language != language_cplus
c44af4eb
TT
22415 && cu->language != language_fortran && cu->language != language_d
22416 && cu->language != language_rust)
0114d602
DJ
22417 return "";
22418
96408a79
SA
22419 retval = anonymous_struct_prefix (die, cu);
22420 if (retval)
22421 return retval;
22422
0114d602
DJ
22423 /* We have to be careful in the presence of DW_AT_specification.
22424 For example, with GCC 3.4, given the code
22425
22426 namespace N {
22427 void foo() {
22428 // Definition of N::foo.
22429 }
22430 }
22431
22432 then we'll have a tree of DIEs like this:
22433
22434 1: DW_TAG_compile_unit
22435 2: DW_TAG_namespace // N
22436 3: DW_TAG_subprogram // declaration of N::foo
22437 4: DW_TAG_subprogram // definition of N::foo
22438 DW_AT_specification // refers to die #3
22439
22440 Thus, when processing die #4, we have to pretend that we're in
22441 the context of its DW_AT_specification, namely the contex of die
22442 #3. */
22443 spec_cu = cu;
22444 spec_die = die_specification (die, &spec_cu);
22445 if (spec_die == NULL)
22446 parent = die->parent;
22447 else
63d06c5c 22448 {
0114d602
DJ
22449 parent = spec_die->parent;
22450 cu = spec_cu;
63d06c5c 22451 }
0114d602
DJ
22452
22453 if (parent == NULL)
22454 return "";
98bfdba5
PA
22455 else if (parent->building_fullname)
22456 {
22457 const char *name;
22458 const char *parent_name;
22459
22460 /* It has been seen on RealView 2.2 built binaries,
22461 DW_TAG_template_type_param types actually _defined_ as
22462 children of the parent class:
22463
22464 enum E {};
22465 template class <class Enum> Class{};
22466 Class<enum E> class_e;
22467
22468 1: DW_TAG_class_type (Class)
22469 2: DW_TAG_enumeration_type (E)
22470 3: DW_TAG_enumerator (enum1:0)
22471 3: DW_TAG_enumerator (enum2:1)
22472 ...
22473 2: DW_TAG_template_type_param
22474 DW_AT_type DW_FORM_ref_udata (E)
22475
22476 Besides being broken debug info, it can put GDB into an
22477 infinite loop. Consider:
22478
22479 When we're building the full name for Class<E>, we'll start
22480 at Class, and go look over its template type parameters,
22481 finding E. We'll then try to build the full name of E, and
22482 reach here. We're now trying to build the full name of E,
22483 and look over the parent DIE for containing scope. In the
22484 broken case, if we followed the parent DIE of E, we'd again
22485 find Class, and once again go look at its template type
22486 arguments, etc., etc. Simply don't consider such parent die
22487 as source-level parent of this die (it can't be, the language
22488 doesn't allow it), and break the loop here. */
22489 name = dwarf2_name (die, cu);
22490 parent_name = dwarf2_name (parent, cu);
b98664d3 22491 complaint (_("template param type '%s' defined within parent '%s'"),
98bfdba5
PA
22492 name ? name : "<unknown>",
22493 parent_name ? parent_name : "<unknown>");
22494 return "";
22495 }
63d06c5c 22496 else
0114d602
DJ
22497 switch (parent->tag)
22498 {
63d06c5c 22499 case DW_TAG_namespace:
0114d602 22500 parent_type = read_type_die (parent, cu);
acebe513
UW
22501 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
22502 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
22503 Work around this problem here. */
22504 if (cu->language == language_cplus
e86ca25f 22505 && strcmp (TYPE_NAME (parent_type), "::") == 0)
acebe513 22506 return "";
0114d602 22507 /* We give a name to even anonymous namespaces. */
e86ca25f 22508 return TYPE_NAME (parent_type);
63d06c5c 22509 case DW_TAG_class_type:
680b30c7 22510 case DW_TAG_interface_type:
63d06c5c 22511 case DW_TAG_structure_type:
0114d602 22512 case DW_TAG_union_type:
f55ee35c 22513 case DW_TAG_module:
0114d602 22514 parent_type = read_type_die (parent, cu);
e86ca25f
TT
22515 if (TYPE_NAME (parent_type) != NULL)
22516 return TYPE_NAME (parent_type);
0114d602
DJ
22517 else
22518 /* An anonymous structure is only allowed non-static data
22519 members; no typedefs, no member functions, et cetera.
22520 So it does not need a prefix. */
22521 return "";
abc72ce4 22522 case DW_TAG_compile_unit:
95554aad 22523 case DW_TAG_partial_unit:
abc72ce4
DE
22524 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
22525 if (cu->language == language_cplus
fd5866f6 22526 && !dwarf2_per_objfile->types.empty ()
abc72ce4
DE
22527 && die->child != NULL
22528 && (die->tag == DW_TAG_class_type
22529 || die->tag == DW_TAG_structure_type
22530 || die->tag == DW_TAG_union_type))
22531 {
22532 char *name = guess_full_die_structure_name (die, cu);
22533 if (name != NULL)
22534 return name;
22535 }
22536 return "";
3d567982
TT
22537 case DW_TAG_enumeration_type:
22538 parent_type = read_type_die (parent, cu);
22539 if (TYPE_DECLARED_CLASS (parent_type))
22540 {
e86ca25f
TT
22541 if (TYPE_NAME (parent_type) != NULL)
22542 return TYPE_NAME (parent_type);
3d567982
TT
22543 return "";
22544 }
22545 /* Fall through. */
63d06c5c 22546 default:
8176b9b8 22547 return determine_prefix (parent, cu);
63d06c5c 22548 }
63d06c5c
DC
22549}
22550
3e43a32a
MS
22551/* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
22552 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
22553 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
22554 an obconcat, otherwise allocate storage for the result. The CU argument is
22555 used to determine the language and hence, the appropriate separator. */
987504bb 22556
f55ee35c 22557#define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
63d06c5c
DC
22558
22559static char *
f55ee35c
JK
22560typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
22561 int physname, struct dwarf2_cu *cu)
63d06c5c 22562{
f55ee35c 22563 const char *lead = "";
5c315b68 22564 const char *sep;
63d06c5c 22565
3e43a32a
MS
22566 if (suffix == NULL || suffix[0] == '\0'
22567 || prefix == NULL || prefix[0] == '\0')
987504bb 22568 sep = "";
45280282
IB
22569 else if (cu->language == language_d)
22570 {
22571 /* For D, the 'main' function could be defined in any module, but it
22572 should never be prefixed. */
22573 if (strcmp (suffix, "D main") == 0)
22574 {
22575 prefix = "";
22576 sep = "";
22577 }
22578 else
22579 sep = ".";
22580 }
f55ee35c
JK
22581 else if (cu->language == language_fortran && physname)
22582 {
22583 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
22584 DW_AT_MIPS_linkage_name is preferred and used instead. */
22585
22586 lead = "__";
22587 sep = "_MOD_";
22588 }
987504bb
JJ
22589 else
22590 sep = "::";
63d06c5c 22591
6dd47d34
DE
22592 if (prefix == NULL)
22593 prefix = "";
22594 if (suffix == NULL)
22595 suffix = "";
22596
987504bb
JJ
22597 if (obs == NULL)
22598 {
3e43a32a 22599 char *retval
224c3ddb
SM
22600 = ((char *)
22601 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
9a619af0 22602
f55ee35c
JK
22603 strcpy (retval, lead);
22604 strcat (retval, prefix);
6dd47d34
DE
22605 strcat (retval, sep);
22606 strcat (retval, suffix);
63d06c5c
DC
22607 return retval;
22608 }
987504bb
JJ
22609 else
22610 {
22611 /* We have an obstack. */
f55ee35c 22612 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
987504bb 22613 }
63d06c5c
DC
22614}
22615
c906108c
SS
22616/* Return sibling of die, NULL if no sibling. */
22617
f9aca02d 22618static struct die_info *
fba45db2 22619sibling_die (struct die_info *die)
c906108c 22620{
639d11d3 22621 return die->sibling;
c906108c
SS
22622}
22623
71c25dea
TT
22624/* Get name of a die, return NULL if not found. */
22625
15d034d0
TT
22626static const char *
22627dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
71c25dea
TT
22628 struct obstack *obstack)
22629{
22630 if (name && cu->language == language_cplus)
22631 {
2f408ecb 22632 std::string canon_name = cp_canonicalize_string (name);
71c25dea 22633
2f408ecb 22634 if (!canon_name.empty ())
71c25dea 22635 {
2f408ecb
PA
22636 if (canon_name != name)
22637 name = (const char *) obstack_copy0 (obstack,
22638 canon_name.c_str (),
22639 canon_name.length ());
71c25dea
TT
22640 }
22641 }
22642
22643 return name;
c906108c
SS
22644}
22645
96553a0c
DE
22646/* Get name of a die, return NULL if not found.
22647 Anonymous namespaces are converted to their magic string. */
9219021c 22648
15d034d0 22649static const char *
e142c38c 22650dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
22651{
22652 struct attribute *attr;
518817b3 22653 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
9219021c 22654
e142c38c 22655 attr = dwarf2_attr (die, DW_AT_name, cu);
53832f31 22656 if ((!attr || !DW_STRING (attr))
96553a0c 22657 && die->tag != DW_TAG_namespace
53832f31
TT
22658 && die->tag != DW_TAG_class_type
22659 && die->tag != DW_TAG_interface_type
22660 && die->tag != DW_TAG_structure_type
22661 && die->tag != DW_TAG_union_type)
71c25dea
TT
22662 return NULL;
22663
22664 switch (die->tag)
22665 {
22666 case DW_TAG_compile_unit:
95554aad 22667 case DW_TAG_partial_unit:
71c25dea
TT
22668 /* Compilation units have a DW_AT_name that is a filename, not
22669 a source language identifier. */
22670 case DW_TAG_enumeration_type:
22671 case DW_TAG_enumerator:
22672 /* These tags always have simple identifiers already; no need
22673 to canonicalize them. */
22674 return DW_STRING (attr);
907af001 22675
96553a0c
DE
22676 case DW_TAG_namespace:
22677 if (attr != NULL && DW_STRING (attr) != NULL)
22678 return DW_STRING (attr);
22679 return CP_ANONYMOUS_NAMESPACE_STR;
22680
907af001
UW
22681 case DW_TAG_class_type:
22682 case DW_TAG_interface_type:
22683 case DW_TAG_structure_type:
22684 case DW_TAG_union_type:
22685 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
22686 structures or unions. These were of the form "._%d" in GCC 4.1,
22687 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
22688 and GCC 4.4. We work around this problem by ignoring these. */
53832f31 22689 if (attr && DW_STRING (attr)
61012eef
GB
22690 && (startswith (DW_STRING (attr), "._")
22691 || startswith (DW_STRING (attr), "<anonymous")))
907af001 22692 return NULL;
53832f31
TT
22693
22694 /* GCC might emit a nameless typedef that has a linkage name. See
22695 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22696 if (!attr || DW_STRING (attr) == NULL)
22697 {
df5c6c50 22698 char *demangled = NULL;
53832f31 22699
73b9be8b 22700 attr = dw2_linkage_name_attr (die, cu);
53832f31
TT
22701 if (attr == NULL || DW_STRING (attr) == NULL)
22702 return NULL;
22703
df5c6c50
JK
22704 /* Avoid demangling DW_STRING (attr) the second time on a second
22705 call for the same DIE. */
22706 if (!DW_STRING_IS_CANONICAL (attr))
8de20a37 22707 demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
53832f31
TT
22708
22709 if (demangled)
22710 {
e6a959d6 22711 const char *base;
96408a79 22712
53832f31 22713 /* FIXME: we already did this for the partial symbol... */
34a68019 22714 DW_STRING (attr)
224c3ddb 22715 = ((const char *)
e3b94546 22716 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb 22717 demangled, strlen (demangled)));
53832f31
TT
22718 DW_STRING_IS_CANONICAL (attr) = 1;
22719 xfree (demangled);
96408a79
SA
22720
22721 /* Strip any leading namespaces/classes, keep only the base name.
22722 DW_AT_name for named DIEs does not contain the prefixes. */
22723 base = strrchr (DW_STRING (attr), ':');
22724 if (base && base > DW_STRING (attr) && base[-1] == ':')
22725 return &base[1];
22726 else
22727 return DW_STRING (attr);
53832f31
TT
22728 }
22729 }
907af001
UW
22730 break;
22731
71c25dea 22732 default:
907af001
UW
22733 break;
22734 }
22735
22736 if (!DW_STRING_IS_CANONICAL (attr))
22737 {
22738 DW_STRING (attr)
22739 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
e3b94546 22740 &objfile->per_bfd->storage_obstack);
907af001 22741 DW_STRING_IS_CANONICAL (attr) = 1;
71c25dea 22742 }
907af001 22743 return DW_STRING (attr);
9219021c
DC
22744}
22745
22746/* Return the die that this die in an extension of, or NULL if there
f2f0e013
DJ
22747 is none. *EXT_CU is the CU containing DIE on input, and the CU
22748 containing the return value on output. */
9219021c
DC
22749
22750static struct die_info *
f2f0e013 22751dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9219021c
DC
22752{
22753 struct attribute *attr;
9219021c 22754
f2f0e013 22755 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9219021c
DC
22756 if (attr == NULL)
22757 return NULL;
22758
f2f0e013 22759 return follow_die_ref (die, attr, ext_cu);
9219021c
DC
22760}
22761
fa9c3fa0
TT
22762/* A convenience function that returns an "unknown" DWARF name,
22763 including the value of V. STR is the name of the entity being
22764 printed, e.g., "TAG". */
22765
22766static const char *
22767dwarf_unknown (const char *str, unsigned v)
22768{
22769 char *cell = get_print_cell ();
22770 xsnprintf (cell, PRINT_CELL_SIZE, "DW_%s_<unknown: %u>", str, v);
22771 return cell;
22772}
22773
c906108c
SS
22774/* Convert a DIE tag into its string name. */
22775
f39c6ffd 22776static const char *
aa1ee363 22777dwarf_tag_name (unsigned tag)
c906108c 22778{
f39c6ffd
TT
22779 const char *name = get_DW_TAG_name (tag);
22780
22781 if (name == NULL)
fa9c3fa0 22782 return dwarf_unknown ("TAG", tag);
f39c6ffd
TT
22783
22784 return name;
c906108c
SS
22785}
22786
22787/* Convert a DWARF attribute code into its string name. */
22788
f39c6ffd 22789static const char *
aa1ee363 22790dwarf_attr_name (unsigned attr)
c906108c 22791{
f39c6ffd
TT
22792 const char *name;
22793
c764a876 22794#ifdef MIPS /* collides with DW_AT_HP_block_index */
f39c6ffd
TT
22795 if (attr == DW_AT_MIPS_fde)
22796 return "DW_AT_MIPS_fde";
22797#else
22798 if (attr == DW_AT_HP_block_index)
22799 return "DW_AT_HP_block_index";
c764a876 22800#endif
f39c6ffd
TT
22801
22802 name = get_DW_AT_name (attr);
22803
22804 if (name == NULL)
fa9c3fa0 22805 return dwarf_unknown ("AT", attr);
f39c6ffd
TT
22806
22807 return name;
c906108c
SS
22808}
22809
22810/* Convert a DWARF value form code into its string name. */
22811
f39c6ffd 22812static const char *
aa1ee363 22813dwarf_form_name (unsigned form)
c906108c 22814{
f39c6ffd
TT
22815 const char *name = get_DW_FORM_name (form);
22816
22817 if (name == NULL)
fa9c3fa0 22818 return dwarf_unknown ("FORM", form);
f39c6ffd
TT
22819
22820 return name;
c906108c
SS
22821}
22822
a121b7c1 22823static const char *
fba45db2 22824dwarf_bool_name (unsigned mybool)
c906108c
SS
22825{
22826 if (mybool)
22827 return "TRUE";
22828 else
22829 return "FALSE";
22830}
22831
22832/* Convert a DWARF type code into its string name. */
22833
f39c6ffd 22834static const char *
aa1ee363 22835dwarf_type_encoding_name (unsigned enc)
c906108c 22836{
f39c6ffd 22837 const char *name = get_DW_ATE_name (enc);
c906108c 22838
f39c6ffd 22839 if (name == NULL)
fa9c3fa0 22840 return dwarf_unknown ("ATE", enc);
c906108c 22841
f39c6ffd 22842 return name;
c906108c 22843}
c906108c 22844
f9aca02d 22845static void
d97bc12b 22846dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
c906108c
SS
22847{
22848 unsigned int i;
22849
d97bc12b 22850 print_spaces (indent, f);
9d8780f0 22851 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset %s)\n",
9c541725 22852 dwarf_tag_name (die->tag), die->abbrev,
9d8780f0 22853 sect_offset_str (die->sect_off));
d97bc12b
DE
22854
22855 if (die->parent != NULL)
22856 {
22857 print_spaces (indent, f);
9d8780f0
SM
22858 fprintf_unfiltered (f, " parent at offset: %s\n",
22859 sect_offset_str (die->parent->sect_off));
d97bc12b
DE
22860 }
22861
22862 print_spaces (indent, f);
22863 fprintf_unfiltered (f, " has children: %s\n",
639d11d3 22864 dwarf_bool_name (die->child != NULL));
c906108c 22865
d97bc12b
DE
22866 print_spaces (indent, f);
22867 fprintf_unfiltered (f, " attributes:\n");
22868
c906108c
SS
22869 for (i = 0; i < die->num_attrs; ++i)
22870 {
d97bc12b
DE
22871 print_spaces (indent, f);
22872 fprintf_unfiltered (f, " %s (%s) ",
c906108c
SS
22873 dwarf_attr_name (die->attrs[i].name),
22874 dwarf_form_name (die->attrs[i].form));
d97bc12b 22875
c906108c
SS
22876 switch (die->attrs[i].form)
22877 {
c906108c 22878 case DW_FORM_addr:
336d760d 22879 case DW_FORM_addrx:
3019eac3 22880 case DW_FORM_GNU_addr_index:
d97bc12b 22881 fprintf_unfiltered (f, "address: ");
5af949e3 22882 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
c906108c
SS
22883 break;
22884 case DW_FORM_block2:
22885 case DW_FORM_block4:
22886 case DW_FORM_block:
22887 case DW_FORM_block1:
56eb65bd
SP
22888 fprintf_unfiltered (f, "block: size %s",
22889 pulongest (DW_BLOCK (&die->attrs[i])->size));
c906108c 22890 break;
2dc7f7b3 22891 case DW_FORM_exprloc:
56eb65bd
SP
22892 fprintf_unfiltered (f, "expression: size %s",
22893 pulongest (DW_BLOCK (&die->attrs[i])->size));
2dc7f7b3 22894 break;
0224619f
JK
22895 case DW_FORM_data16:
22896 fprintf_unfiltered (f, "constant of 16 bytes");
22897 break;
4568ecf9
DE
22898 case DW_FORM_ref_addr:
22899 fprintf_unfiltered (f, "ref address: ");
22900 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22901 break;
36586728
TT
22902 case DW_FORM_GNU_ref_alt:
22903 fprintf_unfiltered (f, "alt ref address: ");
22904 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22905 break;
10b3939b
DJ
22906 case DW_FORM_ref1:
22907 case DW_FORM_ref2:
22908 case DW_FORM_ref4:
4568ecf9
DE
22909 case DW_FORM_ref8:
22910 case DW_FORM_ref_udata:
d97bc12b 22911 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
4568ecf9 22912 (long) (DW_UNSND (&die->attrs[i])));
10b3939b 22913 break;
c906108c
SS
22914 case DW_FORM_data1:
22915 case DW_FORM_data2:
22916 case DW_FORM_data4:
ce5d95e1 22917 case DW_FORM_data8:
c906108c
SS
22918 case DW_FORM_udata:
22919 case DW_FORM_sdata:
43bbcdc2
PH
22920 fprintf_unfiltered (f, "constant: %s",
22921 pulongest (DW_UNSND (&die->attrs[i])));
c906108c 22922 break;
2dc7f7b3
TT
22923 case DW_FORM_sec_offset:
22924 fprintf_unfiltered (f, "section offset: %s",
22925 pulongest (DW_UNSND (&die->attrs[i])));
22926 break;
55f1336d 22927 case DW_FORM_ref_sig8:
ac9ec31b
DE
22928 fprintf_unfiltered (f, "signature: %s",
22929 hex_string (DW_SIGNATURE (&die->attrs[i])));
348e048f 22930 break;
c906108c 22931 case DW_FORM_string:
4bdf3d34 22932 case DW_FORM_strp:
43988095 22933 case DW_FORM_line_strp:
cf532bd1 22934 case DW_FORM_strx:
3019eac3 22935 case DW_FORM_GNU_str_index:
36586728 22936 case DW_FORM_GNU_strp_alt:
8285870a 22937 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
c906108c 22938 DW_STRING (&die->attrs[i])
8285870a
JK
22939 ? DW_STRING (&die->attrs[i]) : "",
22940 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
c906108c
SS
22941 break;
22942 case DW_FORM_flag:
22943 if (DW_UNSND (&die->attrs[i]))
d97bc12b 22944 fprintf_unfiltered (f, "flag: TRUE");
c906108c 22945 else
d97bc12b 22946 fprintf_unfiltered (f, "flag: FALSE");
c906108c 22947 break;
2dc7f7b3
TT
22948 case DW_FORM_flag_present:
22949 fprintf_unfiltered (f, "flag: TRUE");
22950 break;
a8329558 22951 case DW_FORM_indirect:
0963b4bd
MS
22952 /* The reader will have reduced the indirect form to
22953 the "base form" so this form should not occur. */
3e43a32a
MS
22954 fprintf_unfiltered (f,
22955 "unexpected attribute form: DW_FORM_indirect");
a8329558 22956 break;
663c44ac
JK
22957 case DW_FORM_implicit_const:
22958 fprintf_unfiltered (f, "constant: %s",
22959 plongest (DW_SND (&die->attrs[i])));
22960 break;
c906108c 22961 default:
d97bc12b 22962 fprintf_unfiltered (f, "unsupported attribute form: %d.",
c5aa993b 22963 die->attrs[i].form);
d97bc12b 22964 break;
c906108c 22965 }
d97bc12b 22966 fprintf_unfiltered (f, "\n");
c906108c
SS
22967 }
22968}
22969
f9aca02d 22970static void
d97bc12b 22971dump_die_for_error (struct die_info *die)
c906108c 22972{
d97bc12b
DE
22973 dump_die_shallow (gdb_stderr, 0, die);
22974}
22975
22976static void
22977dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
22978{
22979 int indent = level * 4;
22980
22981 gdb_assert (die != NULL);
22982
22983 if (level >= max_level)
22984 return;
22985
22986 dump_die_shallow (f, indent, die);
22987
22988 if (die->child != NULL)
c906108c 22989 {
d97bc12b
DE
22990 print_spaces (indent, f);
22991 fprintf_unfiltered (f, " Children:");
22992 if (level + 1 < max_level)
22993 {
22994 fprintf_unfiltered (f, "\n");
22995 dump_die_1 (f, level + 1, max_level, die->child);
22996 }
22997 else
22998 {
3e43a32a
MS
22999 fprintf_unfiltered (f,
23000 " [not printed, max nesting level reached]\n");
d97bc12b
DE
23001 }
23002 }
23003
23004 if (die->sibling != NULL && level > 0)
23005 {
23006 dump_die_1 (f, level, max_level, die->sibling);
c906108c
SS
23007 }
23008}
23009
d97bc12b
DE
23010/* This is called from the pdie macro in gdbinit.in.
23011 It's not static so gcc will keep a copy callable from gdb. */
23012
23013void
23014dump_die (struct die_info *die, int max_level)
23015{
23016 dump_die_1 (gdb_stdlog, 0, max_level, die);
23017}
23018
f9aca02d 23019static void
51545339 23020store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
c906108c 23021{
51545339 23022 void **slot;
c906108c 23023
9c541725
PA
23024 slot = htab_find_slot_with_hash (cu->die_hash, die,
23025 to_underlying (die->sect_off),
b64f50a1 23026 INSERT);
51545339
DJ
23027
23028 *slot = die;
c906108c
SS
23029}
23030
b64f50a1
JK
23031/* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
23032 required kind. */
23033
23034static sect_offset
ff39bb5e 23035dwarf2_get_ref_die_offset (const struct attribute *attr)
93311388 23036{
7771576e 23037 if (attr_form_is_ref (attr))
9c541725 23038 return (sect_offset) DW_UNSND (attr);
93311388 23039
b98664d3 23040 complaint (_("unsupported die ref attribute form: '%s'"),
93311388 23041 dwarf_form_name (attr->form));
9c541725 23042 return {};
c906108c
SS
23043}
23044
43bbcdc2
PH
23045/* Return the constant value held by ATTR. Return DEFAULT_VALUE if
23046 * the value held by the attribute is not constant. */
a02abb62 23047
43bbcdc2 23048static LONGEST
ff39bb5e 23049dwarf2_get_attr_constant_value (const struct attribute *attr, int default_value)
a02abb62 23050{
663c44ac 23051 if (attr->form == DW_FORM_sdata || attr->form == DW_FORM_implicit_const)
a02abb62
JB
23052 return DW_SND (attr);
23053 else if (attr->form == DW_FORM_udata
23054 || attr->form == DW_FORM_data1
23055 || attr->form == DW_FORM_data2
23056 || attr->form == DW_FORM_data4
23057 || attr->form == DW_FORM_data8)
23058 return DW_UNSND (attr);
23059 else
23060 {
0224619f 23061 /* For DW_FORM_data16 see attr_form_is_constant. */
b98664d3 23062 complaint (_("Attribute value is not a constant (%s)"),
a02abb62
JB
23063 dwarf_form_name (attr->form));
23064 return default_value;
23065 }
23066}
23067
348e048f
DE
23068/* Follow reference or signature attribute ATTR of SRC_DIE.
23069 On entry *REF_CU is the CU of SRC_DIE.
23070 On exit *REF_CU is the CU of the result. */
23071
23072static struct die_info *
ff39bb5e 23073follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
348e048f
DE
23074 struct dwarf2_cu **ref_cu)
23075{
23076 struct die_info *die;
23077
7771576e 23078 if (attr_form_is_ref (attr))
348e048f 23079 die = follow_die_ref (src_die, attr, ref_cu);
55f1336d 23080 else if (attr->form == DW_FORM_ref_sig8)
348e048f
DE
23081 die = follow_die_sig (src_die, attr, ref_cu);
23082 else
23083 {
23084 dump_die_for_error (src_die);
23085 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
518817b3 23086 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
348e048f
DE
23087 }
23088
23089 return die;
03dd20cc
DJ
23090}
23091
5c631832 23092/* Follow reference OFFSET.
673bfd45
DE
23093 On entry *REF_CU is the CU of the source die referencing OFFSET.
23094 On exit *REF_CU is the CU of the result.
23095 Returns NULL if OFFSET is invalid. */
f504f079 23096
f9aca02d 23097static struct die_info *
9c541725 23098follow_die_offset (sect_offset sect_off, int offset_in_dwz,
36586728 23099 struct dwarf2_cu **ref_cu)
c906108c 23100{
10b3939b 23101 struct die_info temp_die;
f2f0e013 23102 struct dwarf2_cu *target_cu, *cu = *ref_cu;
518817b3
SM
23103 struct dwarf2_per_objfile *dwarf2_per_objfile
23104 = cu->per_cu->dwarf2_per_objfile;
10b3939b 23105
348e048f
DE
23106 gdb_assert (cu->per_cu != NULL);
23107
98bfdba5
PA
23108 target_cu = cu;
23109
3019eac3 23110 if (cu->per_cu->is_debug_types)
348e048f
DE
23111 {
23112 /* .debug_types CUs cannot reference anything outside their CU.
23113 If they need to, they have to reference a signatured type via
55f1336d 23114 DW_FORM_ref_sig8. */
9c541725 23115 if (!offset_in_cu_p (&cu->header, sect_off))
5c631832 23116 return NULL;
348e048f 23117 }
36586728 23118 else if (offset_in_dwz != cu->per_cu->is_dwz
9c541725 23119 || !offset_in_cu_p (&cu->header, sect_off))
10b3939b
DJ
23120 {
23121 struct dwarf2_per_cu_data *per_cu;
9a619af0 23122
9c541725 23123 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 23124 dwarf2_per_objfile);
03dd20cc
DJ
23125
23126 /* If necessary, add it to the queue and load its DIEs. */
95554aad 23127 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
58f0c718 23128 load_full_comp_unit (per_cu, false, cu->language);
03dd20cc 23129
10b3939b
DJ
23130 target_cu = per_cu->cu;
23131 }
98bfdba5
PA
23132 else if (cu->dies == NULL)
23133 {
23134 /* We're loading full DIEs during partial symbol reading. */
23135 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
58f0c718 23136 load_full_comp_unit (cu->per_cu, false, language_minimal);
98bfdba5 23137 }
c906108c 23138
f2f0e013 23139 *ref_cu = target_cu;
9c541725 23140 temp_die.sect_off = sect_off;
c24bdb02
KS
23141
23142 if (target_cu != cu)
23143 target_cu->ancestor = cu;
23144
9a3c8263 23145 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
9c541725
PA
23146 &temp_die,
23147 to_underlying (sect_off));
5c631832 23148}
10b3939b 23149
5c631832
JK
23150/* Follow reference attribute ATTR of SRC_DIE.
23151 On entry *REF_CU is the CU of SRC_DIE.
23152 On exit *REF_CU is the CU of the result. */
23153
23154static struct die_info *
ff39bb5e 23155follow_die_ref (struct die_info *src_die, const struct attribute *attr,
5c631832
JK
23156 struct dwarf2_cu **ref_cu)
23157{
9c541725 23158 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
5c631832
JK
23159 struct dwarf2_cu *cu = *ref_cu;
23160 struct die_info *die;
23161
9c541725 23162 die = follow_die_offset (sect_off,
36586728
TT
23163 (attr->form == DW_FORM_GNU_ref_alt
23164 || cu->per_cu->is_dwz),
23165 ref_cu);
5c631832 23166 if (!die)
9d8780f0
SM
23167 error (_("Dwarf Error: Cannot find DIE at %s referenced from DIE "
23168 "at %s [in module %s]"),
23169 sect_offset_str (sect_off), sect_offset_str (src_die->sect_off),
518817b3 23170 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
348e048f 23171
5c631832
JK
23172 return die;
23173}
23174
9c541725 23175/* Return DWARF block referenced by DW_AT_location of DIE at SECT_OFF at PER_CU.
d83e736b 23176 Returned value is intended for DW_OP_call*. Returned
e3b94546
SM
23177 dwarf2_locexpr_baton->data has lifetime of
23178 PER_CU->DWARF2_PER_OBJFILE->OBJFILE. */
5c631832
JK
23179
23180struct dwarf2_locexpr_baton
9c541725 23181dwarf2_fetch_die_loc_sect_off (sect_offset sect_off,
8b9737bf
TT
23182 struct dwarf2_per_cu_data *per_cu,
23183 CORE_ADDR (*get_frame_pc) (void *baton),
e4a62c65 23184 void *baton, bool resolve_abstract_p)
5c631832 23185{
918dd910 23186 struct dwarf2_cu *cu;
5c631832
JK
23187 struct die_info *die;
23188 struct attribute *attr;
23189 struct dwarf2_locexpr_baton retval;
12359b5e
SM
23190 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
23191 struct objfile *objfile = dwarf2_per_objfile->objfile;
8cf6f0b1 23192
918dd910 23193 if (per_cu->cu == NULL)
58f0c718 23194 load_cu (per_cu, false);
918dd910 23195 cu = per_cu->cu;
cc12ce38
DE
23196 if (cu == NULL)
23197 {
23198 /* We shouldn't get here for a dummy CU, but don't crash on the user.
23199 Instead just throw an error, not much else we can do. */
9d8780f0
SM
23200 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
23201 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 23202 }
918dd910 23203
9c541725 23204 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
5c631832 23205 if (!die)
9d8780f0
SM
23206 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
23207 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
23208
23209 attr = dwarf2_attr (die, DW_AT_location, cu);
e4a62c65 23210 if (!attr && resolve_abstract_p
3360b6e7 23211 && (dwarf2_per_objfile->abstract_to_concrete.find (die->sect_off)
e4a62c65
TV
23212 != dwarf2_per_objfile->abstract_to_concrete.end ()))
23213 {
23214 CORE_ADDR pc = (*get_frame_pc) (baton);
23215
3360b6e7
TV
23216 for (const auto &cand_off
23217 : dwarf2_per_objfile->abstract_to_concrete[die->sect_off])
e4a62c65 23218 {
3360b6e7
TV
23219 struct dwarf2_cu *cand_cu = cu;
23220 struct die_info *cand
23221 = follow_die_offset (cand_off, per_cu->is_dwz, &cand_cu);
23222 if (!cand
23223 || !cand->parent
e4a62c65
TV
23224 || cand->parent->tag != DW_TAG_subprogram)
23225 continue;
23226
23227 CORE_ADDR pc_low, pc_high;
23228 get_scope_pc_bounds (cand->parent, &pc_low, &pc_high, cu);
23229 if (pc_low == ((CORE_ADDR) -1)
23230 || !(pc_low <= pc && pc < pc_high))
23231 continue;
23232
23233 die = cand;
23234 attr = dwarf2_attr (die, DW_AT_location, cu);
23235 break;
23236 }
23237 }
23238
5c631832
JK
23239 if (!attr)
23240 {
e103e986
JK
23241 /* DWARF: "If there is no such attribute, then there is no effect.".
23242 DATA is ignored if SIZE is 0. */
5c631832 23243
e103e986 23244 retval.data = NULL;
5c631832
JK
23245 retval.size = 0;
23246 }
8cf6f0b1
TT
23247 else if (attr_form_is_section_offset (attr))
23248 {
23249 struct dwarf2_loclist_baton loclist_baton;
23250 CORE_ADDR pc = (*get_frame_pc) (baton);
23251 size_t size;
23252
23253 fill_in_loclist_baton (cu, &loclist_baton, attr);
23254
23255 retval.data = dwarf2_find_location_expression (&loclist_baton,
23256 &size, pc);
23257 retval.size = size;
23258 }
5c631832
JK
23259 else
23260 {
23261 if (!attr_form_is_block (attr))
9d8780f0 23262 error (_("Dwarf Error: DIE at %s referenced in module %s "
5c631832 23263 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
9d8780f0 23264 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
23265
23266 retval.data = DW_BLOCK (attr)->data;
23267 retval.size = DW_BLOCK (attr)->size;
23268 }
23269 retval.per_cu = cu->per_cu;
918dd910 23270
ed2dc618 23271 age_cached_comp_units (dwarf2_per_objfile);
918dd910 23272
5c631832 23273 return retval;
348e048f
DE
23274}
23275
8b9737bf
TT
23276/* Like dwarf2_fetch_die_loc_sect_off, but take a CU
23277 offset. */
23278
23279struct dwarf2_locexpr_baton
23280dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
23281 struct dwarf2_per_cu_data *per_cu,
23282 CORE_ADDR (*get_frame_pc) (void *baton),
23283 void *baton)
23284{
9c541725 23285 sect_offset sect_off = per_cu->sect_off + to_underlying (offset_in_cu);
8b9737bf 23286
9c541725 23287 return dwarf2_fetch_die_loc_sect_off (sect_off, per_cu, get_frame_pc, baton);
8b9737bf
TT
23288}
23289
b6807d98
TT
23290/* Write a constant of a given type as target-ordered bytes into
23291 OBSTACK. */
23292
23293static const gdb_byte *
23294write_constant_as_bytes (struct obstack *obstack,
23295 enum bfd_endian byte_order,
23296 struct type *type,
23297 ULONGEST value,
23298 LONGEST *len)
23299{
23300 gdb_byte *result;
23301
23302 *len = TYPE_LENGTH (type);
224c3ddb 23303 result = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
23304 store_unsigned_integer (result, *len, byte_order, value);
23305
23306 return result;
23307}
23308
23309/* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
23310 pointer to the constant bytes and set LEN to the length of the
23311 data. If memory is needed, allocate it on OBSTACK. If the DIE
23312 does not have a DW_AT_const_value, return NULL. */
23313
23314const gdb_byte *
9c541725 23315dwarf2_fetch_constant_bytes (sect_offset sect_off,
b6807d98
TT
23316 struct dwarf2_per_cu_data *per_cu,
23317 struct obstack *obstack,
23318 LONGEST *len)
23319{
23320 struct dwarf2_cu *cu;
23321 struct die_info *die;
23322 struct attribute *attr;
23323 const gdb_byte *result = NULL;
23324 struct type *type;
23325 LONGEST value;
23326 enum bfd_endian byte_order;
e3b94546 23327 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
b6807d98 23328
b6807d98 23329 if (per_cu->cu == NULL)
58f0c718 23330 load_cu (per_cu, false);
b6807d98 23331 cu = per_cu->cu;
cc12ce38
DE
23332 if (cu == NULL)
23333 {
23334 /* We shouldn't get here for a dummy CU, but don't crash on the user.
23335 Instead just throw an error, not much else we can do. */
9d8780f0
SM
23336 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
23337 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 23338 }
b6807d98 23339
9c541725 23340 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
b6807d98 23341 if (!die)
9d8780f0
SM
23342 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
23343 sect_offset_str (sect_off), objfile_name (objfile));
b6807d98
TT
23344
23345 attr = dwarf2_attr (die, DW_AT_const_value, cu);
23346 if (attr == NULL)
23347 return NULL;
23348
e3b94546 23349 byte_order = (bfd_big_endian (objfile->obfd)
b6807d98
TT
23350 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
23351
23352 switch (attr->form)
23353 {
23354 case DW_FORM_addr:
336d760d 23355 case DW_FORM_addrx:
b6807d98
TT
23356 case DW_FORM_GNU_addr_index:
23357 {
23358 gdb_byte *tem;
23359
23360 *len = cu->header.addr_size;
224c3ddb 23361 tem = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
23362 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
23363 result = tem;
23364 }
23365 break;
23366 case DW_FORM_string:
23367 case DW_FORM_strp:
cf532bd1 23368 case DW_FORM_strx:
b6807d98
TT
23369 case DW_FORM_GNU_str_index:
23370 case DW_FORM_GNU_strp_alt:
23371 /* DW_STRING is already allocated on the objfile obstack, point
23372 directly to it. */
23373 result = (const gdb_byte *) DW_STRING (attr);
23374 *len = strlen (DW_STRING (attr));
23375 break;
23376 case DW_FORM_block1:
23377 case DW_FORM_block2:
23378 case DW_FORM_block4:
23379 case DW_FORM_block:
23380 case DW_FORM_exprloc:
0224619f 23381 case DW_FORM_data16:
b6807d98
TT
23382 result = DW_BLOCK (attr)->data;
23383 *len = DW_BLOCK (attr)->size;
23384 break;
23385
23386 /* The DW_AT_const_value attributes are supposed to carry the
23387 symbol's value "represented as it would be on the target
23388 architecture." By the time we get here, it's already been
23389 converted to host endianness, so we just need to sign- or
23390 zero-extend it as appropriate. */
23391 case DW_FORM_data1:
23392 type = die_type (die, cu);
23393 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
23394 if (result == NULL)
23395 result = write_constant_as_bytes (obstack, byte_order,
23396 type, value, len);
23397 break;
23398 case DW_FORM_data2:
23399 type = die_type (die, cu);
23400 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
23401 if (result == NULL)
23402 result = write_constant_as_bytes (obstack, byte_order,
23403 type, value, len);
23404 break;
23405 case DW_FORM_data4:
23406 type = die_type (die, cu);
23407 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
23408 if (result == NULL)
23409 result = write_constant_as_bytes (obstack, byte_order,
23410 type, value, len);
23411 break;
23412 case DW_FORM_data8:
23413 type = die_type (die, cu);
23414 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
23415 if (result == NULL)
23416 result = write_constant_as_bytes (obstack, byte_order,
23417 type, value, len);
23418 break;
23419
23420 case DW_FORM_sdata:
663c44ac 23421 case DW_FORM_implicit_const:
b6807d98
TT
23422 type = die_type (die, cu);
23423 result = write_constant_as_bytes (obstack, byte_order,
23424 type, DW_SND (attr), len);
23425 break;
23426
23427 case DW_FORM_udata:
23428 type = die_type (die, cu);
23429 result = write_constant_as_bytes (obstack, byte_order,
23430 type, DW_UNSND (attr), len);
23431 break;
23432
23433 default:
b98664d3 23434 complaint (_("unsupported const value attribute form: '%s'"),
b6807d98
TT
23435 dwarf_form_name (attr->form));
23436 break;
23437 }
23438
23439 return result;
23440}
23441
7942e96e
AA
23442/* Return the type of the die at OFFSET in PER_CU. Return NULL if no
23443 valid type for this die is found. */
23444
23445struct type *
9c541725 23446dwarf2_fetch_die_type_sect_off (sect_offset sect_off,
7942e96e
AA
23447 struct dwarf2_per_cu_data *per_cu)
23448{
23449 struct dwarf2_cu *cu;
23450 struct die_info *die;
23451
7942e96e 23452 if (per_cu->cu == NULL)
58f0c718 23453 load_cu (per_cu, false);
7942e96e
AA
23454 cu = per_cu->cu;
23455 if (!cu)
23456 return NULL;
23457
9c541725 23458 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
7942e96e
AA
23459 if (!die)
23460 return NULL;
23461
23462 return die_type (die, cu);
23463}
23464
8a9b8146
TT
23465/* Return the type of the DIE at DIE_OFFSET in the CU named by
23466 PER_CU. */
23467
23468struct type *
b64f50a1 23469dwarf2_get_die_type (cu_offset die_offset,
8a9b8146
TT
23470 struct dwarf2_per_cu_data *per_cu)
23471{
9c541725 23472 sect_offset die_offset_sect = per_cu->sect_off + to_underlying (die_offset);
b64f50a1 23473 return get_die_type_at_offset (die_offset_sect, per_cu);
8a9b8146
TT
23474}
23475
ac9ec31b 23476/* Follow type unit SIG_TYPE referenced by SRC_DIE.
348e048f 23477 On entry *REF_CU is the CU of SRC_DIE.
ac9ec31b
DE
23478 On exit *REF_CU is the CU of the result.
23479 Returns NULL if the referenced DIE isn't found. */
348e048f
DE
23480
23481static struct die_info *
ac9ec31b
DE
23482follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
23483 struct dwarf2_cu **ref_cu)
348e048f 23484{
348e048f 23485 struct die_info temp_die;
c24bdb02 23486 struct dwarf2_cu *sig_cu, *cu = *ref_cu;
348e048f
DE
23487 struct die_info *die;
23488
ac9ec31b
DE
23489 /* While it might be nice to assert sig_type->type == NULL here,
23490 we can get here for DW_AT_imported_declaration where we need
23491 the DIE not the type. */
348e048f
DE
23492
23493 /* If necessary, add it to the queue and load its DIEs. */
23494
95554aad 23495 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
a0f42c21 23496 read_signatured_type (sig_type);
348e048f 23497
348e048f 23498 sig_cu = sig_type->per_cu.cu;
69d751e3 23499 gdb_assert (sig_cu != NULL);
9c541725
PA
23500 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
23501 temp_die.sect_off = sig_type->type_offset_in_section;
9a3c8263 23502 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
9c541725 23503 to_underlying (temp_die.sect_off));
348e048f
DE
23504 if (die)
23505 {
ed2dc618 23506 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 23507 = (*ref_cu)->per_cu->dwarf2_per_objfile;
ed2dc618 23508
796a7ff8
DE
23509 /* For .gdb_index version 7 keep track of included TUs.
23510 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
23511 if (dwarf2_per_objfile->index_table != NULL
23512 && dwarf2_per_objfile->index_table->version <= 7)
23513 {
23514 VEC_safe_push (dwarf2_per_cu_ptr,
23515 (*ref_cu)->per_cu->imported_symtabs,
23516 sig_cu->per_cu);
23517 }
23518
348e048f 23519 *ref_cu = sig_cu;
c24bdb02
KS
23520 if (sig_cu != cu)
23521 sig_cu->ancestor = cu;
23522
348e048f
DE
23523 return die;
23524 }
23525
ac9ec31b
DE
23526 return NULL;
23527}
23528
23529/* Follow signatured type referenced by ATTR in SRC_DIE.
23530 On entry *REF_CU is the CU of SRC_DIE.
23531 On exit *REF_CU is the CU of the result.
23532 The result is the DIE of the type.
23533 If the referenced type cannot be found an error is thrown. */
23534
23535static struct die_info *
ff39bb5e 23536follow_die_sig (struct die_info *src_die, const struct attribute *attr,
ac9ec31b
DE
23537 struct dwarf2_cu **ref_cu)
23538{
23539 ULONGEST signature = DW_SIGNATURE (attr);
23540 struct signatured_type *sig_type;
23541 struct die_info *die;
23542
23543 gdb_assert (attr->form == DW_FORM_ref_sig8);
23544
a2ce51a0 23545 sig_type = lookup_signatured_type (*ref_cu, signature);
ac9ec31b
DE
23546 /* sig_type will be NULL if the signatured type is missing from
23547 the debug info. */
23548 if (sig_type == NULL)
23549 {
23550 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
23551 " from DIE at %s [in module %s]"),
23552 hex_string (signature), sect_offset_str (src_die->sect_off),
518817b3 23553 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
ac9ec31b
DE
23554 }
23555
23556 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
23557 if (die == NULL)
23558 {
23559 dump_die_for_error (src_die);
23560 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
23561 " from DIE at %s [in module %s]"),
23562 hex_string (signature), sect_offset_str (src_die->sect_off),
518817b3 23563 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
ac9ec31b
DE
23564 }
23565
23566 return die;
23567}
23568
23569/* Get the type specified by SIGNATURE referenced in DIE/CU,
23570 reading in and processing the type unit if necessary. */
23571
23572static struct type *
23573get_signatured_type (struct die_info *die, ULONGEST signature,
23574 struct dwarf2_cu *cu)
23575{
518817b3
SM
23576 struct dwarf2_per_objfile *dwarf2_per_objfile
23577 = cu->per_cu->dwarf2_per_objfile;
ac9ec31b
DE
23578 struct signatured_type *sig_type;
23579 struct dwarf2_cu *type_cu;
23580 struct die_info *type_die;
23581 struct type *type;
23582
a2ce51a0 23583 sig_type = lookup_signatured_type (cu, signature);
ac9ec31b
DE
23584 /* sig_type will be NULL if the signatured type is missing from
23585 the debug info. */
23586 if (sig_type == NULL)
23587 {
b98664d3 23588 complaint (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
23589 " from DIE at %s [in module %s]"),
23590 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23591 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23592 return build_error_marker_type (cu, die);
23593 }
23594
23595 /* If we already know the type we're done. */
23596 if (sig_type->type != NULL)
23597 return sig_type->type;
23598
23599 type_cu = cu;
23600 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
23601 if (type_die != NULL)
23602 {
23603 /* N.B. We need to call get_die_type to ensure only one type for this DIE
23604 is created. This is important, for example, because for c++ classes
23605 we need TYPE_NAME set which is only done by new_symbol. Blech. */
23606 type = read_type_die (type_die, type_cu);
23607 if (type == NULL)
23608 {
b98664d3 23609 complaint (_("Dwarf Error: Cannot build signatured type %s"
9d8780f0
SM
23610 " referenced from DIE at %s [in module %s]"),
23611 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23612 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23613 type = build_error_marker_type (cu, die);
23614 }
23615 }
23616 else
23617 {
b98664d3 23618 complaint (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
23619 " from DIE at %s [in module %s]"),
23620 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23621 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23622 type = build_error_marker_type (cu, die);
23623 }
23624 sig_type->type = type;
23625
23626 return type;
23627}
23628
23629/* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
23630 reading in and processing the type unit if necessary. */
23631
23632static struct type *
ff39bb5e 23633get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
b385a60d 23634 struct dwarf2_cu *cu) /* ARI: editCase function */
ac9ec31b
DE
23635{
23636 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
7771576e 23637 if (attr_form_is_ref (attr))
ac9ec31b
DE
23638 {
23639 struct dwarf2_cu *type_cu = cu;
23640 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
23641
23642 return read_type_die (type_die, type_cu);
23643 }
23644 else if (attr->form == DW_FORM_ref_sig8)
23645 {
23646 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
23647 }
23648 else
23649 {
518817b3
SM
23650 struct dwarf2_per_objfile *dwarf2_per_objfile
23651 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 23652
b98664d3 23653 complaint (_("Dwarf Error: DW_AT_signature has bad form %s in DIE"
9d8780f0
SM
23654 " at %s [in module %s]"),
23655 dwarf_form_name (attr->form), sect_offset_str (die->sect_off),
4262abfb 23656 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23657 return build_error_marker_type (cu, die);
23658 }
348e048f
DE
23659}
23660
e5fe5e75 23661/* Load the DIEs associated with type unit PER_CU into memory. */
348e048f
DE
23662
23663static void
e5fe5e75 23664load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
348e048f 23665{
52dc124a 23666 struct signatured_type *sig_type;
348e048f 23667
f4dc4d17
DE
23668 /* Caller is responsible for ensuring type_unit_groups don't get here. */
23669 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
23670
6721b2ec
DE
23671 /* We have the per_cu, but we need the signatured_type.
23672 Fortunately this is an easy translation. */
23673 gdb_assert (per_cu->is_debug_types);
23674 sig_type = (struct signatured_type *) per_cu;
348e048f 23675
6721b2ec 23676 gdb_assert (per_cu->cu == NULL);
348e048f 23677
52dc124a 23678 read_signatured_type (sig_type);
348e048f 23679
6721b2ec 23680 gdb_assert (per_cu->cu != NULL);
348e048f
DE
23681}
23682
dee91e82
DE
23683/* die_reader_func for read_signatured_type.
23684 This is identical to load_full_comp_unit_reader,
23685 but is kept separate for now. */
348e048f
DE
23686
23687static void
dee91e82 23688read_signatured_type_reader (const struct die_reader_specs *reader,
d521ce57 23689 const gdb_byte *info_ptr,
dee91e82
DE
23690 struct die_info *comp_unit_die,
23691 int has_children,
23692 void *data)
348e048f 23693{
dee91e82 23694 struct dwarf2_cu *cu = reader->cu;
348e048f 23695
dee91e82
DE
23696 gdb_assert (cu->die_hash == NULL);
23697 cu->die_hash =
23698 htab_create_alloc_ex (cu->header.length / 12,
23699 die_hash,
23700 die_eq,
23701 NULL,
23702 &cu->comp_unit_obstack,
23703 hashtab_obstack_allocate,
23704 dummy_obstack_deallocate);
348e048f 23705
dee91e82
DE
23706 if (has_children)
23707 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
23708 &info_ptr, comp_unit_die);
23709 cu->dies = comp_unit_die;
23710 /* comp_unit_die is not stored in die_hash, no need. */
348e048f
DE
23711
23712 /* We try not to read any attributes in this function, because not
9cdd5dbd 23713 all CUs needed for references have been loaded yet, and symbol
348e048f 23714 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
23715 or we won't be able to build types correctly.
23716 Similarly, if we do not read the producer, we can not apply
23717 producer-specific interpretation. */
95554aad 23718 prepare_one_comp_unit (cu, cu->dies, language_minimal);
dee91e82 23719}
348e048f 23720
3019eac3
DE
23721/* Read in a signatured type and build its CU and DIEs.
23722 If the type is a stub for the real type in a DWO file,
23723 read in the real type from the DWO file as well. */
dee91e82
DE
23724
23725static void
23726read_signatured_type (struct signatured_type *sig_type)
23727{
23728 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
348e048f 23729
3019eac3 23730 gdb_assert (per_cu->is_debug_types);
dee91e82 23731 gdb_assert (per_cu->cu == NULL);
348e048f 23732
58f0c718 23733 init_cutu_and_read_dies (per_cu, NULL, 0, 1, false,
f4dc4d17 23734 read_signatured_type_reader, NULL);
7ee85ab1 23735 sig_type->per_cu.tu_read = 1;
c906108c
SS
23736}
23737
c906108c
SS
23738/* Decode simple location descriptions.
23739 Given a pointer to a dwarf block that defines a location, compute
23740 the location and return the value.
23741
4cecd739
DJ
23742 NOTE drow/2003-11-18: This function is called in two situations
23743 now: for the address of static or global variables (partial symbols
23744 only) and for offsets into structures which are expected to be
23745 (more or less) constant. The partial symbol case should go away,
23746 and only the constant case should remain. That will let this
23747 function complain more accurately. A few special modes are allowed
23748 without complaint for global variables (for instance, global
23749 register values and thread-local values).
c906108c
SS
23750
23751 A location description containing no operations indicates that the
4cecd739 23752 object is optimized out. The return value is 0 for that case.
6b992462
DJ
23753 FIXME drow/2003-11-16: No callers check for this case any more; soon all
23754 callers will only want a very basic result and this can become a
21ae7a4d
JK
23755 complaint.
23756
23757 Note that stack[0] is unused except as a default error return. */
c906108c
SS
23758
23759static CORE_ADDR
e7c27a73 23760decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
c906108c 23761{
518817b3 23762 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
56eb65bd
SP
23763 size_t i;
23764 size_t size = blk->size;
d521ce57 23765 const gdb_byte *data = blk->data;
21ae7a4d
JK
23766 CORE_ADDR stack[64];
23767 int stacki;
23768 unsigned int bytes_read, unsnd;
23769 gdb_byte op;
c906108c 23770
21ae7a4d
JK
23771 i = 0;
23772 stacki = 0;
23773 stack[stacki] = 0;
23774 stack[++stacki] = 0;
23775
23776 while (i < size)
23777 {
23778 op = data[i++];
23779 switch (op)
23780 {
23781 case DW_OP_lit0:
23782 case DW_OP_lit1:
23783 case DW_OP_lit2:
23784 case DW_OP_lit3:
23785 case DW_OP_lit4:
23786 case DW_OP_lit5:
23787 case DW_OP_lit6:
23788 case DW_OP_lit7:
23789 case DW_OP_lit8:
23790 case DW_OP_lit9:
23791 case DW_OP_lit10:
23792 case DW_OP_lit11:
23793 case DW_OP_lit12:
23794 case DW_OP_lit13:
23795 case DW_OP_lit14:
23796 case DW_OP_lit15:
23797 case DW_OP_lit16:
23798 case DW_OP_lit17:
23799 case DW_OP_lit18:
23800 case DW_OP_lit19:
23801 case DW_OP_lit20:
23802 case DW_OP_lit21:
23803 case DW_OP_lit22:
23804 case DW_OP_lit23:
23805 case DW_OP_lit24:
23806 case DW_OP_lit25:
23807 case DW_OP_lit26:
23808 case DW_OP_lit27:
23809 case DW_OP_lit28:
23810 case DW_OP_lit29:
23811 case DW_OP_lit30:
23812 case DW_OP_lit31:
23813 stack[++stacki] = op - DW_OP_lit0;
23814 break;
f1bea926 23815
21ae7a4d
JK
23816 case DW_OP_reg0:
23817 case DW_OP_reg1:
23818 case DW_OP_reg2:
23819 case DW_OP_reg3:
23820 case DW_OP_reg4:
23821 case DW_OP_reg5:
23822 case DW_OP_reg6:
23823 case DW_OP_reg7:
23824 case DW_OP_reg8:
23825 case DW_OP_reg9:
23826 case DW_OP_reg10:
23827 case DW_OP_reg11:
23828 case DW_OP_reg12:
23829 case DW_OP_reg13:
23830 case DW_OP_reg14:
23831 case DW_OP_reg15:
23832 case DW_OP_reg16:
23833 case DW_OP_reg17:
23834 case DW_OP_reg18:
23835 case DW_OP_reg19:
23836 case DW_OP_reg20:
23837 case DW_OP_reg21:
23838 case DW_OP_reg22:
23839 case DW_OP_reg23:
23840 case DW_OP_reg24:
23841 case DW_OP_reg25:
23842 case DW_OP_reg26:
23843 case DW_OP_reg27:
23844 case DW_OP_reg28:
23845 case DW_OP_reg29:
23846 case DW_OP_reg30:
23847 case DW_OP_reg31:
23848 stack[++stacki] = op - DW_OP_reg0;
23849 if (i < size)
23850 dwarf2_complex_location_expr_complaint ();
23851 break;
c906108c 23852
21ae7a4d
JK
23853 case DW_OP_regx:
23854 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
23855 i += bytes_read;
23856 stack[++stacki] = unsnd;
23857 if (i < size)
23858 dwarf2_complex_location_expr_complaint ();
23859 break;
c906108c 23860
21ae7a4d
JK
23861 case DW_OP_addr:
23862 stack[++stacki] = read_address (objfile->obfd, &data[i],
23863 cu, &bytes_read);
23864 i += bytes_read;
23865 break;
d53d4ac5 23866
21ae7a4d
JK
23867 case DW_OP_const1u:
23868 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
23869 i += 1;
23870 break;
23871
23872 case DW_OP_const1s:
23873 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
23874 i += 1;
23875 break;
23876
23877 case DW_OP_const2u:
23878 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
23879 i += 2;
23880 break;
23881
23882 case DW_OP_const2s:
23883 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
23884 i += 2;
23885 break;
d53d4ac5 23886
21ae7a4d
JK
23887 case DW_OP_const4u:
23888 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
23889 i += 4;
23890 break;
23891
23892 case DW_OP_const4s:
23893 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
23894 i += 4;
23895 break;
23896
585861ea
JK
23897 case DW_OP_const8u:
23898 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
23899 i += 8;
23900 break;
23901
21ae7a4d
JK
23902 case DW_OP_constu:
23903 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
23904 &bytes_read);
23905 i += bytes_read;
23906 break;
23907
23908 case DW_OP_consts:
23909 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
23910 i += bytes_read;
23911 break;
23912
23913 case DW_OP_dup:
23914 stack[stacki + 1] = stack[stacki];
23915 stacki++;
23916 break;
23917
23918 case DW_OP_plus:
23919 stack[stacki - 1] += stack[stacki];
23920 stacki--;
23921 break;
23922
23923 case DW_OP_plus_uconst:
23924 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
23925 &bytes_read);
23926 i += bytes_read;
23927 break;
23928
23929 case DW_OP_minus:
23930 stack[stacki - 1] -= stack[stacki];
23931 stacki--;
23932 break;
23933
23934 case DW_OP_deref:
23935 /* If we're not the last op, then we definitely can't encode
23936 this using GDB's address_class enum. This is valid for partial
23937 global symbols, although the variable's address will be bogus
23938 in the psymtab. */
23939 if (i < size)
23940 dwarf2_complex_location_expr_complaint ();
23941 break;
23942
23943 case DW_OP_GNU_push_tls_address:
4aa4e28b 23944 case DW_OP_form_tls_address:
21ae7a4d
JK
23945 /* The top of the stack has the offset from the beginning
23946 of the thread control block at which the variable is located. */
23947 /* Nothing should follow this operator, so the top of stack would
23948 be returned. */
23949 /* This is valid for partial global symbols, but the variable's
585861ea
JK
23950 address will be bogus in the psymtab. Make it always at least
23951 non-zero to not look as a variable garbage collected by linker
23952 which have DW_OP_addr 0. */
21ae7a4d
JK
23953 if (i < size)
23954 dwarf2_complex_location_expr_complaint ();
585861ea 23955 stack[stacki]++;
21ae7a4d
JK
23956 break;
23957
23958 case DW_OP_GNU_uninit:
23959 break;
23960
336d760d 23961 case DW_OP_addrx:
3019eac3 23962 case DW_OP_GNU_addr_index:
49f6c839 23963 case DW_OP_GNU_const_index:
3019eac3
DE
23964 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
23965 &bytes_read);
23966 i += bytes_read;
23967 break;
23968
21ae7a4d
JK
23969 default:
23970 {
f39c6ffd 23971 const char *name = get_DW_OP_name (op);
21ae7a4d
JK
23972
23973 if (name)
b98664d3 23974 complaint (_("unsupported stack op: '%s'"),
21ae7a4d
JK
23975 name);
23976 else
b98664d3 23977 complaint (_("unsupported stack op: '%02x'"),
21ae7a4d
JK
23978 op);
23979 }
23980
23981 return (stack[stacki]);
d53d4ac5 23982 }
3c6e0cb3 23983
21ae7a4d
JK
23984 /* Enforce maximum stack depth of SIZE-1 to avoid writing
23985 outside of the allocated space. Also enforce minimum>0. */
23986 if (stacki >= ARRAY_SIZE (stack) - 1)
23987 {
b98664d3 23988 complaint (_("location description stack overflow"));
21ae7a4d
JK
23989 return 0;
23990 }
23991
23992 if (stacki <= 0)
23993 {
b98664d3 23994 complaint (_("location description stack underflow"));
21ae7a4d
JK
23995 return 0;
23996 }
23997 }
23998 return (stack[stacki]);
c906108c
SS
23999}
24000
24001/* memory allocation interface */
24002
c906108c 24003static struct dwarf_block *
7b5a2f43 24004dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c 24005{
8d749320 24006 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
c906108c
SS
24007}
24008
c906108c 24009static struct die_info *
b60c80d6 24010dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
c906108c
SS
24011{
24012 struct die_info *die;
b60c80d6
DJ
24013 size_t size = sizeof (struct die_info);
24014
24015 if (num_attrs > 1)
24016 size += (num_attrs - 1) * sizeof (struct attribute);
c906108c 24017
b60c80d6 24018 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
c906108c
SS
24019 memset (die, 0, sizeof (struct die_info));
24020 return (die);
24021}
2e276125
JB
24022
24023\f
24024/* Macro support. */
24025
233d95b5
JK
24026/* Return file name relative to the compilation directory of file number I in
24027 *LH's file name table. The result is allocated using xmalloc; the caller is
2e276125 24028 responsible for freeing it. */
233d95b5 24029
2e276125 24030static char *
233d95b5 24031file_file_name (int file, struct line_header *lh)
2e276125 24032{
6a83a1e6
EZ
24033 /* Is the file number a valid index into the line header's file name
24034 table? Remember that file numbers start with one, not zero. */
fff8551c 24035 if (1 <= file && file <= lh->file_names.size ())
6a83a1e6 24036 {
8c43009f 24037 const file_entry &fe = lh->file_names[file - 1];
6e70227d 24038
8c43009f
PA
24039 if (!IS_ABSOLUTE_PATH (fe.name))
24040 {
24041 const char *dir = fe.include_dir (lh);
24042 if (dir != NULL)
24043 return concat (dir, SLASH_STRING, fe.name, (char *) NULL);
24044 }
24045 return xstrdup (fe.name);
6a83a1e6 24046 }
2e276125
JB
24047 else
24048 {
6a83a1e6
EZ
24049 /* The compiler produced a bogus file number. We can at least
24050 record the macro definitions made in the file, even if we
24051 won't be able to find the file by name. */
24052 char fake_name[80];
9a619af0 24053
8c042590
PM
24054 xsnprintf (fake_name, sizeof (fake_name),
24055 "<bad macro file number %d>", file);
2e276125 24056
b98664d3 24057 complaint (_("bad file number in macro information (%d)"),
6a83a1e6 24058 file);
2e276125 24059
6a83a1e6 24060 return xstrdup (fake_name);
2e276125
JB
24061 }
24062}
24063
233d95b5
JK
24064/* Return the full name of file number I in *LH's file name table.
24065 Use COMP_DIR as the name of the current directory of the
24066 compilation. The result is allocated using xmalloc; the caller is
24067 responsible for freeing it. */
24068static char *
24069file_full_name (int file, struct line_header *lh, const char *comp_dir)
24070{
24071 /* Is the file number a valid index into the line header's file name
24072 table? Remember that file numbers start with one, not zero. */
fff8551c 24073 if (1 <= file && file <= lh->file_names.size ())
233d95b5
JK
24074 {
24075 char *relative = file_file_name (file, lh);
24076
24077 if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
24078 return relative;
b36cec19
PA
24079 return reconcat (relative, comp_dir, SLASH_STRING,
24080 relative, (char *) NULL);
233d95b5
JK
24081 }
24082 else
24083 return file_file_name (file, lh);
24084}
24085
2e276125
JB
24086
24087static struct macro_source_file *
804d2729
TT
24088macro_start_file (struct dwarf2_cu *cu,
24089 int file, int line,
2e276125 24090 struct macro_source_file *current_file,
43f3e411 24091 struct line_header *lh)
2e276125 24092{
233d95b5
JK
24093 /* File name relative to the compilation directory of this source file. */
24094 char *file_name = file_file_name (file, lh);
2e276125 24095
2e276125 24096 if (! current_file)
abc9d0dc 24097 {
fc474241
DE
24098 /* Note: We don't create a macro table for this compilation unit
24099 at all until we actually get a filename. */
c24bdb02 24100 struct macro_table *macro_table = cu->get_builder ()->get_macro_table ();
fc474241 24101
abc9d0dc
TT
24102 /* If we have no current file, then this must be the start_file
24103 directive for the compilation unit's main source file. */
fc474241
DE
24104 current_file = macro_set_main (macro_table, file_name);
24105 macro_define_special (macro_table);
abc9d0dc 24106 }
2e276125 24107 else
233d95b5 24108 current_file = macro_include (current_file, line, file_name);
2e276125 24109
233d95b5 24110 xfree (file_name);
6e70227d 24111
2e276125
JB
24112 return current_file;
24113}
24114
2e276125
JB
24115static const char *
24116consume_improper_spaces (const char *p, const char *body)
24117{
24118 if (*p == ' ')
24119 {
b98664d3 24120 complaint (_("macro definition contains spaces "
3e43a32a 24121 "in formal argument list:\n`%s'"),
4d3c2250 24122 body);
2e276125
JB
24123
24124 while (*p == ' ')
24125 p++;
24126 }
24127
24128 return p;
24129}
24130
24131
24132static void
24133parse_macro_definition (struct macro_source_file *file, int line,
24134 const char *body)
24135{
24136 const char *p;
24137
24138 /* The body string takes one of two forms. For object-like macro
24139 definitions, it should be:
24140
24141 <macro name> " " <definition>
24142
24143 For function-like macro definitions, it should be:
24144
24145 <macro name> "() " <definition>
24146 or
24147 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
24148
24149 Spaces may appear only where explicitly indicated, and in the
24150 <definition>.
24151
24152 The Dwarf 2 spec says that an object-like macro's name is always
24153 followed by a space, but versions of GCC around March 2002 omit
6e70227d 24154 the space when the macro's definition is the empty string.
2e276125
JB
24155
24156 The Dwarf 2 spec says that there should be no spaces between the
24157 formal arguments in a function-like macro's formal argument list,
24158 but versions of GCC around March 2002 include spaces after the
24159 commas. */
24160
24161
24162 /* Find the extent of the macro name. The macro name is terminated
24163 by either a space or null character (for an object-like macro) or
24164 an opening paren (for a function-like macro). */
24165 for (p = body; *p; p++)
24166 if (*p == ' ' || *p == '(')
24167 break;
24168
24169 if (*p == ' ' || *p == '\0')
24170 {
24171 /* It's an object-like macro. */
24172 int name_len = p - body;
3f8a7804 24173 char *name = savestring (body, name_len);
2e276125
JB
24174 const char *replacement;
24175
24176 if (*p == ' ')
24177 replacement = body + name_len + 1;
24178 else
24179 {
4d3c2250 24180 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24181 replacement = body + name_len;
24182 }
6e70227d 24183
2e276125
JB
24184 macro_define_object (file, line, name, replacement);
24185
24186 xfree (name);
24187 }
24188 else if (*p == '(')
24189 {
24190 /* It's a function-like macro. */
3f8a7804 24191 char *name = savestring (body, p - body);
2e276125
JB
24192 int argc = 0;
24193 int argv_size = 1;
8d749320 24194 char **argv = XNEWVEC (char *, argv_size);
2e276125
JB
24195
24196 p++;
24197
24198 p = consume_improper_spaces (p, body);
24199
24200 /* Parse the formal argument list. */
24201 while (*p && *p != ')')
24202 {
24203 /* Find the extent of the current argument name. */
24204 const char *arg_start = p;
24205
24206 while (*p && *p != ',' && *p != ')' && *p != ' ')
24207 p++;
24208
24209 if (! *p || p == arg_start)
4d3c2250 24210 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24211 else
24212 {
24213 /* Make sure argv has room for the new argument. */
24214 if (argc >= argv_size)
24215 {
24216 argv_size *= 2;
224c3ddb 24217 argv = XRESIZEVEC (char *, argv, argv_size);
2e276125
JB
24218 }
24219
3f8a7804 24220 argv[argc++] = savestring (arg_start, p - arg_start);
2e276125
JB
24221 }
24222
24223 p = consume_improper_spaces (p, body);
24224
24225 /* Consume the comma, if present. */
24226 if (*p == ',')
24227 {
24228 p++;
24229
24230 p = consume_improper_spaces (p, body);
24231 }
24232 }
24233
24234 if (*p == ')')
24235 {
24236 p++;
24237
24238 if (*p == ' ')
24239 /* Perfectly formed definition, no complaints. */
24240 macro_define_function (file, line, name,
6e70227d 24241 argc, (const char **) argv,
2e276125
JB
24242 p + 1);
24243 else if (*p == '\0')
24244 {
24245 /* Complain, but do define it. */
4d3c2250 24246 dwarf2_macro_malformed_definition_complaint (body);
2e276125 24247 macro_define_function (file, line, name,
6e70227d 24248 argc, (const char **) argv,
2e276125
JB
24249 p);
24250 }
24251 else
24252 /* Just complain. */
4d3c2250 24253 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24254 }
24255 else
24256 /* Just complain. */
4d3c2250 24257 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24258
24259 xfree (name);
24260 {
24261 int i;
24262
24263 for (i = 0; i < argc; i++)
24264 xfree (argv[i]);
24265 }
24266 xfree (argv);
24267 }
24268 else
4d3c2250 24269 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24270}
24271
cf2c3c16
TT
24272/* Skip some bytes from BYTES according to the form given in FORM.
24273 Returns the new pointer. */
2e276125 24274
d521ce57
TT
24275static const gdb_byte *
24276skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
cf2c3c16
TT
24277 enum dwarf_form form,
24278 unsigned int offset_size,
24279 struct dwarf2_section_info *section)
2e276125 24280{
cf2c3c16 24281 unsigned int bytes_read;
2e276125 24282
cf2c3c16 24283 switch (form)
2e276125 24284 {
cf2c3c16
TT
24285 case DW_FORM_data1:
24286 case DW_FORM_flag:
24287 ++bytes;
24288 break;
24289
24290 case DW_FORM_data2:
24291 bytes += 2;
24292 break;
24293
24294 case DW_FORM_data4:
24295 bytes += 4;
24296 break;
24297
24298 case DW_FORM_data8:
24299 bytes += 8;
24300 break;
24301
0224619f
JK
24302 case DW_FORM_data16:
24303 bytes += 16;
24304 break;
24305
cf2c3c16
TT
24306 case DW_FORM_string:
24307 read_direct_string (abfd, bytes, &bytes_read);
24308 bytes += bytes_read;
24309 break;
24310
24311 case DW_FORM_sec_offset:
24312 case DW_FORM_strp:
36586728 24313 case DW_FORM_GNU_strp_alt:
cf2c3c16
TT
24314 bytes += offset_size;
24315 break;
24316
24317 case DW_FORM_block:
24318 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
24319 bytes += bytes_read;
24320 break;
24321
24322 case DW_FORM_block1:
24323 bytes += 1 + read_1_byte (abfd, bytes);
24324 break;
24325 case DW_FORM_block2:
24326 bytes += 2 + read_2_bytes (abfd, bytes);
24327 break;
24328 case DW_FORM_block4:
24329 bytes += 4 + read_4_bytes (abfd, bytes);
24330 break;
24331
336d760d 24332 case DW_FORM_addrx:
cf2c3c16 24333 case DW_FORM_sdata:
cf532bd1 24334 case DW_FORM_strx:
cf2c3c16 24335 case DW_FORM_udata:
3019eac3
DE
24336 case DW_FORM_GNU_addr_index:
24337 case DW_FORM_GNU_str_index:
d521ce57 24338 bytes = gdb_skip_leb128 (bytes, buffer_end);
f664829e
DE
24339 if (bytes == NULL)
24340 {
24341 dwarf2_section_buffer_overflow_complaint (section);
24342 return NULL;
24343 }
cf2c3c16
TT
24344 break;
24345
663c44ac
JK
24346 case DW_FORM_implicit_const:
24347 break;
24348
cf2c3c16
TT
24349 default:
24350 {
b98664d3 24351 complaint (_("invalid form 0x%x in `%s'"),
a32a8923 24352 form, get_section_name (section));
cf2c3c16
TT
24353 return NULL;
24354 }
2e276125
JB
24355 }
24356
cf2c3c16
TT
24357 return bytes;
24358}
757a13d0 24359
cf2c3c16
TT
24360/* A helper for dwarf_decode_macros that handles skipping an unknown
24361 opcode. Returns an updated pointer to the macro data buffer; or,
24362 on error, issues a complaint and returns NULL. */
757a13d0 24363
d521ce57 24364static const gdb_byte *
cf2c3c16 24365skip_unknown_opcode (unsigned int opcode,
d521ce57
TT
24366 const gdb_byte **opcode_definitions,
24367 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16
TT
24368 bfd *abfd,
24369 unsigned int offset_size,
24370 struct dwarf2_section_info *section)
24371{
24372 unsigned int bytes_read, i;
24373 unsigned long arg;
d521ce57 24374 const gdb_byte *defn;
2e276125 24375
cf2c3c16 24376 if (opcode_definitions[opcode] == NULL)
2e276125 24377 {
b98664d3 24378 complaint (_("unrecognized DW_MACFINO opcode 0x%x"),
cf2c3c16
TT
24379 opcode);
24380 return NULL;
24381 }
2e276125 24382
cf2c3c16
TT
24383 defn = opcode_definitions[opcode];
24384 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
24385 defn += bytes_read;
2e276125 24386
cf2c3c16
TT
24387 for (i = 0; i < arg; ++i)
24388 {
aead7601
SM
24389 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end,
24390 (enum dwarf_form) defn[i], offset_size,
f664829e 24391 section);
cf2c3c16
TT
24392 if (mac_ptr == NULL)
24393 {
24394 /* skip_form_bytes already issued the complaint. */
24395 return NULL;
24396 }
24397 }
757a13d0 24398
cf2c3c16
TT
24399 return mac_ptr;
24400}
757a13d0 24401
cf2c3c16
TT
24402/* A helper function which parses the header of a macro section.
24403 If the macro section is the extended (for now called "GNU") type,
24404 then this updates *OFFSET_SIZE. Returns a pointer to just after
24405 the header, or issues a complaint and returns NULL on error. */
757a13d0 24406
d521ce57
TT
24407static const gdb_byte *
24408dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
cf2c3c16 24409 bfd *abfd,
d521ce57 24410 const gdb_byte *mac_ptr,
cf2c3c16
TT
24411 unsigned int *offset_size,
24412 int section_is_gnu)
24413{
24414 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
757a13d0 24415
cf2c3c16
TT
24416 if (section_is_gnu)
24417 {
24418 unsigned int version, flags;
757a13d0 24419
cf2c3c16 24420 version = read_2_bytes (abfd, mac_ptr);
0af92d60 24421 if (version != 4 && version != 5)
cf2c3c16 24422 {
b98664d3 24423 complaint (_("unrecognized version `%d' in .debug_macro section"),
cf2c3c16
TT
24424 version);
24425 return NULL;
24426 }
24427 mac_ptr += 2;
757a13d0 24428
cf2c3c16
TT
24429 flags = read_1_byte (abfd, mac_ptr);
24430 ++mac_ptr;
24431 *offset_size = (flags & 1) ? 8 : 4;
757a13d0 24432
cf2c3c16
TT
24433 if ((flags & 2) != 0)
24434 /* We don't need the line table offset. */
24435 mac_ptr += *offset_size;
757a13d0 24436
cf2c3c16
TT
24437 /* Vendor opcode descriptions. */
24438 if ((flags & 4) != 0)
24439 {
24440 unsigned int i, count;
757a13d0 24441
cf2c3c16
TT
24442 count = read_1_byte (abfd, mac_ptr);
24443 ++mac_ptr;
24444 for (i = 0; i < count; ++i)
24445 {
24446 unsigned int opcode, bytes_read;
24447 unsigned long arg;
24448
24449 opcode = read_1_byte (abfd, mac_ptr);
24450 ++mac_ptr;
24451 opcode_definitions[opcode] = mac_ptr;
24452 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24453 mac_ptr += bytes_read;
24454 mac_ptr += arg;
24455 }
757a13d0 24456 }
cf2c3c16 24457 }
757a13d0 24458
cf2c3c16
TT
24459 return mac_ptr;
24460}
757a13d0 24461
cf2c3c16 24462/* A helper for dwarf_decode_macros that handles the GNU extensions,
0af92d60 24463 including DW_MACRO_import. */
cf2c3c16
TT
24464
24465static void
804d2729 24466dwarf_decode_macro_bytes (struct dwarf2_cu *cu,
ed2dc618 24467 bfd *abfd,
d521ce57 24468 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16 24469 struct macro_source_file *current_file,
43f3e411 24470 struct line_header *lh,
cf2c3c16 24471 struct dwarf2_section_info *section,
36586728 24472 int section_is_gnu, int section_is_dwz,
cf2c3c16 24473 unsigned int offset_size,
8fc3fc34 24474 htab_t include_hash)
cf2c3c16 24475{
804d2729
TT
24476 struct dwarf2_per_objfile *dwarf2_per_objfile
24477 = cu->per_cu->dwarf2_per_objfile;
4d663531 24478 struct objfile *objfile = dwarf2_per_objfile->objfile;
cf2c3c16
TT
24479 enum dwarf_macro_record_type macinfo_type;
24480 int at_commandline;
d521ce57 24481 const gdb_byte *opcode_definitions[256];
757a13d0 24482
cf2c3c16
TT
24483 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24484 &offset_size, section_is_gnu);
24485 if (mac_ptr == NULL)
24486 {
24487 /* We already issued a complaint. */
24488 return;
24489 }
757a13d0
JK
24490
24491 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
24492 GDB is still reading the definitions from command line. First
24493 DW_MACINFO_start_file will need to be ignored as it was already executed
24494 to create CURRENT_FILE for the main source holding also the command line
24495 definitions. On first met DW_MACINFO_start_file this flag is reset to
24496 normally execute all the remaining DW_MACINFO_start_file macinfos. */
24497
24498 at_commandline = 1;
24499
24500 do
24501 {
24502 /* Do we at least have room for a macinfo type byte? */
24503 if (mac_ptr >= mac_end)
24504 {
f664829e 24505 dwarf2_section_buffer_overflow_complaint (section);
757a13d0
JK
24506 break;
24507 }
24508
aead7601 24509 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
757a13d0
JK
24510 mac_ptr++;
24511
cf2c3c16
TT
24512 /* Note that we rely on the fact that the corresponding GNU and
24513 DWARF constants are the same. */
132448f8
SM
24514 DIAGNOSTIC_PUSH
24515 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
757a13d0
JK
24516 switch (macinfo_type)
24517 {
24518 /* A zero macinfo type indicates the end of the macro
24519 information. */
24520 case 0:
24521 break;
2e276125 24522
0af92d60
JK
24523 case DW_MACRO_define:
24524 case DW_MACRO_undef:
24525 case DW_MACRO_define_strp:
24526 case DW_MACRO_undef_strp:
24527 case DW_MACRO_define_sup:
24528 case DW_MACRO_undef_sup:
2e276125 24529 {
891d2f0b 24530 unsigned int bytes_read;
2e276125 24531 int line;
d521ce57 24532 const char *body;
cf2c3c16 24533 int is_define;
2e276125 24534
cf2c3c16
TT
24535 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24536 mac_ptr += bytes_read;
24537
0af92d60
JK
24538 if (macinfo_type == DW_MACRO_define
24539 || macinfo_type == DW_MACRO_undef)
cf2c3c16
TT
24540 {
24541 body = read_direct_string (abfd, mac_ptr, &bytes_read);
24542 mac_ptr += bytes_read;
24543 }
24544 else
24545 {
24546 LONGEST str_offset;
24547
24548 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
24549 mac_ptr += offset_size;
2e276125 24550
0af92d60
JK
24551 if (macinfo_type == DW_MACRO_define_sup
24552 || macinfo_type == DW_MACRO_undef_sup
f7a35f02 24553 || section_is_dwz)
36586728 24554 {
ed2dc618
SM
24555 struct dwz_file *dwz
24556 = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728 24557
ed2dc618
SM
24558 body = read_indirect_string_from_dwz (objfile,
24559 dwz, str_offset);
36586728
TT
24560 }
24561 else
ed2dc618
SM
24562 body = read_indirect_string_at_offset (dwarf2_per_objfile,
24563 abfd, str_offset);
cf2c3c16
TT
24564 }
24565
0af92d60
JK
24566 is_define = (macinfo_type == DW_MACRO_define
24567 || macinfo_type == DW_MACRO_define_strp
24568 || macinfo_type == DW_MACRO_define_sup);
2e276125 24569 if (! current_file)
757a13d0
JK
24570 {
24571 /* DWARF violation as no main source is present. */
b98664d3 24572 complaint (_("debug info with no main source gives macro %s "
757a13d0 24573 "on line %d: %s"),
cf2c3c16
TT
24574 is_define ? _("definition") : _("undefinition"),
24575 line, body);
757a13d0
JK
24576 break;
24577 }
3e43a32a
MS
24578 if ((line == 0 && !at_commandline)
24579 || (line != 0 && at_commandline))
b98664d3 24580 complaint (_("debug info gives %s macro %s with %s line %d: %s"),
757a13d0 24581 at_commandline ? _("command-line") : _("in-file"),
cf2c3c16 24582 is_define ? _("definition") : _("undefinition"),
757a13d0
JK
24583 line == 0 ? _("zero") : _("non-zero"), line, body);
24584
955b06fa 24585 if (body == NULL)
7bede828 24586 {
955b06fa
SDJ
24587 /* Fedora's rpm-build's "debugedit" binary
24588 corrupted .debug_macro sections.
24589
24590 For more info, see
24591 https://bugzilla.redhat.com/show_bug.cgi?id=1708786 */
24592 complaint (_("debug info gives %s invalid macro %s "
24593 "without body (corrupted?) at line %d "
24594 "on file %s"),
24595 at_commandline ? _("command-line") : _("in-file"),
24596 is_define ? _("definition") : _("undefinition"),
24597 line, current_file->filename);
7bede828 24598 }
955b06fa
SDJ
24599 else if (is_define)
24600 parse_macro_definition (current_file, line, body);
cf2c3c16
TT
24601 else
24602 {
0af92d60
JK
24603 gdb_assert (macinfo_type == DW_MACRO_undef
24604 || macinfo_type == DW_MACRO_undef_strp
24605 || macinfo_type == DW_MACRO_undef_sup);
cf2c3c16
TT
24606 macro_undef (current_file, line, body);
24607 }
2e276125
JB
24608 }
24609 break;
24610
0af92d60 24611 case DW_MACRO_start_file:
2e276125 24612 {
891d2f0b 24613 unsigned int bytes_read;
2e276125
JB
24614 int line, file;
24615
24616 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24617 mac_ptr += bytes_read;
24618 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24619 mac_ptr += bytes_read;
24620
3e43a32a
MS
24621 if ((line == 0 && !at_commandline)
24622 || (line != 0 && at_commandline))
b98664d3 24623 complaint (_("debug info gives source %d included "
757a13d0
JK
24624 "from %s at %s line %d"),
24625 file, at_commandline ? _("command-line") : _("file"),
24626 line == 0 ? _("zero") : _("non-zero"), line);
24627
24628 if (at_commandline)
24629 {
0af92d60 24630 /* This DW_MACRO_start_file was executed in the
cf2c3c16 24631 pass one. */
757a13d0
JK
24632 at_commandline = 0;
24633 }
24634 else
804d2729
TT
24635 current_file = macro_start_file (cu, file, line, current_file,
24636 lh);
2e276125
JB
24637 }
24638 break;
24639
0af92d60 24640 case DW_MACRO_end_file:
2e276125 24641 if (! current_file)
b98664d3 24642 complaint (_("macro debug info has an unmatched "
3e43a32a 24643 "`close_file' directive"));
2e276125
JB
24644 else
24645 {
24646 current_file = current_file->included_by;
24647 if (! current_file)
24648 {
cf2c3c16 24649 enum dwarf_macro_record_type next_type;
2e276125
JB
24650
24651 /* GCC circa March 2002 doesn't produce the zero
24652 type byte marking the end of the compilation
24653 unit. Complain if it's not there, but exit no
24654 matter what. */
24655
24656 /* Do we at least have room for a macinfo type byte? */
24657 if (mac_ptr >= mac_end)
24658 {
f664829e 24659 dwarf2_section_buffer_overflow_complaint (section);
2e276125
JB
24660 return;
24661 }
24662
24663 /* We don't increment mac_ptr here, so this is just
24664 a look-ahead. */
aead7601
SM
24665 next_type
24666 = (enum dwarf_macro_record_type) read_1_byte (abfd,
24667 mac_ptr);
2e276125 24668 if (next_type != 0)
b98664d3 24669 complaint (_("no terminating 0-type entry for "
3e43a32a 24670 "macros in `.debug_macinfo' section"));
2e276125
JB
24671
24672 return;
24673 }
24674 }
24675 break;
24676
0af92d60
JK
24677 case DW_MACRO_import:
24678 case DW_MACRO_import_sup:
cf2c3c16
TT
24679 {
24680 LONGEST offset;
8fc3fc34 24681 void **slot;
a036ba48
TT
24682 bfd *include_bfd = abfd;
24683 struct dwarf2_section_info *include_section = section;
d521ce57 24684 const gdb_byte *include_mac_end = mac_end;
a036ba48 24685 int is_dwz = section_is_dwz;
d521ce57 24686 const gdb_byte *new_mac_ptr;
cf2c3c16
TT
24687
24688 offset = read_offset_1 (abfd, mac_ptr, offset_size);
24689 mac_ptr += offset_size;
24690
0af92d60 24691 if (macinfo_type == DW_MACRO_import_sup)
a036ba48 24692 {
ed2dc618 24693 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
a036ba48 24694
4d663531 24695 dwarf2_read_section (objfile, &dwz->macro);
a036ba48 24696
a036ba48 24697 include_section = &dwz->macro;
a32a8923 24698 include_bfd = get_section_bfd_owner (include_section);
a036ba48
TT
24699 include_mac_end = dwz->macro.buffer + dwz->macro.size;
24700 is_dwz = 1;
24701 }
24702
24703 new_mac_ptr = include_section->buffer + offset;
24704 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
24705
8fc3fc34
TT
24706 if (*slot != NULL)
24707 {
24708 /* This has actually happened; see
24709 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
b98664d3 24710 complaint (_("recursive DW_MACRO_import in "
8fc3fc34
TT
24711 ".debug_macro section"));
24712 }
24713 else
24714 {
d521ce57 24715 *slot = (void *) new_mac_ptr;
36586728 24716
804d2729 24717 dwarf_decode_macro_bytes (cu, include_bfd, new_mac_ptr,
43f3e411 24718 include_mac_end, current_file, lh,
36586728 24719 section, section_is_gnu, is_dwz,
4d663531 24720 offset_size, include_hash);
8fc3fc34 24721
d521ce57 24722 htab_remove_elt (include_hash, (void *) new_mac_ptr);
8fc3fc34 24723 }
cf2c3c16
TT
24724 }
24725 break;
24726
2e276125 24727 case DW_MACINFO_vendor_ext:
cf2c3c16
TT
24728 if (!section_is_gnu)
24729 {
24730 unsigned int bytes_read;
2e276125 24731
ac298888
TT
24732 /* This reads the constant, but since we don't recognize
24733 any vendor extensions, we ignore it. */
24734 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
cf2c3c16
TT
24735 mac_ptr += bytes_read;
24736 read_direct_string (abfd, mac_ptr, &bytes_read);
24737 mac_ptr += bytes_read;
2e276125 24738
cf2c3c16
TT
24739 /* We don't recognize any vendor extensions. */
24740 break;
24741 }
24742 /* FALLTHROUGH */
24743
24744 default:
24745 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 24746 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
24747 section);
24748 if (mac_ptr == NULL)
24749 return;
24750 break;
2e276125 24751 }
132448f8 24752 DIAGNOSTIC_POP
757a13d0 24753 } while (macinfo_type != 0);
2e276125 24754}
8e19ed76 24755
cf2c3c16 24756static void
09262596 24757dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
43f3e411 24758 int section_is_gnu)
cf2c3c16 24759{
518817b3
SM
24760 struct dwarf2_per_objfile *dwarf2_per_objfile
24761 = cu->per_cu->dwarf2_per_objfile;
bb5ed363 24762 struct objfile *objfile = dwarf2_per_objfile->objfile;
09262596
DE
24763 struct line_header *lh = cu->line_header;
24764 bfd *abfd;
d521ce57 24765 const gdb_byte *mac_ptr, *mac_end;
cf2c3c16
TT
24766 struct macro_source_file *current_file = 0;
24767 enum dwarf_macro_record_type macinfo_type;
24768 unsigned int offset_size = cu->header.offset_size;
d521ce57 24769 const gdb_byte *opcode_definitions[256];
8fc3fc34 24770 void **slot;
09262596
DE
24771 struct dwarf2_section_info *section;
24772 const char *section_name;
24773
24774 if (cu->dwo_unit != NULL)
24775 {
24776 if (section_is_gnu)
24777 {
24778 section = &cu->dwo_unit->dwo_file->sections.macro;
24779 section_name = ".debug_macro.dwo";
24780 }
24781 else
24782 {
24783 section = &cu->dwo_unit->dwo_file->sections.macinfo;
24784 section_name = ".debug_macinfo.dwo";
24785 }
24786 }
24787 else
24788 {
24789 if (section_is_gnu)
24790 {
24791 section = &dwarf2_per_objfile->macro;
24792 section_name = ".debug_macro";
24793 }
24794 else
24795 {
24796 section = &dwarf2_per_objfile->macinfo;
24797 section_name = ".debug_macinfo";
24798 }
24799 }
cf2c3c16 24800
bb5ed363 24801 dwarf2_read_section (objfile, section);
cf2c3c16
TT
24802 if (section->buffer == NULL)
24803 {
b98664d3 24804 complaint (_("missing %s section"), section_name);
cf2c3c16
TT
24805 return;
24806 }
a32a8923 24807 abfd = get_section_bfd_owner (section);
cf2c3c16
TT
24808
24809 /* First pass: Find the name of the base filename.
24810 This filename is needed in order to process all macros whose definition
24811 (or undefinition) comes from the command line. These macros are defined
24812 before the first DW_MACINFO_start_file entry, and yet still need to be
24813 associated to the base file.
24814
24815 To determine the base file name, we scan the macro definitions until we
24816 reach the first DW_MACINFO_start_file entry. We then initialize
24817 CURRENT_FILE accordingly so that any macro definition found before the
24818 first DW_MACINFO_start_file can still be associated to the base file. */
24819
24820 mac_ptr = section->buffer + offset;
24821 mac_end = section->buffer + section->size;
24822
24823 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24824 &offset_size, section_is_gnu);
24825 if (mac_ptr == NULL)
24826 {
24827 /* We already issued a complaint. */
24828 return;
24829 }
24830
24831 do
24832 {
24833 /* Do we at least have room for a macinfo type byte? */
24834 if (mac_ptr >= mac_end)
24835 {
24836 /* Complaint is printed during the second pass as GDB will probably
24837 stop the first pass earlier upon finding
24838 DW_MACINFO_start_file. */
24839 break;
24840 }
24841
aead7601 24842 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
cf2c3c16
TT
24843 mac_ptr++;
24844
24845 /* Note that we rely on the fact that the corresponding GNU and
24846 DWARF constants are the same. */
132448f8
SM
24847 DIAGNOSTIC_PUSH
24848 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
cf2c3c16
TT
24849 switch (macinfo_type)
24850 {
24851 /* A zero macinfo type indicates the end of the macro
24852 information. */
24853 case 0:
24854 break;
24855
0af92d60
JK
24856 case DW_MACRO_define:
24857 case DW_MACRO_undef:
cf2c3c16
TT
24858 /* Only skip the data by MAC_PTR. */
24859 {
24860 unsigned int bytes_read;
24861
24862 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24863 mac_ptr += bytes_read;
24864 read_direct_string (abfd, mac_ptr, &bytes_read);
24865 mac_ptr += bytes_read;
24866 }
24867 break;
24868
0af92d60 24869 case DW_MACRO_start_file:
cf2c3c16
TT
24870 {
24871 unsigned int bytes_read;
24872 int line, file;
24873
24874 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24875 mac_ptr += bytes_read;
24876 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24877 mac_ptr += bytes_read;
24878
804d2729 24879 current_file = macro_start_file (cu, file, line, current_file, lh);
cf2c3c16
TT
24880 }
24881 break;
24882
0af92d60 24883 case DW_MACRO_end_file:
cf2c3c16
TT
24884 /* No data to skip by MAC_PTR. */
24885 break;
24886
0af92d60
JK
24887 case DW_MACRO_define_strp:
24888 case DW_MACRO_undef_strp:
24889 case DW_MACRO_define_sup:
24890 case DW_MACRO_undef_sup:
cf2c3c16
TT
24891 {
24892 unsigned int bytes_read;
24893
24894 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24895 mac_ptr += bytes_read;
24896 mac_ptr += offset_size;
24897 }
24898 break;
24899
0af92d60
JK
24900 case DW_MACRO_import:
24901 case DW_MACRO_import_sup:
cf2c3c16 24902 /* Note that, according to the spec, a transparent include
0af92d60 24903 chain cannot call DW_MACRO_start_file. So, we can just
cf2c3c16
TT
24904 skip this opcode. */
24905 mac_ptr += offset_size;
24906 break;
24907
24908 case DW_MACINFO_vendor_ext:
24909 /* Only skip the data by MAC_PTR. */
24910 if (!section_is_gnu)
24911 {
24912 unsigned int bytes_read;
24913
24914 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24915 mac_ptr += bytes_read;
24916 read_direct_string (abfd, mac_ptr, &bytes_read);
24917 mac_ptr += bytes_read;
24918 }
24919 /* FALLTHROUGH */
24920
24921 default:
24922 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 24923 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
24924 section);
24925 if (mac_ptr == NULL)
24926 return;
24927 break;
24928 }
132448f8 24929 DIAGNOSTIC_POP
cf2c3c16
TT
24930 } while (macinfo_type != 0 && current_file == NULL);
24931
24932 /* Second pass: Process all entries.
24933
24934 Use the AT_COMMAND_LINE flag to determine whether we are still processing
24935 command-line macro definitions/undefinitions. This flag is unset when we
24936 reach the first DW_MACINFO_start_file entry. */
24937
fc4007c9
TT
24938 htab_up include_hash (htab_create_alloc (1, htab_hash_pointer,
24939 htab_eq_pointer,
24940 NULL, xcalloc, xfree));
8fc3fc34 24941 mac_ptr = section->buffer + offset;
fc4007c9 24942 slot = htab_find_slot (include_hash.get (), mac_ptr, INSERT);
d521ce57 24943 *slot = (void *) mac_ptr;
804d2729 24944 dwarf_decode_macro_bytes (cu, abfd, mac_ptr, mac_end,
43f3e411 24945 current_file, lh, section,
fc4007c9
TT
24946 section_is_gnu, 0, offset_size,
24947 include_hash.get ());
cf2c3c16
TT
24948}
24949
8e19ed76 24950/* Check if the attribute's form is a DW_FORM_block*
0963b4bd 24951 if so return true else false. */
380bca97 24952
8e19ed76 24953static int
6e5a29e1 24954attr_form_is_block (const struct attribute *attr)
8e19ed76
PS
24955{
24956 return (attr == NULL ? 0 :
24957 attr->form == DW_FORM_block1
24958 || attr->form == DW_FORM_block2
24959 || attr->form == DW_FORM_block4
2dc7f7b3
TT
24960 || attr->form == DW_FORM_block
24961 || attr->form == DW_FORM_exprloc);
8e19ed76 24962}
4c2df51b 24963
c6a0999f
JB
24964/* Return non-zero if ATTR's value is a section offset --- classes
24965 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
24966 You may use DW_UNSND (attr) to retrieve such offsets.
24967
24968 Section 7.5.4, "Attribute Encodings", explains that no attribute
24969 may have a value that belongs to more than one of these classes; it
24970 would be ambiguous if we did, because we use the same forms for all
24971 of them. */
380bca97 24972
3690dd37 24973static int
6e5a29e1 24974attr_form_is_section_offset (const struct attribute *attr)
3690dd37
JB
24975{
24976 return (attr->form == DW_FORM_data4
2dc7f7b3
TT
24977 || attr->form == DW_FORM_data8
24978 || attr->form == DW_FORM_sec_offset);
3690dd37
JB
24979}
24980
3690dd37
JB
24981/* Return non-zero if ATTR's value falls in the 'constant' class, or
24982 zero otherwise. When this function returns true, you can apply
24983 dwarf2_get_attr_constant_value to it.
24984
24985 However, note that for some attributes you must check
24986 attr_form_is_section_offset before using this test. DW_FORM_data4
24987 and DW_FORM_data8 are members of both the constant class, and of
24988 the classes that contain offsets into other debug sections
24989 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
24990 that, if an attribute's can be either a constant or one of the
24991 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
0224619f
JK
24992 taken as section offsets, not constants.
24993
24994 DW_FORM_data16 is not considered as dwarf2_get_attr_constant_value
24995 cannot handle that. */
380bca97 24996
3690dd37 24997static int
6e5a29e1 24998attr_form_is_constant (const struct attribute *attr)
3690dd37
JB
24999{
25000 switch (attr->form)
25001 {
25002 case DW_FORM_sdata:
25003 case DW_FORM_udata:
25004 case DW_FORM_data1:
25005 case DW_FORM_data2:
25006 case DW_FORM_data4:
25007 case DW_FORM_data8:
663c44ac 25008 case DW_FORM_implicit_const:
3690dd37
JB
25009 return 1;
25010 default:
25011 return 0;
25012 }
25013}
25014
7771576e
SA
25015
25016/* DW_ADDR is always stored already as sect_offset; despite for the forms
25017 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
25018
25019static int
6e5a29e1 25020attr_form_is_ref (const struct attribute *attr)
7771576e
SA
25021{
25022 switch (attr->form)
25023 {
25024 case DW_FORM_ref_addr:
25025 case DW_FORM_ref1:
25026 case DW_FORM_ref2:
25027 case DW_FORM_ref4:
25028 case DW_FORM_ref8:
25029 case DW_FORM_ref_udata:
25030 case DW_FORM_GNU_ref_alt:
25031 return 1;
25032 default:
25033 return 0;
25034 }
25035}
25036
3019eac3
DE
25037/* Return the .debug_loc section to use for CU.
25038 For DWO files use .debug_loc.dwo. */
25039
25040static struct dwarf2_section_info *
25041cu_debug_loc_section (struct dwarf2_cu *cu)
25042{
518817b3
SM
25043 struct dwarf2_per_objfile *dwarf2_per_objfile
25044 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 25045
3019eac3 25046 if (cu->dwo_unit)
43988095
JK
25047 {
25048 struct dwo_sections *sections = &cu->dwo_unit->dwo_file->sections;
25049
25050 return cu->header.version >= 5 ? &sections->loclists : &sections->loc;
25051 }
25052 return (cu->header.version >= 5 ? &dwarf2_per_objfile->loclists
25053 : &dwarf2_per_objfile->loc);
3019eac3
DE
25054}
25055
8cf6f0b1
TT
25056/* A helper function that fills in a dwarf2_loclist_baton. */
25057
25058static void
25059fill_in_loclist_baton (struct dwarf2_cu *cu,
25060 struct dwarf2_loclist_baton *baton,
ff39bb5e 25061 const struct attribute *attr)
8cf6f0b1 25062{
518817b3
SM
25063 struct dwarf2_per_objfile *dwarf2_per_objfile
25064 = cu->per_cu->dwarf2_per_objfile;
3019eac3
DE
25065 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
25066
25067 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
8cf6f0b1
TT
25068
25069 baton->per_cu = cu->per_cu;
25070 gdb_assert (baton->per_cu);
25071 /* We don't know how long the location list is, but make sure we
25072 don't run off the edge of the section. */
3019eac3
DE
25073 baton->size = section->size - DW_UNSND (attr);
25074 baton->data = section->buffer + DW_UNSND (attr);
8cf6f0b1 25075 baton->base_address = cu->base_address;
f664829e 25076 baton->from_dwo = cu->dwo_unit != NULL;
8cf6f0b1
TT
25077}
25078
4c2df51b 25079static void
ff39bb5e 25080dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
f1e6e072 25081 struct dwarf2_cu *cu, int is_block)
4c2df51b 25082{
518817b3
SM
25083 struct dwarf2_per_objfile *dwarf2_per_objfile
25084 = cu->per_cu->dwarf2_per_objfile;
bb5ed363 25085 struct objfile *objfile = dwarf2_per_objfile->objfile;
3019eac3 25086 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
bb5ed363 25087
3690dd37 25088 if (attr_form_is_section_offset (attr)
3019eac3 25089 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
99bcc461
DJ
25090 the section. If so, fall through to the complaint in the
25091 other branch. */
3019eac3 25092 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
4c2df51b 25093 {
0d53c4c4 25094 struct dwarf2_loclist_baton *baton;
4c2df51b 25095
8d749320 25096 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
4c2df51b 25097
8cf6f0b1 25098 fill_in_loclist_baton (cu, baton, attr);
be391dca 25099
d00adf39 25100 if (cu->base_known == 0)
b98664d3 25101 complaint (_("Location list used without "
3e43a32a 25102 "specifying the CU base address."));
4c2df51b 25103
f1e6e072
TT
25104 SYMBOL_ACLASS_INDEX (sym) = (is_block
25105 ? dwarf2_loclist_block_index
25106 : dwarf2_loclist_index);
0d53c4c4
DJ
25107 SYMBOL_LOCATION_BATON (sym) = baton;
25108 }
25109 else
25110 {
25111 struct dwarf2_locexpr_baton *baton;
25112
8d749320 25113 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
ae0d2f24
UW
25114 baton->per_cu = cu->per_cu;
25115 gdb_assert (baton->per_cu);
0d53c4c4
DJ
25116
25117 if (attr_form_is_block (attr))
25118 {
25119 /* Note that we're just copying the block's data pointer
25120 here, not the actual data. We're still pointing into the
6502dd73
DJ
25121 info_buffer for SYM's objfile; right now we never release
25122 that buffer, but when we do clean up properly this may
25123 need to change. */
0d53c4c4
DJ
25124 baton->size = DW_BLOCK (attr)->size;
25125 baton->data = DW_BLOCK (attr)->data;
25126 }
25127 else
25128 {
25129 dwarf2_invalid_attrib_class_complaint ("location description",
25130 SYMBOL_NATURAL_NAME (sym));
25131 baton->size = 0;
0d53c4c4 25132 }
6e70227d 25133
f1e6e072
TT
25134 SYMBOL_ACLASS_INDEX (sym) = (is_block
25135 ? dwarf2_locexpr_block_index
25136 : dwarf2_locexpr_index);
0d53c4c4
DJ
25137 SYMBOL_LOCATION_BATON (sym) = baton;
25138 }
4c2df51b 25139}
6502dd73 25140
9aa1f1e3
TT
25141/* Return the OBJFILE associated with the compilation unit CU. If CU
25142 came from a separate debuginfo file, then the master objfile is
25143 returned. */
ae0d2f24
UW
25144
25145struct objfile *
25146dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
25147{
e3b94546 25148 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
ae0d2f24
UW
25149
25150 /* Return the master objfile, so that we can report and look up the
25151 correct file containing this variable. */
25152 if (objfile->separate_debug_objfile_backlink)
25153 objfile = objfile->separate_debug_objfile_backlink;
25154
25155 return objfile;
25156}
25157
96408a79
SA
25158/* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
25159 (CU_HEADERP is unused in such case) or prepare a temporary copy at
25160 CU_HEADERP first. */
25161
25162static const struct comp_unit_head *
25163per_cu_header_read_in (struct comp_unit_head *cu_headerp,
25164 struct dwarf2_per_cu_data *per_cu)
25165{
d521ce57 25166 const gdb_byte *info_ptr;
96408a79
SA
25167
25168 if (per_cu->cu)
25169 return &per_cu->cu->header;
25170
9c541725 25171 info_ptr = per_cu->section->buffer + to_underlying (per_cu->sect_off);
96408a79
SA
25172
25173 memset (cu_headerp, 0, sizeof (*cu_headerp));
43988095
JK
25174 read_comp_unit_head (cu_headerp, info_ptr, per_cu->section,
25175 rcuh_kind::COMPILE);
96408a79
SA
25176
25177 return cu_headerp;
25178}
25179
ae0d2f24
UW
25180/* Return the address size given in the compilation unit header for CU. */
25181
98714339 25182int
ae0d2f24
UW
25183dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
25184{
96408a79
SA
25185 struct comp_unit_head cu_header_local;
25186 const struct comp_unit_head *cu_headerp;
c471e790 25187
96408a79
SA
25188 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25189
25190 return cu_headerp->addr_size;
ae0d2f24
UW
25191}
25192
9eae7c52
TT
25193/* Return the offset size given in the compilation unit header for CU. */
25194
25195int
25196dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
25197{
96408a79
SA
25198 struct comp_unit_head cu_header_local;
25199 const struct comp_unit_head *cu_headerp;
9c6c53f7 25200
96408a79
SA
25201 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25202
25203 return cu_headerp->offset_size;
25204}
25205
25206/* See its dwarf2loc.h declaration. */
25207
25208int
25209dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
25210{
25211 struct comp_unit_head cu_header_local;
25212 const struct comp_unit_head *cu_headerp;
25213
25214 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25215
25216 if (cu_headerp->version == 2)
25217 return cu_headerp->addr_size;
25218 else
25219 return cu_headerp->offset_size;
181cebd4
JK
25220}
25221
9aa1f1e3
TT
25222/* Return the text offset of the CU. The returned offset comes from
25223 this CU's objfile. If this objfile came from a separate debuginfo
25224 file, then the offset may be different from the corresponding
25225 offset in the parent objfile. */
25226
25227CORE_ADDR
25228dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
25229{
e3b94546 25230 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
9aa1f1e3
TT
25231
25232 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
25233}
25234
43988095
JK
25235/* Return DWARF version number of PER_CU. */
25236
25237short
25238dwarf2_version (struct dwarf2_per_cu_data *per_cu)
25239{
25240 return per_cu->dwarf_version;
25241}
25242
348e048f
DE
25243/* Locate the .debug_info compilation unit from CU's objfile which contains
25244 the DIE at OFFSET. Raises an error on failure. */
ae038cb0
DJ
25245
25246static struct dwarf2_per_cu_data *
9c541725 25247dwarf2_find_containing_comp_unit (sect_offset sect_off,
36586728 25248 unsigned int offset_in_dwz,
ed2dc618 25249 struct dwarf2_per_objfile *dwarf2_per_objfile)
ae038cb0
DJ
25250{
25251 struct dwarf2_per_cu_data *this_cu;
25252 int low, high;
25253
ae038cb0 25254 low = 0;
b76e467d 25255 high = dwarf2_per_objfile->all_comp_units.size () - 1;
ae038cb0
DJ
25256 while (high > low)
25257 {
36586728 25258 struct dwarf2_per_cu_data *mid_cu;
ae038cb0 25259 int mid = low + (high - low) / 2;
9a619af0 25260
36586728 25261 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
36586728 25262 if (mid_cu->is_dwz > offset_in_dwz
81fbbaf9 25263 || (mid_cu->is_dwz == offset_in_dwz
45b8ae0c 25264 && mid_cu->sect_off + mid_cu->length >= sect_off))
ae038cb0
DJ
25265 high = mid;
25266 else
25267 low = mid + 1;
25268 }
25269 gdb_assert (low == high);
36586728 25270 this_cu = dwarf2_per_objfile->all_comp_units[low];
45b8ae0c 25271 if (this_cu->is_dwz != offset_in_dwz || this_cu->sect_off > sect_off)
ae038cb0 25272 {
36586728 25273 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
8a3fe4f8 25274 error (_("Dwarf Error: could not find partial DIE containing "
9d8780f0
SM
25275 "offset %s [in module %s]"),
25276 sect_offset_str (sect_off),
ed2dc618 25277 bfd_get_filename (dwarf2_per_objfile->objfile->obfd));
10b3939b 25278
9c541725
PA
25279 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->sect_off
25280 <= sect_off);
ae038cb0
DJ
25281 return dwarf2_per_objfile->all_comp_units[low-1];
25282 }
25283 else
25284 {
b76e467d 25285 if (low == dwarf2_per_objfile->all_comp_units.size () - 1
9c541725 25286 && sect_off >= this_cu->sect_off + this_cu->length)
9d8780f0 25287 error (_("invalid dwarf2 offset %s"), sect_offset_str (sect_off));
9c541725 25288 gdb_assert (sect_off < this_cu->sect_off + this_cu->length);
ae038cb0
DJ
25289 return this_cu;
25290 }
25291}
25292
23745b47 25293/* Initialize dwarf2_cu CU, owned by PER_CU. */
93311388 25294
fcd3b13d
SM
25295dwarf2_cu::dwarf2_cu (struct dwarf2_per_cu_data *per_cu_)
25296 : per_cu (per_cu_),
9068261f
AB
25297 mark (false),
25298 has_loclist (false),
25299 checked_producer (false),
25300 producer_is_gxx_lt_4_6 (false),
25301 producer_is_gcc_lt_4_3 (false),
eb77c9df 25302 producer_is_icc (false),
9068261f 25303 producer_is_icc_lt_14 (false),
c258c396 25304 producer_is_codewarrior (false),
9068261f 25305 processing_has_namespace_info (false)
93311388 25306{
fcd3b13d
SM
25307 per_cu->cu = this;
25308}
25309
25310/* Destroy a dwarf2_cu. */
25311
25312dwarf2_cu::~dwarf2_cu ()
25313{
25314 per_cu->cu = NULL;
9816fde3
JK
25315}
25316
25317/* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
25318
25319static void
95554aad
TT
25320prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
25321 enum language pretend_language)
9816fde3
JK
25322{
25323 struct attribute *attr;
25324
25325 /* Set the language we're debugging. */
25326 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
25327 if (attr)
25328 set_cu_language (DW_UNSND (attr), cu);
25329 else
9cded63f 25330 {
95554aad 25331 cu->language = pretend_language;
9cded63f
TT
25332 cu->language_defn = language_def (cu->language);
25333 }
dee91e82 25334
7d45c7c3 25335 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
93311388
DE
25336}
25337
ae038cb0
DJ
25338/* Increase the age counter on each cached compilation unit, and free
25339 any that are too old. */
25340
25341static void
ed2dc618 25342age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
ae038cb0
DJ
25343{
25344 struct dwarf2_per_cu_data *per_cu, **last_chain;
25345
25346 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
25347 per_cu = dwarf2_per_objfile->read_in_chain;
25348 while (per_cu != NULL)
25349 {
25350 per_cu->cu->last_used ++;
b4f54984 25351 if (per_cu->cu->last_used <= dwarf_max_cache_age)
ae038cb0
DJ
25352 dwarf2_mark (per_cu->cu);
25353 per_cu = per_cu->cu->read_in_chain;
25354 }
25355
25356 per_cu = dwarf2_per_objfile->read_in_chain;
25357 last_chain = &dwarf2_per_objfile->read_in_chain;
25358 while (per_cu != NULL)
25359 {
25360 struct dwarf2_per_cu_data *next_cu;
25361
25362 next_cu = per_cu->cu->read_in_chain;
25363
25364 if (!per_cu->cu->mark)
25365 {
fcd3b13d 25366 delete per_cu->cu;
ae038cb0
DJ
25367 *last_chain = next_cu;
25368 }
25369 else
25370 last_chain = &per_cu->cu->read_in_chain;
25371
25372 per_cu = next_cu;
25373 }
25374}
25375
25376/* Remove a single compilation unit from the cache. */
25377
25378static void
dee91e82 25379free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
ae038cb0
DJ
25380{
25381 struct dwarf2_per_cu_data *per_cu, **last_chain;
ed2dc618
SM
25382 struct dwarf2_per_objfile *dwarf2_per_objfile
25383 = target_per_cu->dwarf2_per_objfile;
ae038cb0
DJ
25384
25385 per_cu = dwarf2_per_objfile->read_in_chain;
25386 last_chain = &dwarf2_per_objfile->read_in_chain;
25387 while (per_cu != NULL)
25388 {
25389 struct dwarf2_per_cu_data *next_cu;
25390
25391 next_cu = per_cu->cu->read_in_chain;
25392
dee91e82 25393 if (per_cu == target_per_cu)
ae038cb0 25394 {
fcd3b13d 25395 delete per_cu->cu;
dee91e82 25396 per_cu->cu = NULL;
ae038cb0
DJ
25397 *last_chain = next_cu;
25398 break;
25399 }
25400 else
25401 last_chain = &per_cu->cu->read_in_chain;
25402
25403 per_cu = next_cu;
25404 }
25405}
25406
dee91e82
DE
25407/* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
25408 We store these in a hash table separate from the DIEs, and preserve them
25409 when the DIEs are flushed out of cache.
25410
25411 The CU "per_cu" pointer is needed because offset alone is not enough to
3019eac3 25412 uniquely identify the type. A file may have multiple .debug_types sections,
c88ee1f0
DE
25413 or the type may come from a DWO file. Furthermore, while it's more logical
25414 to use per_cu->section+offset, with Fission the section with the data is in
25415 the DWO file but we don't know that section at the point we need it.
25416 We have to use something in dwarf2_per_cu_data (or the pointer to it)
25417 because we can enter the lookup routine, get_die_type_at_offset, from
25418 outside this file, and thus won't necessarily have PER_CU->cu.
25419 Fortunately, PER_CU is stable for the life of the objfile. */
1c379e20 25420
dee91e82 25421struct dwarf2_per_cu_offset_and_type
1c379e20 25422{
dee91e82 25423 const struct dwarf2_per_cu_data *per_cu;
9c541725 25424 sect_offset sect_off;
1c379e20
DJ
25425 struct type *type;
25426};
25427
dee91e82 25428/* Hash function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
25429
25430static hashval_t
dee91e82 25431per_cu_offset_and_type_hash (const void *item)
1c379e20 25432{
9a3c8263
SM
25433 const struct dwarf2_per_cu_offset_and_type *ofs
25434 = (const struct dwarf2_per_cu_offset_and_type *) item;
9a619af0 25435
9c541725 25436 return (uintptr_t) ofs->per_cu + to_underlying (ofs->sect_off);
1c379e20
DJ
25437}
25438
dee91e82 25439/* Equality function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
25440
25441static int
dee91e82 25442per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
1c379e20 25443{
9a3c8263
SM
25444 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
25445 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
25446 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
25447 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
9a619af0 25448
dee91e82 25449 return (ofs_lhs->per_cu == ofs_rhs->per_cu
9c541725 25450 && ofs_lhs->sect_off == ofs_rhs->sect_off);
1c379e20
DJ
25451}
25452
25453/* Set the type associated with DIE to TYPE. Save it in CU's hash
7e314c57
JK
25454 table if necessary. For convenience, return TYPE.
25455
25456 The DIEs reading must have careful ordering to:
25457 * Not cause infite loops trying to read in DIEs as a prerequisite for
25458 reading current DIE.
25459 * Not trying to dereference contents of still incompletely read in types
25460 while reading in other DIEs.
25461 * Enable referencing still incompletely read in types just by a pointer to
25462 the type without accessing its fields.
25463
25464 Therefore caller should follow these rules:
25465 * Try to fetch any prerequisite types we may need to build this DIE type
25466 before building the type and calling set_die_type.
e71ec853 25467 * After building type call set_die_type for current DIE as soon as
7e314c57
JK
25468 possible before fetching more types to complete the current type.
25469 * Make the type as complete as possible before fetching more types. */
1c379e20 25470
f792889a 25471static struct type *
1c379e20
DJ
25472set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
25473{
518817b3
SM
25474 struct dwarf2_per_objfile *dwarf2_per_objfile
25475 = cu->per_cu->dwarf2_per_objfile;
dee91e82 25476 struct dwarf2_per_cu_offset_and_type **slot, ofs;
ed2dc618 25477 struct objfile *objfile = dwarf2_per_objfile->objfile;
3cdcd0ce
JB
25478 struct attribute *attr;
25479 struct dynamic_prop prop;
1c379e20 25480
b4ba55a1
JB
25481 /* For Ada types, make sure that the gnat-specific data is always
25482 initialized (if not already set). There are a few types where
25483 we should not be doing so, because the type-specific area is
25484 already used to hold some other piece of info (eg: TYPE_CODE_FLT
25485 where the type-specific area is used to store the floatformat).
25486 But this is not a problem, because the gnat-specific information
25487 is actually not needed for these types. */
25488 if (need_gnat_info (cu)
25489 && TYPE_CODE (type) != TYPE_CODE_FUNC
25490 && TYPE_CODE (type) != TYPE_CODE_FLT
09e2d7c7
DE
25491 && TYPE_CODE (type) != TYPE_CODE_METHODPTR
25492 && TYPE_CODE (type) != TYPE_CODE_MEMBERPTR
25493 && TYPE_CODE (type) != TYPE_CODE_METHOD
b4ba55a1
JB
25494 && !HAVE_GNAT_AUX_INFO (type))
25495 INIT_GNAT_SPECIFIC (type);
25496
3f2f83dd
KB
25497 /* Read DW_AT_allocated and set in type. */
25498 attr = dwarf2_attr (die, DW_AT_allocated, cu);
25499 if (attr_form_is_block (attr))
25500 {
25501 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25502 add_dyn_prop (DYN_PROP_ALLOCATED, prop, type);
3f2f83dd
KB
25503 }
25504 else if (attr != NULL)
25505 {
b98664d3 25506 complaint (_("DW_AT_allocated has the wrong form (%s) at DIE %s"),
9c541725 25507 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 25508 sect_offset_str (die->sect_off));
3f2f83dd
KB
25509 }
25510
25511 /* Read DW_AT_associated and set in type. */
25512 attr = dwarf2_attr (die, DW_AT_associated, cu);
25513 if (attr_form_is_block (attr))
25514 {
25515 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25516 add_dyn_prop (DYN_PROP_ASSOCIATED, prop, type);
3f2f83dd
KB
25517 }
25518 else if (attr != NULL)
25519 {
b98664d3 25520 complaint (_("DW_AT_associated has the wrong form (%s) at DIE %s"),
9c541725 25521 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 25522 sect_offset_str (die->sect_off));
3f2f83dd
KB
25523 }
25524
3cdcd0ce
JB
25525 /* Read DW_AT_data_location and set in type. */
25526 attr = dwarf2_attr (die, DW_AT_data_location, cu);
25527 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25528 add_dyn_prop (DYN_PROP_DATA_LOCATION, prop, type);
3cdcd0ce 25529
dee91e82 25530 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 25531 {
dee91e82
DE
25532 dwarf2_per_objfile->die_type_hash =
25533 htab_create_alloc_ex (127,
25534 per_cu_offset_and_type_hash,
25535 per_cu_offset_and_type_eq,
25536 NULL,
25537 &objfile->objfile_obstack,
25538 hashtab_obstack_allocate,
25539 dummy_obstack_deallocate);
f792889a 25540 }
1c379e20 25541
dee91e82 25542 ofs.per_cu = cu->per_cu;
9c541725 25543 ofs.sect_off = die->sect_off;
1c379e20 25544 ofs.type = type;
dee91e82
DE
25545 slot = (struct dwarf2_per_cu_offset_and_type **)
25546 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
7e314c57 25547 if (*slot)
b98664d3 25548 complaint (_("A problem internal to GDB: DIE %s has type already set"),
9d8780f0 25549 sect_offset_str (die->sect_off));
8d749320
SM
25550 *slot = XOBNEW (&objfile->objfile_obstack,
25551 struct dwarf2_per_cu_offset_and_type);
1c379e20 25552 **slot = ofs;
f792889a 25553 return type;
1c379e20
DJ
25554}
25555
9c541725 25556/* Look up the type for the die at SECT_OFF in PER_CU in die_type_hash,
02142a6c 25557 or return NULL if the die does not have a saved type. */
1c379e20
DJ
25558
25559static struct type *
9c541725 25560get_die_type_at_offset (sect_offset sect_off,
673bfd45 25561 struct dwarf2_per_cu_data *per_cu)
1c379e20 25562{
dee91e82 25563 struct dwarf2_per_cu_offset_and_type *slot, ofs;
ed2dc618 25564 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
f792889a 25565
dee91e82 25566 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 25567 return NULL;
1c379e20 25568
dee91e82 25569 ofs.per_cu = per_cu;
9c541725 25570 ofs.sect_off = sect_off;
9a3c8263
SM
25571 slot = ((struct dwarf2_per_cu_offset_and_type *)
25572 htab_find (dwarf2_per_objfile->die_type_hash, &ofs));
1c379e20
DJ
25573 if (slot)
25574 return slot->type;
25575 else
25576 return NULL;
25577}
25578
02142a6c 25579/* Look up the type for DIE in CU in die_type_hash,
673bfd45
DE
25580 or return NULL if DIE does not have a saved type. */
25581
25582static struct type *
25583get_die_type (struct die_info *die, struct dwarf2_cu *cu)
25584{
9c541725 25585 return get_die_type_at_offset (die->sect_off, cu->per_cu);
673bfd45
DE
25586}
25587
10b3939b
DJ
25588/* Add a dependence relationship from CU to REF_PER_CU. */
25589
25590static void
25591dwarf2_add_dependence (struct dwarf2_cu *cu,
25592 struct dwarf2_per_cu_data *ref_per_cu)
25593{
25594 void **slot;
25595
25596 if (cu->dependencies == NULL)
25597 cu->dependencies
25598 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
25599 NULL, &cu->comp_unit_obstack,
25600 hashtab_obstack_allocate,
25601 dummy_obstack_deallocate);
25602
25603 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
25604 if (*slot == NULL)
25605 *slot = ref_per_cu;
25606}
1c379e20 25607
f504f079
DE
25608/* Subroutine of dwarf2_mark to pass to htab_traverse.
25609 Set the mark field in every compilation unit in the
ae038cb0
DJ
25610 cache that we must keep because we are keeping CU. */
25611
10b3939b
DJ
25612static int
25613dwarf2_mark_helper (void **slot, void *data)
25614{
25615 struct dwarf2_per_cu_data *per_cu;
25616
25617 per_cu = (struct dwarf2_per_cu_data *) *slot;
d07ed419
JK
25618
25619 /* cu->dependencies references may not yet have been ever read if QUIT aborts
25620 reading of the chain. As such dependencies remain valid it is not much
25621 useful to track and undo them during QUIT cleanups. */
25622 if (per_cu->cu == NULL)
25623 return 1;
25624
10b3939b
DJ
25625 if (per_cu->cu->mark)
25626 return 1;
9068261f 25627 per_cu->cu->mark = true;
10b3939b
DJ
25628
25629 if (per_cu->cu->dependencies != NULL)
25630 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
25631
25632 return 1;
25633}
25634
f504f079
DE
25635/* Set the mark field in CU and in every other compilation unit in the
25636 cache that we must keep because we are keeping CU. */
25637
ae038cb0
DJ
25638static void
25639dwarf2_mark (struct dwarf2_cu *cu)
25640{
25641 if (cu->mark)
25642 return;
9068261f 25643 cu->mark = true;
10b3939b
DJ
25644 if (cu->dependencies != NULL)
25645 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
ae038cb0
DJ
25646}
25647
25648static void
25649dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
25650{
25651 while (per_cu)
25652 {
9068261f 25653 per_cu->cu->mark = false;
ae038cb0
DJ
25654 per_cu = per_cu->cu->read_in_chain;
25655 }
72bf9492
DJ
25656}
25657
72bf9492
DJ
25658/* Trivial hash function for partial_die_info: the hash value of a DIE
25659 is its offset in .debug_info for this objfile. */
25660
25661static hashval_t
25662partial_die_hash (const void *item)
25663{
9a3c8263
SM
25664 const struct partial_die_info *part_die
25665 = (const struct partial_die_info *) item;
9a619af0 25666
9c541725 25667 return to_underlying (part_die->sect_off);
72bf9492
DJ
25668}
25669
25670/* Trivial comparison function for partial_die_info structures: two DIEs
25671 are equal if they have the same offset. */
25672
25673static int
25674partial_die_eq (const void *item_lhs, const void *item_rhs)
25675{
9a3c8263
SM
25676 const struct partial_die_info *part_die_lhs
25677 = (const struct partial_die_info *) item_lhs;
25678 const struct partial_die_info *part_die_rhs
25679 = (const struct partial_die_info *) item_rhs;
9a619af0 25680
9c541725 25681 return part_die_lhs->sect_off == part_die_rhs->sect_off;
72bf9492
DJ
25682}
25683
3c3bb058
AB
25684struct cmd_list_element *set_dwarf_cmdlist;
25685struct cmd_list_element *show_dwarf_cmdlist;
ae038cb0
DJ
25686
25687static void
981a3fb3 25688set_dwarf_cmd (const char *args, int from_tty)
ae038cb0 25689{
b4f54984 25690 help_list (set_dwarf_cmdlist, "maintenance set dwarf ", all_commands,
635c7e8a 25691 gdb_stdout);
ae038cb0
DJ
25692}
25693
25694static void
981a3fb3 25695show_dwarf_cmd (const char *args, int from_tty)
6e70227d 25696{
b4f54984 25697 cmd_show_list (show_dwarf_cmdlist, from_tty, "");
ae038cb0
DJ
25698}
25699
cd4fb1b2 25700int dwarf_always_disassemble;
437afbb8 25701
437afbb8 25702static void
cd4fb1b2
SM
25703show_dwarf_always_disassemble (struct ui_file *file, int from_tty,
25704 struct cmd_list_element *c, const char *value)
9291a0cd 25705{
cd4fb1b2
SM
25706 fprintf_filtered (file,
25707 _("Whether to always disassemble "
25708 "DWARF expressions is %s.\n"),
25709 value);
9291a0cd
TT
25710}
25711
9291a0cd 25712static void
cd4fb1b2
SM
25713show_check_physname (struct ui_file *file, int from_tty,
25714 struct cmd_list_element *c, const char *value)
9291a0cd 25715{
cd4fb1b2
SM
25716 fprintf_filtered (file,
25717 _("Whether to check \"physname\" is %s.\n"),
25718 value);
9291a0cd
TT
25719}
25720
cd4fb1b2
SM
25721void
25722_initialize_dwarf2_read (void)
9291a0cd 25723{
cd4fb1b2
SM
25724 add_prefix_cmd ("dwarf", class_maintenance, set_dwarf_cmd, _("\
25725Set DWARF specific variables.\n\
25726Configure DWARF variables such as the cache size"),
25727 &set_dwarf_cmdlist, "maintenance set dwarf ",
25728 0/*allow-unknown*/, &maintenance_set_cmdlist);
156942c7 25729
cd4fb1b2
SM
25730 add_prefix_cmd ("dwarf", class_maintenance, show_dwarf_cmd, _("\
25731Show DWARF specific variables\n\
25732Show DWARF variables such as the cache size"),
25733 &show_dwarf_cmdlist, "maintenance show dwarf ",
25734 0/*allow-unknown*/, &maintenance_show_cmdlist);
156942c7 25735
cd4fb1b2
SM
25736 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
25737 &dwarf_max_cache_age, _("\
25738Set the upper bound on the age of cached DWARF compilation units."), _("\
25739Show the upper bound on the age of cached DWARF compilation units."), _("\
25740A higher limit means that cached compilation units will be stored\n\
25741in memory longer, and more total memory will be used. Zero disables\n\
25742caching, which can slow down startup."),
25743 NULL,
25744 show_dwarf_max_cache_age,
25745 &set_dwarf_cmdlist,
25746 &show_dwarf_cmdlist);
156942c7 25747
cd4fb1b2
SM
25748 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
25749 &dwarf_always_disassemble, _("\
25750Set whether `info address' always disassembles DWARF expressions."), _("\
25751Show whether `info address' always disassembles DWARF expressions."), _("\
25752When enabled, DWARF expressions are always printed in an assembly-like\n\
25753syntax. When disabled, expressions will be printed in a more\n\
25754conversational style, when possible."),
25755 NULL,
25756 show_dwarf_always_disassemble,
25757 &set_dwarf_cmdlist,
25758 &show_dwarf_cmdlist);
9291a0cd 25759
cd4fb1b2
SM
25760 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
25761Set debugging of the DWARF reader."), _("\
25762Show debugging of the DWARF reader."), _("\
25763When enabled (non-zero), debugging messages are printed during DWARF\n\
25764reading and symtab expansion. A value of 1 (one) provides basic\n\
25765information. A value greater than 1 provides more verbose information."),
25766 NULL,
25767 NULL,
25768 &setdebuglist, &showdebuglist);
9291a0cd 25769
cd4fb1b2
SM
25770 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
25771Set debugging of the DWARF DIE reader."), _("\
25772Show debugging of the DWARF DIE reader."), _("\
25773When enabled (non-zero), DIEs are dumped after they are read in.\n\
25774The value is the maximum depth to print."),
25775 NULL,
25776 NULL,
25777 &setdebuglist, &showdebuglist);
9291a0cd 25778
cd4fb1b2
SM
25779 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
25780Set debugging of the dwarf line reader."), _("\
25781Show debugging of the dwarf line reader."), _("\
25782When enabled (non-zero), line number entries are dumped as they are read in.\n\
25783A value of 1 (one) provides basic information.\n\
25784A value greater than 1 provides more verbose information."),
25785 NULL,
25786 NULL,
25787 &setdebuglist, &showdebuglist);
437afbb8 25788
cd4fb1b2
SM
25789 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
25790Set cross-checking of \"physname\" code against demangler."), _("\
25791Show cross-checking of \"physname\" code against demangler."), _("\
25792When enabled, GDB's internal \"physname\" code is checked against\n\
25793the demangler."),
25794 NULL, show_check_physname,
25795 &setdebuglist, &showdebuglist);
900e11f9 25796
e615022a
DE
25797 add_setshow_boolean_cmd ("use-deprecated-index-sections",
25798 no_class, &use_deprecated_index_sections, _("\
25799Set whether to use deprecated gdb_index sections."), _("\
25800Show whether to use deprecated gdb_index sections."), _("\
25801When enabled, deprecated .gdb_index sections are used anyway.\n\
25802Normally they are ignored either because of a missing feature or\n\
25803performance issue.\n\
25804Warning: This option must be enabled before gdb reads the file."),
25805 NULL,
25806 NULL,
25807 &setlist, &showlist);
25808
f1e6e072
TT
25809 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
25810 &dwarf2_locexpr_funcs);
25811 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
25812 &dwarf2_loclist_funcs);
25813
25814 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
25815 &dwarf2_block_frame_base_locexpr_funcs);
25816 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
25817 &dwarf2_block_frame_base_loclist_funcs);
c62446b1
PA
25818
25819#if GDB_SELF_TEST
25820 selftests::register_test ("dw2_expand_symtabs_matching",
25821 selftests::dw2_expand_symtabs_matching::run_test);
25822#endif
6502dd73 25823}
This page took 5.111994 seconds and 4 git commands to generate.