[PATCH] Support for DW_FORM_strx tag
[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
6502dd73
DJ
111static const struct objfile_data *dwarf2_objfile_data_key;
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];
215 return bucket.name == 0 && bucket.vec;
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{
284 return ((struct dwarf2_per_objfile *)
285 objfile_data (objfile, dwarf2_objfile_data_key));
286}
287
288/* Set the dwarf2_per_objfile associated to OBJFILE. */
289
290void
291set_dwarf2_per_objfile (struct objfile *objfile,
292 struct dwarf2_per_objfile *dwarf2_per_objfile)
293{
294 gdb_assert (get_dwarf2_per_objfile (objfile) == NULL);
295 set_objfile_data (objfile, dwarf2_objfile_data_key, dwarf2_per_objfile);
296}
c906108c 297
251d32d9 298/* Default names of the debugging sections. */
c906108c 299
233a11ab
CS
300/* Note that if the debugging section has been compressed, it might
301 have a name like .zdebug_info. */
302
9cdd5dbd
DE
303static const struct dwarf2_debug_sections dwarf2_elf_names =
304{
251d32d9
TG
305 { ".debug_info", ".zdebug_info" },
306 { ".debug_abbrev", ".zdebug_abbrev" },
307 { ".debug_line", ".zdebug_line" },
308 { ".debug_loc", ".zdebug_loc" },
43988095 309 { ".debug_loclists", ".zdebug_loclists" },
251d32d9 310 { ".debug_macinfo", ".zdebug_macinfo" },
cf2c3c16 311 { ".debug_macro", ".zdebug_macro" },
251d32d9 312 { ".debug_str", ".zdebug_str" },
43988095 313 { ".debug_line_str", ".zdebug_line_str" },
251d32d9 314 { ".debug_ranges", ".zdebug_ranges" },
43988095 315 { ".debug_rnglists", ".zdebug_rnglists" },
251d32d9 316 { ".debug_types", ".zdebug_types" },
3019eac3 317 { ".debug_addr", ".zdebug_addr" },
251d32d9
TG
318 { ".debug_frame", ".zdebug_frame" },
319 { ".eh_frame", NULL },
24d3216f 320 { ".gdb_index", ".zgdb_index" },
927aa2e7
JK
321 { ".debug_names", ".zdebug_names" },
322 { ".debug_aranges", ".zdebug_aranges" },
24d3216f 323 23
251d32d9 324};
c906108c 325
80626a55 326/* List of DWO/DWP sections. */
3019eac3 327
80626a55 328static const struct dwop_section_names
3019eac3
DE
329{
330 struct dwarf2_section_names abbrev_dwo;
331 struct dwarf2_section_names info_dwo;
332 struct dwarf2_section_names line_dwo;
333 struct dwarf2_section_names loc_dwo;
43988095 334 struct dwarf2_section_names loclists_dwo;
09262596
DE
335 struct dwarf2_section_names macinfo_dwo;
336 struct dwarf2_section_names macro_dwo;
3019eac3
DE
337 struct dwarf2_section_names str_dwo;
338 struct dwarf2_section_names str_offsets_dwo;
339 struct dwarf2_section_names types_dwo;
80626a55
DE
340 struct dwarf2_section_names cu_index;
341 struct dwarf2_section_names tu_index;
3019eac3 342}
80626a55 343dwop_section_names =
3019eac3
DE
344{
345 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
346 { ".debug_info.dwo", ".zdebug_info.dwo" },
347 { ".debug_line.dwo", ".zdebug_line.dwo" },
348 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
43988095 349 { ".debug_loclists.dwo", ".zdebug_loclists.dwo" },
09262596
DE
350 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
351 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
3019eac3
DE
352 { ".debug_str.dwo", ".zdebug_str.dwo" },
353 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
354 { ".debug_types.dwo", ".zdebug_types.dwo" },
80626a55
DE
355 { ".debug_cu_index", ".zdebug_cu_index" },
356 { ".debug_tu_index", ".zdebug_tu_index" },
3019eac3
DE
357};
358
c906108c
SS
359/* local data types */
360
107d2387
AC
361/* The data in a compilation unit header, after target2host
362 translation, looks like this. */
c906108c 363struct comp_unit_head
a738430d 364{
c764a876 365 unsigned int length;
a738430d 366 short version;
a738430d
MK
367 unsigned char addr_size;
368 unsigned char signed_addr_p;
9c541725 369 sect_offset abbrev_sect_off;
57349743 370
a738430d
MK
371 /* Size of file offsets; either 4 or 8. */
372 unsigned int offset_size;
57349743 373
a738430d
MK
374 /* Size of the length field; either 4 or 12. */
375 unsigned int initial_length_size;
57349743 376
43988095
JK
377 enum dwarf_unit_type unit_type;
378
a738430d
MK
379 /* Offset to the first byte of this compilation unit header in the
380 .debug_info section, for resolving relative reference dies. */
9c541725 381 sect_offset sect_off;
57349743 382
d00adf39
DE
383 /* Offset to first die in this cu from the start of the cu.
384 This will be the first byte following the compilation unit header. */
9c541725 385 cu_offset first_die_cu_offset;
43988095
JK
386
387 /* 64-bit signature of this type unit - it is valid only for
388 UNIT_TYPE DW_UT_type. */
389 ULONGEST signature;
390
391 /* For types, offset in the type's DIE of the type defined by this TU. */
9c541725 392 cu_offset type_cu_offset_in_tu;
a738430d 393};
c906108c 394
3da10d80
KS
395/* Type used for delaying computation of method physnames.
396 See comments for compute_delayed_physnames. */
397struct delayed_method_info
398{
399 /* The type to which the method is attached, i.e., its parent class. */
400 struct type *type;
401
402 /* The index of the method in the type's function fieldlists. */
403 int fnfield_index;
404
405 /* The index of the method in the fieldlist. */
406 int index;
407
408 /* The name of the DIE. */
409 const char *name;
410
411 /* The DIE associated with this method. */
412 struct die_info *die;
413};
414
e7c27a73
DJ
415/* Internal state when decoding a particular compilation unit. */
416struct dwarf2_cu
417{
fcd3b13d
SM
418 explicit dwarf2_cu (struct dwarf2_per_cu_data *per_cu);
419 ~dwarf2_cu ();
420
421 DISABLE_COPY_AND_ASSIGN (dwarf2_cu);
422
c24bdb02
KS
423 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
424 Create the set of symtabs used by this TU, or if this TU is sharing
425 symtabs with another TU and the symtabs have already been created
426 then restore those symtabs in the line header.
427 We don't need the pc/line-number mapping for type units. */
428 void setup_type_unit_groups (struct die_info *die);
429
430 /* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
431 buildsym_compunit constructor. */
432 struct compunit_symtab *start_symtab (const char *name,
433 const char *comp_dir,
434 CORE_ADDR low_pc);
435
436 /* Reset the builder. */
437 void reset_builder () { m_builder.reset (); }
438
d00adf39 439 /* The header of the compilation unit. */
fcd3b13d 440 struct comp_unit_head header {};
e142c38c 441
d00adf39 442 /* Base address of this compilation unit. */
fcd3b13d 443 CORE_ADDR base_address = 0;
d00adf39
DE
444
445 /* Non-zero if base_address has been set. */
fcd3b13d 446 int base_known = 0;
d00adf39 447
e142c38c 448 /* The language we are debugging. */
fcd3b13d
SM
449 enum language language = language_unknown;
450 const struct language_defn *language_defn = nullptr;
e142c38c 451
fcd3b13d 452 const char *producer = nullptr;
b0f35d58 453
c24bdb02 454private:
804d2729
TT
455 /* The symtab builder for this CU. This is only non-NULL when full
456 symbols are being read. */
c24bdb02 457 std::unique_ptr<buildsym_compunit> m_builder;
804d2729 458
c24bdb02 459public:
e142c38c
DJ
460 /* The generic symbol table building routines have separate lists for
461 file scope symbols and all all other scopes (local scopes). So
462 we need to select the right one to pass to add_symbol_to_list().
463 We do it by keeping a pointer to the correct list in list_in_scope.
464
465 FIXME: The original dwarf code just treated the file scope as the
466 first local scope, and all other local scopes as nested local
467 scopes, and worked fine. Check to see if we really need to
468 distinguish these in buildsym.c. */
fcd3b13d 469 struct pending **list_in_scope = nullptr;
e142c38c 470
b64f50a1
JK
471 /* Hash table holding all the loaded partial DIEs
472 with partial_die->offset.SECT_OFF as hash. */
fcd3b13d 473 htab_t partial_dies = nullptr;
72bf9492
DJ
474
475 /* Storage for things with the same lifetime as this read-in compilation
476 unit, including partial DIEs. */
fcd3b13d 477 auto_obstack comp_unit_obstack;
72bf9492 478
ae038cb0
DJ
479 /* When multiple dwarf2_cu structures are living in memory, this field
480 chains them all together, so that they can be released efficiently.
481 We will probably also want a generation counter so that most-recently-used
482 compilation units are cached... */
fcd3b13d 483 struct dwarf2_per_cu_data *read_in_chain = nullptr;
ae038cb0 484
69d751e3 485 /* Backlink to our per_cu entry. */
ae038cb0
DJ
486 struct dwarf2_per_cu_data *per_cu;
487
488 /* How many compilation units ago was this CU last referenced? */
fcd3b13d 489 int last_used = 0;
ae038cb0 490
b64f50a1
JK
491 /* A hash table of DIE cu_offset for following references with
492 die_info->offset.sect_off as hash. */
fcd3b13d 493 htab_t die_hash = nullptr;
10b3939b
DJ
494
495 /* Full DIEs if read in. */
fcd3b13d 496 struct die_info *dies = nullptr;
10b3939b
DJ
497
498 /* A set of pointers to dwarf2_per_cu_data objects for compilation
499 units referenced by this one. Only set during full symbol processing;
500 partial symbol tables do not have dependencies. */
fcd3b13d 501 htab_t dependencies = nullptr;
10b3939b 502
cb1df416 503 /* Header data from the line table, during full symbol processing. */
fcd3b13d 504 struct line_header *line_header = nullptr;
4c8aa72d
PA
505 /* Non-NULL if LINE_HEADER is owned by this DWARF_CU. Otherwise,
506 it's owned by dwarf2_per_objfile::line_header_hash. If non-NULL,
507 this is the DW_TAG_compile_unit die for this CU. We'll hold on
508 to the line header as long as this DIE is being processed. See
509 process_die_scope. */
fcd3b13d 510 die_info *line_header_die_owner = nullptr;
cb1df416 511
3da10d80
KS
512 /* A list of methods which need to have physnames computed
513 after all type information has been read. */
c89b44cd 514 std::vector<delayed_method_info> method_list;
3da10d80 515
96408a79 516 /* To be copied to symtab->call_site_htab. */
fcd3b13d 517 htab_t call_site_htab = nullptr;
96408a79 518
034e5797
DE
519 /* Non-NULL if this CU came from a DWO file.
520 There is an invariant here that is important to remember:
521 Except for attributes copied from the top level DIE in the "main"
522 (or "stub") file in preparation for reading the DWO file
523 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
524 Either there isn't a DWO file (in which case this is NULL and the point
525 is moot), or there is and either we're not going to read it (in which
526 case this is NULL) or there is and we are reading it (in which case this
527 is non-NULL). */
fcd3b13d 528 struct dwo_unit *dwo_unit = nullptr;
3019eac3
DE
529
530 /* The DW_AT_addr_base attribute if present, zero otherwise
531 (zero is a valid value though).
1dbab08b 532 Note this value comes from the Fission stub CU/TU's DIE. */
fcd3b13d 533 ULONGEST addr_base = 0;
3019eac3 534
2e3cf129
DE
535 /* The DW_AT_ranges_base attribute if present, zero otherwise
536 (zero is a valid value though).
1dbab08b 537 Note this value comes from the Fission stub CU/TU's DIE.
2e3cf129 538 Also note that the value is zero in the non-DWO case so this value can
ab435259
DE
539 be used without needing to know whether DWO files are in use or not.
540 N.B. This does not apply to DW_AT_ranges appearing in
541 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
542 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
543 DW_AT_ranges_base *would* have to be applied, and we'd have to care
544 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
fcd3b13d 545 ULONGEST ranges_base = 0;
2e3cf129 546
c9317f21
TT
547 /* When reading debug info generated by older versions of rustc, we
548 have to rewrite some union types to be struct types with a
549 variant part. This rewriting must be done after the CU is fully
550 read in, because otherwise at the point of rewriting some struct
551 type might not have been fully processed. So, we keep a list of
552 all such types here and process them after expansion. */
553 std::vector<struct type *> rust_unions;
554
ae038cb0 555 /* Mark used when releasing cached dies. */
9068261f 556 bool mark : 1;
ae038cb0 557
8be455d7
JK
558 /* This CU references .debug_loc. See the symtab->locations_valid field.
559 This test is imperfect as there may exist optimized debug code not using
560 any location list and still facing inlining issues if handled as
561 unoptimized code. For a future better test see GCC PR other/32998. */
9068261f 562 bool has_loclist : 1;
ba919b58 563
9068261f 564 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is true
1b80a9fa
JK
565 if all the producer_is_* fields are valid. This information is cached
566 because profiling CU expansion showed excessive time spent in
567 producer_is_gxx_lt_4_6. */
9068261f
AB
568 bool checked_producer : 1;
569 bool producer_is_gxx_lt_4_6 : 1;
570 bool producer_is_gcc_lt_4_3 : 1;
eb77c9df 571 bool producer_is_icc : 1;
9068261f 572 bool producer_is_icc_lt_14 : 1;
c258c396 573 bool producer_is_codewarrior : 1;
4d4ec4e5 574
9068261f 575 /* When true, the file that we're processing is known to have
4d4ec4e5
TT
576 debugging info for C++ namespaces. GCC 3.3.x did not produce
577 this information, but later versions do. */
578
9068261f 579 bool processing_has_namespace_info : 1;
d590ff25
YQ
580
581 struct partial_die_info *find_partial_die (sect_offset sect_off);
c24bdb02
KS
582
583 /* If this CU was inherited by another CU (via specification,
584 abstract_origin, etc), this is the ancestor CU. */
585 dwarf2_cu *ancestor;
586
587 /* Get the buildsym_compunit for this CU. */
588 buildsym_compunit *get_builder ()
589 {
590 /* If this CU has a builder associated with it, use that. */
591 if (m_builder != nullptr)
592 return m_builder.get ();
593
594 /* Otherwise, search ancestors for a valid builder. */
595 if (ancestor != nullptr)
596 return ancestor->get_builder ();
597
598 return nullptr;
599 }
e7c27a73
DJ
600};
601
094b34ac
DE
602/* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
603 This includes type_unit_group and quick_file_names. */
604
605struct stmt_list_hash
606{
607 /* The DWO unit this table is from or NULL if there is none. */
608 struct dwo_unit *dwo_unit;
609
610 /* Offset in .debug_line or .debug_line.dwo. */
9c541725 611 sect_offset line_sect_off;
094b34ac
DE
612};
613
f4dc4d17
DE
614/* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
615 an object of this type. */
616
617struct type_unit_group
618{
0186c6a7 619 /* dwarf2read.c's main "handle" on a TU symtab.
f4dc4d17
DE
620 To simplify things we create an artificial CU that "includes" all the
621 type units using this stmt_list so that the rest of the code still has
622 a "per_cu" handle on the symtab.
623 This PER_CU is recognized by having no section. */
8a0459fd 624#define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
094b34ac
DE
625 struct dwarf2_per_cu_data per_cu;
626
0186c6a7
DE
627 /* The TUs that share this DW_AT_stmt_list entry.
628 This is added to while parsing type units to build partial symtabs,
629 and is deleted afterwards and not used again. */
630 VEC (sig_type_ptr) *tus;
f4dc4d17 631
43f3e411 632 /* The compunit symtab.
094b34ac 633 Type units in a group needn't all be defined in the same source file,
43f3e411
DE
634 so we create an essentially anonymous symtab as the compunit symtab. */
635 struct compunit_symtab *compunit_symtab;
f4dc4d17 636
094b34ac
DE
637 /* The data used to construct the hash key. */
638 struct stmt_list_hash hash;
f4dc4d17
DE
639
640 /* The number of symtabs from the line header.
641 The value here must match line_header.num_file_names. */
642 unsigned int num_symtabs;
643
644 /* The symbol tables for this TU (obtained from the files listed in
645 DW_AT_stmt_list).
646 WARNING: The order of entries here must match the order of entries
647 in the line header. After the first TU using this type_unit_group, the
648 line header for the subsequent TUs is recreated from this. This is done
649 because we need to use the same symtabs for each TU using the same
650 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
651 there's no guarantee the line header doesn't have duplicate entries. */
652 struct symtab **symtabs;
653};
654
73869dc2 655/* These sections are what may appear in a (real or virtual) DWO file. */
3019eac3
DE
656
657struct dwo_sections
658{
659 struct dwarf2_section_info abbrev;
3019eac3
DE
660 struct dwarf2_section_info line;
661 struct dwarf2_section_info loc;
43988095 662 struct dwarf2_section_info loclists;
09262596
DE
663 struct dwarf2_section_info macinfo;
664 struct dwarf2_section_info macro;
3019eac3
DE
665 struct dwarf2_section_info str;
666 struct dwarf2_section_info str_offsets;
80626a55
DE
667 /* In the case of a virtual DWO file, these two are unused. */
668 struct dwarf2_section_info info;
3019eac3
DE
669 VEC (dwarf2_section_info_def) *types;
670};
671
c88ee1f0 672/* CUs/TUs in DWP/DWO files. */
3019eac3
DE
673
674struct dwo_unit
675{
676 /* Backlink to the containing struct dwo_file. */
677 struct dwo_file *dwo_file;
678
679 /* The "id" that distinguishes this CU/TU.
680 .debug_info calls this "dwo_id", .debug_types calls this "signature".
681 Since signatures came first, we stick with it for consistency. */
682 ULONGEST signature;
683
684 /* The section this CU/TU lives in, in the DWO file. */
8a0459fd 685 struct dwarf2_section_info *section;
3019eac3 686
9c541725
PA
687 /* Same as dwarf2_per_cu_data:{sect_off,length} but in the DWO section. */
688 sect_offset sect_off;
3019eac3
DE
689 unsigned int length;
690
691 /* For types, offset in the type's DIE of the type defined by this TU. */
692 cu_offset type_offset_in_tu;
693};
694
73869dc2
DE
695/* include/dwarf2.h defines the DWP section codes.
696 It defines a max value but it doesn't define a min value, which we
697 use for error checking, so provide one. */
698
699enum dwp_v2_section_ids
700{
701 DW_SECT_MIN = 1
702};
703
80626a55 704/* Data for one DWO file.
57d63ce2
DE
705
706 This includes virtual DWO files (a virtual DWO file is a DWO file as it
707 appears in a DWP file). DWP files don't really have DWO files per se -
708 comdat folding of types "loses" the DWO file they came from, and from
709 a high level view DWP files appear to contain a mass of random types.
710 However, to maintain consistency with the non-DWP case we pretend DWP
711 files contain virtual DWO files, and we assign each TU with one virtual
712 DWO file (generally based on the line and abbrev section offsets -
713 a heuristic that seems to work in practice). */
3019eac3
DE
714
715struct dwo_file
716{
0ac5b59e 717 /* The DW_AT_GNU_dwo_name attribute.
80626a55
DE
718 For virtual DWO files the name is constructed from the section offsets
719 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
720 from related CU+TUs. */
0ac5b59e
DE
721 const char *dwo_name;
722
723 /* The DW_AT_comp_dir attribute. */
724 const char *comp_dir;
3019eac3 725
80626a55
DE
726 /* The bfd, when the file is open. Otherwise this is NULL.
727 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
728 bfd *dbfd;
3019eac3 729
73869dc2
DE
730 /* The sections that make up this DWO file.
731 Remember that for virtual DWO files in DWP V2, these are virtual
732 sections (for lack of a better name). */
3019eac3
DE
733 struct dwo_sections sections;
734
33c5cd75
DB
735 /* The CUs in the file.
736 Each element is a struct dwo_unit. Multiple CUs per DWO are supported as
737 an extension to handle LLVM's Link Time Optimization output (where
738 multiple source files may be compiled into a single object/dwo pair). */
739 htab_t cus;
3019eac3
DE
740
741 /* Table of TUs in the file.
742 Each element is a struct dwo_unit. */
743 htab_t tus;
744};
745
80626a55
DE
746/* These sections are what may appear in a DWP file. */
747
748struct dwp_sections
749{
73869dc2 750 /* These are used by both DWP version 1 and 2. */
80626a55
DE
751 struct dwarf2_section_info str;
752 struct dwarf2_section_info cu_index;
753 struct dwarf2_section_info tu_index;
73869dc2
DE
754
755 /* These are only used by DWP version 2 files.
756 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
757 sections are referenced by section number, and are not recorded here.
758 In DWP version 2 there is at most one copy of all these sections, each
759 section being (effectively) comprised of the concatenation of all of the
760 individual sections that exist in the version 1 format.
761 To keep the code simple we treat each of these concatenated pieces as a
762 section itself (a virtual section?). */
763 struct dwarf2_section_info abbrev;
764 struct dwarf2_section_info info;
765 struct dwarf2_section_info line;
766 struct dwarf2_section_info loc;
767 struct dwarf2_section_info macinfo;
768 struct dwarf2_section_info macro;
769 struct dwarf2_section_info str_offsets;
770 struct dwarf2_section_info types;
80626a55
DE
771};
772
73869dc2
DE
773/* These sections are what may appear in a virtual DWO file in DWP version 1.
774 A virtual DWO file is a DWO file as it appears in a DWP file. */
80626a55 775
73869dc2 776struct virtual_v1_dwo_sections
80626a55
DE
777{
778 struct dwarf2_section_info abbrev;
779 struct dwarf2_section_info line;
780 struct dwarf2_section_info loc;
781 struct dwarf2_section_info macinfo;
782 struct dwarf2_section_info macro;
783 struct dwarf2_section_info str_offsets;
784 /* Each DWP hash table entry records one CU or one TU.
8a0459fd 785 That is recorded here, and copied to dwo_unit.section. */
80626a55
DE
786 struct dwarf2_section_info info_or_types;
787};
788
73869dc2
DE
789/* Similar to virtual_v1_dwo_sections, but for DWP version 2.
790 In version 2, the sections of the DWO files are concatenated together
791 and stored in one section of that name. Thus each ELF section contains
792 several "virtual" sections. */
793
794struct virtual_v2_dwo_sections
795{
796 bfd_size_type abbrev_offset;
797 bfd_size_type abbrev_size;
798
799 bfd_size_type line_offset;
800 bfd_size_type line_size;
801
802 bfd_size_type loc_offset;
803 bfd_size_type loc_size;
804
805 bfd_size_type macinfo_offset;
806 bfd_size_type macinfo_size;
807
808 bfd_size_type macro_offset;
809 bfd_size_type macro_size;
810
811 bfd_size_type str_offsets_offset;
812 bfd_size_type str_offsets_size;
813
814 /* Each DWP hash table entry records one CU or one TU.
815 That is recorded here, and copied to dwo_unit.section. */
816 bfd_size_type info_or_types_offset;
817 bfd_size_type info_or_types_size;
818};
819
80626a55
DE
820/* Contents of DWP hash tables. */
821
822struct dwp_hash_table
823{
73869dc2 824 uint32_t version, nr_columns;
80626a55 825 uint32_t nr_units, nr_slots;
73869dc2
DE
826 const gdb_byte *hash_table, *unit_table;
827 union
828 {
829 struct
830 {
831 const gdb_byte *indices;
832 } v1;
833 struct
834 {
835 /* This is indexed by column number and gives the id of the section
836 in that column. */
837#define MAX_NR_V2_DWO_SECTIONS \
838 (1 /* .debug_info or .debug_types */ \
839 + 1 /* .debug_abbrev */ \
840 + 1 /* .debug_line */ \
841 + 1 /* .debug_loc */ \
842 + 1 /* .debug_str_offsets */ \
843 + 1 /* .debug_macro or .debug_macinfo */)
844 int section_ids[MAX_NR_V2_DWO_SECTIONS];
845 const gdb_byte *offsets;
846 const gdb_byte *sizes;
847 } v2;
848 } section_pool;
80626a55
DE
849};
850
851/* Data for one DWP file. */
852
853struct dwp_file
854{
400174b1
TT
855 dwp_file (const char *name_, gdb_bfd_ref_ptr &&abfd)
856 : name (name_),
857 dbfd (std::move (abfd))
858 {
859 }
860
80626a55
DE
861 /* Name of the file. */
862 const char *name;
863
73869dc2 864 /* File format version. */
400174b1 865 int version = 0;
73869dc2 866
93417882 867 /* The bfd. */
400174b1 868 gdb_bfd_ref_ptr dbfd;
80626a55
DE
869
870 /* Section info for this file. */
400174b1 871 struct dwp_sections sections {};
80626a55 872
57d63ce2 873 /* Table of CUs in the file. */
400174b1 874 const struct dwp_hash_table *cus = nullptr;
80626a55
DE
875
876 /* Table of TUs in the file. */
400174b1 877 const struct dwp_hash_table *tus = nullptr;
80626a55 878
19ac8c2e 879 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
400174b1
TT
880 htab_t loaded_cus {};
881 htab_t loaded_tus {};
80626a55 882
73869dc2
DE
883 /* Table to map ELF section numbers to their sections.
884 This is only needed for the DWP V1 file format. */
400174b1
TT
885 unsigned int num_sections = 0;
886 asection **elf_sections = nullptr;
80626a55
DE
887};
888
36586728
TT
889/* This represents a '.dwz' file. */
890
891struct dwz_file
892{
7ff8cb8c
TT
893 dwz_file (gdb_bfd_ref_ptr &&bfd)
894 : dwz_bfd (std::move (bfd))
895 {
896 }
897
36586728 898 /* A dwz file can only contain a few sections. */
7ff8cb8c
TT
899 struct dwarf2_section_info abbrev {};
900 struct dwarf2_section_info info {};
901 struct dwarf2_section_info str {};
902 struct dwarf2_section_info line {};
903 struct dwarf2_section_info macro {};
904 struct dwarf2_section_info gdb_index {};
905 struct dwarf2_section_info debug_names {};
36586728
TT
906
907 /* The dwz's BFD. */
7ff8cb8c 908 gdb_bfd_ref_ptr dwz_bfd;
87d6a7aa
SM
909
910 /* If we loaded the index from an external file, this contains the
911 resources associated to the open file, memory mapping, etc. */
912 std::unique_ptr<index_cache_resource> index_cache_res;
36586728
TT
913};
914
0963b4bd
MS
915/* Struct used to pass misc. parameters to read_die_and_children, et
916 al. which are used for both .debug_info and .debug_types dies.
917 All parameters here are unchanging for the life of the call. This
dee91e82 918 struct exists to abstract away the constant parameters of die reading. */
93311388
DE
919
920struct die_reader_specs
921{
a32a8923 922 /* The bfd of die_section. */
93311388
DE
923 bfd* abfd;
924
925 /* The CU of the DIE we are parsing. */
926 struct dwarf2_cu *cu;
927
80626a55 928 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
3019eac3
DE
929 struct dwo_file *dwo_file;
930
dee91e82 931 /* The section the die comes from.
3019eac3 932 This is either .debug_info or .debug_types, or the .dwo variants. */
dee91e82
DE
933 struct dwarf2_section_info *die_section;
934
935 /* die_section->buffer. */
d521ce57 936 const gdb_byte *buffer;
f664829e
DE
937
938 /* The end of the buffer. */
939 const gdb_byte *buffer_end;
a2ce51a0
DE
940
941 /* The value of the DW_AT_comp_dir attribute. */
942 const char *comp_dir;
685af9cd
TT
943
944 /* The abbreviation table to use when reading the DIEs. */
945 struct abbrev_table *abbrev_table;
93311388
DE
946};
947
fd820528 948/* Type of function passed to init_cutu_and_read_dies, et.al. */
dee91e82 949typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
d521ce57 950 const gdb_byte *info_ptr,
dee91e82
DE
951 struct die_info *comp_unit_die,
952 int has_children,
953 void *data);
954
ecfb656c
PA
955/* A 1-based directory index. This is a strong typedef to prevent
956 accidentally using a directory index as a 0-based index into an
957 array/vector. */
958enum class dir_index : unsigned int {};
959
960/* Likewise, a 1-based file name index. */
961enum class file_name_index : unsigned int {};
962
52059ffd
TT
963struct file_entry
964{
fff8551c
PA
965 file_entry () = default;
966
ecfb656c 967 file_entry (const char *name_, dir_index d_index_,
fff8551c
PA
968 unsigned int mod_time_, unsigned int length_)
969 : name (name_),
ecfb656c 970 d_index (d_index_),
fff8551c
PA
971 mod_time (mod_time_),
972 length (length_)
973 {}
974
ecfb656c
PA
975 /* Return the include directory at D_INDEX stored in LH. Returns
976 NULL if D_INDEX is out of bounds. */
8c43009f
PA
977 const char *include_dir (const line_header *lh) const;
978
fff8551c
PA
979 /* The file name. Note this is an observing pointer. The memory is
980 owned by debug_line_buffer. */
981 const char *name {};
982
8c43009f 983 /* The directory index (1-based). */
ecfb656c 984 dir_index d_index {};
fff8551c
PA
985
986 unsigned int mod_time {};
987
988 unsigned int length {};
989
990 /* True if referenced by the Line Number Program. */
991 bool included_p {};
992
83769d0b 993 /* The associated symbol table, if any. */
fff8551c 994 struct symtab *symtab {};
52059ffd
TT
995};
996
debd256d
JB
997/* The line number information for a compilation unit (found in the
998 .debug_line section) begins with a "statement program header",
999 which contains the following information. */
1000struct line_header
1001{
fff8551c
PA
1002 line_header ()
1003 : offset_in_dwz {}
1004 {}
1005
1006 /* Add an entry to the include directory table. */
1007 void add_include_dir (const char *include_dir);
1008
1009 /* Add an entry to the file name table. */
ecfb656c 1010 void add_file_name (const char *name, dir_index d_index,
fff8551c
PA
1011 unsigned int mod_time, unsigned int length);
1012
ecfb656c 1013 /* Return the include dir at INDEX (1-based). Returns NULL if INDEX
8c43009f 1014 is out of bounds. */
ecfb656c 1015 const char *include_dir_at (dir_index index) const
8c43009f 1016 {
ecfb656c
PA
1017 /* Convert directory index number (1-based) to vector index
1018 (0-based). */
1019 size_t vec_index = to_underlying (index) - 1;
1020
1021 if (vec_index >= include_dirs.size ())
8c43009f 1022 return NULL;
ecfb656c 1023 return include_dirs[vec_index];
8c43009f
PA
1024 }
1025
ecfb656c 1026 /* Return the file name at INDEX (1-based). Returns NULL if INDEX
8c43009f 1027 is out of bounds. */
ecfb656c 1028 file_entry *file_name_at (file_name_index index)
8c43009f 1029 {
ecfb656c
PA
1030 /* Convert file name index number (1-based) to vector index
1031 (0-based). */
1032 size_t vec_index = to_underlying (index) - 1;
1033
1034 if (vec_index >= file_names.size ())
fff8551c 1035 return NULL;
ecfb656c 1036 return &file_names[vec_index];
fff8551c
PA
1037 }
1038
527f3840 1039 /* Offset of line number information in .debug_line section. */
9c541725 1040 sect_offset sect_off {};
527f3840
JK
1041
1042 /* OFFSET is for struct dwz_file associated with dwarf2_per_objfile. */
fff8551c
PA
1043 unsigned offset_in_dwz : 1; /* Can't initialize bitfields in-class. */
1044
1045 unsigned int total_length {};
1046 unsigned short version {};
1047 unsigned int header_length {};
1048 unsigned char minimum_instruction_length {};
1049 unsigned char maximum_ops_per_instruction {};
1050 unsigned char default_is_stmt {};
1051 int line_base {};
1052 unsigned char line_range {};
1053 unsigned char opcode_base {};
debd256d
JB
1054
1055 /* standard_opcode_lengths[i] is the number of operands for the
1056 standard opcode whose value is i. This means that
1057 standard_opcode_lengths[0] is unused, and the last meaningful
1058 element is standard_opcode_lengths[opcode_base - 1]. */
fff8551c 1059 std::unique_ptr<unsigned char[]> standard_opcode_lengths;
debd256d 1060
fff8551c
PA
1061 /* The include_directories table. Note these are observing
1062 pointers. The memory is owned by debug_line_buffer. */
1063 std::vector<const char *> include_dirs;
debd256d 1064
fff8551c
PA
1065 /* The file_names table. */
1066 std::vector<file_entry> file_names;
debd256d
JB
1067
1068 /* The start and end of the statement program following this
6502dd73 1069 header. These point into dwarf2_per_objfile->line_buffer. */
fff8551c 1070 const gdb_byte *statement_program_start {}, *statement_program_end {};
debd256d 1071};
c906108c 1072
fff8551c
PA
1073typedef std::unique_ptr<line_header> line_header_up;
1074
8c43009f
PA
1075const char *
1076file_entry::include_dir (const line_header *lh) const
1077{
ecfb656c 1078 return lh->include_dir_at (d_index);
8c43009f
PA
1079}
1080
c906108c 1081/* When we construct a partial symbol table entry we only
0963b4bd 1082 need this much information. */
6f06d47b 1083struct partial_die_info : public allocate_on_obstack
c906108c 1084 {
6f06d47b
YQ
1085 partial_die_info (sect_offset sect_off, struct abbrev_info *abbrev);
1086
1087 /* Disable assign but still keep copy ctor, which is needed
1088 load_partial_dies. */
1089 partial_die_info& operator=(const partial_die_info& rhs) = delete;
1090
52356b79
YQ
1091 /* Adjust the partial die before generating a symbol for it. This
1092 function may set the is_external flag or change the DIE's
1093 name. */
1094 void fixup (struct dwarf2_cu *cu);
1095
48fbe735
YQ
1096 /* Read a minimal amount of information into the minimal die
1097 structure. */
1098 const gdb_byte *read (const struct die_reader_specs *reader,
1099 const struct abbrev_info &abbrev,
1100 const gdb_byte *info_ptr);
1101
72bf9492 1102 /* Offset of this DIE. */
6f06d47b 1103 const sect_offset sect_off;
72bf9492
DJ
1104
1105 /* DWARF-2 tag for this DIE. */
6f06d47b 1106 const ENUM_BITFIELD(dwarf_tag) tag : 16;
72bf9492 1107
72bf9492 1108 /* Assorted flags describing the data found in this DIE. */
6f06d47b
YQ
1109 const unsigned int has_children : 1;
1110
72bf9492
DJ
1111 unsigned int is_external : 1;
1112 unsigned int is_declaration : 1;
1113 unsigned int has_type : 1;
1114 unsigned int has_specification : 1;
1115 unsigned int has_pc_info : 1;
481860b3 1116 unsigned int may_be_inlined : 1;
72bf9492 1117
0c1b455e
TT
1118 /* This DIE has been marked DW_AT_main_subprogram. */
1119 unsigned int main_subprogram : 1;
1120
72bf9492
DJ
1121 /* Flag set if the SCOPE field of this structure has been
1122 computed. */
1123 unsigned int scope_set : 1;
1124
fa4028e9
JB
1125 /* Flag set if the DIE has a byte_size attribute. */
1126 unsigned int has_byte_size : 1;
1127
ff908ebf
AW
1128 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1129 unsigned int has_const_value : 1;
1130
98bfdba5
PA
1131 /* Flag set if any of the DIE's children are template arguments. */
1132 unsigned int has_template_arguments : 1;
1133
52356b79 1134 /* Flag set if fixup has been called on this die. */
abc72ce4
DE
1135 unsigned int fixup_called : 1;
1136
36586728
TT
1137 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1138 unsigned int is_dwz : 1;
1139
1140 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1141 unsigned int spec_is_dwz : 1;
1142
72bf9492 1143 /* The name of this DIE. Normally the value of DW_AT_name, but
94af9270 1144 sometimes a default name for unnamed DIEs. */
6f06d47b 1145 const char *name = nullptr;
72bf9492 1146
abc72ce4 1147 /* The linkage name, if present. */
6f06d47b 1148 const char *linkage_name = nullptr;
abc72ce4 1149
72bf9492
DJ
1150 /* The scope to prepend to our children. This is generally
1151 allocated on the comp_unit_obstack, so will disappear
1152 when this compilation unit leaves the cache. */
6f06d47b 1153 const char *scope = nullptr;
72bf9492 1154
95554aad
TT
1155 /* Some data associated with the partial DIE. The tag determines
1156 which field is live. */
1157 union
1158 {
1159 /* The location description associated with this DIE, if any. */
1160 struct dwarf_block *locdesc;
1161 /* The offset of an import, for DW_TAG_imported_unit. */
9c541725 1162 sect_offset sect_off;
6f06d47b 1163 } d {};
72bf9492
DJ
1164
1165 /* If HAS_PC_INFO, the PC range associated with this DIE. */
6f06d47b
YQ
1166 CORE_ADDR lowpc = 0;
1167 CORE_ADDR highpc = 0;
72bf9492 1168
93311388 1169 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
72bf9492 1170 DW_AT_sibling, if any. */
48fbe735
YQ
1171 /* NOTE: This member isn't strictly necessary, partial_die_info::read
1172 could return DW_AT_sibling values to its caller load_partial_dies. */
6f06d47b 1173 const gdb_byte *sibling = nullptr;
72bf9492
DJ
1174
1175 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1176 DW_AT_specification (or DW_AT_abstract_origin or
1177 DW_AT_extension). */
6f06d47b 1178 sect_offset spec_offset {};
72bf9492
DJ
1179
1180 /* Pointers to this DIE's parent, first child, and next sibling,
1181 if any. */
6f06d47b
YQ
1182 struct partial_die_info *die_parent = nullptr;
1183 struct partial_die_info *die_child = nullptr;
1184 struct partial_die_info *die_sibling = nullptr;
1185
1186 friend struct partial_die_info *
1187 dwarf2_cu::find_partial_die (sect_offset sect_off);
1188
1189 private:
1190 /* Only need to do look up in dwarf2_cu::find_partial_die. */
1191 partial_die_info (sect_offset sect_off)
1192 : partial_die_info (sect_off, DW_TAG_padding, 0)
1193 {
1194 }
1195
1196 partial_die_info (sect_offset sect_off_, enum dwarf_tag tag_,
1197 int has_children_)
1198 : sect_off (sect_off_), tag (tag_), has_children (has_children_)
1199 {
1200 is_external = 0;
1201 is_declaration = 0;
1202 has_type = 0;
1203 has_specification = 0;
1204 has_pc_info = 0;
1205 may_be_inlined = 0;
1206 main_subprogram = 0;
1207 scope_set = 0;
1208 has_byte_size = 0;
1209 has_const_value = 0;
1210 has_template_arguments = 0;
1211 fixup_called = 0;
1212 is_dwz = 0;
1213 spec_is_dwz = 0;
1214 }
c906108c
SS
1215 };
1216
0963b4bd 1217/* This data structure holds the information of an abbrev. */
c906108c
SS
1218struct abbrev_info
1219 {
1220 unsigned int number; /* number identifying abbrev */
1221 enum dwarf_tag tag; /* dwarf tag */
f3dd6933
DJ
1222 unsigned short has_children; /* boolean */
1223 unsigned short num_attrs; /* number of attributes */
c906108c
SS
1224 struct attr_abbrev *attrs; /* an array of attribute descriptions */
1225 struct abbrev_info *next; /* next in chain */
1226 };
1227
1228struct attr_abbrev
1229 {
9d25dd43
DE
1230 ENUM_BITFIELD(dwarf_attribute) name : 16;
1231 ENUM_BITFIELD(dwarf_form) form : 16;
43988095
JK
1232
1233 /* It is valid only if FORM is DW_FORM_implicit_const. */
1234 LONGEST implicit_const;
c906108c
SS
1235 };
1236
433df2d4
DE
1237/* Size of abbrev_table.abbrev_hash_table. */
1238#define ABBREV_HASH_SIZE 121
1239
1240/* Top level data structure to contain an abbreviation table. */
1241
1242struct abbrev_table
1243{
685af9cd
TT
1244 explicit abbrev_table (sect_offset off)
1245 : sect_off (off)
1246 {
4a17f768 1247 m_abbrevs =
685af9cd 1248 XOBNEWVEC (&abbrev_obstack, struct abbrev_info *, ABBREV_HASH_SIZE);
4a17f768 1249 memset (m_abbrevs, 0, ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
685af9cd
TT
1250 }
1251
1252 DISABLE_COPY_AND_ASSIGN (abbrev_table);
1253
1254 /* Allocate space for a struct abbrev_info object in
1255 ABBREV_TABLE. */
1256 struct abbrev_info *alloc_abbrev ();
1257
1258 /* Add an abbreviation to the table. */
1259 void add_abbrev (unsigned int abbrev_number, struct abbrev_info *abbrev);
1260
1261 /* Look up an abbrev in the table.
1262 Returns NULL if the abbrev is not found. */
1263
1264 struct abbrev_info *lookup_abbrev (unsigned int abbrev_number);
1265
1266
f4dc4d17
DE
1267 /* Where the abbrev table came from.
1268 This is used as a sanity check when the table is used. */
685af9cd 1269 const sect_offset sect_off;
433df2d4
DE
1270
1271 /* Storage for the abbrev table. */
685af9cd 1272 auto_obstack abbrev_obstack;
433df2d4 1273
4a17f768
YQ
1274private:
1275
433df2d4
DE
1276 /* Hash table of abbrevs.
1277 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1278 It could be statically allocated, but the previous code didn't so we
1279 don't either. */
4a17f768 1280 struct abbrev_info **m_abbrevs;
433df2d4
DE
1281};
1282
685af9cd
TT
1283typedef std::unique_ptr<struct abbrev_table> abbrev_table_up;
1284
0963b4bd 1285/* Attributes have a name and a value. */
b60c80d6
DJ
1286struct attribute
1287 {
9d25dd43 1288 ENUM_BITFIELD(dwarf_attribute) name : 16;
8285870a
JK
1289 ENUM_BITFIELD(dwarf_form) form : 15;
1290
1291 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
1292 field should be in u.str (existing only for DW_STRING) but it is kept
1293 here for better struct attribute alignment. */
1294 unsigned int string_is_canonical : 1;
1295
b60c80d6
DJ
1296 union
1297 {
15d034d0 1298 const char *str;
b60c80d6 1299 struct dwarf_block *blk;
43bbcdc2
PH
1300 ULONGEST unsnd;
1301 LONGEST snd;
b60c80d6 1302 CORE_ADDR addr;
ac9ec31b 1303 ULONGEST signature;
b60c80d6
DJ
1304 }
1305 u;
1306 };
1307
0963b4bd 1308/* This data structure holds a complete die structure. */
c906108c
SS
1309struct die_info
1310 {
76815b17
DE
1311 /* DWARF-2 tag for this DIE. */
1312 ENUM_BITFIELD(dwarf_tag) tag : 16;
1313
1314 /* Number of attributes */
98bfdba5
PA
1315 unsigned char num_attrs;
1316
1317 /* True if we're presently building the full type name for the
1318 type derived from this DIE. */
1319 unsigned char building_fullname : 1;
76815b17 1320
adde2bff
DE
1321 /* True if this die is in process. PR 16581. */
1322 unsigned char in_process : 1;
1323
76815b17
DE
1324 /* Abbrev number */
1325 unsigned int abbrev;
1326
93311388 1327 /* Offset in .debug_info or .debug_types section. */
9c541725 1328 sect_offset sect_off;
78ba4af6
JB
1329
1330 /* The dies in a compilation unit form an n-ary tree. PARENT
1331 points to this die's parent; CHILD points to the first child of
1332 this node; and all the children of a given node are chained
4950bc1c 1333 together via their SIBLING fields. */
639d11d3
DC
1334 struct die_info *child; /* Its first child, if any. */
1335 struct die_info *sibling; /* Its next sibling, if any. */
1336 struct die_info *parent; /* Its parent, if any. */
c906108c 1337
b60c80d6
DJ
1338 /* An array of attributes, with NUM_ATTRS elements. There may be
1339 zero, but it's not common and zero-sized arrays are not
1340 sufficiently portable C. */
1341 struct attribute attrs[1];
c906108c
SS
1342 };
1343
0963b4bd 1344/* Get at parts of an attribute structure. */
c906108c
SS
1345
1346#define DW_STRING(attr) ((attr)->u.str)
8285870a 1347#define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
c906108c
SS
1348#define DW_UNSND(attr) ((attr)->u.unsnd)
1349#define DW_BLOCK(attr) ((attr)->u.blk)
1350#define DW_SND(attr) ((attr)->u.snd)
1351#define DW_ADDR(attr) ((attr)->u.addr)
ac9ec31b 1352#define DW_SIGNATURE(attr) ((attr)->u.signature)
c906108c 1353
0963b4bd 1354/* Blocks are a bunch of untyped bytes. */
c906108c
SS
1355struct dwarf_block
1356 {
56eb65bd 1357 size_t size;
1d6edc3c
JK
1358
1359 /* Valid only if SIZE is not zero. */
d521ce57 1360 const gdb_byte *data;
c906108c
SS
1361 };
1362
c906108c
SS
1363#ifndef ATTR_ALLOC_CHUNK
1364#define ATTR_ALLOC_CHUNK 4
1365#endif
1366
c906108c
SS
1367/* Allocate fields for structs, unions and enums in this size. */
1368#ifndef DW_FIELD_ALLOC_CHUNK
1369#define DW_FIELD_ALLOC_CHUNK 4
1370#endif
1371
c906108c
SS
1372/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1373 but this would require a corresponding change in unpack_field_as_long
1374 and friends. */
1375static int bits_per_byte = 8;
1376
2ddeaf8a
TT
1377/* When reading a variant or variant part, we track a bit more
1378 information about the field, and store it in an object of this
1379 type. */
1380
1381struct variant_field
1382{
1383 /* If we see a DW_TAG_variant, then this will be the discriminant
1384 value. */
1385 ULONGEST discriminant_value;
1386 /* If we see a DW_TAG_variant, then this will be set if this is the
1387 default branch. */
1388 bool default_branch;
1389 /* While reading a DW_TAG_variant_part, this will be set if this
1390 field is the discriminant. */
1391 bool is_discriminant;
1392};
1393
52059ffd
TT
1394struct nextfield
1395{
be2daae6
TT
1396 int accessibility = 0;
1397 int virtuality = 0;
2ddeaf8a 1398 /* Extra information to describe a variant or variant part. */
be2daae6
TT
1399 struct variant_field variant {};
1400 struct field field {};
52059ffd
TT
1401};
1402
1403struct fnfieldlist
1404{
be2daae6
TT
1405 const char *name = nullptr;
1406 std::vector<struct fn_field> fnfields;
52059ffd
TT
1407};
1408
c906108c
SS
1409/* The routines that read and process dies for a C struct or C++ class
1410 pass lists of data member fields and lists of member function fields
1411 in an instance of a field_info structure, as defined below. */
1412struct field_info
c5aa993b 1413 {
0963b4bd 1414 /* List of data member and baseclasses fields. */
be2daae6
TT
1415 std::vector<struct nextfield> fields;
1416 std::vector<struct nextfield> baseclasses;
c906108c 1417
7d0ccb61 1418 /* Number of fields (including baseclasses). */
be2daae6 1419 int nfields = 0;
c906108c 1420
c5aa993b 1421 /* Set if the accesibility of one of the fields is not public. */
be2daae6 1422 int non_public_fields = 0;
c906108c 1423
c5aa993b
JM
1424 /* Member function fieldlist array, contains name of possibly overloaded
1425 member function, number of overloaded member functions and a pointer
1426 to the head of the member function field chain. */
be2daae6 1427 std::vector<struct fnfieldlist> fnfieldlists;
98751a41
JK
1428
1429 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1430 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
be2daae6 1431 std::vector<struct decl_field> typedef_field_list;
883fd55a
KS
1432
1433 /* Nested types defined by this class and the number of elements in this
1434 list. */
be2daae6 1435 std::vector<struct decl_field> nested_types_list;
c5aa993b 1436 };
c906108c 1437
10b3939b
DJ
1438/* One item on the queue of compilation units to read in full symbols
1439 for. */
1440struct dwarf2_queue_item
1441{
1442 struct dwarf2_per_cu_data *per_cu;
95554aad 1443 enum language pretend_language;
10b3939b
DJ
1444 struct dwarf2_queue_item *next;
1445};
1446
1447/* The current queue. */
1448static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1449
ae038cb0
DJ
1450/* Loaded secondary compilation units are kept in memory until they
1451 have not been referenced for the processing of this many
1452 compilation units. Set this to zero to disable caching. Cache
1453 sizes of up to at least twenty will improve startup time for
1454 typical inter-CU-reference binaries, at an obvious memory cost. */
b4f54984 1455static int dwarf_max_cache_age = 5;
920d2a44 1456static void
b4f54984
DE
1457show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1458 struct cmd_list_element *c, const char *value)
920d2a44 1459{
3e43a32a 1460 fprintf_filtered (file, _("The upper bound on the age of cached "
b4f54984 1461 "DWARF compilation units is %s.\n"),
920d2a44
AC
1462 value);
1463}
4390d890 1464\f
c906108c
SS
1465/* local function prototypes */
1466
a32a8923
DE
1467static const char *get_section_name (const struct dwarf2_section_info *);
1468
1469static const char *get_section_file_name (const struct dwarf2_section_info *);
1470
918dd910
JK
1471static void dwarf2_find_base_address (struct die_info *die,
1472 struct dwarf2_cu *cu);
1473
0018ea6f
DE
1474static struct partial_symtab *create_partial_symtab
1475 (struct dwarf2_per_cu_data *per_cu, const char *name);
1476
f1902523
JK
1477static void build_type_psymtabs_reader (const struct die_reader_specs *reader,
1478 const gdb_byte *info_ptr,
1479 struct die_info *type_unit_die,
1480 int has_children, void *data);
1481
ed2dc618
SM
1482static void dwarf2_build_psymtabs_hard
1483 (struct dwarf2_per_objfile *dwarf2_per_objfile);
c906108c 1484
72bf9492
DJ
1485static void scan_partial_symbols (struct partial_die_info *,
1486 CORE_ADDR *, CORE_ADDR *,
5734ee8b 1487 int, struct dwarf2_cu *);
c906108c 1488
72bf9492
DJ
1489static void add_partial_symbol (struct partial_die_info *,
1490 struct dwarf2_cu *);
63d06c5c 1491
72bf9492
DJ
1492static void add_partial_namespace (struct partial_die_info *pdi,
1493 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 1494 int set_addrmap, struct dwarf2_cu *cu);
63d06c5c 1495
5d7cb8df 1496static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 1497 CORE_ADDR *highpc, int set_addrmap,
5d7cb8df
JK
1498 struct dwarf2_cu *cu);
1499
72bf9492
DJ
1500static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1501 struct dwarf2_cu *cu);
91c24f0a 1502
bc30ff58
JB
1503static void add_partial_subprogram (struct partial_die_info *pdi,
1504 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5734ee8b 1505 int need_pc, struct dwarf2_cu *cu);
bc30ff58 1506
257e7a09
YQ
1507static void dwarf2_read_symtab (struct partial_symtab *,
1508 struct objfile *);
c906108c 1509
a14ed312 1510static void psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 1511
685af9cd 1512static abbrev_table_up abbrev_table_read_table
ed2dc618
SM
1513 (struct dwarf2_per_objfile *dwarf2_per_objfile, struct dwarf2_section_info *,
1514 sect_offset);
433df2d4 1515
d521ce57 1516static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
6caca83c 1517
dee91e82 1518static struct partial_die_info *load_partial_dies
d521ce57 1519 (const struct die_reader_specs *, const gdb_byte *, int);
72bf9492 1520
36586728 1521static struct partial_die_info *find_partial_die (sect_offset, int,
10b3939b 1522 struct dwarf2_cu *);
72bf9492 1523
d521ce57
TT
1524static const gdb_byte *read_attribute (const struct die_reader_specs *,
1525 struct attribute *, struct attr_abbrev *,
1526 const gdb_byte *);
a8329558 1527
a1855c1d 1528static unsigned int read_1_byte (bfd *, const gdb_byte *);
c906108c 1529
a1855c1d 1530static int read_1_signed_byte (bfd *, const gdb_byte *);
c906108c 1531
a1855c1d 1532static unsigned int read_2_bytes (bfd *, const gdb_byte *);
c906108c 1533
a1855c1d 1534static unsigned int read_4_bytes (bfd *, const gdb_byte *);
c906108c 1535
a1855c1d 1536static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
c906108c 1537
d521ce57 1538static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
891d2f0b 1539 unsigned int *);
c906108c 1540
d521ce57 1541static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
c764a876
DE
1542
1543static LONGEST read_checked_initial_length_and_offset
d521ce57 1544 (bfd *, const gdb_byte *, const struct comp_unit_head *,
c764a876 1545 unsigned int *, unsigned int *);
613e1657 1546
d521ce57
TT
1547static LONGEST read_offset (bfd *, const gdb_byte *,
1548 const struct comp_unit_head *,
c764a876
DE
1549 unsigned int *);
1550
d521ce57 1551static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
613e1657 1552
ed2dc618
SM
1553static sect_offset read_abbrev_offset
1554 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1555 struct dwarf2_section_info *, sect_offset);
f4dc4d17 1556
d521ce57 1557static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
c906108c 1558
d521ce57 1559static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
c906108c 1560
ed2dc618
SM
1561static const char *read_indirect_string
1562 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1563 const struct comp_unit_head *, unsigned int *);
4bdf3d34 1564
ed2dc618
SM
1565static const char *read_indirect_line_string
1566 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1567 const struct comp_unit_head *, unsigned int *);
36586728 1568
ed2dc618
SM
1569static const char *read_indirect_string_at_offset
1570 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
1571 LONGEST str_offset);
927aa2e7 1572
ed2dc618
SM
1573static const char *read_indirect_string_from_dwz
1574 (struct objfile *objfile, struct dwz_file *, LONGEST);
c906108c 1575
d521ce57 1576static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
c906108c 1577
d521ce57
TT
1578static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1579 const gdb_byte *,
3019eac3
DE
1580 unsigned int *);
1581
d521ce57 1582static const char *read_str_index (const struct die_reader_specs *reader,
342587c4 1583 ULONGEST str_index);
3019eac3 1584
e142c38c 1585static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 1586
e142c38c
DJ
1587static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1588 struct dwarf2_cu *);
c906108c 1589
348e048f 1590static struct attribute *dwarf2_attr_no_follow (struct die_info *,
45e58e77 1591 unsigned int);
348e048f 1592
7d45c7c3
KB
1593static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1594 struct dwarf2_cu *cu);
1595
05cf31d1
JB
1596static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1597 struct dwarf2_cu *cu);
1598
e142c38c 1599static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 1600
e142c38c 1601static struct die_info *die_specification (struct die_info *die,
f2f0e013 1602 struct dwarf2_cu **);
63d06c5c 1603
9c541725 1604static line_header_up dwarf_decode_line_header (sect_offset sect_off,
fff8551c 1605 struct dwarf2_cu *cu);
debd256d 1606
f3f5162e 1607static void dwarf_decode_lines (struct line_header *, const char *,
c3b7b696 1608 struct dwarf2_cu *, struct partial_symtab *,
527f3840 1609 CORE_ADDR, int decode_mapping);
c906108c 1610
804d2729
TT
1611static void dwarf2_start_subfile (struct dwarf2_cu *, const char *,
1612 const char *);
c906108c 1613
a14ed312 1614static struct symbol *new_symbol (struct die_info *, struct type *,
5e2db402 1615 struct dwarf2_cu *, struct symbol * = NULL);
34eaf542 1616
ff39bb5e 1617static void dwarf2_const_value (const struct attribute *, struct symbol *,
e7c27a73 1618 struct dwarf2_cu *);
c906108c 1619
ff39bb5e 1620static void dwarf2_const_value_attr (const struct attribute *attr,
98bfdba5
PA
1621 struct type *type,
1622 const char *name,
1623 struct obstack *obstack,
12df843f 1624 struct dwarf2_cu *cu, LONGEST *value,
d521ce57 1625 const gdb_byte **bytes,
98bfdba5 1626 struct dwarf2_locexpr_baton **baton);
2df3850c 1627
e7c27a73 1628static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 1629
b4ba55a1
JB
1630static int need_gnat_info (struct dwarf2_cu *);
1631
3e43a32a
MS
1632static struct type *die_descriptive_type (struct die_info *,
1633 struct dwarf2_cu *);
b4ba55a1
JB
1634
1635static void set_descriptive_type (struct type *, struct die_info *,
1636 struct dwarf2_cu *);
1637
e7c27a73
DJ
1638static struct type *die_containing_type (struct die_info *,
1639 struct dwarf2_cu *);
c906108c 1640
ff39bb5e 1641static struct type *lookup_die_type (struct die_info *, const struct attribute *,
673bfd45 1642 struct dwarf2_cu *);
c906108c 1643
f792889a 1644static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 1645
673bfd45
DE
1646static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1647
0d5cff50 1648static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 1649
6e70227d 1650static char *typename_concat (struct obstack *obs, const char *prefix,
f55ee35c
JK
1651 const char *suffix, int physname,
1652 struct dwarf2_cu *cu);
63d06c5c 1653
e7c27a73 1654static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1655
348e048f
DE
1656static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1657
e7c27a73 1658static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1659
e7c27a73 1660static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1661
96408a79
SA
1662static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1663
71a3c369
TT
1664static void read_variable (struct die_info *die, struct dwarf2_cu *cu);
1665
ff013f42
JK
1666static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1667 struct dwarf2_cu *, struct partial_symtab *);
1668
3a2b436a 1669/* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
e385593e 1670 values. Keep the items ordered with increasing constraints compliance. */
3a2b436a
JK
1671enum pc_bounds_kind
1672{
e385593e 1673 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
3a2b436a
JK
1674 PC_BOUNDS_NOT_PRESENT,
1675
e385593e
JK
1676 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1677 were present but they do not form a valid range of PC addresses. */
1678 PC_BOUNDS_INVALID,
1679
3a2b436a
JK
1680 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1681 PC_BOUNDS_RANGES,
1682
1683 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1684 PC_BOUNDS_HIGH_LOW,
1685};
1686
1687static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1688 CORE_ADDR *, CORE_ADDR *,
1689 struct dwarf2_cu *,
1690 struct partial_symtab *);
c906108c 1691
fae299cd
DC
1692static void get_scope_pc_bounds (struct die_info *,
1693 CORE_ADDR *, CORE_ADDR *,
1694 struct dwarf2_cu *);
1695
801e3a5b
JB
1696static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1697 CORE_ADDR, struct dwarf2_cu *);
1698
a14ed312 1699static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 1700 struct dwarf2_cu *);
c906108c 1701
a14ed312 1702static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 1703 struct type *, struct dwarf2_cu *);
c906108c 1704
a14ed312 1705static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 1706 struct die_info *, struct type *,
e7c27a73 1707 struct dwarf2_cu *);
c906108c 1708
a14ed312 1709static void dwarf2_attach_fn_fields_to_type (struct field_info *,
3e43a32a
MS
1710 struct type *,
1711 struct dwarf2_cu *);
c906108c 1712
134d01f1 1713static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1714
e7c27a73 1715static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 1716
e7c27a73 1717static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 1718
5d7cb8df
JK
1719static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1720
804d2729 1721static struct using_direct **using_directives (struct dwarf2_cu *cu);
22cee43f 1722
27aa8d6a
SW
1723static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1724
74921315
KS
1725static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1726
f55ee35c
JK
1727static struct type *read_module_type (struct die_info *die,
1728 struct dwarf2_cu *cu);
1729
38d518c9 1730static const char *namespace_name (struct die_info *die,
e142c38c 1731 int *is_anonymous, struct dwarf2_cu *);
38d518c9 1732
134d01f1 1733static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1734
e7c27a73 1735static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
c906108c 1736
6e70227d 1737static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
7ca2d3a3
DL
1738 struct dwarf2_cu *);
1739
bf6af496 1740static struct die_info *read_die_and_siblings_1
d521ce57 1741 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
bf6af496 1742 struct die_info *);
639d11d3 1743
dee91e82 1744static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
d521ce57
TT
1745 const gdb_byte *info_ptr,
1746 const gdb_byte **new_info_ptr,
639d11d3
DC
1747 struct die_info *parent);
1748
d521ce57
TT
1749static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1750 struct die_info **, const gdb_byte *,
1751 int *, int);
3019eac3 1752
d521ce57
TT
1753static const gdb_byte *read_full_die (const struct die_reader_specs *,
1754 struct die_info **, const gdb_byte *,
1755 int *);
93311388 1756
e7c27a73 1757static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 1758
15d034d0
TT
1759static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1760 struct obstack *);
71c25dea 1761
15d034d0 1762static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 1763
15d034d0 1764static const char *dwarf2_full_name (const char *name,
98bfdba5
PA
1765 struct die_info *die,
1766 struct dwarf2_cu *cu);
1767
ca69b9e6
DE
1768static const char *dwarf2_physname (const char *name, struct die_info *die,
1769 struct dwarf2_cu *cu);
1770
e142c38c 1771static struct die_info *dwarf2_extension (struct die_info *die,
f2f0e013 1772 struct dwarf2_cu **);
9219021c 1773
f39c6ffd 1774static const char *dwarf_tag_name (unsigned int);
c906108c 1775
f39c6ffd 1776static const char *dwarf_attr_name (unsigned int);
c906108c 1777
f39c6ffd 1778static const char *dwarf_form_name (unsigned int);
c906108c 1779
a121b7c1 1780static const char *dwarf_bool_name (unsigned int);
c906108c 1781
f39c6ffd 1782static const char *dwarf_type_encoding_name (unsigned int);
c906108c 1783
f9aca02d 1784static struct die_info *sibling_die (struct die_info *);
c906108c 1785
d97bc12b
DE
1786static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1787
1788static void dump_die_for_error (struct die_info *);
1789
1790static void dump_die_1 (struct ui_file *, int level, int max_level,
1791 struct die_info *);
c906108c 1792
d97bc12b 1793/*static*/ void dump_die (struct die_info *, int max_level);
c906108c 1794
51545339 1795static void store_in_ref_table (struct die_info *,
10b3939b 1796 struct dwarf2_cu *);
c906108c 1797
ff39bb5e 1798static sect_offset dwarf2_get_ref_die_offset (const struct attribute *);
c906108c 1799
ff39bb5e 1800static LONGEST dwarf2_get_attr_constant_value (const struct attribute *, int);
a02abb62 1801
348e048f 1802static struct die_info *follow_die_ref_or_sig (struct die_info *,
ff39bb5e 1803 const struct attribute *,
348e048f
DE
1804 struct dwarf2_cu **);
1805
10b3939b 1806static struct die_info *follow_die_ref (struct die_info *,
ff39bb5e 1807 const struct attribute *,
f2f0e013 1808 struct dwarf2_cu **);
c906108c 1809
348e048f 1810static struct die_info *follow_die_sig (struct die_info *,
ff39bb5e 1811 const struct attribute *,
348e048f
DE
1812 struct dwarf2_cu **);
1813
ac9ec31b
DE
1814static struct type *get_signatured_type (struct die_info *, ULONGEST,
1815 struct dwarf2_cu *);
1816
1817static struct type *get_DW_AT_signature_type (struct die_info *,
ff39bb5e 1818 const struct attribute *,
ac9ec31b
DE
1819 struct dwarf2_cu *);
1820
e5fe5e75 1821static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
348e048f 1822
52dc124a 1823static void read_signatured_type (struct signatured_type *);
348e048f 1824
63e43d3a
PMR
1825static int attr_to_dynamic_prop (const struct attribute *attr,
1826 struct die_info *die, struct dwarf2_cu *cu,
1827 struct dynamic_prop *prop);
1828
c906108c
SS
1829/* memory allocation interface */
1830
7b5a2f43 1831static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1832
b60c80d6 1833static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
c906108c 1834
43f3e411 1835static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
2e276125 1836
6e5a29e1 1837static int attr_form_is_block (const struct attribute *);
8e19ed76 1838
6e5a29e1 1839static int attr_form_is_section_offset (const struct attribute *);
3690dd37 1840
6e5a29e1 1841static int attr_form_is_constant (const struct attribute *);
3690dd37 1842
6e5a29e1 1843static int attr_form_is_ref (const struct attribute *);
7771576e 1844
8cf6f0b1
TT
1845static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1846 struct dwarf2_loclist_baton *baton,
ff39bb5e 1847 const struct attribute *attr);
8cf6f0b1 1848
ff39bb5e 1849static void dwarf2_symbol_mark_computed (const struct attribute *attr,
93e7bd98 1850 struct symbol *sym,
f1e6e072
TT
1851 struct dwarf2_cu *cu,
1852 int is_block);
4c2df51b 1853
d521ce57
TT
1854static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1855 const gdb_byte *info_ptr,
1856 struct abbrev_info *abbrev);
4bb7a0a7 1857
72bf9492
DJ
1858static hashval_t partial_die_hash (const void *item);
1859
1860static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1861
ae038cb0 1862static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
ed2dc618
SM
1863 (sect_offset sect_off, unsigned int offset_in_dwz,
1864 struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1865
9816fde3 1866static void prepare_one_comp_unit (struct dwarf2_cu *cu,
95554aad
TT
1867 struct die_info *comp_unit_die,
1868 enum language pretend_language);
93311388 1869
ed2dc618 1870static void age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1871
dee91e82 1872static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
ae038cb0 1873
f792889a
DJ
1874static struct type *set_die_type (struct die_info *, struct type *,
1875 struct dwarf2_cu *);
1c379e20 1876
ed2dc618 1877static void create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
ae038cb0 1878
ed2dc618 1879static int create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1fd400ff 1880
58f0c718 1881static void load_full_comp_unit (struct dwarf2_per_cu_data *, bool,
95554aad 1882 enum language);
10b3939b 1883
95554aad
TT
1884static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1885 enum language);
10b3939b 1886
f4dc4d17
DE
1887static void process_full_type_unit (struct dwarf2_per_cu_data *,
1888 enum language);
1889
10b3939b
DJ
1890static void dwarf2_add_dependence (struct dwarf2_cu *,
1891 struct dwarf2_per_cu_data *);
1892
ae038cb0
DJ
1893static void dwarf2_mark (struct dwarf2_cu *);
1894
1895static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1896
b64f50a1 1897static struct type *get_die_type_at_offset (sect_offset,
ac9ec31b 1898 struct dwarf2_per_cu_data *);
673bfd45 1899
f792889a 1900static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
72019c9c 1901
95554aad
TT
1902static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1903 enum language pretend_language);
1904
ed2dc618 1905static void process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile);
9291a0cd 1906
b303c6f6
AB
1907/* Class, the destructor of which frees all allocated queue entries. This
1908 will only have work to do if an error was thrown while processing the
1909 dwarf. If no error was thrown then the queue entries should have all
1910 been processed, and freed, as we went along. */
1911
1912class dwarf2_queue_guard
1913{
1914public:
1915 dwarf2_queue_guard () = default;
1916
1917 /* Free any entries remaining on the queue. There should only be
1918 entries left if we hit an error while processing the dwarf. */
1919 ~dwarf2_queue_guard ()
1920 {
1921 struct dwarf2_queue_item *item, *last;
1922
1923 item = dwarf2_queue;
1924 while (item)
1925 {
1926 /* Anything still marked queued is likely to be in an
1927 inconsistent state, so discard it. */
1928 if (item->per_cu->queued)
1929 {
1930 if (item->per_cu->cu != NULL)
1931 free_one_cached_comp_unit (item->per_cu);
1932 item->per_cu->queued = 0;
1933 }
1934
1935 last = item;
1936 item = item->next;
1937 xfree (last);
1938 }
1939
1940 dwarf2_queue = dwarf2_queue_tail = NULL;
1941 }
1942};
1943
d721ba37
PA
1944/* The return type of find_file_and_directory. Note, the enclosed
1945 string pointers are only valid while this object is valid. */
1946
1947struct file_and_directory
1948{
1949 /* The filename. This is never NULL. */
1950 const char *name;
1951
1952 /* The compilation directory. NULL if not known. If we needed to
1953 compute a new string, this points to COMP_DIR_STORAGE, otherwise,
1954 points directly to the DW_AT_comp_dir string attribute owned by
1955 the obstack that owns the DIE. */
1956 const char *comp_dir;
1957
1958 /* If we needed to build a new string for comp_dir, this is what
1959 owns the storage. */
1960 std::string comp_dir_storage;
1961};
1962
1963static file_and_directory find_file_and_directory (struct die_info *die,
1964 struct dwarf2_cu *cu);
9291a0cd
TT
1965
1966static char *file_full_name (int file, struct line_header *lh,
1967 const char *comp_dir);
1968
43988095
JK
1969/* Expected enum dwarf_unit_type for read_comp_unit_head. */
1970enum class rcuh_kind { COMPILE, TYPE };
1971
d521ce57 1972static const gdb_byte *read_and_check_comp_unit_head
ed2dc618
SM
1973 (struct dwarf2_per_objfile* dwarf2_per_objfile,
1974 struct comp_unit_head *header,
36586728 1975 struct dwarf2_section_info *section,
d521ce57 1976 struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
43988095 1977 rcuh_kind section_kind);
36586728 1978
fd820528 1979static void init_cutu_and_read_dies
f4dc4d17 1980 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
58f0c718 1981 int use_existing_cu, int keep, bool skip_partial,
3019eac3
DE
1982 die_reader_func_ftype *die_reader_func, void *data);
1983
dee91e82
DE
1984static void init_cutu_and_read_dies_simple
1985 (struct dwarf2_per_cu_data *this_cu,
1986 die_reader_func_ftype *die_reader_func, void *data);
9291a0cd 1987
673bfd45 1988static htab_t allocate_signatured_type_table (struct objfile *objfile);
1fd400ff 1989
3019eac3
DE
1990static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1991
57d63ce2 1992static struct dwo_unit *lookup_dwo_unit_in_dwp
ed2dc618
SM
1993 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1994 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 1995 ULONGEST signature, int is_debug_types);
a2ce51a0 1996
ed2dc618
SM
1997static struct dwp_file *get_dwp_file
1998 (struct dwarf2_per_objfile *dwarf2_per_objfile);
a2ce51a0 1999
3019eac3 2000static struct dwo_unit *lookup_dwo_comp_unit
a1855c1d 2001 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
3019eac3
DE
2002
2003static struct dwo_unit *lookup_dwo_type_unit
a1855c1d 2004 (struct signatured_type *, const char *, const char *);
3019eac3 2005
89e63ee4
DE
2006static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
2007
263db9a1 2008static void free_dwo_file (struct dwo_file *);
3019eac3 2009
263db9a1
TT
2010/* A unique_ptr helper to free a dwo_file. */
2011
2012struct dwo_file_deleter
ed2dc618 2013{
263db9a1
TT
2014 void operator() (struct dwo_file *df) const
2015 {
2016 free_dwo_file (df);
2017 }
ed2dc618
SM
2018};
2019
263db9a1
TT
2020/* A unique pointer to a dwo_file. */
2021
2022typedef std::unique_ptr<struct dwo_file, dwo_file_deleter> dwo_file_up;
2023
ed2dc618 2024static void process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile);
95554aad 2025
1b80a9fa 2026static void check_producer (struct dwarf2_cu *cu);
527f3840
JK
2027
2028static void free_line_header_voidp (void *arg);
4390d890
DE
2029\f
2030/* Various complaints about symbol reading that don't abort the process. */
2031
2032static void
2033dwarf2_statement_list_fits_in_line_number_section_complaint (void)
2034{
b98664d3 2035 complaint (_("statement list doesn't fit in .debug_line section"));
4390d890
DE
2036}
2037
2038static void
2039dwarf2_debug_line_missing_file_complaint (void)
2040{
b98664d3 2041 complaint (_(".debug_line section has line data without a file"));
4390d890
DE
2042}
2043
2044static void
2045dwarf2_debug_line_missing_end_sequence_complaint (void)
2046{
b98664d3 2047 complaint (_(".debug_line section has line "
4390d890
DE
2048 "program sequence without an end"));
2049}
2050
2051static void
2052dwarf2_complex_location_expr_complaint (void)
2053{
b98664d3 2054 complaint (_("location expression too complex"));
4390d890
DE
2055}
2056
2057static void
2058dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
2059 int arg3)
2060{
b98664d3 2061 complaint (_("const value length mismatch for '%s', got %d, expected %d"),
4390d890
DE
2062 arg1, arg2, arg3);
2063}
2064
2065static void
2066dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
2067{
b98664d3 2068 complaint (_("debug info runs off end of %s section"
4390d890 2069 " [in module %s]"),
a32a8923
DE
2070 get_section_name (section),
2071 get_section_file_name (section));
4390d890 2072}
1b80a9fa 2073
4390d890
DE
2074static void
2075dwarf2_macro_malformed_definition_complaint (const char *arg1)
2076{
b98664d3 2077 complaint (_("macro debug info contains a "
4390d890
DE
2078 "malformed macro definition:\n`%s'"),
2079 arg1);
2080}
2081
2082static void
2083dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
2084{
b98664d3 2085 complaint (_("invalid attribute class or form for '%s' in '%s'"),
4390d890
DE
2086 arg1, arg2);
2087}
527f3840
JK
2088
2089/* Hash function for line_header_hash. */
2090
2091static hashval_t
2092line_header_hash (const struct line_header *ofs)
2093{
9c541725 2094 return to_underlying (ofs->sect_off) ^ ofs->offset_in_dwz;
527f3840
JK
2095}
2096
2097/* Hash function for htab_create_alloc_ex for line_header_hash. */
2098
2099static hashval_t
2100line_header_hash_voidp (const void *item)
2101{
9a3c8263 2102 const struct line_header *ofs = (const struct line_header *) item;
527f3840
JK
2103
2104 return line_header_hash (ofs);
2105}
2106
2107/* Equality function for line_header_hash. */
2108
2109static int
2110line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
2111{
9a3c8263
SM
2112 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
2113 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
527f3840 2114
9c541725 2115 return (ofs_lhs->sect_off == ofs_rhs->sect_off
527f3840
JK
2116 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
2117}
2118
4390d890 2119\f
9291a0cd 2120
31aa7e4e
JB
2121/* Read the given attribute value as an address, taking the attribute's
2122 form into account. */
2123
2124static CORE_ADDR
2125attr_value_as_address (struct attribute *attr)
2126{
2127 CORE_ADDR addr;
2128
336d760d
AT
2129 if (attr->form != DW_FORM_addr && attr->form != DW_FORM_addrx
2130 && attr->form != DW_FORM_GNU_addr_index)
31aa7e4e
JB
2131 {
2132 /* Aside from a few clearly defined exceptions, attributes that
2133 contain an address must always be in DW_FORM_addr form.
2134 Unfortunately, some compilers happen to be violating this
2135 requirement by encoding addresses using other forms, such
2136 as DW_FORM_data4 for example. For those broken compilers,
2137 we try to do our best, without any guarantee of success,
2138 to interpret the address correctly. It would also be nice
2139 to generate a complaint, but that would require us to maintain
2140 a list of legitimate cases where a non-address form is allowed,
2141 as well as update callers to pass in at least the CU's DWARF
2142 version. This is more overhead than what we're willing to
2143 expand for a pretty rare case. */
2144 addr = DW_UNSND (attr);
2145 }
2146 else
2147 addr = DW_ADDR (attr);
2148
2149 return addr;
2150}
2151
330cdd98
PA
2152/* See declaration. */
2153
2154dwarf2_per_objfile::dwarf2_per_objfile (struct objfile *objfile_,
2155 const dwarf2_debug_sections *names)
2156 : objfile (objfile_)
2157{
2158 if (names == NULL)
2159 names = &dwarf2_elf_names;
2160
2161 bfd *obfd = objfile->obfd;
2162
2163 for (asection *sec = obfd->sections; sec != NULL; sec = sec->next)
2164 locate_sections (obfd, sec, *names);
2165}
2166
fc8e7e75
SM
2167static void free_dwo_files (htab_t dwo_files, struct objfile *objfile);
2168
330cdd98
PA
2169dwarf2_per_objfile::~dwarf2_per_objfile ()
2170{
2171 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
2172 free_cached_comp_units ();
2173
2174 if (quick_file_names_table)
2175 htab_delete (quick_file_names_table);
2176
2177 if (line_header_hash)
2178 htab_delete (line_header_hash);
2179
b76e467d
SM
2180 for (dwarf2_per_cu_data *per_cu : all_comp_units)
2181 VEC_free (dwarf2_per_cu_ptr, per_cu->imported_symtabs);
fc8e7e75 2182
b2bdb8cf
SM
2183 for (signatured_type *sig_type : all_type_units)
2184 VEC_free (dwarf2_per_cu_ptr, sig_type->per_cu.imported_symtabs);
fc8e7e75
SM
2185
2186 VEC_free (dwarf2_section_info_def, types);
2187
2188 if (dwo_files != NULL)
2189 free_dwo_files (dwo_files, objfile);
fc8e7e75 2190
330cdd98
PA
2191 /* Everything else should be on the objfile obstack. */
2192}
2193
2194/* See declaration. */
2195
2196void
2197dwarf2_per_objfile::free_cached_comp_units ()
2198{
2199 dwarf2_per_cu_data *per_cu = read_in_chain;
2200 dwarf2_per_cu_data **last_chain = &read_in_chain;
2201 while (per_cu != NULL)
2202 {
2203 dwarf2_per_cu_data *next_cu = per_cu->cu->read_in_chain;
2204
fcd3b13d 2205 delete per_cu->cu;
330cdd98
PA
2206 *last_chain = next_cu;
2207 per_cu = next_cu;
2208 }
2209}
2210
11ed8cad
TT
2211/* A helper class that calls free_cached_comp_units on
2212 destruction. */
2213
2214class free_cached_comp_units
2215{
2216public:
2217
2218 explicit free_cached_comp_units (dwarf2_per_objfile *per_objfile)
2219 : m_per_objfile (per_objfile)
2220 {
2221 }
2222
2223 ~free_cached_comp_units ()
2224 {
2225 m_per_objfile->free_cached_comp_units ();
2226 }
2227
2228 DISABLE_COPY_AND_ASSIGN (free_cached_comp_units);
2229
2230private:
2231
2232 dwarf2_per_objfile *m_per_objfile;
2233};
2234
c906108c 2235/* Try to locate the sections we need for DWARF 2 debugging
251d32d9
TG
2236 information and return true if we have enough to do something.
2237 NAMES points to the dwarf2 section names, or is NULL if the standard
2238 ELF names are used. */
c906108c
SS
2239
2240int
251d32d9
TG
2241dwarf2_has_info (struct objfile *objfile,
2242 const struct dwarf2_debug_sections *names)
c906108c 2243{
97cbe998
SDJ
2244 if (objfile->flags & OBJF_READNEVER)
2245 return 0;
2246
ed2dc618
SM
2247 struct dwarf2_per_objfile *dwarf2_per_objfile
2248 = get_dwarf2_per_objfile (objfile);
2249
2250 if (dwarf2_per_objfile == NULL)
be391dca
TT
2251 {
2252 /* Initialize per-objfile state. */
fd90ace4
YQ
2253 dwarf2_per_objfile
2254 = new (&objfile->objfile_obstack) struct dwarf2_per_objfile (objfile,
2255 names);
ed2dc618 2256 set_dwarf2_per_objfile (objfile, dwarf2_per_objfile);
be391dca 2257 }
73869dc2 2258 return (!dwarf2_per_objfile->info.is_virtual
049412e3 2259 && dwarf2_per_objfile->info.s.section != NULL
73869dc2 2260 && !dwarf2_per_objfile->abbrev.is_virtual
049412e3 2261 && dwarf2_per_objfile->abbrev.s.section != NULL);
73869dc2
DE
2262}
2263
2264/* Return the containing section of virtual section SECTION. */
2265
2266static struct dwarf2_section_info *
2267get_containing_section (const struct dwarf2_section_info *section)
2268{
2269 gdb_assert (section->is_virtual);
2270 return section->s.containing_section;
c906108c
SS
2271}
2272
a32a8923
DE
2273/* Return the bfd owner of SECTION. */
2274
2275static struct bfd *
2276get_section_bfd_owner (const struct dwarf2_section_info *section)
2277{
73869dc2
DE
2278 if (section->is_virtual)
2279 {
2280 section = get_containing_section (section);
2281 gdb_assert (!section->is_virtual);
2282 }
049412e3 2283 return section->s.section->owner;
a32a8923
DE
2284}
2285
2286/* Return the bfd section of SECTION.
2287 Returns NULL if the section is not present. */
2288
2289static asection *
2290get_section_bfd_section (const struct dwarf2_section_info *section)
2291{
73869dc2
DE
2292 if (section->is_virtual)
2293 {
2294 section = get_containing_section (section);
2295 gdb_assert (!section->is_virtual);
2296 }
049412e3 2297 return section->s.section;
a32a8923
DE
2298}
2299
2300/* Return the name of SECTION. */
2301
2302static const char *
2303get_section_name (const struct dwarf2_section_info *section)
2304{
2305 asection *sectp = get_section_bfd_section (section);
2306
2307 gdb_assert (sectp != NULL);
2308 return bfd_section_name (get_section_bfd_owner (section), sectp);
2309}
2310
2311/* Return the name of the file SECTION is in. */
2312
2313static const char *
2314get_section_file_name (const struct dwarf2_section_info *section)
2315{
2316 bfd *abfd = get_section_bfd_owner (section);
2317
2318 return bfd_get_filename (abfd);
2319}
2320
2321/* Return the id of SECTION.
2322 Returns 0 if SECTION doesn't exist. */
2323
2324static int
2325get_section_id (const struct dwarf2_section_info *section)
2326{
2327 asection *sectp = get_section_bfd_section (section);
2328
2329 if (sectp == NULL)
2330 return 0;
2331 return sectp->id;
2332}
2333
2334/* Return the flags of SECTION.
73869dc2 2335 SECTION (or containing section if this is a virtual section) must exist. */
a32a8923
DE
2336
2337static int
2338get_section_flags (const struct dwarf2_section_info *section)
2339{
2340 asection *sectp = get_section_bfd_section (section);
2341
2342 gdb_assert (sectp != NULL);
2343 return bfd_get_section_flags (sectp->owner, sectp);
2344}
2345
251d32d9
TG
2346/* When loading sections, we look either for uncompressed section or for
2347 compressed section names. */
233a11ab
CS
2348
2349static int
251d32d9
TG
2350section_is_p (const char *section_name,
2351 const struct dwarf2_section_names *names)
233a11ab 2352{
251d32d9
TG
2353 if (names->normal != NULL
2354 && strcmp (section_name, names->normal) == 0)
2355 return 1;
2356 if (names->compressed != NULL
2357 && strcmp (section_name, names->compressed) == 0)
2358 return 1;
2359 return 0;
233a11ab
CS
2360}
2361
330cdd98 2362/* See declaration. */
c906108c 2363
330cdd98
PA
2364void
2365dwarf2_per_objfile::locate_sections (bfd *abfd, asection *sectp,
2366 const dwarf2_debug_sections &names)
c906108c 2367{
dc7650b8 2368 flagword aflag = bfd_get_section_flags (abfd, sectp);
251d32d9 2369
dc7650b8
JK
2370 if ((aflag & SEC_HAS_CONTENTS) == 0)
2371 {
2372 }
330cdd98 2373 else if (section_is_p (sectp->name, &names.info))
c906108c 2374 {
330cdd98
PA
2375 this->info.s.section = sectp;
2376 this->info.size = bfd_get_section_size (sectp);
c906108c 2377 }
330cdd98 2378 else if (section_is_p (sectp->name, &names.abbrev))
c906108c 2379 {
330cdd98
PA
2380 this->abbrev.s.section = sectp;
2381 this->abbrev.size = bfd_get_section_size (sectp);
c906108c 2382 }
330cdd98 2383 else if (section_is_p (sectp->name, &names.line))
c906108c 2384 {
330cdd98
PA
2385 this->line.s.section = sectp;
2386 this->line.size = bfd_get_section_size (sectp);
c906108c 2387 }
330cdd98 2388 else if (section_is_p (sectp->name, &names.loc))
c906108c 2389 {
330cdd98
PA
2390 this->loc.s.section = sectp;
2391 this->loc.size = bfd_get_section_size (sectp);
c906108c 2392 }
330cdd98 2393 else if (section_is_p (sectp->name, &names.loclists))
43988095 2394 {
330cdd98
PA
2395 this->loclists.s.section = sectp;
2396 this->loclists.size = bfd_get_section_size (sectp);
43988095 2397 }
330cdd98 2398 else if (section_is_p (sectp->name, &names.macinfo))
c906108c 2399 {
330cdd98
PA
2400 this->macinfo.s.section = sectp;
2401 this->macinfo.size = bfd_get_section_size (sectp);
c906108c 2402 }
330cdd98 2403 else if (section_is_p (sectp->name, &names.macro))
cf2c3c16 2404 {
330cdd98
PA
2405 this->macro.s.section = sectp;
2406 this->macro.size = bfd_get_section_size (sectp);
cf2c3c16 2407 }
330cdd98 2408 else if (section_is_p (sectp->name, &names.str))
c906108c 2409 {
330cdd98
PA
2410 this->str.s.section = sectp;
2411 this->str.size = bfd_get_section_size (sectp);
c906108c 2412 }
330cdd98 2413 else if (section_is_p (sectp->name, &names.line_str))
43988095 2414 {
330cdd98
PA
2415 this->line_str.s.section = sectp;
2416 this->line_str.size = bfd_get_section_size (sectp);
43988095 2417 }
330cdd98 2418 else if (section_is_p (sectp->name, &names.addr))
3019eac3 2419 {
330cdd98
PA
2420 this->addr.s.section = sectp;
2421 this->addr.size = bfd_get_section_size (sectp);
3019eac3 2422 }
330cdd98 2423 else if (section_is_p (sectp->name, &names.frame))
b6af0555 2424 {
330cdd98
PA
2425 this->frame.s.section = sectp;
2426 this->frame.size = bfd_get_section_size (sectp);
b6af0555 2427 }
330cdd98 2428 else if (section_is_p (sectp->name, &names.eh_frame))
b6af0555 2429 {
330cdd98
PA
2430 this->eh_frame.s.section = sectp;
2431 this->eh_frame.size = bfd_get_section_size (sectp);
b6af0555 2432 }
330cdd98 2433 else if (section_is_p (sectp->name, &names.ranges))
af34e669 2434 {
330cdd98
PA
2435 this->ranges.s.section = sectp;
2436 this->ranges.size = bfd_get_section_size (sectp);
af34e669 2437 }
330cdd98 2438 else if (section_is_p (sectp->name, &names.rnglists))
43988095 2439 {
330cdd98
PA
2440 this->rnglists.s.section = sectp;
2441 this->rnglists.size = bfd_get_section_size (sectp);
43988095 2442 }
330cdd98 2443 else if (section_is_p (sectp->name, &names.types))
348e048f 2444 {
8b70b953
TT
2445 struct dwarf2_section_info type_section;
2446
2447 memset (&type_section, 0, sizeof (type_section));
049412e3 2448 type_section.s.section = sectp;
8b70b953
TT
2449 type_section.size = bfd_get_section_size (sectp);
2450
330cdd98 2451 VEC_safe_push (dwarf2_section_info_def, this->types,
8b70b953 2452 &type_section);
348e048f 2453 }
330cdd98 2454 else if (section_is_p (sectp->name, &names.gdb_index))
9291a0cd 2455 {
330cdd98
PA
2456 this->gdb_index.s.section = sectp;
2457 this->gdb_index.size = bfd_get_section_size (sectp);
9291a0cd 2458 }
927aa2e7
JK
2459 else if (section_is_p (sectp->name, &names.debug_names))
2460 {
2461 this->debug_names.s.section = sectp;
2462 this->debug_names.size = bfd_get_section_size (sectp);
2463 }
2464 else if (section_is_p (sectp->name, &names.debug_aranges))
2465 {
2466 this->debug_aranges.s.section = sectp;
2467 this->debug_aranges.size = bfd_get_section_size (sectp);
2468 }
dce234bc 2469
b4e1fd61 2470 if ((bfd_get_section_flags (abfd, sectp) & (SEC_LOAD | SEC_ALLOC))
72dca2f5 2471 && bfd_section_vma (abfd, sectp) == 0)
330cdd98 2472 this->has_section_at_zero = true;
c906108c
SS
2473}
2474
fceca515
DE
2475/* A helper function that decides whether a section is empty,
2476 or not present. */
9e0ac564
TT
2477
2478static int
19ac8c2e 2479dwarf2_section_empty_p (const struct dwarf2_section_info *section)
9e0ac564 2480{
73869dc2
DE
2481 if (section->is_virtual)
2482 return section->size == 0;
049412e3 2483 return section->s.section == NULL || section->size == 0;
9e0ac564
TT
2484}
2485
cd4fb1b2 2486/* See dwarf2read.h. */
c906108c 2487
cd4fb1b2
SM
2488void
2489dwarf2_read_section (struct objfile *objfile, dwarf2_section_info *info)
c906108c 2490{
a32a8923 2491 asection *sectp;
3019eac3 2492 bfd *abfd;
dce234bc 2493 gdb_byte *buf, *retbuf;
c906108c 2494
be391dca
TT
2495 if (info->readin)
2496 return;
dce234bc 2497 info->buffer = NULL;
be391dca 2498 info->readin = 1;
188dd5d6 2499
9e0ac564 2500 if (dwarf2_section_empty_p (info))
dce234bc 2501 return;
c906108c 2502
a32a8923 2503 sectp = get_section_bfd_section (info);
3019eac3 2504
73869dc2
DE
2505 /* If this is a virtual section we need to read in the real one first. */
2506 if (info->is_virtual)
2507 {
2508 struct dwarf2_section_info *containing_section =
2509 get_containing_section (info);
2510
2511 gdb_assert (sectp != NULL);
2512 if ((sectp->flags & SEC_RELOC) != 0)
2513 {
2514 error (_("Dwarf Error: DWP format V2 with relocations is not"
2515 " supported in section %s [in module %s]"),
2516 get_section_name (info), get_section_file_name (info));
2517 }
2518 dwarf2_read_section (objfile, containing_section);
2519 /* Other code should have already caught virtual sections that don't
2520 fit. */
2521 gdb_assert (info->virtual_offset + info->size
2522 <= containing_section->size);
2523 /* If the real section is empty or there was a problem reading the
2524 section we shouldn't get here. */
2525 gdb_assert (containing_section->buffer != NULL);
2526 info->buffer = containing_section->buffer + info->virtual_offset;
2527 return;
2528 }
2529
4bf44c1c
TT
2530 /* If the section has relocations, we must read it ourselves.
2531 Otherwise we attach it to the BFD. */
2532 if ((sectp->flags & SEC_RELOC) == 0)
dce234bc 2533 {
d521ce57 2534 info->buffer = gdb_bfd_map_section (sectp, &info->size);
4bf44c1c 2535 return;
dce234bc 2536 }
dce234bc 2537
224c3ddb 2538 buf = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, info->size);
4bf44c1c 2539 info->buffer = buf;
dce234bc
PP
2540
2541 /* When debugging .o files, we may need to apply relocations; see
2542 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
2543 We never compress sections in .o files, so we only need to
2544 try this when the section is not compressed. */
ac8035ab 2545 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
dce234bc
PP
2546 if (retbuf != NULL)
2547 {
2548 info->buffer = retbuf;
2549 return;
2550 }
2551
a32a8923
DE
2552 abfd = get_section_bfd_owner (info);
2553 gdb_assert (abfd != NULL);
2554
dce234bc
PP
2555 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
2556 || bfd_bread (buf, info->size, abfd) != info->size)
19ac8c2e
DE
2557 {
2558 error (_("Dwarf Error: Can't read DWARF data"
2559 " in section %s [in module %s]"),
2560 bfd_section_name (abfd, sectp), bfd_get_filename (abfd));
2561 }
dce234bc
PP
2562}
2563
9e0ac564
TT
2564/* A helper function that returns the size of a section in a safe way.
2565 If you are positive that the section has been read before using the
2566 size, then it is safe to refer to the dwarf2_section_info object's
2567 "size" field directly. In other cases, you must call this
2568 function, because for compressed sections the size field is not set
2569 correctly until the section has been read. */
2570
2571static bfd_size_type
2572dwarf2_section_size (struct objfile *objfile,
2573 struct dwarf2_section_info *info)
2574{
2575 if (!info->readin)
2576 dwarf2_read_section (objfile, info);
2577 return info->size;
2578}
2579
dce234bc 2580/* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
0963b4bd 2581 SECTION_NAME. */
af34e669 2582
dce234bc 2583void
3017a003
TG
2584dwarf2_get_section_info (struct objfile *objfile,
2585 enum dwarf2_section_enum sect,
d521ce57 2586 asection **sectp, const gdb_byte **bufp,
dce234bc
PP
2587 bfd_size_type *sizep)
2588{
2589 struct dwarf2_per_objfile *data
9a3c8263
SM
2590 = (struct dwarf2_per_objfile *) objfile_data (objfile,
2591 dwarf2_objfile_data_key);
dce234bc 2592 struct dwarf2_section_info *info;
a3b2a86b
TT
2593
2594 /* We may see an objfile without any DWARF, in which case we just
2595 return nothing. */
2596 if (data == NULL)
2597 {
2598 *sectp = NULL;
2599 *bufp = NULL;
2600 *sizep = 0;
2601 return;
2602 }
3017a003
TG
2603 switch (sect)
2604 {
2605 case DWARF2_DEBUG_FRAME:
2606 info = &data->frame;
2607 break;
2608 case DWARF2_EH_FRAME:
2609 info = &data->eh_frame;
2610 break;
2611 default:
2612 gdb_assert_not_reached ("unexpected section");
2613 }
dce234bc 2614
9e0ac564 2615 dwarf2_read_section (objfile, info);
dce234bc 2616
a32a8923 2617 *sectp = get_section_bfd_section (info);
dce234bc
PP
2618 *bufp = info->buffer;
2619 *sizep = info->size;
2620}
2621
36586728
TT
2622/* A helper function to find the sections for a .dwz file. */
2623
2624static void
2625locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2626{
9a3c8263 2627 struct dwz_file *dwz_file = (struct dwz_file *) arg;
36586728
TT
2628
2629 /* Note that we only support the standard ELF names, because .dwz
2630 is ELF-only (at the time of writing). */
2631 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2632 {
049412e3 2633 dwz_file->abbrev.s.section = sectp;
36586728
TT
2634 dwz_file->abbrev.size = bfd_get_section_size (sectp);
2635 }
2636 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2637 {
049412e3 2638 dwz_file->info.s.section = sectp;
36586728
TT
2639 dwz_file->info.size = bfd_get_section_size (sectp);
2640 }
2641 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2642 {
049412e3 2643 dwz_file->str.s.section = sectp;
36586728
TT
2644 dwz_file->str.size = bfd_get_section_size (sectp);
2645 }
2646 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2647 {
049412e3 2648 dwz_file->line.s.section = sectp;
36586728
TT
2649 dwz_file->line.size = bfd_get_section_size (sectp);
2650 }
2651 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2652 {
049412e3 2653 dwz_file->macro.s.section = sectp;
36586728
TT
2654 dwz_file->macro.size = bfd_get_section_size (sectp);
2655 }
2ec9a5e0
TT
2656 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2657 {
049412e3 2658 dwz_file->gdb_index.s.section = sectp;
2ec9a5e0
TT
2659 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2660 }
927aa2e7
JK
2661 else if (section_is_p (sectp->name, &dwarf2_elf_names.debug_names))
2662 {
2663 dwz_file->debug_names.s.section = sectp;
2664 dwz_file->debug_names.size = bfd_get_section_size (sectp);
2665 }
36586728
TT
2666}
2667
4db1a1dc
TT
2668/* Open the separate '.dwz' debug file, if needed. Return NULL if
2669 there is no .gnu_debugaltlink section in the file. Error if there
2670 is such a section but the file cannot be found. */
36586728
TT
2671
2672static struct dwz_file *
ed2dc618 2673dwarf2_get_dwz_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
36586728 2674{
36586728 2675 const char *filename;
acd13123 2676 bfd_size_type buildid_len_arg;
dc294be5
TT
2677 size_t buildid_len;
2678 bfd_byte *buildid;
36586728
TT
2679
2680 if (dwarf2_per_objfile->dwz_file != NULL)
7ff8cb8c 2681 return dwarf2_per_objfile->dwz_file.get ();
36586728 2682
4db1a1dc 2683 bfd_set_error (bfd_error_no_error);
791afaa2
TT
2684 gdb::unique_xmalloc_ptr<char> data
2685 (bfd_get_alt_debug_link_info (dwarf2_per_objfile->objfile->obfd,
2686 &buildid_len_arg, &buildid));
4db1a1dc
TT
2687 if (data == NULL)
2688 {
2689 if (bfd_get_error () == bfd_error_no_error)
2690 return NULL;
2691 error (_("could not read '.gnu_debugaltlink' section: %s"),
2692 bfd_errmsg (bfd_get_error ()));
2693 }
791afaa2
TT
2694
2695 gdb::unique_xmalloc_ptr<bfd_byte> buildid_holder (buildid);
36586728 2696
acd13123
TT
2697 buildid_len = (size_t) buildid_len_arg;
2698
791afaa2 2699 filename = data.get ();
d721ba37
PA
2700
2701 std::string abs_storage;
36586728
TT
2702 if (!IS_ABSOLUTE_PATH (filename))
2703 {
14278e1f
TT
2704 gdb::unique_xmalloc_ptr<char> abs
2705 = gdb_realpath (objfile_name (dwarf2_per_objfile->objfile));
36586728 2706
14278e1f 2707 abs_storage = ldirname (abs.get ()) + SLASH_STRING + filename;
d721ba37 2708 filename = abs_storage.c_str ();
36586728
TT
2709 }
2710
dc294be5
TT
2711 /* First try the file name given in the section. If that doesn't
2712 work, try to use the build-id instead. */
192b62ce 2713 gdb_bfd_ref_ptr dwz_bfd (gdb_bfd_open (filename, gnutarget, -1));
dc294be5 2714 if (dwz_bfd != NULL)
36586728 2715 {
192b62ce 2716 if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
0f58c9e8 2717 dwz_bfd.reset (nullptr);
36586728
TT
2718 }
2719
dc294be5
TT
2720 if (dwz_bfd == NULL)
2721 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2722
2723 if (dwz_bfd == NULL)
2724 error (_("could not find '.gnu_debugaltlink' file for %s"),
2725 objfile_name (dwarf2_per_objfile->objfile));
2726
7ff8cb8c
TT
2727 std::unique_ptr<struct dwz_file> result
2728 (new struct dwz_file (std::move (dwz_bfd)));
36586728 2729
7ff8cb8c
TT
2730 bfd_map_over_sections (result->dwz_bfd.get (), locate_dwz_sections,
2731 result.get ());
36586728 2732
7ff8cb8c
TT
2733 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd,
2734 result->dwz_bfd.get ());
2735 dwarf2_per_objfile->dwz_file = std::move (result);
2736 return dwarf2_per_objfile->dwz_file.get ();
36586728 2737}
9291a0cd 2738\f
7b9f3c50
DE
2739/* DWARF quick_symbols_functions support. */
2740
2741/* TUs can share .debug_line entries, and there can be a lot more TUs than
2742 unique line tables, so we maintain a separate table of all .debug_line
2743 derived entries to support the sharing.
2744 All the quick functions need is the list of file names. We discard the
2745 line_header when we're done and don't need to record it here. */
2746struct quick_file_names
2747{
094b34ac
DE
2748 /* The data used to construct the hash key. */
2749 struct stmt_list_hash hash;
7b9f3c50
DE
2750
2751 /* The number of entries in file_names, real_names. */
2752 unsigned int num_file_names;
2753
2754 /* The file names from the line table, after being run through
2755 file_full_name. */
2756 const char **file_names;
2757
2758 /* The file names from the line table after being run through
2759 gdb_realpath. These are computed lazily. */
2760 const char **real_names;
2761};
2762
2763/* When using the index (and thus not using psymtabs), each CU has an
2764 object of this type. This is used to hold information needed by
2765 the various "quick" methods. */
2766struct dwarf2_per_cu_quick_data
2767{
2768 /* The file table. This can be NULL if there was no file table
2769 or it's currently not read in.
2770 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2771 struct quick_file_names *file_names;
2772
2773 /* The corresponding symbol table. This is NULL if symbols for this
2774 CU have not yet been read. */
43f3e411 2775 struct compunit_symtab *compunit_symtab;
7b9f3c50
DE
2776
2777 /* A temporary mark bit used when iterating over all CUs in
2778 expand_symtabs_matching. */
2779 unsigned int mark : 1;
2780
2781 /* True if we've tried to read the file table and found there isn't one.
2782 There will be no point in trying to read it again next time. */
2783 unsigned int no_file_data : 1;
2784};
2785
094b34ac
DE
2786/* Utility hash function for a stmt_list_hash. */
2787
2788static hashval_t
2789hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2790{
2791 hashval_t v = 0;
2792
2793 if (stmt_list_hash->dwo_unit != NULL)
2794 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
9c541725 2795 v += to_underlying (stmt_list_hash->line_sect_off);
094b34ac
DE
2796 return v;
2797}
2798
2799/* Utility equality function for a stmt_list_hash. */
2800
2801static int
2802eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2803 const struct stmt_list_hash *rhs)
2804{
2805 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2806 return 0;
2807 if (lhs->dwo_unit != NULL
2808 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2809 return 0;
2810
9c541725 2811 return lhs->line_sect_off == rhs->line_sect_off;
094b34ac
DE
2812}
2813
7b9f3c50
DE
2814/* Hash function for a quick_file_names. */
2815
2816static hashval_t
2817hash_file_name_entry (const void *e)
2818{
9a3c8263
SM
2819 const struct quick_file_names *file_data
2820 = (const struct quick_file_names *) e;
7b9f3c50 2821
094b34ac 2822 return hash_stmt_list_entry (&file_data->hash);
7b9f3c50
DE
2823}
2824
2825/* Equality function for a quick_file_names. */
2826
2827static int
2828eq_file_name_entry (const void *a, const void *b)
2829{
9a3c8263
SM
2830 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2831 const struct quick_file_names *eb = (const struct quick_file_names *) b;
7b9f3c50 2832
094b34ac 2833 return eq_stmt_list_entry (&ea->hash, &eb->hash);
7b9f3c50
DE
2834}
2835
2836/* Delete function for a quick_file_names. */
2837
2838static void
2839delete_file_name_entry (void *e)
2840{
9a3c8263 2841 struct quick_file_names *file_data = (struct quick_file_names *) e;
7b9f3c50
DE
2842 int i;
2843
2844 for (i = 0; i < file_data->num_file_names; ++i)
2845 {
2846 xfree ((void*) file_data->file_names[i]);
2847 if (file_data->real_names)
2848 xfree ((void*) file_data->real_names[i]);
2849 }
2850
2851 /* The space for the struct itself lives on objfile_obstack,
2852 so we don't free it here. */
2853}
2854
2855/* Create a quick_file_names hash table. */
2856
2857static htab_t
2858create_quick_file_names_table (unsigned int nr_initial_entries)
2859{
2860 return htab_create_alloc (nr_initial_entries,
2861 hash_file_name_entry, eq_file_name_entry,
2862 delete_file_name_entry, xcalloc, xfree);
2863}
9291a0cd 2864
918dd910
JK
2865/* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2866 have to be created afterwards. You should call age_cached_comp_units after
2867 processing PER_CU->CU. dw2_setup must have been already called. */
2868
2869static void
58f0c718 2870load_cu (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
918dd910 2871{
3019eac3 2872 if (per_cu->is_debug_types)
e5fe5e75 2873 load_full_type_unit (per_cu);
918dd910 2874 else
58f0c718 2875 load_full_comp_unit (per_cu, skip_partial, language_minimal);
918dd910 2876
cc12ce38
DE
2877 if (per_cu->cu == NULL)
2878 return; /* Dummy CU. */
2dc860c0
DE
2879
2880 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
918dd910
JK
2881}
2882
a0f42c21 2883/* Read in the symbols for PER_CU. */
2fdf6df6 2884
9291a0cd 2885static void
58f0c718 2886dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
9291a0cd 2887{
ed2dc618 2888 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
9291a0cd 2889
f4dc4d17
DE
2890 /* Skip type_unit_groups, reading the type units they contain
2891 is handled elsewhere. */
2892 if (IS_TYPE_UNIT_GROUP (per_cu))
2893 return;
2894
b303c6f6
AB
2895 /* The destructor of dwarf2_queue_guard frees any entries left on
2896 the queue. After this point we're guaranteed to leave this function
2897 with the dwarf queue empty. */
2898 dwarf2_queue_guard q_guard;
9291a0cd 2899
95554aad 2900 if (dwarf2_per_objfile->using_index
43f3e411 2901 ? per_cu->v.quick->compunit_symtab == NULL
95554aad
TT
2902 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2903 {
2904 queue_comp_unit (per_cu, language_minimal);
58f0c718 2905 load_cu (per_cu, skip_partial);
89e63ee4
DE
2906
2907 /* If we just loaded a CU from a DWO, and we're working with an index
2908 that may badly handle TUs, load all the TUs in that DWO as well.
2909 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2910 if (!per_cu->is_debug_types
cc12ce38 2911 && per_cu->cu != NULL
89e63ee4
DE
2912 && per_cu->cu->dwo_unit != NULL
2913 && dwarf2_per_objfile->index_table != NULL
2914 && dwarf2_per_objfile->index_table->version <= 7
2915 /* DWP files aren't supported yet. */
ed2dc618 2916 && get_dwp_file (dwarf2_per_objfile) == NULL)
89e63ee4 2917 queue_and_load_all_dwo_tus (per_cu);
95554aad 2918 }
9291a0cd 2919
ed2dc618 2920 process_queue (dwarf2_per_objfile);
9291a0cd
TT
2921
2922 /* Age the cache, releasing compilation units that have not
2923 been used recently. */
ed2dc618 2924 age_cached_comp_units (dwarf2_per_objfile);
9291a0cd
TT
2925}
2926
2927/* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2928 the objfile from which this CU came. Returns the resulting symbol
2929 table. */
2fdf6df6 2930
43f3e411 2931static struct compunit_symtab *
58f0c718 2932dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu, bool skip_partial)
9291a0cd 2933{
ed2dc618
SM
2934 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
2935
95554aad 2936 gdb_assert (dwarf2_per_objfile->using_index);
43f3e411 2937 if (!per_cu->v.quick->compunit_symtab)
9291a0cd 2938 {
11ed8cad 2939 free_cached_comp_units freer (dwarf2_per_objfile);
c83dd867 2940 scoped_restore decrementer = increment_reading_symtab ();
58f0c718 2941 dw2_do_instantiate_symtab (per_cu, skip_partial);
ed2dc618 2942 process_cu_includes (dwarf2_per_objfile);
9291a0cd 2943 }
f194fefb 2944
43f3e411 2945 return per_cu->v.quick->compunit_symtab;
9291a0cd
TT
2946}
2947
ff4c9fec 2948/* See declaration. */
f4dc4d17 2949
ff4c9fec
SM
2950dwarf2_per_cu_data *
2951dwarf2_per_objfile::get_cutu (int index)
2952{
b76e467d 2953 if (index >= this->all_comp_units.size ())
ff4c9fec 2954 {
b76e467d 2955 index -= this->all_comp_units.size ();
b2bdb8cf 2956 gdb_assert (index < this->all_type_units.size ());
ff4c9fec
SM
2957 return &this->all_type_units[index]->per_cu;
2958 }
f4dc4d17 2959
ff4c9fec
SM
2960 return this->all_comp_units[index];
2961}
f4dc4d17 2962
ff4c9fec 2963/* See declaration. */
2fdf6df6 2964
ff4c9fec
SM
2965dwarf2_per_cu_data *
2966dwarf2_per_objfile::get_cu (int index)
1fd400ff 2967{
b76e467d 2968 gdb_assert (index >= 0 && index < this->all_comp_units.size ());
f4dc4d17 2969
ff4c9fec 2970 return this->all_comp_units[index];
f4dc4d17
DE
2971}
2972
ff4c9fec 2973/* See declaration. */
f4dc4d17 2974
ff4c9fec
SM
2975signatured_type *
2976dwarf2_per_objfile::get_tu (int index)
f4dc4d17 2977{
b2bdb8cf 2978 gdb_assert (index >= 0 && index < this->all_type_units.size ());
f4dc4d17 2979
ff4c9fec 2980 return this->all_type_units[index];
1fd400ff
TT
2981}
2982
4b514bc8
JK
2983/* Return a new dwarf2_per_cu_data allocated on OBJFILE's
2984 objfile_obstack, and constructed with the specified field
2985 values. */
2986
2987static dwarf2_per_cu_data *
ed2dc618 2988create_cu_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
4b514bc8
JK
2989 struct dwarf2_section_info *section,
2990 int is_dwz,
2991 sect_offset sect_off, ULONGEST length)
2992{
ed2dc618 2993 struct objfile *objfile = dwarf2_per_objfile->objfile;
4b514bc8
JK
2994 dwarf2_per_cu_data *the_cu
2995 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2996 struct dwarf2_per_cu_data);
2997 the_cu->sect_off = sect_off;
2998 the_cu->length = length;
e3b94546 2999 the_cu->dwarf2_per_objfile = dwarf2_per_objfile;
4b514bc8
JK
3000 the_cu->section = section;
3001 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3002 struct dwarf2_per_cu_quick_data);
3003 the_cu->is_dwz = is_dwz;
3004 return the_cu;
3005}
3006
2ec9a5e0
TT
3007/* A helper for create_cus_from_index that handles a given list of
3008 CUs. */
2fdf6df6 3009
74a0d9f6 3010static void
12359b5e 3011create_cus_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
2ec9a5e0
TT
3012 const gdb_byte *cu_list, offset_type n_elements,
3013 struct dwarf2_section_info *section,
b76e467d 3014 int is_dwz)
9291a0cd 3015{
12359b5e 3016 for (offset_type i = 0; i < n_elements; i += 2)
9291a0cd 3017 {
74a0d9f6 3018 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
3019
3020 sect_offset sect_off
3021 = (sect_offset) extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
3022 ULONGEST length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
9291a0cd
TT
3023 cu_list += 2 * 8;
3024
b76e467d 3025 dwarf2_per_cu_data *per_cu
ed2dc618
SM
3026 = create_cu_from_index_list (dwarf2_per_objfile, section, is_dwz,
3027 sect_off, length);
b76e467d 3028 dwarf2_per_objfile->all_comp_units.push_back (per_cu);
9291a0cd 3029 }
9291a0cd
TT
3030}
3031
2ec9a5e0 3032/* Read the CU list from the mapped index, and use it to create all
74a0d9f6 3033 the CU objects for this objfile. */
2ec9a5e0 3034
74a0d9f6 3035static void
12359b5e 3036create_cus_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
2ec9a5e0
TT
3037 const gdb_byte *cu_list, offset_type cu_list_elements,
3038 const gdb_byte *dwz_list, offset_type dwz_elements)
3039{
b76e467d
SM
3040 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
3041 dwarf2_per_objfile->all_comp_units.reserve
3042 ((cu_list_elements + dwz_elements) / 2);
2ec9a5e0 3043
12359b5e 3044 create_cus_from_index_list (dwarf2_per_objfile, cu_list, cu_list_elements,
b76e467d 3045 &dwarf2_per_objfile->info, 0);
2ec9a5e0
TT
3046
3047 if (dwz_elements == 0)
74a0d9f6 3048 return;
2ec9a5e0 3049
12359b5e
SM
3050 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
3051 create_cus_from_index_list (dwarf2_per_objfile, dwz_list, dwz_elements,
b76e467d 3052 &dwz->info, 1);
2ec9a5e0
TT
3053}
3054
1fd400ff 3055/* Create the signatured type hash table from the index. */
673bfd45 3056
74a0d9f6 3057static void
12359b5e
SM
3058create_signatured_type_table_from_index
3059 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3060 struct dwarf2_section_info *section,
3061 const gdb_byte *bytes,
3062 offset_type elements)
1fd400ff 3063{
12359b5e 3064 struct objfile *objfile = dwarf2_per_objfile->objfile;
1fd400ff 3065
b2bdb8cf
SM
3066 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
3067 dwarf2_per_objfile->all_type_units.reserve (elements / 3);
1fd400ff 3068
12359b5e 3069 htab_t sig_types_hash = allocate_signatured_type_table (objfile);
1fd400ff 3070
12359b5e 3071 for (offset_type i = 0; i < elements; i += 3)
1fd400ff 3072 {
52dc124a 3073 struct signatured_type *sig_type;
9c541725 3074 ULONGEST signature;
1fd400ff 3075 void **slot;
9c541725 3076 cu_offset type_offset_in_tu;
1fd400ff 3077
74a0d9f6 3078 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
3079 sect_offset sect_off
3080 = (sect_offset) extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
3081 type_offset_in_tu
3082 = (cu_offset) extract_unsigned_integer (bytes + 8, 8,
3083 BFD_ENDIAN_LITTLE);
1fd400ff
TT
3084 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
3085 bytes += 3 * 8;
3086
52dc124a 3087 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1fd400ff 3088 struct signatured_type);
52dc124a 3089 sig_type->signature = signature;
9c541725 3090 sig_type->type_offset_in_tu = type_offset_in_tu;
3019eac3 3091 sig_type->per_cu.is_debug_types = 1;
8a0459fd 3092 sig_type->per_cu.section = section;
9c541725 3093 sig_type->per_cu.sect_off = sect_off;
e3b94546 3094 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
52dc124a 3095 sig_type->per_cu.v.quick
1fd400ff
TT
3096 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3097 struct dwarf2_per_cu_quick_data);
3098
52dc124a
DE
3099 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3100 *slot = sig_type;
1fd400ff 3101
b2bdb8cf 3102 dwarf2_per_objfile->all_type_units.push_back (sig_type);
1fd400ff
TT
3103 }
3104
673bfd45 3105 dwarf2_per_objfile->signatured_types = sig_types_hash;
1fd400ff
TT
3106}
3107
927aa2e7
JK
3108/* Create the signatured type hash table from .debug_names. */
3109
3110static void
3111create_signatured_type_table_from_debug_names
ed2dc618 3112 (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
3113 const mapped_debug_names &map,
3114 struct dwarf2_section_info *section,
3115 struct dwarf2_section_info *abbrev_section)
3116{
ed2dc618
SM
3117 struct objfile *objfile = dwarf2_per_objfile->objfile;
3118
927aa2e7
JK
3119 dwarf2_read_section (objfile, section);
3120 dwarf2_read_section (objfile, abbrev_section);
3121
b2bdb8cf
SM
3122 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
3123 dwarf2_per_objfile->all_type_units.reserve (map.tu_count);
927aa2e7
JK
3124
3125 htab_t sig_types_hash = allocate_signatured_type_table (objfile);
3126
3127 for (uint32_t i = 0; i < map.tu_count; ++i)
3128 {
3129 struct signatured_type *sig_type;
927aa2e7 3130 void **slot;
927aa2e7
JK
3131
3132 sect_offset sect_off
3133 = (sect_offset) (extract_unsigned_integer
3134 (map.tu_table_reordered + i * map.offset_size,
3135 map.offset_size,
3136 map.dwarf5_byte_order));
3137
3138 comp_unit_head cu_header;
ed2dc618
SM
3139 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
3140 abbrev_section,
927aa2e7
JK
3141 section->buffer + to_underlying (sect_off),
3142 rcuh_kind::TYPE);
3143
3144 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3145 struct signatured_type);
3146 sig_type->signature = cu_header.signature;
3147 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
3148 sig_type->per_cu.is_debug_types = 1;
3149 sig_type->per_cu.section = section;
3150 sig_type->per_cu.sect_off = sect_off;
e3b94546 3151 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
927aa2e7
JK
3152 sig_type->per_cu.v.quick
3153 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3154 struct dwarf2_per_cu_quick_data);
3155
3156 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3157 *slot = sig_type;
3158
b2bdb8cf 3159 dwarf2_per_objfile->all_type_units.push_back (sig_type);
927aa2e7
JK
3160 }
3161
3162 dwarf2_per_objfile->signatured_types = sig_types_hash;
3163}
3164
9291a0cd
TT
3165/* Read the address map data from the mapped index, and use it to
3166 populate the objfile's psymtabs_addrmap. */
2fdf6df6 3167
9291a0cd 3168static void
ed2dc618
SM
3169create_addrmap_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
3170 struct mapped_index *index)
9291a0cd 3171{
ed2dc618 3172 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 3173 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9291a0cd 3174 const gdb_byte *iter, *end;
9291a0cd 3175 struct addrmap *mutable_map;
9291a0cd
TT
3176 CORE_ADDR baseaddr;
3177
8268c778
PA
3178 auto_obstack temp_obstack;
3179
9291a0cd
TT
3180 mutable_map = addrmap_create_mutable (&temp_obstack);
3181
f00a2de2
PA
3182 iter = index->address_table.data ();
3183 end = iter + index->address_table.size ();
9291a0cd
TT
3184
3185 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3186
3187 while (iter < end)
3188 {
3189 ULONGEST hi, lo, cu_index;
3190 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3191 iter += 8;
3192 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3193 iter += 8;
3194 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
3195 iter += 4;
f652bce2 3196
24a55014 3197 if (lo > hi)
f652bce2 3198 {
b98664d3 3199 complaint (_(".gdb_index address table has invalid range (%s - %s)"),
c0cd8254 3200 hex_string (lo), hex_string (hi));
24a55014 3201 continue;
f652bce2 3202 }
24a55014 3203
b76e467d 3204 if (cu_index >= dwarf2_per_objfile->all_comp_units.size ())
f652bce2 3205 {
b98664d3 3206 complaint (_(".gdb_index address table has invalid CU number %u"),
f652bce2 3207 (unsigned) cu_index);
24a55014 3208 continue;
f652bce2 3209 }
24a55014 3210
79748972
TT
3211 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr) - baseaddr;
3212 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr) - baseaddr;
ed2dc618 3213 addrmap_set_empty (mutable_map, lo, hi - 1,
ff4c9fec 3214 dwarf2_per_objfile->get_cu (cu_index));
9291a0cd
TT
3215 }
3216
d320c2b5 3217 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 3218 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
9291a0cd
TT
3219}
3220
927aa2e7
JK
3221/* Read the address map data from DWARF-5 .debug_aranges, and use it to
3222 populate the objfile's psymtabs_addrmap. */
3223
3224static void
ed2dc618 3225create_addrmap_from_aranges (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
3226 struct dwarf2_section_info *section)
3227{
ed2dc618 3228 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7
JK
3229 bfd *abfd = objfile->obfd;
3230 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3231 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
3232 SECT_OFF_TEXT (objfile));
3233
3234 auto_obstack temp_obstack;
3235 addrmap *mutable_map = addrmap_create_mutable (&temp_obstack);
3236
3237 std::unordered_map<sect_offset,
3238 dwarf2_per_cu_data *,
3239 gdb::hash_enum<sect_offset>>
3240 debug_info_offset_to_per_cu;
b76e467d 3241 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 3242 {
927aa2e7
JK
3243 const auto insertpair
3244 = debug_info_offset_to_per_cu.emplace (per_cu->sect_off, per_cu);
3245 if (!insertpair.second)
3246 {
3247 warning (_("Section .debug_aranges in %s has duplicate "
9d8780f0
SM
3248 "debug_info_offset %s, ignoring .debug_aranges."),
3249 objfile_name (objfile), sect_offset_str (per_cu->sect_off));
927aa2e7
JK
3250 return;
3251 }
3252 }
3253
3254 dwarf2_read_section (objfile, section);
3255
3256 const bfd_endian dwarf5_byte_order = gdbarch_byte_order (gdbarch);
3257
3258 const gdb_byte *addr = section->buffer;
3259
3260 while (addr < section->buffer + section->size)
3261 {
3262 const gdb_byte *const entry_addr = addr;
3263 unsigned int bytes_read;
3264
3265 const LONGEST entry_length = read_initial_length (abfd, addr,
3266 &bytes_read);
3267 addr += bytes_read;
3268
3269 const gdb_byte *const entry_end = addr + entry_length;
3270 const bool dwarf5_is_dwarf64 = bytes_read != 4;
3271 const uint8_t offset_size = dwarf5_is_dwarf64 ? 8 : 4;
3272 if (addr + entry_length > section->buffer + section->size)
3273 {
3274 warning (_("Section .debug_aranges in %s entry at offset %zu "
3275 "length %s exceeds section length %s, "
3276 "ignoring .debug_aranges."),
3277 objfile_name (objfile), entry_addr - section->buffer,
3278 plongest (bytes_read + entry_length),
3279 pulongest (section->size));
3280 return;
3281 }
3282
3283 /* The version number. */
3284 const uint16_t version = read_2_bytes (abfd, addr);
3285 addr += 2;
3286 if (version != 2)
3287 {
3288 warning (_("Section .debug_aranges in %s entry at offset %zu "
3289 "has unsupported version %d, ignoring .debug_aranges."),
3290 objfile_name (objfile), entry_addr - section->buffer,
3291 version);
3292 return;
3293 }
3294
3295 const uint64_t debug_info_offset
3296 = extract_unsigned_integer (addr, offset_size, dwarf5_byte_order);
3297 addr += offset_size;
3298 const auto per_cu_it
3299 = debug_info_offset_to_per_cu.find (sect_offset (debug_info_offset));
3300 if (per_cu_it == debug_info_offset_to_per_cu.cend ())
3301 {
3302 warning (_("Section .debug_aranges in %s entry at offset %zu "
3303 "debug_info_offset %s does not exists, "
3304 "ignoring .debug_aranges."),
3305 objfile_name (objfile), entry_addr - section->buffer,
3306 pulongest (debug_info_offset));
3307 return;
3308 }
3309 dwarf2_per_cu_data *const per_cu = per_cu_it->second;
3310
3311 const uint8_t address_size = *addr++;
3312 if (address_size < 1 || address_size > 8)
3313 {
3314 warning (_("Section .debug_aranges in %s entry at offset %zu "
3315 "address_size %u is invalid, ignoring .debug_aranges."),
3316 objfile_name (objfile), entry_addr - section->buffer,
3317 address_size);
3318 return;
3319 }
3320
3321 const uint8_t segment_selector_size = *addr++;
3322 if (segment_selector_size != 0)
3323 {
3324 warning (_("Section .debug_aranges in %s entry at offset %zu "
3325 "segment_selector_size %u is not supported, "
3326 "ignoring .debug_aranges."),
3327 objfile_name (objfile), entry_addr - section->buffer,
3328 segment_selector_size);
3329 return;
3330 }
3331
3332 /* Must pad to an alignment boundary that is twice the address
3333 size. It is undocumented by the DWARF standard but GCC does
3334 use it. */
3335 for (size_t padding = ((-(addr - section->buffer))
3336 & (2 * address_size - 1));
3337 padding > 0; padding--)
3338 if (*addr++ != 0)
3339 {
3340 warning (_("Section .debug_aranges in %s entry at offset %zu "
3341 "padding is not zero, ignoring .debug_aranges."),
3342 objfile_name (objfile), entry_addr - section->buffer);
3343 return;
3344 }
3345
3346 for (;;)
3347 {
3348 if (addr + 2 * address_size > entry_end)
3349 {
3350 warning (_("Section .debug_aranges in %s entry at offset %zu "
3351 "address list is not properly terminated, "
3352 "ignoring .debug_aranges."),
3353 objfile_name (objfile), entry_addr - section->buffer);
3354 return;
3355 }
3356 ULONGEST start = extract_unsigned_integer (addr, address_size,
3357 dwarf5_byte_order);
3358 addr += address_size;
3359 ULONGEST length = extract_unsigned_integer (addr, address_size,
3360 dwarf5_byte_order);
3361 addr += address_size;
3362 if (start == 0 && length == 0)
3363 break;
3364 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
3365 {
3366 /* Symbol was eliminated due to a COMDAT group. */
3367 continue;
3368 }
3369 ULONGEST end = start + length;
79748972
TT
3370 start = (gdbarch_adjust_dwarf2_addr (gdbarch, start + baseaddr)
3371 - baseaddr);
3372 end = (gdbarch_adjust_dwarf2_addr (gdbarch, end + baseaddr)
3373 - baseaddr);
927aa2e7
JK
3374 addrmap_set_empty (mutable_map, start, end - 1, per_cu);
3375 }
3376 }
3377
d320c2b5 3378 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 3379 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
927aa2e7
JK
3380}
3381
9291a0cd
TT
3382/* Find a slot in the mapped index INDEX for the object named NAME.
3383 If NAME is found, set *VEC_OUT to point to the CU vector in the
109483d9
PA
3384 constant pool and return true. If NAME cannot be found, return
3385 false. */
2fdf6df6 3386
109483d9 3387static bool
9291a0cd
TT
3388find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
3389 offset_type **vec_out)
3390{
0cf03b49 3391 offset_type hash;
9291a0cd 3392 offset_type slot, step;
559a7a62 3393 int (*cmp) (const char *, const char *);
9291a0cd 3394
791afaa2 3395 gdb::unique_xmalloc_ptr<char> without_params;
0cf03b49 3396 if (current_language->la_language == language_cplus
45280282
IB
3397 || current_language->la_language == language_fortran
3398 || current_language->la_language == language_d)
0cf03b49
JK
3399 {
3400 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
3401 not contain any. */
a8719064 3402
72998fb3 3403 if (strchr (name, '(') != NULL)
0cf03b49 3404 {
109483d9 3405 without_params = cp_remove_params (name);
0cf03b49 3406
72998fb3 3407 if (without_params != NULL)
791afaa2 3408 name = without_params.get ();
0cf03b49
JK
3409 }
3410 }
3411
559a7a62 3412 /* Index version 4 did not support case insensitive searches. But the
feea76c2 3413 indices for case insensitive languages are built in lowercase, therefore
559a7a62
JK
3414 simulate our NAME being searched is also lowercased. */
3415 hash = mapped_index_string_hash ((index->version == 4
3416 && case_sensitivity == case_sensitive_off
3417 ? 5 : index->version),
3418 name);
3419
f00a2de2
PA
3420 slot = hash & (index->symbol_table.size () - 1);
3421 step = ((hash * 17) & (index->symbol_table.size () - 1)) | 1;
559a7a62 3422 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
9291a0cd
TT
3423
3424 for (;;)
3425 {
9291a0cd 3426 const char *str;
f00a2de2
PA
3427
3428 const auto &bucket = index->symbol_table[slot];
3429 if (bucket.name == 0 && bucket.vec == 0)
109483d9 3430 return false;
9291a0cd 3431
f00a2de2 3432 str = index->constant_pool + MAYBE_SWAP (bucket.name);
559a7a62 3433 if (!cmp (name, str))
9291a0cd
TT
3434 {
3435 *vec_out = (offset_type *) (index->constant_pool
f00a2de2 3436 + MAYBE_SWAP (bucket.vec));
109483d9 3437 return true;
9291a0cd
TT
3438 }
3439
f00a2de2 3440 slot = (slot + step) & (index->symbol_table.size () - 1);
9291a0cd
TT
3441 }
3442}
3443
4485a1c1
SM
3444/* A helper function that reads the .gdb_index from BUFFER and fills
3445 in MAP. FILENAME is the name of the file containing the data;
d33bc52e 3446 it is used for error reporting. DEPRECATED_OK is true if it is
2ec9a5e0
TT
3447 ok to use deprecated sections.
3448
3449 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
3450 out parameters that are filled in with information about the CU and
3451 TU lists in the section.
3452
4485a1c1 3453 Returns true if all went well, false otherwise. */
2fdf6df6 3454
d33bc52e 3455static bool
4485a1c1
SM
3456read_gdb_index_from_buffer (struct objfile *objfile,
3457 const char *filename,
3458 bool deprecated_ok,
3459 gdb::array_view<const gdb_byte> buffer,
3460 struct mapped_index *map,
3461 const gdb_byte **cu_list,
3462 offset_type *cu_list_elements,
3463 const gdb_byte **types_list,
3464 offset_type *types_list_elements)
3465{
3466 const gdb_byte *addr = &buffer[0];
82430852 3467
9291a0cd 3468 /* Version check. */
4485a1c1 3469 offset_type version = MAYBE_SWAP (*(offset_type *) addr);
987d643c 3470 /* Versions earlier than 3 emitted every copy of a psymbol. This
a6e293d1 3471 causes the index to behave very poorly for certain requests. Version 3
831adc1f 3472 contained incomplete addrmap. So, it seems better to just ignore such
481860b3 3473 indices. */
831adc1f 3474 if (version < 4)
481860b3
GB
3475 {
3476 static int warning_printed = 0;
3477 if (!warning_printed)
3478 {
3479 warning (_("Skipping obsolete .gdb_index section in %s."),
2ec9a5e0 3480 filename);
481860b3
GB
3481 warning_printed = 1;
3482 }
3483 return 0;
3484 }
3485 /* Index version 4 uses a different hash function than index version
3486 5 and later.
3487
3488 Versions earlier than 6 did not emit psymbols for inlined
3489 functions. Using these files will cause GDB not to be able to
3490 set breakpoints on inlined functions by name, so we ignore these
e615022a
DE
3491 indices unless the user has done
3492 "set use-deprecated-index-sections on". */
2ec9a5e0 3493 if (version < 6 && !deprecated_ok)
481860b3
GB
3494 {
3495 static int warning_printed = 0;
3496 if (!warning_printed)
3497 {
e615022a
DE
3498 warning (_("\
3499Skipping deprecated .gdb_index section in %s.\n\
3500Do \"set use-deprecated-index-sections on\" before the file is read\n\
3501to use the section anyway."),
2ec9a5e0 3502 filename);
481860b3
GB
3503 warning_printed = 1;
3504 }
3505 return 0;
3506 }
796a7ff8 3507 /* Version 7 indices generated by gold refer to the CU for a symbol instead
8943b874
DE
3508 of the TU (for symbols coming from TUs),
3509 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3510 Plus gold-generated indices can have duplicate entries for global symbols,
3511 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3512 These are just performance bugs, and we can't distinguish gdb-generated
3513 indices from gold-generated ones, so issue no warning here. */
796a7ff8 3514
481860b3 3515 /* Indexes with higher version than the one supported by GDB may be no
594e8718 3516 longer backward compatible. */
796a7ff8 3517 if (version > 8)
594e8718 3518 return 0;
9291a0cd 3519
559a7a62 3520 map->version = version;
9291a0cd 3521
4485a1c1 3522 offset_type *metadata = (offset_type *) (addr + sizeof (offset_type));
1fd400ff 3523
4485a1c1 3524 int i = 0;
2ec9a5e0
TT
3525 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3526 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3527 / 8);
1fd400ff
TT
3528 ++i;
3529
2ec9a5e0
TT
3530 *types_list = addr + MAYBE_SWAP (metadata[i]);
3531 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3532 - MAYBE_SWAP (metadata[i]))
3533 / 8);
987d643c 3534 ++i;
1fd400ff 3535
f00a2de2
PA
3536 const gdb_byte *address_table = addr + MAYBE_SWAP (metadata[i]);
3537 const gdb_byte *address_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3538 map->address_table
3539 = gdb::array_view<const gdb_byte> (address_table, address_table_end);
1fd400ff
TT
3540 ++i;
3541
f00a2de2
PA
3542 const gdb_byte *symbol_table = addr + MAYBE_SWAP (metadata[i]);
3543 const gdb_byte *symbol_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3544 map->symbol_table
3545 = gdb::array_view<mapped_index::symbol_table_slot>
3546 ((mapped_index::symbol_table_slot *) symbol_table,
3547 (mapped_index::symbol_table_slot *) symbol_table_end);
9291a0cd 3548
f00a2de2 3549 ++i;
f9d83a0b 3550 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
1fd400ff 3551
2ec9a5e0
TT
3552 return 1;
3553}
3554
4485a1c1
SM
3555/* Callback types for dwarf2_read_gdb_index. */
3556
3557typedef gdb::function_view
3558 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_objfile *)>
3559 get_gdb_index_contents_ftype;
3560typedef gdb::function_view
3561 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
3562 get_gdb_index_contents_dwz_ftype;
3563
927aa2e7 3564/* Read .gdb_index. If everything went ok, initialize the "quick"
2ec9a5e0
TT
3565 elements of all the CUs and return 1. Otherwise, return 0. */
3566
3567static int
4485a1c1
SM
3568dwarf2_read_gdb_index
3569 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3570 get_gdb_index_contents_ftype get_gdb_index_contents,
3571 get_gdb_index_contents_dwz_ftype get_gdb_index_contents_dwz)
2ec9a5e0 3572{
2ec9a5e0
TT
3573 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3574 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
4db1a1dc 3575 struct dwz_file *dwz;
12359b5e 3576 struct objfile *objfile = dwarf2_per_objfile->objfile;
2ec9a5e0 3577
4485a1c1
SM
3578 gdb::array_view<const gdb_byte> main_index_contents
3579 = get_gdb_index_contents (objfile, dwarf2_per_objfile);
3580
3581 if (main_index_contents.empty ())
3582 return 0;
3583
3063847f 3584 std::unique_ptr<struct mapped_index> map (new struct mapped_index);
4485a1c1
SM
3585 if (!read_gdb_index_from_buffer (objfile, objfile_name (objfile),
3586 use_deprecated_index_sections,
3587 main_index_contents, map.get (), &cu_list,
3588 &cu_list_elements, &types_list,
3589 &types_list_elements))
2ec9a5e0
TT
3590 return 0;
3591
0fefef59 3592 /* Don't use the index if it's empty. */
3063847f 3593 if (map->symbol_table.empty ())
0fefef59
DE
3594 return 0;
3595
2ec9a5e0
TT
3596 /* If there is a .dwz file, read it so we can get its CU list as
3597 well. */
ed2dc618 3598 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
4db1a1dc 3599 if (dwz != NULL)
2ec9a5e0 3600 {
2ec9a5e0
TT
3601 struct mapped_index dwz_map;
3602 const gdb_byte *dwz_types_ignore;
3603 offset_type dwz_types_elements_ignore;
3604
4485a1c1
SM
3605 gdb::array_view<const gdb_byte> dwz_index_content
3606 = get_gdb_index_contents_dwz (objfile, dwz);
3607
3608 if (dwz_index_content.empty ())
3609 return 0;
3610
3611 if (!read_gdb_index_from_buffer (objfile,
3612 bfd_get_filename (dwz->dwz_bfd), 1,
3613 dwz_index_content, &dwz_map,
3614 &dwz_list, &dwz_list_elements,
3615 &dwz_types_ignore,
3616 &dwz_types_elements_ignore))
2ec9a5e0
TT
3617 {
3618 warning (_("could not read '.gdb_index' section from %s; skipping"),
3619 bfd_get_filename (dwz->dwz_bfd));
3620 return 0;
3621 }
3622 }
3623
12359b5e
SM
3624 create_cus_from_index (dwarf2_per_objfile, cu_list, cu_list_elements,
3625 dwz_list, dwz_list_elements);
1fd400ff 3626
8b70b953
TT
3627 if (types_list_elements)
3628 {
3629 struct dwarf2_section_info *section;
3630
3631 /* We can only handle a single .debug_types when we have an
3632 index. */
3633 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
3634 return 0;
3635
3636 section = VEC_index (dwarf2_section_info_def,
3637 dwarf2_per_objfile->types, 0);
3638
12359b5e
SM
3639 create_signatured_type_table_from_index (dwarf2_per_objfile, section,
3640 types_list, types_list_elements);
8b70b953 3641 }
9291a0cd 3642
3063847f 3643 create_addrmap_from_index (dwarf2_per_objfile, map.get ());
9291a0cd 3644
3063847f 3645 dwarf2_per_objfile->index_table = std::move (map);
9291a0cd 3646 dwarf2_per_objfile->using_index = 1;
7b9f3c50 3647 dwarf2_per_objfile->quick_file_names_table =
b76e467d 3648 create_quick_file_names_table (dwarf2_per_objfile->all_comp_units.size ());
9291a0cd
TT
3649
3650 return 1;
3651}
3652
dee91e82 3653/* die_reader_func for dw2_get_file_names. */
2fdf6df6 3654
dee91e82
DE
3655static void
3656dw2_get_file_names_reader (const struct die_reader_specs *reader,
d521ce57 3657 const gdb_byte *info_ptr,
dee91e82
DE
3658 struct die_info *comp_unit_die,
3659 int has_children,
3660 void *data)
9291a0cd 3661{
dee91e82 3662 struct dwarf2_cu *cu = reader->cu;
ed2dc618 3663 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
518817b3
SM
3664 struct dwarf2_per_objfile *dwarf2_per_objfile
3665 = cu->per_cu->dwarf2_per_objfile;
dee91e82 3666 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 3667 struct dwarf2_per_cu_data *lh_cu;
9291a0cd 3668 struct attribute *attr;
dee91e82 3669 int i;
7b9f3c50
DE
3670 void **slot;
3671 struct quick_file_names *qfn;
9291a0cd 3672
0186c6a7
DE
3673 gdb_assert (! this_cu->is_debug_types);
3674
07261596
TT
3675 /* Our callers never want to match partial units -- instead they
3676 will match the enclosing full CU. */
3677 if (comp_unit_die->tag == DW_TAG_partial_unit)
3678 {
3679 this_cu->v.quick->no_file_data = 1;
3680 return;
3681 }
3682
0186c6a7 3683 lh_cu = this_cu;
7b9f3c50 3684 slot = NULL;
dee91e82 3685
fff8551c 3686 line_header_up lh;
9c541725 3687 sect_offset line_offset {};
fff8551c 3688
dee91e82 3689 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
9291a0cd
TT
3690 if (attr)
3691 {
7b9f3c50
DE
3692 struct quick_file_names find_entry;
3693
9c541725 3694 line_offset = (sect_offset) DW_UNSND (attr);
7b9f3c50
DE
3695
3696 /* We may have already read in this line header (TU line header sharing).
3697 If we have we're done. */
094b34ac 3698 find_entry.hash.dwo_unit = cu->dwo_unit;
9c541725 3699 find_entry.hash.line_sect_off = line_offset;
7b9f3c50
DE
3700 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
3701 &find_entry, INSERT);
3702 if (*slot != NULL)
3703 {
9a3c8263 3704 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
dee91e82 3705 return;
7b9f3c50
DE
3706 }
3707
3019eac3 3708 lh = dwarf_decode_line_header (line_offset, cu);
9291a0cd
TT
3709 }
3710 if (lh == NULL)
3711 {
094b34ac 3712 lh_cu->v.quick->no_file_data = 1;
dee91e82 3713 return;
9291a0cd
TT
3714 }
3715
8d749320 3716 qfn = XOBNEW (&objfile->objfile_obstack, struct quick_file_names);
094b34ac 3717 qfn->hash.dwo_unit = cu->dwo_unit;
9c541725 3718 qfn->hash.line_sect_off = line_offset;
7b9f3c50
DE
3719 gdb_assert (slot != NULL);
3720 *slot = qfn;
9291a0cd 3721
d721ba37 3722 file_and_directory fnd = find_file_and_directory (comp_unit_die, cu);
9291a0cd 3723
fff8551c 3724 qfn->num_file_names = lh->file_names.size ();
8d749320 3725 qfn->file_names =
fff8551c
PA
3726 XOBNEWVEC (&objfile->objfile_obstack, const char *, lh->file_names.size ());
3727 for (i = 0; i < lh->file_names.size (); ++i)
3728 qfn->file_names[i] = file_full_name (i + 1, lh.get (), fnd.comp_dir);
7b9f3c50 3729 qfn->real_names = NULL;
9291a0cd 3730
094b34ac 3731 lh_cu->v.quick->file_names = qfn;
dee91e82
DE
3732}
3733
3734/* A helper for the "quick" functions which attempts to read the line
3735 table for THIS_CU. */
3736
3737static struct quick_file_names *
e4a48d9d 3738dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
dee91e82 3739{
0186c6a7
DE
3740 /* This should never be called for TUs. */
3741 gdb_assert (! this_cu->is_debug_types);
3742 /* Nor type unit groups. */
3743 gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
f4dc4d17 3744
dee91e82
DE
3745 if (this_cu->v.quick->file_names != NULL)
3746 return this_cu->v.quick->file_names;
3747 /* If we know there is no line data, no point in looking again. */
3748 if (this_cu->v.quick->no_file_data)
3749 return NULL;
3750
0186c6a7 3751 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
dee91e82
DE
3752
3753 if (this_cu->v.quick->no_file_data)
3754 return NULL;
3755 return this_cu->v.quick->file_names;
9291a0cd
TT
3756}
3757
3758/* A helper for the "quick" functions which computes and caches the
7b9f3c50 3759 real path for a given file name from the line table. */
2fdf6df6 3760
9291a0cd 3761static const char *
7b9f3c50
DE
3762dw2_get_real_path (struct objfile *objfile,
3763 struct quick_file_names *qfn, int index)
9291a0cd 3764{
7b9f3c50
DE
3765 if (qfn->real_names == NULL)
3766 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
26f2dc30 3767 qfn->num_file_names, const char *);
9291a0cd 3768
7b9f3c50 3769 if (qfn->real_names[index] == NULL)
14278e1f 3770 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]).release ();
9291a0cd 3771
7b9f3c50 3772 return qfn->real_names[index];
9291a0cd
TT
3773}
3774
3775static struct symtab *
3776dw2_find_last_source_symtab (struct objfile *objfile)
3777{
ed2dc618
SM
3778 struct dwarf2_per_objfile *dwarf2_per_objfile
3779 = get_dwarf2_per_objfile (objfile);
b76e467d 3780 dwarf2_per_cu_data *dwarf_cu = dwarf2_per_objfile->all_comp_units.back ();
58f0c718 3781 compunit_symtab *cust = dw2_instantiate_symtab (dwarf_cu, false);
ae2de4f8 3782
43f3e411
DE
3783 if (cust == NULL)
3784 return NULL;
ed2dc618 3785
43f3e411 3786 return compunit_primary_filetab (cust);
9291a0cd
TT
3787}
3788
7b9f3c50
DE
3789/* Traversal function for dw2_forget_cached_source_info. */
3790
3791static int
3792dw2_free_cached_file_names (void **slot, void *info)
9291a0cd 3793{
7b9f3c50 3794 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
9291a0cd 3795
7b9f3c50 3796 if (file_data->real_names)
9291a0cd 3797 {
7b9f3c50 3798 int i;
9291a0cd 3799
7b9f3c50 3800 for (i = 0; i < file_data->num_file_names; ++i)
9291a0cd 3801 {
7b9f3c50
DE
3802 xfree ((void*) file_data->real_names[i]);
3803 file_data->real_names[i] = NULL;
9291a0cd
TT
3804 }
3805 }
7b9f3c50
DE
3806
3807 return 1;
3808}
3809
3810static void
3811dw2_forget_cached_source_info (struct objfile *objfile)
3812{
ed2dc618
SM
3813 struct dwarf2_per_objfile *dwarf2_per_objfile
3814 = get_dwarf2_per_objfile (objfile);
7b9f3c50
DE
3815
3816 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3817 dw2_free_cached_file_names, NULL);
9291a0cd
TT
3818}
3819
f8eba3c6
TT
3820/* Helper function for dw2_map_symtabs_matching_filename that expands
3821 the symtabs and calls the iterator. */
3822
3823static int
3824dw2_map_expand_apply (struct objfile *objfile,
3825 struct dwarf2_per_cu_data *per_cu,
f5b95b50 3826 const char *name, const char *real_path,
14bc53a8 3827 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 3828{
43f3e411 3829 struct compunit_symtab *last_made = objfile->compunit_symtabs;
f8eba3c6
TT
3830
3831 /* Don't visit already-expanded CUs. */
43f3e411 3832 if (per_cu->v.quick->compunit_symtab)
f8eba3c6
TT
3833 return 0;
3834
3835 /* This may expand more than one symtab, and we want to iterate over
3836 all of them. */
58f0c718 3837 dw2_instantiate_symtab (per_cu, false);
f8eba3c6 3838
14bc53a8
PA
3839 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
3840 last_made, callback);
f8eba3c6
TT
3841}
3842
3843/* Implementation of the map_symtabs_matching_filename method. */
3844
14bc53a8
PA
3845static bool
3846dw2_map_symtabs_matching_filename
3847 (struct objfile *objfile, const char *name, const char *real_path,
3848 gdb::function_view<bool (symtab *)> callback)
9291a0cd 3849{
c011a4f4 3850 const char *name_basename = lbasename (name);
ed2dc618
SM
3851 struct dwarf2_per_objfile *dwarf2_per_objfile
3852 = get_dwarf2_per_objfile (objfile);
ae2de4f8 3853
848e3e78
DE
3854 /* The rule is CUs specify all the files, including those used by
3855 any TU, so there's no need to scan TUs here. */
f4dc4d17 3856
b76e467d 3857 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
9291a0cd 3858 {
3d7bb9d9 3859 /* We only need to look at symtabs not already expanded. */
43f3e411 3860 if (per_cu->v.quick->compunit_symtab)
9291a0cd
TT
3861 continue;
3862
b76e467d 3863 quick_file_names *file_data = dw2_get_file_names (per_cu);
7b9f3c50 3864 if (file_data == NULL)
9291a0cd
TT
3865 continue;
3866
b76e467d 3867 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3868 {
7b9f3c50 3869 const char *this_name = file_data->file_names[j];
da235a7c 3870 const char *this_real_name;
9291a0cd 3871
af529f8f 3872 if (compare_filenames_for_search (this_name, name))
9291a0cd 3873 {
f5b95b50 3874 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3875 callback))
3876 return true;
288e77a7 3877 continue;
4aac40c8 3878 }
9291a0cd 3879
c011a4f4
DE
3880 /* Before we invoke realpath, which can get expensive when many
3881 files are involved, do a quick comparison of the basenames. */
3882 if (! basenames_may_differ
3883 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3884 continue;
3885
da235a7c
JK
3886 this_real_name = dw2_get_real_path (objfile, file_data, j);
3887 if (compare_filenames_for_search (this_real_name, name))
9291a0cd 3888 {
da235a7c 3889 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3890 callback))
3891 return true;
288e77a7 3892 continue;
da235a7c 3893 }
9291a0cd 3894
da235a7c
JK
3895 if (real_path != NULL)
3896 {
af529f8f
JK
3897 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3898 gdb_assert (IS_ABSOLUTE_PATH (name));
7b9f3c50 3899 if (this_real_name != NULL
af529f8f 3900 && FILENAME_CMP (real_path, this_real_name) == 0)
9291a0cd 3901 {
f5b95b50 3902 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3903 callback))
3904 return true;
288e77a7 3905 continue;
9291a0cd
TT
3906 }
3907 }
3908 }
3909 }
3910
14bc53a8 3911 return false;
9291a0cd
TT
3912}
3913
da51c347
DE
3914/* Struct used to manage iterating over all CUs looking for a symbol. */
3915
3916struct dw2_symtab_iterator
9291a0cd 3917{
ed2dc618
SM
3918 /* The dwarf2_per_objfile owning the CUs we are iterating on. */
3919 struct dwarf2_per_objfile *dwarf2_per_objfile;
da51c347
DE
3920 /* If non-zero, only look for symbols that match BLOCK_INDEX. */
3921 int want_specific_block;
3922 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3923 Unused if !WANT_SPECIFIC_BLOCK. */
3924 int block_index;
3925 /* The kind of symbol we're looking for. */
3926 domain_enum domain;
3927 /* The list of CUs from the index entry of the symbol,
3928 or NULL if not found. */
3929 offset_type *vec;
3930 /* The next element in VEC to look at. */
3931 int next;
3932 /* The number of elements in VEC, or zero if there is no match. */
3933 int length;
8943b874
DE
3934 /* Have we seen a global version of the symbol?
3935 If so we can ignore all further global instances.
3936 This is to work around gold/15646, inefficient gold-generated
3937 indices. */
3938 int global_seen;
da51c347 3939};
9291a0cd 3940
da51c347
DE
3941/* Initialize the index symtab iterator ITER.
3942 If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3943 in block BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
2fdf6df6 3944
9291a0cd 3945static void
da51c347 3946dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
ed2dc618 3947 struct dwarf2_per_objfile *dwarf2_per_objfile,
da51c347
DE
3948 int want_specific_block,
3949 int block_index,
3950 domain_enum domain,
3951 const char *name)
3952{
ed2dc618 3953 iter->dwarf2_per_objfile = dwarf2_per_objfile;
da51c347
DE
3954 iter->want_specific_block = want_specific_block;
3955 iter->block_index = block_index;
3956 iter->domain = domain;
3957 iter->next = 0;
8943b874 3958 iter->global_seen = 0;
da51c347 3959
3063847f 3960 mapped_index *index = dwarf2_per_objfile->index_table.get ();
ed2dc618
SM
3961
3962 /* index is NULL if OBJF_READNOW. */
3963 if (index != NULL && find_slot_in_mapped_hash (index, name, &iter->vec))
da51c347
DE
3964 iter->length = MAYBE_SWAP (*iter->vec);
3965 else
3966 {
3967 iter->vec = NULL;
3968 iter->length = 0;
3969 }
3970}
3971
3972/* Return the next matching CU or NULL if there are no more. */
3973
3974static struct dwarf2_per_cu_data *
3975dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3976{
ed2dc618
SM
3977 struct dwarf2_per_objfile *dwarf2_per_objfile = iter->dwarf2_per_objfile;
3978
da51c347
DE
3979 for ( ; iter->next < iter->length; ++iter->next)
3980 {
3981 offset_type cu_index_and_attrs =
3982 MAYBE_SWAP (iter->vec[iter->next + 1]);
3983 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
da51c347
DE
3984 int want_static = iter->block_index != GLOBAL_BLOCK;
3985 /* This value is only valid for index versions >= 7. */
3986 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3987 gdb_index_symbol_kind symbol_kind =
3988 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3989 /* Only check the symbol attributes if they're present.
3990 Indices prior to version 7 don't record them,
3991 and indices >= 7 may elide them for certain symbols
3992 (gold does this). */
3993 int attrs_valid =
ed2dc618 3994 (dwarf2_per_objfile->index_table->version >= 7
da51c347
DE
3995 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3996
3190f0c6 3997 /* Don't crash on bad data. */
b76e467d 3998 if (cu_index >= (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 3999 + dwarf2_per_objfile->all_type_units.size ()))
3190f0c6 4000 {
b98664d3 4001 complaint (_(".gdb_index entry has bad CU index"
4262abfb
JK
4002 " [in module %s]"),
4003 objfile_name (dwarf2_per_objfile->objfile));
3190f0c6
DE
4004 continue;
4005 }
4006
ff4c9fec 4007 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (cu_index);
3190f0c6 4008
da51c347 4009 /* Skip if already read in. */
43f3e411 4010 if (per_cu->v.quick->compunit_symtab)
da51c347
DE
4011 continue;
4012
8943b874
DE
4013 /* Check static vs global. */
4014 if (attrs_valid)
4015 {
4016 if (iter->want_specific_block
4017 && want_static != is_static)
4018 continue;
4019 /* Work around gold/15646. */
4020 if (!is_static && iter->global_seen)
4021 continue;
4022 if (!is_static)
4023 iter->global_seen = 1;
4024 }
da51c347
DE
4025
4026 /* Only check the symbol's kind if it has one. */
4027 if (attrs_valid)
4028 {
4029 switch (iter->domain)
4030 {
4031 case VAR_DOMAIN:
4032 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
4033 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
4034 /* Some types are also in VAR_DOMAIN. */
4035 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4036 continue;
4037 break;
4038 case STRUCT_DOMAIN:
4039 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4040 continue;
4041 break;
4042 case LABEL_DOMAIN:
4043 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
4044 continue;
4045 break;
4046 default:
4047 break;
4048 }
4049 }
4050
4051 ++iter->next;
4052 return per_cu;
4053 }
4054
4055 return NULL;
4056}
4057
43f3e411 4058static struct compunit_symtab *
da51c347
DE
4059dw2_lookup_symbol (struct objfile *objfile, int block_index,
4060 const char *name, domain_enum domain)
9291a0cd 4061{
43f3e411 4062 struct compunit_symtab *stab_best = NULL;
ed2dc618
SM
4063 struct dwarf2_per_objfile *dwarf2_per_objfile
4064 = get_dwarf2_per_objfile (objfile);
9291a0cd 4065
b5ec771e
PA
4066 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
4067
ed2dc618
SM
4068 struct dw2_symtab_iterator iter;
4069 struct dwarf2_per_cu_data *per_cu;
da51c347 4070
ed2dc618 4071 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 1, block_index, domain, name);
9291a0cd 4072
ed2dc618
SM
4073 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
4074 {
4075 struct symbol *sym, *with_opaque = NULL;
58f0c718 4076 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu, false);
ed2dc618 4077 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 4078 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
da51c347 4079
ed2dc618
SM
4080 sym = block_find_symbol (block, name, domain,
4081 block_find_non_opaque_type_preferred,
4082 &with_opaque);
b2e2f908 4083
ed2dc618
SM
4084 /* Some caution must be observed with overloaded functions
4085 and methods, since the index will not contain any overload
4086 information (but NAME might contain it). */
da51c347 4087
ed2dc618
SM
4088 if (sym != NULL
4089 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
4090 return stab;
4091 if (with_opaque != NULL
4092 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
4093 stab_best = stab;
da51c347 4094
ed2dc618 4095 /* Keep looking through other CUs. */
9291a0cd 4096 }
9291a0cd 4097
da51c347 4098 return stab_best;
9291a0cd
TT
4099}
4100
4101static void
4102dw2_print_stats (struct objfile *objfile)
4103{
ed2dc618
SM
4104 struct dwarf2_per_objfile *dwarf2_per_objfile
4105 = get_dwarf2_per_objfile (objfile);
b76e467d 4106 int total = (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 4107 + dwarf2_per_objfile->all_type_units.size ());
ed2dc618 4108 int count = 0;
9291a0cd 4109
ed2dc618 4110 for (int i = 0; i < total; ++i)
9291a0cd 4111 {
ff4c9fec 4112 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 4113
43f3e411 4114 if (!per_cu->v.quick->compunit_symtab)
9291a0cd
TT
4115 ++count;
4116 }
e4a48d9d 4117 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
9291a0cd
TT
4118 printf_filtered (_(" Number of unread CUs: %d\n"), count);
4119}
4120
779bd270
DE
4121/* This dumps minimal information about the index.
4122 It is called via "mt print objfiles".
4123 One use is to verify .gdb_index has been loaded by the
4124 gdb.dwarf2/gdb-index.exp testcase. */
4125
9291a0cd
TT
4126static void
4127dw2_dump (struct objfile *objfile)
4128{
ed2dc618
SM
4129 struct dwarf2_per_objfile *dwarf2_per_objfile
4130 = get_dwarf2_per_objfile (objfile);
4131
779bd270
DE
4132 gdb_assert (dwarf2_per_objfile->using_index);
4133 printf_filtered (".gdb_index:");
4134 if (dwarf2_per_objfile->index_table != NULL)
4135 {
4136 printf_filtered (" version %d\n",
4137 dwarf2_per_objfile->index_table->version);
4138 }
4139 else
4140 printf_filtered (" faked for \"readnow\"\n");
4141 printf_filtered ("\n");
9291a0cd
TT
4142}
4143
9291a0cd
TT
4144static void
4145dw2_expand_symtabs_for_function (struct objfile *objfile,
4146 const char *func_name)
4147{
ed2dc618
SM
4148 struct dwarf2_per_objfile *dwarf2_per_objfile
4149 = get_dwarf2_per_objfile (objfile);
da51c347 4150
ed2dc618
SM
4151 struct dw2_symtab_iterator iter;
4152 struct dwarf2_per_cu_data *per_cu;
da51c347 4153
ed2dc618
SM
4154 /* Note: It doesn't matter what we pass for block_index here. */
4155 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 0, GLOBAL_BLOCK, VAR_DOMAIN,
4156 func_name);
da51c347 4157
ed2dc618 4158 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
58f0c718 4159 dw2_instantiate_symtab (per_cu, false);
da51c347 4160
9291a0cd
TT
4161}
4162
4163static void
4164dw2_expand_all_symtabs (struct objfile *objfile)
4165{
ed2dc618
SM
4166 struct dwarf2_per_objfile *dwarf2_per_objfile
4167 = get_dwarf2_per_objfile (objfile);
b76e467d 4168 int total_units = (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 4169 + dwarf2_per_objfile->all_type_units.size ());
9291a0cd 4170
ed2dc618 4171 for (int i = 0; i < total_units; ++i)
9291a0cd 4172 {
ff4c9fec 4173 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 4174
58f0c718
TT
4175 /* We don't want to directly expand a partial CU, because if we
4176 read it with the wrong language, then assertion failures can
4177 be triggered later on. See PR symtab/23010. So, tell
4178 dw2_instantiate_symtab to skip partial CUs -- any important
4179 partial CU will be read via DW_TAG_imported_unit anyway. */
4180 dw2_instantiate_symtab (per_cu, true);
9291a0cd
TT
4181 }
4182}
4183
4184static void
652a8996
JK
4185dw2_expand_symtabs_with_fullname (struct objfile *objfile,
4186 const char *fullname)
9291a0cd 4187{
ed2dc618
SM
4188 struct dwarf2_per_objfile *dwarf2_per_objfile
4189 = get_dwarf2_per_objfile (objfile);
d4637a04
DE
4190
4191 /* We don't need to consider type units here.
4192 This is only called for examining code, e.g. expand_line_sal.
4193 There can be an order of magnitude (or more) more type units
4194 than comp units, and we avoid them if we can. */
4195
b76e467d 4196 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
9291a0cd 4197 {
3d7bb9d9 4198 /* We only need to look at symtabs not already expanded. */
43f3e411 4199 if (per_cu->v.quick->compunit_symtab)
9291a0cd
TT
4200 continue;
4201
b76e467d 4202 quick_file_names *file_data = dw2_get_file_names (per_cu);
7b9f3c50 4203 if (file_data == NULL)
9291a0cd
TT
4204 continue;
4205
b76e467d 4206 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 4207 {
652a8996
JK
4208 const char *this_fullname = file_data->file_names[j];
4209
4210 if (filename_cmp (this_fullname, fullname) == 0)
9291a0cd 4211 {
58f0c718 4212 dw2_instantiate_symtab (per_cu, false);
9291a0cd
TT
4213 break;
4214 }
4215 }
4216 }
4217}
4218
9291a0cd 4219static void
ade7ed9e 4220dw2_map_matching_symbols (struct objfile *objfile,
fe978cb0 4221 const char * name, domain_enum domain,
ade7ed9e 4222 int global,
582942f4 4223 int (*callback) (const struct block *,
40658b94 4224 struct symbol *, void *),
b5ec771e 4225 void *data, symbol_name_match_type match,
2edb89d3 4226 symbol_compare_ftype *ordered_compare)
9291a0cd 4227{
40658b94 4228 /* Currently unimplemented; used for Ada. The function can be called if the
a9e6a4bb
JK
4229 current language is Ada for a non-Ada objfile using GNU index. As Ada
4230 does not look for non-Ada symbols this function should just return. */
9291a0cd
TT
4231}
4232
b5ec771e
PA
4233/* Symbol name matcher for .gdb_index names.
4234
4235 Symbol names in .gdb_index have a few particularities:
4236
4237 - There's no indication of which is the language of each symbol.
4238
4239 Since each language has its own symbol name matching algorithm,
4240 and we don't know which language is the right one, we must match
3f563c84
PA
4241 each symbol against all languages. This would be a potential
4242 performance problem if it were not mitigated by the
4243 mapped_index::name_components lookup table, which significantly
4244 reduces the number of times we need to call into this matcher,
4245 making it a non-issue.
b5ec771e
PA
4246
4247 - Symbol names in the index have no overload (parameter)
4248 information. I.e., in C++, "foo(int)" and "foo(long)" both
4249 appear as "foo" in the index, for example.
4250
4251 This means that the lookup names passed to the symbol name
4252 matcher functions must have no parameter information either
4253 because (e.g.) symbol search name "foo" does not match
4254 lookup-name "foo(int)" [while swapping search name for lookup
4255 name would match].
4256*/
4257class gdb_index_symbol_name_matcher
4258{
4259public:
4260 /* Prepares the vector of comparison functions for LOOKUP_NAME. */
4261 gdb_index_symbol_name_matcher (const lookup_name_info &lookup_name);
4262
4263 /* Walk all the matcher routines and match SYMBOL_NAME against them.
4264 Returns true if any matcher matches. */
4265 bool matches (const char *symbol_name);
4266
4267private:
4268 /* A reference to the lookup name we're matching against. */
4269 const lookup_name_info &m_lookup_name;
4270
4271 /* A vector holding all the different symbol name matchers, for all
4272 languages. */
4273 std::vector<symbol_name_matcher_ftype *> m_symbol_name_matcher_funcs;
4274};
4275
4276gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher
4277 (const lookup_name_info &lookup_name)
4278 : m_lookup_name (lookup_name)
4279{
4280 /* Prepare the vector of comparison functions upfront, to avoid
4281 doing the same work for each symbol. Care is taken to avoid
4282 matching with the same matcher more than once if/when multiple
4283 languages use the same matcher function. */
4284 auto &matchers = m_symbol_name_matcher_funcs;
4285 matchers.reserve (nr_languages);
4286
4287 matchers.push_back (default_symbol_name_matcher);
4288
4289 for (int i = 0; i < nr_languages; i++)
4290 {
4291 const language_defn *lang = language_def ((enum language) i);
c63d3e8d 4292 symbol_name_matcher_ftype *name_matcher
618daa93 4293 = get_symbol_name_matcher (lang, m_lookup_name);
c63d3e8d
PA
4294
4295 /* Don't insert the same comparison routine more than once.
4296 Note that we do this linear walk instead of a seemingly
4297 cheaper sorted insert, or use a std::set or something like
4298 that, because relative order of function addresses is not
4299 stable. This is not a problem in practice because the number
4300 of supported languages is low, and the cost here is tiny
4301 compared to the number of searches we'll do afterwards using
4302 this object. */
4303 if (name_matcher != default_symbol_name_matcher
4304 && (std::find (matchers.begin (), matchers.end (), name_matcher)
4305 == matchers.end ()))
4306 matchers.push_back (name_matcher);
b5ec771e
PA
4307 }
4308}
4309
4310bool
4311gdb_index_symbol_name_matcher::matches (const char *symbol_name)
4312{
4313 for (auto matches_name : m_symbol_name_matcher_funcs)
4314 if (matches_name (symbol_name, m_lookup_name, NULL))
4315 return true;
4316
4317 return false;
4318}
4319
e1ef7d7a
PA
4320/* Starting from a search name, return the string that finds the upper
4321 bound of all strings that start with SEARCH_NAME in a sorted name
4322 list. Returns the empty string to indicate that the upper bound is
4323 the end of the list. */
4324
4325static std::string
4326make_sort_after_prefix_name (const char *search_name)
4327{
4328 /* When looking to complete "func", we find the upper bound of all
4329 symbols that start with "func" by looking for where we'd insert
4330 the closest string that would follow "func" in lexicographical
4331 order. Usually, that's "func"-with-last-character-incremented,
4332 i.e. "fund". Mind non-ASCII characters, though. Usually those
4333 will be UTF-8 multi-byte sequences, but we can't be certain.
4334 Especially mind the 0xff character, which is a valid character in
4335 non-UTF-8 source character sets (e.g. Latin1 'ÿ'), and we can't
4336 rule out compilers allowing it in identifiers. Note that
4337 conveniently, strcmp/strcasecmp are specified to compare
4338 characters interpreted as unsigned char. So what we do is treat
4339 the whole string as a base 256 number composed of a sequence of
4340 base 256 "digits" and add 1 to it. I.e., adding 1 to 0xff wraps
4341 to 0, and carries 1 to the following more-significant position.
4342 If the very first character in SEARCH_NAME ends up incremented
4343 and carries/overflows, then the upper bound is the end of the
4344 list. The string after the empty string is also the empty
4345 string.
4346
4347 Some examples of this operation:
4348
4349 SEARCH_NAME => "+1" RESULT
4350
4351 "abc" => "abd"
4352 "ab\xff" => "ac"
4353 "\xff" "a" "\xff" => "\xff" "b"
4354 "\xff" => ""
4355 "\xff\xff" => ""
4356 "" => ""
4357
4358 Then, with these symbols for example:
4359
4360 func
4361 func1
4362 fund
4363
4364 completing "func" looks for symbols between "func" and
4365 "func"-with-last-character-incremented, i.e. "fund" (exclusive),
4366 which finds "func" and "func1", but not "fund".
4367
4368 And with:
4369
4370 funcÿ (Latin1 'ÿ' [0xff])
4371 funcÿ1
4372 fund
4373
4374 completing "funcÿ" looks for symbols between "funcÿ" and "fund"
4375 (exclusive), which finds "funcÿ" and "funcÿ1", but not "fund".
4376
4377 And with:
4378
4379 ÿÿ (Latin1 'ÿ' [0xff])
4380 ÿÿ1
4381
4382 completing "ÿ" or "ÿÿ" looks for symbols between between "ÿÿ" and
4383 the end of the list.
4384 */
4385 std::string after = search_name;
4386 while (!after.empty () && (unsigned char) after.back () == 0xff)
4387 after.pop_back ();
4388 if (!after.empty ())
4389 after.back () = (unsigned char) after.back () + 1;
4390 return after;
4391}
4392
5c58de74 4393/* See declaration. */
61d96d7e 4394
5c58de74
PA
4395std::pair<std::vector<name_component>::const_iterator,
4396 std::vector<name_component>::const_iterator>
44ed8f3e 4397mapped_index_base::find_name_components_bounds
5c58de74 4398 (const lookup_name_info &lookup_name_without_params) const
3f563c84 4399{
5c58de74
PA
4400 auto *name_cmp
4401 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3f563c84
PA
4402
4403 const char *cplus
c62446b1 4404 = lookup_name_without_params.cplus ().lookup_name ().c_str ();
9291a0cd 4405
3f563c84
PA
4406 /* Comparison function object for lower_bound that matches against a
4407 given symbol name. */
4408 auto lookup_compare_lower = [&] (const name_component &elem,
4409 const char *name)
4410 {
5c58de74 4411 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
4412 const char *elem_name = elem_qualified + elem.name_offset;
4413 return name_cmp (elem_name, name) < 0;
4414 };
4415
4416 /* Comparison function object for upper_bound that matches against a
4417 given symbol name. */
4418 auto lookup_compare_upper = [&] (const char *name,
4419 const name_component &elem)
4420 {
5c58de74 4421 const char *elem_qualified = this->symbol_name_at (elem.idx);
3f563c84
PA
4422 const char *elem_name = elem_qualified + elem.name_offset;
4423 return name_cmp (name, elem_name) < 0;
4424 };
4425
5c58de74
PA
4426 auto begin = this->name_components.begin ();
4427 auto end = this->name_components.end ();
3f563c84
PA
4428
4429 /* Find the lower bound. */
4430 auto lower = [&] ()
4431 {
5c58de74 4432 if (lookup_name_without_params.completion_mode () && cplus[0] == '\0')
3f563c84
PA
4433 return begin;
4434 else
4435 return std::lower_bound (begin, end, cplus, lookup_compare_lower);
4436 } ();
4437
4438 /* Find the upper bound. */
4439 auto upper = [&] ()
4440 {
5c58de74 4441 if (lookup_name_without_params.completion_mode ())
3f563c84 4442 {
e1ef7d7a
PA
4443 /* In completion mode, we want UPPER to point past all
4444 symbols names that have the same prefix. I.e., with
4445 these symbols, and completing "func":
4446
4447 function << lower bound
4448 function1
4449 other_function << upper bound
4450
4451 We find the upper bound by looking for the insertion
4452 point of "func"-with-last-character-incremented,
4453 i.e. "fund". */
4454 std::string after = make_sort_after_prefix_name (cplus);
4455 if (after.empty ())
3f563c84 4456 return end;
e6b2f5ef
PA
4457 return std::lower_bound (lower, end, after.c_str (),
4458 lookup_compare_lower);
3f563c84
PA
4459 }
4460 else
4461 return std::upper_bound (lower, end, cplus, lookup_compare_upper);
4462 } ();
4463
5c58de74
PA
4464 return {lower, upper};
4465}
4466
4467/* See declaration. */
4468
4469void
44ed8f3e 4470mapped_index_base::build_name_components ()
5c58de74
PA
4471{
4472 if (!this->name_components.empty ())
4473 return;
4474
4475 this->name_components_casing = case_sensitivity;
4476 auto *name_cmp
4477 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
4478
4479 /* The code below only knows how to break apart components of C++
4480 symbol names (and other languages that use '::' as
4481 namespace/module separator). If we add support for wild matching
4482 to some language that uses some other operator (E.g., Ada, Go and
4483 D use '.'), then we'll need to try splitting the symbol name
4484 according to that language too. Note that Ada does support wild
4485 matching, but doesn't currently support .gdb_index. */
44ed8f3e
PA
4486 auto count = this->symbol_name_count ();
4487 for (offset_type idx = 0; idx < count; idx++)
5c58de74 4488 {
44ed8f3e 4489 if (this->symbol_name_slot_invalid (idx))
5c58de74
PA
4490 continue;
4491
4492 const char *name = this->symbol_name_at (idx);
4493
4494 /* Add each name component to the name component table. */
4495 unsigned int previous_len = 0;
4496 for (unsigned int current_len = cp_find_first_component (name);
4497 name[current_len] != '\0';
4498 current_len += cp_find_first_component (name + current_len))
4499 {
4500 gdb_assert (name[current_len] == ':');
4501 this->name_components.push_back ({previous_len, idx});
4502 /* Skip the '::'. */
4503 current_len += 2;
4504 previous_len = current_len;
4505 }
4506 this->name_components.push_back ({previous_len, idx});
4507 }
4508
4509 /* Sort name_components elements by name. */
4510 auto name_comp_compare = [&] (const name_component &left,
4511 const name_component &right)
4512 {
4513 const char *left_qualified = this->symbol_name_at (left.idx);
4514 const char *right_qualified = this->symbol_name_at (right.idx);
4515
4516 const char *left_name = left_qualified + left.name_offset;
4517 const char *right_name = right_qualified + right.name_offset;
4518
4519 return name_cmp (left_name, right_name) < 0;
4520 };
4521
4522 std::sort (this->name_components.begin (),
4523 this->name_components.end (),
4524 name_comp_compare);
4525}
4526
4527/* Helper for dw2_expand_symtabs_matching that works with a
44ed8f3e
PA
4528 mapped_index_base instead of the containing objfile. This is split
4529 to a separate function in order to be able to unit test the
4530 name_components matching using a mock mapped_index_base. For each
5c58de74 4531 symbol name that matches, calls MATCH_CALLBACK, passing it the
44ed8f3e 4532 symbol's index in the mapped_index_base symbol table. */
5c58de74
PA
4533
4534static void
4535dw2_expand_symtabs_matching_symbol
44ed8f3e 4536 (mapped_index_base &index,
5c58de74
PA
4537 const lookup_name_info &lookup_name_in,
4538 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4539 enum search_domain kind,
4540 gdb::function_view<void (offset_type)> match_callback)
4541{
4542 lookup_name_info lookup_name_without_params
4543 = lookup_name_in.make_ignore_params ();
4544 gdb_index_symbol_name_matcher lookup_name_matcher
4545 (lookup_name_without_params);
4546
4547 /* Build the symbol name component sorted vector, if we haven't
4548 yet. */
4549 index.build_name_components ();
4550
4551 auto bounds = index.find_name_components_bounds (lookup_name_without_params);
4552
3f563c84
PA
4553 /* Now for each symbol name in range, check to see if we have a name
4554 match, and if so, call the MATCH_CALLBACK callback. */
4555
4556 /* The same symbol may appear more than once in the range though.
4557 E.g., if we're looking for symbols that complete "w", and we have
4558 a symbol named "w1::w2", we'll find the two name components for
4559 that same symbol in the range. To be sure we only call the
4560 callback once per symbol, we first collect the symbol name
4561 indexes that matched in a temporary vector and ignore
4562 duplicates. */
4563 std::vector<offset_type> matches;
5c58de74 4564 matches.reserve (std::distance (bounds.first, bounds.second));
3f563c84 4565
5c58de74 4566 for (; bounds.first != bounds.second; ++bounds.first)
3f563c84 4567 {
5c58de74 4568 const char *qualified = index.symbol_name_at (bounds.first->idx);
3f563c84
PA
4569
4570 if (!lookup_name_matcher.matches (qualified)
4571 || (symbol_matcher != NULL && !symbol_matcher (qualified)))
9291a0cd
TT
4572 continue;
4573
5c58de74 4574 matches.push_back (bounds.first->idx);
3f563c84
PA
4575 }
4576
4577 std::sort (matches.begin (), matches.end ());
4578
4579 /* Finally call the callback, once per match. */
4580 ULONGEST prev = -1;
4581 for (offset_type idx : matches)
4582 {
4583 if (prev != idx)
4584 {
4585 match_callback (idx);
4586 prev = idx;
4587 }
4588 }
4589
4590 /* Above we use a type wider than idx's for 'prev', since 0 and
4591 (offset_type)-1 are both possible values. */
4592 static_assert (sizeof (prev) > sizeof (offset_type), "");
4593}
4594
c62446b1
PA
4595#if GDB_SELF_TEST
4596
4597namespace selftests { namespace dw2_expand_symtabs_matching {
4598
a3c5fafd
PA
4599/* A mock .gdb_index/.debug_names-like name index table, enough to
4600 exercise dw2_expand_symtabs_matching_symbol, which works with the
4601 mapped_index_base interface. Builds an index from the symbol list
4602 passed as parameter to the constructor. */
4603class mock_mapped_index : public mapped_index_base
c62446b1
PA
4604{
4605public:
a3c5fafd
PA
4606 mock_mapped_index (gdb::array_view<const char *> symbols)
4607 : m_symbol_table (symbols)
c62446b1
PA
4608 {}
4609
a3c5fafd 4610 DISABLE_COPY_AND_ASSIGN (mock_mapped_index);
c62446b1 4611
a3c5fafd 4612 /* Return the number of names in the symbol table. */
632e107b 4613 size_t symbol_name_count () const override
c62446b1 4614 {
a3c5fafd 4615 return m_symbol_table.size ();
c62446b1
PA
4616 }
4617
a3c5fafd 4618 /* Get the name of the symbol at IDX in the symbol table. */
632e107b 4619 const char *symbol_name_at (offset_type idx) const override
a3c5fafd
PA
4620 {
4621 return m_symbol_table[idx];
4622 }
c62446b1 4623
a3c5fafd
PA
4624private:
4625 gdb::array_view<const char *> m_symbol_table;
c62446b1
PA
4626};
4627
4628/* Convenience function that converts a NULL pointer to a "<null>"
4629 string, to pass to print routines. */
4630
4631static const char *
4632string_or_null (const char *str)
4633{
4634 return str != NULL ? str : "<null>";
4635}
4636
4637/* Check if a lookup_name_info built from
4638 NAME/MATCH_TYPE/COMPLETION_MODE matches the symbols in the mock
4639 index. EXPECTED_LIST is the list of expected matches, in expected
4640 matching order. If no match expected, then an empty list is
4641 specified. Returns true on success. On failure prints a warning
4642 indicating the file:line that failed, and returns false. */
4643
4644static bool
4645check_match (const char *file, int line,
4646 mock_mapped_index &mock_index,
4647 const char *name, symbol_name_match_type match_type,
4648 bool completion_mode,
4649 std::initializer_list<const char *> expected_list)
4650{
4651 lookup_name_info lookup_name (name, match_type, completion_mode);
4652
4653 bool matched = true;
4654
4655 auto mismatch = [&] (const char *expected_str,
4656 const char *got)
4657 {
4658 warning (_("%s:%d: match_type=%s, looking-for=\"%s\", "
4659 "expected=\"%s\", got=\"%s\"\n"),
4660 file, line,
4661 (match_type == symbol_name_match_type::FULL
4662 ? "FULL" : "WILD"),
4663 name, string_or_null (expected_str), string_or_null (got));
4664 matched = false;
4665 };
4666
4667 auto expected_it = expected_list.begin ();
4668 auto expected_end = expected_list.end ();
4669
a3c5fafd 4670 dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
c62446b1
PA
4671 NULL, ALL_DOMAIN,
4672 [&] (offset_type idx)
4673 {
a3c5fafd 4674 const char *matched_name = mock_index.symbol_name_at (idx);
c62446b1
PA
4675 const char *expected_str
4676 = expected_it == expected_end ? NULL : *expected_it++;
4677
4678 if (expected_str == NULL || strcmp (expected_str, matched_name) != 0)
4679 mismatch (expected_str, matched_name);
4680 });
4681
4682 const char *expected_str
4683 = expected_it == expected_end ? NULL : *expected_it++;
4684 if (expected_str != NULL)
4685 mismatch (expected_str, NULL);
4686
4687 return matched;
4688}
4689
4690/* The symbols added to the mock mapped_index for testing (in
4691 canonical form). */
4692static const char *test_symbols[] = {
4693 "function",
4694 "std::bar",
4695 "std::zfunction",
4696 "std::zfunction2",
4697 "w1::w2",
4698 "ns::foo<char*>",
4699 "ns::foo<int>",
4700 "ns::foo<long>",
a20714ff
PA
4701 "ns2::tmpl<int>::foo2",
4702 "(anonymous namespace)::A::B::C",
c62446b1 4703
e1ef7d7a
PA
4704 /* These are used to check that the increment-last-char in the
4705 matching algorithm for completion doesn't match "t1_fund" when
4706 completing "t1_func". */
4707 "t1_func",
4708 "t1_func1",
4709 "t1_fund",
4710 "t1_fund1",
4711
4712 /* A UTF-8 name with multi-byte sequences to make sure that
4713 cp-name-parser understands this as a single identifier ("função"
4714 is "function" in PT). */
4715 u8"u8função",
4716
4717 /* \377 (0xff) is Latin1 'ÿ'. */
4718 "yfunc\377",
4719
4720 /* \377 (0xff) is Latin1 'ÿ'. */
4721 "\377",
4722 "\377\377123",
4723
c62446b1
PA
4724 /* A name with all sorts of complications. Starts with "z" to make
4725 it easier for the completion tests below. */
4726#define Z_SYM_NAME \
4727 "z::std::tuple<(anonymous namespace)::ui*, std::bar<(anonymous namespace)::ui> >" \
4728 "::tuple<(anonymous namespace)::ui*, " \
4729 "std::default_delete<(anonymous namespace)::ui>, void>"
4730
4731 Z_SYM_NAME
4732};
4733
a3c5fafd
PA
4734/* Returns true if the mapped_index_base::find_name_component_bounds
4735 method finds EXPECTED_SYMS in INDEX when looking for SEARCH_NAME,
4736 in completion mode. */
5c58de74
PA
4737
4738static bool
a3c5fafd 4739check_find_bounds_finds (mapped_index_base &index,
5c58de74
PA
4740 const char *search_name,
4741 gdb::array_view<const char *> expected_syms)
4742{
4743 lookup_name_info lookup_name (search_name,
4744 symbol_name_match_type::FULL, true);
4745
4746 auto bounds = index.find_name_components_bounds (lookup_name);
4747
4748 size_t distance = std::distance (bounds.first, bounds.second);
4749 if (distance != expected_syms.size ())
4750 return false;
4751
4752 for (size_t exp_elem = 0; exp_elem < distance; exp_elem++)
4753 {
4754 auto nc_elem = bounds.first + exp_elem;
4755 const char *qualified = index.symbol_name_at (nc_elem->idx);
4756 if (strcmp (qualified, expected_syms[exp_elem]) != 0)
4757 return false;
4758 }
4759
4760 return true;
4761}
4762
4763/* Test the lower-level mapped_index::find_name_component_bounds
4764 method. */
4765
c62446b1 4766static void
5c58de74
PA
4767test_mapped_index_find_name_component_bounds ()
4768{
4769 mock_mapped_index mock_index (test_symbols);
4770
a3c5fafd 4771 mock_index.build_name_components ();
5c58de74
PA
4772
4773 /* Test the lower-level mapped_index::find_name_component_bounds
4774 method in completion mode. */
4775 {
4776 static const char *expected_syms[] = {
4777 "t1_func",
4778 "t1_func1",
5c58de74
PA
4779 };
4780
a3c5fafd 4781 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4782 "t1_func", expected_syms));
4783 }
4784
4785 /* Check that the increment-last-char in the name matching algorithm
4786 for completion doesn't get confused with Ansi1 'ÿ' / 0xff. */
4787 {
4788 static const char *expected_syms1[] = {
4789 "\377",
4790 "\377\377123",
4791 };
a3c5fafd 4792 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4793 "\377", expected_syms1));
4794
4795 static const char *expected_syms2[] = {
4796 "\377\377123",
4797 };
a3c5fafd 4798 SELF_CHECK (check_find_bounds_finds (mock_index,
5c58de74
PA
4799 "\377\377", expected_syms2));
4800 }
4801}
4802
4803/* Test dw2_expand_symtabs_matching_symbol. */
4804
4805static void
4806test_dw2_expand_symtabs_matching_symbol ()
c62446b1
PA
4807{
4808 mock_mapped_index mock_index (test_symbols);
4809
4810 /* We let all tests run until the end even if some fails, for debug
4811 convenience. */
4812 bool any_mismatch = false;
4813
4814 /* Create the expected symbols list (an initializer_list). Needed
4815 because lists have commas, and we need to pass them to CHECK,
4816 which is a macro. */
4817#define EXPECT(...) { __VA_ARGS__ }
4818
4819 /* Wrapper for check_match that passes down the current
4820 __FILE__/__LINE__. */
4821#define CHECK_MATCH(NAME, MATCH_TYPE, COMPLETION_MODE, EXPECTED_LIST) \
4822 any_mismatch |= !check_match (__FILE__, __LINE__, \
4823 mock_index, \
4824 NAME, MATCH_TYPE, COMPLETION_MODE, \
4825 EXPECTED_LIST)
4826
4827 /* Identity checks. */
4828 for (const char *sym : test_symbols)
4829 {
4830 /* Should be able to match all existing symbols. */
4831 CHECK_MATCH (sym, symbol_name_match_type::FULL, false,
4832 EXPECT (sym));
4833
4834 /* Should be able to match all existing symbols with
4835 parameters. */
4836 std::string with_params = std::string (sym) + "(int)";
4837 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4838 EXPECT (sym));
4839
4840 /* Should be able to match all existing symbols with
4841 parameters and qualifiers. */
4842 with_params = std::string (sym) + " ( int ) const";
4843 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4844 EXPECT (sym));
4845
4846 /* This should really find sym, but cp-name-parser.y doesn't
4847 know about lvalue/rvalue qualifiers yet. */
4848 with_params = std::string (sym) + " ( int ) &&";
4849 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4850 {});
4851 }
4852
e1ef7d7a
PA
4853 /* Check that the name matching algorithm for completion doesn't get
4854 confused with Latin1 'ÿ' / 0xff. */
4855 {
4856 static const char str[] = "\377";
4857 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4858 EXPECT ("\377", "\377\377123"));
4859 }
4860
4861 /* Check that the increment-last-char in the matching algorithm for
4862 completion doesn't match "t1_fund" when completing "t1_func". */
4863 {
4864 static const char str[] = "t1_func";
4865 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4866 EXPECT ("t1_func", "t1_func1"));
4867 }
4868
c62446b1
PA
4869 /* Check that completion mode works at each prefix of the expected
4870 symbol name. */
4871 {
4872 static const char str[] = "function(int)";
4873 size_t len = strlen (str);
4874 std::string lookup;
4875
4876 for (size_t i = 1; i < len; i++)
4877 {
4878 lookup.assign (str, i);
4879 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4880 EXPECT ("function"));
4881 }
4882 }
4883
4884 /* While "w" is a prefix of both components, the match function
4885 should still only be called once. */
4886 {
4887 CHECK_MATCH ("w", symbol_name_match_type::FULL, true,
4888 EXPECT ("w1::w2"));
a20714ff
PA
4889 CHECK_MATCH ("w", symbol_name_match_type::WILD, true,
4890 EXPECT ("w1::w2"));
c62446b1
PA
4891 }
4892
4893 /* Same, with a "complicated" symbol. */
4894 {
4895 static const char str[] = Z_SYM_NAME;
4896 size_t len = strlen (str);
4897 std::string lookup;
4898
4899 for (size_t i = 1; i < len; i++)
4900 {
4901 lookup.assign (str, i);
4902 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4903 EXPECT (Z_SYM_NAME));
4904 }
4905 }
4906
4907 /* In FULL mode, an incomplete symbol doesn't match. */
4908 {
4909 CHECK_MATCH ("std::zfunction(int", symbol_name_match_type::FULL, false,
4910 {});
4911 }
4912
4913 /* A complete symbol with parameters matches any overload, since the
4914 index has no overload info. */
4915 {
4916 CHECK_MATCH ("std::zfunction(int)", symbol_name_match_type::FULL, true,
4917 EXPECT ("std::zfunction", "std::zfunction2"));
a20714ff
PA
4918 CHECK_MATCH ("zfunction(int)", symbol_name_match_type::WILD, true,
4919 EXPECT ("std::zfunction", "std::zfunction2"));
4920 CHECK_MATCH ("zfunc", symbol_name_match_type::WILD, true,
4921 EXPECT ("std::zfunction", "std::zfunction2"));
c62446b1
PA
4922 }
4923
4924 /* Check that whitespace is ignored appropriately. A symbol with a
4925 template argument list. */
4926 {
4927 static const char expected[] = "ns::foo<int>";
4928 CHECK_MATCH ("ns :: foo < int > ", symbol_name_match_type::FULL, false,
4929 EXPECT (expected));
a20714ff
PA
4930 CHECK_MATCH ("foo < int > ", symbol_name_match_type::WILD, false,
4931 EXPECT (expected));
c62446b1
PA
4932 }
4933
4934 /* Check that whitespace is ignored appropriately. A symbol with a
4935 template argument list that includes a pointer. */
4936 {
4937 static const char expected[] = "ns::foo<char*>";
4938 /* Try both completion and non-completion modes. */
4939 static const bool completion_mode[2] = {false, true};
4940 for (size_t i = 0; i < 2; i++)
4941 {
4942 CHECK_MATCH ("ns :: foo < char * >", symbol_name_match_type::FULL,
4943 completion_mode[i], EXPECT (expected));
a20714ff
PA
4944 CHECK_MATCH ("foo < char * >", symbol_name_match_type::WILD,
4945 completion_mode[i], EXPECT (expected));
c62446b1
PA
4946
4947 CHECK_MATCH ("ns :: foo < char * > (int)", symbol_name_match_type::FULL,
4948 completion_mode[i], EXPECT (expected));
a20714ff
PA
4949 CHECK_MATCH ("foo < char * > (int)", symbol_name_match_type::WILD,
4950 completion_mode[i], EXPECT (expected));
c62446b1
PA
4951 }
4952 }
4953
4954 {
4955 /* Check method qualifiers are ignored. */
4956 static const char expected[] = "ns::foo<char*>";
4957 CHECK_MATCH ("ns :: foo < char * > ( int ) const",
4958 symbol_name_match_type::FULL, true, EXPECT (expected));
4959 CHECK_MATCH ("ns :: foo < char * > ( int ) &&",
4960 symbol_name_match_type::FULL, true, EXPECT (expected));
a20714ff
PA
4961 CHECK_MATCH ("foo < char * > ( int ) const",
4962 symbol_name_match_type::WILD, true, EXPECT (expected));
4963 CHECK_MATCH ("foo < char * > ( int ) &&",
4964 symbol_name_match_type::WILD, true, EXPECT (expected));
c62446b1
PA
4965 }
4966
4967 /* Test lookup names that don't match anything. */
4968 {
a20714ff
PA
4969 CHECK_MATCH ("bar2", symbol_name_match_type::WILD, false,
4970 {});
4971
c62446b1
PA
4972 CHECK_MATCH ("doesntexist", symbol_name_match_type::FULL, false,
4973 {});
4974 }
4975
a20714ff
PA
4976 /* Some wild matching tests, exercising "(anonymous namespace)",
4977 which should not be confused with a parameter list. */
4978 {
4979 static const char *syms[] = {
4980 "A::B::C",
4981 "B::C",
4982 "C",
4983 "A :: B :: C ( int )",
4984 "B :: C ( int )",
4985 "C ( int )",
4986 };
4987
4988 for (const char *s : syms)
4989 {
4990 CHECK_MATCH (s, symbol_name_match_type::WILD, false,
4991 EXPECT ("(anonymous namespace)::A::B::C"));
4992 }
4993 }
4994
4995 {
4996 static const char expected[] = "ns2::tmpl<int>::foo2";
4997 CHECK_MATCH ("tmp", symbol_name_match_type::WILD, true,
4998 EXPECT (expected));
4999 CHECK_MATCH ("tmpl<", symbol_name_match_type::WILD, true,
5000 EXPECT (expected));
5001 }
5002
c62446b1
PA
5003 SELF_CHECK (!any_mismatch);
5004
5005#undef EXPECT
5006#undef CHECK_MATCH
5007}
5008
5c58de74
PA
5009static void
5010run_test ()
5011{
5012 test_mapped_index_find_name_component_bounds ();
5013 test_dw2_expand_symtabs_matching_symbol ();
5014}
5015
c62446b1
PA
5016}} // namespace selftests::dw2_expand_symtabs_matching
5017
5018#endif /* GDB_SELF_TEST */
5019
4b514bc8
JK
5020/* If FILE_MATCHER is NULL or if PER_CU has
5021 dwarf2_per_cu_quick_data::MARK set (see
5022 dw_expand_symtabs_matching_file_matcher), expand the CU and call
5023 EXPANSION_NOTIFY on it. */
5024
5025static void
5026dw2_expand_symtabs_matching_one
5027 (struct dwarf2_per_cu_data *per_cu,
5028 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5029 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify)
5030{
5031 if (file_matcher == NULL || per_cu->v.quick->mark)
5032 {
5033 bool symtab_was_null
5034 = (per_cu->v.quick->compunit_symtab == NULL);
5035
58f0c718 5036 dw2_instantiate_symtab (per_cu, false);
4b514bc8
JK
5037
5038 if (expansion_notify != NULL
5039 && symtab_was_null
5040 && per_cu->v.quick->compunit_symtab != NULL)
5041 expansion_notify (per_cu->v.quick->compunit_symtab);
5042 }
5043}
5044
3f563c84
PA
5045/* Helper for dw2_expand_matching symtabs. Called on each symbol
5046 matched, to expand corresponding CUs that were marked. IDX is the
5047 index of the symbol name that matched. */
5048
5049static void
5050dw2_expand_marked_cus
ed2dc618 5051 (struct dwarf2_per_objfile *dwarf2_per_objfile, offset_type idx,
3f563c84
PA
5052 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5053 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5054 search_domain kind)
5055{
3f563c84
PA
5056 offset_type *vec, vec_len, vec_idx;
5057 bool global_seen = false;
ed2dc618 5058 mapped_index &index = *dwarf2_per_objfile->index_table;
3f563c84 5059
61920122 5060 vec = (offset_type *) (index.constant_pool
f00a2de2 5061 + MAYBE_SWAP (index.symbol_table[idx].vec));
61920122
PA
5062 vec_len = MAYBE_SWAP (vec[0]);
5063 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
5064 {
61920122
PA
5065 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
5066 /* This value is only valid for index versions >= 7. */
5067 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
5068 gdb_index_symbol_kind symbol_kind =
5069 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
5070 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
5071 /* Only check the symbol attributes if they're present.
5072 Indices prior to version 7 don't record them,
5073 and indices >= 7 may elide them for certain symbols
5074 (gold does this). */
5075 int attrs_valid =
5076 (index.version >= 7
5077 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
5078
5079 /* Work around gold/15646. */
5080 if (attrs_valid)
9291a0cd 5081 {
61920122
PA
5082 if (!is_static && global_seen)
5083 continue;
5084 if (!is_static)
5085 global_seen = true;
5086 }
3190f0c6 5087
61920122
PA
5088 /* Only check the symbol's kind if it has one. */
5089 if (attrs_valid)
5090 {
5091 switch (kind)
8943b874 5092 {
61920122
PA
5093 case VARIABLES_DOMAIN:
5094 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
5095 continue;
5096 break;
5097 case FUNCTIONS_DOMAIN:
5098 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
8943b874 5099 continue;
61920122
PA
5100 break;
5101 case TYPES_DOMAIN:
5102 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
5103 continue;
5104 break;
5105 default:
5106 break;
8943b874 5107 }
61920122 5108 }
8943b874 5109
61920122 5110 /* Don't crash on bad data. */
b76e467d 5111 if (cu_index >= (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 5112 + dwarf2_per_objfile->all_type_units.size ()))
61920122 5113 {
b98664d3 5114 complaint (_(".gdb_index entry has bad CU index"
ed2dc618
SM
5115 " [in module %s]"),
5116 objfile_name (dwarf2_per_objfile->objfile));
61920122
PA
5117 continue;
5118 }
5119
ff4c9fec 5120 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (cu_index);
4b514bc8
JK
5121 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
5122 expansion_notify);
61920122
PA
5123 }
5124}
5125
4b514bc8
JK
5126/* If FILE_MATCHER is non-NULL, set all the
5127 dwarf2_per_cu_quick_data::MARK of the current DWARF2_PER_OBJFILE
5128 that match FILE_MATCHER. */
5129
61920122 5130static void
4b514bc8 5131dw_expand_symtabs_matching_file_matcher
ed2dc618
SM
5132 (struct dwarf2_per_objfile *dwarf2_per_objfile,
5133 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher)
61920122 5134{
4b514bc8 5135 if (file_matcher == NULL)
61920122
PA
5136 return;
5137
4b514bc8
JK
5138 objfile *const objfile = dwarf2_per_objfile->objfile;
5139
5140 htab_up visited_found (htab_create_alloc (10, htab_hash_pointer,
5141 htab_eq_pointer,
5142 NULL, xcalloc, xfree));
5143 htab_up visited_not_found (htab_create_alloc (10, htab_hash_pointer,
61920122
PA
5144 htab_eq_pointer,
5145 NULL, xcalloc, xfree));
61920122 5146
4b514bc8
JK
5147 /* The rule is CUs specify all the files, including those used by
5148 any TU, so there's no need to scan TUs here. */
61920122 5149
b76e467d 5150 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5151 {
927aa2e7
JK
5152 QUIT;
5153
5154 per_cu->v.quick->mark = 0;
5155
5156 /* We only need to look at symtabs not already expanded. */
5157 if (per_cu->v.quick->compunit_symtab)
5158 continue;
5159
b76e467d 5160 quick_file_names *file_data = dw2_get_file_names (per_cu);
927aa2e7
JK
5161 if (file_data == NULL)
5162 continue;
5163
5164 if (htab_find (visited_not_found.get (), file_data) != NULL)
5165 continue;
5166 else if (htab_find (visited_found.get (), file_data) != NULL)
5167 {
5168 per_cu->v.quick->mark = 1;
5169 continue;
5170 }
5171
b76e467d 5172 for (int j = 0; j < file_data->num_file_names; ++j)
927aa2e7
JK
5173 {
5174 const char *this_real_name;
5175
5176 if (file_matcher (file_data->file_names[j], false))
5177 {
5178 per_cu->v.quick->mark = 1;
5179 break;
5180 }
5181
5182 /* Before we invoke realpath, which can get expensive when many
5183 files are involved, do a quick comparison of the basenames. */
5184 if (!basenames_may_differ
5185 && !file_matcher (lbasename (file_data->file_names[j]),
5186 true))
5187 continue;
5188
5189 this_real_name = dw2_get_real_path (objfile, file_data, j);
5190 if (file_matcher (this_real_name, false))
5191 {
5192 per_cu->v.quick->mark = 1;
5193 break;
5194 }
5195 }
5196
b76e467d
SM
5197 void **slot = htab_find_slot (per_cu->v.quick->mark
5198 ? visited_found.get ()
5199 : visited_not_found.get (),
5200 file_data, INSERT);
927aa2e7
JK
5201 *slot = file_data;
5202 }
5203}
5204
5205static void
5206dw2_expand_symtabs_matching
5207 (struct objfile *objfile,
5208 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5209 const lookup_name_info &lookup_name,
5210 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
5211 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5212 enum search_domain kind)
5213{
ed2dc618
SM
5214 struct dwarf2_per_objfile *dwarf2_per_objfile
5215 = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
5216
5217 /* index_table is NULL if OBJF_READNOW. */
5218 if (!dwarf2_per_objfile->index_table)
5219 return;
5220
ed2dc618 5221 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
927aa2e7
JK
5222
5223 mapped_index &index = *dwarf2_per_objfile->index_table;
5224
5225 dw2_expand_symtabs_matching_symbol (index, lookup_name,
5226 symbol_matcher,
5227 kind, [&] (offset_type idx)
5228 {
ed2dc618 5229 dw2_expand_marked_cus (dwarf2_per_objfile, idx, file_matcher,
927aa2e7
JK
5230 expansion_notify, kind);
5231 });
5232}
5233
5234/* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
5235 symtab. */
5236
5237static struct compunit_symtab *
5238recursively_find_pc_sect_compunit_symtab (struct compunit_symtab *cust,
5239 CORE_ADDR pc)
5240{
5241 int i;
5242
5243 if (COMPUNIT_BLOCKVECTOR (cust) != NULL
5244 && blockvector_contains_pc (COMPUNIT_BLOCKVECTOR (cust), pc))
5245 return cust;
5246
5247 if (cust->includes == NULL)
5248 return NULL;
5249
5250 for (i = 0; cust->includes[i]; ++i)
5251 {
5252 struct compunit_symtab *s = cust->includes[i];
5253
5254 s = recursively_find_pc_sect_compunit_symtab (s, pc);
5255 if (s != NULL)
5256 return s;
5257 }
5258
5259 return NULL;
5260}
5261
5262static struct compunit_symtab *
5263dw2_find_pc_sect_compunit_symtab (struct objfile *objfile,
5264 struct bound_minimal_symbol msymbol,
5265 CORE_ADDR pc,
5266 struct obj_section *section,
5267 int warn_if_readin)
5268{
5269 struct dwarf2_per_cu_data *data;
5270 struct compunit_symtab *result;
5271
d320c2b5 5272 if (!objfile->partial_symtabs->psymtabs_addrmap)
927aa2e7
JK
5273 return NULL;
5274
79748972
TT
5275 CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
5276 SECT_OFF_TEXT (objfile));
d320c2b5
TT
5277 data = (struct dwarf2_per_cu_data *) addrmap_find
5278 (objfile->partial_symtabs->psymtabs_addrmap, pc - baseaddr);
927aa2e7
JK
5279 if (!data)
5280 return NULL;
5281
5282 if (warn_if_readin && data->v.quick->compunit_symtab)
5283 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
5284 paddress (get_objfile_arch (objfile), pc));
5285
5286 result
58f0c718
TT
5287 = recursively_find_pc_sect_compunit_symtab (dw2_instantiate_symtab (data,
5288 false),
927aa2e7
JK
5289 pc);
5290 gdb_assert (result != NULL);
5291 return result;
5292}
5293
5294static void
5295dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
5296 void *data, int need_fullname)
5297{
ed2dc618
SM
5298 struct dwarf2_per_objfile *dwarf2_per_objfile
5299 = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
5300
5301 if (!dwarf2_per_objfile->filenames_cache)
5302 {
5303 dwarf2_per_objfile->filenames_cache.emplace ();
5304
5305 htab_up visited (htab_create_alloc (10,
5306 htab_hash_pointer, htab_eq_pointer,
5307 NULL, xcalloc, xfree));
5308
5309 /* The rule is CUs specify all the files, including those used
5310 by any TU, so there's no need to scan TUs here. We can
5311 ignore file names coming from already-expanded CUs. */
5312
b76e467d 5313 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5314 {
927aa2e7
JK
5315 if (per_cu->v.quick->compunit_symtab)
5316 {
5317 void **slot = htab_find_slot (visited.get (),
5318 per_cu->v.quick->file_names,
5319 INSERT);
5320
5321 *slot = per_cu->v.quick->file_names;
5322 }
5323 }
5324
b76e467d 5325 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
927aa2e7 5326 {
927aa2e7
JK
5327 /* We only need to look at symtabs not already expanded. */
5328 if (per_cu->v.quick->compunit_symtab)
5329 continue;
5330
b76e467d 5331 quick_file_names *file_data = dw2_get_file_names (per_cu);
927aa2e7
JK
5332 if (file_data == NULL)
5333 continue;
5334
b76e467d 5335 void **slot = htab_find_slot (visited.get (), file_data, INSERT);
927aa2e7
JK
5336 if (*slot)
5337 {
5338 /* Already visited. */
5339 continue;
5340 }
5341 *slot = file_data;
5342
5343 for (int j = 0; j < file_data->num_file_names; ++j)
5344 {
5345 const char *filename = file_data->file_names[j];
5346 dwarf2_per_objfile->filenames_cache->seen (filename);
5347 }
5348 }
5349 }
5350
5351 dwarf2_per_objfile->filenames_cache->traverse ([&] (const char *filename)
5352 {
5353 gdb::unique_xmalloc_ptr<char> this_real_name;
5354
5355 if (need_fullname)
5356 this_real_name = gdb_realpath (filename);
5357 (*fun) (filename, this_real_name.get (), data);
5358 });
5359}
5360
5361static int
5362dw2_has_symbols (struct objfile *objfile)
5363{
5364 return 1;
5365}
5366
5367const struct quick_symbol_functions dwarf2_gdb_index_functions =
5368{
5369 dw2_has_symbols,
5370 dw2_find_last_source_symtab,
5371 dw2_forget_cached_source_info,
5372 dw2_map_symtabs_matching_filename,
5373 dw2_lookup_symbol,
5374 dw2_print_stats,
5375 dw2_dump,
927aa2e7
JK
5376 dw2_expand_symtabs_for_function,
5377 dw2_expand_all_symtabs,
5378 dw2_expand_symtabs_with_fullname,
5379 dw2_map_matching_symbols,
5380 dw2_expand_symtabs_matching,
5381 dw2_find_pc_sect_compunit_symtab,
5382 NULL,
5383 dw2_map_symbol_filenames
5384};
5385
5386/* DWARF-5 debug_names reader. */
5387
5388/* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. */
5389static const gdb_byte dwarf5_augmentation[] = { 'G', 'D', 'B', 0 };
5390
5391/* A helper function that reads the .debug_names section in SECTION
5392 and fills in MAP. FILENAME is the name of the file containing the
5393 section; it is used for error reporting.
5394
5395 Returns true if all went well, false otherwise. */
5396
5397static bool
5398read_debug_names_from_section (struct objfile *objfile,
5399 const char *filename,
5400 struct dwarf2_section_info *section,
5401 mapped_debug_names &map)
5402{
5403 if (dwarf2_section_empty_p (section))
5404 return false;
5405
5406 /* Older elfutils strip versions could keep the section in the main
5407 executable while splitting it for the separate debug info file. */
5408 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
5409 return false;
5410
5411 dwarf2_read_section (objfile, section);
5412
5413 map.dwarf5_byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
5414
5415 const gdb_byte *addr = section->buffer;
5416
5417 bfd *const abfd = get_section_bfd_owner (section);
5418
5419 unsigned int bytes_read;
5420 LONGEST length = read_initial_length (abfd, addr, &bytes_read);
5421 addr += bytes_read;
5422
5423 map.dwarf5_is_dwarf64 = bytes_read != 4;
5424 map.offset_size = map.dwarf5_is_dwarf64 ? 8 : 4;
5425 if (bytes_read + length != section->size)
5426 {
5427 /* There may be multiple per-CU indices. */
5428 warning (_("Section .debug_names in %s length %s does not match "
5429 "section length %s, ignoring .debug_names."),
5430 filename, plongest (bytes_read + length),
5431 pulongest (section->size));
5432 return false;
5433 }
5434
5435 /* The version number. */
5436 uint16_t version = read_2_bytes (abfd, addr);
5437 addr += 2;
5438 if (version != 5)
5439 {
5440 warning (_("Section .debug_names in %s has unsupported version %d, "
5441 "ignoring .debug_names."),
5442 filename, version);
5443 return false;
5444 }
5445
5446 /* Padding. */
5447 uint16_t padding = read_2_bytes (abfd, addr);
5448 addr += 2;
5449 if (padding != 0)
5450 {
5451 warning (_("Section .debug_names in %s has unsupported padding %d, "
5452 "ignoring .debug_names."),
5453 filename, padding);
5454 return false;
5455 }
5456
5457 /* comp_unit_count - The number of CUs in the CU list. */
5458 map.cu_count = read_4_bytes (abfd, addr);
5459 addr += 4;
5460
5461 /* local_type_unit_count - The number of TUs in the local TU
5462 list. */
5463 map.tu_count = read_4_bytes (abfd, addr);
5464 addr += 4;
5465
5466 /* foreign_type_unit_count - The number of TUs in the foreign TU
5467 list. */
5468 uint32_t foreign_tu_count = read_4_bytes (abfd, addr);
5469 addr += 4;
5470 if (foreign_tu_count != 0)
5471 {
5472 warning (_("Section .debug_names in %s has unsupported %lu foreign TUs, "
5473 "ignoring .debug_names."),
5474 filename, static_cast<unsigned long> (foreign_tu_count));
5475 return false;
5476 }
5477
5478 /* bucket_count - The number of hash buckets in the hash lookup
5479 table. */
5480 map.bucket_count = read_4_bytes (abfd, addr);
5481 addr += 4;
5482
5483 /* name_count - The number of unique names in the index. */
5484 map.name_count = read_4_bytes (abfd, addr);
5485 addr += 4;
5486
5487 /* abbrev_table_size - The size in bytes of the abbreviations
5488 table. */
5489 uint32_t abbrev_table_size = read_4_bytes (abfd, addr);
5490 addr += 4;
5491
5492 /* augmentation_string_size - The size in bytes of the augmentation
5493 string. This value is rounded up to a multiple of 4. */
5494 uint32_t augmentation_string_size = read_4_bytes (abfd, addr);
5495 addr += 4;
5496 map.augmentation_is_gdb = ((augmentation_string_size
5497 == sizeof (dwarf5_augmentation))
5498 && memcmp (addr, dwarf5_augmentation,
5499 sizeof (dwarf5_augmentation)) == 0);
5500 augmentation_string_size += (-augmentation_string_size) & 3;
5501 addr += augmentation_string_size;
5502
5503 /* List of CUs */
5504 map.cu_table_reordered = addr;
5505 addr += map.cu_count * map.offset_size;
5506
5507 /* List of Local TUs */
5508 map.tu_table_reordered = addr;
5509 addr += map.tu_count * map.offset_size;
5510
5511 /* Hash Lookup Table */
5512 map.bucket_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5513 addr += map.bucket_count * 4;
5514 map.hash_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5515 addr += map.name_count * 4;
5516
5517 /* Name Table */
5518 map.name_table_string_offs_reordered = addr;
5519 addr += map.name_count * map.offset_size;
5520 map.name_table_entry_offs_reordered = addr;
5521 addr += map.name_count * map.offset_size;
5522
5523 const gdb_byte *abbrev_table_start = addr;
5524 for (;;)
5525 {
927aa2e7
JK
5526 const ULONGEST index_num = read_unsigned_leb128 (abfd, addr, &bytes_read);
5527 addr += bytes_read;
5528 if (index_num == 0)
5529 break;
5530
5531 const auto insertpair
5532 = map.abbrev_map.emplace (index_num, mapped_debug_names::index_val ());
5533 if (!insertpair.second)
5534 {
5535 warning (_("Section .debug_names in %s has duplicate index %s, "
5536 "ignoring .debug_names."),
5537 filename, pulongest (index_num));
5538 return false;
5539 }
5540 mapped_debug_names::index_val &indexval = insertpair.first->second;
5541 indexval.dwarf_tag = read_unsigned_leb128 (abfd, addr, &bytes_read);
5542 addr += bytes_read;
5543
5544 for (;;)
5545 {
5546 mapped_debug_names::index_val::attr attr;
5547 attr.dw_idx = read_unsigned_leb128 (abfd, addr, &bytes_read);
5548 addr += bytes_read;
5549 attr.form = read_unsigned_leb128 (abfd, addr, &bytes_read);
5550 addr += bytes_read;
5551 if (attr.form == DW_FORM_implicit_const)
5552 {
5553 attr.implicit_const = read_signed_leb128 (abfd, addr,
5554 &bytes_read);
5555 addr += bytes_read;
5556 }
5557 if (attr.dw_idx == 0 && attr.form == 0)
5558 break;
5559 indexval.attr_vec.push_back (std::move (attr));
5560 }
5561 }
5562 if (addr != abbrev_table_start + abbrev_table_size)
5563 {
5564 warning (_("Section .debug_names in %s has abbreviation_table "
5565 "of size %zu vs. written as %u, ignoring .debug_names."),
5566 filename, addr - abbrev_table_start, abbrev_table_size);
5567 return false;
5568 }
5569 map.entry_pool = addr;
5570
5571 return true;
5572}
5573
5574/* A helper for create_cus_from_debug_names that handles the MAP's CU
5575 list. */
5576
5577static void
ed2dc618 5578create_cus_from_debug_names_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5579 const mapped_debug_names &map,
5580 dwarf2_section_info &section,
b76e467d 5581 bool is_dwz)
927aa2e7
JK
5582{
5583 sect_offset sect_off_prev;
5584 for (uint32_t i = 0; i <= map.cu_count; ++i)
5585 {
5586 sect_offset sect_off_next;
5587 if (i < map.cu_count)
5588 {
5589 sect_off_next
5590 = (sect_offset) (extract_unsigned_integer
5591 (map.cu_table_reordered + i * map.offset_size,
5592 map.offset_size,
5593 map.dwarf5_byte_order));
5594 }
5595 else
5596 sect_off_next = (sect_offset) section.size;
5597 if (i >= 1)
5598 {
5599 const ULONGEST length = sect_off_next - sect_off_prev;
b76e467d 5600 dwarf2_per_cu_data *per_cu
ed2dc618 5601 = create_cu_from_index_list (dwarf2_per_objfile, &section, is_dwz,
927aa2e7 5602 sect_off_prev, length);
b76e467d 5603 dwarf2_per_objfile->all_comp_units.push_back (per_cu);
927aa2e7
JK
5604 }
5605 sect_off_prev = sect_off_next;
5606 }
5607}
5608
5609/* Read the CU list from the mapped index, and use it to create all
ed2dc618 5610 the CU objects for this dwarf2_per_objfile. */
927aa2e7
JK
5611
5612static void
ed2dc618 5613create_cus_from_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile,
927aa2e7
JK
5614 const mapped_debug_names &map,
5615 const mapped_debug_names &dwz_map)
5616{
b76e467d
SM
5617 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
5618 dwarf2_per_objfile->all_comp_units.reserve (map.cu_count + dwz_map.cu_count);
927aa2e7 5619
ed2dc618
SM
5620 create_cus_from_debug_names_list (dwarf2_per_objfile, map,
5621 dwarf2_per_objfile->info,
b76e467d 5622 false /* is_dwz */);
927aa2e7
JK
5623
5624 if (dwz_map.cu_count == 0)
5625 return;
5626
ed2dc618
SM
5627 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
5628 create_cus_from_debug_names_list (dwarf2_per_objfile, dwz_map, dwz->info,
b76e467d 5629 true /* is_dwz */);
927aa2e7
JK
5630}
5631
5632/* Read .debug_names. If everything went ok, initialize the "quick"
5633 elements of all the CUs and return true. Otherwise, return false. */
5634
5635static bool
ed2dc618 5636dwarf2_read_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile)
927aa2e7 5637{
22ca247e
TT
5638 std::unique_ptr<mapped_debug_names> map
5639 (new mapped_debug_names (dwarf2_per_objfile));
ed2dc618
SM
5640 mapped_debug_names dwz_map (dwarf2_per_objfile);
5641 struct objfile *objfile = dwarf2_per_objfile->objfile;
927aa2e7
JK
5642
5643 if (!read_debug_names_from_section (objfile, objfile_name (objfile),
5644 &dwarf2_per_objfile->debug_names,
22ca247e 5645 *map))
927aa2e7
JK
5646 return false;
5647
5648 /* Don't use the index if it's empty. */
22ca247e 5649 if (map->name_count == 0)
927aa2e7
JK
5650 return false;
5651
5652 /* If there is a .dwz file, read it so we can get its CU list as
5653 well. */
ed2dc618 5654 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
927aa2e7
JK
5655 if (dwz != NULL)
5656 {
5657 if (!read_debug_names_from_section (objfile,
5658 bfd_get_filename (dwz->dwz_bfd),
5659 &dwz->debug_names, dwz_map))
5660 {
5661 warning (_("could not read '.debug_names' section from %s; skipping"),
5662 bfd_get_filename (dwz->dwz_bfd));
5663 return false;
5664 }
5665 }
5666
22ca247e 5667 create_cus_from_debug_names (dwarf2_per_objfile, *map, dwz_map);
927aa2e7 5668
22ca247e 5669 if (map->tu_count != 0)
927aa2e7
JK
5670 {
5671 /* We can only handle a single .debug_types when we have an
5672 index. */
5673 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
5674 return false;
5675
5676 dwarf2_section_info *section = VEC_index (dwarf2_section_info_def,
5677 dwarf2_per_objfile->types, 0);
5678
5679 create_signatured_type_table_from_debug_names
22ca247e 5680 (dwarf2_per_objfile, *map, section, &dwarf2_per_objfile->abbrev);
927aa2e7
JK
5681 }
5682
ed2dc618
SM
5683 create_addrmap_from_aranges (dwarf2_per_objfile,
5684 &dwarf2_per_objfile->debug_aranges);
927aa2e7 5685
22ca247e 5686 dwarf2_per_objfile->debug_names_table = std::move (map);
927aa2e7
JK
5687 dwarf2_per_objfile->using_index = 1;
5688 dwarf2_per_objfile->quick_file_names_table =
b76e467d 5689 create_quick_file_names_table (dwarf2_per_objfile->all_comp_units.size ());
927aa2e7
JK
5690
5691 return true;
5692}
5693
927aa2e7
JK
5694/* Type used to manage iterating over all CUs looking for a symbol for
5695 .debug_names. */
5696
5697class dw2_debug_names_iterator
5698{
5699public:
5700 /* If WANT_SPECIFIC_BLOCK is true, only look for symbols in block
5701 BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
5702 dw2_debug_names_iterator (const mapped_debug_names &map,
5703 bool want_specific_block,
5704 block_enum block_index, domain_enum domain,
5705 const char *name)
5706 : m_map (map), m_want_specific_block (want_specific_block),
5707 m_block_index (block_index), m_domain (domain),
5708 m_addr (find_vec_in_debug_names (map, name))
5709 {}
5710
5711 dw2_debug_names_iterator (const mapped_debug_names &map,
5712 search_domain search, uint32_t namei)
5713 : m_map (map),
5714 m_search (search),
5715 m_addr (find_vec_in_debug_names (map, namei))
5716 {}
5717
5718 /* Return the next matching CU or NULL if there are no more. */
5719 dwarf2_per_cu_data *next ();
5720
5721private:
5722 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5723 const char *name);
5724 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5725 uint32_t namei);
5726
5727 /* The internalized form of .debug_names. */
5728 const mapped_debug_names &m_map;
5729
5730 /* If true, only look for symbols that match BLOCK_INDEX. */
5731 const bool m_want_specific_block = false;
5732
5733 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
5734 Unused if !WANT_SPECIFIC_BLOCK - FIRST_LOCAL_BLOCK is an invalid
5735 value. */
5736 const block_enum m_block_index = FIRST_LOCAL_BLOCK;
5737
5738 /* The kind of symbol we're looking for. */
5739 const domain_enum m_domain = UNDEF_DOMAIN;
5740 const search_domain m_search = ALL_DOMAIN;
5741
5742 /* The list of CUs from the index entry of the symbol, or NULL if
5743 not found. */
5744 const gdb_byte *m_addr;
5745};
5746
5747const char *
5748mapped_debug_names::namei_to_name (uint32_t namei) const
5749{
5750 const ULONGEST namei_string_offs
5751 = extract_unsigned_integer ((name_table_string_offs_reordered
5752 + namei * offset_size),
5753 offset_size,
5754 dwarf5_byte_order);
5755 return read_indirect_string_at_offset
ed2dc618 5756 (dwarf2_per_objfile, dwarf2_per_objfile->objfile->obfd, namei_string_offs);
927aa2e7
JK
5757}
5758
5759/* Find a slot in .debug_names for the object named NAME. If NAME is
5760 found, return pointer to its pool data. If NAME cannot be found,
5761 return NULL. */
5762
5763const gdb_byte *
5764dw2_debug_names_iterator::find_vec_in_debug_names
5765 (const mapped_debug_names &map, const char *name)
5766{
5767 int (*cmp) (const char *, const char *);
5768
5769 if (current_language->la_language == language_cplus
5770 || current_language->la_language == language_fortran
5771 || current_language->la_language == language_d)
5772 {
5773 /* NAME is already canonical. Drop any qualifiers as
5774 .debug_names does not contain any. */
5775
5776 if (strchr (name, '(') != NULL)
5777 {
5778 gdb::unique_xmalloc_ptr<char> without_params
5779 = cp_remove_params (name);
5780
5781 if (without_params != NULL)
5782 {
5783 name = without_params.get();
5784 }
5785 }
5786 }
5787
5788 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
5789
5790 const uint32_t full_hash = dwarf5_djb_hash (name);
5791 uint32_t namei
5792 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5793 (map.bucket_table_reordered
5794 + (full_hash % map.bucket_count)), 4,
5795 map.dwarf5_byte_order);
5796 if (namei == 0)
5797 return NULL;
5798 --namei;
5799 if (namei >= map.name_count)
5800 {
b98664d3 5801 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5802 "[in module %s]"),
5803 namei, map.name_count,
ed2dc618 5804 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5805 return NULL;
5806 }
5807
5808 for (;;)
5809 {
5810 const uint32_t namei_full_hash
5811 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5812 (map.hash_table_reordered + namei), 4,
5813 map.dwarf5_byte_order);
5814 if (full_hash % map.bucket_count != namei_full_hash % map.bucket_count)
5815 return NULL;
5816
5817 if (full_hash == namei_full_hash)
5818 {
5819 const char *const namei_string = map.namei_to_name (namei);
5820
5821#if 0 /* An expensive sanity check. */
5822 if (namei_full_hash != dwarf5_djb_hash (namei_string))
5823 {
b98664d3 5824 complaint (_("Wrong .debug_names hash for string at index %u "
927aa2e7
JK
5825 "[in module %s]"),
5826 namei, objfile_name (dwarf2_per_objfile->objfile));
5827 return NULL;
5828 }
5829#endif
5830
5831 if (cmp (namei_string, name) == 0)
5832 {
5833 const ULONGEST namei_entry_offs
5834 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5835 + namei * map.offset_size),
5836 map.offset_size, map.dwarf5_byte_order);
5837 return map.entry_pool + namei_entry_offs;
5838 }
5839 }
5840
5841 ++namei;
5842 if (namei >= map.name_count)
5843 return NULL;
5844 }
5845}
5846
5847const gdb_byte *
5848dw2_debug_names_iterator::find_vec_in_debug_names
5849 (const mapped_debug_names &map, uint32_t namei)
5850{
5851 if (namei >= map.name_count)
5852 {
b98664d3 5853 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5854 "[in module %s]"),
5855 namei, map.name_count,
ed2dc618 5856 objfile_name (map.dwarf2_per_objfile->objfile));
927aa2e7
JK
5857 return NULL;
5858 }
5859
5860 const ULONGEST namei_entry_offs
5861 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5862 + namei * map.offset_size),
5863 map.offset_size, map.dwarf5_byte_order);
5864 return map.entry_pool + namei_entry_offs;
5865}
5866
5867/* See dw2_debug_names_iterator. */
5868
5869dwarf2_per_cu_data *
5870dw2_debug_names_iterator::next ()
5871{
5872 if (m_addr == NULL)
5873 return NULL;
5874
ed2dc618
SM
5875 struct dwarf2_per_objfile *dwarf2_per_objfile = m_map.dwarf2_per_objfile;
5876 struct objfile *objfile = dwarf2_per_objfile->objfile;
5877 bfd *const abfd = objfile->obfd;
927aa2e7
JK
5878
5879 again:
5880
5881 unsigned int bytes_read;
5882 const ULONGEST abbrev = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5883 m_addr += bytes_read;
5884 if (abbrev == 0)
5885 return NULL;
5886
5887 const auto indexval_it = m_map.abbrev_map.find (abbrev);
5888 if (indexval_it == m_map.abbrev_map.cend ())
5889 {
b98664d3 5890 complaint (_("Wrong .debug_names undefined abbrev code %s "
927aa2e7 5891 "[in module %s]"),
ed2dc618 5892 pulongest (abbrev), objfile_name (objfile));
927aa2e7
JK
5893 return NULL;
5894 }
5895 const mapped_debug_names::index_val &indexval = indexval_it->second;
5896 bool have_is_static = false;
5897 bool is_static;
5898 dwarf2_per_cu_data *per_cu = NULL;
5899 for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec)
5900 {
5901 ULONGEST ull;
5902 switch (attr.form)
5903 {
5904 case DW_FORM_implicit_const:
5905 ull = attr.implicit_const;
5906 break;
5907 case DW_FORM_flag_present:
5908 ull = 1;
5909 break;
5910 case DW_FORM_udata:
5911 ull = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5912 m_addr += bytes_read;
5913 break;
5914 default:
b98664d3 5915 complaint (_("Unsupported .debug_names form %s [in module %s]"),
927aa2e7 5916 dwarf_form_name (attr.form),
ed2dc618 5917 objfile_name (objfile));
927aa2e7
JK
5918 return NULL;
5919 }
5920 switch (attr.dw_idx)
5921 {
5922 case DW_IDX_compile_unit:
5923 /* Don't crash on bad data. */
b76e467d 5924 if (ull >= dwarf2_per_objfile->all_comp_units.size ())
927aa2e7 5925 {
b98664d3 5926 complaint (_(".debug_names entry has bad CU index %s"
927aa2e7
JK
5927 " [in module %s]"),
5928 pulongest (ull),
5929 objfile_name (dwarf2_per_objfile->objfile));
5930 continue;
5931 }
ff4c9fec 5932 per_cu = dwarf2_per_objfile->get_cutu (ull);
927aa2e7 5933 break;
8af5c486
JK
5934 case DW_IDX_type_unit:
5935 /* Don't crash on bad data. */
b2bdb8cf 5936 if (ull >= dwarf2_per_objfile->all_type_units.size ())
8af5c486 5937 {
b98664d3 5938 complaint (_(".debug_names entry has bad TU index %s"
8af5c486
JK
5939 " [in module %s]"),
5940 pulongest (ull),
5941 objfile_name (dwarf2_per_objfile->objfile));
5942 continue;
5943 }
ff4c9fec 5944 per_cu = &dwarf2_per_objfile->get_tu (ull)->per_cu;
8af5c486 5945 break;
927aa2e7
JK
5946 case DW_IDX_GNU_internal:
5947 if (!m_map.augmentation_is_gdb)
5948 break;
5949 have_is_static = true;
5950 is_static = true;
5951 break;
5952 case DW_IDX_GNU_external:
5953 if (!m_map.augmentation_is_gdb)
5954 break;
5955 have_is_static = true;
5956 is_static = false;
5957 break;
5958 }
5959 }
5960
5961 /* Skip if already read in. */
5962 if (per_cu->v.quick->compunit_symtab)
5963 goto again;
5964
5965 /* Check static vs global. */
5966 if (have_is_static)
5967 {
5968 const bool want_static = m_block_index != GLOBAL_BLOCK;
5969 if (m_want_specific_block && want_static != is_static)
5970 goto again;
5971 }
5972
5973 /* Match dw2_symtab_iter_next, symbol_kind
5974 and debug_names::psymbol_tag. */
5975 switch (m_domain)
5976 {
5977 case VAR_DOMAIN:
5978 switch (indexval.dwarf_tag)
5979 {
5980 case DW_TAG_variable:
5981 case DW_TAG_subprogram:
5982 /* Some types are also in VAR_DOMAIN. */
5983 case DW_TAG_typedef:
5984 case DW_TAG_structure_type:
5985 break;
5986 default:
5987 goto again;
5988 }
5989 break;
5990 case STRUCT_DOMAIN:
5991 switch (indexval.dwarf_tag)
5992 {
5993 case DW_TAG_typedef:
5994 case DW_TAG_structure_type:
5995 break;
5996 default:
5997 goto again;
5998 }
5999 break;
6000 case LABEL_DOMAIN:
6001 switch (indexval.dwarf_tag)
6002 {
6003 case 0:
6004 case DW_TAG_variable:
6005 break;
6006 default:
6007 goto again;
6008 }
6009 break;
6010 default:
6011 break;
6012 }
6013
6014 /* Match dw2_expand_symtabs_matching, symbol_kind and
6015 debug_names::psymbol_tag. */
6016 switch (m_search)
4b514bc8 6017 {
927aa2e7
JK
6018 case VARIABLES_DOMAIN:
6019 switch (indexval.dwarf_tag)
4b514bc8 6020 {
927aa2e7
JK
6021 case DW_TAG_variable:
6022 break;
6023 default:
6024 goto again;
4b514bc8 6025 }
927aa2e7
JK
6026 break;
6027 case FUNCTIONS_DOMAIN:
6028 switch (indexval.dwarf_tag)
4b514bc8 6029 {
927aa2e7
JK
6030 case DW_TAG_subprogram:
6031 break;
6032 default:
6033 goto again;
4b514bc8 6034 }
927aa2e7
JK
6035 break;
6036 case TYPES_DOMAIN:
6037 switch (indexval.dwarf_tag)
6038 {
6039 case DW_TAG_typedef:
6040 case DW_TAG_structure_type:
6041 break;
6042 default:
6043 goto again;
6044 }
6045 break;
6046 default:
6047 break;
4b514bc8 6048 }
927aa2e7
JK
6049
6050 return per_cu;
4b514bc8 6051}
61920122 6052
927aa2e7
JK
6053static struct compunit_symtab *
6054dw2_debug_names_lookup_symbol (struct objfile *objfile, int block_index_int,
6055 const char *name, domain_enum domain)
4b514bc8 6056{
927aa2e7 6057 const block_enum block_index = static_cast<block_enum> (block_index_int);
ed2dc618
SM
6058 struct dwarf2_per_objfile *dwarf2_per_objfile
6059 = get_dwarf2_per_objfile (objfile);
61920122 6060
927aa2e7
JK
6061 const auto &mapp = dwarf2_per_objfile->debug_names_table;
6062 if (!mapp)
61920122 6063 {
927aa2e7
JK
6064 /* index is NULL if OBJF_READNOW. */
6065 return NULL;
6066 }
6067 const auto &map = *mapp;
9291a0cd 6068
927aa2e7
JK
6069 dw2_debug_names_iterator iter (map, true /* want_specific_block */,
6070 block_index, domain, name);
9703b513 6071
927aa2e7
JK
6072 struct compunit_symtab *stab_best = NULL;
6073 struct dwarf2_per_cu_data *per_cu;
6074 while ((per_cu = iter.next ()) != NULL)
6075 {
6076 struct symbol *sym, *with_opaque = NULL;
58f0c718 6077 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu, false);
927aa2e7 6078 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 6079 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
9703b513 6080
927aa2e7
JK
6081 sym = block_find_symbol (block, name, domain,
6082 block_find_non_opaque_type_preferred,
6083 &with_opaque);
9703b513 6084
927aa2e7
JK
6085 /* Some caution must be observed with overloaded functions and
6086 methods, since the index will not contain any overload
6087 information (but NAME might contain it). */
a3ec0bb1 6088
927aa2e7
JK
6089 if (sym != NULL
6090 && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
6091 return stab;
6092 if (with_opaque != NULL
6093 && strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
6094 stab_best = stab;
9703b513 6095
927aa2e7 6096 /* Keep looking through other CUs. */
9703b513
TT
6097 }
6098
927aa2e7 6099 return stab_best;
9703b513
TT
6100}
6101
927aa2e7
JK
6102/* This dumps minimal information about .debug_names. It is called
6103 via "mt print objfiles". The gdb.dwarf2/gdb-index.exp testcase
6104 uses this to verify that .debug_names has been loaded. */
9291a0cd 6105
927aa2e7
JK
6106static void
6107dw2_debug_names_dump (struct objfile *objfile)
6108{
ed2dc618
SM
6109 struct dwarf2_per_objfile *dwarf2_per_objfile
6110 = get_dwarf2_per_objfile (objfile);
6111
927aa2e7
JK
6112 gdb_assert (dwarf2_per_objfile->using_index);
6113 printf_filtered (".debug_names:");
6114 if (dwarf2_per_objfile->debug_names_table)
6115 printf_filtered (" exists\n");
6116 else
6117 printf_filtered (" faked for \"readnow\"\n");
6118 printf_filtered ("\n");
9291a0cd
TT
6119}
6120
9291a0cd 6121static void
927aa2e7
JK
6122dw2_debug_names_expand_symtabs_for_function (struct objfile *objfile,
6123 const char *func_name)
9291a0cd 6124{
ed2dc618
SM
6125 struct dwarf2_per_objfile *dwarf2_per_objfile
6126 = get_dwarf2_per_objfile (objfile);
ae2de4f8 6127
927aa2e7
JK
6128 /* dwarf2_per_objfile->debug_names_table is NULL if OBJF_READNOW. */
6129 if (dwarf2_per_objfile->debug_names_table)
24c79950 6130 {
927aa2e7 6131 const mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
24c79950 6132
927aa2e7
JK
6133 /* Note: It doesn't matter what we pass for block_index here. */
6134 dw2_debug_names_iterator iter (map, false /* want_specific_block */,
6135 GLOBAL_BLOCK, VAR_DOMAIN, func_name);
24c79950 6136
927aa2e7
JK
6137 struct dwarf2_per_cu_data *per_cu;
6138 while ((per_cu = iter.next ()) != NULL)
58f0c718 6139 dw2_instantiate_symtab (per_cu, false);
927aa2e7
JK
6140 }
6141}
24c79950 6142
927aa2e7
JK
6143static void
6144dw2_debug_names_expand_symtabs_matching
6145 (struct objfile *objfile,
6146 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
6147 const lookup_name_info &lookup_name,
6148 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
6149 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
6150 enum search_domain kind)
6151{
ed2dc618
SM
6152 struct dwarf2_per_objfile *dwarf2_per_objfile
6153 = get_dwarf2_per_objfile (objfile);
9291a0cd 6154
927aa2e7
JK
6155 /* debug_names_table is NULL if OBJF_READNOW. */
6156 if (!dwarf2_per_objfile->debug_names_table)
6157 return;
9291a0cd 6158
ed2dc618 6159 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
24c79950 6160
44ed8f3e 6161 mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
bbf2f4df 6162
44ed8f3e
PA
6163 dw2_expand_symtabs_matching_symbol (map, lookup_name,
6164 symbol_matcher,
6165 kind, [&] (offset_type namei)
927aa2e7 6166 {
927aa2e7
JK
6167 /* The name was matched, now expand corresponding CUs that were
6168 marked. */
6169 dw2_debug_names_iterator iter (map, kind, namei);
bbf2f4df 6170
927aa2e7
JK
6171 struct dwarf2_per_cu_data *per_cu;
6172 while ((per_cu = iter.next ()) != NULL)
6173 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
6174 expansion_notify);
44ed8f3e 6175 });
9291a0cd
TT
6176}
6177
927aa2e7 6178const struct quick_symbol_functions dwarf2_debug_names_functions =
9291a0cd
TT
6179{
6180 dw2_has_symbols,
6181 dw2_find_last_source_symtab,
6182 dw2_forget_cached_source_info,
f8eba3c6 6183 dw2_map_symtabs_matching_filename,
927aa2e7 6184 dw2_debug_names_lookup_symbol,
9291a0cd 6185 dw2_print_stats,
927aa2e7 6186 dw2_debug_names_dump,
927aa2e7 6187 dw2_debug_names_expand_symtabs_for_function,
9291a0cd 6188 dw2_expand_all_symtabs,
652a8996 6189 dw2_expand_symtabs_with_fullname,
40658b94 6190 dw2_map_matching_symbols,
927aa2e7 6191 dw2_debug_names_expand_symtabs_matching,
43f3e411 6192 dw2_find_pc_sect_compunit_symtab,
71a3c369 6193 NULL,
9291a0cd
TT
6194 dw2_map_symbol_filenames
6195};
6196
4485a1c1
SM
6197/* Get the content of the .gdb_index section of OBJ. SECTION_OWNER should point
6198 to either a dwarf2_per_objfile or dwz_file object. */
6199
6200template <typename T>
6201static gdb::array_view<const gdb_byte>
6202get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
6203{
6204 dwarf2_section_info *section = &section_owner->gdb_index;
6205
6206 if (dwarf2_section_empty_p (section))
6207 return {};
6208
6209 /* Older elfutils strip versions could keep the section in the main
6210 executable while splitting it for the separate debug info file. */
6211 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
6212 return {};
6213
6214 dwarf2_read_section (obj, section);
6215
8bebfcda
PA
6216 /* dwarf2_section_info::size is a bfd_size_type, while
6217 gdb::array_view works with size_t. On 32-bit hosts, with
6218 --enable-64-bit-bfd, bfd_size_type is a 64-bit type, while size_t
6219 is 32-bit. So we need an explicit narrowing conversion here.
6220 This is fine, because it's impossible to allocate or mmap an
6221 array/buffer larger than what size_t can represent. */
6222 return gdb::make_array_view (section->buffer, section->size);
4485a1c1
SM
6223}
6224
87d6a7aa
SM
6225/* Lookup the index cache for the contents of the index associated to
6226 DWARF2_OBJ. */
6227
6228static gdb::array_view<const gdb_byte>
6229get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_objfile *dwarf2_obj)
6230{
6231 const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
6232 if (build_id == nullptr)
6233 return {};
6234
6235 return global_index_cache.lookup_gdb_index (build_id,
6236 &dwarf2_obj->index_cache_res);
6237}
6238
6239/* Same as the above, but for DWZ. */
6240
6241static gdb::array_view<const gdb_byte>
6242get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
6243{
6244 const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
6245 if (build_id == nullptr)
6246 return {};
6247
6248 return global_index_cache.lookup_gdb_index (build_id, &dwz->index_cache_res);
6249}
6250
3c0aa29a 6251/* See symfile.h. */
9291a0cd 6252
3c0aa29a
PA
6253bool
6254dwarf2_initialize_objfile (struct objfile *objfile, dw_index_kind *index_kind)
9291a0cd 6255{
ed2dc618
SM
6256 struct dwarf2_per_objfile *dwarf2_per_objfile
6257 = get_dwarf2_per_objfile (objfile);
6258
9291a0cd
TT
6259 /* If we're about to read full symbols, don't bother with the
6260 indices. In this case we also don't care if some other debug
6261 format is making psymtabs, because they are all about to be
6262 expanded anyway. */
6263 if ((objfile->flags & OBJF_READNOW))
6264 {
9291a0cd 6265 dwarf2_per_objfile->using_index = 1;
ed2dc618
SM
6266 create_all_comp_units (dwarf2_per_objfile);
6267 create_all_type_units (dwarf2_per_objfile);
b76e467d
SM
6268 dwarf2_per_objfile->quick_file_names_table
6269 = create_quick_file_names_table
6270 (dwarf2_per_objfile->all_comp_units.size ());
9291a0cd 6271
b76e467d 6272 for (int i = 0; i < (dwarf2_per_objfile->all_comp_units.size ()
b2bdb8cf 6273 + dwarf2_per_objfile->all_type_units.size ()); ++i)
9291a0cd 6274 {
ff4c9fec 6275 dwarf2_per_cu_data *per_cu = dwarf2_per_objfile->get_cutu (i);
9291a0cd 6276
e254ef6a
DE
6277 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6278 struct dwarf2_per_cu_quick_data);
9291a0cd
TT
6279 }
6280
6281 /* Return 1 so that gdb sees the "quick" functions. However,
6282 these functions will be no-ops because we will have expanded
6283 all symtabs. */
3c0aa29a
PA
6284 *index_kind = dw_index_kind::GDB_INDEX;
6285 return true;
9291a0cd
TT
6286 }
6287
ed2dc618 6288 if (dwarf2_read_debug_names (dwarf2_per_objfile))
3c0aa29a
PA
6289 {
6290 *index_kind = dw_index_kind::DEBUG_NAMES;
6291 return true;
6292 }
927aa2e7 6293
4485a1c1
SM
6294 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
6295 get_gdb_index_contents_from_section<struct dwarf2_per_objfile>,
6296 get_gdb_index_contents_from_section<dwz_file>))
3c0aa29a
PA
6297 {
6298 *index_kind = dw_index_kind::GDB_INDEX;
6299 return true;
6300 }
9291a0cd 6301
87d6a7aa
SM
6302 /* ... otherwise, try to find the index in the index cache. */
6303 if (dwarf2_read_gdb_index (dwarf2_per_objfile,
6304 get_gdb_index_contents_from_cache,
6305 get_gdb_index_contents_from_cache_dwz))
6306 {
6307 global_index_cache.hit ();
6308 *index_kind = dw_index_kind::GDB_INDEX;
6309 return true;
6310 }
6311
6312 global_index_cache.miss ();
3c0aa29a 6313 return false;
9291a0cd
TT
6314}
6315
6316\f
6317
dce234bc
PP
6318/* Build a partial symbol table. */
6319
6320void
f29dff0a 6321dwarf2_build_psymtabs (struct objfile *objfile)
dce234bc 6322{
ed2dc618
SM
6323 struct dwarf2_per_objfile *dwarf2_per_objfile
6324 = get_dwarf2_per_objfile (objfile);
c9bf0622 6325
6eee24ce 6326 init_psymbol_list (objfile, 1024);
c906108c 6327
a70b8144 6328 try
c9bf0622
TT
6329 {
6330 /* This isn't really ideal: all the data we allocate on the
6331 objfile's obstack is still uselessly kept around. However,
6332 freeing it seems unsafe. */
906768f9 6333 psymtab_discarder psymtabs (objfile);
ed2dc618 6334 dwarf2_build_psymtabs_hard (dwarf2_per_objfile);
906768f9 6335 psymtabs.keep ();
87d6a7aa
SM
6336
6337 /* (maybe) store an index in the cache. */
6338 global_index_cache.store (dwarf2_per_objfile);
c9bf0622 6339 }
230d2906 6340 catch (const gdb_exception_error &except)
492d29ea
PA
6341 {
6342 exception_print (gdb_stderr, except);
6343 }
c906108c 6344}
c906108c 6345
1ce1cefd
DE
6346/* Return the total length of the CU described by HEADER. */
6347
6348static unsigned int
6349get_cu_length (const struct comp_unit_head *header)
6350{
6351 return header->initial_length_size + header->length;
6352}
6353
9c541725 6354/* Return TRUE if SECT_OFF is within CU_HEADER. */
45452591 6355
9c541725
PA
6356static inline bool
6357offset_in_cu_p (const comp_unit_head *cu_header, sect_offset sect_off)
45452591 6358{
9c541725
PA
6359 sect_offset bottom = cu_header->sect_off;
6360 sect_offset top = cu_header->sect_off + get_cu_length (cu_header);
9a619af0 6361
9c541725 6362 return sect_off >= bottom && sect_off < top;
45452591
DE
6363}
6364
3b80fe9b
DE
6365/* Find the base address of the compilation unit for range lists and
6366 location lists. It will normally be specified by DW_AT_low_pc.
6367 In DWARF-3 draft 4, the base address could be overridden by
6368 DW_AT_entry_pc. It's been removed, but GCC still uses this for
6369 compilation units with discontinuous ranges. */
6370
6371static void
6372dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
6373{
6374 struct attribute *attr;
6375
6376 cu->base_known = 0;
6377 cu->base_address = 0;
6378
6379 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
6380 if (attr)
6381 {
31aa7e4e 6382 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
6383 cu->base_known = 1;
6384 }
6385 else
6386 {
6387 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6388 if (attr)
6389 {
31aa7e4e 6390 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
6391 cu->base_known = 1;
6392 }
6393 }
6394}
6395
93311388 6396/* Read in the comp unit header information from the debug_info at info_ptr.
43988095 6397 Use rcuh_kind::COMPILE as the default type if not known by the caller.
93311388
DE
6398 NOTE: This leaves members offset, first_die_offset to be filled in
6399 by the caller. */
107d2387 6400
d521ce57 6401static const gdb_byte *
107d2387 6402read_comp_unit_head (struct comp_unit_head *cu_header,
43988095
JK
6403 const gdb_byte *info_ptr,
6404 struct dwarf2_section_info *section,
6405 rcuh_kind section_kind)
107d2387
AC
6406{
6407 int signed_addr;
891d2f0b 6408 unsigned int bytes_read;
43988095
JK
6409 const char *filename = get_section_file_name (section);
6410 bfd *abfd = get_section_bfd_owner (section);
c764a876
DE
6411
6412 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
6413 cu_header->initial_length_size = bytes_read;
6414 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
613e1657 6415 info_ptr += bytes_read;
107d2387 6416 cu_header->version = read_2_bytes (abfd, info_ptr);
1ea5da02
TV
6417 if (cu_header->version < 2 || cu_header->version > 5)
6418 error (_("Dwarf Error: wrong version in compilation unit header "
6419 "(is %d, should be 2, 3, 4 or 5) [in module %s]"),
6420 cu_header->version, filename);
107d2387 6421 info_ptr += 2;
43988095
JK
6422 if (cu_header->version < 5)
6423 switch (section_kind)
6424 {
6425 case rcuh_kind::COMPILE:
6426 cu_header->unit_type = DW_UT_compile;
6427 break;
6428 case rcuh_kind::TYPE:
6429 cu_header->unit_type = DW_UT_type;
6430 break;
6431 default:
6432 internal_error (__FILE__, __LINE__,
6433 _("read_comp_unit_head: invalid section_kind"));
6434 }
6435 else
6436 {
6437 cu_header->unit_type = static_cast<enum dwarf_unit_type>
6438 (read_1_byte (abfd, info_ptr));
6439 info_ptr += 1;
6440 switch (cu_header->unit_type)
6441 {
6442 case DW_UT_compile:
6443 if (section_kind != rcuh_kind::COMPILE)
6444 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6445 "(is DW_UT_compile, should be DW_UT_type) [in module %s]"),
6446 filename);
6447 break;
6448 case DW_UT_type:
6449 section_kind = rcuh_kind::TYPE;
6450 break;
6451 default:
6452 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6453 "(is %d, should be %d or %d) [in module %s]"),
6454 cu_header->unit_type, DW_UT_compile, DW_UT_type, filename);
6455 }
6456
6457 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6458 info_ptr += 1;
6459 }
9c541725
PA
6460 cu_header->abbrev_sect_off = (sect_offset) read_offset (abfd, info_ptr,
6461 cu_header,
6462 &bytes_read);
613e1657 6463 info_ptr += bytes_read;
43988095
JK
6464 if (cu_header->version < 5)
6465 {
6466 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6467 info_ptr += 1;
6468 }
107d2387
AC
6469 signed_addr = bfd_get_sign_extend_vma (abfd);
6470 if (signed_addr < 0)
8e65ff28 6471 internal_error (__FILE__, __LINE__,
e2e0b3e5 6472 _("read_comp_unit_head: dwarf from non elf file"));
107d2387 6473 cu_header->signed_addr_p = signed_addr;
c764a876 6474
43988095
JK
6475 if (section_kind == rcuh_kind::TYPE)
6476 {
6477 LONGEST type_offset;
6478
6479 cu_header->signature = read_8_bytes (abfd, info_ptr);
6480 info_ptr += 8;
6481
6482 type_offset = read_offset (abfd, info_ptr, cu_header, &bytes_read);
6483 info_ptr += bytes_read;
9c541725
PA
6484 cu_header->type_cu_offset_in_tu = (cu_offset) type_offset;
6485 if (to_underlying (cu_header->type_cu_offset_in_tu) != type_offset)
43988095
JK
6486 error (_("Dwarf Error: Too big type_offset in compilation unit "
6487 "header (is %s) [in module %s]"), plongest (type_offset),
6488 filename);
6489 }
6490
107d2387
AC
6491 return info_ptr;
6492}
6493
36586728
TT
6494/* Helper function that returns the proper abbrev section for
6495 THIS_CU. */
6496
6497static struct dwarf2_section_info *
6498get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
6499{
6500 struct dwarf2_section_info *abbrev;
ed2dc618 6501 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
36586728
TT
6502
6503 if (this_cu->is_dwz)
ed2dc618 6504 abbrev = &dwarf2_get_dwz_file (dwarf2_per_objfile)->abbrev;
36586728
TT
6505 else
6506 abbrev = &dwarf2_per_objfile->abbrev;
6507
6508 return abbrev;
6509}
6510
9ff913ba
DE
6511/* Subroutine of read_and_check_comp_unit_head and
6512 read_and_check_type_unit_head to simplify them.
6513 Perform various error checking on the header. */
6514
6515static void
ed2dc618
SM
6516error_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6517 struct comp_unit_head *header,
4bdcc0c1
DE
6518 struct dwarf2_section_info *section,
6519 struct dwarf2_section_info *abbrev_section)
9ff913ba 6520{
a32a8923 6521 const char *filename = get_section_file_name (section);
9ff913ba 6522
9c541725 6523 if (to_underlying (header->abbrev_sect_off)
36586728 6524 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
9d8780f0
SM
6525 error (_("Dwarf Error: bad offset (%s) in compilation unit header "
6526 "(offset %s + 6) [in module %s]"),
6527 sect_offset_str (header->abbrev_sect_off),
6528 sect_offset_str (header->sect_off),
9ff913ba
DE
6529 filename);
6530
9c541725 6531 /* Cast to ULONGEST to use 64-bit arithmetic when possible to
9ff913ba 6532 avoid potential 32-bit overflow. */
9c541725 6533 if (((ULONGEST) header->sect_off + get_cu_length (header))
9ff913ba 6534 > section->size)
9c541725 6535 error (_("Dwarf Error: bad length (0x%x) in compilation unit header "
9d8780f0
SM
6536 "(offset %s + 0) [in module %s]"),
6537 header->length, sect_offset_str (header->sect_off),
9ff913ba
DE
6538 filename);
6539}
6540
6541/* Read in a CU/TU header and perform some basic error checking.
6542 The contents of the header are stored in HEADER.
6543 The result is a pointer to the start of the first DIE. */
adabb602 6544
d521ce57 6545static const gdb_byte *
ed2dc618
SM
6546read_and_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6547 struct comp_unit_head *header,
9ff913ba 6548 struct dwarf2_section_info *section,
4bdcc0c1 6549 struct dwarf2_section_info *abbrev_section,
d521ce57 6550 const gdb_byte *info_ptr,
43988095 6551 rcuh_kind section_kind)
72bf9492 6552{
d521ce57 6553 const gdb_byte *beg_of_comp_unit = info_ptr;
72bf9492 6554
9c541725 6555 header->sect_off = (sect_offset) (beg_of_comp_unit - section->buffer);
adabb602 6556
43988095 6557 info_ptr = read_comp_unit_head (header, info_ptr, section, section_kind);
9ff913ba 6558
9c541725 6559 header->first_die_cu_offset = (cu_offset) (info_ptr - beg_of_comp_unit);
348e048f 6560
ed2dc618
SM
6561 error_check_comp_unit_head (dwarf2_per_objfile, header, section,
6562 abbrev_section);
9ff913ba
DE
6563
6564 return info_ptr;
348e048f
DE
6565}
6566
f4dc4d17
DE
6567/* Fetch the abbreviation table offset from a comp or type unit header. */
6568
6569static sect_offset
ed2dc618
SM
6570read_abbrev_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
6571 struct dwarf2_section_info *section,
9c541725 6572 sect_offset sect_off)
f4dc4d17 6573{
a32a8923 6574 bfd *abfd = get_section_bfd_owner (section);
d521ce57 6575 const gdb_byte *info_ptr;
ac298888 6576 unsigned int initial_length_size, offset_size;
43988095 6577 uint16_t version;
f4dc4d17
DE
6578
6579 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
9c541725 6580 info_ptr = section->buffer + to_underlying (sect_off);
ac298888 6581 read_initial_length (abfd, info_ptr, &initial_length_size);
f4dc4d17 6582 offset_size = initial_length_size == 4 ? 4 : 8;
43988095
JK
6583 info_ptr += initial_length_size;
6584
6585 version = read_2_bytes (abfd, info_ptr);
6586 info_ptr += 2;
6587 if (version >= 5)
6588 {
6589 /* Skip unit type and address size. */
6590 info_ptr += 2;
6591 }
6592
9c541725 6593 return (sect_offset) read_offset_1 (abfd, info_ptr, offset_size);
f4dc4d17
DE
6594}
6595
aaa75496
JB
6596/* Allocate a new partial symtab for file named NAME and mark this new
6597 partial symtab as being an include of PST. */
6598
6599static void
d521ce57 6600dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
aaa75496
JB
6601 struct objfile *objfile)
6602{
6603 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
6604
fbd9ab74
JK
6605 if (!IS_ABSOLUTE_PATH (subpst->filename))
6606 {
6607 /* It shares objfile->objfile_obstack. */
6608 subpst->dirname = pst->dirname;
6609 }
6610
a9342b62 6611 subpst->dependencies = objfile->partial_symtabs->allocate_dependencies (1);
aaa75496
JB
6612 subpst->dependencies[0] = pst;
6613 subpst->number_of_dependencies = 1;
6614
aaa75496 6615 subpst->read_symtab = pst->read_symtab;
aaa75496
JB
6616
6617 /* No private part is necessary for include psymtabs. This property
6618 can be used to differentiate between such include psymtabs and
10b3939b 6619 the regular ones. */
58a9656e 6620 subpst->read_symtab_private = NULL;
aaa75496
JB
6621}
6622
6623/* Read the Line Number Program data and extract the list of files
6624 included by the source file represented by PST. Build an include
d85a05f0 6625 partial symtab for each of these included files. */
aaa75496
JB
6626
6627static void
6628dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
dee91e82
DE
6629 struct die_info *die,
6630 struct partial_symtab *pst)
aaa75496 6631{
fff8551c 6632 line_header_up lh;
d85a05f0 6633 struct attribute *attr;
aaa75496 6634
d85a05f0
DJ
6635 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
6636 if (attr)
9c541725 6637 lh = dwarf_decode_line_header ((sect_offset) DW_UNSND (attr), cu);
aaa75496
JB
6638 if (lh == NULL)
6639 return; /* No linetable, so no includes. */
6640
79748972
TT
6641 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). Also note
6642 that we pass in the raw text_low here; that is ok because we're
6643 only decoding the line table to make include partial symtabs, and
6644 so the addresses aren't really used. */
4ae976d1 6645 dwarf_decode_lines (lh.get (), pst->dirname, cu, pst,
79748972 6646 pst->raw_text_low (), 1);
aaa75496
JB
6647}
6648
348e048f 6649static hashval_t
52dc124a 6650hash_signatured_type (const void *item)
348e048f 6651{
9a3c8263
SM
6652 const struct signatured_type *sig_type
6653 = (const struct signatured_type *) item;
9a619af0 6654
348e048f 6655 /* This drops the top 32 bits of the signature, but is ok for a hash. */
52dc124a 6656 return sig_type->signature;
348e048f
DE
6657}
6658
6659static int
52dc124a 6660eq_signatured_type (const void *item_lhs, const void *item_rhs)
348e048f 6661{
9a3c8263
SM
6662 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
6663 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
9a619af0 6664
348e048f
DE
6665 return lhs->signature == rhs->signature;
6666}
6667
1fd400ff
TT
6668/* Allocate a hash table for signatured types. */
6669
6670static htab_t
673bfd45 6671allocate_signatured_type_table (struct objfile *objfile)
1fd400ff
TT
6672{
6673 return htab_create_alloc_ex (41,
52dc124a
DE
6674 hash_signatured_type,
6675 eq_signatured_type,
1fd400ff
TT
6676 NULL,
6677 &objfile->objfile_obstack,
6678 hashtab_obstack_allocate,
6679 dummy_obstack_deallocate);
6680}
6681
d467dd73 6682/* A helper function to add a signatured type CU to a table. */
1fd400ff
TT
6683
6684static int
d467dd73 6685add_signatured_type_cu_to_table (void **slot, void *datum)
1fd400ff 6686{
9a3c8263 6687 struct signatured_type *sigt = (struct signatured_type *) *slot;
b2bdb8cf
SM
6688 std::vector<signatured_type *> *all_type_units
6689 = (std::vector<signatured_type *> *) datum;
1fd400ff 6690
b2bdb8cf 6691 all_type_units->push_back (sigt);
1fd400ff
TT
6692
6693 return 1;
6694}
6695
78d4d2c5 6696/* A helper for create_debug_types_hash_table. Read types from SECTION
43988095
JK
6697 and fill them into TYPES_HTAB. It will process only type units,
6698 therefore DW_UT_type. */
c88ee1f0 6699
78d4d2c5 6700static void
ed2dc618
SM
6701create_debug_type_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6702 struct dwo_file *dwo_file,
43988095
JK
6703 dwarf2_section_info *section, htab_t &types_htab,
6704 rcuh_kind section_kind)
348e048f 6705{
3019eac3 6706 struct objfile *objfile = dwarf2_per_objfile->objfile;
4bdcc0c1 6707 struct dwarf2_section_info *abbrev_section;
78d4d2c5
JK
6708 bfd *abfd;
6709 const gdb_byte *info_ptr, *end_ptr;
348e048f 6710
4bdcc0c1
DE
6711 abbrev_section = (dwo_file != NULL
6712 ? &dwo_file->sections.abbrev
6713 : &dwarf2_per_objfile->abbrev);
6714
b4f54984 6715 if (dwarf_read_debug)
43988095
JK
6716 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
6717 get_section_name (section),
a32a8923 6718 get_section_file_name (abbrev_section));
09406207 6719
78d4d2c5
JK
6720 dwarf2_read_section (objfile, section);
6721 info_ptr = section->buffer;
348e048f 6722
78d4d2c5
JK
6723 if (info_ptr == NULL)
6724 return;
348e048f 6725
78d4d2c5
JK
6726 /* We can't set abfd until now because the section may be empty or
6727 not present, in which case the bfd is unknown. */
6728 abfd = get_section_bfd_owner (section);
348e048f 6729
78d4d2c5
JK
6730 /* We don't use init_cutu_and_read_dies_simple, or some such, here
6731 because we don't need to read any dies: the signature is in the
6732 header. */
3019eac3 6733
78d4d2c5
JK
6734 end_ptr = info_ptr + section->size;
6735 while (info_ptr < end_ptr)
6736 {
78d4d2c5
JK
6737 struct signatured_type *sig_type;
6738 struct dwo_unit *dwo_tu;
6739 void **slot;
6740 const gdb_byte *ptr = info_ptr;
6741 struct comp_unit_head header;
6742 unsigned int length;
8b70b953 6743
9c541725 6744 sect_offset sect_off = (sect_offset) (ptr - section->buffer);
348e048f 6745
a49dd8dd
JK
6746 /* Initialize it due to a false compiler warning. */
6747 header.signature = -1;
9c541725 6748 header.type_cu_offset_in_tu = (cu_offset) -1;
a49dd8dd 6749
78d4d2c5
JK
6750 /* We need to read the type's signature in order to build the hash
6751 table, but we don't need anything else just yet. */
348e048f 6752
ed2dc618 6753 ptr = read_and_check_comp_unit_head (dwarf2_per_objfile, &header, section,
43988095 6754 abbrev_section, ptr, section_kind);
348e048f 6755
78d4d2c5 6756 length = get_cu_length (&header);
6caca83c 6757
78d4d2c5
JK
6758 /* Skip dummy type units. */
6759 if (ptr >= info_ptr + length
43988095
JK
6760 || peek_abbrev_code (abfd, ptr) == 0
6761 || header.unit_type != DW_UT_type)
78d4d2c5
JK
6762 {
6763 info_ptr += length;
6764 continue;
6765 }
dee91e82 6766
78d4d2c5
JK
6767 if (types_htab == NULL)
6768 {
6769 if (dwo_file)
6770 types_htab = allocate_dwo_unit_table (objfile);
6771 else
6772 types_htab = allocate_signatured_type_table (objfile);
6773 }
8b70b953 6774
78d4d2c5
JK
6775 if (dwo_file)
6776 {
6777 sig_type = NULL;
6778 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6779 struct dwo_unit);
6780 dwo_tu->dwo_file = dwo_file;
43988095 6781 dwo_tu->signature = header.signature;
9c541725 6782 dwo_tu->type_offset_in_tu = header.type_cu_offset_in_tu;
78d4d2c5 6783 dwo_tu->section = section;
9c541725 6784 dwo_tu->sect_off = sect_off;
78d4d2c5
JK
6785 dwo_tu->length = length;
6786 }
6787 else
6788 {
6789 /* N.B.: type_offset is not usable if this type uses a DWO file.
6790 The real type_offset is in the DWO file. */
6791 dwo_tu = NULL;
6792 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6793 struct signatured_type);
43988095 6794 sig_type->signature = header.signature;
9c541725 6795 sig_type->type_offset_in_tu = header.type_cu_offset_in_tu;
e3b94546 6796 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
78d4d2c5
JK
6797 sig_type->per_cu.is_debug_types = 1;
6798 sig_type->per_cu.section = section;
9c541725 6799 sig_type->per_cu.sect_off = sect_off;
78d4d2c5
JK
6800 sig_type->per_cu.length = length;
6801 }
6802
6803 slot = htab_find_slot (types_htab,
6804 dwo_file ? (void*) dwo_tu : (void *) sig_type,
6805 INSERT);
6806 gdb_assert (slot != NULL);
6807 if (*slot != NULL)
6808 {
9c541725 6809 sect_offset dup_sect_off;
0349ea22 6810
3019eac3
DE
6811 if (dwo_file)
6812 {
78d4d2c5
JK
6813 const struct dwo_unit *dup_tu
6814 = (const struct dwo_unit *) *slot;
6815
9c541725 6816 dup_sect_off = dup_tu->sect_off;
3019eac3
DE
6817 }
6818 else
6819 {
78d4d2c5
JK
6820 const struct signatured_type *dup_tu
6821 = (const struct signatured_type *) *slot;
6822
9c541725 6823 dup_sect_off = dup_tu->per_cu.sect_off;
3019eac3 6824 }
8b70b953 6825
b98664d3 6826 complaint (_("debug type entry at offset %s is duplicate to"
9d8780f0
SM
6827 " the entry at offset %s, signature %s"),
6828 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
43988095 6829 hex_string (header.signature));
78d4d2c5
JK
6830 }
6831 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
3019eac3 6832
78d4d2c5 6833 if (dwarf_read_debug > 1)
9d8780f0
SM
6834 fprintf_unfiltered (gdb_stdlog, " offset %s, signature %s\n",
6835 sect_offset_str (sect_off),
43988095 6836 hex_string (header.signature));
3019eac3 6837
78d4d2c5
JK
6838 info_ptr += length;
6839 }
6840}
3019eac3 6841
78d4d2c5
JK
6842/* Create the hash table of all entries in the .debug_types
6843 (or .debug_types.dwo) section(s).
6844 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
6845 otherwise it is NULL.
b3c8eb43 6846
78d4d2c5 6847 The result is a pointer to the hash table or NULL if there are no types.
348e048f 6848
78d4d2c5 6849 Note: This function processes DWO files only, not DWP files. */
348e048f 6850
78d4d2c5 6851static void
ed2dc618
SM
6852create_debug_types_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6853 struct dwo_file *dwo_file,
78d4d2c5
JK
6854 VEC (dwarf2_section_info_def) *types,
6855 htab_t &types_htab)
6856{
6857 int ix;
6858 struct dwarf2_section_info *section;
6859
6860 if (VEC_empty (dwarf2_section_info_def, types))
6861 return;
348e048f 6862
78d4d2c5
JK
6863 for (ix = 0;
6864 VEC_iterate (dwarf2_section_info_def, types, ix, section);
6865 ++ix)
ed2dc618
SM
6866 create_debug_type_hash_table (dwarf2_per_objfile, dwo_file, section,
6867 types_htab, rcuh_kind::TYPE);
3019eac3
DE
6868}
6869
6870/* Create the hash table of all entries in the .debug_types section,
6871 and initialize all_type_units.
6872 The result is zero if there is an error (e.g. missing .debug_types section),
6873 otherwise non-zero. */
6874
6875static int
ed2dc618 6876create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
3019eac3 6877{
78d4d2c5 6878 htab_t types_htab = NULL;
3019eac3 6879
ed2dc618
SM
6880 create_debug_type_hash_table (dwarf2_per_objfile, NULL,
6881 &dwarf2_per_objfile->info, types_htab,
43988095 6882 rcuh_kind::COMPILE);
ed2dc618
SM
6883 create_debug_types_hash_table (dwarf2_per_objfile, NULL,
6884 dwarf2_per_objfile->types, types_htab);
3019eac3
DE
6885 if (types_htab == NULL)
6886 {
6887 dwarf2_per_objfile->signatured_types = NULL;
6888 return 0;
6889 }
6890
348e048f
DE
6891 dwarf2_per_objfile->signatured_types = types_htab;
6892
b2bdb8cf
SM
6893 gdb_assert (dwarf2_per_objfile->all_type_units.empty ());
6894 dwarf2_per_objfile->all_type_units.reserve (htab_elements (types_htab));
6895
6896 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table,
6897 &dwarf2_per_objfile->all_type_units);
1fd400ff 6898
348e048f
DE
6899 return 1;
6900}
6901
6aa5f3a6
DE
6902/* Add an entry for signature SIG to dwarf2_per_objfile->signatured_types.
6903 If SLOT is non-NULL, it is the entry to use in the hash table.
6904 Otherwise we find one. */
6905
6906static struct signatured_type *
ed2dc618
SM
6907add_type_unit (struct dwarf2_per_objfile *dwarf2_per_objfile, ULONGEST sig,
6908 void **slot)
6aa5f3a6
DE
6909{
6910 struct objfile *objfile = dwarf2_per_objfile->objfile;
6aa5f3a6 6911
b2bdb8cf
SM
6912 if (dwarf2_per_objfile->all_type_units.size ()
6913 == dwarf2_per_objfile->all_type_units.capacity ())
6914 ++dwarf2_per_objfile->tu_stats.nr_all_type_units_reallocs;
6aa5f3a6 6915
b2bdb8cf
SM
6916 signatured_type *sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6917 struct signatured_type);
6918
6919 dwarf2_per_objfile->all_type_units.push_back (sig_type);
6aa5f3a6
DE
6920 sig_type->signature = sig;
6921 sig_type->per_cu.is_debug_types = 1;
6922 if (dwarf2_per_objfile->using_index)
6923 {
6924 sig_type->per_cu.v.quick =
6925 OBSTACK_ZALLOC (&objfile->objfile_obstack,
6926 struct dwarf2_per_cu_quick_data);
6927 }
6928
6929 if (slot == NULL)
6930 {
6931 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
6932 sig_type, INSERT);
6933 }
6934 gdb_assert (*slot == NULL);
6935 *slot = sig_type;
6936 /* The rest of sig_type must be filled in by the caller. */
6937 return sig_type;
6938}
6939
a2ce51a0
DE
6940/* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
6941 Fill in SIG_ENTRY with DWO_ENTRY. */
6942
6943static void
ed2dc618 6944fill_in_sig_entry_from_dwo_entry (struct dwarf2_per_objfile *dwarf2_per_objfile,
a2ce51a0
DE
6945 struct signatured_type *sig_entry,
6946 struct dwo_unit *dwo_entry)
6947{
7ee85ab1 6948 /* Make sure we're not clobbering something we don't expect to. */
a2ce51a0
DE
6949 gdb_assert (! sig_entry->per_cu.queued);
6950 gdb_assert (sig_entry->per_cu.cu == NULL);
6aa5f3a6
DE
6951 if (dwarf2_per_objfile->using_index)
6952 {
6953 gdb_assert (sig_entry->per_cu.v.quick != NULL);
43f3e411 6954 gdb_assert (sig_entry->per_cu.v.quick->compunit_symtab == NULL);
6aa5f3a6
DE
6955 }
6956 else
6957 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
a2ce51a0 6958 gdb_assert (sig_entry->signature == dwo_entry->signature);
9c541725 6959 gdb_assert (to_underlying (sig_entry->type_offset_in_section) == 0);
a2ce51a0 6960 gdb_assert (sig_entry->type_unit_group == NULL);
7ee85ab1
DE
6961 gdb_assert (sig_entry->dwo_unit == NULL);
6962
6963 sig_entry->per_cu.section = dwo_entry->section;
9c541725 6964 sig_entry->per_cu.sect_off = dwo_entry->sect_off;
7ee85ab1
DE
6965 sig_entry->per_cu.length = dwo_entry->length;
6966 sig_entry->per_cu.reading_dwo_directly = 1;
e3b94546 6967 sig_entry->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
a2ce51a0
DE
6968 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
6969 sig_entry->dwo_unit = dwo_entry;
6970}
6971
6972/* Subroutine of lookup_signatured_type.
7ee85ab1
DE
6973 If we haven't read the TU yet, create the signatured_type data structure
6974 for a TU to be read in directly from a DWO file, bypassing the stub.
6975 This is the "Stay in DWO Optimization": When there is no DWP file and we're
6976 using .gdb_index, then when reading a CU we want to stay in the DWO file
6977 containing that CU. Otherwise we could end up reading several other DWO
6978 files (due to comdat folding) to process the transitive closure of all the
6979 mentioned TUs, and that can be slow. The current DWO file will have every
6980 type signature that it needs.
a2ce51a0
DE
6981 We only do this for .gdb_index because in the psymtab case we already have
6982 to read all the DWOs to build the type unit groups. */
6983
6984static struct signatured_type *
6985lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6986{
518817b3
SM
6987 struct dwarf2_per_objfile *dwarf2_per_objfile
6988 = cu->per_cu->dwarf2_per_objfile;
a2ce51a0
DE
6989 struct objfile *objfile = dwarf2_per_objfile->objfile;
6990 struct dwo_file *dwo_file;
6991 struct dwo_unit find_dwo_entry, *dwo_entry;
6992 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6993 void **slot;
a2ce51a0
DE
6994
6995 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
6996
6aa5f3a6
DE
6997 /* If TU skeletons have been removed then we may not have read in any
6998 TUs yet. */
6999 if (dwarf2_per_objfile->signatured_types == NULL)
7000 {
7001 dwarf2_per_objfile->signatured_types
7002 = allocate_signatured_type_table (objfile);
7003 }
a2ce51a0
DE
7004
7005 /* We only ever need to read in one copy of a signatured type.
6aa5f3a6
DE
7006 Use the global signatured_types array to do our own comdat-folding
7007 of types. If this is the first time we're reading this TU, and
7008 the TU has an entry in .gdb_index, replace the recorded data from
7009 .gdb_index with this TU. */
a2ce51a0 7010
a2ce51a0 7011 find_sig_entry.signature = sig;
6aa5f3a6
DE
7012 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
7013 &find_sig_entry, INSERT);
9a3c8263 7014 sig_entry = (struct signatured_type *) *slot;
7ee85ab1
DE
7015
7016 /* We can get here with the TU already read, *or* in the process of being
6aa5f3a6
DE
7017 read. Don't reassign the global entry to point to this DWO if that's
7018 the case. Also note that if the TU is already being read, it may not
7019 have come from a DWO, the program may be a mix of Fission-compiled
7020 code and non-Fission-compiled code. */
7021
7022 /* Have we already tried to read this TU?
7023 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
7024 needn't exist in the global table yet). */
7025 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
a2ce51a0
DE
7026 return sig_entry;
7027
6aa5f3a6
DE
7028 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
7029 dwo_unit of the TU itself. */
7030 dwo_file = cu->dwo_unit->dwo_file;
7031
a2ce51a0
DE
7032 /* Ok, this is the first time we're reading this TU. */
7033 if (dwo_file->tus == NULL)
7034 return NULL;
7035 find_dwo_entry.signature = sig;
9a3c8263 7036 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_entry);
a2ce51a0
DE
7037 if (dwo_entry == NULL)
7038 return NULL;
7039
6aa5f3a6
DE
7040 /* If the global table doesn't have an entry for this TU, add one. */
7041 if (sig_entry == NULL)
ed2dc618 7042 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
6aa5f3a6 7043
ed2dc618 7044 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
89e63ee4 7045 sig_entry->per_cu.tu_read = 1;
a2ce51a0
DE
7046 return sig_entry;
7047}
7048
a2ce51a0
DE
7049/* Subroutine of lookup_signatured_type.
7050 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
6aa5f3a6
DE
7051 then try the DWP file. If the TU stub (skeleton) has been removed then
7052 it won't be in .gdb_index. */
a2ce51a0
DE
7053
7054static struct signatured_type *
7055lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
7056{
518817b3
SM
7057 struct dwarf2_per_objfile *dwarf2_per_objfile
7058 = cu->per_cu->dwarf2_per_objfile;
a2ce51a0 7059 struct objfile *objfile = dwarf2_per_objfile->objfile;
ed2dc618 7060 struct dwp_file *dwp_file = get_dwp_file (dwarf2_per_objfile);
a2ce51a0
DE
7061 struct dwo_unit *dwo_entry;
7062 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 7063 void **slot;
a2ce51a0
DE
7064
7065 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
7066 gdb_assert (dwp_file != NULL);
7067
6aa5f3a6
DE
7068 /* If TU skeletons have been removed then we may not have read in any
7069 TUs yet. */
7070 if (dwarf2_per_objfile->signatured_types == NULL)
a2ce51a0 7071 {
6aa5f3a6
DE
7072 dwarf2_per_objfile->signatured_types
7073 = allocate_signatured_type_table (objfile);
a2ce51a0
DE
7074 }
7075
6aa5f3a6
DE
7076 find_sig_entry.signature = sig;
7077 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
7078 &find_sig_entry, INSERT);
9a3c8263 7079 sig_entry = (struct signatured_type *) *slot;
6aa5f3a6
DE
7080
7081 /* Have we already tried to read this TU?
7082 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
7083 needn't exist in the global table yet). */
7084 if (sig_entry != NULL)
7085 return sig_entry;
7086
a2ce51a0
DE
7087 if (dwp_file->tus == NULL)
7088 return NULL;
ed2dc618 7089 dwo_entry = lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, NULL,
57d63ce2 7090 sig, 1 /* is_debug_types */);
a2ce51a0
DE
7091 if (dwo_entry == NULL)
7092 return NULL;
7093
ed2dc618
SM
7094 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
7095 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
a2ce51a0 7096
a2ce51a0
DE
7097 return sig_entry;
7098}
7099
380bca97 7100/* Lookup a signature based type for DW_FORM_ref_sig8.
5a8b3f62
DE
7101 Returns NULL if signature SIG is not present in the table.
7102 It is up to the caller to complain about this. */
348e048f
DE
7103
7104static struct signatured_type *
a2ce51a0 7105lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
348e048f 7106{
518817b3
SM
7107 struct dwarf2_per_objfile *dwarf2_per_objfile
7108 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 7109
a2ce51a0
DE
7110 if (cu->dwo_unit
7111 && dwarf2_per_objfile->using_index)
7112 {
7113 /* We're in a DWO/DWP file, and we're using .gdb_index.
7114 These cases require special processing. */
ed2dc618 7115 if (get_dwp_file (dwarf2_per_objfile) == NULL)
a2ce51a0
DE
7116 return lookup_dwo_signatured_type (cu, sig);
7117 else
7118 return lookup_dwp_signatured_type (cu, sig);
7119 }
7120 else
7121 {
7122 struct signatured_type find_entry, *entry;
348e048f 7123
a2ce51a0
DE
7124 if (dwarf2_per_objfile->signatured_types == NULL)
7125 return NULL;
7126 find_entry.signature = sig;
9a3c8263
SM
7127 entry = ((struct signatured_type *)
7128 htab_find (dwarf2_per_objfile->signatured_types, &find_entry));
a2ce51a0
DE
7129 return entry;
7130 }
348e048f 7131}
42e7ad6c
DE
7132\f
7133/* Low level DIE reading support. */
348e048f 7134
d85a05f0
DJ
7135/* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
7136
7137static void
7138init_cu_die_reader (struct die_reader_specs *reader,
dee91e82 7139 struct dwarf2_cu *cu,
3019eac3 7140 struct dwarf2_section_info *section,
685af9cd
TT
7141 struct dwo_file *dwo_file,
7142 struct abbrev_table *abbrev_table)
d85a05f0 7143{
fceca515 7144 gdb_assert (section->readin && section->buffer != NULL);
a32a8923 7145 reader->abfd = get_section_bfd_owner (section);
d85a05f0 7146 reader->cu = cu;
3019eac3 7147 reader->dwo_file = dwo_file;
dee91e82
DE
7148 reader->die_section = section;
7149 reader->buffer = section->buffer;
f664829e 7150 reader->buffer_end = section->buffer + section->size;
a2ce51a0 7151 reader->comp_dir = NULL;
685af9cd 7152 reader->abbrev_table = abbrev_table;
d85a05f0
DJ
7153}
7154
b0c7bfa9
DE
7155/* Subroutine of init_cutu_and_read_dies to simplify it.
7156 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
7157 There's just a lot of work to do, and init_cutu_and_read_dies is big enough
7158 already.
7159
7160 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
7161 from it to the DIE in the DWO. If NULL we are skipping the stub.
a2ce51a0
DE
7162 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
7163 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
c54a1dd8
DE
7164 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
7165 STUB_COMP_DIR may be non-NULL.
b0c7bfa9
DE
7166 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
7167 are filled in with the info of the DIE from the DWO file.
685af9cd
TT
7168 *RESULT_DWO_ABBREV_TABLE will be filled in with the abbrev table allocated
7169 from the dwo. Since *RESULT_READER references this abbrev table, it must be
7170 kept around for at least as long as *RESULT_READER.
7171
b0c7bfa9
DE
7172 The result is non-zero if a valid (non-dummy) DIE was found. */
7173
7174static int
7175read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
7176 struct dwo_unit *dwo_unit,
b0c7bfa9 7177 struct die_info *stub_comp_unit_die,
a2ce51a0 7178 const char *stub_comp_dir,
b0c7bfa9 7179 struct die_reader_specs *result_reader,
d521ce57 7180 const gdb_byte **result_info_ptr,
b0c7bfa9 7181 struct die_info **result_comp_unit_die,
685af9cd
TT
7182 int *result_has_children,
7183 abbrev_table_up *result_dwo_abbrev_table)
b0c7bfa9 7184{
ed2dc618 7185 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
b0c7bfa9
DE
7186 struct objfile *objfile = dwarf2_per_objfile->objfile;
7187 struct dwarf2_cu *cu = this_cu->cu;
b0c7bfa9 7188 bfd *abfd;
d521ce57 7189 const gdb_byte *begin_info_ptr, *info_ptr;
b0c7bfa9
DE
7190 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
7191 int i,num_extra_attrs;
7192 struct dwarf2_section_info *dwo_abbrev_section;
7193 struct attribute *attr;
7194 struct die_info *comp_unit_die;
7195
b0aeadb3
DE
7196 /* At most one of these may be provided. */
7197 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
a2ce51a0 7198
b0c7bfa9
DE
7199 /* These attributes aren't processed until later:
7200 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
0d60c288
DE
7201 DW_AT_comp_dir is used now, to find the DWO file, but it is also
7202 referenced later. However, these attributes are found in the stub
7203 which we won't have later. In order to not impose this complication
7204 on the rest of the code, we read them here and copy them to the
7205 DWO CU/TU die. */
b0c7bfa9
DE
7206
7207 stmt_list = NULL;
7208 low_pc = NULL;
7209 high_pc = NULL;
7210 ranges = NULL;
7211 comp_dir = NULL;
7212
7213 if (stub_comp_unit_die != NULL)
7214 {
7215 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
7216 DWO file. */
7217 if (! this_cu->is_debug_types)
7218 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
7219 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
7220 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
7221 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
7222 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
7223
7224 /* There should be a DW_AT_addr_base attribute here (if needed).
336d760d
AT
7225 We need the value before we can process DW_FORM_GNU_addr_index
7226 or DW_FORM_addrx. */
b0c7bfa9
DE
7227 cu->addr_base = 0;
7228 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
7229 if (attr)
7230 cu->addr_base = DW_UNSND (attr);
7231
7232 /* There should be a DW_AT_ranges_base attribute here (if needed).
7233 We need the value before we can process DW_AT_ranges. */
7234 cu->ranges_base = 0;
7235 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
7236 if (attr)
7237 cu->ranges_base = DW_UNSND (attr);
7238 }
a2ce51a0
DE
7239 else if (stub_comp_dir != NULL)
7240 {
7241 /* Reconstruct the comp_dir attribute to simplify the code below. */
8d749320 7242 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
a2ce51a0
DE
7243 comp_dir->name = DW_AT_comp_dir;
7244 comp_dir->form = DW_FORM_string;
7245 DW_STRING_IS_CANONICAL (comp_dir) = 0;
7246 DW_STRING (comp_dir) = stub_comp_dir;
7247 }
b0c7bfa9
DE
7248
7249 /* Set up for reading the DWO CU/TU. */
7250 cu->dwo_unit = dwo_unit;
685af9cd 7251 dwarf2_section_info *section = dwo_unit->section;
b0c7bfa9 7252 dwarf2_read_section (objfile, section);
a32a8923 7253 abfd = get_section_bfd_owner (section);
9c541725
PA
7254 begin_info_ptr = info_ptr = (section->buffer
7255 + to_underlying (dwo_unit->sect_off));
b0c7bfa9 7256 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
b0c7bfa9
DE
7257
7258 if (this_cu->is_debug_types)
7259 {
b0c7bfa9
DE
7260 struct signatured_type *sig_type = (struct signatured_type *) this_cu;
7261
ed2dc618
SM
7262 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7263 &cu->header, section,
b0c7bfa9 7264 dwo_abbrev_section,
43988095 7265 info_ptr, rcuh_kind::TYPE);
a2ce51a0 7266 /* This is not an assert because it can be caused by bad debug info. */
43988095 7267 if (sig_type->signature != cu->header.signature)
a2ce51a0
DE
7268 {
7269 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
9d8780f0 7270 " TU at offset %s [in module %s]"),
a2ce51a0 7271 hex_string (sig_type->signature),
43988095 7272 hex_string (cu->header.signature),
9d8780f0 7273 sect_offset_str (dwo_unit->sect_off),
a2ce51a0
DE
7274 bfd_get_filename (abfd));
7275 }
9c541725 7276 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
7277 /* For DWOs coming from DWP files, we don't know the CU length
7278 nor the type's offset in the TU until now. */
7279 dwo_unit->length = get_cu_length (&cu->header);
9c541725 7280 dwo_unit->type_offset_in_tu = cu->header.type_cu_offset_in_tu;
b0c7bfa9
DE
7281
7282 /* Establish the type offset that can be used to lookup the type.
7283 For DWO files, we don't know it until now. */
9c541725
PA
7284 sig_type->type_offset_in_section
7285 = dwo_unit->sect_off + to_underlying (dwo_unit->type_offset_in_tu);
b0c7bfa9
DE
7286 }
7287 else
7288 {
ed2dc618
SM
7289 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7290 &cu->header, section,
b0c7bfa9 7291 dwo_abbrev_section,
43988095 7292 info_ptr, rcuh_kind::COMPILE);
9c541725 7293 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
7294 /* For DWOs coming from DWP files, we don't know the CU length
7295 until now. */
7296 dwo_unit->length = get_cu_length (&cu->header);
7297 }
7298
685af9cd
TT
7299 *result_dwo_abbrev_table
7300 = abbrev_table_read_table (dwarf2_per_objfile, dwo_abbrev_section,
7301 cu->header.abbrev_sect_off);
7302 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file,
7303 result_dwo_abbrev_table->get ());
b0c7bfa9
DE
7304
7305 /* Read in the die, but leave space to copy over the attributes
7306 from the stub. This has the benefit of simplifying the rest of
7307 the code - all the work to maintain the illusion of a single
7308 DW_TAG_{compile,type}_unit DIE is done here. */
7309 num_extra_attrs = ((stmt_list != NULL)
7310 + (low_pc != NULL)
7311 + (high_pc != NULL)
7312 + (ranges != NULL)
7313 + (comp_dir != NULL));
7314 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
7315 result_has_children, num_extra_attrs);
7316
7317 /* Copy over the attributes from the stub to the DIE we just read in. */
7318 comp_unit_die = *result_comp_unit_die;
7319 i = comp_unit_die->num_attrs;
7320 if (stmt_list != NULL)
7321 comp_unit_die->attrs[i++] = *stmt_list;
7322 if (low_pc != NULL)
7323 comp_unit_die->attrs[i++] = *low_pc;
7324 if (high_pc != NULL)
7325 comp_unit_die->attrs[i++] = *high_pc;
7326 if (ranges != NULL)
7327 comp_unit_die->attrs[i++] = *ranges;
7328 if (comp_dir != NULL)
7329 comp_unit_die->attrs[i++] = *comp_dir;
7330 comp_unit_die->num_attrs += num_extra_attrs;
7331
b4f54984 7332 if (dwarf_die_debug)
bf6af496
DE
7333 {
7334 fprintf_unfiltered (gdb_stdlog,
7335 "Read die from %s@0x%x of %s:\n",
a32a8923 7336 get_section_name (section),
bf6af496
DE
7337 (unsigned) (begin_info_ptr - section->buffer),
7338 bfd_get_filename (abfd));
b4f54984 7339 dump_die (comp_unit_die, dwarf_die_debug);
bf6af496
DE
7340 }
7341
a2ce51a0
DE
7342 /* Save the comp_dir attribute. If there is no DWP file then we'll read
7343 TUs by skipping the stub and going directly to the entry in the DWO file.
7344 However, skipping the stub means we won't get DW_AT_comp_dir, so we have
7345 to get it via circuitous means. Blech. */
7346 if (comp_dir != NULL)
7347 result_reader->comp_dir = DW_STRING (comp_dir);
7348
b0c7bfa9
DE
7349 /* Skip dummy compilation units. */
7350 if (info_ptr >= begin_info_ptr + dwo_unit->length
7351 || peek_abbrev_code (abfd, info_ptr) == 0)
7352 return 0;
7353
7354 *result_info_ptr = info_ptr;
7355 return 1;
7356}
7357
7358/* Subroutine of init_cutu_and_read_dies to simplify it.
7359 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
6a506a2d 7360 Returns NULL if the specified DWO unit cannot be found. */
b0c7bfa9
DE
7361
7362static struct dwo_unit *
7363lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
7364 struct die_info *comp_unit_die)
7365{
7366 struct dwarf2_cu *cu = this_cu->cu;
b0c7bfa9
DE
7367 ULONGEST signature;
7368 struct dwo_unit *dwo_unit;
7369 const char *comp_dir, *dwo_name;
7370
a2ce51a0
DE
7371 gdb_assert (cu != NULL);
7372
b0c7bfa9 7373 /* Yeah, we look dwo_name up again, but it simplifies the code. */
7d45c7c3
KB
7374 dwo_name = dwarf2_string_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
7375 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
b0c7bfa9
DE
7376
7377 if (this_cu->is_debug_types)
7378 {
7379 struct signatured_type *sig_type;
7380
7381 /* Since this_cu is the first member of struct signatured_type,
7382 we can go from a pointer to one to a pointer to the other. */
7383 sig_type = (struct signatured_type *) this_cu;
7384 signature = sig_type->signature;
7385 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
7386 }
7387 else
7388 {
7389 struct attribute *attr;
7390
7391 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
7392 if (! attr)
7393 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
7394 " [in module %s]"),
e3b94546 7395 dwo_name, objfile_name (this_cu->dwarf2_per_objfile->objfile));
b0c7bfa9
DE
7396 signature = DW_UNSND (attr);
7397 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
7398 signature);
7399 }
7400
b0c7bfa9
DE
7401 return dwo_unit;
7402}
7403
a2ce51a0 7404/* Subroutine of init_cutu_and_read_dies to simplify it.
6aa5f3a6 7405 See it for a description of the parameters.
fcd3b13d 7406 Read a TU directly from a DWO file, bypassing the stub. */
a2ce51a0
DE
7407
7408static void
6aa5f3a6
DE
7409init_tu_and_read_dwo_dies (struct dwarf2_per_cu_data *this_cu,
7410 int use_existing_cu, int keep,
a2ce51a0
DE
7411 die_reader_func_ftype *die_reader_func,
7412 void *data)
7413{
fcd3b13d 7414 std::unique_ptr<dwarf2_cu> new_cu;
a2ce51a0 7415 struct signatured_type *sig_type;
a2ce51a0
DE
7416 struct die_reader_specs reader;
7417 const gdb_byte *info_ptr;
7418 struct die_info *comp_unit_die;
7419 int has_children;
ed2dc618 7420 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
a2ce51a0
DE
7421
7422 /* Verify we can do the following downcast, and that we have the
7423 data we need. */
7424 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
7425 sig_type = (struct signatured_type *) this_cu;
7426 gdb_assert (sig_type->dwo_unit != NULL);
7427
6aa5f3a6
DE
7428 if (use_existing_cu && this_cu->cu != NULL)
7429 {
7430 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
6aa5f3a6
DE
7431 /* There's no need to do the rereading_dwo_cu handling that
7432 init_cutu_and_read_dies does since we don't read the stub. */
7433 }
7434 else
7435 {
7436 /* If !use_existing_cu, this_cu->cu must be NULL. */
7437 gdb_assert (this_cu->cu == NULL);
fcd3b13d 7438 new_cu.reset (new dwarf2_cu (this_cu));
6aa5f3a6
DE
7439 }
7440
7441 /* A future optimization, if needed, would be to use an existing
7442 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
7443 could share abbrev tables. */
a2ce51a0 7444
685af9cd
TT
7445 /* The abbreviation table used by READER, this must live at least as long as
7446 READER. */
7447 abbrev_table_up dwo_abbrev_table;
7448
a2ce51a0 7449 if (read_cutu_die_from_dwo (this_cu, sig_type->dwo_unit,
a2ce51a0
DE
7450 NULL /* stub_comp_unit_die */,
7451 sig_type->dwo_unit->dwo_file->comp_dir,
7452 &reader, &info_ptr,
685af9cd
TT
7453 &comp_unit_die, &has_children,
7454 &dwo_abbrev_table) == 0)
a2ce51a0
DE
7455 {
7456 /* Dummy die. */
a2ce51a0
DE
7457 return;
7458 }
7459
7460 /* All the "real" work is done here. */
7461 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7462
6aa5f3a6 7463 /* This duplicates the code in init_cutu_and_read_dies,
a2ce51a0
DE
7464 but the alternative is making the latter more complex.
7465 This function is only for the special case of using DWO files directly:
7466 no point in overly complicating the general case just to handle this. */
fcd3b13d 7467 if (new_cu != NULL && keep)
a2ce51a0 7468 {
fcd3b13d
SM
7469 /* Link this CU into read_in_chain. */
7470 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7471 dwarf2_per_objfile->read_in_chain = this_cu;
7472 /* The chain owns it now. */
7473 new_cu.release ();
a2ce51a0 7474 }
a2ce51a0
DE
7475}
7476
fd820528 7477/* Initialize a CU (or TU) and read its DIEs.
3019eac3 7478 If the CU defers to a DWO file, read the DWO file as well.
dee91e82 7479
f4dc4d17
DE
7480 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
7481 Otherwise the table specified in the comp unit header is read in and used.
7482 This is an optimization for when we already have the abbrev table.
7483
dee91e82
DE
7484 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
7485 Otherwise, a new CU is allocated with xmalloc.
7486
7487 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
7488 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
7489
7490 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
fd820528 7491 linker) then DIE_READER_FUNC will not get called. */
aaa75496 7492
70221824 7493static void
fd820528 7494init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
f4dc4d17 7495 struct abbrev_table *abbrev_table,
fd820528 7496 int use_existing_cu, int keep,
58f0c718 7497 bool skip_partial,
fd820528
DE
7498 die_reader_func_ftype *die_reader_func,
7499 void *data)
c906108c 7500{
ed2dc618 7501 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
dee91e82 7502 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 7503 struct dwarf2_section_info *section = this_cu->section;
a32a8923 7504 bfd *abfd = get_section_bfd_owner (section);
dee91e82 7505 struct dwarf2_cu *cu;
d521ce57 7506 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7507 struct die_reader_specs reader;
d85a05f0 7508 struct die_info *comp_unit_die;
dee91e82 7509 int has_children;
d85a05f0 7510 struct attribute *attr;
dee91e82 7511 struct signatured_type *sig_type = NULL;
4bdcc0c1 7512 struct dwarf2_section_info *abbrev_section;
42e7ad6c
DE
7513 /* Non-zero if CU currently points to a DWO file and we need to
7514 reread it. When this happens we need to reread the skeleton die
a2ce51a0 7515 before we can reread the DWO file (this only applies to CUs, not TUs). */
42e7ad6c 7516 int rereading_dwo_cu = 0;
c906108c 7517
b4f54984 7518 if (dwarf_die_debug)
9d8780f0 7519 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7520 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7521 sect_offset_str (this_cu->sect_off));
09406207 7522
dee91e82
DE
7523 if (use_existing_cu)
7524 gdb_assert (keep);
23745b47 7525
a2ce51a0
DE
7526 /* If we're reading a TU directly from a DWO file, including a virtual DWO
7527 file (instead of going through the stub), short-circuit all of this. */
7528 if (this_cu->reading_dwo_directly)
7529 {
7530 /* Narrow down the scope of possibilities to have to understand. */
7531 gdb_assert (this_cu->is_debug_types);
7532 gdb_assert (abbrev_table == NULL);
6aa5f3a6
DE
7533 init_tu_and_read_dwo_dies (this_cu, use_existing_cu, keep,
7534 die_reader_func, data);
a2ce51a0
DE
7535 return;
7536 }
7537
dee91e82
DE
7538 /* This is cheap if the section is already read in. */
7539 dwarf2_read_section (objfile, section);
7540
9c541725 7541 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
36586728
TT
7542
7543 abbrev_section = get_abbrev_section_for_cu (this_cu);
dee91e82 7544
fcd3b13d 7545 std::unique_ptr<dwarf2_cu> new_cu;
dee91e82
DE
7546 if (use_existing_cu && this_cu->cu != NULL)
7547 {
7548 cu = this_cu->cu;
42e7ad6c
DE
7549 /* If this CU is from a DWO file we need to start over, we need to
7550 refetch the attributes from the skeleton CU.
7551 This could be optimized by retrieving those attributes from when we
7552 were here the first time: the previous comp_unit_die was stored in
7553 comp_unit_obstack. But there's no data yet that we need this
7554 optimization. */
7555 if (cu->dwo_unit != NULL)
7556 rereading_dwo_cu = 1;
dee91e82
DE
7557 }
7558 else
7559 {
7560 /* If !use_existing_cu, this_cu->cu must be NULL. */
7561 gdb_assert (this_cu->cu == NULL);
fcd3b13d
SM
7562 new_cu.reset (new dwarf2_cu (this_cu));
7563 cu = new_cu.get ();
42e7ad6c 7564 }
dee91e82 7565
b0c7bfa9 7566 /* Get the header. */
9c541725 7567 if (to_underlying (cu->header.first_die_cu_offset) != 0 && !rereading_dwo_cu)
42e7ad6c
DE
7568 {
7569 /* We already have the header, there's no need to read it in again. */
9c541725 7570 info_ptr += to_underlying (cu->header.first_die_cu_offset);
42e7ad6c
DE
7571 }
7572 else
7573 {
3019eac3 7574 if (this_cu->is_debug_types)
dee91e82 7575 {
ed2dc618
SM
7576 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7577 &cu->header, section,
4bdcc0c1 7578 abbrev_section, info_ptr,
43988095 7579 rcuh_kind::TYPE);
dee91e82 7580
42e7ad6c
DE
7581 /* Since per_cu is the first member of struct signatured_type,
7582 we can go from a pointer to one to a pointer to the other. */
7583 sig_type = (struct signatured_type *) this_cu;
43988095 7584 gdb_assert (sig_type->signature == cu->header.signature);
9c541725
PA
7585 gdb_assert (sig_type->type_offset_in_tu
7586 == cu->header.type_cu_offset_in_tu);
7587 gdb_assert (this_cu->sect_off == cu->header.sect_off);
dee91e82 7588
42e7ad6c
DE
7589 /* LENGTH has not been set yet for type units if we're
7590 using .gdb_index. */
1ce1cefd 7591 this_cu->length = get_cu_length (&cu->header);
3019eac3
DE
7592
7593 /* Establish the type offset that can be used to lookup the type. */
9c541725
PA
7594 sig_type->type_offset_in_section =
7595 this_cu->sect_off + to_underlying (sig_type->type_offset_in_tu);
43988095
JK
7596
7597 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7598 }
7599 else
7600 {
ed2dc618
SM
7601 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7602 &cu->header, section,
4bdcc0c1 7603 abbrev_section,
43988095
JK
7604 info_ptr,
7605 rcuh_kind::COMPILE);
dee91e82 7606
9c541725 7607 gdb_assert (this_cu->sect_off == cu->header.sect_off);
1ce1cefd 7608 gdb_assert (this_cu->length == get_cu_length (&cu->header));
43988095 7609 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7610 }
7611 }
10b3939b 7612
6caca83c 7613 /* Skip dummy compilation units. */
dee91e82 7614 if (info_ptr >= begin_info_ptr + this_cu->length
6caca83c 7615 || peek_abbrev_code (abfd, info_ptr) == 0)
fcd3b13d 7616 return;
6caca83c 7617
433df2d4
DE
7618 /* If we don't have them yet, read the abbrevs for this compilation unit.
7619 And if we need to read them now, make sure they're freed when we're
685af9cd
TT
7620 done (own the table through ABBREV_TABLE_HOLDER). */
7621 abbrev_table_up abbrev_table_holder;
f4dc4d17 7622 if (abbrev_table != NULL)
685af9cd
TT
7623 gdb_assert (cu->header.abbrev_sect_off == abbrev_table->sect_off);
7624 else
f4dc4d17 7625 {
685af9cd
TT
7626 abbrev_table_holder
7627 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7628 cu->header.abbrev_sect_off);
7629 abbrev_table = abbrev_table_holder.get ();
42e7ad6c 7630 }
af703f96 7631
dee91e82 7632 /* Read the top level CU/TU die. */
685af9cd 7633 init_cu_die_reader (&reader, cu, section, NULL, abbrev_table);
dee91e82 7634 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
93311388 7635
58f0c718
TT
7636 if (skip_partial && comp_unit_die->tag == DW_TAG_partial_unit)
7637 return;
7638
b0c7bfa9 7639 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
685af9cd
TT
7640 from the DWO file. read_cutu_die_from_dwo will allocate the abbreviation
7641 table from the DWO file and pass the ownership over to us. It will be
7642 referenced from READER, so we must make sure to free it after we're done
7643 with READER.
7644
b0c7bfa9
DE
7645 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
7646 DWO CU, that this test will fail (the attribute will not be present). */
3019eac3 7647 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
685af9cd 7648 abbrev_table_up dwo_abbrev_table;
3019eac3
DE
7649 if (attr)
7650 {
3019eac3 7651 struct dwo_unit *dwo_unit;
b0c7bfa9 7652 struct die_info *dwo_comp_unit_die;
3019eac3
DE
7653
7654 if (has_children)
6a506a2d 7655 {
b98664d3 7656 complaint (_("compilation unit with DW_AT_GNU_dwo_name"
9d8780f0
SM
7657 " has children (offset %s) [in module %s]"),
7658 sect_offset_str (this_cu->sect_off),
7659 bfd_get_filename (abfd));
6a506a2d 7660 }
b0c7bfa9 7661 dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
6a506a2d 7662 if (dwo_unit != NULL)
3019eac3 7663 {
6a506a2d 7664 if (read_cutu_die_from_dwo (this_cu, dwo_unit,
a2ce51a0 7665 comp_unit_die, NULL,
6a506a2d 7666 &reader, &info_ptr,
685af9cd
TT
7667 &dwo_comp_unit_die, &has_children,
7668 &dwo_abbrev_table) == 0)
6a506a2d
DE
7669 {
7670 /* Dummy die. */
6a506a2d
DE
7671 return;
7672 }
7673 comp_unit_die = dwo_comp_unit_die;
7674 }
7675 else
7676 {
7677 /* Yikes, we couldn't find the rest of the DIE, we only have
7678 the stub. A complaint has already been logged. There's
7679 not much more we can do except pass on the stub DIE to
7680 die_reader_func. We don't want to throw an error on bad
7681 debug info. */
3019eac3
DE
7682 }
7683 }
7684
b0c7bfa9 7685 /* All of the above is setup for this call. Yikes. */
dee91e82
DE
7686 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7687
b0c7bfa9 7688 /* Done, clean up. */
fcd3b13d 7689 if (new_cu != NULL && keep)
348e048f 7690 {
fcd3b13d
SM
7691 /* Link this CU into read_in_chain. */
7692 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7693 dwarf2_per_objfile->read_in_chain = this_cu;
7694 /* The chain owns it now. */
7695 new_cu.release ();
348e048f 7696 }
dee91e82
DE
7697}
7698
33e80786
DE
7699/* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name if present.
7700 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed
7701 to have already done the lookup to find the DWO file).
dee91e82
DE
7702
7703 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
3019eac3 7704 THIS_CU->is_debug_types, but nothing else.
dee91e82
DE
7705
7706 We fill in THIS_CU->length.
7707
7708 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
7709 linker) then DIE_READER_FUNC will not get called.
7710
7711 THIS_CU->cu is always freed when done.
3019eac3
DE
7712 This is done in order to not leave THIS_CU->cu in a state where we have
7713 to care whether it refers to the "main" CU or the DWO CU. */
dee91e82
DE
7714
7715static void
7716init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
3019eac3 7717 struct dwo_file *dwo_file,
dee91e82
DE
7718 die_reader_func_ftype *die_reader_func,
7719 void *data)
7720{
ed2dc618 7721 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
dee91e82 7722 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 7723 struct dwarf2_section_info *section = this_cu->section;
a32a8923 7724 bfd *abfd = get_section_bfd_owner (section);
33e80786 7725 struct dwarf2_section_info *abbrev_section;
d521ce57 7726 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7727 struct die_reader_specs reader;
dee91e82
DE
7728 struct die_info *comp_unit_die;
7729 int has_children;
7730
b4f54984 7731 if (dwarf_die_debug)
9d8780f0 7732 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7733 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7734 sect_offset_str (this_cu->sect_off));
09406207 7735
dee91e82
DE
7736 gdb_assert (this_cu->cu == NULL);
7737
33e80786
DE
7738 abbrev_section = (dwo_file != NULL
7739 ? &dwo_file->sections.abbrev
7740 : get_abbrev_section_for_cu (this_cu));
7741
dee91e82
DE
7742 /* This is cheap if the section is already read in. */
7743 dwarf2_read_section (objfile, section);
7744
fcd3b13d 7745 struct dwarf2_cu cu (this_cu);
dee91e82 7746
9c541725 7747 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
ed2dc618
SM
7748 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7749 &cu.header, section,
4bdcc0c1 7750 abbrev_section, info_ptr,
43988095
JK
7751 (this_cu->is_debug_types
7752 ? rcuh_kind::TYPE
7753 : rcuh_kind::COMPILE));
dee91e82 7754
1ce1cefd 7755 this_cu->length = get_cu_length (&cu.header);
dee91e82
DE
7756
7757 /* Skip dummy compilation units. */
7758 if (info_ptr >= begin_info_ptr + this_cu->length
7759 || peek_abbrev_code (abfd, info_ptr) == 0)
fcd3b13d 7760 return;
72bf9492 7761
685af9cd
TT
7762 abbrev_table_up abbrev_table
7763 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7764 cu.header.abbrev_sect_off);
dee91e82 7765
685af9cd 7766 init_cu_die_reader (&reader, &cu, section, dwo_file, abbrev_table.get ());
dee91e82
DE
7767 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
7768
7769 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
dee91e82
DE
7770}
7771
3019eac3
DE
7772/* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
7773 does not lookup the specified DWO file.
7774 This cannot be used to read DWO files.
dee91e82
DE
7775
7776 THIS_CU->cu is always freed when done.
3019eac3
DE
7777 This is done in order to not leave THIS_CU->cu in a state where we have
7778 to care whether it refers to the "main" CU or the DWO CU.
7779 We can revisit this if the data shows there's a performance issue. */
dee91e82
DE
7780
7781static void
7782init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
7783 die_reader_func_ftype *die_reader_func,
7784 void *data)
7785{
33e80786 7786 init_cutu_and_read_dies_no_follow (this_cu, NULL, die_reader_func, data);
dee91e82 7787}
0018ea6f
DE
7788\f
7789/* Type Unit Groups.
dee91e82 7790
0018ea6f
DE
7791 Type Unit Groups are a way to collapse the set of all TUs (type units) into
7792 a more manageable set. The grouping is done by DW_AT_stmt_list entry
7793 so that all types coming from the same compilation (.o file) are grouped
7794 together. A future step could be to put the types in the same symtab as
7795 the CU the types ultimately came from. */
ff013f42 7796
f4dc4d17
DE
7797static hashval_t
7798hash_type_unit_group (const void *item)
7799{
9a3c8263
SM
7800 const struct type_unit_group *tu_group
7801 = (const struct type_unit_group *) item;
f4dc4d17 7802
094b34ac 7803 return hash_stmt_list_entry (&tu_group->hash);
f4dc4d17 7804}
348e048f
DE
7805
7806static int
f4dc4d17 7807eq_type_unit_group (const void *item_lhs, const void *item_rhs)
348e048f 7808{
9a3c8263
SM
7809 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
7810 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
348e048f 7811
094b34ac 7812 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
f4dc4d17 7813}
348e048f 7814
f4dc4d17
DE
7815/* Allocate a hash table for type unit groups. */
7816
7817static htab_t
ed2dc618 7818allocate_type_unit_groups_table (struct objfile *objfile)
f4dc4d17
DE
7819{
7820 return htab_create_alloc_ex (3,
7821 hash_type_unit_group,
7822 eq_type_unit_group,
7823 NULL,
ed2dc618 7824 &objfile->objfile_obstack,
f4dc4d17
DE
7825 hashtab_obstack_allocate,
7826 dummy_obstack_deallocate);
7827}
dee91e82 7828
f4dc4d17
DE
7829/* Type units that don't have DW_AT_stmt_list are grouped into their own
7830 partial symtabs. We combine several TUs per psymtab to not let the size
7831 of any one psymtab grow too big. */
7832#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
7833#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
dee91e82 7834
094b34ac 7835/* Helper routine for get_type_unit_group.
f4dc4d17
DE
7836 Create the type_unit_group object used to hold one or more TUs. */
7837
7838static struct type_unit_group *
094b34ac 7839create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
f4dc4d17 7840{
518817b3
SM
7841 struct dwarf2_per_objfile *dwarf2_per_objfile
7842 = cu->per_cu->dwarf2_per_objfile;
f4dc4d17 7843 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 7844 struct dwarf2_per_cu_data *per_cu;
f4dc4d17 7845 struct type_unit_group *tu_group;
f4dc4d17
DE
7846
7847 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7848 struct type_unit_group);
094b34ac 7849 per_cu = &tu_group->per_cu;
518817b3 7850 per_cu->dwarf2_per_objfile = dwarf2_per_objfile;
f4dc4d17 7851
094b34ac
DE
7852 if (dwarf2_per_objfile->using_index)
7853 {
7854 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7855 struct dwarf2_per_cu_quick_data);
094b34ac
DE
7856 }
7857 else
7858 {
9c541725 7859 unsigned int line_offset = to_underlying (line_offset_struct);
094b34ac 7860 struct partial_symtab *pst;
528e1572 7861 std::string name;
094b34ac
DE
7862
7863 /* Give the symtab a useful name for debug purposes. */
7864 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
528e1572
SM
7865 name = string_printf ("<type_units_%d>",
7866 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
094b34ac 7867 else
528e1572 7868 name = string_printf ("<type_units_at_0x%x>", line_offset);
094b34ac 7869
528e1572 7870 pst = create_partial_symtab (per_cu, name.c_str ());
094b34ac 7871 pst->anonymous = 1;
094b34ac 7872 }
f4dc4d17 7873
094b34ac 7874 tu_group->hash.dwo_unit = cu->dwo_unit;
9c541725 7875 tu_group->hash.line_sect_off = line_offset_struct;
f4dc4d17
DE
7876
7877 return tu_group;
7878}
7879
094b34ac
DE
7880/* Look up the type_unit_group for type unit CU, and create it if necessary.
7881 STMT_LIST is a DW_AT_stmt_list attribute. */
f4dc4d17
DE
7882
7883static struct type_unit_group *
ff39bb5e 7884get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
f4dc4d17 7885{
518817b3
SM
7886 struct dwarf2_per_objfile *dwarf2_per_objfile
7887 = cu->per_cu->dwarf2_per_objfile;
f4dc4d17
DE
7888 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
7889 struct type_unit_group *tu_group;
7890 void **slot;
7891 unsigned int line_offset;
7892 struct type_unit_group type_unit_group_for_lookup;
7893
7894 if (dwarf2_per_objfile->type_unit_groups == NULL)
7895 {
7896 dwarf2_per_objfile->type_unit_groups =
ed2dc618 7897 allocate_type_unit_groups_table (dwarf2_per_objfile->objfile);
f4dc4d17
DE
7898 }
7899
7900 /* Do we need to create a new group, or can we use an existing one? */
7901
7902 if (stmt_list)
7903 {
7904 line_offset = DW_UNSND (stmt_list);
7905 ++tu_stats->nr_symtab_sharers;
7906 }
7907 else
7908 {
7909 /* Ugh, no stmt_list. Rare, but we have to handle it.
7910 We can do various things here like create one group per TU or
7911 spread them over multiple groups to split up the expansion work.
7912 To avoid worst case scenarios (too many groups or too large groups)
7913 we, umm, group them in bunches. */
7914 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
7915 | (tu_stats->nr_stmt_less_type_units
7916 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
7917 ++tu_stats->nr_stmt_less_type_units;
7918 }
7919
094b34ac 7920 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
9c541725 7921 type_unit_group_for_lookup.hash.line_sect_off = (sect_offset) line_offset;
f4dc4d17
DE
7922 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
7923 &type_unit_group_for_lookup, INSERT);
7924 if (*slot != NULL)
7925 {
9a3c8263 7926 tu_group = (struct type_unit_group *) *slot;
f4dc4d17
DE
7927 gdb_assert (tu_group != NULL);
7928 }
7929 else
7930 {
9c541725 7931 sect_offset line_offset_struct = (sect_offset) line_offset;
094b34ac 7932 tu_group = create_type_unit_group (cu, line_offset_struct);
f4dc4d17
DE
7933 *slot = tu_group;
7934 ++tu_stats->nr_symtabs;
7935 }
7936
7937 return tu_group;
7938}
0018ea6f
DE
7939\f
7940/* Partial symbol tables. */
7941
7942/* Create a psymtab named NAME and assign it to PER_CU.
7943
7944 The caller must fill in the following details:
7945 dirname, textlow, texthigh. */
7946
7947static struct partial_symtab *
7948create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
7949{
e3b94546 7950 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
0018ea6f
DE
7951 struct partial_symtab *pst;
7952
939652a5 7953 pst = start_psymtab_common (objfile, name, 0);
0018ea6f
DE
7954
7955 pst->psymtabs_addrmap_supported = 1;
7956
7957 /* This is the glue that links PST into GDB's symbol API. */
7958 pst->read_symtab_private = per_cu;
7959 pst->read_symtab = dwarf2_read_symtab;
7960 per_cu->v.psymtab = pst;
7961
7962 return pst;
7963}
7964
b93601f3
TT
7965/* The DATA object passed to process_psymtab_comp_unit_reader has this
7966 type. */
7967
7968struct process_psymtab_comp_unit_data
7969{
7970 /* True if we are reading a DW_TAG_partial_unit. */
7971
7972 int want_partial_unit;
7973
7974 /* The "pretend" language that is used if the CU doesn't declare a
7975 language. */
7976
7977 enum language pretend_language;
7978};
7979
0018ea6f
DE
7980/* die_reader_func for process_psymtab_comp_unit. */
7981
7982static void
7983process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 7984 const gdb_byte *info_ptr,
0018ea6f
DE
7985 struct die_info *comp_unit_die,
7986 int has_children,
7987 void *data)
7988{
7989 struct dwarf2_cu *cu = reader->cu;
518817b3 7990 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 7991 struct gdbarch *gdbarch = get_objfile_arch (objfile);
0018ea6f 7992 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0018ea6f
DE
7993 CORE_ADDR baseaddr;
7994 CORE_ADDR best_lowpc = 0, best_highpc = 0;
7995 struct partial_symtab *pst;
3a2b436a 7996 enum pc_bounds_kind cu_bounds_kind;
0018ea6f 7997 const char *filename;
9a3c8263
SM
7998 struct process_psymtab_comp_unit_data *info
7999 = (struct process_psymtab_comp_unit_data *) data;
0018ea6f 8000
b93601f3 8001 if (comp_unit_die->tag == DW_TAG_partial_unit && !info->want_partial_unit)
0018ea6f
DE
8002 return;
8003
8004 gdb_assert (! per_cu->is_debug_types);
8005
b93601f3 8006 prepare_one_comp_unit (cu, comp_unit_die, info->pretend_language);
0018ea6f 8007
0018ea6f 8008 /* Allocate a new partial symbol table structure. */
7d45c7c3
KB
8009 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
8010 if (filename == NULL)
0018ea6f 8011 filename = "";
0018ea6f
DE
8012
8013 pst = create_partial_symtab (per_cu, filename);
8014
8015 /* This must be done before calling dwarf2_build_include_psymtabs. */
7d45c7c3 8016 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
0018ea6f
DE
8017
8018 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8019
8020 dwarf2_find_base_address (comp_unit_die, cu);
8021
8022 /* Possibly set the default values of LOWPC and HIGHPC from
8023 `DW_AT_ranges'. */
3a2b436a
JK
8024 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
8025 &best_highpc, cu, pst);
8026 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
79748972
TT
8027 {
8028 CORE_ADDR low
8029 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr)
8030 - baseaddr);
8031 CORE_ADDR high
8032 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr)
8033 - baseaddr - 1);
8034 /* Store the contiguous range if it is not empty; it can be
8035 empty for CUs with no code. */
d320c2b5
TT
8036 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
8037 low, high, pst);
79748972 8038 }
0018ea6f
DE
8039
8040 /* Check if comp unit has_children.
8041 If so, read the rest of the partial symbols from this comp unit.
8042 If not, there's no more debug_info for this comp unit. */
8043 if (has_children)
8044 {
8045 struct partial_die_info *first_die;
8046 CORE_ADDR lowpc, highpc;
8047
8048 lowpc = ((CORE_ADDR) -1);
8049 highpc = ((CORE_ADDR) 0);
8050
8051 first_die = load_partial_dies (reader, info_ptr, 1);
8052
8053 scan_partial_symbols (first_die, &lowpc, &highpc,
e385593e 8054 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
0018ea6f
DE
8055
8056 /* If we didn't find a lowpc, set it to highpc to avoid
8057 complaints from `maint check'. */
8058 if (lowpc == ((CORE_ADDR) -1))
8059 lowpc = highpc;
8060
8061 /* If the compilation unit didn't have an explicit address range,
8062 then use the information extracted from its child dies. */
e385593e 8063 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
0018ea6f
DE
8064 {
8065 best_lowpc = lowpc;
8066 best_highpc = highpc;
8067 }
8068 }
4ae976d1 8069 pst->set_text_low (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
8070 best_lowpc + baseaddr)
8071 - baseaddr);
4ae976d1 8072 pst->set_text_high (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
8073 best_highpc + baseaddr)
8074 - baseaddr);
0018ea6f 8075
8763cede 8076 end_psymtab_common (objfile, pst);
0018ea6f
DE
8077
8078 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
8079 {
8080 int i;
8081 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8082 struct dwarf2_per_cu_data *iter;
8083
8084 /* Fill in 'dependencies' here; we fill in 'users' in a
8085 post-pass. */
8086 pst->number_of_dependencies = len;
a9342b62
TT
8087 pst->dependencies
8088 = objfile->partial_symtabs->allocate_dependencies (len);
0018ea6f
DE
8089 for (i = 0;
8090 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
8091 i, iter);
8092 ++i)
8093 pst->dependencies[i] = iter->v.psymtab;
8094
8095 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8096 }
8097
8098 /* Get the list of files included in the current compilation unit,
8099 and build a psymtab for each of them. */
8100 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
8101
b4f54984 8102 if (dwarf_read_debug)
b926417a
TT
8103 fprintf_unfiltered (gdb_stdlog,
8104 "Psymtab for %s unit @%s: %s - %s"
8105 ", %d global, %d static syms\n",
8106 per_cu->is_debug_types ? "type" : "comp",
8107 sect_offset_str (per_cu->sect_off),
8108 paddress (gdbarch, pst->text_low (objfile)),
8109 paddress (gdbarch, pst->text_high (objfile)),
8110 pst->n_global_syms, pst->n_static_syms);
0018ea6f
DE
8111}
8112
8113/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8114 Process compilation unit THIS_CU for a psymtab. */
8115
8116static void
8117process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
b93601f3
TT
8118 int want_partial_unit,
8119 enum language pretend_language)
0018ea6f
DE
8120{
8121 /* If this compilation unit was already read in, free the
8122 cached copy in order to read it in again. This is
8123 necessary because we skipped some symbols when we first
8124 read in the compilation unit (see load_partial_dies).
8125 This problem could be avoided, but the benefit is unclear. */
8126 if (this_cu->cu != NULL)
8127 free_one_cached_comp_unit (this_cu);
8128
f1902523 8129 if (this_cu->is_debug_types)
58f0c718
TT
8130 init_cutu_and_read_dies (this_cu, NULL, 0, 0, false,
8131 build_type_psymtabs_reader, NULL);
f1902523
JK
8132 else
8133 {
8134 process_psymtab_comp_unit_data info;
8135 info.want_partial_unit = want_partial_unit;
8136 info.pretend_language = pretend_language;
58f0c718 8137 init_cutu_and_read_dies (this_cu, NULL, 0, 0, false,
f1902523
JK
8138 process_psymtab_comp_unit_reader, &info);
8139 }
0018ea6f
DE
8140
8141 /* Age out any secondary CUs. */
ed2dc618 8142 age_cached_comp_units (this_cu->dwarf2_per_objfile);
0018ea6f 8143}
f4dc4d17
DE
8144
8145/* Reader function for build_type_psymtabs. */
8146
8147static void
8148build_type_psymtabs_reader (const struct die_reader_specs *reader,
d521ce57 8149 const gdb_byte *info_ptr,
f4dc4d17
DE
8150 struct die_info *type_unit_die,
8151 int has_children,
8152 void *data)
8153{
ed2dc618 8154 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 8155 = reader->cu->per_cu->dwarf2_per_objfile;
f4dc4d17
DE
8156 struct objfile *objfile = dwarf2_per_objfile->objfile;
8157 struct dwarf2_cu *cu = reader->cu;
8158 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0186c6a7 8159 struct signatured_type *sig_type;
f4dc4d17
DE
8160 struct type_unit_group *tu_group;
8161 struct attribute *attr;
8162 struct partial_die_info *first_die;
8163 CORE_ADDR lowpc, highpc;
8164 struct partial_symtab *pst;
8165
8166 gdb_assert (data == NULL);
0186c6a7
DE
8167 gdb_assert (per_cu->is_debug_types);
8168 sig_type = (struct signatured_type *) per_cu;
f4dc4d17
DE
8169
8170 if (! has_children)
8171 return;
8172
8173 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
094b34ac 8174 tu_group = get_type_unit_group (cu, attr);
f4dc4d17 8175
0186c6a7 8176 VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
f4dc4d17
DE
8177
8178 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
f4dc4d17
DE
8179 pst = create_partial_symtab (per_cu, "");
8180 pst->anonymous = 1;
8181
8182 first_die = load_partial_dies (reader, info_ptr, 1);
8183
8184 lowpc = (CORE_ADDR) -1;
8185 highpc = (CORE_ADDR) 0;
8186 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
8187
8763cede 8188 end_psymtab_common (objfile, pst);
f4dc4d17
DE
8189}
8190
73051182
DE
8191/* Struct used to sort TUs by their abbreviation table offset. */
8192
8193struct tu_abbrev_offset
8194{
b2bdb8cf
SM
8195 tu_abbrev_offset (signatured_type *sig_type_, sect_offset abbrev_offset_)
8196 : sig_type (sig_type_), abbrev_offset (abbrev_offset_)
8197 {}
8198
8199 signatured_type *sig_type;
73051182
DE
8200 sect_offset abbrev_offset;
8201};
8202
484cf504 8203/* Helper routine for build_type_psymtabs_1, passed to std::sort. */
73051182 8204
484cf504
TT
8205static bool
8206sort_tu_by_abbrev_offset (const struct tu_abbrev_offset &a,
8207 const struct tu_abbrev_offset &b)
73051182 8208{
484cf504 8209 return a.abbrev_offset < b.abbrev_offset;
73051182
DE
8210}
8211
8212/* Efficiently read all the type units.
8213 This does the bulk of the work for build_type_psymtabs.
8214
8215 The efficiency is because we sort TUs by the abbrev table they use and
8216 only read each abbrev table once. In one program there are 200K TUs
8217 sharing 8K abbrev tables.
8218
8219 The main purpose of this function is to support building the
8220 dwarf2_per_objfile->type_unit_groups table.
8221 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
8222 can collapse the search space by grouping them by stmt_list.
8223 The savings can be significant, in the same program from above the 200K TUs
8224 share 8K stmt_list tables.
8225
8226 FUNC is expected to call get_type_unit_group, which will create the
8227 struct type_unit_group if necessary and add it to
8228 dwarf2_per_objfile->type_unit_groups. */
8229
8230static void
ed2dc618 8231build_type_psymtabs_1 (struct dwarf2_per_objfile *dwarf2_per_objfile)
73051182 8232{
73051182 8233 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
685af9cd 8234 abbrev_table_up abbrev_table;
73051182 8235 sect_offset abbrev_offset;
73051182
DE
8236
8237 /* It's up to the caller to not call us multiple times. */
8238 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
8239
b2bdb8cf 8240 if (dwarf2_per_objfile->all_type_units.empty ())
73051182
DE
8241 return;
8242
8243 /* TUs typically share abbrev tables, and there can be way more TUs than
8244 abbrev tables. Sort by abbrev table to reduce the number of times we
8245 read each abbrev table in.
8246 Alternatives are to punt or to maintain a cache of abbrev tables.
8247 This is simpler and efficient enough for now.
8248
8249 Later we group TUs by their DW_AT_stmt_list value (as this defines the
8250 symtab to use). Typically TUs with the same abbrev offset have the same
8251 stmt_list value too so in practice this should work well.
8252
8253 The basic algorithm here is:
8254
8255 sort TUs by abbrev table
8256 for each TU with same abbrev table:
8257 read abbrev table if first user
8258 read TU top level DIE
8259 [IWBN if DWO skeletons had DW_AT_stmt_list]
8260 call FUNC */
8261
b4f54984 8262 if (dwarf_read_debug)
73051182
DE
8263 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
8264
8265 /* Sort in a separate table to maintain the order of all_type_units
8266 for .gdb_index: TU indices directly index all_type_units. */
b2bdb8cf
SM
8267 std::vector<tu_abbrev_offset> sorted_by_abbrev;
8268 sorted_by_abbrev.reserve (dwarf2_per_objfile->all_type_units.size ());
8269
8270 for (signatured_type *sig_type : dwarf2_per_objfile->all_type_units)
8271 sorted_by_abbrev.emplace_back
8272 (sig_type, read_abbrev_offset (dwarf2_per_objfile,
8273 sig_type->per_cu.section,
8274 sig_type->per_cu.sect_off));
73051182 8275
484cf504
TT
8276 std::sort (sorted_by_abbrev.begin (), sorted_by_abbrev.end (),
8277 sort_tu_by_abbrev_offset);
73051182 8278
9c541725 8279 abbrev_offset = (sect_offset) ~(unsigned) 0;
73051182 8280
b2bdb8cf 8281 for (const tu_abbrev_offset &tu : sorted_by_abbrev)
73051182 8282 {
73051182
DE
8283 /* Switch to the next abbrev table if necessary. */
8284 if (abbrev_table == NULL
b2bdb8cf 8285 || tu.abbrev_offset != abbrev_offset)
73051182 8286 {
b2bdb8cf 8287 abbrev_offset = tu.abbrev_offset;
73051182 8288 abbrev_table =
ed2dc618
SM
8289 abbrev_table_read_table (dwarf2_per_objfile,
8290 &dwarf2_per_objfile->abbrev,
73051182
DE
8291 abbrev_offset);
8292 ++tu_stats->nr_uniq_abbrev_tables;
8293 }
8294
b2bdb8cf 8295 init_cutu_and_read_dies (&tu.sig_type->per_cu, abbrev_table.get (),
58f0c718 8296 0, 0, false, build_type_psymtabs_reader, NULL);
73051182 8297 }
6aa5f3a6 8298}
73051182 8299
6aa5f3a6
DE
8300/* Print collected type unit statistics. */
8301
8302static void
ed2dc618 8303print_tu_stats (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6
DE
8304{
8305 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
8306
8307 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
b2bdb8cf
SM
8308 fprintf_unfiltered (gdb_stdlog, " %zu TUs\n",
8309 dwarf2_per_objfile->all_type_units.size ());
6aa5f3a6
DE
8310 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
8311 tu_stats->nr_uniq_abbrev_tables);
8312 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
8313 tu_stats->nr_symtabs);
8314 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
8315 tu_stats->nr_symtab_sharers);
8316 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
8317 tu_stats->nr_stmt_less_type_units);
8318 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
8319 tu_stats->nr_all_type_units_reallocs);
73051182
DE
8320}
8321
f4dc4d17
DE
8322/* Traversal function for build_type_psymtabs. */
8323
8324static int
8325build_type_psymtab_dependencies (void **slot, void *info)
8326{
ed2dc618
SM
8327 struct dwarf2_per_objfile *dwarf2_per_objfile
8328 = (struct dwarf2_per_objfile *) info;
f4dc4d17
DE
8329 struct objfile *objfile = dwarf2_per_objfile->objfile;
8330 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
094b34ac 8331 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
f4dc4d17 8332 struct partial_symtab *pst = per_cu->v.psymtab;
0186c6a7
DE
8333 int len = VEC_length (sig_type_ptr, tu_group->tus);
8334 struct signatured_type *iter;
f4dc4d17
DE
8335 int i;
8336
8337 gdb_assert (len > 0);
0186c6a7 8338 gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
f4dc4d17
DE
8339
8340 pst->number_of_dependencies = len;
a9342b62 8341 pst->dependencies = objfile->partial_symtabs->allocate_dependencies (len);
f4dc4d17 8342 for (i = 0;
0186c6a7 8343 VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
f4dc4d17
DE
8344 ++i)
8345 {
0186c6a7
DE
8346 gdb_assert (iter->per_cu.is_debug_types);
8347 pst->dependencies[i] = iter->per_cu.v.psymtab;
796a7ff8 8348 iter->type_unit_group = tu_group;
f4dc4d17
DE
8349 }
8350
0186c6a7 8351 VEC_free (sig_type_ptr, tu_group->tus);
348e048f
DE
8352
8353 return 1;
8354}
8355
8356/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8357 Build partial symbol tables for the .debug_types comp-units. */
8358
8359static void
ed2dc618 8360build_type_psymtabs (struct dwarf2_per_objfile *dwarf2_per_objfile)
348e048f 8361{
ed2dc618 8362 if (! create_all_type_units (dwarf2_per_objfile))
348e048f
DE
8363 return;
8364
ed2dc618 8365 build_type_psymtabs_1 (dwarf2_per_objfile);
6aa5f3a6 8366}
f4dc4d17 8367
6aa5f3a6
DE
8368/* Traversal function for process_skeletonless_type_unit.
8369 Read a TU in a DWO file and build partial symbols for it. */
8370
8371static int
8372process_skeletonless_type_unit (void **slot, void *info)
8373{
8374 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
ed2dc618
SM
8375 struct dwarf2_per_objfile *dwarf2_per_objfile
8376 = (struct dwarf2_per_objfile *) info;
6aa5f3a6
DE
8377 struct signatured_type find_entry, *entry;
8378
8379 /* If this TU doesn't exist in the global table, add it and read it in. */
8380
8381 if (dwarf2_per_objfile->signatured_types == NULL)
8382 {
8383 dwarf2_per_objfile->signatured_types
ed2dc618 8384 = allocate_signatured_type_table (dwarf2_per_objfile->objfile);
6aa5f3a6
DE
8385 }
8386
8387 find_entry.signature = dwo_unit->signature;
8388 slot = htab_find_slot (dwarf2_per_objfile->signatured_types, &find_entry,
8389 INSERT);
8390 /* If we've already seen this type there's nothing to do. What's happening
8391 is we're doing our own version of comdat-folding here. */
8392 if (*slot != NULL)
8393 return 1;
8394
8395 /* This does the job that create_all_type_units would have done for
8396 this TU. */
ed2dc618
SM
8397 entry = add_type_unit (dwarf2_per_objfile, dwo_unit->signature, slot);
8398 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, entry, dwo_unit);
6aa5f3a6
DE
8399 *slot = entry;
8400
8401 /* This does the job that build_type_psymtabs_1 would have done. */
58f0c718 8402 init_cutu_and_read_dies (&entry->per_cu, NULL, 0, 0, false,
6aa5f3a6
DE
8403 build_type_psymtabs_reader, NULL);
8404
8405 return 1;
8406}
8407
8408/* Traversal function for process_skeletonless_type_units. */
8409
8410static int
8411process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
8412{
8413 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
8414
8415 if (dwo_file->tus != NULL)
8416 {
8417 htab_traverse_noresize (dwo_file->tus,
8418 process_skeletonless_type_unit, info);
8419 }
8420
8421 return 1;
8422}
8423
8424/* Scan all TUs of DWO files, verifying we've processed them.
8425 This is needed in case a TU was emitted without its skeleton.
8426 Note: This can't be done until we know what all the DWO files are. */
8427
8428static void
ed2dc618 8429process_skeletonless_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
6aa5f3a6
DE
8430{
8431 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
ed2dc618 8432 if (get_dwp_file (dwarf2_per_objfile) == NULL
6aa5f3a6
DE
8433 && dwarf2_per_objfile->dwo_files != NULL)
8434 {
8435 htab_traverse_noresize (dwarf2_per_objfile->dwo_files,
8436 process_dwo_file_for_skeletonless_type_units,
ed2dc618 8437 dwarf2_per_objfile);
6aa5f3a6 8438 }
348e048f
DE
8439}
8440
ed2dc618 8441/* Compute the 'user' field for each psymtab in DWARF2_PER_OBJFILE. */
95554aad
TT
8442
8443static void
ed2dc618 8444set_partial_user (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 8445{
b76e467d 8446 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
95554aad 8447 {
95554aad 8448 struct partial_symtab *pst = per_cu->v.psymtab;
95554aad 8449
36586728
TT
8450 if (pst == NULL)
8451 continue;
8452
b76e467d 8453 for (int j = 0; j < pst->number_of_dependencies; ++j)
95554aad
TT
8454 {
8455 /* Set the 'user' field only if it is not already set. */
8456 if (pst->dependencies[j]->user == NULL)
8457 pst->dependencies[j]->user = pst;
8458 }
8459 }
8460}
8461
93311388
DE
8462/* Build the partial symbol table by doing a quick pass through the
8463 .debug_info and .debug_abbrev sections. */
72bf9492 8464
93311388 8465static void
ed2dc618 8466dwarf2_build_psymtabs_hard (struct dwarf2_per_objfile *dwarf2_per_objfile)
93311388 8467{
ed2dc618 8468 struct objfile *objfile = dwarf2_per_objfile->objfile;
93311388 8469
b4f54984 8470 if (dwarf_read_debug)
45cfd468
DE
8471 {
8472 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
4262abfb 8473 objfile_name (objfile));
45cfd468
DE
8474 }
8475
98bfdba5
PA
8476 dwarf2_per_objfile->reading_partial_symbols = 1;
8477
be391dca 8478 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
91c24f0a 8479
93311388
DE
8480 /* Any cached compilation units will be linked by the per-objfile
8481 read_in_chain. Make sure to free them when we're done. */
11ed8cad 8482 free_cached_comp_units freer (dwarf2_per_objfile);
72bf9492 8483
ed2dc618 8484 build_type_psymtabs (dwarf2_per_objfile);
348e048f 8485
ed2dc618 8486 create_all_comp_units (dwarf2_per_objfile);
c906108c 8487
60606b2c
TT
8488 /* Create a temporary address map on a temporary obstack. We later
8489 copy this to the final obstack. */
8268c778 8490 auto_obstack temp_obstack;
791afaa2
TT
8491
8492 scoped_restore save_psymtabs_addrmap
d320c2b5 8493 = make_scoped_restore (&objfile->partial_symtabs->psymtabs_addrmap,
791afaa2 8494 addrmap_create_mutable (&temp_obstack));
72bf9492 8495
b76e467d
SM
8496 for (dwarf2_per_cu_data *per_cu : dwarf2_per_objfile->all_comp_units)
8497 process_psymtab_comp_unit (per_cu, 0, language_minimal);
ff013f42 8498
6aa5f3a6 8499 /* This has to wait until we read the CUs, we need the list of DWOs. */
ed2dc618 8500 process_skeletonless_type_units (dwarf2_per_objfile);
6aa5f3a6
DE
8501
8502 /* Now that all TUs have been processed we can fill in the dependencies. */
8503 if (dwarf2_per_objfile->type_unit_groups != NULL)
8504 {
8505 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
ed2dc618 8506 build_type_psymtab_dependencies, dwarf2_per_objfile);
6aa5f3a6
DE
8507 }
8508
b4f54984 8509 if (dwarf_read_debug)
ed2dc618 8510 print_tu_stats (dwarf2_per_objfile);
6aa5f3a6 8511
ed2dc618 8512 set_partial_user (dwarf2_per_objfile);
95554aad 8513
d320c2b5
TT
8514 objfile->partial_symtabs->psymtabs_addrmap
8515 = addrmap_create_fixed (objfile->partial_symtabs->psymtabs_addrmap,
5923a04c 8516 objfile->partial_symtabs->obstack ());
791afaa2
TT
8517 /* At this point we want to keep the address map. */
8518 save_psymtabs_addrmap.release ();
ff013f42 8519
b4f54984 8520 if (dwarf_read_debug)
45cfd468 8521 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
4262abfb 8522 objfile_name (objfile));
ae038cb0
DJ
8523}
8524
3019eac3 8525/* die_reader_func for load_partial_comp_unit. */
ae038cb0
DJ
8526
8527static void
dee91e82 8528load_partial_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 8529 const gdb_byte *info_ptr,
dee91e82
DE
8530 struct die_info *comp_unit_die,
8531 int has_children,
8532 void *data)
ae038cb0 8533{
dee91e82 8534 struct dwarf2_cu *cu = reader->cu;
ae038cb0 8535
95554aad 8536 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
ae038cb0 8537
ae038cb0
DJ
8538 /* Check if comp unit has_children.
8539 If so, read the rest of the partial symbols from this comp unit.
0963b4bd 8540 If not, there's no more debug_info for this comp unit. */
d85a05f0 8541 if (has_children)
dee91e82
DE
8542 load_partial_dies (reader, info_ptr, 0);
8543}
98bfdba5 8544
dee91e82
DE
8545/* Load the partial DIEs for a secondary CU into memory.
8546 This is also used when rereading a primary CU with load_all_dies. */
c5b7e1cb 8547
dee91e82
DE
8548static void
8549load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
8550{
58f0c718 8551 init_cutu_and_read_dies (this_cu, NULL, 1, 1, false,
f4dc4d17 8552 load_partial_comp_unit_reader, NULL);
ae038cb0
DJ
8553}
8554
ae038cb0 8555static void
ed2dc618 8556read_comp_units_from_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
36586728 8557 struct dwarf2_section_info *section,
f1902523 8558 struct dwarf2_section_info *abbrev_section,
b76e467d 8559 unsigned int is_dwz)
ae038cb0 8560{
d521ce57 8561 const gdb_byte *info_ptr;
ed2dc618 8562 struct objfile *objfile = dwarf2_per_objfile->objfile;
be391dca 8563
b4f54984 8564 if (dwarf_read_debug)
bf6af496 8565 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
a32a8923
DE
8566 get_section_name (section),
8567 get_section_file_name (section));
bf6af496 8568
36586728 8569 dwarf2_read_section (objfile, section);
ae038cb0 8570
36586728 8571 info_ptr = section->buffer;
6e70227d 8572
36586728 8573 while (info_ptr < section->buffer + section->size)
ae038cb0 8574 {
ae038cb0 8575 struct dwarf2_per_cu_data *this_cu;
ae038cb0 8576
9c541725 8577 sect_offset sect_off = (sect_offset) (info_ptr - section->buffer);
ae038cb0 8578
f1902523 8579 comp_unit_head cu_header;
ed2dc618
SM
8580 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
8581 abbrev_section, info_ptr,
8582 rcuh_kind::COMPILE);
ae038cb0
DJ
8583
8584 /* Save the compilation unit for later lookup. */
f1902523
JK
8585 if (cu_header.unit_type != DW_UT_type)
8586 {
8587 this_cu = XOBNEW (&objfile->objfile_obstack,
8588 struct dwarf2_per_cu_data);
8589 memset (this_cu, 0, sizeof (*this_cu));
8590 }
8591 else
8592 {
8593 auto sig_type = XOBNEW (&objfile->objfile_obstack,
8594 struct signatured_type);
8595 memset (sig_type, 0, sizeof (*sig_type));
8596 sig_type->signature = cu_header.signature;
8597 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
8598 this_cu = &sig_type->per_cu;
8599 }
8600 this_cu->is_debug_types = (cu_header.unit_type == DW_UT_type);
9c541725 8601 this_cu->sect_off = sect_off;
f1902523 8602 this_cu->length = cu_header.length + cu_header.initial_length_size;
36586728 8603 this_cu->is_dwz = is_dwz;
e3b94546 8604 this_cu->dwarf2_per_objfile = dwarf2_per_objfile;
8a0459fd 8605 this_cu->section = section;
ae038cb0 8606
b76e467d 8607 dwarf2_per_objfile->all_comp_units.push_back (this_cu);
ae038cb0
DJ
8608
8609 info_ptr = info_ptr + this_cu->length;
8610 }
36586728
TT
8611}
8612
8613/* Create a list of all compilation units in OBJFILE.
8614 This is only done for -readnow and building partial symtabs. */
8615
8616static void
ed2dc618 8617create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
36586728 8618{
b76e467d 8619 gdb_assert (dwarf2_per_objfile->all_comp_units.empty ());
ed2dc618 8620 read_comp_units_from_section (dwarf2_per_objfile, &dwarf2_per_objfile->info,
b76e467d 8621 &dwarf2_per_objfile->abbrev, 0);
36586728 8622
b76e467d 8623 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
4db1a1dc 8624 if (dwz != NULL)
ed2dc618 8625 read_comp_units_from_section (dwarf2_per_objfile, &dwz->info, &dwz->abbrev,
b76e467d 8626 1);
c906108c
SS
8627}
8628
5734ee8b 8629/* Process all loaded DIEs for compilation unit CU, starting at
cdc07690 8630 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
5734ee8b 8631 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
cdc07690
YQ
8632 DW_AT_ranges). See the comments of add_partial_subprogram on how
8633 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
c906108c 8634
72bf9492
DJ
8635static void
8636scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
cdc07690
YQ
8637 CORE_ADDR *highpc, int set_addrmap,
8638 struct dwarf2_cu *cu)
c906108c 8639{
72bf9492 8640 struct partial_die_info *pdi;
c906108c 8641
91c24f0a
DC
8642 /* Now, march along the PDI's, descending into ones which have
8643 interesting children but skipping the children of the other ones,
8644 until we reach the end of the compilation unit. */
c906108c 8645
72bf9492 8646 pdi = first_die;
91c24f0a 8647
72bf9492
DJ
8648 while (pdi != NULL)
8649 {
52356b79 8650 pdi->fixup (cu);
c906108c 8651
f55ee35c 8652 /* Anonymous namespaces or modules have no name but have interesting
91c24f0a
DC
8653 children, so we need to look at them. Ditto for anonymous
8654 enums. */
933c6fe4 8655
72bf9492 8656 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
95554aad 8657 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
b1dc1806
XR
8658 || pdi->tag == DW_TAG_imported_unit
8659 || pdi->tag == DW_TAG_inlined_subroutine)
c906108c 8660 {
72bf9492 8661 switch (pdi->tag)
c906108c
SS
8662 {
8663 case DW_TAG_subprogram:
b1dc1806 8664 case DW_TAG_inlined_subroutine:
cdc07690 8665 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
c906108c 8666 break;
72929c62 8667 case DW_TAG_constant:
c906108c
SS
8668 case DW_TAG_variable:
8669 case DW_TAG_typedef:
91c24f0a 8670 case DW_TAG_union_type:
72bf9492 8671 if (!pdi->is_declaration)
63d06c5c 8672 {
72bf9492 8673 add_partial_symbol (pdi, cu);
63d06c5c
DC
8674 }
8675 break;
c906108c 8676 case DW_TAG_class_type:
680b30c7 8677 case DW_TAG_interface_type:
c906108c 8678 case DW_TAG_structure_type:
72bf9492 8679 if (!pdi->is_declaration)
c906108c 8680 {
72bf9492 8681 add_partial_symbol (pdi, cu);
c906108c 8682 }
b7fee5a3
KS
8683 if ((cu->language == language_rust
8684 || cu->language == language_cplus) && pdi->has_children)
e98c9e7c
TT
8685 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8686 set_addrmap, cu);
c906108c 8687 break;
91c24f0a 8688 case DW_TAG_enumeration_type:
72bf9492
DJ
8689 if (!pdi->is_declaration)
8690 add_partial_enumeration (pdi, cu);
c906108c
SS
8691 break;
8692 case DW_TAG_base_type:
a02abb62 8693 case DW_TAG_subrange_type:
c906108c 8694 /* File scope base type definitions are added to the partial
c5aa993b 8695 symbol table. */
72bf9492 8696 add_partial_symbol (pdi, cu);
c906108c 8697 break;
d9fa45fe 8698 case DW_TAG_namespace:
cdc07690 8699 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
91c24f0a 8700 break;
5d7cb8df 8701 case DW_TAG_module:
cdc07690 8702 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
5d7cb8df 8703 break;
95554aad
TT
8704 case DW_TAG_imported_unit:
8705 {
8706 struct dwarf2_per_cu_data *per_cu;
8707
f4dc4d17
DE
8708 /* For now we don't handle imported units in type units. */
8709 if (cu->per_cu->is_debug_types)
8710 {
8711 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8712 " supported in type units [in module %s]"),
518817b3 8713 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
f4dc4d17
DE
8714 }
8715
e3b94546
SM
8716 per_cu = dwarf2_find_containing_comp_unit
8717 (pdi->d.sect_off, pdi->is_dwz,
518817b3 8718 cu->per_cu->dwarf2_per_objfile);
95554aad
TT
8719
8720 /* Go read the partial unit, if needed. */
8721 if (per_cu->v.psymtab == NULL)
b93601f3 8722 process_psymtab_comp_unit (per_cu, 1, cu->language);
95554aad 8723
f4dc4d17 8724 VEC_safe_push (dwarf2_per_cu_ptr,
796a7ff8 8725 cu->per_cu->imported_symtabs, per_cu);
95554aad
TT
8726 }
8727 break;
74921315
KS
8728 case DW_TAG_imported_declaration:
8729 add_partial_symbol (pdi, cu);
8730 break;
c906108c
SS
8731 default:
8732 break;
8733 }
8734 }
8735
72bf9492
DJ
8736 /* If the die has a sibling, skip to the sibling. */
8737
8738 pdi = pdi->die_sibling;
8739 }
8740}
8741
8742/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 8743
72bf9492 8744 Normally, this is simple. For C++, the parent DIE's fully scoped
9c37b5ae 8745 name is concatenated with "::" and the partial DIE's name.
72bf9492
DJ
8746 Enumerators are an exception; they use the scope of their parent
8747 enumeration type, i.e. the name of the enumeration type is not
8748 prepended to the enumerator.
91c24f0a 8749
72bf9492
DJ
8750 There are two complexities. One is DW_AT_specification; in this
8751 case "parent" means the parent of the target of the specification,
8752 instead of the direct parent of the DIE. The other is compilers
8753 which do not emit DW_TAG_namespace; in this case we try to guess
8754 the fully qualified name of structure types from their members'
8755 linkage names. This must be done using the DIE's children rather
8756 than the children of any DW_AT_specification target. We only need
8757 to do this for structures at the top level, i.e. if the target of
8758 any DW_AT_specification (if any; otherwise the DIE itself) does not
8759 have a parent. */
8760
8761/* Compute the scope prefix associated with PDI's parent, in
8762 compilation unit CU. The result will be allocated on CU's
8763 comp_unit_obstack, or a copy of the already allocated PDI->NAME
8764 field. NULL is returned if no prefix is necessary. */
15d034d0 8765static const char *
72bf9492
DJ
8766partial_die_parent_scope (struct partial_die_info *pdi,
8767 struct dwarf2_cu *cu)
8768{
15d034d0 8769 const char *grandparent_scope;
72bf9492 8770 struct partial_die_info *parent, *real_pdi;
91c24f0a 8771
72bf9492
DJ
8772 /* We need to look at our parent DIE; if we have a DW_AT_specification,
8773 then this means the parent of the specification DIE. */
8774
8775 real_pdi = pdi;
72bf9492 8776 while (real_pdi->has_specification)
36586728
TT
8777 real_pdi = find_partial_die (real_pdi->spec_offset,
8778 real_pdi->spec_is_dwz, cu);
72bf9492
DJ
8779
8780 parent = real_pdi->die_parent;
8781 if (parent == NULL)
8782 return NULL;
8783
8784 if (parent->scope_set)
8785 return parent->scope;
8786
52356b79 8787 parent->fixup (cu);
72bf9492 8788
10b3939b 8789 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492 8790
acebe513
UW
8791 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
8792 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
8793 Work around this problem here. */
8794 if (cu->language == language_cplus
6e70227d 8795 && parent->tag == DW_TAG_namespace
acebe513
UW
8796 && strcmp (parent->name, "::") == 0
8797 && grandparent_scope == NULL)
8798 {
8799 parent->scope = NULL;
8800 parent->scope_set = 1;
8801 return NULL;
8802 }
8803
9c6c53f7
SA
8804 if (pdi->tag == DW_TAG_enumerator)
8805 /* Enumerators should not get the name of the enumeration as a prefix. */
8806 parent->scope = grandparent_scope;
8807 else if (parent->tag == DW_TAG_namespace
f55ee35c 8808 || parent->tag == DW_TAG_module
72bf9492
DJ
8809 || parent->tag == DW_TAG_structure_type
8810 || parent->tag == DW_TAG_class_type
680b30c7 8811 || parent->tag == DW_TAG_interface_type
ceeb3d5a
TT
8812 || parent->tag == DW_TAG_union_type
8813 || parent->tag == DW_TAG_enumeration_type)
72bf9492
DJ
8814 {
8815 if (grandparent_scope == NULL)
8816 parent->scope = parent->name;
8817 else
3e43a32a
MS
8818 parent->scope = typename_concat (&cu->comp_unit_obstack,
8819 grandparent_scope,
f55ee35c 8820 parent->name, 0, cu);
72bf9492 8821 }
72bf9492
DJ
8822 else
8823 {
8824 /* FIXME drow/2004-04-01: What should we be doing with
8825 function-local names? For partial symbols, we should probably be
8826 ignoring them. */
b98664d3 8827 complaint (_("unhandled containing DIE tag %d for DIE at %s"),
9d8780f0 8828 parent->tag, sect_offset_str (pdi->sect_off));
72bf9492 8829 parent->scope = grandparent_scope;
c906108c
SS
8830 }
8831
72bf9492
DJ
8832 parent->scope_set = 1;
8833 return parent->scope;
8834}
8835
8836/* Return the fully scoped name associated with PDI, from compilation unit
8837 CU. The result will be allocated with malloc. */
4568ecf9 8838
72bf9492
DJ
8839static char *
8840partial_die_full_name (struct partial_die_info *pdi,
8841 struct dwarf2_cu *cu)
8842{
15d034d0 8843 const char *parent_scope;
72bf9492 8844
98bfdba5
PA
8845 /* If this is a template instantiation, we can not work out the
8846 template arguments from partial DIEs. So, unfortunately, we have
8847 to go through the full DIEs. At least any work we do building
8848 types here will be reused if full symbols are loaded later. */
8849 if (pdi->has_template_arguments)
8850 {
52356b79 8851 pdi->fixup (cu);
98bfdba5
PA
8852
8853 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
8854 {
8855 struct die_info *die;
8856 struct attribute attr;
8857 struct dwarf2_cu *ref_cu = cu;
8858
b64f50a1 8859 /* DW_FORM_ref_addr is using section offset. */
b4069958 8860 attr.name = (enum dwarf_attribute) 0;
98bfdba5 8861 attr.form = DW_FORM_ref_addr;
9c541725 8862 attr.u.unsnd = to_underlying (pdi->sect_off);
98bfdba5
PA
8863 die = follow_die_ref (NULL, &attr, &ref_cu);
8864
8865 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
8866 }
8867 }
8868
72bf9492
DJ
8869 parent_scope = partial_die_parent_scope (pdi, cu);
8870 if (parent_scope == NULL)
8871 return NULL;
8872 else
f55ee35c 8873 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
c906108c
SS
8874}
8875
8876static void
72bf9492 8877add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 8878{
518817b3
SM
8879 struct dwarf2_per_objfile *dwarf2_per_objfile
8880 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 8881 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 8882 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c 8883 CORE_ADDR addr = 0;
15d034d0 8884 const char *actual_name = NULL;
e142c38c 8885 CORE_ADDR baseaddr;
15d034d0 8886 char *built_actual_name;
e142c38c
DJ
8887
8888 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 8889
15d034d0
TT
8890 built_actual_name = partial_die_full_name (pdi, cu);
8891 if (built_actual_name != NULL)
8892 actual_name = built_actual_name;
63d06c5c 8893
72bf9492
DJ
8894 if (actual_name == NULL)
8895 actual_name = pdi->name;
8896
c906108c
SS
8897 switch (pdi->tag)
8898 {
b1dc1806 8899 case DW_TAG_inlined_subroutine:
c906108c 8900 case DW_TAG_subprogram:
79748972
TT
8901 addr = (gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr)
8902 - baseaddr);
2cfa0c8d 8903 if (pdi->is_external || cu->language == language_ada)
c906108c 8904 {
2cfa0c8d
JB
8905 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
8906 of the global scope. But in Ada, we want to be able to access
8907 nested procedures globally. So all Ada subprograms are stored
8908 in the global scope. */
f47fb265 8909 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8910 built_actual_name != NULL,
f47fb265 8911 VAR_DOMAIN, LOC_BLOCK,
79748972 8912 SECT_OFF_TEXT (objfile),
75aedd27 8913 psymbol_placement::GLOBAL,
79748972
TT
8914 addr,
8915 cu->language, objfile);
c906108c
SS
8916 }
8917 else
8918 {
f47fb265 8919 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8920 built_actual_name != NULL,
f47fb265 8921 VAR_DOMAIN, LOC_BLOCK,
79748972 8922 SECT_OFF_TEXT (objfile),
75aedd27 8923 psymbol_placement::STATIC,
1762568f 8924 addr, cu->language, objfile);
c906108c 8925 }
0c1b455e
TT
8926
8927 if (pdi->main_subprogram && actual_name != NULL)
8928 set_objfile_main_name (objfile, actual_name, cu->language);
c906108c 8929 break;
72929c62 8930 case DW_TAG_constant:
75aedd27
TT
8931 add_psymbol_to_list (actual_name, strlen (actual_name),
8932 built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
8933 -1, (pdi->is_external
8934 ? psymbol_placement::GLOBAL
8935 : psymbol_placement::STATIC),
8936 0, cu->language, objfile);
72929c62 8937 break;
c906108c 8938 case DW_TAG_variable:
95554aad
TT
8939 if (pdi->d.locdesc)
8940 addr = decode_locdesc (pdi->d.locdesc, cu);
caac4577 8941
95554aad 8942 if (pdi->d.locdesc
caac4577
JG
8943 && addr == 0
8944 && !dwarf2_per_objfile->has_section_at_zero)
8945 {
8946 /* A global or static variable may also have been stripped
8947 out by the linker if unused, in which case its address
8948 will be nullified; do not add such variables into partial
8949 symbol table then. */
8950 }
8951 else if (pdi->is_external)
c906108c
SS
8952 {
8953 /* Global Variable.
8954 Don't enter into the minimal symbol tables as there is
8955 a minimal symbol table entry from the ELF symbols already.
8956 Enter into partial symbol table if it has a location
8957 descriptor or a type.
8958 If the location descriptor is missing, new_symbol will create
8959 a LOC_UNRESOLVED symbol, the address of the variable will then
8960 be determined from the minimal symbol table whenever the variable
8961 is referenced.
8962 The address for the partial symbol table entry is not
8963 used by GDB, but it comes in handy for debugging partial symbol
8964 table building. */
8965
95554aad 8966 if (pdi->d.locdesc || pdi->has_type)
f47fb265 8967 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8968 built_actual_name != NULL,
f47fb265 8969 VAR_DOMAIN, LOC_STATIC,
79748972 8970 SECT_OFF_TEXT (objfile),
75aedd27 8971 psymbol_placement::GLOBAL,
79748972 8972 addr, cu->language, objfile);
c906108c
SS
8973 }
8974 else
8975 {
ff908ebf
AW
8976 int has_loc = pdi->d.locdesc != NULL;
8977
8978 /* Static Variable. Skip symbols whose value we cannot know (those
8979 without location descriptors or constant values). */
8980 if (!has_loc && !pdi->has_const_value)
decbce07 8981 {
15d034d0 8982 xfree (built_actual_name);
decbce07
MS
8983 return;
8984 }
ff908ebf 8985
f47fb265 8986 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8987 built_actual_name != NULL,
f47fb265 8988 VAR_DOMAIN, LOC_STATIC,
79748972 8989 SECT_OFF_TEXT (objfile),
75aedd27 8990 psymbol_placement::STATIC,
79748972 8991 has_loc ? addr : 0,
f47fb265 8992 cu->language, objfile);
c906108c
SS
8993 }
8994 break;
8995 case DW_TAG_typedef:
8996 case DW_TAG_base_type:
a02abb62 8997 case DW_TAG_subrange_type:
38d518c9 8998 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 8999 built_actual_name != NULL,
79748972 9000 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 9001 psymbol_placement::STATIC,
1762568f 9002 0, cu->language, objfile);
c906108c 9003 break;
74921315 9004 case DW_TAG_imported_declaration:
72bf9492
DJ
9005 case DW_TAG_namespace:
9006 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 9007 built_actual_name != NULL,
79748972 9008 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 9009 psymbol_placement::GLOBAL,
1762568f 9010 0, cu->language, objfile);
72bf9492 9011 break;
530e8392
KB
9012 case DW_TAG_module:
9013 add_psymbol_to_list (actual_name, strlen (actual_name),
9014 built_actual_name != NULL,
79748972 9015 MODULE_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 9016 psymbol_placement::GLOBAL,
1762568f 9017 0, cu->language, objfile);
530e8392 9018 break;
c906108c 9019 case DW_TAG_class_type:
680b30c7 9020 case DW_TAG_interface_type:
c906108c
SS
9021 case DW_TAG_structure_type:
9022 case DW_TAG_union_type:
9023 case DW_TAG_enumeration_type:
fa4028e9
JB
9024 /* Skip external references. The DWARF standard says in the section
9025 about "Structure, Union, and Class Type Entries": "An incomplete
9026 structure, union or class type is represented by a structure,
9027 union or class entry that does not have a byte size attribute
9028 and that has a DW_AT_declaration attribute." */
9029 if (!pdi->has_byte_size && pdi->is_declaration)
decbce07 9030 {
15d034d0 9031 xfree (built_actual_name);
decbce07
MS
9032 return;
9033 }
fa4028e9 9034
63d06c5c
DC
9035 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
9036 static vs. global. */
38d518c9 9037 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 9038 built_actual_name != NULL,
79748972 9039 STRUCT_DOMAIN, LOC_TYPEDEF, -1,
9c37b5ae 9040 cu->language == language_cplus
75aedd27
TT
9041 ? psymbol_placement::GLOBAL
9042 : psymbol_placement::STATIC,
1762568f 9043 0, cu->language, objfile);
c906108c 9044
c906108c
SS
9045 break;
9046 case DW_TAG_enumerator:
38d518c9 9047 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 9048 built_actual_name != NULL,
79748972 9049 VAR_DOMAIN, LOC_CONST, -1,
9c37b5ae 9050 cu->language == language_cplus
75aedd27
TT
9051 ? psymbol_placement::GLOBAL
9052 : psymbol_placement::STATIC,
1762568f 9053 0, cu->language, objfile);
c906108c
SS
9054 break;
9055 default:
9056 break;
9057 }
5c4e30ca 9058
15d034d0 9059 xfree (built_actual_name);
c906108c
SS
9060}
9061
5c4e30ca
DC
9062/* Read a partial die corresponding to a namespace; also, add a symbol
9063 corresponding to that namespace to the symbol table. NAMESPACE is
9064 the name of the enclosing namespace. */
91c24f0a 9065
72bf9492
DJ
9066static void
9067add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 9068 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 9069 int set_addrmap, struct dwarf2_cu *cu)
91c24f0a 9070{
72bf9492 9071 /* Add a symbol for the namespace. */
e7c27a73 9072
72bf9492 9073 add_partial_symbol (pdi, cu);
5c4e30ca
DC
9074
9075 /* Now scan partial symbols in that namespace. */
9076
91c24f0a 9077 if (pdi->has_children)
cdc07690 9078 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
91c24f0a
DC
9079}
9080
5d7cb8df
JK
9081/* Read a partial die corresponding to a Fortran module. */
9082
9083static void
9084add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 9085 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
5d7cb8df 9086{
530e8392
KB
9087 /* Add a symbol for the namespace. */
9088
9089 add_partial_symbol (pdi, cu);
9090
f55ee35c 9091 /* Now scan partial symbols in that module. */
5d7cb8df
JK
9092
9093 if (pdi->has_children)
cdc07690 9094 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
5d7cb8df
JK
9095}
9096
b1dc1806
XR
9097/* Read a partial die corresponding to a subprogram or an inlined
9098 subprogram and create a partial symbol for that subprogram.
9099 When the CU language allows it, this routine also defines a partial
9100 symbol for each nested subprogram that this subprogram contains.
9101 If SET_ADDRMAP is true, record the covered ranges in the addrmap.
9102 Set *LOWPC and *HIGHPC to the lowest and highest PC values found in PDI.
6e70227d 9103
cdc07690
YQ
9104 PDI may also be a lexical block, in which case we simply search
9105 recursively for subprograms defined inside that lexical block.
bc30ff58
JB
9106 Again, this is only performed when the CU language allows this
9107 type of definitions. */
9108
9109static void
9110add_partial_subprogram (struct partial_die_info *pdi,
9111 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 9112 int set_addrmap, struct dwarf2_cu *cu)
bc30ff58 9113{
b1dc1806 9114 if (pdi->tag == DW_TAG_subprogram || pdi->tag == DW_TAG_inlined_subroutine)
bc30ff58
JB
9115 {
9116 if (pdi->has_pc_info)
9117 {
9118 if (pdi->lowpc < *lowpc)
9119 *lowpc = pdi->lowpc;
9120 if (pdi->highpc > *highpc)
9121 *highpc = pdi->highpc;
cdc07690 9122 if (set_addrmap)
5734ee8b 9123 {
518817b3 9124 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a
MR
9125 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9126 CORE_ADDR baseaddr;
b926417a
TT
9127 CORE_ADDR this_highpc;
9128 CORE_ADDR this_lowpc;
5734ee8b
DJ
9129
9130 baseaddr = ANOFFSET (objfile->section_offsets,
9131 SECT_OFF_TEXT (objfile));
b926417a
TT
9132 this_lowpc
9133 = (gdbarch_adjust_dwarf2_addr (gdbarch,
9134 pdi->lowpc + baseaddr)
9135 - baseaddr);
9136 this_highpc
9137 = (gdbarch_adjust_dwarf2_addr (gdbarch,
9138 pdi->highpc + baseaddr)
9139 - baseaddr);
d320c2b5 9140 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
b926417a 9141 this_lowpc, this_highpc - 1,
9291a0cd 9142 cu->per_cu->v.psymtab);
5734ee8b 9143 }
481860b3
GB
9144 }
9145
9146 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
9147 {
bc30ff58 9148 if (!pdi->is_declaration)
e8d05480
JB
9149 /* Ignore subprogram DIEs that do not have a name, they are
9150 illegal. Do not emit a complaint at this point, we will
9151 do so when we convert this psymtab into a symtab. */
9152 if (pdi->name)
9153 add_partial_symbol (pdi, cu);
bc30ff58
JB
9154 }
9155 }
6e70227d 9156
bc30ff58
JB
9157 if (! pdi->has_children)
9158 return;
9159
9160 if (cu->language == language_ada)
9161 {
9162 pdi = pdi->die_child;
9163 while (pdi != NULL)
9164 {
52356b79 9165 pdi->fixup (cu);
bc30ff58 9166 if (pdi->tag == DW_TAG_subprogram
b1dc1806 9167 || pdi->tag == DW_TAG_inlined_subroutine
bc30ff58 9168 || pdi->tag == DW_TAG_lexical_block)
cdc07690 9169 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
bc30ff58
JB
9170 pdi = pdi->die_sibling;
9171 }
9172 }
9173}
9174
91c24f0a
DC
9175/* Read a partial die corresponding to an enumeration type. */
9176
72bf9492
DJ
9177static void
9178add_partial_enumeration (struct partial_die_info *enum_pdi,
9179 struct dwarf2_cu *cu)
91c24f0a 9180{
72bf9492 9181 struct partial_die_info *pdi;
91c24f0a
DC
9182
9183 if (enum_pdi->name != NULL)
72bf9492
DJ
9184 add_partial_symbol (enum_pdi, cu);
9185
9186 pdi = enum_pdi->die_child;
9187 while (pdi)
91c24f0a 9188 {
72bf9492 9189 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
b98664d3 9190 complaint (_("malformed enumerator DIE ignored"));
91c24f0a 9191 else
72bf9492
DJ
9192 add_partial_symbol (pdi, cu);
9193 pdi = pdi->die_sibling;
91c24f0a 9194 }
91c24f0a
DC
9195}
9196
6caca83c
CC
9197/* Return the initial uleb128 in the die at INFO_PTR. */
9198
9199static unsigned int
d521ce57 9200peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6caca83c
CC
9201{
9202 unsigned int bytes_read;
9203
9204 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9205}
9206
685af9cd
TT
9207/* Read the initial uleb128 in the die at INFO_PTR in compilation unit
9208 READER::CU. Use READER::ABBREV_TABLE to lookup any abbreviation.
9209
4bb7a0a7
DJ
9210 Return the corresponding abbrev, or NULL if the number is zero (indicating
9211 an empty DIE). In either case *BYTES_READ will be set to the length of
9212 the initial number. */
9213
9214static struct abbrev_info *
685af9cd
TT
9215peek_die_abbrev (const die_reader_specs &reader,
9216 const gdb_byte *info_ptr, unsigned int *bytes_read)
4bb7a0a7 9217{
685af9cd 9218 dwarf2_cu *cu = reader.cu;
518817b3 9219 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
685af9cd
TT
9220 unsigned int abbrev_number
9221 = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4bb7a0a7
DJ
9222
9223 if (abbrev_number == 0)
9224 return NULL;
9225
685af9cd 9226 abbrev_info *abbrev = reader.abbrev_table->lookup_abbrev (abbrev_number);
4bb7a0a7
DJ
9227 if (!abbrev)
9228 {
422b9917 9229 error (_("Dwarf Error: Could not find abbrev number %d in %s"
9d8780f0 9230 " at offset %s [in module %s]"),
422b9917 9231 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
9d8780f0 9232 sect_offset_str (cu->header.sect_off), bfd_get_filename (abfd));
4bb7a0a7
DJ
9233 }
9234
9235 return abbrev;
9236}
9237
93311388
DE
9238/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9239 Returns a pointer to the end of a series of DIEs, terminated by an empty
4bb7a0a7
DJ
9240 DIE. Any children of the skipped DIEs will also be skipped. */
9241
d521ce57
TT
9242static const gdb_byte *
9243skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
4bb7a0a7 9244{
4bb7a0a7
DJ
9245 while (1)
9246 {
685af9cd
TT
9247 unsigned int bytes_read;
9248 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
9249
4bb7a0a7
DJ
9250 if (abbrev == NULL)
9251 return info_ptr + bytes_read;
9252 else
dee91e82 9253 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
4bb7a0a7
DJ
9254 }
9255}
9256
93311388
DE
9257/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9258 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4bb7a0a7
DJ
9259 abbrev corresponding to that skipped uleb128 should be passed in
9260 ABBREV. Returns a pointer to this DIE's sibling, skipping any
9261 children. */
9262
d521ce57
TT
9263static const gdb_byte *
9264skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
dee91e82 9265 struct abbrev_info *abbrev)
4bb7a0a7
DJ
9266{
9267 unsigned int bytes_read;
9268 struct attribute attr;
dee91e82
DE
9269 bfd *abfd = reader->abfd;
9270 struct dwarf2_cu *cu = reader->cu;
d521ce57 9271 const gdb_byte *buffer = reader->buffer;
f664829e 9272 const gdb_byte *buffer_end = reader->buffer_end;
4bb7a0a7
DJ
9273 unsigned int form, i;
9274
9275 for (i = 0; i < abbrev->num_attrs; i++)
9276 {
9277 /* The only abbrev we care about is DW_AT_sibling. */
9278 if (abbrev->attrs[i].name == DW_AT_sibling)
9279 {
dee91e82 9280 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
4bb7a0a7 9281 if (attr.form == DW_FORM_ref_addr)
b98664d3 9282 complaint (_("ignoring absolute DW_AT_sibling"));
4bb7a0a7 9283 else
b9502d3f 9284 {
9c541725
PA
9285 sect_offset off = dwarf2_get_ref_die_offset (&attr);
9286 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
9287
9288 if (sibling_ptr < info_ptr)
b98664d3 9289 complaint (_("DW_AT_sibling points backwards"));
22869d73
KS
9290 else if (sibling_ptr > reader->buffer_end)
9291 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f
WN
9292 else
9293 return sibling_ptr;
9294 }
4bb7a0a7
DJ
9295 }
9296
9297 /* If it isn't DW_AT_sibling, skip this attribute. */
9298 form = abbrev->attrs[i].form;
9299 skip_attribute:
9300 switch (form)
9301 {
4bb7a0a7 9302 case DW_FORM_ref_addr:
ae411497
TT
9303 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
9304 and later it is offset sized. */
9305 if (cu->header.version == 2)
9306 info_ptr += cu->header.addr_size;
9307 else
9308 info_ptr += cu->header.offset_size;
9309 break;
36586728
TT
9310 case DW_FORM_GNU_ref_alt:
9311 info_ptr += cu->header.offset_size;
9312 break;
ae411497 9313 case DW_FORM_addr:
4bb7a0a7
DJ
9314 info_ptr += cu->header.addr_size;
9315 break;
9316 case DW_FORM_data1:
9317 case DW_FORM_ref1:
9318 case DW_FORM_flag:
9319 info_ptr += 1;
9320 break;
2dc7f7b3 9321 case DW_FORM_flag_present:
43988095 9322 case DW_FORM_implicit_const:
2dc7f7b3 9323 break;
4bb7a0a7
DJ
9324 case DW_FORM_data2:
9325 case DW_FORM_ref2:
9326 info_ptr += 2;
9327 break;
9328 case DW_FORM_data4:
9329 case DW_FORM_ref4:
9330 info_ptr += 4;
9331 break;
9332 case DW_FORM_data8:
9333 case DW_FORM_ref8:
55f1336d 9334 case DW_FORM_ref_sig8:
4bb7a0a7
DJ
9335 info_ptr += 8;
9336 break;
0224619f
JK
9337 case DW_FORM_data16:
9338 info_ptr += 16;
9339 break;
4bb7a0a7 9340 case DW_FORM_string:
9b1c24c8 9341 read_direct_string (abfd, info_ptr, &bytes_read);
4bb7a0a7
DJ
9342 info_ptr += bytes_read;
9343 break;
2dc7f7b3 9344 case DW_FORM_sec_offset:
4bb7a0a7 9345 case DW_FORM_strp:
36586728 9346 case DW_FORM_GNU_strp_alt:
4bb7a0a7
DJ
9347 info_ptr += cu->header.offset_size;
9348 break;
2dc7f7b3 9349 case DW_FORM_exprloc:
4bb7a0a7
DJ
9350 case DW_FORM_block:
9351 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9352 info_ptr += bytes_read;
9353 break;
9354 case DW_FORM_block1:
9355 info_ptr += 1 + read_1_byte (abfd, info_ptr);
9356 break;
9357 case DW_FORM_block2:
9358 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
9359 break;
9360 case DW_FORM_block4:
9361 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
9362 break;
336d760d 9363 case DW_FORM_addrx:
cf532bd1 9364 case DW_FORM_strx:
4bb7a0a7
DJ
9365 case DW_FORM_sdata:
9366 case DW_FORM_udata:
9367 case DW_FORM_ref_udata:
3019eac3
DE
9368 case DW_FORM_GNU_addr_index:
9369 case DW_FORM_GNU_str_index:
d521ce57 9370 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
4bb7a0a7
DJ
9371 break;
9372 case DW_FORM_indirect:
9373 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9374 info_ptr += bytes_read;
9375 /* We need to continue parsing from here, so just go back to
9376 the top. */
9377 goto skip_attribute;
9378
9379 default:
3e43a32a
MS
9380 error (_("Dwarf Error: Cannot handle %s "
9381 "in DWARF reader [in module %s]"),
4bb7a0a7
DJ
9382 dwarf_form_name (form),
9383 bfd_get_filename (abfd));
9384 }
9385 }
9386
9387 if (abbrev->has_children)
dee91e82 9388 return skip_children (reader, info_ptr);
4bb7a0a7
DJ
9389 else
9390 return info_ptr;
9391}
9392
93311388 9393/* Locate ORIG_PDI's sibling.
dee91e82 9394 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
91c24f0a 9395
d521ce57 9396static const gdb_byte *
dee91e82
DE
9397locate_pdi_sibling (const struct die_reader_specs *reader,
9398 struct partial_die_info *orig_pdi,
d521ce57 9399 const gdb_byte *info_ptr)
91c24f0a
DC
9400{
9401 /* Do we know the sibling already? */
72bf9492 9402
91c24f0a
DC
9403 if (orig_pdi->sibling)
9404 return orig_pdi->sibling;
9405
9406 /* Are there any children to deal with? */
9407
9408 if (!orig_pdi->has_children)
9409 return info_ptr;
9410
4bb7a0a7 9411 /* Skip the children the long way. */
91c24f0a 9412
dee91e82 9413 return skip_children (reader, info_ptr);
91c24f0a
DC
9414}
9415
257e7a09 9416/* Expand this partial symbol table into a full symbol table. SELF is
442e4d9c 9417 not NULL. */
c906108c
SS
9418
9419static void
257e7a09
YQ
9420dwarf2_read_symtab (struct partial_symtab *self,
9421 struct objfile *objfile)
c906108c 9422{
ed2dc618
SM
9423 struct dwarf2_per_objfile *dwarf2_per_objfile
9424 = get_dwarf2_per_objfile (objfile);
9425
257e7a09 9426 if (self->readin)
c906108c 9427 {
442e4d9c 9428 warning (_("bug: psymtab for %s is already read in."),
257e7a09 9429 self->filename);
442e4d9c
YQ
9430 }
9431 else
9432 {
9433 if (info_verbose)
c906108c 9434 {
442e4d9c 9435 printf_filtered (_("Reading in symbols for %s..."),
257e7a09 9436 self->filename);
442e4d9c 9437 gdb_flush (gdb_stdout);
c906108c 9438 }
c906108c 9439
442e4d9c
YQ
9440 /* If this psymtab is constructed from a debug-only objfile, the
9441 has_section_at_zero flag will not necessarily be correct. We
9442 can get the correct value for this flag by looking at the data
9443 associated with the (presumably stripped) associated objfile. */
9444 if (objfile->separate_debug_objfile_backlink)
9445 {
9446 struct dwarf2_per_objfile *dpo_backlink
ed2dc618 9447 = get_dwarf2_per_objfile (objfile->separate_debug_objfile_backlink);
9a619af0 9448
442e4d9c
YQ
9449 dwarf2_per_objfile->has_section_at_zero
9450 = dpo_backlink->has_section_at_zero;
9451 }
b2ab525c 9452
442e4d9c 9453 dwarf2_per_objfile->reading_partial_symbols = 0;
98bfdba5 9454
257e7a09 9455 psymtab_to_symtab_1 (self);
c906108c 9456
442e4d9c
YQ
9457 /* Finish up the debug error message. */
9458 if (info_verbose)
9459 printf_filtered (_("done.\n"));
c906108c 9460 }
95554aad 9461
ed2dc618 9462 process_cu_includes (dwarf2_per_objfile);
c906108c 9463}
9cdd5dbd
DE
9464\f
9465/* Reading in full CUs. */
c906108c 9466
10b3939b
DJ
9467/* Add PER_CU to the queue. */
9468
9469static void
95554aad
TT
9470queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
9471 enum language pretend_language)
10b3939b
DJ
9472{
9473 struct dwarf2_queue_item *item;
9474
9475 per_cu->queued = 1;
8d749320 9476 item = XNEW (struct dwarf2_queue_item);
10b3939b 9477 item->per_cu = per_cu;
95554aad 9478 item->pretend_language = pretend_language;
10b3939b
DJ
9479 item->next = NULL;
9480
9481 if (dwarf2_queue == NULL)
9482 dwarf2_queue = item;
9483 else
9484 dwarf2_queue_tail->next = item;
9485
9486 dwarf2_queue_tail = item;
9487}
9488
89e63ee4
DE
9489/* If PER_CU is not yet queued, add it to the queue.
9490 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
9491 dependency.
0907af0c 9492 The result is non-zero if PER_CU was queued, otherwise the result is zero
69d751e3
DE
9493 meaning either PER_CU is already queued or it is already loaded.
9494
9495 N.B. There is an invariant here that if a CU is queued then it is loaded.
9496 The caller is required to load PER_CU if we return non-zero. */
0907af0c
DE
9497
9498static int
89e63ee4 9499maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
0907af0c
DE
9500 struct dwarf2_per_cu_data *per_cu,
9501 enum language pretend_language)
9502{
9503 /* We may arrive here during partial symbol reading, if we need full
9504 DIEs to process an unusual case (e.g. template arguments). Do
9505 not queue PER_CU, just tell our caller to load its DIEs. */
ed2dc618 9506 if (per_cu->dwarf2_per_objfile->reading_partial_symbols)
0907af0c
DE
9507 {
9508 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
9509 return 1;
9510 return 0;
9511 }
9512
9513 /* Mark the dependence relation so that we don't flush PER_CU
9514 too early. */
89e63ee4
DE
9515 if (dependent_cu != NULL)
9516 dwarf2_add_dependence (dependent_cu, per_cu);
0907af0c
DE
9517
9518 /* If it's already on the queue, we have nothing to do. */
9519 if (per_cu->queued)
9520 return 0;
9521
9522 /* If the compilation unit is already loaded, just mark it as
9523 used. */
9524 if (per_cu->cu != NULL)
9525 {
9526 per_cu->cu->last_used = 0;
9527 return 0;
9528 }
9529
9530 /* Add it to the queue. */
9531 queue_comp_unit (per_cu, pretend_language);
9532
9533 return 1;
9534}
9535
10b3939b
DJ
9536/* Process the queue. */
9537
9538static void
ed2dc618 9539process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile)
10b3939b
DJ
9540{
9541 struct dwarf2_queue_item *item, *next_item;
9542
b4f54984 9543 if (dwarf_read_debug)
45cfd468
DE
9544 {
9545 fprintf_unfiltered (gdb_stdlog,
9546 "Expanding one or more symtabs of objfile %s ...\n",
4262abfb 9547 objfile_name (dwarf2_per_objfile->objfile));
45cfd468
DE
9548 }
9549
03dd20cc
DJ
9550 /* The queue starts out with one item, but following a DIE reference
9551 may load a new CU, adding it to the end of the queue. */
10b3939b
DJ
9552 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
9553 {
cc12ce38
DE
9554 if ((dwarf2_per_objfile->using_index
9555 ? !item->per_cu->v.quick->compunit_symtab
9556 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
9557 /* Skip dummy CUs. */
9558 && item->per_cu->cu != NULL)
f4dc4d17
DE
9559 {
9560 struct dwarf2_per_cu_data *per_cu = item->per_cu;
73be47f5 9561 unsigned int debug_print_threshold;
247f5c4f 9562 char buf[100];
f4dc4d17 9563
247f5c4f 9564 if (per_cu->is_debug_types)
f4dc4d17 9565 {
247f5c4f
DE
9566 struct signatured_type *sig_type =
9567 (struct signatured_type *) per_cu;
9568
9d8780f0 9569 sprintf (buf, "TU %s at offset %s",
73be47f5 9570 hex_string (sig_type->signature),
9d8780f0 9571 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9572 /* There can be 100s of TUs.
9573 Only print them in verbose mode. */
9574 debug_print_threshold = 2;
f4dc4d17 9575 }
247f5c4f 9576 else
73be47f5 9577 {
9d8780f0
SM
9578 sprintf (buf, "CU at offset %s",
9579 sect_offset_str (per_cu->sect_off));
73be47f5
DE
9580 debug_print_threshold = 1;
9581 }
247f5c4f 9582
b4f54984 9583 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9584 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
f4dc4d17
DE
9585
9586 if (per_cu->is_debug_types)
9587 process_full_type_unit (per_cu, item->pretend_language);
9588 else
9589 process_full_comp_unit (per_cu, item->pretend_language);
9590
b4f54984 9591 if (dwarf_read_debug >= debug_print_threshold)
247f5c4f 9592 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
f4dc4d17 9593 }
10b3939b
DJ
9594
9595 item->per_cu->queued = 0;
9596 next_item = item->next;
9597 xfree (item);
9598 }
9599
9600 dwarf2_queue_tail = NULL;
45cfd468 9601
b4f54984 9602 if (dwarf_read_debug)
45cfd468
DE
9603 {
9604 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
4262abfb 9605 objfile_name (dwarf2_per_objfile->objfile));
45cfd468 9606 }
10b3939b
DJ
9607}
9608
10b3939b
DJ
9609/* Read in full symbols for PST, and anything it depends on. */
9610
c906108c 9611static void
fba45db2 9612psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c 9613{
10b3939b 9614 struct dwarf2_per_cu_data *per_cu;
aaa75496
JB
9615 int i;
9616
95554aad
TT
9617 if (pst->readin)
9618 return;
9619
aaa75496 9620 for (i = 0; i < pst->number_of_dependencies; i++)
95554aad
TT
9621 if (!pst->dependencies[i]->readin
9622 && pst->dependencies[i]->user == NULL)
aaa75496
JB
9623 {
9624 /* Inform about additional files that need to be read in. */
9625 if (info_verbose)
9626 {
a3f17187 9627 /* FIXME: i18n: Need to make this a single string. */
aaa75496
JB
9628 fputs_filtered (" ", gdb_stdout);
9629 wrap_here ("");
9630 fputs_filtered ("and ", gdb_stdout);
9631 wrap_here ("");
9632 printf_filtered ("%s...", pst->dependencies[i]->filename);
0963b4bd 9633 wrap_here (""); /* Flush output. */
aaa75496
JB
9634 gdb_flush (gdb_stdout);
9635 }
9636 psymtab_to_symtab_1 (pst->dependencies[i]);
9637 }
9638
9a3c8263 9639 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
10b3939b
DJ
9640
9641 if (per_cu == NULL)
aaa75496
JB
9642 {
9643 /* It's an include file, no symbols to read for it.
9644 Everything is in the parent symtab. */
9645 pst->readin = 1;
9646 return;
9647 }
c906108c 9648
58f0c718 9649 dw2_do_instantiate_symtab (per_cu, false);
10b3939b
DJ
9650}
9651
dee91e82
DE
9652/* Trivial hash function for die_info: the hash value of a DIE
9653 is its offset in .debug_info for this objfile. */
10b3939b 9654
dee91e82
DE
9655static hashval_t
9656die_hash (const void *item)
10b3939b 9657{
9a3c8263 9658 const struct die_info *die = (const struct die_info *) item;
6502dd73 9659
9c541725 9660 return to_underlying (die->sect_off);
dee91e82 9661}
63d06c5c 9662
dee91e82
DE
9663/* Trivial comparison function for die_info structures: two DIEs
9664 are equal if they have the same offset. */
98bfdba5 9665
dee91e82
DE
9666static int
9667die_eq (const void *item_lhs, const void *item_rhs)
9668{
9a3c8263
SM
9669 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
9670 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
c906108c 9671
9c541725 9672 return die_lhs->sect_off == die_rhs->sect_off;
dee91e82 9673}
c906108c 9674
dee91e82
DE
9675/* die_reader_func for load_full_comp_unit.
9676 This is identical to read_signatured_type_reader,
9677 but is kept separate for now. */
c906108c 9678
dee91e82
DE
9679static void
9680load_full_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 9681 const gdb_byte *info_ptr,
dee91e82
DE
9682 struct die_info *comp_unit_die,
9683 int has_children,
9684 void *data)
9685{
9686 struct dwarf2_cu *cu = reader->cu;
9a3c8263 9687 enum language *language_ptr = (enum language *) data;
6caca83c 9688
dee91e82
DE
9689 gdb_assert (cu->die_hash == NULL);
9690 cu->die_hash =
9691 htab_create_alloc_ex (cu->header.length / 12,
9692 die_hash,
9693 die_eq,
9694 NULL,
9695 &cu->comp_unit_obstack,
9696 hashtab_obstack_allocate,
9697 dummy_obstack_deallocate);
e142c38c 9698
dee91e82
DE
9699 if (has_children)
9700 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
9701 &info_ptr, comp_unit_die);
9702 cu->dies = comp_unit_die;
9703 /* comp_unit_die is not stored in die_hash, no need. */
10b3939b
DJ
9704
9705 /* We try not to read any attributes in this function, because not
9cdd5dbd 9706 all CUs needed for references have been loaded yet, and symbol
10b3939b 9707 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
9708 or we won't be able to build types correctly.
9709 Similarly, if we do not read the producer, we can not apply
9710 producer-specific interpretation. */
95554aad 9711 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
dee91e82 9712}
10b3939b 9713
dee91e82 9714/* Load the DIEs associated with PER_CU into memory. */
a6c727b2 9715
dee91e82 9716static void
95554aad 9717load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
58f0c718 9718 bool skip_partial,
95554aad 9719 enum language pretend_language)
dee91e82 9720{
3019eac3 9721 gdb_assert (! this_cu->is_debug_types);
c5b7e1cb 9722
58f0c718 9723 init_cutu_and_read_dies (this_cu, NULL, 1, 1, skip_partial,
f4dc4d17 9724 load_full_comp_unit_reader, &pretend_language);
10b3939b
DJ
9725}
9726
3da10d80
KS
9727/* Add a DIE to the delayed physname list. */
9728
9729static void
9730add_to_method_list (struct type *type, int fnfield_index, int index,
9731 const char *name, struct die_info *die,
9732 struct dwarf2_cu *cu)
9733{
9734 struct delayed_method_info mi;
9735 mi.type = type;
9736 mi.fnfield_index = fnfield_index;
9737 mi.index = index;
9738 mi.name = name;
9739 mi.die = die;
c89b44cd 9740 cu->method_list.push_back (mi);
3da10d80
KS
9741}
9742
3693fdb3
PA
9743/* Check whether [PHYSNAME, PHYSNAME+LEN) ends with a modifier like
9744 "const" / "volatile". If so, decrements LEN by the length of the
9745 modifier and return true. Otherwise return false. */
9746
9747template<size_t N>
9748static bool
9749check_modifier (const char *physname, size_t &len, const char (&mod)[N])
9750{
9751 size_t mod_len = sizeof (mod) - 1;
9752 if (len > mod_len && startswith (physname + (len - mod_len), mod))
9753 {
9754 len -= mod_len;
9755 return true;
9756 }
9757 return false;
9758}
9759
3da10d80
KS
9760/* Compute the physnames of any methods on the CU's method list.
9761
9762 The computation of method physnames is delayed in order to avoid the
9763 (bad) condition that one of the method's formal parameters is of an as yet
9764 incomplete type. */
9765
9766static void
9767compute_delayed_physnames (struct dwarf2_cu *cu)
9768{
3693fdb3 9769 /* Only C++ delays computing physnames. */
c89b44cd 9770 if (cu->method_list.empty ())
3693fdb3
PA
9771 return;
9772 gdb_assert (cu->language == language_cplus);
9773
52941706 9774 for (const delayed_method_info &mi : cu->method_list)
3da10d80 9775 {
1d06ead6 9776 const char *physname;
3da10d80 9777 struct fn_fieldlist *fn_flp
c89b44cd
TT
9778 = &TYPE_FN_FIELDLIST (mi.type, mi.fnfield_index);
9779 physname = dwarf2_physname (mi.name, mi.die, cu);
9780 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi.index)
005e54bb 9781 = physname ? physname : "";
3693fdb3
PA
9782
9783 /* Since there's no tag to indicate whether a method is a
9784 const/volatile overload, extract that information out of the
9785 demangled name. */
9786 if (physname != NULL)
9787 {
9788 size_t len = strlen (physname);
9789
9790 while (1)
9791 {
9792 if (physname[len] == ')') /* shortcut */
9793 break;
9794 else if (check_modifier (physname, len, " const"))
c89b44cd 9795 TYPE_FN_FIELD_CONST (fn_flp->fn_fields, mi.index) = 1;
3693fdb3 9796 else if (check_modifier (physname, len, " volatile"))
c89b44cd 9797 TYPE_FN_FIELD_VOLATILE (fn_flp->fn_fields, mi.index) = 1;
3693fdb3
PA
9798 else
9799 break;
9800 }
9801 }
3da10d80 9802 }
c89b44cd
TT
9803
9804 /* The list is no longer needed. */
9805 cu->method_list.clear ();
3da10d80
KS
9806}
9807
a766d390
DE
9808/* Go objects should be embedded in a DW_TAG_module DIE,
9809 and it's not clear if/how imported objects will appear.
9810 To keep Go support simple until that's worked out,
9811 go back through what we've read and create something usable.
9812 We could do this while processing each DIE, and feels kinda cleaner,
9813 but that way is more invasive.
9814 This is to, for example, allow the user to type "p var" or "b main"
9815 without having to specify the package name, and allow lookups
9816 of module.object to work in contexts that use the expression
9817 parser. */
9818
9819static void
9820fixup_go_packaging (struct dwarf2_cu *cu)
9821{
9822 char *package_name = NULL;
9823 struct pending *list;
9824 int i;
9825
c24bdb02 9826 for (list = *cu->get_builder ()->get_global_symbols ();
804d2729
TT
9827 list != NULL;
9828 list = list->next)
a766d390
DE
9829 {
9830 for (i = 0; i < list->nsyms; ++i)
9831 {
9832 struct symbol *sym = list->symbol[i];
9833
9834 if (SYMBOL_LANGUAGE (sym) == language_go
9835 && SYMBOL_CLASS (sym) == LOC_BLOCK)
9836 {
9837 char *this_package_name = go_symbol_package_name (sym);
9838
9839 if (this_package_name == NULL)
9840 continue;
9841 if (package_name == NULL)
9842 package_name = this_package_name;
9843 else
9844 {
518817b3
SM
9845 struct objfile *objfile
9846 = cu->per_cu->dwarf2_per_objfile->objfile;
a766d390 9847 if (strcmp (package_name, this_package_name) != 0)
b98664d3 9848 complaint (_("Symtab %s has objects from two different Go packages: %s and %s"),
08be3fe3
DE
9849 (symbol_symtab (sym) != NULL
9850 ? symtab_to_filename_for_display
9851 (symbol_symtab (sym))
e3b94546 9852 : objfile_name (objfile)),
a766d390
DE
9853 this_package_name, package_name);
9854 xfree (this_package_name);
9855 }
9856 }
9857 }
9858 }
9859
9860 if (package_name != NULL)
9861 {
518817b3 9862 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
34a68019 9863 const char *saved_package_name
224c3ddb
SM
9864 = (const char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
9865 package_name,
9866 strlen (package_name));
19f392bc
UW
9867 struct type *type = init_type (objfile, TYPE_CODE_MODULE, 0,
9868 saved_package_name);
a766d390
DE
9869 struct symbol *sym;
9870
e623cf5d 9871 sym = allocate_symbol (objfile);
f85f34ed 9872 SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
86f62fd7
TT
9873 SYMBOL_SET_NAMES (sym, saved_package_name,
9874 strlen (saved_package_name), 0, objfile);
a766d390
DE
9875 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
9876 e.g., "main" finds the "main" module and not C's main(). */
9877 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
f1e6e072 9878 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
a766d390
DE
9879 SYMBOL_TYPE (sym) = type;
9880
c24bdb02 9881 add_symbol_to_list (sym, cu->get_builder ()->get_global_symbols ());
a766d390
DE
9882
9883 xfree (package_name);
9884 }
9885}
9886
c9317f21
TT
9887/* Allocate a fully-qualified name consisting of the two parts on the
9888 obstack. */
9889
9890static const char *
9891rust_fully_qualify (struct obstack *obstack, const char *p1, const char *p2)
9892{
9893 return obconcat (obstack, p1, "::", p2, (char *) NULL);
9894}
9895
9896/* A helper that allocates a struct discriminant_info to attach to a
9897 union type. */
9898
9899static struct discriminant_info *
9900alloc_discriminant_info (struct type *type, int discriminant_index,
9901 int default_index)
9902{
9903 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
c7b15a66
TT
9904 gdb_assert (discriminant_index == -1
9905 || (discriminant_index >= 0
9906 && discriminant_index < TYPE_NFIELDS (type)));
c9317f21 9907 gdb_assert (default_index == -1
c7b15a66 9908 || (default_index >= 0 && default_index < TYPE_NFIELDS (type)));
c9317f21
TT
9909
9910 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
9911
9912 struct discriminant_info *disc
9913 = ((struct discriminant_info *)
9914 TYPE_ZALLOC (type,
9915 offsetof (struct discriminant_info, discriminants)
9916 + TYPE_NFIELDS (type) * sizeof (disc->discriminants[0])));
9917 disc->default_index = default_index;
9918 disc->discriminant_index = discriminant_index;
9919
9920 struct dynamic_prop prop;
9921 prop.kind = PROP_UNDEFINED;
9922 prop.data.baton = disc;
9923
9924 add_dyn_prop (DYN_PROP_DISCRIMINATED, prop, type);
9925
9926 return disc;
9927}
9928
9929/* Some versions of rustc emitted enums in an unusual way.
9930
9931 Ordinary enums were emitted as unions. The first element of each
9932 structure in the union was named "RUST$ENUM$DISR". This element
9933 held the discriminant.
9934
9935 These versions of Rust also implemented the "non-zero"
9936 optimization. When the enum had two values, and one is empty and
9937 the other holds a pointer that cannot be zero, the pointer is used
9938 as the discriminant, with a zero value meaning the empty variant.
9939 Here, the union's first member is of the form
9940 RUST$ENCODED$ENUM$<fieldno>$<fieldno>$...$<variantname>
9941 where the fieldnos are the indices of the fields that should be
9942 traversed in order to find the field (which may be several fields deep)
9943 and the variantname is the name of the variant of the case when the
9944 field is zero.
9945
9946 This function recognizes whether TYPE is of one of these forms,
9947 and, if so, smashes it to be a variant type. */
9948
9949static void
9950quirk_rust_enum (struct type *type, struct objfile *objfile)
9951{
9952 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
9953
9954 /* We don't need to deal with empty enums. */
9955 if (TYPE_NFIELDS (type) == 0)
9956 return;
9957
9958#define RUST_ENUM_PREFIX "RUST$ENCODED$ENUM$"
9959 if (TYPE_NFIELDS (type) == 1
9960 && startswith (TYPE_FIELD_NAME (type, 0), RUST_ENUM_PREFIX))
9961 {
9962 const char *name = TYPE_FIELD_NAME (type, 0) + strlen (RUST_ENUM_PREFIX);
9963
9964 /* Decode the field name to find the offset of the
9965 discriminant. */
9966 ULONGEST bit_offset = 0;
9967 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
9968 while (name[0] >= '0' && name[0] <= '9')
9969 {
9970 char *tail;
9971 unsigned long index = strtoul (name, &tail, 10);
9972 name = tail;
9973 if (*name != '$'
9974 || index >= TYPE_NFIELDS (field_type)
9975 || (TYPE_FIELD_LOC_KIND (field_type, index)
9976 != FIELD_LOC_KIND_BITPOS))
9977 {
b98664d3 9978 complaint (_("Could not parse Rust enum encoding string \"%s\""
c9317f21
TT
9979 "[in module %s]"),
9980 TYPE_FIELD_NAME (type, 0),
9981 objfile_name (objfile));
9982 return;
9983 }
9984 ++name;
9985
9986 bit_offset += TYPE_FIELD_BITPOS (field_type, index);
9987 field_type = TYPE_FIELD_TYPE (field_type, index);
9988 }
9989
9990 /* Make a union to hold the variants. */
9991 struct type *union_type = alloc_type (objfile);
9992 TYPE_CODE (union_type) = TYPE_CODE_UNION;
9993 TYPE_NFIELDS (union_type) = 3;
9994 TYPE_FIELDS (union_type)
9995 = (struct field *) TYPE_ZALLOC (type, 3 * sizeof (struct field));
9996 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 9997 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
9998
9999 /* Put the discriminant must at index 0. */
10000 TYPE_FIELD_TYPE (union_type, 0) = field_type;
10001 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
10002 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
10003 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 0), bit_offset);
10004
10005 /* The order of fields doesn't really matter, so put the real
10006 field at index 1 and the data-less field at index 2. */
10007 struct discriminant_info *disc
10008 = alloc_discriminant_info (union_type, 0, 1);
10009 TYPE_FIELD (union_type, 1) = TYPE_FIELD (type, 0);
10010 TYPE_FIELD_NAME (union_type, 1)
10011 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1)));
10012 TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1))
10013 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
10014 TYPE_FIELD_NAME (union_type, 1));
10015
10016 const char *dataless_name
10017 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
10018 name);
10019 struct type *dataless_type = init_type (objfile, TYPE_CODE_VOID, 0,
10020 dataless_name);
10021 TYPE_FIELD_TYPE (union_type, 2) = dataless_type;
10022 /* NAME points into the original discriminant name, which
10023 already has the correct lifetime. */
10024 TYPE_FIELD_NAME (union_type, 2) = name;
10025 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 2), 0);
10026 disc->discriminants[2] = 0;
10027
10028 /* Smash this type to be a structure type. We have to do this
10029 because the type has already been recorded. */
10030 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10031 TYPE_NFIELDS (type) = 1;
10032 TYPE_FIELDS (type)
10033 = (struct field *) TYPE_ZALLOC (type, sizeof (struct field));
10034
10035 /* Install the variant part. */
10036 TYPE_FIELD_TYPE (type, 0) = union_type;
10037 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10038 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10039 }
10040 else if (TYPE_NFIELDS (type) == 1)
10041 {
10042 /* We assume that a union with a single field is a univariant
10043 enum. */
10044 /* Smash this type to be a structure type. We have to do this
10045 because the type has already been recorded. */
10046 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10047
10048 /* Make a union to hold the variants. */
10049 struct type *union_type = alloc_type (objfile);
10050 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10051 TYPE_NFIELDS (union_type) = TYPE_NFIELDS (type);
10052 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 10053 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
10054 TYPE_FIELDS (union_type) = TYPE_FIELDS (type);
10055
10056 struct type *field_type = TYPE_FIELD_TYPE (union_type, 0);
10057 const char *variant_name
10058 = rust_last_path_segment (TYPE_NAME (field_type));
10059 TYPE_FIELD_NAME (union_type, 0) = variant_name;
10060 TYPE_NAME (field_type)
10061 = rust_fully_qualify (&objfile->objfile_obstack,
c7b15a66 10062 TYPE_NAME (type), variant_name);
c9317f21
TT
10063
10064 /* Install the union in the outer struct type. */
10065 TYPE_NFIELDS (type) = 1;
10066 TYPE_FIELDS (type)
10067 = (struct field *) TYPE_ZALLOC (union_type, sizeof (struct field));
10068 TYPE_FIELD_TYPE (type, 0) = union_type;
10069 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10070 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10071
10072 alloc_discriminant_info (union_type, -1, 0);
10073 }
10074 else
10075 {
10076 struct type *disr_type = nullptr;
10077 for (int i = 0; i < TYPE_NFIELDS (type); ++i)
10078 {
10079 disr_type = TYPE_FIELD_TYPE (type, i);
10080
a037790e
TT
10081 if (TYPE_CODE (disr_type) != TYPE_CODE_STRUCT)
10082 {
10083 /* All fields of a true enum will be structs. */
10084 return;
10085 }
10086 else if (TYPE_NFIELDS (disr_type) == 0)
c9317f21
TT
10087 {
10088 /* Could be data-less variant, so keep going. */
a037790e 10089 disr_type = nullptr;
c9317f21
TT
10090 }
10091 else if (strcmp (TYPE_FIELD_NAME (disr_type, 0),
10092 "RUST$ENUM$DISR") != 0)
10093 {
10094 /* Not a Rust enum. */
10095 return;
10096 }
10097 else
10098 {
10099 /* Found one. */
10100 break;
10101 }
10102 }
10103
10104 /* If we got here without a discriminant, then it's probably
10105 just a union. */
10106 if (disr_type == nullptr)
10107 return;
10108
10109 /* Smash this type to be a structure type. We have to do this
10110 because the type has already been recorded. */
10111 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10112
10113 /* Make a union to hold the variants. */
10114 struct field *disr_field = &TYPE_FIELD (disr_type, 0);
10115 struct type *union_type = alloc_type (objfile);
10116 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10117 TYPE_NFIELDS (union_type) = 1 + TYPE_NFIELDS (type);
10118 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
2b4424c3 10119 set_type_align (union_type, TYPE_RAW_ALIGN (type));
c9317f21
TT
10120 TYPE_FIELDS (union_type)
10121 = (struct field *) TYPE_ZALLOC (union_type,
10122 (TYPE_NFIELDS (union_type)
10123 * sizeof (struct field)));
10124
10125 memcpy (TYPE_FIELDS (union_type) + 1, TYPE_FIELDS (type),
10126 TYPE_NFIELDS (type) * sizeof (struct field));
10127
10128 /* Install the discriminant at index 0 in the union. */
10129 TYPE_FIELD (union_type, 0) = *disr_field;
10130 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
10131 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
10132
10133 /* Install the union in the outer struct type. */
10134 TYPE_FIELD_TYPE (type, 0) = union_type;
10135 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10136 TYPE_NFIELDS (type) = 1;
10137
10138 /* Set the size and offset of the union type. */
10139 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10140
10141 /* We need a way to find the correct discriminant given a
10142 variant name. For convenience we build a map here. */
10143 struct type *enum_type = FIELD_TYPE (*disr_field);
10144 std::unordered_map<std::string, ULONGEST> discriminant_map;
10145 for (int i = 0; i < TYPE_NFIELDS (enum_type); ++i)
10146 {
10147 if (TYPE_FIELD_LOC_KIND (enum_type, i) == FIELD_LOC_KIND_ENUMVAL)
10148 {
10149 const char *name
10150 = rust_last_path_segment (TYPE_FIELD_NAME (enum_type, i));
10151 discriminant_map[name] = TYPE_FIELD_ENUMVAL (enum_type, i);
10152 }
10153 }
10154
10155 int n_fields = TYPE_NFIELDS (union_type);
10156 struct discriminant_info *disc
10157 = alloc_discriminant_info (union_type, 0, -1);
10158 /* Skip the discriminant here. */
10159 for (int i = 1; i < n_fields; ++i)
10160 {
10161 /* Find the final word in the name of this variant's type.
10162 That name can be used to look up the correct
10163 discriminant. */
10164 const char *variant_name
10165 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type,
10166 i)));
10167
10168 auto iter = discriminant_map.find (variant_name);
10169 if (iter != discriminant_map.end ())
10170 disc->discriminants[i] = iter->second;
10171
bedda9ac 10172 /* Remove the discriminant field, if it exists. */
c9317f21 10173 struct type *sub_type = TYPE_FIELD_TYPE (union_type, i);
bedda9ac
TT
10174 if (TYPE_NFIELDS (sub_type) > 0)
10175 {
10176 --TYPE_NFIELDS (sub_type);
10177 ++TYPE_FIELDS (sub_type);
10178 }
c9317f21
TT
10179 TYPE_FIELD_NAME (union_type, i) = variant_name;
10180 TYPE_NAME (sub_type)
10181 = rust_fully_qualify (&objfile->objfile_obstack,
10182 TYPE_NAME (type), variant_name);
10183 }
10184 }
10185}
10186
10187/* Rewrite some Rust unions to be structures with variants parts. */
10188
10189static void
10190rust_union_quirks (struct dwarf2_cu *cu)
10191{
10192 gdb_assert (cu->language == language_rust);
52941706
SM
10193 for (type *type_ : cu->rust_unions)
10194 quirk_rust_enum (type_, cu->per_cu->dwarf2_per_objfile->objfile);
2d79090e
TT
10195 /* We don't need this any more. */
10196 cu->rust_unions.clear ();
c9317f21
TT
10197}
10198
95554aad
TT
10199/* Return the symtab for PER_CU. This works properly regardless of
10200 whether we're using the index or psymtabs. */
10201
43f3e411
DE
10202static struct compunit_symtab *
10203get_compunit_symtab (struct dwarf2_per_cu_data *per_cu)
95554aad 10204{
ed2dc618 10205 return (per_cu->dwarf2_per_objfile->using_index
43f3e411
DE
10206 ? per_cu->v.quick->compunit_symtab
10207 : per_cu->v.psymtab->compunit_symtab);
95554aad
TT
10208}
10209
10210/* A helper function for computing the list of all symbol tables
10211 included by PER_CU. */
10212
10213static void
4c39bc03 10214recursively_compute_inclusions (std::vector<compunit_symtab *> *result,
ec94af83 10215 htab_t all_children, htab_t all_type_symtabs,
f9125b6c 10216 struct dwarf2_per_cu_data *per_cu,
43f3e411 10217 struct compunit_symtab *immediate_parent)
95554aad
TT
10218{
10219 void **slot;
10220 int ix;
43f3e411 10221 struct compunit_symtab *cust;
95554aad
TT
10222 struct dwarf2_per_cu_data *iter;
10223
10224 slot = htab_find_slot (all_children, per_cu, INSERT);
10225 if (*slot != NULL)
10226 {
10227 /* This inclusion and its children have been processed. */
10228 return;
10229 }
10230
10231 *slot = per_cu;
10232 /* Only add a CU if it has a symbol table. */
43f3e411
DE
10233 cust = get_compunit_symtab (per_cu);
10234 if (cust != NULL)
ec94af83
DE
10235 {
10236 /* If this is a type unit only add its symbol table if we haven't
10237 seen it yet (type unit per_cu's can share symtabs). */
10238 if (per_cu->is_debug_types)
10239 {
43f3e411 10240 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
ec94af83
DE
10241 if (*slot == NULL)
10242 {
43f3e411 10243 *slot = cust;
4c39bc03 10244 result->push_back (cust);
43f3e411
DE
10245 if (cust->user == NULL)
10246 cust->user = immediate_parent;
ec94af83
DE
10247 }
10248 }
10249 else
f9125b6c 10250 {
4c39bc03 10251 result->push_back (cust);
43f3e411
DE
10252 if (cust->user == NULL)
10253 cust->user = immediate_parent;
f9125b6c 10254 }
ec94af83 10255 }
95554aad
TT
10256
10257 for (ix = 0;
796a7ff8 10258 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
95554aad 10259 ++ix)
ec94af83
DE
10260 {
10261 recursively_compute_inclusions (result, all_children,
43f3e411 10262 all_type_symtabs, iter, cust);
ec94af83 10263 }
95554aad
TT
10264}
10265
43f3e411 10266/* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
95554aad
TT
10267 PER_CU. */
10268
10269static void
43f3e411 10270compute_compunit_symtab_includes (struct dwarf2_per_cu_data *per_cu)
95554aad 10271{
f4dc4d17
DE
10272 gdb_assert (! per_cu->is_debug_types);
10273
796a7ff8 10274 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
95554aad
TT
10275 {
10276 int ix, len;
ec94af83 10277 struct dwarf2_per_cu_data *per_cu_iter;
4c39bc03 10278 std::vector<compunit_symtab *> result_symtabs;
ec94af83 10279 htab_t all_children, all_type_symtabs;
43f3e411 10280 struct compunit_symtab *cust = get_compunit_symtab (per_cu);
95554aad
TT
10281
10282 /* If we don't have a symtab, we can just skip this case. */
43f3e411 10283 if (cust == NULL)
95554aad
TT
10284 return;
10285
10286 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10287 NULL, xcalloc, xfree);
ec94af83
DE
10288 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10289 NULL, xcalloc, xfree);
95554aad
TT
10290
10291 for (ix = 0;
796a7ff8 10292 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
ec94af83 10293 ix, per_cu_iter);
95554aad 10294 ++ix)
ec94af83
DE
10295 {
10296 recursively_compute_inclusions (&result_symtabs, all_children,
f9125b6c 10297 all_type_symtabs, per_cu_iter,
43f3e411 10298 cust);
ec94af83 10299 }
95554aad 10300
ec94af83 10301 /* Now we have a transitive closure of all the included symtabs. */
4c39bc03 10302 len = result_symtabs.size ();
43f3e411 10303 cust->includes
ed2dc618 10304 = XOBNEWVEC (&per_cu->dwarf2_per_objfile->objfile->objfile_obstack,
8d749320 10305 struct compunit_symtab *, len + 1);
4c39bc03
TT
10306 memcpy (cust->includes, result_symtabs.data (),
10307 len * sizeof (compunit_symtab *));
43f3e411 10308 cust->includes[len] = NULL;
95554aad 10309
95554aad 10310 htab_delete (all_children);
ec94af83 10311 htab_delete (all_type_symtabs);
95554aad
TT
10312 }
10313}
10314
10315/* Compute the 'includes' field for the symtabs of all the CUs we just
10316 read. */
10317
10318static void
ed2dc618 10319process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile)
95554aad 10320{
71b73764 10321 for (dwarf2_per_cu_data *iter : dwarf2_per_objfile->just_read_cus)
f4dc4d17
DE
10322 {
10323 if (! iter->is_debug_types)
43f3e411 10324 compute_compunit_symtab_includes (iter);
f4dc4d17 10325 }
95554aad 10326
c5d0225d 10327 dwarf2_per_objfile->just_read_cus.clear ();
95554aad
TT
10328}
10329
9cdd5dbd 10330/* Generate full symbol information for PER_CU, whose DIEs have
10b3939b
DJ
10331 already been loaded into memory. */
10332
10333static void
95554aad
TT
10334process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
10335 enum language pretend_language)
10b3939b 10336{
10b3939b 10337 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618
SM
10338 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10339 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 10340 struct gdbarch *gdbarch = get_objfile_arch (objfile);
10b3939b 10341 CORE_ADDR lowpc, highpc;
43f3e411 10342 struct compunit_symtab *cust;
10b3939b 10343 CORE_ADDR baseaddr;
4359dff1 10344 struct block *static_block;
3e29f34a 10345 CORE_ADDR addr;
10b3939b
DJ
10346
10347 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10348
c89b44cd
TT
10349 /* Clear the list here in case something was left over. */
10350 cu->method_list.clear ();
10b3939b 10351
95554aad
TT
10352 cu->language = pretend_language;
10353 cu->language_defn = language_def (cu->language);
10354
c906108c 10355 /* Do line number decoding in read_file_scope () */
10b3939b 10356 process_die (cu->dies, cu);
c906108c 10357
a766d390
DE
10358 /* For now fudge the Go package. */
10359 if (cu->language == language_go)
10360 fixup_go_packaging (cu);
10361
3da10d80
KS
10362 /* Now that we have processed all the DIEs in the CU, all the types
10363 should be complete, and it should now be safe to compute all of the
10364 physnames. */
10365 compute_delayed_physnames (cu);
3da10d80 10366
c9317f21
TT
10367 if (cu->language == language_rust)
10368 rust_union_quirks (cu);
10369
fae299cd
DC
10370 /* Some compilers don't define a DW_AT_high_pc attribute for the
10371 compilation unit. If the DW_AT_high_pc is missing, synthesize
10372 it, by scanning the DIE's below the compilation unit. */
10b3939b 10373 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 10374
3e29f34a 10375 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c24bdb02 10376 static_block = cu->get_builder ()->end_symtab_get_static_block (addr, 0, 1);
4359dff1
JK
10377
10378 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
10379 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
10380 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
10381 addrmap to help ensure it has an accurate map of pc values belonging to
10382 this comp unit. */
10383 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
10384
c24bdb02 10385 cust = cu->get_builder ()->end_symtab_from_static_block (static_block,
804d2729
TT
10386 SECT_OFF_TEXT (objfile),
10387 0);
c906108c 10388
43f3e411 10389 if (cust != NULL)
c906108c 10390 {
df15bd07 10391 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
4632c0d0 10392
8be455d7
JK
10393 /* Set symtab language to language from DW_AT_language. If the
10394 compilation is from a C file generated by language preprocessors, do
10395 not set the language if it was already deduced by start_subfile. */
43f3e411 10396 if (!(cu->language == language_c
40e3ad0e 10397 && COMPUNIT_FILETABS (cust)->language != language_unknown))
43f3e411 10398 COMPUNIT_FILETABS (cust)->language = cu->language;
8be455d7
JK
10399
10400 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
10401 produce DW_AT_location with location lists but it can be possibly
ab260dad
JK
10402 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
10403 there were bugs in prologue debug info, fixed later in GCC-4.5
10404 by "unwind info for epilogues" patch (which is not directly related).
8be455d7
JK
10405
10406 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
10407 needed, it would be wrong due to missing DW_AT_producer there.
10408
10409 Still one can confuse GDB by using non-standard GCC compilation
10410 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
10411 */
ab260dad 10412 if (cu->has_loclist && gcc_4_minor >= 5)
43f3e411 10413 cust->locations_valid = 1;
e0d00bc7
JK
10414
10415 if (gcc_4_minor >= 5)
43f3e411 10416 cust->epilogue_unwind_valid = 1;
96408a79 10417
43f3e411 10418 cust->call_site_htab = cu->call_site_htab;
c906108c 10419 }
9291a0cd
TT
10420
10421 if (dwarf2_per_objfile->using_index)
43f3e411 10422 per_cu->v.quick->compunit_symtab = cust;
9291a0cd
TT
10423 else
10424 {
10425 struct partial_symtab *pst = per_cu->v.psymtab;
43f3e411 10426 pst->compunit_symtab = cust;
9291a0cd
TT
10427 pst->readin = 1;
10428 }
c906108c 10429
95554aad 10430 /* Push it for inclusion processing later. */
c5d0225d 10431 dwarf2_per_objfile->just_read_cus.push_back (per_cu);
804d2729
TT
10432
10433 /* Not needed any more. */
c24bdb02 10434 cu->reset_builder ();
f4dc4d17 10435}
45cfd468 10436
f4dc4d17
DE
10437/* Generate full symbol information for type unit PER_CU, whose DIEs have
10438 already been loaded into memory. */
10439
10440static void
10441process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
10442 enum language pretend_language)
10443{
10444 struct dwarf2_cu *cu = per_cu->cu;
ed2dc618
SM
10445 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10446 struct objfile *objfile = dwarf2_per_objfile->objfile;
43f3e411 10447 struct compunit_symtab *cust;
0186c6a7
DE
10448 struct signatured_type *sig_type;
10449
10450 gdb_assert (per_cu->is_debug_types);
10451 sig_type = (struct signatured_type *) per_cu;
f4dc4d17 10452
c89b44cd
TT
10453 /* Clear the list here in case something was left over. */
10454 cu->method_list.clear ();
f4dc4d17 10455
f4dc4d17
DE
10456 cu->language = pretend_language;
10457 cu->language_defn = language_def (cu->language);
10458
10459 /* The symbol tables are set up in read_type_unit_scope. */
10460 process_die (cu->dies, cu);
10461
10462 /* For now fudge the Go package. */
10463 if (cu->language == language_go)
10464 fixup_go_packaging (cu);
10465
10466 /* Now that we have processed all the DIEs in the CU, all the types
10467 should be complete, and it should now be safe to compute all of the
10468 physnames. */
10469 compute_delayed_physnames (cu);
f4dc4d17 10470
c9317f21
TT
10471 if (cu->language == language_rust)
10472 rust_union_quirks (cu);
10473
f4dc4d17
DE
10474 /* TUs share symbol tables.
10475 If this is the first TU to use this symtab, complete the construction
094b34ac
DE
10476 of it with end_expandable_symtab. Otherwise, complete the addition of
10477 this TU's symbols to the existing symtab. */
43f3e411 10478 if (sig_type->type_unit_group->compunit_symtab == NULL)
45cfd468 10479 {
c24bdb02
KS
10480 buildsym_compunit *builder = cu->get_builder ();
10481 cust = builder->end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
43f3e411 10482 sig_type->type_unit_group->compunit_symtab = cust;
f4dc4d17 10483
43f3e411 10484 if (cust != NULL)
f4dc4d17
DE
10485 {
10486 /* Set symtab language to language from DW_AT_language. If the
10487 compilation is from a C file generated by language preprocessors,
10488 do not set the language if it was already deduced by
10489 start_subfile. */
43f3e411
DE
10490 if (!(cu->language == language_c
10491 && COMPUNIT_FILETABS (cust)->language != language_c))
10492 COMPUNIT_FILETABS (cust)->language = cu->language;
f4dc4d17
DE
10493 }
10494 }
10495 else
10496 {
c24bdb02 10497 cu->get_builder ()->augment_type_symtab ();
43f3e411 10498 cust = sig_type->type_unit_group->compunit_symtab;
f4dc4d17
DE
10499 }
10500
10501 if (dwarf2_per_objfile->using_index)
43f3e411 10502 per_cu->v.quick->compunit_symtab = cust;
f4dc4d17
DE
10503 else
10504 {
10505 struct partial_symtab *pst = per_cu->v.psymtab;
43f3e411 10506 pst->compunit_symtab = cust;
f4dc4d17 10507 pst->readin = 1;
45cfd468 10508 }
804d2729
TT
10509
10510 /* Not needed any more. */
c24bdb02 10511 cu->reset_builder ();
c906108c
SS
10512}
10513
95554aad
TT
10514/* Process an imported unit DIE. */
10515
10516static void
10517process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
10518{
10519 struct attribute *attr;
10520
f4dc4d17
DE
10521 /* For now we don't handle imported units in type units. */
10522 if (cu->per_cu->is_debug_types)
10523 {
10524 error (_("Dwarf Error: DW_TAG_imported_unit is not"
10525 " supported in type units [in module %s]"),
518817b3 10526 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
f4dc4d17
DE
10527 }
10528
95554aad
TT
10529 attr = dwarf2_attr (die, DW_AT_import, cu);
10530 if (attr != NULL)
10531 {
9c541725
PA
10532 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
10533 bool is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
10534 dwarf2_per_cu_data *per_cu
e3b94546 10535 = dwarf2_find_containing_comp_unit (sect_off, is_dwz,
518817b3 10536 cu->per_cu->dwarf2_per_objfile);
95554aad 10537
69d751e3 10538 /* If necessary, add it to the queue and load its DIEs. */
95554aad 10539 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
58f0c718 10540 load_full_comp_unit (per_cu, false, cu->language);
95554aad 10541
796a7ff8 10542 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
95554aad
TT
10543 per_cu);
10544 }
10545}
10546
4c8aa72d
PA
10547/* RAII object that represents a process_die scope: i.e.,
10548 starts/finishes processing a DIE. */
10549class process_die_scope
adde2bff 10550{
4c8aa72d
PA
10551public:
10552 process_die_scope (die_info *die, dwarf2_cu *cu)
10553 : m_die (die), m_cu (cu)
10554 {
10555 /* We should only be processing DIEs not already in process. */
10556 gdb_assert (!m_die->in_process);
10557 m_die->in_process = true;
10558 }
8c3cb9fa 10559
4c8aa72d
PA
10560 ~process_die_scope ()
10561 {
10562 m_die->in_process = false;
10563
10564 /* If we're done processing the DIE for the CU that owns the line
10565 header, we don't need the line header anymore. */
10566 if (m_cu->line_header_die_owner == m_die)
10567 {
10568 delete m_cu->line_header;
10569 m_cu->line_header = NULL;
10570 m_cu->line_header_die_owner = NULL;
10571 }
10572 }
10573
10574private:
10575 die_info *m_die;
10576 dwarf2_cu *m_cu;
10577};
adde2bff 10578
c906108c
SS
10579/* Process a die and its children. */
10580
10581static void
e7c27a73 10582process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 10583{
4c8aa72d 10584 process_die_scope scope (die, cu);
adde2bff 10585
c906108c
SS
10586 switch (die->tag)
10587 {
10588 case DW_TAG_padding:
10589 break;
10590 case DW_TAG_compile_unit:
95554aad 10591 case DW_TAG_partial_unit:
e7c27a73 10592 read_file_scope (die, cu);
c906108c 10593 break;
348e048f
DE
10594 case DW_TAG_type_unit:
10595 read_type_unit_scope (die, cu);
10596 break;
c906108c 10597 case DW_TAG_subprogram:
c906108c 10598 case DW_TAG_inlined_subroutine:
edb3359d 10599 read_func_scope (die, cu);
c906108c
SS
10600 break;
10601 case DW_TAG_lexical_block:
14898363
L
10602 case DW_TAG_try_block:
10603 case DW_TAG_catch_block:
e7c27a73 10604 read_lexical_block_scope (die, cu);
c906108c 10605 break;
216f72a1 10606 case DW_TAG_call_site:
96408a79
SA
10607 case DW_TAG_GNU_call_site:
10608 read_call_site_scope (die, cu);
10609 break;
c906108c 10610 case DW_TAG_class_type:
680b30c7 10611 case DW_TAG_interface_type:
c906108c
SS
10612 case DW_TAG_structure_type:
10613 case DW_TAG_union_type:
134d01f1 10614 process_structure_scope (die, cu);
c906108c
SS
10615 break;
10616 case DW_TAG_enumeration_type:
134d01f1 10617 process_enumeration_scope (die, cu);
c906108c 10618 break;
134d01f1 10619
f792889a
DJ
10620 /* These dies have a type, but processing them does not create
10621 a symbol or recurse to process the children. Therefore we can
10622 read them on-demand through read_type_die. */
c906108c 10623 case DW_TAG_subroutine_type:
72019c9c 10624 case DW_TAG_set_type:
c906108c 10625 case DW_TAG_array_type:
c906108c 10626 case DW_TAG_pointer_type:
c906108c 10627 case DW_TAG_ptr_to_member_type:
c906108c 10628 case DW_TAG_reference_type:
4297a3f0 10629 case DW_TAG_rvalue_reference_type:
c906108c 10630 case DW_TAG_string_type:
c906108c 10631 break;
134d01f1 10632
c906108c 10633 case DW_TAG_base_type:
a02abb62 10634 case DW_TAG_subrange_type:
cb249c71 10635 case DW_TAG_typedef:
134d01f1
DJ
10636 /* Add a typedef symbol for the type definition, if it has a
10637 DW_AT_name. */
f792889a 10638 new_symbol (die, read_type_die (die, cu), cu);
a02abb62 10639 break;
c906108c 10640 case DW_TAG_common_block:
e7c27a73 10641 read_common_block (die, cu);
c906108c
SS
10642 break;
10643 case DW_TAG_common_inclusion:
10644 break;
d9fa45fe 10645 case DW_TAG_namespace:
9068261f 10646 cu->processing_has_namespace_info = true;
e7c27a73 10647 read_namespace (die, cu);
d9fa45fe 10648 break;
5d7cb8df 10649 case DW_TAG_module:
9068261f 10650 cu->processing_has_namespace_info = true;
5d7cb8df
JK
10651 read_module (die, cu);
10652 break;
d9fa45fe 10653 case DW_TAG_imported_declaration:
9068261f 10654 cu->processing_has_namespace_info = true;
74921315
KS
10655 if (read_namespace_alias (die, cu))
10656 break;
86a73007
TT
10657 /* The declaration is not a global namespace alias. */
10658 /* Fall through. */
d9fa45fe 10659 case DW_TAG_imported_module:
9068261f 10660 cu->processing_has_namespace_info = true;
27aa8d6a
SW
10661 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
10662 || cu->language != language_fortran))
b98664d3 10663 complaint (_("Tag '%s' has unexpected children"),
27aa8d6a
SW
10664 dwarf_tag_name (die->tag));
10665 read_import_statement (die, cu);
d9fa45fe 10666 break;
95554aad
TT
10667
10668 case DW_TAG_imported_unit:
10669 process_imported_unit_die (die, cu);
10670 break;
10671
71a3c369
TT
10672 case DW_TAG_variable:
10673 read_variable (die, cu);
10674 break;
10675
c906108c 10676 default:
e7c27a73 10677 new_symbol (die, NULL, cu);
c906108c
SS
10678 break;
10679 }
10680}
ca69b9e6
DE
10681\f
10682/* DWARF name computation. */
c906108c 10683
94af9270
KS
10684/* A helper function for dwarf2_compute_name which determines whether DIE
10685 needs to have the name of the scope prepended to the name listed in the
10686 die. */
10687
10688static int
10689die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
10690{
1c809c68
TT
10691 struct attribute *attr;
10692
94af9270
KS
10693 switch (die->tag)
10694 {
10695 case DW_TAG_namespace:
10696 case DW_TAG_typedef:
10697 case DW_TAG_class_type:
10698 case DW_TAG_interface_type:
10699 case DW_TAG_structure_type:
10700 case DW_TAG_union_type:
10701 case DW_TAG_enumeration_type:
10702 case DW_TAG_enumerator:
10703 case DW_TAG_subprogram:
08a76f8a 10704 case DW_TAG_inlined_subroutine:
94af9270 10705 case DW_TAG_member:
74921315 10706 case DW_TAG_imported_declaration:
94af9270
KS
10707 return 1;
10708
10709 case DW_TAG_variable:
c2b0a229 10710 case DW_TAG_constant:
94af9270
KS
10711 /* We only need to prefix "globally" visible variables. These include
10712 any variable marked with DW_AT_external or any variable that
10713 lives in a namespace. [Variables in anonymous namespaces
10714 require prefixing, but they are not DW_AT_external.] */
10715
10716 if (dwarf2_attr (die, DW_AT_specification, cu))
10717 {
10718 struct dwarf2_cu *spec_cu = cu;
9a619af0 10719
94af9270
KS
10720 return die_needs_namespace (die_specification (die, &spec_cu),
10721 spec_cu);
10722 }
10723
1c809c68 10724 attr = dwarf2_attr (die, DW_AT_external, cu);
f55ee35c
JK
10725 if (attr == NULL && die->parent->tag != DW_TAG_namespace
10726 && die->parent->tag != DW_TAG_module)
1c809c68
TT
10727 return 0;
10728 /* A variable in a lexical block of some kind does not need a
10729 namespace, even though in C++ such variables may be external
10730 and have a mangled name. */
10731 if (die->parent->tag == DW_TAG_lexical_block
10732 || die->parent->tag == DW_TAG_try_block
1054b214
TT
10733 || die->parent->tag == DW_TAG_catch_block
10734 || die->parent->tag == DW_TAG_subprogram)
1c809c68
TT
10735 return 0;
10736 return 1;
94af9270
KS
10737
10738 default:
10739 return 0;
10740 }
10741}
10742
73b9be8b
KS
10743/* Return the DIE's linkage name attribute, either DW_AT_linkage_name
10744 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10745 defined for the given DIE. */
10746
10747static struct attribute *
10748dw2_linkage_name_attr (struct die_info *die, struct dwarf2_cu *cu)
10749{
10750 struct attribute *attr;
10751
10752 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
10753 if (attr == NULL)
10754 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
10755
10756 return attr;
10757}
10758
10759/* Return the DIE's linkage name as a string, either DW_AT_linkage_name
10760 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10761 defined for the given DIE. */
10762
10763static const char *
10764dw2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
10765{
10766 const char *linkage_name;
10767
10768 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
10769 if (linkage_name == NULL)
10770 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
10771
10772 return linkage_name;
10773}
10774
94af9270 10775/* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
a766d390 10776 compute the physname for the object, which include a method's:
9c37b5ae 10777 - formal parameters (C++),
a766d390 10778 - receiver type (Go),
a766d390
DE
10779
10780 The term "physname" is a bit confusing.
10781 For C++, for example, it is the demangled name.
10782 For Go, for example, it's the mangled name.
94af9270 10783
af6b7be1
JB
10784 For Ada, return the DIE's linkage name rather than the fully qualified
10785 name. PHYSNAME is ignored..
10786
94af9270
KS
10787 The result is allocated on the objfile_obstack and canonicalized. */
10788
10789static const char *
15d034d0
TT
10790dwarf2_compute_name (const char *name,
10791 struct die_info *die, struct dwarf2_cu *cu,
94af9270
KS
10792 int physname)
10793{
518817b3 10794 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
bb5ed363 10795
94af9270
KS
10796 if (name == NULL)
10797 name = dwarf2_name (die, cu);
10798
2ee7123e
DE
10799 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
10800 but otherwise compute it by typename_concat inside GDB.
10801 FIXME: Actually this is not really true, or at least not always true.
10802 It's all very confusing. SYMBOL_SET_NAMES doesn't try to demangle
5e2db402 10803 Fortran names because there is no mangling standard. So new_symbol
2ee7123e
DE
10804 will set the demangled name to the result of dwarf2_full_name, and it is
10805 the demangled name that GDB uses if it exists. */
f55ee35c
JK
10806 if (cu->language == language_ada
10807 || (cu->language == language_fortran && physname))
10808 {
10809 /* For Ada unit, we prefer the linkage name over the name, as
10810 the former contains the exported name, which the user expects
10811 to be able to reference. Ideally, we want the user to be able
10812 to reference this entity using either natural or linkage name,
10813 but we haven't started looking at this enhancement yet. */
73b9be8b 10814 const char *linkage_name = dw2_linkage_name (die, cu);
f55ee35c 10815
2ee7123e
DE
10816 if (linkage_name != NULL)
10817 return linkage_name;
f55ee35c
JK
10818 }
10819
94af9270
KS
10820 /* These are the only languages we know how to qualify names in. */
10821 if (name != NULL
9c37b5ae 10822 && (cu->language == language_cplus
c44af4eb
TT
10823 || cu->language == language_fortran || cu->language == language_d
10824 || cu->language == language_rust))
94af9270
KS
10825 {
10826 if (die_needs_namespace (die, cu))
10827 {
0d5cff50 10828 const char *prefix;
34a68019 10829 const char *canonical_name = NULL;
94af9270 10830
d7e74731
PA
10831 string_file buf;
10832
94af9270 10833 prefix = determine_prefix (die, cu);
94af9270
KS
10834 if (*prefix != '\0')
10835 {
f55ee35c
JK
10836 char *prefixed_name = typename_concat (NULL, prefix, name,
10837 physname, cu);
9a619af0 10838
d7e74731 10839 buf.puts (prefixed_name);
94af9270
KS
10840 xfree (prefixed_name);
10841 }
10842 else
d7e74731 10843 buf.puts (name);
94af9270 10844
98bfdba5
PA
10845 /* Template parameters may be specified in the DIE's DW_AT_name, or
10846 as children with DW_TAG_template_type_param or
10847 DW_TAG_value_type_param. If the latter, add them to the name
10848 here. If the name already has template parameters, then
10849 skip this step; some versions of GCC emit both, and
10850 it is more efficient to use the pre-computed name.
10851
10852 Something to keep in mind about this process: it is very
10853 unlikely, or in some cases downright impossible, to produce
10854 something that will match the mangled name of a function.
10855 If the definition of the function has the same debug info,
10856 we should be able to match up with it anyway. But fallbacks
10857 using the minimal symbol, for instance to find a method
10858 implemented in a stripped copy of libstdc++, will not work.
10859 If we do not have debug info for the definition, we will have to
10860 match them up some other way.
10861
10862 When we do name matching there is a related problem with function
10863 templates; two instantiated function templates are allowed to
10864 differ only by their return types, which we do not add here. */
10865
10866 if (cu->language == language_cplus && strchr (name, '<') == NULL)
10867 {
10868 struct attribute *attr;
10869 struct die_info *child;
10870 int first = 1;
10871
10872 die->building_fullname = 1;
10873
10874 for (child = die->child; child != NULL; child = child->sibling)
10875 {
10876 struct type *type;
12df843f 10877 LONGEST value;
d521ce57 10878 const gdb_byte *bytes;
98bfdba5
PA
10879 struct dwarf2_locexpr_baton *baton;
10880 struct value *v;
10881
10882 if (child->tag != DW_TAG_template_type_param
10883 && child->tag != DW_TAG_template_value_param)
10884 continue;
10885
10886 if (first)
10887 {
d7e74731 10888 buf.puts ("<");
98bfdba5
PA
10889 first = 0;
10890 }
10891 else
d7e74731 10892 buf.puts (", ");
98bfdba5
PA
10893
10894 attr = dwarf2_attr (child, DW_AT_type, cu);
10895 if (attr == NULL)
10896 {
b98664d3 10897 complaint (_("template parameter missing DW_AT_type"));
d7e74731 10898 buf.puts ("UNKNOWN_TYPE");
98bfdba5
PA
10899 continue;
10900 }
10901 type = die_type (child, cu);
10902
10903 if (child->tag == DW_TAG_template_type_param)
10904 {
c1ec8cea
TT
10905 c_print_type (type, "", &buf, -1, 0, cu->language,
10906 &type_print_raw_options);
98bfdba5
PA
10907 continue;
10908 }
10909
10910 attr = dwarf2_attr (child, DW_AT_const_value, cu);
10911 if (attr == NULL)
10912 {
b98664d3 10913 complaint (_("template parameter missing "
3e43a32a 10914 "DW_AT_const_value"));
d7e74731 10915 buf.puts ("UNKNOWN_VALUE");
98bfdba5
PA
10916 continue;
10917 }
10918
10919 dwarf2_const_value_attr (attr, type, name,
10920 &cu->comp_unit_obstack, cu,
10921 &value, &bytes, &baton);
10922
10923 if (TYPE_NOSIGN (type))
10924 /* GDB prints characters as NUMBER 'CHAR'. If that's
10925 changed, this can use value_print instead. */
d7e74731 10926 c_printchar (value, type, &buf);
98bfdba5
PA
10927 else
10928 {
10929 struct value_print_options opts;
10930
10931 if (baton != NULL)
10932 v = dwarf2_evaluate_loc_desc (type, NULL,
10933 baton->data,
10934 baton->size,
10935 baton->per_cu);
10936 else if (bytes != NULL)
10937 {
10938 v = allocate_value (type);
10939 memcpy (value_contents_writeable (v), bytes,
10940 TYPE_LENGTH (type));
10941 }
10942 else
10943 v = value_from_longest (type, value);
10944
3e43a32a
MS
10945 /* Specify decimal so that we do not depend on
10946 the radix. */
98bfdba5
PA
10947 get_formatted_print_options (&opts, 'd');
10948 opts.raw = 1;
d7e74731 10949 value_print (v, &buf, &opts);
98bfdba5 10950 release_value (v);
98bfdba5
PA
10951 }
10952 }
10953
10954 die->building_fullname = 0;
10955
10956 if (!first)
10957 {
10958 /* Close the argument list, with a space if necessary
10959 (nested templates). */
d7e74731
PA
10960 if (!buf.empty () && buf.string ().back () == '>')
10961 buf.puts (" >");
98bfdba5 10962 else
d7e74731 10963 buf.puts (">");
98bfdba5
PA
10964 }
10965 }
10966
9c37b5ae 10967 /* For C++ methods, append formal parameter type
94af9270 10968 information, if PHYSNAME. */
6e70227d 10969
94af9270 10970 if (physname && die->tag == DW_TAG_subprogram
9c37b5ae 10971 && cu->language == language_cplus)
94af9270
KS
10972 {
10973 struct type *type = read_type_die (die, cu);
10974
d7e74731 10975 c_type_print_args (type, &buf, 1, cu->language,
79d43c61 10976 &type_print_raw_options);
94af9270 10977
9c37b5ae 10978 if (cu->language == language_cplus)
94af9270 10979 {
60430eff
DJ
10980 /* Assume that an artificial first parameter is
10981 "this", but do not crash if it is not. RealView
10982 marks unnamed (and thus unused) parameters as
10983 artificial; there is no way to differentiate
10984 the two cases. */
94af9270
KS
10985 if (TYPE_NFIELDS (type) > 0
10986 && TYPE_FIELD_ARTIFICIAL (type, 0)
60430eff 10987 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
3e43a32a
MS
10988 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
10989 0))))
d7e74731 10990 buf.puts (" const");
94af9270
KS
10991 }
10992 }
10993
d7e74731 10994 const std::string &intermediate_name = buf.string ();
94af9270
KS
10995
10996 if (cu->language == language_cplus)
34a68019 10997 canonical_name
322a8516 10998 = dwarf2_canonicalize_name (intermediate_name.c_str (), cu,
34a68019
TT
10999 &objfile->per_bfd->storage_obstack);
11000
11001 /* If we only computed INTERMEDIATE_NAME, or if
11002 INTERMEDIATE_NAME is already canonical, then we need to
11003 copy it to the appropriate obstack. */
322a8516 11004 if (canonical_name == NULL || canonical_name == intermediate_name.c_str ())
224c3ddb
SM
11005 name = ((const char *)
11006 obstack_copy0 (&objfile->per_bfd->storage_obstack,
322a8516
PA
11007 intermediate_name.c_str (),
11008 intermediate_name.length ()));
34a68019
TT
11009 else
11010 name = canonical_name;
94af9270
KS
11011 }
11012 }
11013
11014 return name;
11015}
11016
0114d602
DJ
11017/* Return the fully qualified name of DIE, based on its DW_AT_name.
11018 If scope qualifiers are appropriate they will be added. The result
34a68019 11019 will be allocated on the storage_obstack, or NULL if the DIE does
94af9270
KS
11020 not have a name. NAME may either be from a previous call to
11021 dwarf2_name or NULL.
11022
9c37b5ae 11023 The output string will be canonicalized (if C++). */
0114d602
DJ
11024
11025static const char *
15d034d0 11026dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
0114d602 11027{
94af9270
KS
11028 return dwarf2_compute_name (name, die, cu, 0);
11029}
0114d602 11030
94af9270
KS
11031/* Construct a physname for the given DIE in CU. NAME may either be
11032 from a previous call to dwarf2_name or NULL. The result will be
11033 allocated on the objfile_objstack or NULL if the DIE does not have a
11034 name.
0114d602 11035
9c37b5ae 11036 The output string will be canonicalized (if C++). */
0114d602 11037
94af9270 11038static const char *
15d034d0 11039dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
94af9270 11040{
518817b3 11041 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
900e11f9 11042 const char *retval, *mangled = NULL, *canon = NULL;
900e11f9
JK
11043 int need_copy = 1;
11044
11045 /* In this case dwarf2_compute_name is just a shortcut not building anything
11046 on its own. */
11047 if (!die_needs_namespace (die, cu))
11048 return dwarf2_compute_name (name, die, cu, 1);
11049
73b9be8b 11050 mangled = dw2_linkage_name (die, cu);
900e11f9 11051
e98c9e7c
TT
11052 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
11053 See https://github.com/rust-lang/rust/issues/32925. */
11054 if (cu->language == language_rust && mangled != NULL
11055 && strchr (mangled, '{') != NULL)
11056 mangled = NULL;
11057
900e11f9
JK
11058 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
11059 has computed. */
791afaa2 11060 gdb::unique_xmalloc_ptr<char> demangled;
7d45c7c3 11061 if (mangled != NULL)
900e11f9 11062 {
900e11f9 11063
59cc4834
JB
11064 if (language_def (cu->language)->la_store_sym_names_in_linkage_form_p)
11065 {
11066 /* Do nothing (do not demangle the symbol name). */
11067 }
11068 else if (cu->language == language_go)
a766d390 11069 {
5e2db402
TT
11070 /* This is a lie, but we already lie to the caller new_symbol.
11071 new_symbol assumes we return the mangled name.
a766d390 11072 This just undoes that lie until things are cleaned up. */
a766d390
DE
11073 }
11074 else
11075 {
0eb876f5
JB
11076 /* Use DMGL_RET_DROP for C++ template functions to suppress
11077 their return type. It is easier for GDB users to search
11078 for such functions as `name(params)' than `long name(params)'.
11079 In such case the minimal symbol names do not match the full
11080 symbol names but for template functions there is never a need
11081 to look up their definition from their declaration so
11082 the only disadvantage remains the minimal symbol variant
11083 `long name(params)' does not have the proper inferior type. */
791afaa2
TT
11084 demangled.reset (gdb_demangle (mangled,
11085 (DMGL_PARAMS | DMGL_ANSI
11086 | DMGL_RET_DROP)));
a766d390 11087 }
900e11f9 11088 if (demangled)
791afaa2 11089 canon = demangled.get ();
900e11f9
JK
11090 else
11091 {
11092 canon = mangled;
11093 need_copy = 0;
11094 }
11095 }
11096
11097 if (canon == NULL || check_physname)
11098 {
11099 const char *physname = dwarf2_compute_name (name, die, cu, 1);
11100
11101 if (canon != NULL && strcmp (physname, canon) != 0)
11102 {
11103 /* It may not mean a bug in GDB. The compiler could also
11104 compute DW_AT_linkage_name incorrectly. But in such case
11105 GDB would need to be bug-to-bug compatible. */
11106
b98664d3 11107 complaint (_("Computed physname <%s> does not match demangled <%s> "
9d8780f0
SM
11108 "(from linkage <%s>) - DIE at %s [in module %s]"),
11109 physname, canon, mangled, sect_offset_str (die->sect_off),
4262abfb 11110 objfile_name (objfile));
900e11f9
JK
11111
11112 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
11113 is available here - over computed PHYSNAME. It is safer
11114 against both buggy GDB and buggy compilers. */
11115
11116 retval = canon;
11117 }
11118 else
11119 {
11120 retval = physname;
11121 need_copy = 0;
11122 }
11123 }
11124 else
11125 retval = canon;
11126
11127 if (need_copy)
224c3ddb
SM
11128 retval = ((const char *)
11129 obstack_copy0 (&objfile->per_bfd->storage_obstack,
11130 retval, strlen (retval)));
900e11f9 11131
900e11f9 11132 return retval;
0114d602
DJ
11133}
11134
74921315
KS
11135/* Inspect DIE in CU for a namespace alias. If one exists, record
11136 a new symbol for it.
11137
11138 Returns 1 if a namespace alias was recorded, 0 otherwise. */
11139
11140static int
11141read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
11142{
11143 struct attribute *attr;
11144
11145 /* If the die does not have a name, this is not a namespace
11146 alias. */
11147 attr = dwarf2_attr (die, DW_AT_name, cu);
11148 if (attr != NULL)
11149 {
11150 int num;
11151 struct die_info *d = die;
11152 struct dwarf2_cu *imported_cu = cu;
11153
11154 /* If the compiler has nested DW_AT_imported_declaration DIEs,
11155 keep inspecting DIEs until we hit the underlying import. */
11156#define MAX_NESTED_IMPORTED_DECLARATIONS 100
11157 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
11158 {
11159 attr = dwarf2_attr (d, DW_AT_import, cu);
11160 if (attr == NULL)
11161 break;
11162
11163 d = follow_die_ref (d, attr, &imported_cu);
11164 if (d->tag != DW_TAG_imported_declaration)
11165 break;
11166 }
11167
11168 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
11169 {
b98664d3 11170 complaint (_("DIE at %s has too many recursively imported "
9d8780f0 11171 "declarations"), sect_offset_str (d->sect_off));
74921315
KS
11172 return 0;
11173 }
11174
11175 if (attr != NULL)
11176 {
11177 struct type *type;
9c541725 11178 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
74921315 11179
9c541725 11180 type = get_die_type_at_offset (sect_off, cu->per_cu);
74921315
KS
11181 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
11182 {
11183 /* This declaration is a global namespace alias. Add
11184 a symbol for it whose type is the aliased namespace. */
11185 new_symbol (die, type, cu);
11186 return 1;
11187 }
11188 }
11189 }
11190
11191 return 0;
11192}
11193
22cee43f 11194/* Return the using directives repository (global or local?) to use in the
804d2729 11195 current context for CU.
22cee43f
PMR
11196
11197 For Ada, imported declarations can materialize renamings, which *may* be
11198 global. However it is impossible (for now?) in DWARF to distinguish
11199 "external" imported declarations and "static" ones. As all imported
11200 declarations seem to be static in all other languages, make them all CU-wide
11201 global only in Ada. */
11202
11203static struct using_direct **
804d2729 11204using_directives (struct dwarf2_cu *cu)
22cee43f 11205{
c24bdb02
KS
11206 if (cu->language == language_ada
11207 && cu->get_builder ()->outermost_context_p ())
11208 return cu->get_builder ()->get_global_using_directives ();
22cee43f 11209 else
c24bdb02 11210 return cu->get_builder ()->get_local_using_directives ();
22cee43f
PMR
11211}
11212
27aa8d6a
SW
11213/* Read the import statement specified by the given die and record it. */
11214
11215static void
11216read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
11217{
518817b3 11218 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
27aa8d6a 11219 struct attribute *import_attr;
32019081 11220 struct die_info *imported_die, *child_die;
de4affc9 11221 struct dwarf2_cu *imported_cu;
27aa8d6a 11222 const char *imported_name;
794684b6 11223 const char *imported_name_prefix;
13387711
SW
11224 const char *canonical_name;
11225 const char *import_alias;
11226 const char *imported_declaration = NULL;
794684b6 11227 const char *import_prefix;
eb1e02fd 11228 std::vector<const char *> excludes;
13387711 11229
27aa8d6a
SW
11230 import_attr = dwarf2_attr (die, DW_AT_import, cu);
11231 if (import_attr == NULL)
11232 {
b98664d3 11233 complaint (_("Tag '%s' has no DW_AT_import"),
27aa8d6a
SW
11234 dwarf_tag_name (die->tag));
11235 return;
11236 }
11237
de4affc9
CC
11238 imported_cu = cu;
11239 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
11240 imported_name = dwarf2_name (imported_die, imported_cu);
27aa8d6a
SW
11241 if (imported_name == NULL)
11242 {
11243 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
11244
11245 The import in the following code:
11246 namespace A
11247 {
11248 typedef int B;
11249 }
11250
11251 int main ()
11252 {
11253 using A::B;
11254 B b;
11255 return b;
11256 }
11257
11258 ...
11259 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
11260 <52> DW_AT_decl_file : 1
11261 <53> DW_AT_decl_line : 6
11262 <54> DW_AT_import : <0x75>
11263 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
11264 <59> DW_AT_name : B
11265 <5b> DW_AT_decl_file : 1
11266 <5c> DW_AT_decl_line : 2
11267 <5d> DW_AT_type : <0x6e>
11268 ...
11269 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
11270 <76> DW_AT_byte_size : 4
11271 <77> DW_AT_encoding : 5 (signed)
11272
11273 imports the wrong die ( 0x75 instead of 0x58 ).
11274 This case will be ignored until the gcc bug is fixed. */
11275 return;
11276 }
11277
82856980
SW
11278 /* Figure out the local name after import. */
11279 import_alias = dwarf2_name (die, cu);
27aa8d6a 11280
794684b6
SW
11281 /* Figure out where the statement is being imported to. */
11282 import_prefix = determine_prefix (die, cu);
11283
11284 /* Figure out what the scope of the imported die is and prepend it
11285 to the name of the imported die. */
de4affc9 11286 imported_name_prefix = determine_prefix (imported_die, imported_cu);
794684b6 11287
f55ee35c
JK
11288 if (imported_die->tag != DW_TAG_namespace
11289 && imported_die->tag != DW_TAG_module)
794684b6 11290 {
13387711
SW
11291 imported_declaration = imported_name;
11292 canonical_name = imported_name_prefix;
794684b6 11293 }
13387711 11294 else if (strlen (imported_name_prefix) > 0)
12aaed36 11295 canonical_name = obconcat (&objfile->objfile_obstack,
45280282
IB
11296 imported_name_prefix,
11297 (cu->language == language_d ? "." : "::"),
11298 imported_name, (char *) NULL);
13387711
SW
11299 else
11300 canonical_name = imported_name;
794684b6 11301
32019081
JK
11302 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
11303 for (child_die = die->child; child_die && child_die->tag;
11304 child_die = sibling_die (child_die))
11305 {
11306 /* DWARF-4: A Fortran use statement with a “rename list” may be
11307 represented by an imported module entry with an import attribute
11308 referring to the module and owned entries corresponding to those
11309 entities that are renamed as part of being imported. */
11310
11311 if (child_die->tag != DW_TAG_imported_declaration)
11312 {
b98664d3 11313 complaint (_("child DW_TAG_imported_declaration expected "
9d8780f0
SM
11314 "- DIE at %s [in module %s]"),
11315 sect_offset_str (child_die->sect_off),
11316 objfile_name (objfile));
32019081
JK
11317 continue;
11318 }
11319
11320 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
11321 if (import_attr == NULL)
11322 {
b98664d3 11323 complaint (_("Tag '%s' has no DW_AT_import"),
32019081
JK
11324 dwarf_tag_name (child_die->tag));
11325 continue;
11326 }
11327
11328 imported_cu = cu;
11329 imported_die = follow_die_ref_or_sig (child_die, import_attr,
11330 &imported_cu);
11331 imported_name = dwarf2_name (imported_die, imported_cu);
11332 if (imported_name == NULL)
11333 {
b98664d3 11334 complaint (_("child DW_TAG_imported_declaration has unknown "
9d8780f0
SM
11335 "imported name - DIE at %s [in module %s]"),
11336 sect_offset_str (child_die->sect_off),
11337 objfile_name (objfile));
32019081
JK
11338 continue;
11339 }
11340
eb1e02fd 11341 excludes.push_back (imported_name);
32019081
JK
11342
11343 process_die (child_die, cu);
11344 }
11345
804d2729 11346 add_using_directive (using_directives (cu),
22cee43f
PMR
11347 import_prefix,
11348 canonical_name,
11349 import_alias,
11350 imported_declaration,
11351 excludes,
11352 0,
11353 &objfile->objfile_obstack);
27aa8d6a
SW
11354}
11355
5230b05a
WT
11356/* ICC<14 does not output the required DW_AT_declaration on incomplete
11357 types, but gives them a size of zero. Starting with version 14,
11358 ICC is compatible with GCC. */
11359
9068261f 11360static bool
5230b05a
WT
11361producer_is_icc_lt_14 (struct dwarf2_cu *cu)
11362{
11363 if (!cu->checked_producer)
11364 check_producer (cu);
11365
11366 return cu->producer_is_icc_lt_14;
11367}
11368
eb77c9df
AB
11369/* ICC generates a DW_AT_type for C void functions. This was observed on
11370 ICC 14.0.5.212, and appears to be against the DWARF spec (V5 3.3.2)
11371 which says that void functions should not have a DW_AT_type. */
11372
11373static bool
11374producer_is_icc (struct dwarf2_cu *cu)
11375{
11376 if (!cu->checked_producer)
11377 check_producer (cu);
11378
11379 return cu->producer_is_icc;
11380}
11381
1b80a9fa
JK
11382/* Check for possibly missing DW_AT_comp_dir with relative .debug_line
11383 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
11384 this, it was first present in GCC release 4.3.0. */
11385
9068261f 11386static bool
1b80a9fa
JK
11387producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
11388{
11389 if (!cu->checked_producer)
11390 check_producer (cu);
11391
11392 return cu->producer_is_gcc_lt_4_3;
11393}
11394
d721ba37
PA
11395static file_and_directory
11396find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu)
9291a0cd 11397{
d721ba37
PA
11398 file_and_directory res;
11399
9291a0cd
TT
11400 /* Find the filename. Do not use dwarf2_name here, since the filename
11401 is not a source language identifier. */
d721ba37
PA
11402 res.name = dwarf2_string_attr (die, DW_AT_name, cu);
11403 res.comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
9291a0cd 11404
d721ba37
PA
11405 if (res.comp_dir == NULL
11406 && producer_is_gcc_lt_4_3 (cu) && res.name != NULL
11407 && IS_ABSOLUTE_PATH (res.name))
9291a0cd 11408 {
d721ba37
PA
11409 res.comp_dir_storage = ldirname (res.name);
11410 if (!res.comp_dir_storage.empty ())
11411 res.comp_dir = res.comp_dir_storage.c_str ();
9291a0cd 11412 }
d721ba37 11413 if (res.comp_dir != NULL)
9291a0cd
TT
11414 {
11415 /* Irix 6.2 native cc prepends <machine>.: to the compilation
11416 directory, get rid of it. */
d721ba37 11417 const char *cp = strchr (res.comp_dir, ':');
9291a0cd 11418
d721ba37
PA
11419 if (cp && cp != res.comp_dir && cp[-1] == '.' && cp[1] == '/')
11420 res.comp_dir = cp + 1;
9291a0cd
TT
11421 }
11422
d721ba37
PA
11423 if (res.name == NULL)
11424 res.name = "<unknown>";
11425
11426 return res;
9291a0cd
TT
11427}
11428
f4dc4d17
DE
11429/* Handle DW_AT_stmt_list for a compilation unit.
11430 DIE is the DW_TAG_compile_unit die for CU.
c3b7b696
YQ
11431 COMP_DIR is the compilation directory. LOWPC is passed to
11432 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
2ab95328
TT
11433
11434static void
11435handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
c3b7b696 11436 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
2ab95328 11437{
518817b3
SM
11438 struct dwarf2_per_objfile *dwarf2_per_objfile
11439 = cu->per_cu->dwarf2_per_objfile;
527f3840 11440 struct objfile *objfile = dwarf2_per_objfile->objfile;
2ab95328 11441 struct attribute *attr;
527f3840
JK
11442 struct line_header line_header_local;
11443 hashval_t line_header_local_hash;
527f3840
JK
11444 void **slot;
11445 int decode_mapping;
2ab95328 11446
f4dc4d17
DE
11447 gdb_assert (! cu->per_cu->is_debug_types);
11448
2ab95328 11449 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
527f3840
JK
11450 if (attr == NULL)
11451 return;
11452
9c541725 11453 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
527f3840
JK
11454
11455 /* The line header hash table is only created if needed (it exists to
11456 prevent redundant reading of the line table for partial_units).
11457 If we're given a partial_unit, we'll need it. If we're given a
11458 compile_unit, then use the line header hash table if it's already
11459 created, but don't create one just yet. */
11460
11461 if (dwarf2_per_objfile->line_header_hash == NULL
11462 && die->tag == DW_TAG_partial_unit)
2ab95328 11463 {
527f3840
JK
11464 dwarf2_per_objfile->line_header_hash
11465 = htab_create_alloc_ex (127, line_header_hash_voidp,
11466 line_header_eq_voidp,
11467 free_line_header_voidp,
11468 &objfile->objfile_obstack,
11469 hashtab_obstack_allocate,
11470 dummy_obstack_deallocate);
11471 }
2ab95328 11472
9c541725 11473 line_header_local.sect_off = line_offset;
527f3840
JK
11474 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
11475 line_header_local_hash = line_header_hash (&line_header_local);
11476 if (dwarf2_per_objfile->line_header_hash != NULL)
11477 {
11478 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11479 &line_header_local,
11480 line_header_local_hash, NO_INSERT);
11481
11482 /* For DW_TAG_compile_unit we need info like symtab::linetable which
11483 is not present in *SLOT (since if there is something in *SLOT then
11484 it will be for a partial_unit). */
11485 if (die->tag == DW_TAG_partial_unit && slot != NULL)
dee91e82 11486 {
527f3840 11487 gdb_assert (*slot != NULL);
9a3c8263 11488 cu->line_header = (struct line_header *) *slot;
527f3840 11489 return;
dee91e82 11490 }
2ab95328 11491 }
527f3840
JK
11492
11493 /* dwarf_decode_line_header does not yet provide sufficient information.
11494 We always have to call also dwarf_decode_lines for it. */
fff8551c
PA
11495 line_header_up lh = dwarf_decode_line_header (line_offset, cu);
11496 if (lh == NULL)
527f3840 11497 return;
4c8aa72d
PA
11498
11499 cu->line_header = lh.release ();
11500 cu->line_header_die_owner = die;
527f3840
JK
11501
11502 if (dwarf2_per_objfile->line_header_hash == NULL)
11503 slot = NULL;
11504 else
11505 {
11506 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11507 &line_header_local,
11508 line_header_local_hash, INSERT);
11509 gdb_assert (slot != NULL);
11510 }
11511 if (slot != NULL && *slot == NULL)
11512 {
11513 /* This newly decoded line number information unit will be owned
11514 by line_header_hash hash table. */
11515 *slot = cu->line_header;
4c8aa72d 11516 cu->line_header_die_owner = NULL;
527f3840
JK
11517 }
11518 else
11519 {
11520 /* We cannot free any current entry in (*slot) as that struct line_header
11521 may be already used by multiple CUs. Create only temporary decoded
11522 line_header for this CU - it may happen at most once for each line
11523 number information unit. And if we're not using line_header_hash
11524 then this is what we want as well. */
11525 gdb_assert (die->tag != DW_TAG_partial_unit);
527f3840
JK
11526 }
11527 decode_mapping = (die->tag != DW_TAG_partial_unit);
11528 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
11529 decode_mapping);
fff8551c 11530
2ab95328
TT
11531}
11532
95554aad 11533/* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
ae2de4f8 11534
c906108c 11535static void
e7c27a73 11536read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 11537{
518817b3
SM
11538 struct dwarf2_per_objfile *dwarf2_per_objfile
11539 = cu->per_cu->dwarf2_per_objfile;
dee91e82 11540 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 11541 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2acceee2 11542 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
11543 CORE_ADDR highpc = ((CORE_ADDR) 0);
11544 struct attribute *attr;
c906108c 11545 struct die_info *child_die;
e142c38c 11546 CORE_ADDR baseaddr;
6e70227d 11547
380618d6 11548 prepare_one_comp_unit (cu, die, cu->language);
e142c38c 11549 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 11550
fae299cd 11551 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
11552
11553 /* If we didn't find a lowpc, set it to highpc to avoid complaints
11554 from finish_block. */
2acceee2 11555 if (lowpc == ((CORE_ADDR) -1))
c906108c 11556 lowpc = highpc;
3e29f34a 11557 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
c906108c 11558
d721ba37 11559 file_and_directory fnd = find_file_and_directory (die, cu);
e1024ff1 11560
f4b8a18d
KW
11561 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
11562 standardised yet. As a workaround for the language detection we fall
11563 back to the DW_AT_producer string. */
11564 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
11565 cu->language = language_opencl;
11566
3019eac3
DE
11567 /* Similar hack for Go. */
11568 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
11569 set_cu_language (DW_LANG_Go, cu);
11570
c24bdb02 11571 cu->start_symtab (fnd.name, fnd.comp_dir, lowpc);
3019eac3
DE
11572
11573 /* Decode line number information if present. We do this before
11574 processing child DIEs, so that the line header table is available
11575 for DW_AT_decl_file. */
d721ba37 11576 handle_DW_AT_stmt_list (die, cu, fnd.comp_dir, lowpc);
3019eac3
DE
11577
11578 /* Process all dies in compilation unit. */
11579 if (die->child != NULL)
11580 {
11581 child_die = die->child;
11582 while (child_die && child_die->tag)
11583 {
11584 process_die (child_die, cu);
11585 child_die = sibling_die (child_die);
11586 }
11587 }
11588
11589 /* Decode macro information, if present. Dwarf 2 macro information
11590 refers to information in the line number info statement program
11591 header, so we can only read it if we've read the header
11592 successfully. */
0af92d60
JK
11593 attr = dwarf2_attr (die, DW_AT_macros, cu);
11594 if (attr == NULL)
11595 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
3019eac3
DE
11596 if (attr && cu->line_header)
11597 {
11598 if (dwarf2_attr (die, DW_AT_macro_info, cu))
b98664d3 11599 complaint (_("CU refers to both DW_AT_macros and DW_AT_macro_info"));
3019eac3 11600
43f3e411 11601 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
3019eac3
DE
11602 }
11603 else
11604 {
11605 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
11606 if (attr && cu->line_header)
11607 {
11608 unsigned int macro_offset = DW_UNSND (attr);
11609
43f3e411 11610 dwarf_decode_macros (cu, macro_offset, 0);
3019eac3
DE
11611 }
11612 }
3019eac3
DE
11613}
11614
c24bdb02
KS
11615void
11616dwarf2_cu::setup_type_unit_groups (struct die_info *die)
3019eac3 11617{
f4dc4d17
DE
11618 struct type_unit_group *tu_group;
11619 int first_time;
3019eac3 11620 struct attribute *attr;
9c541725 11621 unsigned int i;
0186c6a7 11622 struct signatured_type *sig_type;
3019eac3 11623
f4dc4d17 11624 gdb_assert (per_cu->is_debug_types);
0186c6a7 11625 sig_type = (struct signatured_type *) per_cu;
3019eac3 11626
c24bdb02 11627 attr = dwarf2_attr (die, DW_AT_stmt_list, this);
3019eac3 11628
f4dc4d17 11629 /* If we're using .gdb_index (includes -readnow) then
74e04d1c 11630 per_cu->type_unit_group may not have been set up yet. */
0186c6a7 11631 if (sig_type->type_unit_group == NULL)
c24bdb02 11632 sig_type->type_unit_group = get_type_unit_group (this, attr);
0186c6a7 11633 tu_group = sig_type->type_unit_group;
f4dc4d17
DE
11634
11635 /* If we've already processed this stmt_list there's no real need to
11636 do it again, we could fake it and just recreate the part we need
11637 (file name,index -> symtab mapping). If data shows this optimization
11638 is useful we can do it then. */
43f3e411 11639 first_time = tu_group->compunit_symtab == NULL;
f4dc4d17
DE
11640
11641 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
11642 debug info. */
fff8551c 11643 line_header_up lh;
f4dc4d17 11644 if (attr != NULL)
3019eac3 11645 {
9c541725 11646 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
c24bdb02 11647 lh = dwarf_decode_line_header (line_offset, this);
f4dc4d17
DE
11648 }
11649 if (lh == NULL)
11650 {
11651 if (first_time)
c24bdb02 11652 start_symtab ("", NULL, 0);
f4dc4d17
DE
11653 else
11654 {
11655 gdb_assert (tu_group->symtabs == NULL);
c24bdb02 11656 gdb_assert (m_builder == nullptr);
804d2729 11657 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11658 m_builder.reset (new struct buildsym_compunit
11659 (COMPUNIT_OBJFILE (cust), "",
11660 COMPUNIT_DIRNAME (cust),
11661 compunit_language (cust),
11662 0, cust));
f4dc4d17 11663 }
f4dc4d17 11664 return;
3019eac3
DE
11665 }
11666
c24bdb02
KS
11667 line_header = lh.release ();
11668 line_header_die_owner = die;
3019eac3 11669
f4dc4d17
DE
11670 if (first_time)
11671 {
c24bdb02 11672 struct compunit_symtab *cust = start_symtab ("", NULL, 0);
3019eac3 11673
1fd60fc0
DE
11674 /* Note: We don't assign tu_group->compunit_symtab yet because we're
11675 still initializing it, and our caller (a few levels up)
11676 process_full_type_unit still needs to know if this is the first
11677 time. */
11678
c24bdb02 11679 tu_group->num_symtabs = line_header->file_names.size ();
4c8aa72d 11680 tu_group->symtabs = XNEWVEC (struct symtab *,
c24bdb02 11681 line_header->file_names.size ());
3019eac3 11682
c24bdb02 11683 for (i = 0; i < line_header->file_names.size (); ++i)
f4dc4d17 11684 {
c24bdb02 11685 file_entry &fe = line_header->file_names[i];
3019eac3 11686
c24bdb02
KS
11687 dwarf2_start_subfile (this, fe.name,
11688 fe.include_dir (line_header));
11689 buildsym_compunit *b = get_builder ();
11690 if (b->get_current_subfile ()->symtab == NULL)
f4dc4d17 11691 {
4c8aa72d
PA
11692 /* NOTE: start_subfile will recognize when it's been
11693 passed a file it has already seen. So we can't
11694 assume there's a simple mapping from
11695 cu->line_header->file_names to subfiles, plus
11696 cu->line_header->file_names may contain dups. */
c24bdb02
KS
11697 b->get_current_subfile ()->symtab
11698 = allocate_symtab (cust, b->get_current_subfile ()->name);
f4dc4d17
DE
11699 }
11700
c24bdb02 11701 fe.symtab = b->get_current_subfile ()->symtab;
8c43009f 11702 tu_group->symtabs[i] = fe.symtab;
f4dc4d17
DE
11703 }
11704 }
11705 else
3019eac3 11706 {
c24bdb02 11707 gdb_assert (m_builder == nullptr);
804d2729 11708 struct compunit_symtab *cust = tu_group->compunit_symtab;
c24bdb02
KS
11709 m_builder.reset (new struct buildsym_compunit
11710 (COMPUNIT_OBJFILE (cust), "",
11711 COMPUNIT_DIRNAME (cust),
11712 compunit_language (cust),
11713 0, cust));
f4dc4d17 11714
c24bdb02 11715 for (i = 0; i < line_header->file_names.size (); ++i)
f4dc4d17 11716 {
c24bdb02 11717 file_entry &fe = line_header->file_names[i];
f4dc4d17 11718
4c8aa72d 11719 fe.symtab = tu_group->symtabs[i];
f4dc4d17 11720 }
3019eac3
DE
11721 }
11722
f4dc4d17
DE
11723 /* The main symtab is allocated last. Type units don't have DW_AT_name
11724 so they don't have a "real" (so to speak) symtab anyway.
11725 There is later code that will assign the main symtab to all symbols
11726 that don't have one. We need to handle the case of a symbol with a
11727 missing symtab (DW_AT_decl_file) anyway. */
11728}
3019eac3 11729
f4dc4d17
DE
11730/* Process DW_TAG_type_unit.
11731 For TUs we want to skip the first top level sibling if it's not the
11732 actual type being defined by this TU. In this case the first top
11733 level sibling is there to provide context only. */
3019eac3 11734
f4dc4d17
DE
11735static void
11736read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
11737{
11738 struct die_info *child_die;
3019eac3 11739
f4dc4d17
DE
11740 prepare_one_comp_unit (cu, die, language_minimal);
11741
11742 /* Initialize (or reinitialize) the machinery for building symtabs.
11743 We do this before processing child DIEs, so that the line header table
11744 is available for DW_AT_decl_file. */
c24bdb02 11745 cu->setup_type_unit_groups (die);
f4dc4d17
DE
11746
11747 if (die->child != NULL)
11748 {
11749 child_die = die->child;
11750 while (child_die && child_die->tag)
11751 {
11752 process_die (child_die, cu);
11753 child_die = sibling_die (child_die);
11754 }
11755 }
3019eac3
DE
11756}
11757\f
80626a55
DE
11758/* DWO/DWP files.
11759
11760 http://gcc.gnu.org/wiki/DebugFission
11761 http://gcc.gnu.org/wiki/DebugFissionDWP
11762
11763 To simplify handling of both DWO files ("object" files with the DWARF info)
11764 and DWP files (a file with the DWOs packaged up into one file), we treat
11765 DWP files as having a collection of virtual DWO files. */
3019eac3
DE
11766
11767static hashval_t
11768hash_dwo_file (const void *item)
11769{
9a3c8263 11770 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
a2ce51a0 11771 hashval_t hash;
3019eac3 11772
a2ce51a0
DE
11773 hash = htab_hash_string (dwo_file->dwo_name);
11774 if (dwo_file->comp_dir != NULL)
11775 hash += htab_hash_string (dwo_file->comp_dir);
11776 return hash;
3019eac3
DE
11777}
11778
11779static int
11780eq_dwo_file (const void *item_lhs, const void *item_rhs)
11781{
9a3c8263
SM
11782 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
11783 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
3019eac3 11784
a2ce51a0
DE
11785 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
11786 return 0;
11787 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
11788 return lhs->comp_dir == rhs->comp_dir;
11789 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
3019eac3
DE
11790}
11791
11792/* Allocate a hash table for DWO files. */
11793
11794static htab_t
ed2dc618 11795allocate_dwo_file_hash_table (struct objfile *objfile)
3019eac3 11796{
3019eac3
DE
11797 return htab_create_alloc_ex (41,
11798 hash_dwo_file,
11799 eq_dwo_file,
11800 NULL,
11801 &objfile->objfile_obstack,
11802 hashtab_obstack_allocate,
11803 dummy_obstack_deallocate);
11804}
11805
80626a55
DE
11806/* Lookup DWO file DWO_NAME. */
11807
11808static void **
ed2dc618
SM
11809lookup_dwo_file_slot (struct dwarf2_per_objfile *dwarf2_per_objfile,
11810 const char *dwo_name,
11811 const char *comp_dir)
80626a55
DE
11812{
11813 struct dwo_file find_entry;
11814 void **slot;
11815
11816 if (dwarf2_per_objfile->dwo_files == NULL)
ed2dc618
SM
11817 dwarf2_per_objfile->dwo_files
11818 = allocate_dwo_file_hash_table (dwarf2_per_objfile->objfile);
80626a55
DE
11819
11820 memset (&find_entry, 0, sizeof (find_entry));
0ac5b59e
DE
11821 find_entry.dwo_name = dwo_name;
11822 find_entry.comp_dir = comp_dir;
80626a55
DE
11823 slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
11824
11825 return slot;
11826}
11827
3019eac3
DE
11828static hashval_t
11829hash_dwo_unit (const void *item)
11830{
9a3c8263 11831 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3
DE
11832
11833 /* This drops the top 32 bits of the id, but is ok for a hash. */
11834 return dwo_unit->signature;
11835}
11836
11837static int
11838eq_dwo_unit (const void *item_lhs, const void *item_rhs)
11839{
9a3c8263
SM
11840 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
11841 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
3019eac3
DE
11842
11843 /* The signature is assumed to be unique within the DWO file.
11844 So while object file CU dwo_id's always have the value zero,
11845 that's OK, assuming each object file DWO file has only one CU,
11846 and that's the rule for now. */
11847 return lhs->signature == rhs->signature;
11848}
11849
11850/* Allocate a hash table for DWO CUs,TUs.
11851 There is one of these tables for each of CUs,TUs for each DWO file. */
11852
11853static htab_t
11854allocate_dwo_unit_table (struct objfile *objfile)
11855{
11856 /* Start out with a pretty small number.
11857 Generally DWO files contain only one CU and maybe some TUs. */
11858 return htab_create_alloc_ex (3,
11859 hash_dwo_unit,
11860 eq_dwo_unit,
11861 NULL,
11862 &objfile->objfile_obstack,
11863 hashtab_obstack_allocate,
11864 dummy_obstack_deallocate);
11865}
11866
80626a55 11867/* Structure used to pass data to create_dwo_debug_info_hash_table_reader. */
3019eac3 11868
19c3d4c9 11869struct create_dwo_cu_data
3019eac3
DE
11870{
11871 struct dwo_file *dwo_file;
19c3d4c9 11872 struct dwo_unit dwo_unit;
3019eac3
DE
11873};
11874
19c3d4c9 11875/* die_reader_func for create_dwo_cu. */
3019eac3
DE
11876
11877static void
19c3d4c9
DE
11878create_dwo_cu_reader (const struct die_reader_specs *reader,
11879 const gdb_byte *info_ptr,
11880 struct die_info *comp_unit_die,
11881 int has_children,
11882 void *datap)
3019eac3
DE
11883{
11884 struct dwarf2_cu *cu = reader->cu;
9c541725 11885 sect_offset sect_off = cu->per_cu->sect_off;
8a0459fd 11886 struct dwarf2_section_info *section = cu->per_cu->section;
9a3c8263 11887 struct create_dwo_cu_data *data = (struct create_dwo_cu_data *) datap;
3019eac3 11888 struct dwo_file *dwo_file = data->dwo_file;
19c3d4c9 11889 struct dwo_unit *dwo_unit = &data->dwo_unit;
3019eac3 11890 struct attribute *attr;
3019eac3
DE
11891
11892 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
11893 if (attr == NULL)
11894 {
b98664d3 11895 complaint (_("Dwarf Error: debug entry at offset %s is missing"
19c3d4c9 11896 " its dwo_id [in module %s]"),
9d8780f0 11897 sect_offset_str (sect_off), dwo_file->dwo_name);
3019eac3
DE
11898 return;
11899 }
11900
3019eac3
DE
11901 dwo_unit->dwo_file = dwo_file;
11902 dwo_unit->signature = DW_UNSND (attr);
8a0459fd 11903 dwo_unit->section = section;
9c541725 11904 dwo_unit->sect_off = sect_off;
3019eac3
DE
11905 dwo_unit->length = cu->per_cu->length;
11906
b4f54984 11907 if (dwarf_read_debug)
9d8780f0
SM
11908 fprintf_unfiltered (gdb_stdlog, " offset %s, dwo_id %s\n",
11909 sect_offset_str (sect_off),
9c541725 11910 hex_string (dwo_unit->signature));
3019eac3
DE
11911}
11912
33c5cd75 11913/* Create the dwo_units for the CUs in a DWO_FILE.
19c3d4c9 11914 Note: This function processes DWO files only, not DWP files. */
3019eac3 11915
33c5cd75 11916static void
ed2dc618
SM
11917create_cus_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
11918 struct dwo_file &dwo_file, dwarf2_section_info &section,
33c5cd75 11919 htab_t &cus_htab)
3019eac3
DE
11920{
11921 struct objfile *objfile = dwarf2_per_objfile->objfile;
d521ce57 11922 const gdb_byte *info_ptr, *end_ptr;
3019eac3 11923
33c5cd75
DB
11924 dwarf2_read_section (objfile, &section);
11925 info_ptr = section.buffer;
3019eac3
DE
11926
11927 if (info_ptr == NULL)
33c5cd75 11928 return;
3019eac3 11929
b4f54984 11930 if (dwarf_read_debug)
19c3d4c9
DE
11931 {
11932 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
33c5cd75
DB
11933 get_section_name (&section),
11934 get_section_file_name (&section));
19c3d4c9 11935 }
3019eac3 11936
33c5cd75 11937 end_ptr = info_ptr + section.size;
3019eac3
DE
11938 while (info_ptr < end_ptr)
11939 {
11940 struct dwarf2_per_cu_data per_cu;
33c5cd75
DB
11941 struct create_dwo_cu_data create_dwo_cu_data;
11942 struct dwo_unit *dwo_unit;
11943 void **slot;
11944 sect_offset sect_off = (sect_offset) (info_ptr - section.buffer);
3019eac3 11945
19c3d4c9
DE
11946 memset (&create_dwo_cu_data.dwo_unit, 0,
11947 sizeof (create_dwo_cu_data.dwo_unit));
3019eac3 11948 memset (&per_cu, 0, sizeof (per_cu));
e3b94546 11949 per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
3019eac3 11950 per_cu.is_debug_types = 0;
33c5cd75
DB
11951 per_cu.sect_off = sect_offset (info_ptr - section.buffer);
11952 per_cu.section = &section;
c5ed0576 11953 create_dwo_cu_data.dwo_file = &dwo_file;
33c5cd75
DB
11954
11955 init_cutu_and_read_dies_no_follow (
11956 &per_cu, &dwo_file, create_dwo_cu_reader, &create_dwo_cu_data);
11957 info_ptr += per_cu.length;
11958
11959 // If the unit could not be parsed, skip it.
11960 if (create_dwo_cu_data.dwo_unit.dwo_file == NULL)
11961 continue;
3019eac3 11962
33c5cd75
DB
11963 if (cus_htab == NULL)
11964 cus_htab = allocate_dwo_unit_table (objfile);
19c3d4c9 11965
33c5cd75
DB
11966 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
11967 *dwo_unit = create_dwo_cu_data.dwo_unit;
11968 slot = htab_find_slot (cus_htab, dwo_unit, INSERT);
11969 gdb_assert (slot != NULL);
11970 if (*slot != NULL)
19c3d4c9 11971 {
33c5cd75
DB
11972 const struct dwo_unit *dup_cu = (const struct dwo_unit *)*slot;
11973 sect_offset dup_sect_off = dup_cu->sect_off;
19c3d4c9 11974
b98664d3 11975 complaint (_("debug cu entry at offset %s is duplicate to"
9d8780f0
SM
11976 " the entry at offset %s, signature %s"),
11977 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
33c5cd75 11978 hex_string (dwo_unit->signature));
19c3d4c9 11979 }
33c5cd75 11980 *slot = (void *)dwo_unit;
3019eac3 11981 }
3019eac3
DE
11982}
11983
80626a55
DE
11984/* DWP file .debug_{cu,tu}_index section format:
11985 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
11986
d2415c6c
DE
11987 DWP Version 1:
11988
80626a55
DE
11989 Both index sections have the same format, and serve to map a 64-bit
11990 signature to a set of section numbers. Each section begins with a header,
11991 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
11992 indexes, and a pool of 32-bit section numbers. The index sections will be
11993 aligned at 8-byte boundaries in the file.
11994
d2415c6c
DE
11995 The index section header consists of:
11996
11997 V, 32 bit version number
11998 -, 32 bits unused
11999 N, 32 bit number of compilation units or type units in the index
12000 M, 32 bit number of slots in the hash table
80626a55 12001
d2415c6c 12002 Numbers are recorded using the byte order of the application binary.
80626a55 12003
d2415c6c
DE
12004 The hash table begins at offset 16 in the section, and consists of an array
12005 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
12006 order of the application binary). Unused slots in the hash table are 0.
12007 (We rely on the extreme unlikeliness of a signature being exactly 0.)
80626a55 12008
d2415c6c
DE
12009 The parallel table begins immediately after the hash table
12010 (at offset 16 + 8 * M from the beginning of the section), and consists of an
12011 array of 32-bit indexes (using the byte order of the application binary),
12012 corresponding 1-1 with slots in the hash table. Each entry in the parallel
12013 table contains a 32-bit index into the pool of section numbers. For unused
12014 hash table slots, the corresponding entry in the parallel table will be 0.
80626a55 12015
73869dc2
DE
12016 The pool of section numbers begins immediately following the hash table
12017 (at offset 16 + 12 * M from the beginning of the section). The pool of
12018 section numbers consists of an array of 32-bit words (using the byte order
12019 of the application binary). Each item in the array is indexed starting
12020 from 0. The hash table entry provides the index of the first section
12021 number in the set. Additional section numbers in the set follow, and the
12022 set is terminated by a 0 entry (section number 0 is not used in ELF).
12023
12024 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
12025 section must be the first entry in the set, and the .debug_abbrev.dwo must
12026 be the second entry. Other members of the set may follow in any order.
12027
12028 ---
12029
12030 DWP Version 2:
12031
12032 DWP Version 2 combines all the .debug_info, etc. sections into one,
12033 and the entries in the index tables are now offsets into these sections.
12034 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
12035 section.
12036
12037 Index Section Contents:
12038 Header
12039 Hash Table of Signatures dwp_hash_table.hash_table
12040 Parallel Table of Indices dwp_hash_table.unit_table
12041 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
12042 Table of Section Sizes dwp_hash_table.v2.sizes
12043
12044 The index section header consists of:
12045
12046 V, 32 bit version number
12047 L, 32 bit number of columns in the table of section offsets
12048 N, 32 bit number of compilation units or type units in the index
12049 M, 32 bit number of slots in the hash table
12050
12051 Numbers are recorded using the byte order of the application binary.
12052
12053 The hash table has the same format as version 1.
12054 The parallel table of indices has the same format as version 1,
12055 except that the entries are origin-1 indices into the table of sections
12056 offsets and the table of section sizes.
12057
12058 The table of offsets begins immediately following the parallel table
12059 (at offset 16 + 12 * M from the beginning of the section). The table is
12060 a two-dimensional array of 32-bit words (using the byte order of the
12061 application binary), with L columns and N+1 rows, in row-major order.
12062 Each row in the array is indexed starting from 0. The first row provides
12063 a key to the remaining rows: each column in this row provides an identifier
12064 for a debug section, and the offsets in the same column of subsequent rows
12065 refer to that section. The section identifiers are:
12066
12067 DW_SECT_INFO 1 .debug_info.dwo
12068 DW_SECT_TYPES 2 .debug_types.dwo
12069 DW_SECT_ABBREV 3 .debug_abbrev.dwo
12070 DW_SECT_LINE 4 .debug_line.dwo
12071 DW_SECT_LOC 5 .debug_loc.dwo
12072 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
12073 DW_SECT_MACINFO 7 .debug_macinfo.dwo
12074 DW_SECT_MACRO 8 .debug_macro.dwo
12075
12076 The offsets provided by the CU and TU index sections are the base offsets
12077 for the contributions made by each CU or TU to the corresponding section
12078 in the package file. Each CU and TU header contains an abbrev_offset
12079 field, used to find the abbreviations table for that CU or TU within the
12080 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
12081 be interpreted as relative to the base offset given in the index section.
12082 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
12083 should be interpreted as relative to the base offset for .debug_line.dwo,
12084 and offsets into other debug sections obtained from DWARF attributes should
12085 also be interpreted as relative to the corresponding base offset.
12086
12087 The table of sizes begins immediately following the table of offsets.
12088 Like the table of offsets, it is a two-dimensional array of 32-bit words,
12089 with L columns and N rows, in row-major order. Each row in the array is
12090 indexed starting from 1 (row 0 is shared by the two tables).
12091
12092 ---
12093
12094 Hash table lookup is handled the same in version 1 and 2:
12095
12096 We assume that N and M will not exceed 2^32 - 1.
12097 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
12098
d2415c6c
DE
12099 Given a 64-bit compilation unit signature or a type signature S, an entry
12100 in the hash table is located as follows:
80626a55 12101
d2415c6c
DE
12102 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
12103 the low-order k bits all set to 1.
80626a55 12104
d2415c6c 12105 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
80626a55 12106
d2415c6c
DE
12107 3) If the hash table entry at index H matches the signature, use that
12108 entry. If the hash table entry at index H is unused (all zeroes),
12109 terminate the search: the signature is not present in the table.
80626a55 12110
d2415c6c 12111 4) Let H = (H + H') modulo M. Repeat at Step 3.
80626a55 12112
d2415c6c 12113 Because M > N and H' and M are relatively prime, the search is guaranteed
73869dc2 12114 to stop at an unused slot or find the match. */
80626a55
DE
12115
12116/* Create a hash table to map DWO IDs to their CU/TU entry in
12117 .debug_{info,types}.dwo in DWP_FILE.
12118 Returns NULL if there isn't one.
12119 Note: This function processes DWP files only, not DWO files. */
12120
12121static struct dwp_hash_table *
ed2dc618
SM
12122create_dwp_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
12123 struct dwp_file *dwp_file, int is_debug_types)
80626a55
DE
12124{
12125 struct objfile *objfile = dwarf2_per_objfile->objfile;
400174b1 12126 bfd *dbfd = dwp_file->dbfd.get ();
948f8e3d 12127 const gdb_byte *index_ptr, *index_end;
80626a55 12128 struct dwarf2_section_info *index;
73869dc2 12129 uint32_t version, nr_columns, nr_units, nr_slots;
80626a55
DE
12130 struct dwp_hash_table *htab;
12131
12132 if (is_debug_types)
12133 index = &dwp_file->sections.tu_index;
12134 else
12135 index = &dwp_file->sections.cu_index;
12136
12137 if (dwarf2_section_empty_p (index))
12138 return NULL;
12139 dwarf2_read_section (objfile, index);
12140
12141 index_ptr = index->buffer;
12142 index_end = index_ptr + index->size;
12143
12144 version = read_4_bytes (dbfd, index_ptr);
73869dc2
DE
12145 index_ptr += 4;
12146 if (version == 2)
12147 nr_columns = read_4_bytes (dbfd, index_ptr);
12148 else
12149 nr_columns = 0;
12150 index_ptr += 4;
80626a55
DE
12151 nr_units = read_4_bytes (dbfd, index_ptr);
12152 index_ptr += 4;
12153 nr_slots = read_4_bytes (dbfd, index_ptr);
12154 index_ptr += 4;
12155
73869dc2 12156 if (version != 1 && version != 2)
80626a55 12157 {
21aa081e 12158 error (_("Dwarf Error: unsupported DWP file version (%s)"
80626a55 12159 " [in module %s]"),
21aa081e 12160 pulongest (version), dwp_file->name);
80626a55
DE
12161 }
12162 if (nr_slots != (nr_slots & -nr_slots))
12163 {
21aa081e 12164 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
80626a55 12165 " is not power of 2 [in module %s]"),
21aa081e 12166 pulongest (nr_slots), dwp_file->name);
80626a55
DE
12167 }
12168
12169 htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
73869dc2
DE
12170 htab->version = version;
12171 htab->nr_columns = nr_columns;
80626a55
DE
12172 htab->nr_units = nr_units;
12173 htab->nr_slots = nr_slots;
12174 htab->hash_table = index_ptr;
12175 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
73869dc2
DE
12176
12177 /* Exit early if the table is empty. */
12178 if (nr_slots == 0 || nr_units == 0
12179 || (version == 2 && nr_columns == 0))
12180 {
12181 /* All must be zero. */
12182 if (nr_slots != 0 || nr_units != 0
12183 || (version == 2 && nr_columns != 0))
12184 {
b98664d3 12185 complaint (_("Empty DWP but nr_slots,nr_units,nr_columns not"
73869dc2
DE
12186 " all zero [in modules %s]"),
12187 dwp_file->name);
12188 }
12189 return htab;
12190 }
12191
12192 if (version == 1)
12193 {
12194 htab->section_pool.v1.indices =
12195 htab->unit_table + sizeof (uint32_t) * nr_slots;
12196 /* It's harder to decide whether the section is too small in v1.
12197 V1 is deprecated anyway so we punt. */
12198 }
12199 else
12200 {
12201 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
12202 int *ids = htab->section_pool.v2.section_ids;
04fd5eed 12203 size_t sizeof_ids = sizeof (htab->section_pool.v2.section_ids);
73869dc2
DE
12204 /* Reverse map for error checking. */
12205 int ids_seen[DW_SECT_MAX + 1];
12206 int i;
12207
12208 if (nr_columns < 2)
12209 {
12210 error (_("Dwarf Error: bad DWP hash table, too few columns"
12211 " in section table [in module %s]"),
12212 dwp_file->name);
12213 }
12214 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
12215 {
12216 error (_("Dwarf Error: bad DWP hash table, too many columns"
12217 " in section table [in module %s]"),
12218 dwp_file->name);
12219 }
04fd5eed
GB
12220 memset (ids, 255, sizeof_ids);
12221 memset (ids_seen, 255, sizeof (ids_seen));
73869dc2
DE
12222 for (i = 0; i < nr_columns; ++i)
12223 {
12224 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
12225
12226 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
12227 {
12228 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
12229 " in section table [in module %s]"),
12230 id, dwp_file->name);
12231 }
12232 if (ids_seen[id] != -1)
12233 {
12234 error (_("Dwarf Error: bad DWP hash table, duplicate section"
12235 " id %d in section table [in module %s]"),
12236 id, dwp_file->name);
12237 }
12238 ids_seen[id] = i;
12239 ids[i] = id;
12240 }
12241 /* Must have exactly one info or types section. */
12242 if (((ids_seen[DW_SECT_INFO] != -1)
12243 + (ids_seen[DW_SECT_TYPES] != -1))
12244 != 1)
12245 {
12246 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
12247 " DWO info/types section [in module %s]"),
12248 dwp_file->name);
12249 }
12250 /* Must have an abbrev section. */
12251 if (ids_seen[DW_SECT_ABBREV] == -1)
12252 {
12253 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
12254 " section [in module %s]"),
12255 dwp_file->name);
12256 }
12257 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
12258 htab->section_pool.v2.sizes =
12259 htab->section_pool.v2.offsets + (sizeof (uint32_t)
12260 * nr_units * nr_columns);
12261 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
12262 * nr_units * nr_columns))
12263 > index_end)
12264 {
12265 error (_("Dwarf Error: DWP index section is corrupt (too small)"
12266 " [in module %s]"),
12267 dwp_file->name);
12268 }
12269 }
80626a55
DE
12270
12271 return htab;
12272}
12273
12274/* Update SECTIONS with the data from SECTP.
12275
12276 This function is like the other "locate" section routines that are
12277 passed to bfd_map_over_sections, but in this context the sections to
73869dc2 12278 read comes from the DWP V1 hash table, not the full ELF section table.
80626a55
DE
12279
12280 The result is non-zero for success, or zero if an error was found. */
12281
12282static int
73869dc2
DE
12283locate_v1_virtual_dwo_sections (asection *sectp,
12284 struct virtual_v1_dwo_sections *sections)
80626a55
DE
12285{
12286 const struct dwop_section_names *names = &dwop_section_names;
12287
12288 if (section_is_p (sectp->name, &names->abbrev_dwo))
12289 {
12290 /* There can be only one. */
049412e3 12291 if (sections->abbrev.s.section != NULL)
80626a55 12292 return 0;
049412e3 12293 sections->abbrev.s.section = sectp;
80626a55
DE
12294 sections->abbrev.size = bfd_get_section_size (sectp);
12295 }
12296 else if (section_is_p (sectp->name, &names->info_dwo)
12297 || section_is_p (sectp->name, &names->types_dwo))
12298 {
12299 /* There can be only one. */
049412e3 12300 if (sections->info_or_types.s.section != NULL)
80626a55 12301 return 0;
049412e3 12302 sections->info_or_types.s.section = sectp;
80626a55
DE
12303 sections->info_or_types.size = bfd_get_section_size (sectp);
12304 }
12305 else if (section_is_p (sectp->name, &names->line_dwo))
12306 {
12307 /* There can be only one. */
049412e3 12308 if (sections->line.s.section != NULL)
80626a55 12309 return 0;
049412e3 12310 sections->line.s.section = sectp;
80626a55
DE
12311 sections->line.size = bfd_get_section_size (sectp);
12312 }
12313 else if (section_is_p (sectp->name, &names->loc_dwo))
12314 {
12315 /* There can be only one. */
049412e3 12316 if (sections->loc.s.section != NULL)
80626a55 12317 return 0;
049412e3 12318 sections->loc.s.section = sectp;
80626a55
DE
12319 sections->loc.size = bfd_get_section_size (sectp);
12320 }
12321 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12322 {
12323 /* There can be only one. */
049412e3 12324 if (sections->macinfo.s.section != NULL)
80626a55 12325 return 0;
049412e3 12326 sections->macinfo.s.section = sectp;
80626a55
DE
12327 sections->macinfo.size = bfd_get_section_size (sectp);
12328 }
12329 else if (section_is_p (sectp->name, &names->macro_dwo))
12330 {
12331 /* There can be only one. */
049412e3 12332 if (sections->macro.s.section != NULL)
80626a55 12333 return 0;
049412e3 12334 sections->macro.s.section = sectp;
80626a55
DE
12335 sections->macro.size = bfd_get_section_size (sectp);
12336 }
12337 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12338 {
12339 /* There can be only one. */
049412e3 12340 if (sections->str_offsets.s.section != NULL)
80626a55 12341 return 0;
049412e3 12342 sections->str_offsets.s.section = sectp;
80626a55
DE
12343 sections->str_offsets.size = bfd_get_section_size (sectp);
12344 }
12345 else
12346 {
12347 /* No other kind of section is valid. */
12348 return 0;
12349 }
12350
12351 return 1;
12352}
12353
73869dc2
DE
12354/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12355 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12356 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12357 This is for DWP version 1 files. */
80626a55
DE
12358
12359static struct dwo_unit *
ed2dc618
SM
12360create_dwo_unit_in_dwp_v1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12361 struct dwp_file *dwp_file,
73869dc2
DE
12362 uint32_t unit_index,
12363 const char *comp_dir,
12364 ULONGEST signature, int is_debug_types)
80626a55
DE
12365{
12366 struct objfile *objfile = dwarf2_per_objfile->objfile;
73869dc2
DE
12367 const struct dwp_hash_table *dwp_htab =
12368 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12369 bfd *dbfd = dwp_file->dbfd.get ();
80626a55
DE
12370 const char *kind = is_debug_types ? "TU" : "CU";
12371 struct dwo_file *dwo_file;
12372 struct dwo_unit *dwo_unit;
73869dc2 12373 struct virtual_v1_dwo_sections sections;
80626a55 12374 void **dwo_file_slot;
80626a55
DE
12375 int i;
12376
73869dc2
DE
12377 gdb_assert (dwp_file->version == 1);
12378
b4f54984 12379 if (dwarf_read_debug)
80626a55 12380 {
73869dc2 12381 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
80626a55 12382 kind,
73869dc2 12383 pulongest (unit_index), hex_string (signature),
80626a55
DE
12384 dwp_file->name);
12385 }
12386
19ac8c2e 12387 /* Fetch the sections of this DWO unit.
80626a55
DE
12388 Put a limit on the number of sections we look for so that bad data
12389 doesn't cause us to loop forever. */
12390
73869dc2 12391#define MAX_NR_V1_DWO_SECTIONS \
80626a55
DE
12392 (1 /* .debug_info or .debug_types */ \
12393 + 1 /* .debug_abbrev */ \
12394 + 1 /* .debug_line */ \
12395 + 1 /* .debug_loc */ \
12396 + 1 /* .debug_str_offsets */ \
19ac8c2e 12397 + 1 /* .debug_macro or .debug_macinfo */ \
80626a55
DE
12398 + 1 /* trailing zero */)
12399
12400 memset (&sections, 0, sizeof (sections));
80626a55 12401
73869dc2 12402 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
80626a55
DE
12403 {
12404 asection *sectp;
12405 uint32_t section_nr =
12406 read_4_bytes (dbfd,
73869dc2
DE
12407 dwp_htab->section_pool.v1.indices
12408 + (unit_index + i) * sizeof (uint32_t));
80626a55
DE
12409
12410 if (section_nr == 0)
12411 break;
12412 if (section_nr >= dwp_file->num_sections)
12413 {
12414 error (_("Dwarf Error: bad DWP hash table, section number too large"
12415 " [in module %s]"),
12416 dwp_file->name);
12417 }
12418
12419 sectp = dwp_file->elf_sections[section_nr];
73869dc2 12420 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
80626a55
DE
12421 {
12422 error (_("Dwarf Error: bad DWP hash table, invalid section found"
12423 " [in module %s]"),
12424 dwp_file->name);
12425 }
12426 }
12427
12428 if (i < 2
a32a8923
DE
12429 || dwarf2_section_empty_p (&sections.info_or_types)
12430 || dwarf2_section_empty_p (&sections.abbrev))
80626a55
DE
12431 {
12432 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
12433 " [in module %s]"),
12434 dwp_file->name);
12435 }
73869dc2 12436 if (i == MAX_NR_V1_DWO_SECTIONS)
80626a55
DE
12437 {
12438 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
12439 " [in module %s]"),
12440 dwp_file->name);
12441 }
12442
12443 /* It's easier for the rest of the code if we fake a struct dwo_file and
12444 have dwo_unit "live" in that. At least for now.
12445
12446 The DWP file can be made up of a random collection of CUs and TUs.
c766f7ec 12447 However, for each CU + set of TUs that came from the same original DWO
57d63ce2
DE
12448 file, we can combine them back into a virtual DWO file to save space
12449 (fewer struct dwo_file objects to allocate). Remember that for really
80626a55
DE
12450 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12451
791afaa2
TT
12452 std::string virtual_dwo_name =
12453 string_printf ("virtual-dwo/%d-%d-%d-%d",
12454 get_section_id (&sections.abbrev),
12455 get_section_id (&sections.line),
12456 get_section_id (&sections.loc),
12457 get_section_id (&sections.str_offsets));
80626a55 12458 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
12459 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12460 virtual_dwo_name.c_str (),
12461 comp_dir);
80626a55
DE
12462 /* Create one if necessary. */
12463 if (*dwo_file_slot == NULL)
12464 {
b4f54984 12465 if (dwarf_read_debug)
80626a55
DE
12466 {
12467 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12468 virtual_dwo_name.c_str ());
80626a55
DE
12469 }
12470 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
224c3ddb
SM
12471 dwo_file->dwo_name
12472 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
791afaa2
TT
12473 virtual_dwo_name.c_str (),
12474 virtual_dwo_name.size ());
0ac5b59e 12475 dwo_file->comp_dir = comp_dir;
80626a55
DE
12476 dwo_file->sections.abbrev = sections.abbrev;
12477 dwo_file->sections.line = sections.line;
12478 dwo_file->sections.loc = sections.loc;
12479 dwo_file->sections.macinfo = sections.macinfo;
12480 dwo_file->sections.macro = sections.macro;
12481 dwo_file->sections.str_offsets = sections.str_offsets;
12482 /* The "str" section is global to the entire DWP file. */
12483 dwo_file->sections.str = dwp_file->sections.str;
57d63ce2 12484 /* The info or types section is assigned below to dwo_unit,
80626a55
DE
12485 there's no need to record it in dwo_file.
12486 Also, we can't simply record type sections in dwo_file because
12487 we record a pointer into the vector in dwo_unit. As we collect more
12488 types we'll grow the vector and eventually have to reallocate space
57d63ce2
DE
12489 for it, invalidating all copies of pointers into the previous
12490 contents. */
80626a55
DE
12491 *dwo_file_slot = dwo_file;
12492 }
12493 else
12494 {
b4f54984 12495 if (dwarf_read_debug)
80626a55
DE
12496 {
12497 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12498 virtual_dwo_name.c_str ());
80626a55 12499 }
9a3c8263 12500 dwo_file = (struct dwo_file *) *dwo_file_slot;
80626a55 12501 }
80626a55
DE
12502
12503 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12504 dwo_unit->dwo_file = dwo_file;
12505 dwo_unit->signature = signature;
8d749320
SM
12506 dwo_unit->section =
12507 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
8a0459fd 12508 *dwo_unit->section = sections.info_or_types;
57d63ce2 12509 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
80626a55
DE
12510
12511 return dwo_unit;
12512}
12513
73869dc2
DE
12514/* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
12515 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
12516 piece within that section used by a TU/CU, return a virtual section
12517 of just that piece. */
12518
12519static struct dwarf2_section_info
ed2dc618
SM
12520create_dwp_v2_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
12521 struct dwarf2_section_info *section,
73869dc2
DE
12522 bfd_size_type offset, bfd_size_type size)
12523{
12524 struct dwarf2_section_info result;
12525 asection *sectp;
12526
12527 gdb_assert (section != NULL);
12528 gdb_assert (!section->is_virtual);
12529
12530 memset (&result, 0, sizeof (result));
12531 result.s.containing_section = section;
12532 result.is_virtual = 1;
12533
12534 if (size == 0)
12535 return result;
12536
12537 sectp = get_section_bfd_section (section);
12538
12539 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
12540 bounds of the real section. This is a pretty-rare event, so just
12541 flag an error (easier) instead of a warning and trying to cope. */
12542 if (sectp == NULL
12543 || offset + size > bfd_get_section_size (sectp))
12544 {
73869dc2
DE
12545 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
12546 " in section %s [in module %s]"),
12547 sectp ? bfd_section_name (abfd, sectp) : "<unknown>",
12548 objfile_name (dwarf2_per_objfile->objfile));
12549 }
12550
12551 result.virtual_offset = offset;
12552 result.size = size;
12553 return result;
12554}
12555
12556/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12557 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12558 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12559 This is for DWP version 2 files. */
12560
12561static struct dwo_unit *
ed2dc618
SM
12562create_dwo_unit_in_dwp_v2 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12563 struct dwp_file *dwp_file,
73869dc2
DE
12564 uint32_t unit_index,
12565 const char *comp_dir,
12566 ULONGEST signature, int is_debug_types)
12567{
12568 struct objfile *objfile = dwarf2_per_objfile->objfile;
12569 const struct dwp_hash_table *dwp_htab =
12570 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12571 bfd *dbfd = dwp_file->dbfd.get ();
73869dc2
DE
12572 const char *kind = is_debug_types ? "TU" : "CU";
12573 struct dwo_file *dwo_file;
12574 struct dwo_unit *dwo_unit;
12575 struct virtual_v2_dwo_sections sections;
12576 void **dwo_file_slot;
73869dc2
DE
12577 int i;
12578
12579 gdb_assert (dwp_file->version == 2);
12580
b4f54984 12581 if (dwarf_read_debug)
73869dc2
DE
12582 {
12583 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
12584 kind,
12585 pulongest (unit_index), hex_string (signature),
12586 dwp_file->name);
12587 }
12588
12589 /* Fetch the section offsets of this DWO unit. */
12590
12591 memset (&sections, 0, sizeof (sections));
73869dc2
DE
12592
12593 for (i = 0; i < dwp_htab->nr_columns; ++i)
12594 {
12595 uint32_t offset = read_4_bytes (dbfd,
12596 dwp_htab->section_pool.v2.offsets
12597 + (((unit_index - 1) * dwp_htab->nr_columns
12598 + i)
12599 * sizeof (uint32_t)));
12600 uint32_t size = read_4_bytes (dbfd,
12601 dwp_htab->section_pool.v2.sizes
12602 + (((unit_index - 1) * dwp_htab->nr_columns
12603 + i)
12604 * sizeof (uint32_t)));
12605
12606 switch (dwp_htab->section_pool.v2.section_ids[i])
12607 {
12608 case DW_SECT_INFO:
12609 case DW_SECT_TYPES:
12610 sections.info_or_types_offset = offset;
12611 sections.info_or_types_size = size;
12612 break;
12613 case DW_SECT_ABBREV:
12614 sections.abbrev_offset = offset;
12615 sections.abbrev_size = size;
12616 break;
12617 case DW_SECT_LINE:
12618 sections.line_offset = offset;
12619 sections.line_size = size;
12620 break;
12621 case DW_SECT_LOC:
12622 sections.loc_offset = offset;
12623 sections.loc_size = size;
12624 break;
12625 case DW_SECT_STR_OFFSETS:
12626 sections.str_offsets_offset = offset;
12627 sections.str_offsets_size = size;
12628 break;
12629 case DW_SECT_MACINFO:
12630 sections.macinfo_offset = offset;
12631 sections.macinfo_size = size;
12632 break;
12633 case DW_SECT_MACRO:
12634 sections.macro_offset = offset;
12635 sections.macro_size = size;
12636 break;
12637 }
12638 }
12639
12640 /* It's easier for the rest of the code if we fake a struct dwo_file and
12641 have dwo_unit "live" in that. At least for now.
12642
12643 The DWP file can be made up of a random collection of CUs and TUs.
12644 However, for each CU + set of TUs that came from the same original DWO
12645 file, we can combine them back into a virtual DWO file to save space
12646 (fewer struct dwo_file objects to allocate). Remember that for really
12647 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12648
791afaa2
TT
12649 std::string virtual_dwo_name =
12650 string_printf ("virtual-dwo/%ld-%ld-%ld-%ld",
12651 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
12652 (long) (sections.line_size ? sections.line_offset : 0),
12653 (long) (sections.loc_size ? sections.loc_offset : 0),
12654 (long) (sections.str_offsets_size
12655 ? sections.str_offsets_offset : 0));
73869dc2 12656 /* Can we use an existing virtual DWO file? */
ed2dc618
SM
12657 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12658 virtual_dwo_name.c_str (),
12659 comp_dir);
73869dc2
DE
12660 /* Create one if necessary. */
12661 if (*dwo_file_slot == NULL)
12662 {
b4f54984 12663 if (dwarf_read_debug)
73869dc2
DE
12664 {
12665 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12666 virtual_dwo_name.c_str ());
73869dc2
DE
12667 }
12668 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
224c3ddb
SM
12669 dwo_file->dwo_name
12670 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
791afaa2
TT
12671 virtual_dwo_name.c_str (),
12672 virtual_dwo_name.size ());
73869dc2
DE
12673 dwo_file->comp_dir = comp_dir;
12674 dwo_file->sections.abbrev =
ed2dc618 12675 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.abbrev,
73869dc2
DE
12676 sections.abbrev_offset, sections.abbrev_size);
12677 dwo_file->sections.line =
ed2dc618 12678 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.line,
73869dc2
DE
12679 sections.line_offset, sections.line_size);
12680 dwo_file->sections.loc =
ed2dc618 12681 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.loc,
73869dc2
DE
12682 sections.loc_offset, sections.loc_size);
12683 dwo_file->sections.macinfo =
ed2dc618 12684 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macinfo,
73869dc2
DE
12685 sections.macinfo_offset, sections.macinfo_size);
12686 dwo_file->sections.macro =
ed2dc618 12687 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macro,
73869dc2
DE
12688 sections.macro_offset, sections.macro_size);
12689 dwo_file->sections.str_offsets =
ed2dc618
SM
12690 create_dwp_v2_section (dwarf2_per_objfile,
12691 &dwp_file->sections.str_offsets,
73869dc2
DE
12692 sections.str_offsets_offset,
12693 sections.str_offsets_size);
12694 /* The "str" section is global to the entire DWP file. */
12695 dwo_file->sections.str = dwp_file->sections.str;
12696 /* The info or types section is assigned below to dwo_unit,
12697 there's no need to record it in dwo_file.
12698 Also, we can't simply record type sections in dwo_file because
12699 we record a pointer into the vector in dwo_unit. As we collect more
12700 types we'll grow the vector and eventually have to reallocate space
12701 for it, invalidating all copies of pointers into the previous
12702 contents. */
12703 *dwo_file_slot = dwo_file;
12704 }
12705 else
12706 {
b4f54984 12707 if (dwarf_read_debug)
73869dc2
DE
12708 {
12709 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12710 virtual_dwo_name.c_str ());
73869dc2 12711 }
9a3c8263 12712 dwo_file = (struct dwo_file *) *dwo_file_slot;
73869dc2 12713 }
73869dc2
DE
12714
12715 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12716 dwo_unit->dwo_file = dwo_file;
12717 dwo_unit->signature = signature;
8d749320
SM
12718 dwo_unit->section =
12719 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
ed2dc618
SM
12720 *dwo_unit->section = create_dwp_v2_section (dwarf2_per_objfile,
12721 is_debug_types
73869dc2
DE
12722 ? &dwp_file->sections.types
12723 : &dwp_file->sections.info,
12724 sections.info_or_types_offset,
12725 sections.info_or_types_size);
12726 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12727
12728 return dwo_unit;
12729}
12730
57d63ce2
DE
12731/* Lookup the DWO unit with SIGNATURE in DWP_FILE.
12732 Returns NULL if the signature isn't found. */
80626a55
DE
12733
12734static struct dwo_unit *
ed2dc618
SM
12735lookup_dwo_unit_in_dwp (struct dwarf2_per_objfile *dwarf2_per_objfile,
12736 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 12737 ULONGEST signature, int is_debug_types)
80626a55 12738{
57d63ce2
DE
12739 const struct dwp_hash_table *dwp_htab =
12740 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12741 bfd *dbfd = dwp_file->dbfd.get ();
57d63ce2 12742 uint32_t mask = dwp_htab->nr_slots - 1;
80626a55
DE
12743 uint32_t hash = signature & mask;
12744 uint32_t hash2 = ((signature >> 32) & mask) | 1;
12745 unsigned int i;
12746 void **slot;
870f88f7 12747 struct dwo_unit find_dwo_cu;
80626a55
DE
12748
12749 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
12750 find_dwo_cu.signature = signature;
19ac8c2e
DE
12751 slot = htab_find_slot (is_debug_types
12752 ? dwp_file->loaded_tus
12753 : dwp_file->loaded_cus,
12754 &find_dwo_cu, INSERT);
80626a55
DE
12755
12756 if (*slot != NULL)
9a3c8263 12757 return (struct dwo_unit *) *slot;
80626a55
DE
12758
12759 /* Use a for loop so that we don't loop forever on bad debug info. */
57d63ce2 12760 for (i = 0; i < dwp_htab->nr_slots; ++i)
80626a55
DE
12761 {
12762 ULONGEST signature_in_table;
12763
12764 signature_in_table =
57d63ce2 12765 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
80626a55
DE
12766 if (signature_in_table == signature)
12767 {
57d63ce2
DE
12768 uint32_t unit_index =
12769 read_4_bytes (dbfd,
12770 dwp_htab->unit_table + hash * sizeof (uint32_t));
80626a55 12771
73869dc2
DE
12772 if (dwp_file->version == 1)
12773 {
ed2dc618
SM
12774 *slot = create_dwo_unit_in_dwp_v1 (dwarf2_per_objfile,
12775 dwp_file, unit_index,
73869dc2
DE
12776 comp_dir, signature,
12777 is_debug_types);
12778 }
12779 else
12780 {
ed2dc618
SM
12781 *slot = create_dwo_unit_in_dwp_v2 (dwarf2_per_objfile,
12782 dwp_file, unit_index,
73869dc2
DE
12783 comp_dir, signature,
12784 is_debug_types);
12785 }
9a3c8263 12786 return (struct dwo_unit *) *slot;
80626a55
DE
12787 }
12788 if (signature_in_table == 0)
12789 return NULL;
12790 hash = (hash + hash2) & mask;
12791 }
12792
12793 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
12794 " [in module %s]"),
12795 dwp_file->name);
12796}
12797
ab5088bf 12798/* Subroutine of open_dwo_file,open_dwp_file to simplify them.
3019eac3
DE
12799 Open the file specified by FILE_NAME and hand it off to BFD for
12800 preliminary analysis. Return a newly initialized bfd *, which
12801 includes a canonicalized copy of FILE_NAME.
80626a55 12802 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
6ac97d4c
DE
12803 SEARCH_CWD is true if the current directory is to be searched.
12804 It will be searched before debug-file-directory.
13aaf454
DE
12805 If successful, the file is added to the bfd include table of the
12806 objfile's bfd (see gdb_bfd_record_inclusion).
6ac97d4c 12807 If unable to find/open the file, return NULL.
3019eac3
DE
12808 NOTE: This function is derived from symfile_bfd_open. */
12809
192b62ce 12810static gdb_bfd_ref_ptr
ed2dc618
SM
12811try_open_dwop_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12812 const char *file_name, int is_dwp, int search_cwd)
3019eac3 12813{
24b9144d 12814 int desc;
9c02c129
DE
12815 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
12816 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
12817 to debug_file_directory. */
e0cc99a6 12818 const char *search_path;
9c02c129
DE
12819 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
12820
e0cc99a6 12821 gdb::unique_xmalloc_ptr<char> search_path_holder;
6ac97d4c
DE
12822 if (search_cwd)
12823 {
12824 if (*debug_file_directory != '\0')
e0cc99a6
TT
12825 {
12826 search_path_holder.reset (concat (".", dirname_separator_string,
12827 debug_file_directory,
12828 (char *) NULL));
12829 search_path = search_path_holder.get ();
12830 }
6ac97d4c 12831 else
e0cc99a6 12832 search_path = ".";
6ac97d4c 12833 }
9c02c129 12834 else
e0cc99a6 12835 search_path = debug_file_directory;
3019eac3 12836
24b9144d 12837 openp_flags flags = OPF_RETURN_REALPATH;
80626a55
DE
12838 if (is_dwp)
12839 flags |= OPF_SEARCH_IN_PATH;
e0cc99a6
TT
12840
12841 gdb::unique_xmalloc_ptr<char> absolute_name;
9c02c129 12842 desc = openp (search_path, flags, file_name,
3019eac3
DE
12843 O_RDONLY | O_BINARY, &absolute_name);
12844 if (desc < 0)
12845 return NULL;
12846
e0cc99a6
TT
12847 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (absolute_name.get (),
12848 gnutarget, desc));
9c02c129
DE
12849 if (sym_bfd == NULL)
12850 return NULL;
192b62ce 12851 bfd_set_cacheable (sym_bfd.get (), 1);
3019eac3 12852
192b62ce
TT
12853 if (!bfd_check_format (sym_bfd.get (), bfd_object))
12854 return NULL;
3019eac3 12855
13aaf454
DE
12856 /* Success. Record the bfd as having been included by the objfile's bfd.
12857 This is important because things like demangled_names_hash lives in the
12858 objfile's per_bfd space and may have references to things like symbol
12859 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
192b62ce 12860 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd.get ());
13aaf454 12861
3019eac3
DE
12862 return sym_bfd;
12863}
12864
ab5088bf 12865/* Try to open DWO file FILE_NAME.
3019eac3
DE
12866 COMP_DIR is the DW_AT_comp_dir attribute.
12867 The result is the bfd handle of the file.
12868 If there is a problem finding or opening the file, return NULL.
12869 Upon success, the canonicalized path of the file is stored in the bfd,
12870 same as symfile_bfd_open. */
12871
192b62ce 12872static gdb_bfd_ref_ptr
ed2dc618
SM
12873open_dwo_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12874 const char *file_name, const char *comp_dir)
3019eac3 12875{
80626a55 12876 if (IS_ABSOLUTE_PATH (file_name))
ed2dc618
SM
12877 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12878 0 /*is_dwp*/, 0 /*search_cwd*/);
3019eac3
DE
12879
12880 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
12881
12882 if (comp_dir != NULL)
12883 {
b36cec19
PA
12884 char *path_to_try = concat (comp_dir, SLASH_STRING,
12885 file_name, (char *) NULL);
3019eac3
DE
12886
12887 /* NOTE: If comp_dir is a relative path, this will also try the
12888 search path, which seems useful. */
ed2dc618
SM
12889 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile,
12890 path_to_try,
12891 0 /*is_dwp*/,
192b62ce 12892 1 /*search_cwd*/));
3019eac3
DE
12893 xfree (path_to_try);
12894 if (abfd != NULL)
12895 return abfd;
12896 }
12897
12898 /* That didn't work, try debug-file-directory, which, despite its name,
12899 is a list of paths. */
12900
12901 if (*debug_file_directory == '\0')
12902 return NULL;
12903
ed2dc618
SM
12904 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12905 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
12906}
12907
80626a55
DE
12908/* This function is mapped across the sections and remembers the offset and
12909 size of each of the DWO debugging sections we are interested in. */
12910
12911static void
12912dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
12913{
9a3c8263 12914 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
80626a55
DE
12915 const struct dwop_section_names *names = &dwop_section_names;
12916
12917 if (section_is_p (sectp->name, &names->abbrev_dwo))
12918 {
049412e3 12919 dwo_sections->abbrev.s.section = sectp;
80626a55
DE
12920 dwo_sections->abbrev.size = bfd_get_section_size (sectp);
12921 }
12922 else if (section_is_p (sectp->name, &names->info_dwo))
12923 {
049412e3 12924 dwo_sections->info.s.section = sectp;
80626a55
DE
12925 dwo_sections->info.size = bfd_get_section_size (sectp);
12926 }
12927 else if (section_is_p (sectp->name, &names->line_dwo))
12928 {
049412e3 12929 dwo_sections->line.s.section = sectp;
80626a55
DE
12930 dwo_sections->line.size = bfd_get_section_size (sectp);
12931 }
12932 else if (section_is_p (sectp->name, &names->loc_dwo))
12933 {
049412e3 12934 dwo_sections->loc.s.section = sectp;
80626a55
DE
12935 dwo_sections->loc.size = bfd_get_section_size (sectp);
12936 }
12937 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12938 {
049412e3 12939 dwo_sections->macinfo.s.section = sectp;
80626a55
DE
12940 dwo_sections->macinfo.size = bfd_get_section_size (sectp);
12941 }
12942 else if (section_is_p (sectp->name, &names->macro_dwo))
12943 {
049412e3 12944 dwo_sections->macro.s.section = sectp;
80626a55
DE
12945 dwo_sections->macro.size = bfd_get_section_size (sectp);
12946 }
12947 else if (section_is_p (sectp->name, &names->str_dwo))
12948 {
049412e3 12949 dwo_sections->str.s.section = sectp;
80626a55
DE
12950 dwo_sections->str.size = bfd_get_section_size (sectp);
12951 }
12952 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12953 {
049412e3 12954 dwo_sections->str_offsets.s.section = sectp;
80626a55
DE
12955 dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
12956 }
12957 else if (section_is_p (sectp->name, &names->types_dwo))
12958 {
12959 struct dwarf2_section_info type_section;
12960
12961 memset (&type_section, 0, sizeof (type_section));
049412e3 12962 type_section.s.section = sectp;
80626a55
DE
12963 type_section.size = bfd_get_section_size (sectp);
12964 VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
12965 &type_section);
12966 }
12967}
12968
ab5088bf 12969/* Initialize the use of the DWO file specified by DWO_NAME and referenced
19c3d4c9 12970 by PER_CU. This is for the non-DWP case.
80626a55 12971 The result is NULL if DWO_NAME can't be found. */
3019eac3
DE
12972
12973static struct dwo_file *
0ac5b59e
DE
12974open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
12975 const char *dwo_name, const char *comp_dir)
3019eac3 12976{
ed2dc618 12977 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
3019eac3 12978 struct objfile *objfile = dwarf2_per_objfile->objfile;
3019eac3 12979
ed2dc618 12980 gdb_bfd_ref_ptr dbfd (open_dwo_file (dwarf2_per_objfile, dwo_name, comp_dir));
80626a55
DE
12981 if (dbfd == NULL)
12982 {
b4f54984 12983 if (dwarf_read_debug)
80626a55
DE
12984 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
12985 return NULL;
12986 }
263db9a1
TT
12987
12988 /* We use a unique pointer here, despite the obstack allocation,
12989 because a dwo_file needs some cleanup if it is abandoned. */
12990 dwo_file_up dwo_file (OBSTACK_ZALLOC (&objfile->objfile_obstack,
12991 struct dwo_file));
0ac5b59e
DE
12992 dwo_file->dwo_name = dwo_name;
12993 dwo_file->comp_dir = comp_dir;
192b62ce 12994 dwo_file->dbfd = dbfd.release ();
3019eac3 12995
192b62ce
TT
12996 bfd_map_over_sections (dwo_file->dbfd, dwarf2_locate_dwo_sections,
12997 &dwo_file->sections);
3019eac3 12998
ed2dc618
SM
12999 create_cus_hash_table (dwarf2_per_objfile, *dwo_file, dwo_file->sections.info,
13000 dwo_file->cus);
3019eac3 13001
263db9a1 13002 create_debug_types_hash_table (dwarf2_per_objfile, dwo_file.get (),
ed2dc618 13003 dwo_file->sections.types, dwo_file->tus);
3019eac3 13004
b4f54984 13005 if (dwarf_read_debug)
80626a55
DE
13006 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
13007
263db9a1 13008 return dwo_file.release ();
3019eac3
DE
13009}
13010
80626a55 13011/* This function is mapped across the sections and remembers the offset and
73869dc2
DE
13012 size of each of the DWP debugging sections common to version 1 and 2 that
13013 we are interested in. */
3019eac3 13014
80626a55 13015static void
73869dc2
DE
13016dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
13017 void *dwp_file_ptr)
3019eac3 13018{
9a3c8263 13019 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
80626a55
DE
13020 const struct dwop_section_names *names = &dwop_section_names;
13021 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
3019eac3 13022
80626a55 13023 /* Record the ELF section number for later lookup: this is what the
73869dc2 13024 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
80626a55
DE
13025 gdb_assert (elf_section_nr < dwp_file->num_sections);
13026 dwp_file->elf_sections[elf_section_nr] = sectp;
3019eac3 13027
80626a55
DE
13028 /* Look for specific sections that we need. */
13029 if (section_is_p (sectp->name, &names->str_dwo))
13030 {
049412e3 13031 dwp_file->sections.str.s.section = sectp;
80626a55
DE
13032 dwp_file->sections.str.size = bfd_get_section_size (sectp);
13033 }
13034 else if (section_is_p (sectp->name, &names->cu_index))
13035 {
049412e3 13036 dwp_file->sections.cu_index.s.section = sectp;
80626a55
DE
13037 dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
13038 }
13039 else if (section_is_p (sectp->name, &names->tu_index))
13040 {
049412e3 13041 dwp_file->sections.tu_index.s.section = sectp;
80626a55
DE
13042 dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
13043 }
13044}
3019eac3 13045
73869dc2
DE
13046/* This function is mapped across the sections and remembers the offset and
13047 size of each of the DWP version 2 debugging sections that we are interested
13048 in. This is split into a separate function because we don't know if we
13049 have version 1 or 2 until we parse the cu_index/tu_index sections. */
13050
13051static void
13052dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
13053{
9a3c8263 13054 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
73869dc2
DE
13055 const struct dwop_section_names *names = &dwop_section_names;
13056 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
13057
13058 /* Record the ELF section number for later lookup: this is what the
13059 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
13060 gdb_assert (elf_section_nr < dwp_file->num_sections);
13061 dwp_file->elf_sections[elf_section_nr] = sectp;
13062
13063 /* Look for specific sections that we need. */
13064 if (section_is_p (sectp->name, &names->abbrev_dwo))
13065 {
049412e3 13066 dwp_file->sections.abbrev.s.section = sectp;
73869dc2
DE
13067 dwp_file->sections.abbrev.size = bfd_get_section_size (sectp);
13068 }
13069 else if (section_is_p (sectp->name, &names->info_dwo))
13070 {
049412e3 13071 dwp_file->sections.info.s.section = sectp;
73869dc2
DE
13072 dwp_file->sections.info.size = bfd_get_section_size (sectp);
13073 }
13074 else if (section_is_p (sectp->name, &names->line_dwo))
13075 {
049412e3 13076 dwp_file->sections.line.s.section = sectp;
73869dc2
DE
13077 dwp_file->sections.line.size = bfd_get_section_size (sectp);
13078 }
13079 else if (section_is_p (sectp->name, &names->loc_dwo))
13080 {
049412e3 13081 dwp_file->sections.loc.s.section = sectp;
73869dc2
DE
13082 dwp_file->sections.loc.size = bfd_get_section_size (sectp);
13083 }
13084 else if (section_is_p (sectp->name, &names->macinfo_dwo))
13085 {
049412e3 13086 dwp_file->sections.macinfo.s.section = sectp;
73869dc2
DE
13087 dwp_file->sections.macinfo.size = bfd_get_section_size (sectp);
13088 }
13089 else if (section_is_p (sectp->name, &names->macro_dwo))
13090 {
049412e3 13091 dwp_file->sections.macro.s.section = sectp;
73869dc2
DE
13092 dwp_file->sections.macro.size = bfd_get_section_size (sectp);
13093 }
13094 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
13095 {
049412e3 13096 dwp_file->sections.str_offsets.s.section = sectp;
73869dc2
DE
13097 dwp_file->sections.str_offsets.size = bfd_get_section_size (sectp);
13098 }
13099 else if (section_is_p (sectp->name, &names->types_dwo))
13100 {
049412e3 13101 dwp_file->sections.types.s.section = sectp;
73869dc2
DE
13102 dwp_file->sections.types.size = bfd_get_section_size (sectp);
13103 }
13104}
13105
80626a55 13106/* Hash function for dwp_file loaded CUs/TUs. */
3019eac3 13107
80626a55
DE
13108static hashval_t
13109hash_dwp_loaded_cutus (const void *item)
13110{
9a3c8263 13111 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3 13112
80626a55
DE
13113 /* This drops the top 32 bits of the signature, but is ok for a hash. */
13114 return dwo_unit->signature;
3019eac3
DE
13115}
13116
80626a55 13117/* Equality function for dwp_file loaded CUs/TUs. */
3019eac3 13118
80626a55
DE
13119static int
13120eq_dwp_loaded_cutus (const void *a, const void *b)
3019eac3 13121{
9a3c8263
SM
13122 const struct dwo_unit *dua = (const struct dwo_unit *) a;
13123 const struct dwo_unit *dub = (const struct dwo_unit *) b;
3019eac3 13124
80626a55
DE
13125 return dua->signature == dub->signature;
13126}
3019eac3 13127
80626a55 13128/* Allocate a hash table for dwp_file loaded CUs/TUs. */
3019eac3 13129
80626a55
DE
13130static htab_t
13131allocate_dwp_loaded_cutus_table (struct objfile *objfile)
13132{
13133 return htab_create_alloc_ex (3,
13134 hash_dwp_loaded_cutus,
13135 eq_dwp_loaded_cutus,
13136 NULL,
13137 &objfile->objfile_obstack,
13138 hashtab_obstack_allocate,
13139 dummy_obstack_deallocate);
13140}
3019eac3 13141
ab5088bf
DE
13142/* Try to open DWP file FILE_NAME.
13143 The result is the bfd handle of the file.
13144 If there is a problem finding or opening the file, return NULL.
13145 Upon success, the canonicalized path of the file is stored in the bfd,
13146 same as symfile_bfd_open. */
13147
192b62ce 13148static gdb_bfd_ref_ptr
ed2dc618
SM
13149open_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
13150 const char *file_name)
ab5088bf 13151{
ed2dc618
SM
13152 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile, file_name,
13153 1 /*is_dwp*/,
192b62ce 13154 1 /*search_cwd*/));
6ac97d4c
DE
13155 if (abfd != NULL)
13156 return abfd;
13157
13158 /* Work around upstream bug 15652.
13159 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
13160 [Whether that's a "bug" is debatable, but it is getting in our way.]
13161 We have no real idea where the dwp file is, because gdb's realpath-ing
13162 of the executable's path may have discarded the needed info.
13163 [IWBN if the dwp file name was recorded in the executable, akin to
13164 .gnu_debuglink, but that doesn't exist yet.]
13165 Strip the directory from FILE_NAME and search again. */
13166 if (*debug_file_directory != '\0')
13167 {
13168 /* Don't implicitly search the current directory here.
13169 If the user wants to search "." to handle this case,
13170 it must be added to debug-file-directory. */
ed2dc618
SM
13171 return try_open_dwop_file (dwarf2_per_objfile,
13172 lbasename (file_name), 1 /*is_dwp*/,
6ac97d4c
DE
13173 0 /*search_cwd*/);
13174 }
13175
13176 return NULL;
ab5088bf
DE
13177}
13178
80626a55
DE
13179/* Initialize the use of the DWP file for the current objfile.
13180 By convention the name of the DWP file is ${objfile}.dwp.
13181 The result is NULL if it can't be found. */
a766d390 13182
400174b1 13183static std::unique_ptr<struct dwp_file>
ed2dc618 13184open_and_init_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
80626a55
DE
13185{
13186 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55 13187
82bf32bc
JK
13188 /* Try to find first .dwp for the binary file before any symbolic links
13189 resolving. */
6c447423
DE
13190
13191 /* If the objfile is a debug file, find the name of the real binary
13192 file and get the name of dwp file from there. */
d721ba37 13193 std::string dwp_name;
6c447423
DE
13194 if (objfile->separate_debug_objfile_backlink != NULL)
13195 {
13196 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
13197 const char *backlink_basename = lbasename (backlink->original_name);
6c447423 13198
d721ba37 13199 dwp_name = ldirname (objfile->original_name) + SLASH_STRING + backlink_basename;
6c447423
DE
13200 }
13201 else
d721ba37
PA
13202 dwp_name = objfile->original_name;
13203
13204 dwp_name += ".dwp";
80626a55 13205
ed2dc618 13206 gdb_bfd_ref_ptr dbfd (open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ()));
82bf32bc
JK
13207 if (dbfd == NULL
13208 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
13209 {
13210 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
d721ba37
PA
13211 dwp_name = objfile_name (objfile);
13212 dwp_name += ".dwp";
ed2dc618 13213 dbfd = open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ());
82bf32bc
JK
13214 }
13215
80626a55
DE
13216 if (dbfd == NULL)
13217 {
b4f54984 13218 if (dwarf_read_debug)
d721ba37 13219 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name.c_str ());
400174b1 13220 return std::unique_ptr<dwp_file> ();
3019eac3 13221 }
400174b1
TT
13222
13223 const char *name = bfd_get_filename (dbfd.get ());
13224 std::unique_ptr<struct dwp_file> dwp_file
13225 (new struct dwp_file (name, std::move (dbfd)));
c906108c 13226
0a0f4c01 13227 dwp_file->num_sections = elf_numsections (dwp_file->dbfd);
80626a55
DE
13228 dwp_file->elf_sections =
13229 OBSTACK_CALLOC (&objfile->objfile_obstack,
13230 dwp_file->num_sections, asection *);
13231
400174b1
TT
13232 bfd_map_over_sections (dwp_file->dbfd.get (),
13233 dwarf2_locate_common_dwp_sections,
13234 dwp_file.get ());
80626a55 13235
400174b1
TT
13236 dwp_file->cus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
13237 0);
80626a55 13238
400174b1
TT
13239 dwp_file->tus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file.get (),
13240 1);
80626a55 13241
73869dc2 13242 /* The DWP file version is stored in the hash table. Oh well. */
08302ed2
DE
13243 if (dwp_file->cus && dwp_file->tus
13244 && dwp_file->cus->version != dwp_file->tus->version)
73869dc2
DE
13245 {
13246 /* Technically speaking, we should try to limp along, but this is
fbcbc3fd 13247 pretty bizarre. We use pulongest here because that's the established
4d65956b 13248 portability solution (e.g, we cannot use %u for uint32_t). */
fbcbc3fd
DE
13249 error (_("Dwarf Error: DWP file CU version %s doesn't match"
13250 " TU version %s [in DWP file %s]"),
13251 pulongest (dwp_file->cus->version),
d721ba37 13252 pulongest (dwp_file->tus->version), dwp_name.c_str ());
73869dc2 13253 }
08302ed2
DE
13254
13255 if (dwp_file->cus)
13256 dwp_file->version = dwp_file->cus->version;
13257 else if (dwp_file->tus)
13258 dwp_file->version = dwp_file->tus->version;
13259 else
13260 dwp_file->version = 2;
73869dc2
DE
13261
13262 if (dwp_file->version == 2)
400174b1
TT
13263 bfd_map_over_sections (dwp_file->dbfd.get (),
13264 dwarf2_locate_v2_dwp_sections,
13265 dwp_file.get ());
73869dc2 13266
19ac8c2e
DE
13267 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table (objfile);
13268 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table (objfile);
80626a55 13269
b4f54984 13270 if (dwarf_read_debug)
80626a55
DE
13271 {
13272 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
13273 fprintf_unfiltered (gdb_stdlog,
21aa081e
PA
13274 " %s CUs, %s TUs\n",
13275 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
13276 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
80626a55
DE
13277 }
13278
13279 return dwp_file;
3019eac3 13280}
c906108c 13281
ab5088bf
DE
13282/* Wrapper around open_and_init_dwp_file, only open it once. */
13283
13284static struct dwp_file *
ed2dc618 13285get_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
ab5088bf
DE
13286{
13287 if (! dwarf2_per_objfile->dwp_checked)
13288 {
ed2dc618
SM
13289 dwarf2_per_objfile->dwp_file
13290 = open_and_init_dwp_file (dwarf2_per_objfile);
ab5088bf
DE
13291 dwarf2_per_objfile->dwp_checked = 1;
13292 }
400174b1 13293 return dwarf2_per_objfile->dwp_file.get ();
ab5088bf
DE
13294}
13295
80626a55
DE
13296/* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
13297 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
13298 or in the DWP file for the objfile, referenced by THIS_UNIT.
3019eac3 13299 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
80626a55
DE
13300 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
13301
13302 This is called, for example, when wanting to read a variable with a
13303 complex location. Therefore we don't want to do file i/o for every call.
13304 Therefore we don't want to look for a DWO file on every call.
13305 Therefore we first see if we've already seen SIGNATURE in a DWP file,
13306 then we check if we've already seen DWO_NAME, and only THEN do we check
13307 for a DWO file.
13308
1c658ad5 13309 The result is a pointer to the dwo_unit object or NULL if we didn't find it
80626a55 13310 (dwo_id mismatch or couldn't find the DWO/DWP file). */
debd256d 13311
3019eac3 13312static struct dwo_unit *
80626a55
DE
13313lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
13314 const char *dwo_name, const char *comp_dir,
13315 ULONGEST signature, int is_debug_types)
3019eac3 13316{
ed2dc618 13317 struct dwarf2_per_objfile *dwarf2_per_objfile = this_unit->dwarf2_per_objfile;
3019eac3 13318 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55
DE
13319 const char *kind = is_debug_types ? "TU" : "CU";
13320 void **dwo_file_slot;
3019eac3 13321 struct dwo_file *dwo_file;
80626a55 13322 struct dwp_file *dwp_file;
cb1df416 13323
6a506a2d
DE
13324 /* First see if there's a DWP file.
13325 If we have a DWP file but didn't find the DWO inside it, don't
13326 look for the original DWO file. It makes gdb behave differently
13327 depending on whether one is debugging in the build tree. */
cf2c3c16 13328
ed2dc618 13329 dwp_file = get_dwp_file (dwarf2_per_objfile);
80626a55 13330 if (dwp_file != NULL)
cf2c3c16 13331 {
80626a55
DE
13332 const struct dwp_hash_table *dwp_htab =
13333 is_debug_types ? dwp_file->tus : dwp_file->cus;
13334
13335 if (dwp_htab != NULL)
13336 {
13337 struct dwo_unit *dwo_cutu =
ed2dc618 13338 lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, comp_dir,
57d63ce2 13339 signature, is_debug_types);
80626a55
DE
13340
13341 if (dwo_cutu != NULL)
13342 {
b4f54984 13343 if (dwarf_read_debug)
80626a55
DE
13344 {
13345 fprintf_unfiltered (gdb_stdlog,
13346 "Virtual DWO %s %s found: @%s\n",
13347 kind, hex_string (signature),
13348 host_address_to_string (dwo_cutu));
13349 }
13350 return dwo_cutu;
13351 }
13352 }
13353 }
6a506a2d 13354 else
80626a55 13355 {
6a506a2d 13356 /* No DWP file, look for the DWO file. */
80626a55 13357
ed2dc618
SM
13358 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
13359 dwo_name, comp_dir);
6a506a2d 13360 if (*dwo_file_slot == NULL)
80626a55 13361 {
6a506a2d
DE
13362 /* Read in the file and build a table of the CUs/TUs it contains. */
13363 *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
19c3d4c9 13364 }
6a506a2d 13365 /* NOTE: This will be NULL if unable to open the file. */
9a3c8263 13366 dwo_file = (struct dwo_file *) *dwo_file_slot;
3019eac3 13367
6a506a2d 13368 if (dwo_file != NULL)
19c3d4c9 13369 {
6a506a2d
DE
13370 struct dwo_unit *dwo_cutu = NULL;
13371
13372 if (is_debug_types && dwo_file->tus)
13373 {
13374 struct dwo_unit find_dwo_cutu;
13375
13376 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13377 find_dwo_cutu.signature = signature;
9a3c8263
SM
13378 dwo_cutu
13379 = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_cutu);
6a506a2d 13380 }
33c5cd75 13381 else if (!is_debug_types && dwo_file->cus)
80626a55 13382 {
33c5cd75
DB
13383 struct dwo_unit find_dwo_cutu;
13384
13385 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13386 find_dwo_cutu.signature = signature;
13387 dwo_cutu = (struct dwo_unit *)htab_find (dwo_file->cus,
13388 &find_dwo_cutu);
6a506a2d
DE
13389 }
13390
13391 if (dwo_cutu != NULL)
13392 {
b4f54984 13393 if (dwarf_read_debug)
6a506a2d
DE
13394 {
13395 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
13396 kind, dwo_name, hex_string (signature),
13397 host_address_to_string (dwo_cutu));
13398 }
13399 return dwo_cutu;
80626a55
DE
13400 }
13401 }
2e276125 13402 }
9cdd5dbd 13403
80626a55
DE
13404 /* We didn't find it. This could mean a dwo_id mismatch, or
13405 someone deleted the DWO/DWP file, or the search path isn't set up
13406 correctly to find the file. */
13407
b4f54984 13408 if (dwarf_read_debug)
80626a55
DE
13409 {
13410 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
13411 kind, dwo_name, hex_string (signature));
13412 }
3019eac3 13413
6656a72d
DE
13414 /* This is a warning and not a complaint because it can be caused by
13415 pilot error (e.g., user accidentally deleting the DWO). */
43942612
DE
13416 {
13417 /* Print the name of the DWP file if we looked there, helps the user
13418 better diagnose the problem. */
791afaa2 13419 std::string dwp_text;
43942612
DE
13420
13421 if (dwp_file != NULL)
791afaa2
TT
13422 dwp_text = string_printf (" [in DWP file %s]",
13423 lbasename (dwp_file->name));
43942612 13424
9d8780f0 13425 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset %s"
43942612
DE
13426 " [in module %s]"),
13427 kind, dwo_name, hex_string (signature),
791afaa2 13428 dwp_text.c_str (),
43942612 13429 this_unit->is_debug_types ? "TU" : "CU",
9d8780f0 13430 sect_offset_str (this_unit->sect_off), objfile_name (objfile));
43942612 13431 }
3019eac3 13432 return NULL;
5fb290d7
DJ
13433}
13434
80626a55
DE
13435/* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
13436 See lookup_dwo_cutu_unit for details. */
13437
13438static struct dwo_unit *
13439lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
13440 const char *dwo_name, const char *comp_dir,
13441 ULONGEST signature)
13442{
13443 return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
13444}
13445
13446/* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
13447 See lookup_dwo_cutu_unit for details. */
13448
13449static struct dwo_unit *
13450lookup_dwo_type_unit (struct signatured_type *this_tu,
13451 const char *dwo_name, const char *comp_dir)
13452{
13453 return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
13454}
13455
89e63ee4
DE
13456/* Traversal function for queue_and_load_all_dwo_tus. */
13457
13458static int
13459queue_and_load_dwo_tu (void **slot, void *info)
13460{
13461 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
13462 struct dwarf2_per_cu_data *per_cu = (struct dwarf2_per_cu_data *) info;
13463 ULONGEST signature = dwo_unit->signature;
13464 struct signatured_type *sig_type =
13465 lookup_dwo_signatured_type (per_cu->cu, signature);
13466
13467 if (sig_type != NULL)
13468 {
13469 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
13470
13471 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
13472 a real dependency of PER_CU on SIG_TYPE. That is detected later
13473 while processing PER_CU. */
13474 if (maybe_queue_comp_unit (NULL, sig_cu, per_cu->cu->language))
13475 load_full_type_unit (sig_cu);
13476 VEC_safe_push (dwarf2_per_cu_ptr, per_cu->imported_symtabs, sig_cu);
13477 }
13478
13479 return 1;
13480}
13481
13482/* Queue all TUs contained in the DWO of PER_CU to be read in.
13483 The DWO may have the only definition of the type, though it may not be
13484 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
13485 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
13486
13487static void
13488queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
13489{
13490 struct dwo_unit *dwo_unit;
13491 struct dwo_file *dwo_file;
13492
13493 gdb_assert (!per_cu->is_debug_types);
ed2dc618 13494 gdb_assert (get_dwp_file (per_cu->dwarf2_per_objfile) == NULL);
89e63ee4
DE
13495 gdb_assert (per_cu->cu != NULL);
13496
13497 dwo_unit = per_cu->cu->dwo_unit;
13498 gdb_assert (dwo_unit != NULL);
13499
13500 dwo_file = dwo_unit->dwo_file;
13501 if (dwo_file->tus != NULL)
13502 htab_traverse_noresize (dwo_file->tus, queue_and_load_dwo_tu, per_cu);
13503}
13504
3019eac3 13505/* Free all resources associated with DWO_FILE.
5dafb3d1 13506 Close the DWO file and munmap the sections. */
348e048f
DE
13507
13508static void
5dafb3d1 13509free_dwo_file (struct dwo_file *dwo_file)
348e048f 13510{
5c6fa7ab 13511 /* Note: dbfd is NULL for virtual DWO files. */
80626a55 13512 gdb_bfd_unref (dwo_file->dbfd);
348e048f 13513
3019eac3
DE
13514 VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
13515}
348e048f 13516
3019eac3 13517/* Traversal function for free_dwo_files. */
2ab95328 13518
3019eac3
DE
13519static int
13520free_dwo_file_from_slot (void **slot, void *info)
13521{
13522 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
348e048f 13523
5dafb3d1 13524 free_dwo_file (dwo_file);
348e048f 13525
3019eac3
DE
13526 return 1;
13527}
348e048f 13528
3019eac3 13529/* Free all resources associated with DWO_FILES. */
348e048f 13530
3019eac3
DE
13531static void
13532free_dwo_files (htab_t dwo_files, struct objfile *objfile)
13533{
13534 htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
348e048f 13535}
3019eac3
DE
13536\f
13537/* Read in various DIEs. */
348e048f 13538
d389af10 13539/* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3e43a32a
MS
13540 Inherit only the children of the DW_AT_abstract_origin DIE not being
13541 already referenced by DW_AT_abstract_origin from the children of the
13542 current DIE. */
d389af10
JK
13543
13544static void
13545inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
13546{
13547 struct die_info *child_die;
791afaa2 13548 sect_offset *offsetp;
d389af10
JK
13549 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
13550 struct die_info *origin_die;
13551 /* Iterator of the ORIGIN_DIE children. */
13552 struct die_info *origin_child_die;
d389af10 13553 struct attribute *attr;
cd02d79d
PA
13554 struct dwarf2_cu *origin_cu;
13555 struct pending **origin_previous_list_in_scope;
d389af10
JK
13556
13557 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13558 if (!attr)
13559 return;
13560
cd02d79d
PA
13561 /* Note that following die references may follow to a die in a
13562 different cu. */
13563
13564 origin_cu = cu;
13565 origin_die = follow_die_ref (die, attr, &origin_cu);
13566
13567 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
13568 symbols in. */
13569 origin_previous_list_in_scope = origin_cu->list_in_scope;
13570 origin_cu->list_in_scope = cu->list_in_scope;
13571
edb3359d
DJ
13572 if (die->tag != origin_die->tag
13573 && !(die->tag == DW_TAG_inlined_subroutine
13574 && origin_die->tag == DW_TAG_subprogram))
b98664d3 13575 complaint (_("DIE %s and its abstract origin %s have different tags"),
9d8780f0
SM
13576 sect_offset_str (die->sect_off),
13577 sect_offset_str (origin_die->sect_off));
d389af10 13578
791afaa2 13579 std::vector<sect_offset> offsets;
d389af10 13580
3ea89b92
PMR
13581 for (child_die = die->child;
13582 child_die && child_die->tag;
13583 child_die = sibling_die (child_die))
13584 {
13585 struct die_info *child_origin_die;
13586 struct dwarf2_cu *child_origin_cu;
13587
13588 /* We are trying to process concrete instance entries:
216f72a1 13589 DW_TAG_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
3ea89b92
PMR
13590 it's not relevant to our analysis here. i.e. detecting DIEs that are
13591 present in the abstract instance but not referenced in the concrete
13592 one. */
216f72a1
JK
13593 if (child_die->tag == DW_TAG_call_site
13594 || child_die->tag == DW_TAG_GNU_call_site)
3ea89b92
PMR
13595 continue;
13596
c38f313d
DJ
13597 /* For each CHILD_DIE, find the corresponding child of
13598 ORIGIN_DIE. If there is more than one layer of
13599 DW_AT_abstract_origin, follow them all; there shouldn't be,
13600 but GCC versions at least through 4.4 generate this (GCC PR
13601 40573). */
3ea89b92
PMR
13602 child_origin_die = child_die;
13603 child_origin_cu = cu;
c38f313d
DJ
13604 while (1)
13605 {
cd02d79d
PA
13606 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
13607 child_origin_cu);
c38f313d
DJ
13608 if (attr == NULL)
13609 break;
cd02d79d
PA
13610 child_origin_die = follow_die_ref (child_origin_die, attr,
13611 &child_origin_cu);
c38f313d
DJ
13612 }
13613
d389af10
JK
13614 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
13615 counterpart may exist. */
c38f313d 13616 if (child_origin_die != child_die)
d389af10 13617 {
edb3359d
DJ
13618 if (child_die->tag != child_origin_die->tag
13619 && !(child_die->tag == DW_TAG_inlined_subroutine
13620 && child_origin_die->tag == DW_TAG_subprogram))
b98664d3 13621 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13622 "different tags"),
9d8780f0
SM
13623 sect_offset_str (child_die->sect_off),
13624 sect_offset_str (child_origin_die->sect_off));
c38f313d 13625 if (child_origin_die->parent != origin_die)
b98664d3 13626 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13627 "different parents"),
9d8780f0
SM
13628 sect_offset_str (child_die->sect_off),
13629 sect_offset_str (child_origin_die->sect_off));
c38f313d 13630 else
791afaa2 13631 offsets.push_back (child_origin_die->sect_off);
d389af10 13632 }
d389af10 13633 }
791afaa2
TT
13634 std::sort (offsets.begin (), offsets.end ());
13635 sect_offset *offsets_end = offsets.data () + offsets.size ();
13636 for (offsetp = offsets.data () + 1; offsetp < offsets_end; offsetp++)
9c541725 13637 if (offsetp[-1] == *offsetp)
b98664d3 13638 complaint (_("Multiple children of DIE %s refer "
9d8780f0
SM
13639 "to DIE %s as their abstract origin"),
13640 sect_offset_str (die->sect_off), sect_offset_str (*offsetp));
d389af10 13641
791afaa2 13642 offsetp = offsets.data ();
d389af10
JK
13643 origin_child_die = origin_die->child;
13644 while (origin_child_die && origin_child_die->tag)
13645 {
13646 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
b64f50a1 13647 while (offsetp < offsets_end
9c541725 13648 && *offsetp < origin_child_die->sect_off)
d389af10 13649 offsetp++;
b64f50a1 13650 if (offsetp >= offsets_end
9c541725 13651 || *offsetp > origin_child_die->sect_off)
d389af10 13652 {
adde2bff
DE
13653 /* Found that ORIGIN_CHILD_DIE is really not referenced.
13654 Check whether we're already processing ORIGIN_CHILD_DIE.
13655 This can happen with mutually referenced abstract_origins.
13656 PR 16581. */
13657 if (!origin_child_die->in_process)
13658 process_die (origin_child_die, origin_cu);
d389af10
JK
13659 }
13660 origin_child_die = sibling_die (origin_child_die);
13661 }
cd02d79d 13662 origin_cu->list_in_scope = origin_previous_list_in_scope;
d389af10
JK
13663}
13664
c906108c 13665static void
e7c27a73 13666read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13667{
518817b3 13668 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 13669 struct gdbarch *gdbarch = get_objfile_arch (objfile);
fe978cb0 13670 struct context_stack *newobj;
c906108c
SS
13671 CORE_ADDR lowpc;
13672 CORE_ADDR highpc;
13673 struct die_info *child_die;
edb3359d 13674 struct attribute *attr, *call_line, *call_file;
15d034d0 13675 const char *name;
e142c38c 13676 CORE_ADDR baseaddr;
801e3a5b 13677 struct block *block;
edb3359d 13678 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
2f4732b0 13679 std::vector<struct symbol *> template_args;
34eaf542 13680 struct template_symbol *templ_func = NULL;
edb3359d
DJ
13681
13682 if (inlined_func)
13683 {
13684 /* If we do not have call site information, we can't show the
13685 caller of this inlined function. That's too confusing, so
13686 only use the scope for local variables. */
13687 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
13688 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
13689 if (call_line == NULL || call_file == NULL)
13690 {
13691 read_lexical_block_scope (die, cu);
13692 return;
13693 }
13694 }
c906108c 13695
e142c38c
DJ
13696 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13697
94af9270 13698 name = dwarf2_name (die, cu);
c906108c 13699
e8d05480
JB
13700 /* Ignore functions with missing or empty names. These are actually
13701 illegal according to the DWARF standard. */
13702 if (name == NULL)
13703 {
b98664d3 13704 complaint (_("missing name for subprogram DIE at %s"),
9d8780f0 13705 sect_offset_str (die->sect_off));
e8d05480
JB
13706 return;
13707 }
13708
13709 /* Ignore functions with missing or invalid low and high pc attributes. */
3a2b436a 13710 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
e385593e 13711 <= PC_BOUNDS_INVALID)
e8d05480 13712 {
ae4d0c03
PM
13713 attr = dwarf2_attr (die, DW_AT_external, cu);
13714 if (!attr || !DW_UNSND (attr))
b98664d3 13715 complaint (_("cannot get low and high bounds "
9d8780f0
SM
13716 "for subprogram DIE at %s"),
13717 sect_offset_str (die->sect_off));
e8d05480
JB
13718 return;
13719 }
c906108c 13720
3e29f34a
MR
13721 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13722 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13723
34eaf542
TT
13724 /* If we have any template arguments, then we must allocate a
13725 different sort of symbol. */
13726 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
13727 {
13728 if (child_die->tag == DW_TAG_template_type_param
13729 || child_die->tag == DW_TAG_template_value_param)
13730 {
e623cf5d 13731 templ_func = allocate_template_symbol (objfile);
cf724bc9 13732 templ_func->subclass = SYMBOL_TEMPLATE;
34eaf542
TT
13733 break;
13734 }
13735 }
13736
c24bdb02 13737 newobj = cu->get_builder ()->push_context (0, lowpc);
5e2db402
TT
13738 newobj->name = new_symbol (die, read_type_die (die, cu), cu,
13739 (struct symbol *) templ_func);
4c2df51b 13740
4cecd739
DJ
13741 /* If there is a location expression for DW_AT_frame_base, record
13742 it. */
e142c38c 13743 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
4c2df51b 13744 if (attr)
fe978cb0 13745 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
4c2df51b 13746
63e43d3a
PMR
13747 /* If there is a location for the static link, record it. */
13748 newobj->static_link = NULL;
13749 attr = dwarf2_attr (die, DW_AT_static_link, cu);
13750 if (attr)
13751 {
224c3ddb
SM
13752 newobj->static_link
13753 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
63e43d3a
PMR
13754 attr_to_dynamic_prop (attr, die, cu, newobj->static_link);
13755 }
13756
c24bdb02 13757 cu->list_in_scope = cu->get_builder ()->get_local_symbols ();
c906108c 13758
639d11d3 13759 if (die->child != NULL)
c906108c 13760 {
639d11d3 13761 child_die = die->child;
c906108c
SS
13762 while (child_die && child_die->tag)
13763 {
34eaf542
TT
13764 if (child_die->tag == DW_TAG_template_type_param
13765 || child_die->tag == DW_TAG_template_value_param)
13766 {
13767 struct symbol *arg = new_symbol (child_die, NULL, cu);
13768
f1078f66 13769 if (arg != NULL)
2f4732b0 13770 template_args.push_back (arg);
34eaf542
TT
13771 }
13772 else
13773 process_die (child_die, cu);
c906108c
SS
13774 child_die = sibling_die (child_die);
13775 }
13776 }
13777
d389af10
JK
13778 inherit_abstract_dies (die, cu);
13779
4a811a97
UW
13780 /* If we have a DW_AT_specification, we might need to import using
13781 directives from the context of the specification DIE. See the
13782 comment in determine_prefix. */
13783 if (cu->language == language_cplus
13784 && dwarf2_attr (die, DW_AT_specification, cu))
13785 {
13786 struct dwarf2_cu *spec_cu = cu;
13787 struct die_info *spec_die = die_specification (die, &spec_cu);
13788
13789 while (spec_die)
13790 {
13791 child_die = spec_die->child;
13792 while (child_die && child_die->tag)
13793 {
13794 if (child_die->tag == DW_TAG_imported_module)
13795 process_die (child_die, spec_cu);
13796 child_die = sibling_die (child_die);
13797 }
13798
13799 /* In some cases, GCC generates specification DIEs that
13800 themselves contain DW_AT_specification attributes. */
13801 spec_die = die_specification (spec_die, &spec_cu);
13802 }
13803 }
13804
c24bdb02 13805 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13806 /* Make a block for the local symbols within. */
c24bdb02 13807 block = cu->get_builder ()->finish_block (cstk.name, cstk.old_blocks,
804d2729 13808 cstk.static_link, lowpc, highpc);
801e3a5b 13809
df8a16a1 13810 /* For C++, set the block's scope. */
45280282
IB
13811 if ((cu->language == language_cplus
13812 || cu->language == language_fortran
c44af4eb
TT
13813 || cu->language == language_d
13814 || cu->language == language_rust)
4d4ec4e5 13815 && cu->processing_has_namespace_info)
195a3f6c
TT
13816 block_set_scope (block, determine_prefix (die, cu),
13817 &objfile->objfile_obstack);
df8a16a1 13818
801e3a5b
JB
13819 /* If we have address ranges, record them. */
13820 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6e70227d 13821
a60f3166 13822 gdbarch_make_symbol_special (gdbarch, cstk.name, objfile);
3e29f34a 13823
34eaf542 13824 /* Attach template arguments to function. */
2f4732b0 13825 if (!template_args.empty ())
34eaf542
TT
13826 {
13827 gdb_assert (templ_func != NULL);
13828
2f4732b0 13829 templ_func->n_template_arguments = template_args.size ();
34eaf542 13830 templ_func->template_arguments
8d749320
SM
13831 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
13832 templ_func->n_template_arguments);
34eaf542 13833 memcpy (templ_func->template_arguments,
2f4732b0 13834 template_args.data (),
34eaf542 13835 (templ_func->n_template_arguments * sizeof (struct symbol *)));
3e1d3d8c
TT
13836
13837 /* Make sure that the symtab is set on the new symbols. Even
13838 though they don't appear in this symtab directly, other parts
13839 of gdb assume that symbols do, and this is reasonably
13840 true. */
8634679f 13841 for (symbol *sym : template_args)
3e1d3d8c 13842 symbol_set_symtab (sym, symbol_symtab (templ_func));
34eaf542
TT
13843 }
13844
208d8187
JB
13845 /* In C++, we can have functions nested inside functions (e.g., when
13846 a function declares a class that has methods). This means that
13847 when we finish processing a function scope, we may need to go
13848 back to building a containing block's symbol lists. */
c24bdb02
KS
13849 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13850 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
208d8187 13851
921e78cf
JB
13852 /* If we've finished processing a top-level function, subsequent
13853 symbols go in the file symbol list. */
c24bdb02
KS
13854 if (cu->get_builder ()->outermost_context_p ())
13855 cu->list_in_scope = cu->get_builder ()->get_file_symbols ();
c906108c
SS
13856}
13857
13858/* Process all the DIES contained within a lexical block scope. Start
13859 a new scope, process the dies, and then close the scope. */
13860
13861static void
e7c27a73 13862read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13863{
518817b3 13864 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 13865 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
13866 CORE_ADDR lowpc, highpc;
13867 struct die_info *child_die;
e142c38c
DJ
13868 CORE_ADDR baseaddr;
13869
13870 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
13871
13872 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
13873 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
13874 as multiple lexical blocks? Handling children in a sane way would
6e70227d 13875 be nasty. Might be easier to properly extend generic blocks to
af34e669 13876 describe ranges. */
e385593e
JK
13877 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
13878 {
13879 case PC_BOUNDS_NOT_PRESENT:
13880 /* DW_TAG_lexical_block has no attributes, process its children as if
13881 there was no wrapping by that DW_TAG_lexical_block.
13882 GCC does no longer produces such DWARF since GCC r224161. */
13883 for (child_die = die->child;
13884 child_die != NULL && child_die->tag;
13885 child_die = sibling_die (child_die))
13886 process_die (child_die, cu);
13887 return;
13888 case PC_BOUNDS_INVALID:
13889 return;
13890 }
3e29f34a
MR
13891 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13892 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13893
c24bdb02 13894 cu->get_builder ()->push_context (0, lowpc);
639d11d3 13895 if (die->child != NULL)
c906108c 13896 {
639d11d3 13897 child_die = die->child;
c906108c
SS
13898 while (child_die && child_die->tag)
13899 {
e7c27a73 13900 process_die (child_die, cu);
c906108c
SS
13901 child_die = sibling_die (child_die);
13902 }
13903 }
3ea89b92 13904 inherit_abstract_dies (die, cu);
c24bdb02 13905 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13906
c24bdb02
KS
13907 if (*cu->get_builder ()->get_local_symbols () != NULL
13908 || (*cu->get_builder ()->get_local_using_directives ()) != NULL)
c906108c 13909 {
801e3a5b 13910 struct block *block
c24bdb02 13911 = cu->get_builder ()->finish_block (0, cstk.old_blocks, NULL,
804d2729 13912 cstk.start_addr, highpc);
801e3a5b
JB
13913
13914 /* Note that recording ranges after traversing children, as we
13915 do here, means that recording a parent's ranges entails
13916 walking across all its children's ranges as they appear in
13917 the address map, which is quadratic behavior.
13918
13919 It would be nicer to record the parent's ranges before
13920 traversing its children, simply overriding whatever you find
13921 there. But since we don't even decide whether to create a
13922 block until after we've traversed its children, that's hard
13923 to do. */
13924 dwarf2_record_block_ranges (die, block, baseaddr, cu);
c906108c 13925 }
c24bdb02
KS
13926 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13927 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
c906108c
SS
13928}
13929
216f72a1 13930/* Read in DW_TAG_call_site and insert it to CU->call_site_htab. */
96408a79
SA
13931
13932static void
13933read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
13934{
518817b3 13935 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
96408a79
SA
13936 struct gdbarch *gdbarch = get_objfile_arch (objfile);
13937 CORE_ADDR pc, baseaddr;
13938 struct attribute *attr;
13939 struct call_site *call_site, call_site_local;
13940 void **slot;
13941 int nparams;
13942 struct die_info *child_die;
13943
13944 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13945
216f72a1
JK
13946 attr = dwarf2_attr (die, DW_AT_call_return_pc, cu);
13947 if (attr == NULL)
13948 {
13949 /* This was a pre-DWARF-5 GNU extension alias
13950 for DW_AT_call_return_pc. */
13951 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
13952 }
96408a79
SA
13953 if (!attr)
13954 {
b98664d3 13955 complaint (_("missing DW_AT_call_return_pc for DW_TAG_call_site "
9d8780f0
SM
13956 "DIE %s [in module %s]"),
13957 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13958 return;
13959 }
31aa7e4e 13960 pc = attr_value_as_address (attr) + baseaddr;
3e29f34a 13961 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
96408a79
SA
13962
13963 if (cu->call_site_htab == NULL)
13964 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
13965 NULL, &objfile->objfile_obstack,
13966 hashtab_obstack_allocate, NULL);
13967 call_site_local.pc = pc;
13968 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
13969 if (*slot != NULL)
13970 {
b98664d3 13971 complaint (_("Duplicate PC %s for DW_TAG_call_site "
9d8780f0
SM
13972 "DIE %s [in module %s]"),
13973 paddress (gdbarch, pc), sect_offset_str (die->sect_off),
4262abfb 13974 objfile_name (objfile));
96408a79
SA
13975 return;
13976 }
13977
13978 /* Count parameters at the caller. */
13979
13980 nparams = 0;
13981 for (child_die = die->child; child_die && child_die->tag;
13982 child_die = sibling_die (child_die))
13983 {
216f72a1
JK
13984 if (child_die->tag != DW_TAG_call_site_parameter
13985 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79 13986 {
b98664d3 13987 complaint (_("Tag %d is not DW_TAG_call_site_parameter in "
9d8780f0
SM
13988 "DW_TAG_call_site child DIE %s [in module %s]"),
13989 child_die->tag, sect_offset_str (child_die->sect_off),
4262abfb 13990 objfile_name (objfile));
96408a79
SA
13991 continue;
13992 }
13993
13994 nparams++;
13995 }
13996
224c3ddb
SM
13997 call_site
13998 = ((struct call_site *)
13999 obstack_alloc (&objfile->objfile_obstack,
14000 sizeof (*call_site)
14001 + (sizeof (*call_site->parameter) * (nparams - 1))));
96408a79
SA
14002 *slot = call_site;
14003 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
14004 call_site->pc = pc;
14005
216f72a1
JK
14006 if (dwarf2_flag_true_p (die, DW_AT_call_tail_call, cu)
14007 || dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
96408a79
SA
14008 {
14009 struct die_info *func_die;
14010
14011 /* Skip also over DW_TAG_inlined_subroutine. */
14012 for (func_die = die->parent;
14013 func_die && func_die->tag != DW_TAG_subprogram
14014 && func_die->tag != DW_TAG_subroutine_type;
14015 func_die = func_die->parent);
14016
216f72a1
JK
14017 /* DW_AT_call_all_calls is a superset
14018 of DW_AT_call_all_tail_calls. */
96408a79 14019 if (func_die
216f72a1 14020 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_calls, cu)
96408a79 14021 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
216f72a1 14022 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_tail_calls, cu)
96408a79
SA
14023 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
14024 {
14025 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
14026 not complete. But keep CALL_SITE for look ups via call_site_htab,
14027 both the initial caller containing the real return address PC and
14028 the final callee containing the current PC of a chain of tail
14029 calls do not need to have the tail call list complete. But any
14030 function candidate for a virtual tail call frame searched via
14031 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
14032 determined unambiguously. */
14033 }
14034 else
14035 {
14036 struct type *func_type = NULL;
14037
14038 if (func_die)
14039 func_type = get_die_type (func_die, cu);
14040 if (func_type != NULL)
14041 {
14042 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
14043
14044 /* Enlist this call site to the function. */
14045 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
14046 TYPE_TAIL_CALL_LIST (func_type) = call_site;
14047 }
14048 else
b98664d3 14049 complaint (_("Cannot find function owning DW_TAG_call_site "
9d8780f0
SM
14050 "DIE %s [in module %s]"),
14051 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
14052 }
14053 }
14054
216f72a1
JK
14055 attr = dwarf2_attr (die, DW_AT_call_target, cu);
14056 if (attr == NULL)
14057 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
14058 if (attr == NULL)
14059 attr = dwarf2_attr (die, DW_AT_call_origin, cu);
96408a79 14060 if (attr == NULL)
216f72a1
JK
14061 {
14062 /* This was a pre-DWARF-5 GNU extension alias for DW_AT_call_origin. */
14063 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
14064 }
96408a79
SA
14065 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
14066 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
14067 /* Keep NULL DWARF_BLOCK. */;
14068 else if (attr_form_is_block (attr))
14069 {
14070 struct dwarf2_locexpr_baton *dlbaton;
14071
8d749320 14072 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
96408a79
SA
14073 dlbaton->data = DW_BLOCK (attr)->data;
14074 dlbaton->size = DW_BLOCK (attr)->size;
14075 dlbaton->per_cu = cu->per_cu;
14076
14077 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
14078 }
7771576e 14079 else if (attr_form_is_ref (attr))
96408a79 14080 {
96408a79
SA
14081 struct dwarf2_cu *target_cu = cu;
14082 struct die_info *target_die;
14083
ac9ec31b 14084 target_die = follow_die_ref (die, attr, &target_cu);
518817b3 14085 gdb_assert (target_cu->per_cu->dwarf2_per_objfile->objfile == objfile);
96408a79
SA
14086 if (die_is_declaration (target_die, target_cu))
14087 {
7d45c7c3 14088 const char *target_physname;
9112db09
JK
14089
14090 /* Prefer the mangled name; otherwise compute the demangled one. */
73b9be8b 14091 target_physname = dw2_linkage_name (target_die, target_cu);
7d45c7c3 14092 if (target_physname == NULL)
9112db09 14093 target_physname = dwarf2_physname (NULL, target_die, target_cu);
96408a79 14094 if (target_physname == NULL)
b98664d3 14095 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
14096 "physname, for referencing DIE %s [in module %s]"),
14097 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 14098 else
7d455152 14099 SET_FIELD_PHYSNAME (call_site->target, target_physname);
96408a79
SA
14100 }
14101 else
14102 {
14103 CORE_ADDR lowpc;
14104
14105 /* DW_AT_entry_pc should be preferred. */
3a2b436a 14106 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
e385593e 14107 <= PC_BOUNDS_INVALID)
b98664d3 14108 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
14109 "low pc, for referencing DIE %s [in module %s]"),
14110 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 14111 else
3e29f34a
MR
14112 {
14113 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
14114 SET_FIELD_PHYSADDR (call_site->target, lowpc);
14115 }
96408a79
SA
14116 }
14117 }
14118 else
b98664d3 14119 complaint (_("DW_TAG_call_site DW_AT_call_target is neither "
9d8780f0
SM
14120 "block nor reference, for DIE %s [in module %s]"),
14121 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
14122
14123 call_site->per_cu = cu->per_cu;
14124
14125 for (child_die = die->child;
14126 child_die && child_die->tag;
14127 child_die = sibling_die (child_die))
14128 {
96408a79 14129 struct call_site_parameter *parameter;
1788b2d3 14130 struct attribute *loc, *origin;
96408a79 14131
216f72a1
JK
14132 if (child_die->tag != DW_TAG_call_site_parameter
14133 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79
SA
14134 {
14135 /* Already printed the complaint above. */
14136 continue;
14137 }
14138
14139 gdb_assert (call_site->parameter_count < nparams);
14140 parameter = &call_site->parameter[call_site->parameter_count];
14141
1788b2d3
JK
14142 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
14143 specifies DW_TAG_formal_parameter. Value of the data assumed for the
216f72a1 14144 register is contained in DW_AT_call_value. */
96408a79 14145
24c5c679 14146 loc = dwarf2_attr (child_die, DW_AT_location, cu);
216f72a1
JK
14147 origin = dwarf2_attr (child_die, DW_AT_call_parameter, cu);
14148 if (origin == NULL)
14149 {
14150 /* This was a pre-DWARF-5 GNU extension alias
14151 for DW_AT_call_parameter. */
14152 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
14153 }
7771576e 14154 if (loc == NULL && origin != NULL && attr_form_is_ref (origin))
1788b2d3 14155 {
1788b2d3 14156 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9c541725
PA
14157
14158 sect_offset sect_off
14159 = (sect_offset) dwarf2_get_ref_die_offset (origin);
14160 if (!offset_in_cu_p (&cu->header, sect_off))
d76b7dbc
JK
14161 {
14162 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
14163 binding can be done only inside one CU. Such referenced DIE
14164 therefore cannot be even moved to DW_TAG_partial_unit. */
b98664d3 14165 complaint (_("DW_AT_call_parameter offset is not in CU for "
9d8780f0
SM
14166 "DW_TAG_call_site child DIE %s [in module %s]"),
14167 sect_offset_str (child_die->sect_off),
9c541725 14168 objfile_name (objfile));
d76b7dbc
JK
14169 continue;
14170 }
9c541725
PA
14171 parameter->u.param_cu_off
14172 = (cu_offset) (sect_off - cu->header.sect_off);
1788b2d3
JK
14173 }
14174 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
96408a79 14175 {
b98664d3 14176 complaint (_("No DW_FORM_block* DW_AT_location for "
9d8780f0
SM
14177 "DW_TAG_call_site child DIE %s [in module %s]"),
14178 sect_offset_str (child_die->sect_off), objfile_name (objfile));
96408a79
SA
14179 continue;
14180 }
24c5c679 14181 else
96408a79 14182 {
24c5c679
JK
14183 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
14184 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
14185 if (parameter->u.dwarf_reg != -1)
14186 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
14187 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
14188 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
14189 &parameter->u.fb_offset))
14190 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
14191 else
14192 {
b98664d3 14193 complaint (_("Only single DW_OP_reg or DW_OP_fbreg is supported "
24c5c679 14194 "for DW_FORM_block* DW_AT_location is supported for "
9d8780f0 14195 "DW_TAG_call_site child DIE %s "
24c5c679 14196 "[in module %s]"),
9d8780f0 14197 sect_offset_str (child_die->sect_off),
9c541725 14198 objfile_name (objfile));
24c5c679
JK
14199 continue;
14200 }
96408a79
SA
14201 }
14202
216f72a1
JK
14203 attr = dwarf2_attr (child_die, DW_AT_call_value, cu);
14204 if (attr == NULL)
14205 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
96408a79
SA
14206 if (!attr_form_is_block (attr))
14207 {
b98664d3 14208 complaint (_("No DW_FORM_block* DW_AT_call_value for "
9d8780f0
SM
14209 "DW_TAG_call_site child DIE %s [in module %s]"),
14210 sect_offset_str (child_die->sect_off),
9c541725 14211 objfile_name (objfile));
96408a79
SA
14212 continue;
14213 }
14214 parameter->value = DW_BLOCK (attr)->data;
14215 parameter->value_size = DW_BLOCK (attr)->size;
14216
14217 /* Parameters are not pre-cleared by memset above. */
14218 parameter->data_value = NULL;
14219 parameter->data_value_size = 0;
14220 call_site->parameter_count++;
14221
216f72a1
JK
14222 attr = dwarf2_attr (child_die, DW_AT_call_data_value, cu);
14223 if (attr == NULL)
14224 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
96408a79
SA
14225 if (attr)
14226 {
14227 if (!attr_form_is_block (attr))
b98664d3 14228 complaint (_("No DW_FORM_block* DW_AT_call_data_value for "
9d8780f0
SM
14229 "DW_TAG_call_site child DIE %s [in module %s]"),
14230 sect_offset_str (child_die->sect_off),
9c541725 14231 objfile_name (objfile));
96408a79
SA
14232 else
14233 {
14234 parameter->data_value = DW_BLOCK (attr)->data;
14235 parameter->data_value_size = DW_BLOCK (attr)->size;
14236 }
14237 }
14238 }
14239}
14240
71a3c369
TT
14241/* Helper function for read_variable. If DIE represents a virtual
14242 table, then return the type of the concrete object that is
14243 associated with the virtual table. Otherwise, return NULL. */
14244
14245static struct type *
14246rust_containing_type (struct die_info *die, struct dwarf2_cu *cu)
14247{
14248 struct attribute *attr = dwarf2_attr (die, DW_AT_type, cu);
14249 if (attr == NULL)
14250 return NULL;
14251
14252 /* Find the type DIE. */
14253 struct die_info *type_die = NULL;
14254 struct dwarf2_cu *type_cu = cu;
14255
14256 if (attr_form_is_ref (attr))
14257 type_die = follow_die_ref (die, attr, &type_cu);
14258 if (type_die == NULL)
14259 return NULL;
14260
14261 if (dwarf2_attr (type_die, DW_AT_containing_type, type_cu) == NULL)
14262 return NULL;
14263 return die_containing_type (type_die, type_cu);
14264}
14265
14266/* Read a variable (DW_TAG_variable) DIE and create a new symbol. */
14267
14268static void
14269read_variable (struct die_info *die, struct dwarf2_cu *cu)
14270{
14271 struct rust_vtable_symbol *storage = NULL;
14272
14273 if (cu->language == language_rust)
14274 {
14275 struct type *containing_type = rust_containing_type (die, cu);
14276
14277 if (containing_type != NULL)
14278 {
518817b3 14279 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
71a3c369
TT
14280
14281 storage = OBSTACK_ZALLOC (&objfile->objfile_obstack,
14282 struct rust_vtable_symbol);
14283 initialize_objfile_symbol (storage);
14284 storage->concrete_type = containing_type;
cf724bc9 14285 storage->subclass = SYMBOL_RUST_VTABLE;
71a3c369
TT
14286 }
14287 }
14288
e4a62c65
TV
14289 struct symbol *res = new_symbol (die, NULL, cu, storage);
14290 struct attribute *abstract_origin
14291 = dwarf2_attr (die, DW_AT_abstract_origin, cu);
14292 struct attribute *loc = dwarf2_attr (die, DW_AT_location, cu);
14293 if (res == NULL && loc && abstract_origin)
14294 {
14295 /* We have a variable without a name, but with a location and an abstract
14296 origin. This may be a concrete instance of an abstract variable
14297 referenced from an DW_OP_GNU_variable_value, so save it to find it back
14298 later. */
14299 struct dwarf2_cu *origin_cu = cu;
14300 struct die_info *origin_die
14301 = follow_die_ref (die, abstract_origin, &origin_cu);
14302 dwarf2_per_objfile *dpo = cu->per_cu->dwarf2_per_objfile;
14303 dpo->abstract_to_concrete[origin_die].push_back (die);
14304 }
71a3c369
TT
14305}
14306
43988095
JK
14307/* Call CALLBACK from DW_AT_ranges attribute value OFFSET
14308 reading .debug_rnglists.
14309 Callback's type should be:
14310 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
14311 Return true if the attributes are present and valid, otherwise,
14312 return false. */
14313
14314template <typename Callback>
14315static bool
14316dwarf2_rnglists_process (unsigned offset, struct dwarf2_cu *cu,
14317 Callback &&callback)
14318{
ed2dc618 14319 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 14320 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 14321 struct objfile *objfile = dwarf2_per_objfile->objfile;
43988095 14322 bfd *obfd = objfile->obfd;
43988095
JK
14323 /* Base address selection entry. */
14324 CORE_ADDR base;
14325 int found_base;
43988095 14326 const gdb_byte *buffer;
43988095
JK
14327 CORE_ADDR baseaddr;
14328 bool overflow = false;
14329
14330 found_base = cu->base_known;
14331 base = cu->base_address;
14332
14333 dwarf2_read_section (objfile, &dwarf2_per_objfile->rnglists);
14334 if (offset >= dwarf2_per_objfile->rnglists.size)
14335 {
b98664d3 14336 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43988095
JK
14337 offset);
14338 return false;
14339 }
14340 buffer = dwarf2_per_objfile->rnglists.buffer + offset;
14341
14342 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14343
14344 while (1)
14345 {
7814882a
JK
14346 /* Initialize it due to a false compiler warning. */
14347 CORE_ADDR range_beginning = 0, range_end = 0;
43988095
JK
14348 const gdb_byte *buf_end = (dwarf2_per_objfile->rnglists.buffer
14349 + dwarf2_per_objfile->rnglists.size);
14350 unsigned int bytes_read;
14351
14352 if (buffer == buf_end)
14353 {
14354 overflow = true;
14355 break;
14356 }
14357 const auto rlet = static_cast<enum dwarf_range_list_entry>(*buffer++);
14358 switch (rlet)
14359 {
14360 case DW_RLE_end_of_list:
14361 break;
14362 case DW_RLE_base_address:
14363 if (buffer + cu->header.addr_size > buf_end)
14364 {
14365 overflow = true;
14366 break;
14367 }
14368 base = read_address (obfd, buffer, cu, &bytes_read);
14369 found_base = 1;
14370 buffer += bytes_read;
14371 break;
14372 case DW_RLE_start_length:
14373 if (buffer + cu->header.addr_size > buf_end)
14374 {
14375 overflow = true;
14376 break;
14377 }
14378 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14379 buffer += bytes_read;
14380 range_end = (range_beginning
14381 + read_unsigned_leb128 (obfd, buffer, &bytes_read));
14382 buffer += bytes_read;
14383 if (buffer > buf_end)
14384 {
14385 overflow = true;
14386 break;
14387 }
14388 break;
14389 case DW_RLE_offset_pair:
14390 range_beginning = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14391 buffer += bytes_read;
14392 if (buffer > buf_end)
14393 {
14394 overflow = true;
14395 break;
14396 }
14397 range_end = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14398 buffer += bytes_read;
14399 if (buffer > buf_end)
14400 {
14401 overflow = true;
14402 break;
14403 }
14404 break;
14405 case DW_RLE_start_end:
14406 if (buffer + 2 * cu->header.addr_size > buf_end)
14407 {
14408 overflow = true;
14409 break;
14410 }
14411 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14412 buffer += bytes_read;
14413 range_end = read_address (obfd, buffer, cu, &bytes_read);
14414 buffer += bytes_read;
14415 break;
14416 default:
b98664d3 14417 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
14418 return false;
14419 }
14420 if (rlet == DW_RLE_end_of_list || overflow)
14421 break;
14422 if (rlet == DW_RLE_base_address)
14423 continue;
14424
14425 if (!found_base)
14426 {
14427 /* We have no valid base address for the ranges
14428 data. */
b98664d3 14429 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
14430 return false;
14431 }
14432
14433 if (range_beginning > range_end)
14434 {
14435 /* Inverted range entries are invalid. */
b98664d3 14436 complaint (_("Invalid .debug_rnglists data (inverted range)"));
43988095
JK
14437 return false;
14438 }
14439
14440 /* Empty range entries have no effect. */
14441 if (range_beginning == range_end)
14442 continue;
14443
14444 range_beginning += base;
14445 range_end += base;
14446
14447 /* A not-uncommon case of bad debug info.
14448 Don't pollute the addrmap with bad data. */
14449 if (range_beginning + baseaddr == 0
14450 && !dwarf2_per_objfile->has_section_at_zero)
14451 {
b98664d3 14452 complaint (_(".debug_rnglists entry has start address of zero"
43988095
JK
14453 " [in module %s]"), objfile_name (objfile));
14454 continue;
14455 }
14456
14457 callback (range_beginning, range_end);
14458 }
14459
14460 if (overflow)
14461 {
b98664d3 14462 complaint (_("Offset %d is not terminated "
43988095
JK
14463 "for DW_AT_ranges attribute"),
14464 offset);
14465 return false;
14466 }
14467
14468 return true;
14469}
14470
14471/* Call CALLBACK from DW_AT_ranges attribute value OFFSET reading .debug_ranges.
14472 Callback's type should be:
14473 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
5f46c5a5 14474 Return 1 if the attributes are present and valid, otherwise, return 0. */
43039443 14475
43988095 14476template <typename Callback>
43039443 14477static int
5f46c5a5 14478dwarf2_ranges_process (unsigned offset, struct dwarf2_cu *cu,
43988095 14479 Callback &&callback)
43039443 14480{
ed2dc618 14481 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 14482 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 14483 struct objfile *objfile = dwarf2_per_objfile->objfile;
43039443
JK
14484 struct comp_unit_head *cu_header = &cu->header;
14485 bfd *obfd = objfile->obfd;
14486 unsigned int addr_size = cu_header->addr_size;
14487 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
14488 /* Base address selection entry. */
14489 CORE_ADDR base;
14490 int found_base;
14491 unsigned int dummy;
d521ce57 14492 const gdb_byte *buffer;
ff013f42 14493 CORE_ADDR baseaddr;
43039443 14494
43988095
JK
14495 if (cu_header->version >= 5)
14496 return dwarf2_rnglists_process (offset, cu, callback);
14497
d00adf39
DE
14498 found_base = cu->base_known;
14499 base = cu->base_address;
43039443 14500
be391dca 14501 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
dce234bc 14502 if (offset >= dwarf2_per_objfile->ranges.size)
43039443 14503 {
b98664d3 14504 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43039443
JK
14505 offset);
14506 return 0;
14507 }
dce234bc 14508 buffer = dwarf2_per_objfile->ranges.buffer + offset;
43039443 14509
e7030f15 14510 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
ff013f42 14511
43039443
JK
14512 while (1)
14513 {
14514 CORE_ADDR range_beginning, range_end;
14515
14516 range_beginning = read_address (obfd, buffer, cu, &dummy);
14517 buffer += addr_size;
14518 range_end = read_address (obfd, buffer, cu, &dummy);
14519 buffer += addr_size;
14520 offset += 2 * addr_size;
14521
14522 /* An end of list marker is a pair of zero addresses. */
14523 if (range_beginning == 0 && range_end == 0)
14524 /* Found the end of list entry. */
14525 break;
14526
14527 /* Each base address selection entry is a pair of 2 values.
14528 The first is the largest possible address, the second is
14529 the base address. Check for a base address here. */
14530 if ((range_beginning & mask) == mask)
14531 {
28d2bfb9
AB
14532 /* If we found the largest possible address, then we already
14533 have the base address in range_end. */
14534 base = range_end;
43039443
JK
14535 found_base = 1;
14536 continue;
14537 }
14538
14539 if (!found_base)
14540 {
14541 /* We have no valid base address for the ranges
14542 data. */
b98664d3 14543 complaint (_("Invalid .debug_ranges data (no base address)"));
43039443
JK
14544 return 0;
14545 }
14546
9277c30c
UW
14547 if (range_beginning > range_end)
14548 {
14549 /* Inverted range entries are invalid. */
b98664d3 14550 complaint (_("Invalid .debug_ranges data (inverted range)"));
9277c30c
UW
14551 return 0;
14552 }
14553
14554 /* Empty range entries have no effect. */
14555 if (range_beginning == range_end)
14556 continue;
14557
43039443
JK
14558 range_beginning += base;
14559 range_end += base;
14560
01093045
DE
14561 /* A not-uncommon case of bad debug info.
14562 Don't pollute the addrmap with bad data. */
14563 if (range_beginning + baseaddr == 0
14564 && !dwarf2_per_objfile->has_section_at_zero)
14565 {
b98664d3 14566 complaint (_(".debug_ranges entry has start address of zero"
4262abfb 14567 " [in module %s]"), objfile_name (objfile));
01093045
DE
14568 continue;
14569 }
14570
5f46c5a5
JK
14571 callback (range_beginning, range_end);
14572 }
14573
14574 return 1;
14575}
14576
14577/* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
14578 Return 1 if the attributes are present and valid, otherwise, return 0.
14579 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
14580
14581static int
14582dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
14583 CORE_ADDR *high_return, struct dwarf2_cu *cu,
14584 struct partial_symtab *ranges_pst)
14585{
518817b3 14586 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
5f46c5a5
JK
14587 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14588 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
14589 SECT_OFF_TEXT (objfile));
14590 int low_set = 0;
14591 CORE_ADDR low = 0;
14592 CORE_ADDR high = 0;
14593 int retval;
14594
14595 retval = dwarf2_ranges_process (offset, cu,
14596 [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
14597 {
9277c30c 14598 if (ranges_pst != NULL)
3e29f34a
MR
14599 {
14600 CORE_ADDR lowpc;
14601 CORE_ADDR highpc;
14602
79748972
TT
14603 lowpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14604 range_beginning + baseaddr)
14605 - baseaddr);
14606 highpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14607 range_end + baseaddr)
14608 - baseaddr);
d320c2b5
TT
14609 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
14610 lowpc, highpc - 1, ranges_pst);
3e29f34a 14611 }
ff013f42 14612
43039443
JK
14613 /* FIXME: This is recording everything as a low-high
14614 segment of consecutive addresses. We should have a
14615 data structure for discontiguous block ranges
14616 instead. */
14617 if (! low_set)
14618 {
14619 low = range_beginning;
14620 high = range_end;
14621 low_set = 1;
14622 }
14623 else
14624 {
14625 if (range_beginning < low)
14626 low = range_beginning;
14627 if (range_end > high)
14628 high = range_end;
14629 }
5f46c5a5
JK
14630 });
14631 if (!retval)
14632 return 0;
43039443
JK
14633
14634 if (! low_set)
14635 /* If the first entry is an end-of-list marker, the range
14636 describes an empty scope, i.e. no instructions. */
14637 return 0;
14638
14639 if (low_return)
14640 *low_return = low;
14641 if (high_return)
14642 *high_return = high;
14643 return 1;
14644}
14645
3a2b436a
JK
14646/* Get low and high pc attributes from a die. See enum pc_bounds_kind
14647 definition for the return value. *LOWPC and *HIGHPC are set iff
e385593e 14648 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
380bca97 14649
3a2b436a 14650static enum pc_bounds_kind
af34e669 14651dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
d85a05f0
DJ
14652 CORE_ADDR *highpc, struct dwarf2_cu *cu,
14653 struct partial_symtab *pst)
c906108c 14654{
518817b3
SM
14655 struct dwarf2_per_objfile *dwarf2_per_objfile
14656 = cu->per_cu->dwarf2_per_objfile;
c906108c 14657 struct attribute *attr;
91da1414 14658 struct attribute *attr_high;
af34e669
DJ
14659 CORE_ADDR low = 0;
14660 CORE_ADDR high = 0;
e385593e 14661 enum pc_bounds_kind ret;
c906108c 14662
91da1414
MW
14663 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14664 if (attr_high)
af34e669 14665 {
e142c38c 14666 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
af34e669 14667 if (attr)
91da1414 14668 {
31aa7e4e
JB
14669 low = attr_value_as_address (attr);
14670 high = attr_value_as_address (attr_high);
14671 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14672 high += low;
91da1414 14673 }
af34e669
DJ
14674 else
14675 /* Found high w/o low attribute. */
e385593e 14676 return PC_BOUNDS_INVALID;
af34e669
DJ
14677
14678 /* Found consecutive range of addresses. */
3a2b436a 14679 ret = PC_BOUNDS_HIGH_LOW;
af34e669 14680 }
c906108c 14681 else
af34e669 14682 {
e142c38c 14683 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
14684 if (attr != NULL)
14685 {
ab435259
DE
14686 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14687 We take advantage of the fact that DW_AT_ranges does not appear
14688 in DW_TAG_compile_unit of DWO files. */
14689 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14690 unsigned int ranges_offset = (DW_UNSND (attr)
14691 + (need_ranges_base
14692 ? cu->ranges_base
14693 : 0));
2e3cf129 14694
af34e669 14695 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 14696 .debug_ranges section. */
2e3cf129 14697 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
e385593e 14698 return PC_BOUNDS_INVALID;
43039443 14699 /* Found discontinuous range of addresses. */
3a2b436a 14700 ret = PC_BOUNDS_RANGES;
af34e669 14701 }
e385593e
JK
14702 else
14703 return PC_BOUNDS_NOT_PRESENT;
af34e669 14704 }
c906108c 14705
48fbe735 14706 /* partial_die_info::read has also the strict LOW < HIGH requirement. */
9373cf26 14707 if (high <= low)
e385593e 14708 return PC_BOUNDS_INVALID;
c906108c
SS
14709
14710 /* When using the GNU linker, .gnu.linkonce. sections are used to
14711 eliminate duplicate copies of functions and vtables and such.
14712 The linker will arbitrarily choose one and discard the others.
14713 The AT_*_pc values for such functions refer to local labels in
14714 these sections. If the section from that file was discarded, the
14715 labels are not in the output, so the relocs get a value of 0.
14716 If this is a discarded function, mark the pc bounds as invalid,
14717 so that GDB will ignore it. */
72dca2f5 14718 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
e385593e 14719 return PC_BOUNDS_INVALID;
c906108c
SS
14720
14721 *lowpc = low;
96408a79
SA
14722 if (highpc)
14723 *highpc = high;
af34e669 14724 return ret;
c906108c
SS
14725}
14726
b084d499
JB
14727/* Assuming that DIE represents a subprogram DIE or a lexical block, get
14728 its low and high PC addresses. Do nothing if these addresses could not
14729 be determined. Otherwise, set LOWPC to the low address if it is smaller,
14730 and HIGHPC to the high address if greater than HIGHPC. */
14731
14732static void
14733dwarf2_get_subprogram_pc_bounds (struct die_info *die,
14734 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14735 struct dwarf2_cu *cu)
14736{
14737 CORE_ADDR low, high;
14738 struct die_info *child = die->child;
14739
e385593e 14740 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
b084d499 14741 {
325fac50
PA
14742 *lowpc = std::min (*lowpc, low);
14743 *highpc = std::max (*highpc, high);
b084d499
JB
14744 }
14745
14746 /* If the language does not allow nested subprograms (either inside
14747 subprograms or lexical blocks), we're done. */
14748 if (cu->language != language_ada)
14749 return;
6e70227d 14750
b084d499
JB
14751 /* Check all the children of the given DIE. If it contains nested
14752 subprograms, then check their pc bounds. Likewise, we need to
14753 check lexical blocks as well, as they may also contain subprogram
14754 definitions. */
14755 while (child && child->tag)
14756 {
14757 if (child->tag == DW_TAG_subprogram
14758 || child->tag == DW_TAG_lexical_block)
14759 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
14760 child = sibling_die (child);
14761 }
14762}
14763
fae299cd
DC
14764/* Get the low and high pc's represented by the scope DIE, and store
14765 them in *LOWPC and *HIGHPC. If the correct values can't be
14766 determined, set *LOWPC to -1 and *HIGHPC to 0. */
14767
14768static void
14769get_scope_pc_bounds (struct die_info *die,
14770 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14771 struct dwarf2_cu *cu)
14772{
14773 CORE_ADDR best_low = (CORE_ADDR) -1;
14774 CORE_ADDR best_high = (CORE_ADDR) 0;
14775 CORE_ADDR current_low, current_high;
14776
3a2b436a 14777 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL)
e385593e 14778 >= PC_BOUNDS_RANGES)
fae299cd
DC
14779 {
14780 best_low = current_low;
14781 best_high = current_high;
14782 }
14783 else
14784 {
14785 struct die_info *child = die->child;
14786
14787 while (child && child->tag)
14788 {
14789 switch (child->tag) {
14790 case DW_TAG_subprogram:
b084d499 14791 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
fae299cd
DC
14792 break;
14793 case DW_TAG_namespace:
f55ee35c 14794 case DW_TAG_module:
fae299cd
DC
14795 /* FIXME: carlton/2004-01-16: Should we do this for
14796 DW_TAG_class_type/DW_TAG_structure_type, too? I think
14797 that current GCC's always emit the DIEs corresponding
14798 to definitions of methods of classes as children of a
14799 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
14800 the DIEs giving the declarations, which could be
14801 anywhere). But I don't see any reason why the
14802 standards says that they have to be there. */
14803 get_scope_pc_bounds (child, &current_low, &current_high, cu);
14804
14805 if (current_low != ((CORE_ADDR) -1))
14806 {
325fac50
PA
14807 best_low = std::min (best_low, current_low);
14808 best_high = std::max (best_high, current_high);
fae299cd
DC
14809 }
14810 break;
14811 default:
0963b4bd 14812 /* Ignore. */
fae299cd
DC
14813 break;
14814 }
14815
14816 child = sibling_die (child);
14817 }
14818 }
14819
14820 *lowpc = best_low;
14821 *highpc = best_high;
14822}
14823
801e3a5b
JB
14824/* Record the address ranges for BLOCK, offset by BASEADDR, as given
14825 in DIE. */
380bca97 14826
801e3a5b
JB
14827static void
14828dwarf2_record_block_ranges (struct die_info *die, struct block *block,
14829 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
14830{
518817b3 14831 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3e29f34a 14832 struct gdbarch *gdbarch = get_objfile_arch (objfile);
801e3a5b 14833 struct attribute *attr;
91da1414 14834 struct attribute *attr_high;
801e3a5b 14835
91da1414
MW
14836 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14837 if (attr_high)
801e3a5b 14838 {
801e3a5b
JB
14839 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
14840 if (attr)
14841 {
31aa7e4e
JB
14842 CORE_ADDR low = attr_value_as_address (attr);
14843 CORE_ADDR high = attr_value_as_address (attr_high);
14844
14845 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14846 high += low;
9a619af0 14847
3e29f34a
MR
14848 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
14849 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
c24bdb02 14850 cu->get_builder ()->record_block_range (block, low, high - 1);
801e3a5b
JB
14851 }
14852 }
14853
14854 attr = dwarf2_attr (die, DW_AT_ranges, cu);
14855 if (attr)
14856 {
ab435259
DE
14857 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14858 We take advantage of the fact that DW_AT_ranges does not appear
14859 in DW_TAG_compile_unit of DWO files. */
14860 int need_ranges_base = die->tag != DW_TAG_compile_unit;
801e3a5b
JB
14861
14862 /* The value of the DW_AT_ranges attribute is the offset of the
14863 address range list in the .debug_ranges section. */
ab435259
DE
14864 unsigned long offset = (DW_UNSND (attr)
14865 + (need_ranges_base ? cu->ranges_base : 0));
801e3a5b 14866
2d5f09ec 14867 std::vector<blockrange> blockvec;
5f46c5a5
JK
14868 dwarf2_ranges_process (offset, cu,
14869 [&] (CORE_ADDR start, CORE_ADDR end)
14870 {
58fdfd2c
JK
14871 start += baseaddr;
14872 end += baseaddr;
5f46c5a5
JK
14873 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
14874 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
c24bdb02 14875 cu->get_builder ()->record_block_range (block, start, end - 1);
2d5f09ec 14876 blockvec.emplace_back (start, end);
5f46c5a5 14877 });
2d5f09ec
KB
14878
14879 BLOCK_RANGES(block) = make_blockranges (objfile, blockvec);
801e3a5b
JB
14880 }
14881}
14882
685b1105
JK
14883/* Check whether the producer field indicates either of GCC < 4.6, or the
14884 Intel C/C++ compiler, and cache the result in CU. */
60d5a603 14885
685b1105
JK
14886static void
14887check_producer (struct dwarf2_cu *cu)
60d5a603 14888{
38360086 14889 int major, minor;
60d5a603
JK
14890
14891 if (cu->producer == NULL)
14892 {
14893 /* For unknown compilers expect their behavior is DWARF version
14894 compliant.
14895
14896 GCC started to support .debug_types sections by -gdwarf-4 since
14897 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
14898 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
14899 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
14900 interpreted incorrectly by GDB now - GCC PR debug/48229. */
60d5a603 14901 }
b1ffba5a 14902 else if (producer_is_gcc (cu->producer, &major, &minor))
60d5a603 14903 {
38360086
MW
14904 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
14905 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
685b1105 14906 }
5230b05a 14907 else if (producer_is_icc (cu->producer, &major, &minor))
eb77c9df
AB
14908 {
14909 cu->producer_is_icc = true;
14910 cu->producer_is_icc_lt_14 = major < 14;
14911 }
c258c396
JD
14912 else if (startswith (cu->producer, "CodeWarrior S12/L-ISA"))
14913 cu->producer_is_codewarrior = true;
685b1105
JK
14914 else
14915 {
14916 /* For other non-GCC compilers, expect their behavior is DWARF version
14917 compliant. */
60d5a603
JK
14918 }
14919
9068261f 14920 cu->checked_producer = true;
685b1105 14921}
ba919b58 14922
685b1105
JK
14923/* Check for GCC PR debug/45124 fix which is not present in any G++ version up
14924 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
14925 during 4.6.0 experimental. */
14926
9068261f 14927static bool
685b1105
JK
14928producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
14929{
14930 if (!cu->checked_producer)
14931 check_producer (cu);
14932
14933 return cu->producer_is_gxx_lt_4_6;
60d5a603
JK
14934}
14935
c258c396
JD
14936
14937/* Codewarrior (at least as of version 5.0.40) generates dwarf line information
14938 with incorrect is_stmt attributes. */
14939
14940static bool
14941producer_is_codewarrior (struct dwarf2_cu *cu)
14942{
14943 if (!cu->checked_producer)
14944 check_producer (cu);
14945
14946 return cu->producer_is_codewarrior;
14947}
14948
60d5a603
JK
14949/* Return the default accessibility type if it is not overriden by
14950 DW_AT_accessibility. */
14951
14952static enum dwarf_access_attribute
14953dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
14954{
14955 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
14956 {
14957 /* The default DWARF 2 accessibility for members is public, the default
14958 accessibility for inheritance is private. */
14959
14960 if (die->tag != DW_TAG_inheritance)
14961 return DW_ACCESS_public;
14962 else
14963 return DW_ACCESS_private;
14964 }
14965 else
14966 {
14967 /* DWARF 3+ defines the default accessibility a different way. The same
14968 rules apply now for DW_TAG_inheritance as for the members and it only
14969 depends on the container kind. */
14970
14971 if (die->parent->tag == DW_TAG_class_type)
14972 return DW_ACCESS_private;
14973 else
14974 return DW_ACCESS_public;
14975 }
14976}
14977
74ac6d43
TT
14978/* Look for DW_AT_data_member_location. Set *OFFSET to the byte
14979 offset. If the attribute was not found return 0, otherwise return
14980 1. If it was found but could not properly be handled, set *OFFSET
14981 to 0. */
14982
14983static int
14984handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14985 LONGEST *offset)
14986{
14987 struct attribute *attr;
14988
14989 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14990 if (attr != NULL)
14991 {
14992 *offset = 0;
14993
14994 /* Note that we do not check for a section offset first here.
14995 This is because DW_AT_data_member_location is new in DWARF 4,
14996 so if we see it, we can assume that a constant form is really
14997 a constant and not a section offset. */
14998 if (attr_form_is_constant (attr))
14999 *offset = dwarf2_get_attr_constant_value (attr, 0);
15000 else if (attr_form_is_section_offset (attr))
15001 dwarf2_complex_location_expr_complaint ();
15002 else if (attr_form_is_block (attr))
15003 *offset = decode_locdesc (DW_BLOCK (attr), cu);
15004 else
15005 dwarf2_complex_location_expr_complaint ();
15006
15007 return 1;
15008 }
15009
15010 return 0;
15011}
15012
c906108c
SS
15013/* Add an aggregate field to the field list. */
15014
15015static void
107d2387 15016dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73 15017 struct dwarf2_cu *cu)
6e70227d 15018{
518817b3 15019 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
5e2b427d 15020 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
15021 struct nextfield *new_field;
15022 struct attribute *attr;
15023 struct field *fp;
15d034d0 15024 const char *fieldname = "";
c906108c 15025
7d0ccb61
DJ
15026 if (die->tag == DW_TAG_inheritance)
15027 {
be2daae6
TT
15028 fip->baseclasses.emplace_back ();
15029 new_field = &fip->baseclasses.back ();
7d0ccb61
DJ
15030 }
15031 else
15032 {
be2daae6
TT
15033 fip->fields.emplace_back ();
15034 new_field = &fip->fields.back ();
7d0ccb61 15035 }
be2daae6 15036
c906108c
SS
15037 fip->nfields++;
15038
e142c38c 15039 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c
SS
15040 if (attr)
15041 new_field->accessibility = DW_UNSND (attr);
60d5a603
JK
15042 else
15043 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
c906108c
SS
15044 if (new_field->accessibility != DW_ACCESS_public)
15045 fip->non_public_fields = 1;
60d5a603 15046
e142c38c 15047 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
c906108c
SS
15048 if (attr)
15049 new_field->virtuality = DW_UNSND (attr);
60d5a603
JK
15050 else
15051 new_field->virtuality = DW_VIRTUALITY_none;
c906108c
SS
15052
15053 fp = &new_field->field;
a9a9bd0f 15054
e142c38c 15055 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 15056 {
74ac6d43
TT
15057 LONGEST offset;
15058
a9a9bd0f 15059 /* Data member other than a C++ static data member. */
6e70227d 15060
c906108c 15061 /* Get type of field. */
e7c27a73 15062 fp->type = die_type (die, cu);
c906108c 15063
d6a843b5 15064 SET_FIELD_BITPOS (*fp, 0);
01ad7f36 15065
c906108c 15066 /* Get bit size of field (zero if none). */
e142c38c 15067 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
c906108c
SS
15068 if (attr)
15069 {
15070 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
15071 }
15072 else
15073 {
15074 FIELD_BITSIZE (*fp) = 0;
15075 }
15076
15077 /* Get bit offset of field. */
74ac6d43
TT
15078 if (handle_data_member_location (die, cu, &offset))
15079 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
e142c38c 15080 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
c906108c
SS
15081 if (attr)
15082 {
5e2b427d 15083 if (gdbarch_bits_big_endian (gdbarch))
c906108c
SS
15084 {
15085 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
15086 additional bit offset from the MSB of the containing
15087 anonymous object to the MSB of the field. We don't
15088 have to do anything special since we don't need to
15089 know the size of the anonymous object. */
f41f5e61 15090 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
c906108c
SS
15091 }
15092 else
15093 {
15094 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
15095 MSB of the anonymous object, subtract off the number of
15096 bits from the MSB of the field to the MSB of the
15097 object, and then subtract off the number of bits of
15098 the field itself. The result is the bit offset of
15099 the LSB of the field. */
c906108c
SS
15100 int anonymous_size;
15101 int bit_offset = DW_UNSND (attr);
15102
e142c38c 15103 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
15104 if (attr)
15105 {
15106 /* The size of the anonymous object containing
15107 the bit field is explicit, so use the
15108 indicated size (in bytes). */
15109 anonymous_size = DW_UNSND (attr);
15110 }
15111 else
15112 {
15113 /* The size of the anonymous object containing
15114 the bit field must be inferred from the type
15115 attribute of the data member containing the
15116 bit field. */
15117 anonymous_size = TYPE_LENGTH (fp->type);
15118 }
f41f5e61
PA
15119 SET_FIELD_BITPOS (*fp,
15120 (FIELD_BITPOS (*fp)
15121 + anonymous_size * bits_per_byte
15122 - bit_offset - FIELD_BITSIZE (*fp)));
c906108c
SS
15123 }
15124 }
da5b30da
AA
15125 attr = dwarf2_attr (die, DW_AT_data_bit_offset, cu);
15126 if (attr != NULL)
15127 SET_FIELD_BITPOS (*fp, (FIELD_BITPOS (*fp)
15128 + dwarf2_get_attr_constant_value (attr, 0)));
c906108c
SS
15129
15130 /* Get name of field. */
39cbfefa
DJ
15131 fieldname = dwarf2_name (die, cu);
15132 if (fieldname == NULL)
15133 fieldname = "";
d8151005
DJ
15134
15135 /* The name is already allocated along with this objfile, so we don't
15136 need to duplicate it for the type. */
15137 fp->name = fieldname;
c906108c
SS
15138
15139 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 15140 pointer or virtual base class pointer) to private. */
e142c38c 15141 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c 15142 {
d48cc9dd 15143 FIELD_ARTIFICIAL (*fp) = 1;
c906108c
SS
15144 new_field->accessibility = DW_ACCESS_private;
15145 fip->non_public_fields = 1;
15146 }
15147 }
a9a9bd0f 15148 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 15149 {
a9a9bd0f
DC
15150 /* C++ static member. */
15151
15152 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
15153 is a declaration, but all versions of G++ as of this writing
15154 (so through at least 3.2.1) incorrectly generate
15155 DW_TAG_variable tags. */
6e70227d 15156
ff355380 15157 const char *physname;
c906108c 15158
a9a9bd0f 15159 /* Get name of field. */
39cbfefa
DJ
15160 fieldname = dwarf2_name (die, cu);
15161 if (fieldname == NULL)
c906108c
SS
15162 return;
15163
254e6b9e 15164 attr = dwarf2_attr (die, DW_AT_const_value, cu);
3863f96c
DE
15165 if (attr
15166 /* Only create a symbol if this is an external value.
15167 new_symbol checks this and puts the value in the global symbol
15168 table, which we want. If it is not external, new_symbol
15169 will try to put the value in cu->list_in_scope which is wrong. */
15170 && dwarf2_flag_true_p (die, DW_AT_external, cu))
254e6b9e
DE
15171 {
15172 /* A static const member, not much different than an enum as far as
15173 we're concerned, except that we can support more types. */
15174 new_symbol (die, NULL, cu);
15175 }
15176
2df3850c 15177 /* Get physical name. */
ff355380 15178 physname = dwarf2_physname (fieldname, die, cu);
c906108c 15179
d8151005
DJ
15180 /* The name is already allocated along with this objfile, so we don't
15181 need to duplicate it for the type. */
15182 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 15183 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 15184 FIELD_NAME (*fp) = fieldname;
c906108c
SS
15185 }
15186 else if (die->tag == DW_TAG_inheritance)
15187 {
74ac6d43 15188 LONGEST offset;
d4b96c9a 15189
74ac6d43
TT
15190 /* C++ base class field. */
15191 if (handle_data_member_location (die, cu, &offset))
15192 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
c906108c 15193 FIELD_BITSIZE (*fp) = 0;
e7c27a73 15194 FIELD_TYPE (*fp) = die_type (die, cu);
a737d952 15195 FIELD_NAME (*fp) = TYPE_NAME (fp->type);
c906108c 15196 }
2ddeaf8a
TT
15197 else if (die->tag == DW_TAG_variant_part)
15198 {
15199 /* process_structure_scope will treat this DIE as a union. */
15200 process_structure_scope (die, cu);
15201
15202 /* The variant part is relative to the start of the enclosing
15203 structure. */
15204 SET_FIELD_BITPOS (*fp, 0);
15205 fp->type = get_die_type (die, cu);
15206 fp->artificial = 1;
15207 fp->name = "<<variant>>";
c8c81635
TT
15208
15209 /* Normally a DW_TAG_variant_part won't have a size, but our
15210 representation requires one, so set it to the maximum of the
15211 child sizes. */
15212 if (TYPE_LENGTH (fp->type) == 0)
15213 {
15214 unsigned max = 0;
15215 for (int i = 0; i < TYPE_NFIELDS (fp->type); ++i)
15216 if (TYPE_LENGTH (TYPE_FIELD_TYPE (fp->type, i)) > max)
15217 max = TYPE_LENGTH (TYPE_FIELD_TYPE (fp->type, i));
15218 TYPE_LENGTH (fp->type) = max;
15219 }
2ddeaf8a
TT
15220 }
15221 else
15222 gdb_assert_not_reached ("missing case in dwarf2_add_field");
c906108c
SS
15223}
15224
883fd55a
KS
15225/* Can the type given by DIE define another type? */
15226
15227static bool
15228type_can_define_types (const struct die_info *die)
15229{
15230 switch (die->tag)
15231 {
15232 case DW_TAG_typedef:
15233 case DW_TAG_class_type:
15234 case DW_TAG_structure_type:
15235 case DW_TAG_union_type:
15236 case DW_TAG_enumeration_type:
15237 return true;
15238
15239 default:
15240 return false;
15241 }
15242}
15243
15244/* Add a type definition defined in the scope of the FIP's class. */
98751a41
JK
15245
15246static void
883fd55a
KS
15247dwarf2_add_type_defn (struct field_info *fip, struct die_info *die,
15248 struct dwarf2_cu *cu)
6e70227d 15249{
be2daae6
TT
15250 struct decl_field fp;
15251 memset (&fp, 0, sizeof (fp));
98751a41 15252
883fd55a 15253 gdb_assert (type_can_define_types (die));
98751a41 15254
883fd55a 15255 /* Get name of field. NULL is okay here, meaning an anonymous type. */
be2daae6
TT
15256 fp.name = dwarf2_name (die, cu);
15257 fp.type = read_type_die (die, cu);
98751a41 15258
c191a687
KS
15259 /* Save accessibility. */
15260 enum dwarf_access_attribute accessibility;
15261 struct attribute *attr = dwarf2_attr (die, DW_AT_accessibility, cu);
15262 if (attr != NULL)
15263 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
15264 else
15265 accessibility = dwarf2_default_access_attribute (die, cu);
15266 switch (accessibility)
15267 {
15268 case DW_ACCESS_public:
15269 /* The assumed value if neither private nor protected. */
15270 break;
15271 case DW_ACCESS_private:
be2daae6 15272 fp.is_private = 1;
c191a687
KS
15273 break;
15274 case DW_ACCESS_protected:
be2daae6 15275 fp.is_protected = 1;
c191a687
KS
15276 break;
15277 default:
b98664d3 15278 complaint (_("Unhandled DW_AT_accessibility value (%x)"), accessibility);
c191a687
KS
15279 }
15280
883fd55a 15281 if (die->tag == DW_TAG_typedef)
be2daae6 15282 fip->typedef_field_list.push_back (fp);
883fd55a 15283 else
be2daae6 15284 fip->nested_types_list.push_back (fp);
98751a41
JK
15285}
15286
c906108c
SS
15287/* Create the vector of fields, and attach it to the type. */
15288
15289static void
fba45db2 15290dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15291 struct dwarf2_cu *cu)
c906108c
SS
15292{
15293 int nfields = fip->nfields;
15294
15295 /* Record the field count, allocate space for the array of fields,
15296 and create blank accessibility bitfields if necessary. */
15297 TYPE_NFIELDS (type) = nfields;
15298 TYPE_FIELDS (type) = (struct field *)
be2daae6 15299 TYPE_ZALLOC (type, sizeof (struct field) * nfields);
c906108c 15300
b4ba55a1 15301 if (fip->non_public_fields && cu->language != language_ada)
c906108c
SS
15302 {
15303 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15304
15305 TYPE_FIELD_PRIVATE_BITS (type) =
15306 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15307 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
15308
15309 TYPE_FIELD_PROTECTED_BITS (type) =
15310 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15311 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
15312
774b6a14
TT
15313 TYPE_FIELD_IGNORE_BITS (type) =
15314 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15315 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
c906108c
SS
15316 }
15317
15318 /* If the type has baseclasses, allocate and clear a bit vector for
15319 TYPE_FIELD_VIRTUAL_BITS. */
be2daae6 15320 if (!fip->baseclasses.empty () && cu->language != language_ada)
c906108c 15321 {
be2daae6 15322 int num_bytes = B_BYTES (fip->baseclasses.size ());
fe1b8b76 15323 unsigned char *pointer;
c906108c
SS
15324
15325 ALLOCATE_CPLUS_STRUCT_TYPE (type);
224c3ddb 15326 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
fe1b8b76 15327 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
be2daae6
TT
15328 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->baseclasses.size ());
15329 TYPE_N_BASECLASSES (type) = fip->baseclasses.size ();
c906108c
SS
15330 }
15331
2ddeaf8a
TT
15332 if (TYPE_FLAG_DISCRIMINATED_UNION (type))
15333 {
15334 struct discriminant_info *di = alloc_discriminant_info (type, -1, -1);
15335
be2daae6 15336 for (int index = 0; index < nfields; ++index)
2ddeaf8a 15337 {
be2daae6
TT
15338 struct nextfield &field = fip->fields[index];
15339
15340 if (field.variant.is_discriminant)
2ddeaf8a 15341 di->discriminant_index = index;
be2daae6 15342 else if (field.variant.default_branch)
2ddeaf8a
TT
15343 di->default_index = index;
15344 else
be2daae6 15345 di->discriminants[index] = field.variant.discriminant_value;
2ddeaf8a
TT
15346 }
15347 }
15348
be2daae6
TT
15349 /* Copy the saved-up fields into the field vector. */
15350 for (int i = 0; i < nfields; ++i)
c906108c 15351 {
be2daae6
TT
15352 struct nextfield &field
15353 = ((i < fip->baseclasses.size ()) ? fip->baseclasses[i]
15354 : fip->fields[i - fip->baseclasses.size ()]);
7d0ccb61 15355
be2daae6
TT
15356 TYPE_FIELD (type, i) = field.field;
15357 switch (field.accessibility)
c906108c 15358 {
c5aa993b 15359 case DW_ACCESS_private:
b4ba55a1 15360 if (cu->language != language_ada)
be2daae6 15361 SET_TYPE_FIELD_PRIVATE (type, i);
c5aa993b 15362 break;
c906108c 15363
c5aa993b 15364 case DW_ACCESS_protected:
b4ba55a1 15365 if (cu->language != language_ada)
be2daae6 15366 SET_TYPE_FIELD_PROTECTED (type, i);
c5aa993b 15367 break;
c906108c 15368
c5aa993b
JM
15369 case DW_ACCESS_public:
15370 break;
c906108c 15371
c5aa993b
JM
15372 default:
15373 /* Unknown accessibility. Complain and treat it as public. */
15374 {
b98664d3 15375 complaint (_("unsupported accessibility %d"),
be2daae6 15376 field.accessibility);
c5aa993b
JM
15377 }
15378 break;
c906108c 15379 }
be2daae6 15380 if (i < fip->baseclasses.size ())
c906108c 15381 {
be2daae6 15382 switch (field.virtuality)
c906108c 15383 {
c5aa993b
JM
15384 case DW_VIRTUALITY_virtual:
15385 case DW_VIRTUALITY_pure_virtual:
b4ba55a1 15386 if (cu->language == language_ada)
a73c6dcd 15387 error (_("unexpected virtuality in component of Ada type"));
be2daae6 15388 SET_TYPE_FIELD_VIRTUAL (type, i);
c5aa993b 15389 break;
c906108c
SS
15390 }
15391 }
c906108c
SS
15392 }
15393}
15394
7d27a96d
TT
15395/* Return true if this member function is a constructor, false
15396 otherwise. */
15397
15398static int
15399dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
15400{
15401 const char *fieldname;
fe978cb0 15402 const char *type_name;
7d27a96d
TT
15403 int len;
15404
15405 if (die->parent == NULL)
15406 return 0;
15407
15408 if (die->parent->tag != DW_TAG_structure_type
15409 && die->parent->tag != DW_TAG_union_type
15410 && die->parent->tag != DW_TAG_class_type)
15411 return 0;
15412
15413 fieldname = dwarf2_name (die, cu);
fe978cb0
PA
15414 type_name = dwarf2_name (die->parent, cu);
15415 if (fieldname == NULL || type_name == NULL)
7d27a96d
TT
15416 return 0;
15417
15418 len = strlen (fieldname);
fe978cb0
PA
15419 return (strncmp (fieldname, type_name, len) == 0
15420 && (type_name[len] == '\0' || type_name[len] == '<'));
7d27a96d
TT
15421}
15422
c906108c
SS
15423/* Add a member function to the proper fieldlist. */
15424
15425static void
107d2387 15426dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 15427 struct type *type, struct dwarf2_cu *cu)
c906108c 15428{
518817b3 15429 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 15430 struct attribute *attr;
c906108c 15431 int i;
be2daae6 15432 struct fnfieldlist *flp = nullptr;
c906108c 15433 struct fn_field *fnp;
15d034d0 15434 const char *fieldname;
f792889a 15435 struct type *this_type;
60d5a603 15436 enum dwarf_access_attribute accessibility;
c906108c 15437
b4ba55a1 15438 if (cu->language == language_ada)
a73c6dcd 15439 error (_("unexpected member function in Ada type"));
b4ba55a1 15440
2df3850c 15441 /* Get name of member function. */
39cbfefa
DJ
15442 fieldname = dwarf2_name (die, cu);
15443 if (fieldname == NULL)
2df3850c 15444 return;
c906108c 15445
c906108c 15446 /* Look up member function name in fieldlist. */
be2daae6 15447 for (i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15448 {
27bfe10e 15449 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
be2daae6
TT
15450 {
15451 flp = &fip->fnfieldlists[i];
15452 break;
15453 }
c906108c
SS
15454 }
15455
be2daae6
TT
15456 /* Create a new fnfieldlist if necessary. */
15457 if (flp == nullptr)
c906108c 15458 {
be2daae6
TT
15459 fip->fnfieldlists.emplace_back ();
15460 flp = &fip->fnfieldlists.back ();
c906108c 15461 flp->name = fieldname;
be2daae6 15462 i = fip->fnfieldlists.size () - 1;
c906108c
SS
15463 }
15464
be2daae6
TT
15465 /* Create a new member function field and add it to the vector of
15466 fnfieldlists. */
15467 flp->fnfields.emplace_back ();
15468 fnp = &flp->fnfields.back ();
3da10d80
KS
15469
15470 /* Delay processing of the physname until later. */
9c37b5ae 15471 if (cu->language == language_cplus)
be2daae6
TT
15472 add_to_method_list (type, i, flp->fnfields.size () - 1, fieldname,
15473 die, cu);
3da10d80
KS
15474 else
15475 {
1d06ead6 15476 const char *physname = dwarf2_physname (fieldname, die, cu);
3da10d80
KS
15477 fnp->physname = physname ? physname : "";
15478 }
15479
c906108c 15480 fnp->type = alloc_type (objfile);
f792889a
DJ
15481 this_type = read_type_die (die, cu);
15482 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
c906108c 15483 {
f792889a 15484 int nparams = TYPE_NFIELDS (this_type);
c906108c 15485
f792889a 15486 /* TYPE is the domain of this method, and THIS_TYPE is the type
e26fb1d7
DC
15487 of the method itself (TYPE_CODE_METHOD). */
15488 smash_to_method_type (fnp->type, type,
f792889a
DJ
15489 TYPE_TARGET_TYPE (this_type),
15490 TYPE_FIELDS (this_type),
15491 TYPE_NFIELDS (this_type),
15492 TYPE_VARARGS (this_type));
c906108c
SS
15493
15494 /* Handle static member functions.
c5aa993b 15495 Dwarf2 has no clean way to discern C++ static and non-static
0963b4bd
MS
15496 member functions. G++ helps GDB by marking the first
15497 parameter for non-static member functions (which is the this
15498 pointer) as artificial. We obtain this information from
15499 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
f792889a 15500 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
c906108c
SS
15501 fnp->voffset = VOFFSET_STATIC;
15502 }
15503 else
b98664d3 15504 complaint (_("member function type missing for '%s'"),
3da10d80 15505 dwarf2_full_name (fieldname, die, cu));
c906108c
SS
15506
15507 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 15508 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 15509 fnp->fcontext = die_containing_type (die, cu);
c906108c 15510
3e43a32a
MS
15511 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
15512 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
c906108c
SS
15513
15514 /* Get accessibility. */
e142c38c 15515 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c 15516 if (attr)
aead7601 15517 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
60d5a603
JK
15518 else
15519 accessibility = dwarf2_default_access_attribute (die, cu);
15520 switch (accessibility)
c906108c 15521 {
60d5a603
JK
15522 case DW_ACCESS_private:
15523 fnp->is_private = 1;
15524 break;
15525 case DW_ACCESS_protected:
15526 fnp->is_protected = 1;
15527 break;
c906108c
SS
15528 }
15529
b02dede2 15530 /* Check for artificial methods. */
e142c38c 15531 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
15532 if (attr && DW_UNSND (attr) != 0)
15533 fnp->is_artificial = 1;
15534
7d27a96d
TT
15535 fnp->is_constructor = dwarf2_is_constructor (die, cu);
15536
0d564a31 15537 /* Get index in virtual function table if it is a virtual member
aec5aa8b
TT
15538 function. For older versions of GCC, this is an offset in the
15539 appropriate virtual table, as specified by DW_AT_containing_type.
15540 For everyone else, it is an expression to be evaluated relative
0d564a31
DJ
15541 to the object address. */
15542
e142c38c 15543 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
aec5aa8b 15544 if (attr)
8e19ed76 15545 {
aec5aa8b 15546 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
8e19ed76 15547 {
aec5aa8b
TT
15548 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
15549 {
15550 /* Old-style GCC. */
15551 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
15552 }
15553 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
15554 || (DW_BLOCK (attr)->size > 1
15555 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
15556 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
15557 {
aec5aa8b
TT
15558 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
15559 if ((fnp->voffset % cu->header.addr_size) != 0)
15560 dwarf2_complex_location_expr_complaint ();
15561 else
15562 fnp->voffset /= cu->header.addr_size;
15563 fnp->voffset += 2;
15564 }
15565 else
15566 dwarf2_complex_location_expr_complaint ();
15567
15568 if (!fnp->fcontext)
7e993ebf
KS
15569 {
15570 /* If there is no `this' field and no DW_AT_containing_type,
15571 we cannot actually find a base class context for the
15572 vtable! */
15573 if (TYPE_NFIELDS (this_type) == 0
15574 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
15575 {
b98664d3 15576 complaint (_("cannot determine context for virtual member "
9d8780f0
SM
15577 "function \"%s\" (offset %s)"),
15578 fieldname, sect_offset_str (die->sect_off));
7e993ebf
KS
15579 }
15580 else
15581 {
15582 fnp->fcontext
15583 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
15584 }
15585 }
aec5aa8b 15586 }
3690dd37 15587 else if (attr_form_is_section_offset (attr))
8e19ed76 15588 {
4d3c2250 15589 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
15590 }
15591 else
15592 {
4d3c2250
KB
15593 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
15594 fieldname);
8e19ed76 15595 }
0d564a31 15596 }
d48cc9dd
DJ
15597 else
15598 {
15599 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15600 if (attr && DW_UNSND (attr))
15601 {
15602 /* GCC does this, as of 2008-08-25; PR debug/37237. */
b98664d3 15603 complaint (_("Member function \"%s\" (offset %s) is virtual "
3e43a32a 15604 "but the vtable offset is not specified"),
9d8780f0 15605 fieldname, sect_offset_str (die->sect_off));
9655fd1a 15606 ALLOCATE_CPLUS_STRUCT_TYPE (type);
d48cc9dd
DJ
15607 TYPE_CPLUS_DYNAMIC (type) = 1;
15608 }
15609 }
c906108c
SS
15610}
15611
15612/* Create the vector of member function fields, and attach it to the type. */
15613
15614static void
fba45db2 15615dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15616 struct dwarf2_cu *cu)
c906108c 15617{
b4ba55a1 15618 if (cu->language == language_ada)
a73c6dcd 15619 error (_("unexpected member functions in Ada type"));
b4ba55a1 15620
c906108c
SS
15621 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15622 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
be2daae6
TT
15623 TYPE_ALLOC (type,
15624 sizeof (struct fn_fieldlist) * fip->fnfieldlists.size ());
c906108c 15625
be2daae6 15626 for (int i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15627 {
be2daae6 15628 struct fnfieldlist &nf = fip->fnfieldlists[i];
c906108c 15629 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
c906108c 15630
be2daae6
TT
15631 TYPE_FN_FIELDLIST_NAME (type, i) = nf.name;
15632 TYPE_FN_FIELDLIST_LENGTH (type, i) = nf.fnfields.size ();
c906108c 15633 fn_flp->fn_fields = (struct fn_field *)
be2daae6
TT
15634 TYPE_ALLOC (type, sizeof (struct fn_field) * nf.fnfields.size ());
15635
15636 for (int k = 0; k < nf.fnfields.size (); ++k)
15637 fn_flp->fn_fields[k] = nf.fnfields[k];
c906108c
SS
15638 }
15639
be2daae6 15640 TYPE_NFN_FIELDS (type) = fip->fnfieldlists.size ();
c906108c
SS
15641}
15642
1168df01
JB
15643/* Returns non-zero if NAME is the name of a vtable member in CU's
15644 language, zero otherwise. */
15645static int
15646is_vtable_name (const char *name, struct dwarf2_cu *cu)
15647{
15648 static const char vptr[] = "_vptr";
15649
9c37b5ae
TT
15650 /* Look for the C++ form of the vtable. */
15651 if (startswith (name, vptr) && is_cplus_marker (name[sizeof (vptr) - 1]))
1168df01
JB
15652 return 1;
15653
15654 return 0;
15655}
15656
c0dd20ea 15657/* GCC outputs unnamed structures that are really pointers to member
0b92b5bb
TT
15658 functions, with the ABI-specified layout. If TYPE describes
15659 such a structure, smash it into a member function type.
61049d3b
DJ
15660
15661 GCC shouldn't do this; it should just output pointer to member DIEs.
15662 This is GCC PR debug/28767. */
c0dd20ea 15663
0b92b5bb
TT
15664static void
15665quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
c0dd20ea 15666{
09e2d7c7 15667 struct type *pfn_type, *self_type, *new_type;
c0dd20ea
DJ
15668
15669 /* Check for a structure with no name and two children. */
0b92b5bb
TT
15670 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
15671 return;
c0dd20ea
DJ
15672
15673 /* Check for __pfn and __delta members. */
0b92b5bb
TT
15674 if (TYPE_FIELD_NAME (type, 0) == NULL
15675 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
15676 || TYPE_FIELD_NAME (type, 1) == NULL
15677 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
15678 return;
c0dd20ea
DJ
15679
15680 /* Find the type of the method. */
0b92b5bb 15681 pfn_type = TYPE_FIELD_TYPE (type, 0);
c0dd20ea
DJ
15682 if (pfn_type == NULL
15683 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
15684 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
0b92b5bb 15685 return;
c0dd20ea
DJ
15686
15687 /* Look for the "this" argument. */
15688 pfn_type = TYPE_TARGET_TYPE (pfn_type);
15689 if (TYPE_NFIELDS (pfn_type) == 0
0b92b5bb 15690 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
c0dd20ea 15691 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
0b92b5bb 15692 return;
c0dd20ea 15693
09e2d7c7 15694 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
0b92b5bb 15695 new_type = alloc_type (objfile);
09e2d7c7 15696 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
c0dd20ea
DJ
15697 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
15698 TYPE_VARARGS (pfn_type));
0b92b5bb 15699 smash_to_methodptr_type (type, new_type);
c0dd20ea 15700}
1168df01 15701
2b4424c3
TT
15702/* If the DIE has a DW_AT_alignment attribute, return its value, doing
15703 appropriate error checking and issuing complaints if there is a
15704 problem. */
15705
15706static ULONGEST
15707get_alignment (struct dwarf2_cu *cu, struct die_info *die)
15708{
15709 struct attribute *attr = dwarf2_attr (die, DW_AT_alignment, cu);
15710
15711 if (attr == nullptr)
15712 return 0;
15713
15714 if (!attr_form_is_constant (attr))
15715 {
b98664d3 15716 complaint (_("DW_AT_alignment must have constant form"
2b4424c3
TT
15717 " - DIE at %s [in module %s]"),
15718 sect_offset_str (die->sect_off),
15719 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15720 return 0;
15721 }
15722
15723 ULONGEST align;
15724 if (attr->form == DW_FORM_sdata)
15725 {
15726 LONGEST val = DW_SND (attr);
15727 if (val < 0)
15728 {
b98664d3 15729 complaint (_("DW_AT_alignment value must not be negative"
2b4424c3
TT
15730 " - DIE at %s [in module %s]"),
15731 sect_offset_str (die->sect_off),
15732 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15733 return 0;
15734 }
15735 align = val;
15736 }
15737 else
15738 align = DW_UNSND (attr);
15739
15740 if (align == 0)
15741 {
b98664d3 15742 complaint (_("DW_AT_alignment value must not be zero"
2b4424c3
TT
15743 " - DIE at %s [in module %s]"),
15744 sect_offset_str (die->sect_off),
15745 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15746 return 0;
15747 }
15748 if ((align & (align - 1)) != 0)
15749 {
b98664d3 15750 complaint (_("DW_AT_alignment value must be a power of 2"
2b4424c3
TT
15751 " - DIE at %s [in module %s]"),
15752 sect_offset_str (die->sect_off),
15753 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15754 return 0;
15755 }
15756
15757 return align;
15758}
15759
15760/* If the DIE has a DW_AT_alignment attribute, use its value to set
15761 the alignment for TYPE. */
15762
15763static void
15764maybe_set_alignment (struct dwarf2_cu *cu, struct die_info *die,
15765 struct type *type)
15766{
15767 if (!set_type_align (type, get_alignment (cu, die)))
b98664d3 15768 complaint (_("DW_AT_alignment value too large"
2b4424c3
TT
15769 " - DIE at %s [in module %s]"),
15770 sect_offset_str (die->sect_off),
15771 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15772}
685b1105 15773
c906108c 15774/* Called when we find the DIE that starts a structure or union scope
c767944b
DJ
15775 (definition) to create a type for the structure or union. Fill in
15776 the type's name and general properties; the members will not be
83655187
DE
15777 processed until process_structure_scope. A symbol table entry for
15778 the type will also not be done until process_structure_scope (assuming
15779 the type has a name).
c906108c 15780
c767944b
DJ
15781 NOTE: we need to call these functions regardless of whether or not the
15782 DIE has a DW_AT_name attribute, since it might be an anonymous
c906108c 15783 structure or union. This gets the type entered into our set of
83655187 15784 user defined types. */
c906108c 15785
f792889a 15786static struct type *
134d01f1 15787read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 15788{
518817b3 15789 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c
SS
15790 struct type *type;
15791 struct attribute *attr;
15d034d0 15792 const char *name;
c906108c 15793
348e048f
DE
15794 /* If the definition of this type lives in .debug_types, read that type.
15795 Don't follow DW_AT_specification though, that will take us back up
15796 the chain and we want to go down. */
45e58e77 15797 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
15798 if (attr)
15799 {
ac9ec31b 15800 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 15801
ac9ec31b 15802 /* The type's CU may not be the same as CU.
02142a6c 15803 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
15804 return set_die_type (die, type, cu);
15805 }
15806
c0dd20ea 15807 type = alloc_type (objfile);
c906108c 15808 INIT_CPLUS_SPECIFIC (type);
93311388 15809
39cbfefa
DJ
15810 name = dwarf2_name (die, cu);
15811 if (name != NULL)
c906108c 15812 {
987504bb 15813 if (cu->language == language_cplus
c44af4eb
TT
15814 || cu->language == language_d
15815 || cu->language == language_rust)
63d06c5c 15816 {
15d034d0 15817 const char *full_name = dwarf2_full_name (name, die, cu);
3da10d80
KS
15818
15819 /* dwarf2_full_name might have already finished building the DIE's
15820 type. If so, there is no need to continue. */
15821 if (get_die_type (die, cu) != NULL)
15822 return get_die_type (die, cu);
15823
e86ca25f 15824 TYPE_NAME (type) = full_name;
63d06c5c
DC
15825 }
15826 else
15827 {
d8151005
DJ
15828 /* The name is already allocated along with this objfile, so
15829 we don't need to duplicate it for the type. */
e86ca25f 15830 TYPE_NAME (type) = name;
63d06c5c 15831 }
c906108c
SS
15832 }
15833
15834 if (die->tag == DW_TAG_structure_type)
15835 {
15836 TYPE_CODE (type) = TYPE_CODE_STRUCT;
15837 }
15838 else if (die->tag == DW_TAG_union_type)
15839 {
15840 TYPE_CODE (type) = TYPE_CODE_UNION;
15841 }
2ddeaf8a
TT
15842 else if (die->tag == DW_TAG_variant_part)
15843 {
15844 TYPE_CODE (type) = TYPE_CODE_UNION;
15845 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
15846 }
c906108c
SS
15847 else
15848 {
4753d33b 15849 TYPE_CODE (type) = TYPE_CODE_STRUCT;
c906108c
SS
15850 }
15851
0cc2414c
TT
15852 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
15853 TYPE_DECLARED_CLASS (type) = 1;
15854
e142c38c 15855 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
15856 if (attr)
15857 {
155bfbd3
JB
15858 if (attr_form_is_constant (attr))
15859 TYPE_LENGTH (type) = DW_UNSND (attr);
15860 else
15861 {
15862 /* For the moment, dynamic type sizes are not supported
15863 by GDB's struct type. The actual size is determined
15864 on-demand when resolving the type of a given object,
15865 so set the type's length to zero for now. Otherwise,
15866 we record an expression as the length, and that expression
15867 could lead to a very large value, which could eventually
15868 lead to us trying to allocate that much memory when creating
15869 a value of that type. */
15870 TYPE_LENGTH (type) = 0;
15871 }
c906108c
SS
15872 }
15873 else
15874 {
15875 TYPE_LENGTH (type) = 0;
15876 }
15877
2b4424c3
TT
15878 maybe_set_alignment (cu, die, type);
15879
5230b05a 15880 if (producer_is_icc_lt_14 (cu) && (TYPE_LENGTH (type) == 0))
685b1105 15881 {
5230b05a
WT
15882 /* ICC<14 does not output the required DW_AT_declaration on
15883 incomplete types, but gives them a size of zero. */
422b1cb0 15884 TYPE_STUB (type) = 1;
685b1105
JK
15885 }
15886 else
15887 TYPE_STUB_SUPPORTED (type) = 1;
15888
dc718098 15889 if (die_is_declaration (die, cu))
876cecd0 15890 TYPE_STUB (type) = 1;
a6c727b2
DJ
15891 else if (attr == NULL && die->child == NULL
15892 && producer_is_realview (cu->producer))
15893 /* RealView does not output the required DW_AT_declaration
15894 on incomplete types. */
15895 TYPE_STUB (type) = 1;
dc718098 15896
c906108c
SS
15897 /* We need to add the type field to the die immediately so we don't
15898 infinitely recurse when dealing with pointers to the structure
0963b4bd 15899 type within the structure itself. */
1c379e20 15900 set_die_type (die, type, cu);
c906108c 15901
7e314c57
JK
15902 /* set_die_type should be already done. */
15903 set_descriptive_type (type, die, cu);
15904
c767944b
DJ
15905 return type;
15906}
15907
2ddeaf8a
TT
15908/* A helper for process_structure_scope that handles a single member
15909 DIE. */
15910
15911static void
15912handle_struct_member_die (struct die_info *child_die, struct type *type,
15913 struct field_info *fi,
15914 std::vector<struct symbol *> *template_args,
15915 struct dwarf2_cu *cu)
15916{
15917 if (child_die->tag == DW_TAG_member
15918 || child_die->tag == DW_TAG_variable
15919 || child_die->tag == DW_TAG_variant_part)
15920 {
15921 /* NOTE: carlton/2002-11-05: A C++ static data member
15922 should be a DW_TAG_member that is a declaration, but
15923 all versions of G++ as of this writing (so through at
15924 least 3.2.1) incorrectly generate DW_TAG_variable
15925 tags for them instead. */
15926 dwarf2_add_field (fi, child_die, cu);
15927 }
15928 else if (child_die->tag == DW_TAG_subprogram)
15929 {
15930 /* Rust doesn't have member functions in the C++ sense.
15931 However, it does emit ordinary functions as children
15932 of a struct DIE. */
15933 if (cu->language == language_rust)
15934 read_func_scope (child_die, cu);
15935 else
15936 {
15937 /* C++ member function. */
15938 dwarf2_add_member_fn (fi, child_die, type, cu);
15939 }
15940 }
15941 else if (child_die->tag == DW_TAG_inheritance)
15942 {
15943 /* C++ base class field. */
15944 dwarf2_add_field (fi, child_die, cu);
15945 }
15946 else if (type_can_define_types (child_die))
15947 dwarf2_add_type_defn (fi, child_die, cu);
15948 else if (child_die->tag == DW_TAG_template_type_param
15949 || child_die->tag == DW_TAG_template_value_param)
15950 {
15951 struct symbol *arg = new_symbol (child_die, NULL, cu);
15952
15953 if (arg != NULL)
15954 template_args->push_back (arg);
15955 }
15956 else if (child_die->tag == DW_TAG_variant)
15957 {
15958 /* In a variant we want to get the discriminant and also add a
15959 field for our sole member child. */
15960 struct attribute *discr = dwarf2_attr (child_die, DW_AT_discr_value, cu);
15961
15962 for (struct die_info *variant_child = child_die->child;
15963 variant_child != NULL;
15964 variant_child = sibling_die (variant_child))
15965 {
15966 if (variant_child->tag == DW_TAG_member)
15967 {
15968 handle_struct_member_die (variant_child, type, fi,
15969 template_args, cu);
15970 /* Only handle the one. */
15971 break;
15972 }
15973 }
15974
15975 /* We don't handle this but we might as well report it if we see
15976 it. */
15977 if (dwarf2_attr (child_die, DW_AT_discr_list, cu) != nullptr)
b98664d3 15978 complaint (_("DW_AT_discr_list is not supported yet"
2ddeaf8a
TT
15979 " - DIE at %s [in module %s]"),
15980 sect_offset_str (child_die->sect_off),
15981 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15982
15983 /* The first field was just added, so we can stash the
15984 discriminant there. */
be2daae6 15985 gdb_assert (!fi->fields.empty ());
2ddeaf8a 15986 if (discr == NULL)
be2daae6 15987 fi->fields.back ().variant.default_branch = true;
2ddeaf8a 15988 else
be2daae6 15989 fi->fields.back ().variant.discriminant_value = DW_UNSND (discr);
2ddeaf8a
TT
15990 }
15991}
15992
c767944b
DJ
15993/* Finish creating a structure or union type, including filling in
15994 its members and creating a symbol for it. */
15995
15996static void
15997process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
15998{
518817b3 15999 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
ca040673 16000 struct die_info *child_die;
c767944b
DJ
16001 struct type *type;
16002
16003 type = get_die_type (die, cu);
16004 if (type == NULL)
16005 type = read_structure_type (die, cu);
16006
2ddeaf8a
TT
16007 /* When reading a DW_TAG_variant_part, we need to notice when we
16008 read the discriminant member, so we can record it later in the
16009 discriminant_info. */
16010 bool is_variant_part = TYPE_FLAG_DISCRIMINATED_UNION (type);
16011 sect_offset discr_offset;
3e1d3d8c 16012 bool has_template_parameters = false;
2ddeaf8a
TT
16013
16014 if (is_variant_part)
16015 {
16016 struct attribute *discr = dwarf2_attr (die, DW_AT_discr, cu);
16017 if (discr == NULL)
16018 {
16019 /* Maybe it's a univariant form, an extension we support.
16020 In this case arrange not to check the offset. */
16021 is_variant_part = false;
16022 }
16023 else if (attr_form_is_ref (discr))
16024 {
16025 struct dwarf2_cu *target_cu = cu;
16026 struct die_info *target_die = follow_die_ref (die, discr, &target_cu);
16027
16028 discr_offset = target_die->sect_off;
16029 }
16030 else
16031 {
b98664d3 16032 complaint (_("DW_AT_discr does not have DIE reference form"
2ddeaf8a
TT
16033 " - DIE at %s [in module %s]"),
16034 sect_offset_str (die->sect_off),
16035 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
16036 is_variant_part = false;
16037 }
16038 }
16039
e142c38c 16040 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
16041 {
16042 struct field_info fi;
2f4732b0 16043 std::vector<struct symbol *> template_args;
c906108c 16044
639d11d3 16045 child_die = die->child;
c906108c
SS
16046
16047 while (child_die && child_die->tag)
16048 {
2ddeaf8a 16049 handle_struct_member_die (child_die, type, &fi, &template_args, cu);
34eaf542 16050
2ddeaf8a 16051 if (is_variant_part && discr_offset == child_die->sect_off)
be2daae6 16052 fi.fields.back ().variant.is_discriminant = true;
34eaf542 16053
c906108c
SS
16054 child_die = sibling_die (child_die);
16055 }
16056
34eaf542 16057 /* Attach template arguments to type. */
2f4732b0 16058 if (!template_args.empty ())
34eaf542 16059 {
3e1d3d8c 16060 has_template_parameters = true;
34eaf542 16061 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2f4732b0 16062 TYPE_N_TEMPLATE_ARGUMENTS (type) = template_args.size ();
34eaf542 16063 TYPE_TEMPLATE_ARGUMENTS (type)
8d749320
SM
16064 = XOBNEWVEC (&objfile->objfile_obstack,
16065 struct symbol *,
16066 TYPE_N_TEMPLATE_ARGUMENTS (type));
34eaf542 16067 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
2f4732b0 16068 template_args.data (),
34eaf542
TT
16069 (TYPE_N_TEMPLATE_ARGUMENTS (type)
16070 * sizeof (struct symbol *)));
34eaf542
TT
16071 }
16072
c906108c
SS
16073 /* Attach fields and member functions to the type. */
16074 if (fi.nfields)
e7c27a73 16075 dwarf2_attach_fields_to_type (&fi, type, cu);
be2daae6 16076 if (!fi.fnfieldlists.empty ())
c906108c 16077 {
e7c27a73 16078 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 16079
c5aa993b 16080 /* Get the type which refers to the base class (possibly this
c906108c 16081 class itself) which contains the vtable pointer for the current
0d564a31
DJ
16082 class from the DW_AT_containing_type attribute. This use of
16083 DW_AT_containing_type is a GNU extension. */
c906108c 16084
e142c38c 16085 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 16086 {
e7c27a73 16087 struct type *t = die_containing_type (die, cu);
c906108c 16088
ae6ae975 16089 set_type_vptr_basetype (type, t);
c906108c
SS
16090 if (type == t)
16091 {
c906108c
SS
16092 int i;
16093
16094 /* Our own class provides vtbl ptr. */
16095 for (i = TYPE_NFIELDS (t) - 1;
16096 i >= TYPE_N_BASECLASSES (t);
16097 --i)
16098 {
0d5cff50 16099 const char *fieldname = TYPE_FIELD_NAME (t, i);
c906108c 16100
1168df01 16101 if (is_vtable_name (fieldname, cu))
c906108c 16102 {
ae6ae975 16103 set_type_vptr_fieldno (type, i);
c906108c
SS
16104 break;
16105 }
16106 }
16107
16108 /* Complain if virtual function table field not found. */
16109 if (i < TYPE_N_BASECLASSES (t))
b98664d3 16110 complaint (_("virtual function table pointer "
3e43a32a 16111 "not found when defining class '%s'"),
e86ca25f 16112 TYPE_NAME (type) ? TYPE_NAME (type) : "");
c906108c
SS
16113 }
16114 else
16115 {
ae6ae975 16116 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
c906108c
SS
16117 }
16118 }
f6235d4c 16119 else if (cu->producer
61012eef 16120 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
f6235d4c
EZ
16121 {
16122 /* The IBM XLC compiler does not provide direct indication
16123 of the containing type, but the vtable pointer is
16124 always named __vfp. */
16125
16126 int i;
16127
16128 for (i = TYPE_NFIELDS (type) - 1;
16129 i >= TYPE_N_BASECLASSES (type);
16130 --i)
16131 {
16132 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
16133 {
ae6ae975
DE
16134 set_type_vptr_fieldno (type, i);
16135 set_type_vptr_basetype (type, type);
f6235d4c
EZ
16136 break;
16137 }
16138 }
16139 }
c906108c 16140 }
98751a41
JK
16141
16142 /* Copy fi.typedef_field_list linked list elements content into the
16143 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
be2daae6 16144 if (!fi.typedef_field_list.empty ())
98751a41 16145 {
be2daae6 16146 int count = fi.typedef_field_list.size ();
98751a41 16147
a0d7a4ff 16148 ALLOCATE_CPLUS_STRUCT_TYPE (type);
98751a41 16149 TYPE_TYPEDEF_FIELD_ARRAY (type)
883fd55a 16150 = ((struct decl_field *)
be2daae6
TT
16151 TYPE_ALLOC (type,
16152 sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * count));
16153 TYPE_TYPEDEF_FIELD_COUNT (type) = count;
6e70227d 16154
be2daae6
TT
16155 for (int i = 0; i < fi.typedef_field_list.size (); ++i)
16156 TYPE_TYPEDEF_FIELD (type, i) = fi.typedef_field_list[i];
98751a41 16157 }
c767944b 16158
883fd55a
KS
16159 /* Copy fi.nested_types_list linked list elements content into the
16160 allocated array TYPE_NESTED_TYPES_ARRAY (type). */
be2daae6 16161 if (!fi.nested_types_list.empty () && cu->language != language_ada)
883fd55a 16162 {
be2daae6 16163 int count = fi.nested_types_list.size ();
883fd55a
KS
16164
16165 ALLOCATE_CPLUS_STRUCT_TYPE (type);
16166 TYPE_NESTED_TYPES_ARRAY (type)
16167 = ((struct decl_field *)
be2daae6
TT
16168 TYPE_ALLOC (type, sizeof (struct decl_field) * count));
16169 TYPE_NESTED_TYPES_COUNT (type) = count;
883fd55a 16170
be2daae6
TT
16171 for (int i = 0; i < fi.nested_types_list.size (); ++i)
16172 TYPE_NESTED_TYPES_FIELD (type, i) = fi.nested_types_list[i];
883fd55a 16173 }
c906108c 16174 }
63d06c5c 16175
bb5ed363 16176 quirk_gcc_member_function_pointer (type, objfile);
c9317f21
TT
16177 if (cu->language == language_rust && die->tag == DW_TAG_union_type)
16178 cu->rust_unions.push_back (type);
0b92b5bb 16179
90aeadfc
DC
16180 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
16181 snapshots) has been known to create a die giving a declaration
16182 for a class that has, as a child, a die giving a definition for a
16183 nested class. So we have to process our children even if the
16184 current die is a declaration. Normally, of course, a declaration
16185 won't have any children at all. */
134d01f1 16186
ca040673
DE
16187 child_die = die->child;
16188
90aeadfc
DC
16189 while (child_die != NULL && child_die->tag)
16190 {
16191 if (child_die->tag == DW_TAG_member
16192 || child_die->tag == DW_TAG_variable
34eaf542
TT
16193 || child_die->tag == DW_TAG_inheritance
16194 || child_die->tag == DW_TAG_template_value_param
16195 || child_die->tag == DW_TAG_template_type_param)
134d01f1 16196 {
90aeadfc 16197 /* Do nothing. */
134d01f1 16198 }
90aeadfc
DC
16199 else
16200 process_die (child_die, cu);
134d01f1 16201
90aeadfc 16202 child_die = sibling_die (child_die);
134d01f1
DJ
16203 }
16204
fa4028e9
JB
16205 /* Do not consider external references. According to the DWARF standard,
16206 these DIEs are identified by the fact that they have no byte_size
16207 attribute, and a declaration attribute. */
16208 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
16209 || !die_is_declaration (die, cu))
3e1d3d8c
TT
16210 {
16211 struct symbol *sym = new_symbol (die, type, cu);
16212
16213 if (has_template_parameters)
16214 {
16215 /* Make sure that the symtab is set on the new symbols.
16216 Even though they don't appear in this symtab directly,
16217 other parts of gdb assume that symbols do, and this is
16218 reasonably true. */
16219 for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i)
16220 symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i),
16221 symbol_symtab (sym));
16222 }
16223 }
134d01f1
DJ
16224}
16225
55426c9d
JB
16226/* Assuming DIE is an enumeration type, and TYPE is its associated type,
16227 update TYPE using some information only available in DIE's children. */
16228
16229static void
16230update_enumeration_type_from_children (struct die_info *die,
16231 struct type *type,
16232 struct dwarf2_cu *cu)
16233{
60f7655a 16234 struct die_info *child_die;
55426c9d
JB
16235 int unsigned_enum = 1;
16236 int flag_enum = 1;
16237 ULONGEST mask = 0;
55426c9d 16238
8268c778 16239 auto_obstack obstack;
55426c9d 16240
60f7655a
DE
16241 for (child_die = die->child;
16242 child_die != NULL && child_die->tag;
16243 child_die = sibling_die (child_die))
55426c9d
JB
16244 {
16245 struct attribute *attr;
16246 LONGEST value;
16247 const gdb_byte *bytes;
16248 struct dwarf2_locexpr_baton *baton;
16249 const char *name;
60f7655a 16250
55426c9d
JB
16251 if (child_die->tag != DW_TAG_enumerator)
16252 continue;
16253
16254 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
16255 if (attr == NULL)
16256 continue;
16257
16258 name = dwarf2_name (child_die, cu);
16259 if (name == NULL)
16260 name = "<anonymous enumerator>";
16261
16262 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
16263 &value, &bytes, &baton);
16264 if (value < 0)
16265 {
16266 unsigned_enum = 0;
16267 flag_enum = 0;
16268 }
16269 else if ((mask & value) != 0)
16270 flag_enum = 0;
16271 else
16272 mask |= value;
16273
16274 /* If we already know that the enum type is neither unsigned, nor
16275 a flag type, no need to look at the rest of the enumerates. */
16276 if (!unsigned_enum && !flag_enum)
16277 break;
55426c9d
JB
16278 }
16279
16280 if (unsigned_enum)
16281 TYPE_UNSIGNED (type) = 1;
16282 if (flag_enum)
16283 TYPE_FLAG_ENUM (type) = 1;
55426c9d
JB
16284}
16285
134d01f1
DJ
16286/* Given a DW_AT_enumeration_type die, set its type. We do not
16287 complete the type's fields yet, or create any symbols. */
c906108c 16288
f792889a 16289static struct type *
134d01f1 16290read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16291{
518817b3 16292 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 16293 struct type *type;
c906108c 16294 struct attribute *attr;
0114d602 16295 const char *name;
134d01f1 16296
348e048f
DE
16297 /* If the definition of this type lives in .debug_types, read that type.
16298 Don't follow DW_AT_specification though, that will take us back up
16299 the chain and we want to go down. */
45e58e77 16300 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
16301 if (attr)
16302 {
ac9ec31b 16303 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 16304
ac9ec31b 16305 /* The type's CU may not be the same as CU.
02142a6c 16306 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
16307 return set_die_type (die, type, cu);
16308 }
16309
c906108c
SS
16310 type = alloc_type (objfile);
16311
16312 TYPE_CODE (type) = TYPE_CODE_ENUM;
94af9270 16313 name = dwarf2_full_name (NULL, die, cu);
39cbfefa 16314 if (name != NULL)
e86ca25f 16315 TYPE_NAME (type) = name;
c906108c 16316
0626fc76
TT
16317 attr = dwarf2_attr (die, DW_AT_type, cu);
16318 if (attr != NULL)
16319 {
16320 struct type *underlying_type = die_type (die, cu);
16321
16322 TYPE_TARGET_TYPE (type) = underlying_type;
16323 }
16324
e142c38c 16325 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
16326 if (attr)
16327 {
16328 TYPE_LENGTH (type) = DW_UNSND (attr);
16329 }
16330 else
16331 {
16332 TYPE_LENGTH (type) = 0;
16333 }
16334
2b4424c3
TT
16335 maybe_set_alignment (cu, die, type);
16336
137033e9
JB
16337 /* The enumeration DIE can be incomplete. In Ada, any type can be
16338 declared as private in the package spec, and then defined only
16339 inside the package body. Such types are known as Taft Amendment
16340 Types. When another package uses such a type, an incomplete DIE
16341 may be generated by the compiler. */
02eb380e 16342 if (die_is_declaration (die, cu))
876cecd0 16343 TYPE_STUB (type) = 1;
02eb380e 16344
0626fc76
TT
16345 /* Finish the creation of this type by using the enum's children.
16346 We must call this even when the underlying type has been provided
16347 so that we can determine if we're looking at a "flag" enum. */
55426c9d
JB
16348 update_enumeration_type_from_children (die, type, cu);
16349
0626fc76
TT
16350 /* If this type has an underlying type that is not a stub, then we
16351 may use its attributes. We always use the "unsigned" attribute
16352 in this situation, because ordinarily we guess whether the type
16353 is unsigned -- but the guess can be wrong and the underlying type
16354 can tell us the reality. However, we defer to a local size
16355 attribute if one exists, because this lets the compiler override
16356 the underlying type if needed. */
16357 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
16358 {
16359 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TYPE_TARGET_TYPE (type));
16360 if (TYPE_LENGTH (type) == 0)
16361 TYPE_LENGTH (type) = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
2b4424c3
TT
16362 if (TYPE_RAW_ALIGN (type) == 0
16363 && TYPE_RAW_ALIGN (TYPE_TARGET_TYPE (type)) != 0)
16364 set_type_align (type, TYPE_RAW_ALIGN (TYPE_TARGET_TYPE (type)));
0626fc76
TT
16365 }
16366
3d567982
TT
16367 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
16368
f792889a 16369 return set_die_type (die, type, cu);
134d01f1
DJ
16370}
16371
16372/* Given a pointer to a die which begins an enumeration, process all
16373 the dies that define the members of the enumeration, and create the
16374 symbol for the enumeration type.
16375
16376 NOTE: We reverse the order of the element list. */
16377
16378static void
16379process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
16380{
f792889a 16381 struct type *this_type;
134d01f1 16382
f792889a
DJ
16383 this_type = get_die_type (die, cu);
16384 if (this_type == NULL)
16385 this_type = read_enumeration_type (die, cu);
9dc481d3 16386
639d11d3 16387 if (die->child != NULL)
c906108c 16388 {
9dc481d3
DE
16389 struct die_info *child_die;
16390 struct symbol *sym;
16391 struct field *fields = NULL;
16392 int num_fields = 0;
15d034d0 16393 const char *name;
9dc481d3 16394
639d11d3 16395 child_die = die->child;
c906108c
SS
16396 while (child_die && child_die->tag)
16397 {
16398 if (child_die->tag != DW_TAG_enumerator)
16399 {
e7c27a73 16400 process_die (child_die, cu);
c906108c
SS
16401 }
16402 else
16403 {
39cbfefa
DJ
16404 name = dwarf2_name (child_die, cu);
16405 if (name)
c906108c 16406 {
f792889a 16407 sym = new_symbol (child_die, this_type, cu);
c906108c
SS
16408
16409 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
16410 {
16411 fields = (struct field *)
16412 xrealloc (fields,
16413 (num_fields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 16414 * sizeof (struct field));
c906108c
SS
16415 }
16416
3567439c 16417 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
c906108c 16418 FIELD_TYPE (fields[num_fields]) = NULL;
14e75d8e 16419 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
c906108c
SS
16420 FIELD_BITSIZE (fields[num_fields]) = 0;
16421
16422 num_fields++;
16423 }
16424 }
16425
16426 child_die = sibling_die (child_die);
16427 }
16428
16429 if (num_fields)
16430 {
f792889a
DJ
16431 TYPE_NFIELDS (this_type) = num_fields;
16432 TYPE_FIELDS (this_type) = (struct field *)
16433 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
16434 memcpy (TYPE_FIELDS (this_type), fields,
c906108c 16435 sizeof (struct field) * num_fields);
b8c9b27d 16436 xfree (fields);
c906108c 16437 }
c906108c 16438 }
134d01f1 16439
6c83ed52
TT
16440 /* If we are reading an enum from a .debug_types unit, and the enum
16441 is a declaration, and the enum is not the signatured type in the
16442 unit, then we do not want to add a symbol for it. Adding a
16443 symbol would in some cases obscure the true definition of the
16444 enum, giving users an incomplete type when the definition is
16445 actually available. Note that we do not want to do this for all
16446 enums which are just declarations, because C++0x allows forward
16447 enum declarations. */
3019eac3 16448 if (cu->per_cu->is_debug_types
6c83ed52
TT
16449 && die_is_declaration (die, cu))
16450 {
52dc124a 16451 struct signatured_type *sig_type;
6c83ed52 16452
c0f78cd4 16453 sig_type = (struct signatured_type *) cu->per_cu;
9c541725
PA
16454 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
16455 if (sig_type->type_offset_in_section != die->sect_off)
6c83ed52
TT
16456 return;
16457 }
16458
f792889a 16459 new_symbol (die, this_type, cu);
c906108c
SS
16460}
16461
16462/* Extract all information from a DW_TAG_array_type DIE and put it in
16463 the DIE's type field. For now, this only handles one dimensional
16464 arrays. */
16465
f792889a 16466static struct type *
e7c27a73 16467read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16468{
518817b3 16469 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 16470 struct die_info *child_die;
7e314c57 16471 struct type *type;
c906108c 16472 struct type *element_type, *range_type, *index_type;
c906108c 16473 struct attribute *attr;
15d034d0 16474 const char *name;
a405673c 16475 struct dynamic_prop *byte_stride_prop = NULL;
dc53a7ad 16476 unsigned int bit_stride = 0;
c906108c 16477
e7c27a73 16478 element_type = die_type (die, cu);
c906108c 16479
7e314c57
JK
16480 /* The die_type call above may have already set the type for this DIE. */
16481 type = get_die_type (die, cu);
16482 if (type)
16483 return type;
16484
dc53a7ad
JB
16485 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
16486 if (attr != NULL)
a405673c
JB
16487 {
16488 int stride_ok;
16489
16490 byte_stride_prop
16491 = (struct dynamic_prop *) alloca (sizeof (struct dynamic_prop));
16492 stride_ok = attr_to_dynamic_prop (attr, die, cu, byte_stride_prop);
16493 if (!stride_ok)
16494 {
b98664d3 16495 complaint (_("unable to read array DW_AT_byte_stride "
9d8780f0
SM
16496 " - DIE at %s [in module %s]"),
16497 sect_offset_str (die->sect_off),
518817b3 16498 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
a405673c
JB
16499 /* Ignore this attribute. We will likely not be able to print
16500 arrays of this type correctly, but there is little we can do
16501 to help if we cannot read the attribute's value. */
16502 byte_stride_prop = NULL;
16503 }
16504 }
dc53a7ad
JB
16505
16506 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
16507 if (attr != NULL)
16508 bit_stride = DW_UNSND (attr);
16509
c906108c
SS
16510 /* Irix 6.2 native cc creates array types without children for
16511 arrays with unspecified length. */
639d11d3 16512 if (die->child == NULL)
c906108c 16513 {
46bf5051 16514 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 16515 range_type = create_static_range_type (NULL, index_type, 0, -1);
dc53a7ad 16516 type = create_array_type_with_stride (NULL, element_type, range_type,
a405673c 16517 byte_stride_prop, bit_stride);
f792889a 16518 return set_die_type (die, type, cu);
c906108c
SS
16519 }
16520
791afaa2 16521 std::vector<struct type *> range_types;
639d11d3 16522 child_die = die->child;
c906108c
SS
16523 while (child_die && child_die->tag)
16524 {
16525 if (child_die->tag == DW_TAG_subrange_type)
16526 {
f792889a 16527 struct type *child_type = read_type_die (child_die, cu);
9a619af0 16528
f792889a 16529 if (child_type != NULL)
a02abb62 16530 {
0963b4bd
MS
16531 /* The range type was succesfully read. Save it for the
16532 array type creation. */
791afaa2 16533 range_types.push_back (child_type);
a02abb62 16534 }
c906108c
SS
16535 }
16536 child_die = sibling_die (child_die);
16537 }
16538
16539 /* Dwarf2 dimensions are output from left to right, create the
16540 necessary array types in backwards order. */
7ca2d3a3 16541
c906108c 16542 type = element_type;
7ca2d3a3
DL
16543
16544 if (read_array_order (die, cu) == DW_ORD_col_major)
16545 {
16546 int i = 0;
9a619af0 16547
791afaa2 16548 while (i < range_types.size ())
dc53a7ad 16549 type = create_array_type_with_stride (NULL, type, range_types[i++],
a405673c 16550 byte_stride_prop, bit_stride);
7ca2d3a3
DL
16551 }
16552 else
16553 {
791afaa2 16554 size_t ndim = range_types.size ();
7ca2d3a3 16555 while (ndim-- > 0)
dc53a7ad 16556 type = create_array_type_with_stride (NULL, type, range_types[ndim],
a405673c 16557 byte_stride_prop, bit_stride);
7ca2d3a3 16558 }
c906108c 16559
f5f8a009
EZ
16560 /* Understand Dwarf2 support for vector types (like they occur on
16561 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
16562 array type. This is not part of the Dwarf2/3 standard yet, but a
16563 custom vendor extension. The main difference between a regular
16564 array and the vector variant is that vectors are passed by value
16565 to functions. */
e142c38c 16566 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
f5f8a009 16567 if (attr)
ea37ba09 16568 make_vector_type (type);
f5f8a009 16569
dbc98a8b
KW
16570 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
16571 implementation may choose to implement triple vectors using this
16572 attribute. */
16573 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
16574 if (attr)
16575 {
16576 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
16577 TYPE_LENGTH (type) = DW_UNSND (attr);
16578 else
b98664d3 16579 complaint (_("DW_AT_byte_size for array type smaller "
3e43a32a 16580 "than the total size of elements"));
dbc98a8b
KW
16581 }
16582
39cbfefa
DJ
16583 name = dwarf2_name (die, cu);
16584 if (name)
16585 TYPE_NAME (type) = name;
6e70227d 16586
2b4424c3
TT
16587 maybe_set_alignment (cu, die, type);
16588
0963b4bd 16589 /* Install the type in the die. */
7e314c57
JK
16590 set_die_type (die, type, cu);
16591
16592 /* set_die_type should be already done. */
b4ba55a1
JB
16593 set_descriptive_type (type, die, cu);
16594
7e314c57 16595 return type;
c906108c
SS
16596}
16597
7ca2d3a3 16598static enum dwarf_array_dim_ordering
6e70227d 16599read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7ca2d3a3
DL
16600{
16601 struct attribute *attr;
16602
16603 attr = dwarf2_attr (die, DW_AT_ordering, cu);
16604
aead7601
SM
16605 if (attr)
16606 return (enum dwarf_array_dim_ordering) DW_SND (attr);
7ca2d3a3 16607
0963b4bd
MS
16608 /* GNU F77 is a special case, as at 08/2004 array type info is the
16609 opposite order to the dwarf2 specification, but data is still
16610 laid out as per normal fortran.
7ca2d3a3 16611
0963b4bd
MS
16612 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
16613 version checking. */
7ca2d3a3 16614
905e0470
PM
16615 if (cu->language == language_fortran
16616 && cu->producer && strstr (cu->producer, "GNU F77"))
7ca2d3a3
DL
16617 {
16618 return DW_ORD_row_major;
16619 }
16620
6e70227d 16621 switch (cu->language_defn->la_array_ordering)
7ca2d3a3
DL
16622 {
16623 case array_column_major:
16624 return DW_ORD_col_major;
16625 case array_row_major:
16626 default:
16627 return DW_ORD_row_major;
16628 };
16629}
16630
72019c9c 16631/* Extract all information from a DW_TAG_set_type DIE and put it in
0963b4bd 16632 the DIE's type field. */
72019c9c 16633
f792889a 16634static struct type *
72019c9c
GM
16635read_set_type (struct die_info *die, struct dwarf2_cu *cu)
16636{
7e314c57
JK
16637 struct type *domain_type, *set_type;
16638 struct attribute *attr;
f792889a 16639
7e314c57
JK
16640 domain_type = die_type (die, cu);
16641
16642 /* The die_type call above may have already set the type for this DIE. */
16643 set_type = get_die_type (die, cu);
16644 if (set_type)
16645 return set_type;
16646
16647 set_type = create_set_type (NULL, domain_type);
16648
16649 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
d09039dd
PM
16650 if (attr)
16651 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7e314c57 16652
2b4424c3
TT
16653 maybe_set_alignment (cu, die, set_type);
16654
f792889a 16655 return set_die_type (die, set_type, cu);
72019c9c 16656}
7ca2d3a3 16657
0971de02
TT
16658/* A helper for read_common_block that creates a locexpr baton.
16659 SYM is the symbol which we are marking as computed.
16660 COMMON_DIE is the DIE for the common block.
16661 COMMON_LOC is the location expression attribute for the common
16662 block itself.
16663 MEMBER_LOC is the location expression attribute for the particular
16664 member of the common block that we are processing.
16665 CU is the CU from which the above come. */
16666
16667static void
16668mark_common_block_symbol_computed (struct symbol *sym,
16669 struct die_info *common_die,
16670 struct attribute *common_loc,
16671 struct attribute *member_loc,
16672 struct dwarf2_cu *cu)
16673{
518817b3
SM
16674 struct dwarf2_per_objfile *dwarf2_per_objfile
16675 = cu->per_cu->dwarf2_per_objfile;
0971de02
TT
16676 struct objfile *objfile = dwarf2_per_objfile->objfile;
16677 struct dwarf2_locexpr_baton *baton;
16678 gdb_byte *ptr;
16679 unsigned int cu_off;
16680 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
16681 LONGEST offset = 0;
16682
16683 gdb_assert (common_loc && member_loc);
16684 gdb_assert (attr_form_is_block (common_loc));
16685 gdb_assert (attr_form_is_block (member_loc)
16686 || attr_form_is_constant (member_loc));
16687
8d749320 16688 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
0971de02
TT
16689 baton->per_cu = cu->per_cu;
16690 gdb_assert (baton->per_cu);
16691
16692 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
16693
16694 if (attr_form_is_constant (member_loc))
16695 {
16696 offset = dwarf2_get_attr_constant_value (member_loc, 0);
16697 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
16698 }
16699 else
16700 baton->size += DW_BLOCK (member_loc)->size;
16701
224c3ddb 16702 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
0971de02
TT
16703 baton->data = ptr;
16704
16705 *ptr++ = DW_OP_call4;
9c541725 16706 cu_off = common_die->sect_off - cu->per_cu->sect_off;
0971de02
TT
16707 store_unsigned_integer (ptr, 4, byte_order, cu_off);
16708 ptr += 4;
16709
16710 if (attr_form_is_constant (member_loc))
16711 {
16712 *ptr++ = DW_OP_addr;
16713 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
16714 ptr += cu->header.addr_size;
16715 }
16716 else
16717 {
16718 /* We have to copy the data here, because DW_OP_call4 will only
16719 use a DW_AT_location attribute. */
16720 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
16721 ptr += DW_BLOCK (member_loc)->size;
16722 }
16723
16724 *ptr++ = DW_OP_plus;
16725 gdb_assert (ptr - baton->data == baton->size);
16726
0971de02 16727 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 16728 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
0971de02
TT
16729}
16730
4357ac6c
TT
16731/* Create appropriate locally-scoped variables for all the
16732 DW_TAG_common_block entries. Also create a struct common_block
16733 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
16734 is used to sepate the common blocks name namespace from regular
16735 variable names. */
c906108c
SS
16736
16737static void
e7c27a73 16738read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16739{
0971de02
TT
16740 struct attribute *attr;
16741
16742 attr = dwarf2_attr (die, DW_AT_location, cu);
16743 if (attr)
16744 {
16745 /* Support the .debug_loc offsets. */
16746 if (attr_form_is_block (attr))
16747 {
16748 /* Ok. */
16749 }
16750 else if (attr_form_is_section_offset (attr))
16751 {
16752 dwarf2_complex_location_expr_complaint ();
16753 attr = NULL;
16754 }
16755 else
16756 {
16757 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
16758 "common block member");
16759 attr = NULL;
16760 }
16761 }
16762
639d11d3 16763 if (die->child != NULL)
c906108c 16764 {
518817b3 16765 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
4357ac6c
TT
16766 struct die_info *child_die;
16767 size_t n_entries = 0, size;
16768 struct common_block *common_block;
16769 struct symbol *sym;
74ac6d43 16770
4357ac6c
TT
16771 for (child_die = die->child;
16772 child_die && child_die->tag;
16773 child_die = sibling_die (child_die))
16774 ++n_entries;
16775
16776 size = (sizeof (struct common_block)
16777 + (n_entries - 1) * sizeof (struct symbol *));
224c3ddb
SM
16778 common_block
16779 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
16780 size);
4357ac6c
TT
16781 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
16782 common_block->n_entries = 0;
16783
16784 for (child_die = die->child;
16785 child_die && child_die->tag;
16786 child_die = sibling_die (child_die))
16787 {
16788 /* Create the symbol in the DW_TAG_common_block block in the current
16789 symbol scope. */
e7c27a73 16790 sym = new_symbol (child_die, NULL, cu);
0971de02
TT
16791 if (sym != NULL)
16792 {
16793 struct attribute *member_loc;
16794
16795 common_block->contents[common_block->n_entries++] = sym;
16796
16797 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
16798 cu);
16799 if (member_loc)
16800 {
16801 /* GDB has handled this for a long time, but it is
16802 not specified by DWARF. It seems to have been
16803 emitted by gfortran at least as recently as:
16804 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
b98664d3 16805 complaint (_("Variable in common block has "
0971de02 16806 "DW_AT_data_member_location "
9d8780f0
SM
16807 "- DIE at %s [in module %s]"),
16808 sect_offset_str (child_die->sect_off),
518817b3 16809 objfile_name (objfile));
0971de02
TT
16810
16811 if (attr_form_is_section_offset (member_loc))
16812 dwarf2_complex_location_expr_complaint ();
16813 else if (attr_form_is_constant (member_loc)
16814 || attr_form_is_block (member_loc))
16815 {
16816 if (attr)
16817 mark_common_block_symbol_computed (sym, die, attr,
16818 member_loc, cu);
16819 }
16820 else
16821 dwarf2_complex_location_expr_complaint ();
16822 }
16823 }
c906108c 16824 }
4357ac6c
TT
16825
16826 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
16827 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
c906108c
SS
16828 }
16829}
16830
0114d602 16831/* Create a type for a C++ namespace. */
d9fa45fe 16832
0114d602
DJ
16833static struct type *
16834read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 16835{
518817b3 16836 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 16837 const char *previous_prefix, *name;
9219021c 16838 int is_anonymous;
0114d602
DJ
16839 struct type *type;
16840
16841 /* For extensions, reuse the type of the original namespace. */
16842 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
16843 {
16844 struct die_info *ext_die;
16845 struct dwarf2_cu *ext_cu = cu;
9a619af0 16846
0114d602
DJ
16847 ext_die = dwarf2_extension (die, &ext_cu);
16848 type = read_type_die (ext_die, ext_cu);
9dc481d3
DE
16849
16850 /* EXT_CU may not be the same as CU.
02142a6c 16851 Ensure TYPE is recorded with CU in die_type_hash. */
0114d602
DJ
16852 return set_die_type (die, type, cu);
16853 }
9219021c 16854
e142c38c 16855 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
16856
16857 /* Now build the name of the current namespace. */
16858
0114d602
DJ
16859 previous_prefix = determine_prefix (die, cu);
16860 if (previous_prefix[0] != '\0')
16861 name = typename_concat (&objfile->objfile_obstack,
f55ee35c 16862 previous_prefix, name, 0, cu);
0114d602
DJ
16863
16864 /* Create the type. */
19f392bc 16865 type = init_type (objfile, TYPE_CODE_NAMESPACE, 0, name);
0114d602 16866
60531b24 16867 return set_die_type (die, type, cu);
0114d602
DJ
16868}
16869
22cee43f 16870/* Read a namespace scope. */
0114d602
DJ
16871
16872static void
16873read_namespace (struct die_info *die, struct dwarf2_cu *cu)
16874{
518817b3 16875 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 16876 int is_anonymous;
9219021c 16877
5c4e30ca
DC
16878 /* Add a symbol associated to this if we haven't seen the namespace
16879 before. Also, add a using directive if it's an anonymous
16880 namespace. */
9219021c 16881
f2f0e013 16882 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5c4e30ca
DC
16883 {
16884 struct type *type;
16885
0114d602 16886 type = read_type_die (die, cu);
e7c27a73 16887 new_symbol (die, type, cu);
5c4e30ca 16888
e8e80198 16889 namespace_name (die, &is_anonymous, cu);
5c4e30ca 16890 if (is_anonymous)
0114d602
DJ
16891 {
16892 const char *previous_prefix = determine_prefix (die, cu);
9a619af0 16893
eb1e02fd 16894 std::vector<const char *> excludes;
804d2729 16895 add_using_directive (using_directives (cu),
22cee43f 16896 previous_prefix, TYPE_NAME (type), NULL,
eb1e02fd 16897 NULL, excludes, 0, &objfile->objfile_obstack);
0114d602 16898 }
5c4e30ca 16899 }
9219021c 16900
639d11d3 16901 if (die->child != NULL)
d9fa45fe 16902 {
639d11d3 16903 struct die_info *child_die = die->child;
6e70227d 16904
d9fa45fe
DC
16905 while (child_die && child_die->tag)
16906 {
e7c27a73 16907 process_die (child_die, cu);
d9fa45fe
DC
16908 child_die = sibling_die (child_die);
16909 }
16910 }
38d518c9
EZ
16911}
16912
f55ee35c
JK
16913/* Read a Fortran module as type. This DIE can be only a declaration used for
16914 imported module. Still we need that type as local Fortran "use ... only"
16915 declaration imports depend on the created type in determine_prefix. */
16916
16917static struct type *
16918read_module_type (struct die_info *die, struct dwarf2_cu *cu)
16919{
518817b3 16920 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15d034d0 16921 const char *module_name;
f55ee35c
JK
16922 struct type *type;
16923
16924 module_name = dwarf2_name (die, cu);
16925 if (!module_name)
b98664d3 16926 complaint (_("DW_TAG_module has no name, offset %s"),
9d8780f0 16927 sect_offset_str (die->sect_off));
19f392bc 16928 type = init_type (objfile, TYPE_CODE_MODULE, 0, module_name);
f55ee35c 16929
f55ee35c
JK
16930 return set_die_type (die, type, cu);
16931}
16932
5d7cb8df
JK
16933/* Read a Fortran module. */
16934
16935static void
16936read_module (struct die_info *die, struct dwarf2_cu *cu)
16937{
16938 struct die_info *child_die = die->child;
530e8392
KB
16939 struct type *type;
16940
16941 type = read_type_die (die, cu);
16942 new_symbol (die, type, cu);
5d7cb8df 16943
5d7cb8df
JK
16944 while (child_die && child_die->tag)
16945 {
16946 process_die (child_die, cu);
16947 child_die = sibling_die (child_die);
16948 }
16949}
16950
38d518c9
EZ
16951/* Return the name of the namespace represented by DIE. Set
16952 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
16953 namespace. */
16954
16955static const char *
e142c38c 16956namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
16957{
16958 struct die_info *current_die;
16959 const char *name = NULL;
16960
16961 /* Loop through the extensions until we find a name. */
16962
16963 for (current_die = die;
16964 current_die != NULL;
f2f0e013 16965 current_die = dwarf2_extension (die, &cu))
38d518c9 16966 {
96553a0c
DE
16967 /* We don't use dwarf2_name here so that we can detect the absence
16968 of a name -> anonymous namespace. */
7d45c7c3 16969 name = dwarf2_string_attr (die, DW_AT_name, cu);
96553a0c 16970
38d518c9
EZ
16971 if (name != NULL)
16972 break;
16973 }
16974
16975 /* Is it an anonymous namespace? */
16976
16977 *is_anonymous = (name == NULL);
16978 if (*is_anonymous)
2b1dbab0 16979 name = CP_ANONYMOUS_NAMESPACE_STR;
38d518c9
EZ
16980
16981 return name;
d9fa45fe
DC
16982}
16983
c906108c
SS
16984/* Extract all information from a DW_TAG_pointer_type DIE and add to
16985 the user defined type vector. */
16986
f792889a 16987static struct type *
e7c27a73 16988read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16989{
518817b3
SM
16990 struct gdbarch *gdbarch
16991 = get_objfile_arch (cu->per_cu->dwarf2_per_objfile->objfile);
e7c27a73 16992 struct comp_unit_head *cu_header = &cu->header;
c906108c 16993 struct type *type;
8b2dbe47
KB
16994 struct attribute *attr_byte_size;
16995 struct attribute *attr_address_class;
16996 int byte_size, addr_class;
7e314c57
JK
16997 struct type *target_type;
16998
16999 target_type = die_type (die, cu);
c906108c 17000
7e314c57
JK
17001 /* The die_type call above may have already set the type for this DIE. */
17002 type = get_die_type (die, cu);
17003 if (type)
17004 return type;
17005
17006 type = lookup_pointer_type (target_type);
8b2dbe47 17007
e142c38c 17008 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
17009 if (attr_byte_size)
17010 byte_size = DW_UNSND (attr_byte_size);
c906108c 17011 else
8b2dbe47
KB
17012 byte_size = cu_header->addr_size;
17013
e142c38c 17014 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
17015 if (attr_address_class)
17016 addr_class = DW_UNSND (attr_address_class);
17017 else
17018 addr_class = DW_ADDR_none;
17019
2b4424c3
TT
17020 ULONGEST alignment = get_alignment (cu, die);
17021
17022 /* If the pointer size, alignment, or address class is different
17023 than the default, create a type variant marked as such and set
17024 the length accordingly. */
17025 if (TYPE_LENGTH (type) != byte_size
17026 || (alignment != 0 && TYPE_RAW_ALIGN (type) != 0
17027 && alignment != TYPE_RAW_ALIGN (type))
17028 || addr_class != DW_ADDR_none)
c906108c 17029 {
5e2b427d 17030 if (gdbarch_address_class_type_flags_p (gdbarch))
8b2dbe47
KB
17031 {
17032 int type_flags;
17033
849957d9 17034 type_flags = gdbarch_address_class_type_flags
5e2b427d 17035 (gdbarch, byte_size, addr_class);
876cecd0
TT
17036 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
17037 == 0);
8b2dbe47
KB
17038 type = make_type_with_address_space (type, type_flags);
17039 }
17040 else if (TYPE_LENGTH (type) != byte_size)
17041 {
b98664d3 17042 complaint (_("invalid pointer size %d"), byte_size);
8b2dbe47 17043 }
2b4424c3
TT
17044 else if (TYPE_RAW_ALIGN (type) != alignment)
17045 {
b98664d3 17046 complaint (_("Invalid DW_AT_alignment"
2b4424c3
TT
17047 " - DIE at %s [in module %s]"),
17048 sect_offset_str (die->sect_off),
17049 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17050 }
6e70227d 17051 else
9a619af0
MS
17052 {
17053 /* Should we also complain about unhandled address classes? */
17054 }
c906108c 17055 }
8b2dbe47
KB
17056
17057 TYPE_LENGTH (type) = byte_size;
2b4424c3 17058 set_type_align (type, alignment);
f792889a 17059 return set_die_type (die, type, cu);
c906108c
SS
17060}
17061
17062/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
17063 the user defined type vector. */
17064
f792889a 17065static struct type *
e7c27a73 17066read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
17067{
17068 struct type *type;
17069 struct type *to_type;
17070 struct type *domain;
17071
e7c27a73
DJ
17072 to_type = die_type (die, cu);
17073 domain = die_containing_type (die, cu);
0d5de010 17074
7e314c57
JK
17075 /* The calls above may have already set the type for this DIE. */
17076 type = get_die_type (die, cu);
17077 if (type)
17078 return type;
17079
0d5de010
DJ
17080 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
17081 type = lookup_methodptr_type (to_type);
7078baeb
TT
17082 else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
17083 {
518817b3
SM
17084 struct type *new_type
17085 = alloc_type (cu->per_cu->dwarf2_per_objfile->objfile);
7078baeb
TT
17086
17087 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
17088 TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
17089 TYPE_VARARGS (to_type));
17090 type = lookup_methodptr_type (new_type);
17091 }
0d5de010
DJ
17092 else
17093 type = lookup_memberptr_type (to_type, domain);
c906108c 17094
f792889a 17095 return set_die_type (die, type, cu);
c906108c
SS
17096}
17097
4297a3f0 17098/* Extract all information from a DW_TAG_{rvalue_,}reference_type DIE and add to
c906108c
SS
17099 the user defined type vector. */
17100
f792889a 17101static struct type *
4297a3f0
AV
17102read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu,
17103 enum type_code refcode)
c906108c 17104{
e7c27a73 17105 struct comp_unit_head *cu_header = &cu->header;
7e314c57 17106 struct type *type, *target_type;
c906108c
SS
17107 struct attribute *attr;
17108
4297a3f0
AV
17109 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
17110
7e314c57
JK
17111 target_type = die_type (die, cu);
17112
17113 /* The die_type call above may have already set the type for this DIE. */
17114 type = get_die_type (die, cu);
17115 if (type)
17116 return type;
17117
4297a3f0 17118 type = lookup_reference_type (target_type, refcode);
e142c38c 17119 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
17120 if (attr)
17121 {
17122 TYPE_LENGTH (type) = DW_UNSND (attr);
17123 }
17124 else
17125 {
107d2387 17126 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 17127 }
2b4424c3 17128 maybe_set_alignment (cu, die, type);
f792889a 17129 return set_die_type (die, type, cu);
c906108c
SS
17130}
17131
cf363f18
MW
17132/* Add the given cv-qualifiers to the element type of the array. GCC
17133 outputs DWARF type qualifiers that apply to an array, not the
17134 element type. But GDB relies on the array element type to carry
17135 the cv-qualifiers. This mimics section 6.7.3 of the C99
17136 specification. */
17137
17138static struct type *
17139add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
17140 struct type *base_type, int cnst, int voltl)
17141{
17142 struct type *el_type, *inner_array;
17143
17144 base_type = copy_type (base_type);
17145 inner_array = base_type;
17146
17147 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
17148 {
17149 TYPE_TARGET_TYPE (inner_array) =
17150 copy_type (TYPE_TARGET_TYPE (inner_array));
17151 inner_array = TYPE_TARGET_TYPE (inner_array);
17152 }
17153
17154 el_type = TYPE_TARGET_TYPE (inner_array);
17155 cnst |= TYPE_CONST (el_type);
17156 voltl |= TYPE_VOLATILE (el_type);
17157 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
17158
17159 return set_die_type (die, base_type, cu);
17160}
17161
f792889a 17162static struct type *
e7c27a73 17163read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17164{
f792889a 17165 struct type *base_type, *cv_type;
c906108c 17166
e7c27a73 17167 base_type = die_type (die, cu);
7e314c57
JK
17168
17169 /* The die_type call above may have already set the type for this DIE. */
17170 cv_type = get_die_type (die, cu);
17171 if (cv_type)
17172 return cv_type;
17173
2f608a3a
KW
17174 /* In case the const qualifier is applied to an array type, the element type
17175 is so qualified, not the array type (section 6.7.3 of C99). */
17176 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
cf363f18 17177 return add_array_cv_type (die, cu, base_type, 1, 0);
2f608a3a 17178
f792889a
DJ
17179 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
17180 return set_die_type (die, cv_type, cu);
c906108c
SS
17181}
17182
f792889a 17183static struct type *
e7c27a73 17184read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17185{
f792889a 17186 struct type *base_type, *cv_type;
c906108c 17187
e7c27a73 17188 base_type = die_type (die, cu);
7e314c57
JK
17189
17190 /* The die_type call above may have already set the type for this DIE. */
17191 cv_type = get_die_type (die, cu);
17192 if (cv_type)
17193 return cv_type;
17194
cf363f18
MW
17195 /* In case the volatile qualifier is applied to an array type, the
17196 element type is so qualified, not the array type (section 6.7.3
17197 of C99). */
17198 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
17199 return add_array_cv_type (die, cu, base_type, 0, 1);
17200
f792889a
DJ
17201 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
17202 return set_die_type (die, cv_type, cu);
c906108c
SS
17203}
17204
06d66ee9
TT
17205/* Handle DW_TAG_restrict_type. */
17206
17207static struct type *
17208read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
17209{
17210 struct type *base_type, *cv_type;
17211
17212 base_type = die_type (die, cu);
17213
17214 /* The die_type call above may have already set the type for this DIE. */
17215 cv_type = get_die_type (die, cu);
17216 if (cv_type)
17217 return cv_type;
17218
17219 cv_type = make_restrict_type (base_type);
17220 return set_die_type (die, cv_type, cu);
17221}
17222
a2c2acaf
MW
17223/* Handle DW_TAG_atomic_type. */
17224
17225static struct type *
17226read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
17227{
17228 struct type *base_type, *cv_type;
17229
17230 base_type = die_type (die, cu);
17231
17232 /* The die_type call above may have already set the type for this DIE. */
17233 cv_type = get_die_type (die, cu);
17234 if (cv_type)
17235 return cv_type;
17236
17237 cv_type = make_atomic_type (base_type);
17238 return set_die_type (die, cv_type, cu);
17239}
17240
c906108c
SS
17241/* Extract all information from a DW_TAG_string_type DIE and add to
17242 the user defined type vector. It isn't really a user defined type,
17243 but it behaves like one, with other DIE's using an AT_user_def_type
17244 attribute to reference it. */
17245
f792889a 17246static struct type *
e7c27a73 17247read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17248{
518817b3 17249 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
3b7538c0 17250 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
17251 struct type *type, *range_type, *index_type, *char_type;
17252 struct attribute *attr;
17253 unsigned int length;
17254
e142c38c 17255 attr = dwarf2_attr (die, DW_AT_string_length, cu);
c906108c
SS
17256 if (attr)
17257 {
17258 length = DW_UNSND (attr);
17259 }
17260 else
17261 {
0963b4bd 17262 /* Check for the DW_AT_byte_size attribute. */
e142c38c 17263 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
b21b22e0
PS
17264 if (attr)
17265 {
17266 length = DW_UNSND (attr);
17267 }
17268 else
17269 {
17270 length = 1;
17271 }
c906108c 17272 }
6ccb9162 17273
46bf5051 17274 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 17275 range_type = create_static_range_type (NULL, index_type, 1, length);
3b7538c0
UW
17276 char_type = language_string_char_type (cu->language_defn, gdbarch);
17277 type = create_string_type (NULL, char_type, range_type);
6ccb9162 17278
f792889a 17279 return set_die_type (die, type, cu);
c906108c
SS
17280}
17281
4d804846
JB
17282/* Assuming that DIE corresponds to a function, returns nonzero
17283 if the function is prototyped. */
17284
17285static int
17286prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
17287{
17288 struct attribute *attr;
17289
17290 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
17291 if (attr && (DW_UNSND (attr) != 0))
17292 return 1;
17293
17294 /* The DWARF standard implies that the DW_AT_prototyped attribute
17295 is only meaninful for C, but the concept also extends to other
17296 languages that allow unprototyped functions (Eg: Objective C).
17297 For all other languages, assume that functions are always
17298 prototyped. */
17299 if (cu->language != language_c
17300 && cu->language != language_objc
17301 && cu->language != language_opencl)
17302 return 1;
17303
17304 /* RealView does not emit DW_AT_prototyped. We can not distinguish
17305 prototyped and unprototyped functions; default to prototyped,
17306 since that is more common in modern code (and RealView warns
17307 about unprototyped functions). */
17308 if (producer_is_realview (cu->producer))
17309 return 1;
17310
17311 return 0;
17312}
17313
c906108c
SS
17314/* Handle DIES due to C code like:
17315
17316 struct foo
c5aa993b
JM
17317 {
17318 int (*funcp)(int a, long l);
17319 int b;
17320 };
c906108c 17321
0963b4bd 17322 ('funcp' generates a DW_TAG_subroutine_type DIE). */
c906108c 17323
f792889a 17324static struct type *
e7c27a73 17325read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17326{
518817b3 17327 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0963b4bd
MS
17328 struct type *type; /* Type that this function returns. */
17329 struct type *ftype; /* Function that returns above type. */
c906108c
SS
17330 struct attribute *attr;
17331
e7c27a73 17332 type = die_type (die, cu);
7e314c57
JK
17333
17334 /* The die_type call above may have already set the type for this DIE. */
17335 ftype = get_die_type (die, cu);
17336 if (ftype)
17337 return ftype;
17338
0c8b41f1 17339 ftype = lookup_function_type (type);
c906108c 17340
4d804846 17341 if (prototyped_function_p (die, cu))
a6c727b2 17342 TYPE_PROTOTYPED (ftype) = 1;
c906108c 17343
c055b101
CV
17344 /* Store the calling convention in the type if it's available in
17345 the subroutine die. Otherwise set the calling convention to
17346 the default value DW_CC_normal. */
17347 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
54fcddd0
UW
17348 if (attr)
17349 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
17350 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
17351 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
17352 else
17353 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
76c10ea2 17354
743649fd
MW
17355 /* Record whether the function returns normally to its caller or not
17356 if the DWARF producer set that information. */
17357 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
17358 if (attr && (DW_UNSND (attr) != 0))
17359 TYPE_NO_RETURN (ftype) = 1;
17360
76c10ea2
GM
17361 /* We need to add the subroutine type to the die immediately so
17362 we don't infinitely recurse when dealing with parameters
0963b4bd 17363 declared as the same subroutine type. */
76c10ea2 17364 set_die_type (die, ftype, cu);
6e70227d 17365
639d11d3 17366 if (die->child != NULL)
c906108c 17367 {
bb5ed363 17368 struct type *void_type = objfile_type (objfile)->builtin_void;
c906108c 17369 struct die_info *child_die;
8072405b 17370 int nparams, iparams;
c906108c
SS
17371
17372 /* Count the number of parameters.
17373 FIXME: GDB currently ignores vararg functions, but knows about
17374 vararg member functions. */
8072405b 17375 nparams = 0;
639d11d3 17376 child_die = die->child;
c906108c
SS
17377 while (child_die && child_die->tag)
17378 {
17379 if (child_die->tag == DW_TAG_formal_parameter)
17380 nparams++;
17381 else if (child_die->tag == DW_TAG_unspecified_parameters)
876cecd0 17382 TYPE_VARARGS (ftype) = 1;
c906108c
SS
17383 child_die = sibling_die (child_die);
17384 }
17385
17386 /* Allocate storage for parameters and fill them in. */
17387 TYPE_NFIELDS (ftype) = nparams;
17388 TYPE_FIELDS (ftype) = (struct field *)
ae5a43e0 17389 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
c906108c 17390
8072405b
JK
17391 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
17392 even if we error out during the parameters reading below. */
17393 for (iparams = 0; iparams < nparams; iparams++)
17394 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
17395
17396 iparams = 0;
639d11d3 17397 child_die = die->child;
c906108c
SS
17398 while (child_die && child_die->tag)
17399 {
17400 if (child_die->tag == DW_TAG_formal_parameter)
17401 {
3ce3b1ba
PA
17402 struct type *arg_type;
17403
17404 /* DWARF version 2 has no clean way to discern C++
17405 static and non-static member functions. G++ helps
17406 GDB by marking the first parameter for non-static
17407 member functions (which is the this pointer) as
17408 artificial. We pass this information to
17409 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
17410
17411 DWARF version 3 added DW_AT_object_pointer, which GCC
17412 4.5 does not yet generate. */
e142c38c 17413 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
c906108c
SS
17414 if (attr)
17415 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
17416 else
9c37b5ae 17417 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
3ce3b1ba
PA
17418 arg_type = die_type (child_die, cu);
17419
17420 /* RealView does not mark THIS as const, which the testsuite
17421 expects. GCC marks THIS as const in method definitions,
17422 but not in the class specifications (GCC PR 43053). */
17423 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
17424 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
17425 {
17426 int is_this = 0;
17427 struct dwarf2_cu *arg_cu = cu;
17428 const char *name = dwarf2_name (child_die, cu);
17429
17430 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
17431 if (attr)
17432 {
17433 /* If the compiler emits this, use it. */
17434 if (follow_die_ref (die, attr, &arg_cu) == child_die)
17435 is_this = 1;
17436 }
17437 else if (name && strcmp (name, "this") == 0)
17438 /* Function definitions will have the argument names. */
17439 is_this = 1;
17440 else if (name == NULL && iparams == 0)
17441 /* Declarations may not have the names, so like
17442 elsewhere in GDB, assume an artificial first
17443 argument is "this". */
17444 is_this = 1;
17445
17446 if (is_this)
17447 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
17448 arg_type, 0);
17449 }
17450
17451 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
c906108c
SS
17452 iparams++;
17453 }
17454 child_die = sibling_die (child_die);
17455 }
17456 }
17457
76c10ea2 17458 return ftype;
c906108c
SS
17459}
17460
f792889a 17461static struct type *
e7c27a73 17462read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17463{
518817b3 17464 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
0114d602 17465 const char *name = NULL;
3c8e0968 17466 struct type *this_type, *target_type;
c906108c 17467
94af9270 17468 name = dwarf2_full_name (NULL, die, cu);
19f392bc
UW
17469 this_type = init_type (objfile, TYPE_CODE_TYPEDEF, 0, name);
17470 TYPE_TARGET_STUB (this_type) = 1;
f792889a 17471 set_die_type (die, this_type, cu);
3c8e0968
DE
17472 target_type = die_type (die, cu);
17473 if (target_type != this_type)
17474 TYPE_TARGET_TYPE (this_type) = target_type;
17475 else
17476 {
17477 /* Self-referential typedefs are, it seems, not allowed by the DWARF
17478 spec and cause infinite loops in GDB. */
b98664d3 17479 complaint (_("Self-referential DW_TAG_typedef "
9d8780f0
SM
17480 "- DIE at %s [in module %s]"),
17481 sect_offset_str (die->sect_off), objfile_name (objfile));
3c8e0968
DE
17482 TYPE_TARGET_TYPE (this_type) = NULL;
17483 }
f792889a 17484 return this_type;
c906108c
SS
17485}
17486
9b790ce7
UW
17487/* Allocate a floating-point type of size BITS and name NAME. Pass NAME_HINT
17488 (which may be different from NAME) to the architecture back-end to allow
17489 it to guess the correct format if necessary. */
17490
17491static struct type *
17492dwarf2_init_float_type (struct objfile *objfile, int bits, const char *name,
17493 const char *name_hint)
17494{
17495 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17496 const struct floatformat **format;
17497 struct type *type;
17498
17499 format = gdbarch_floatformat_for_type (gdbarch, name_hint, bits);
17500 if (format)
17501 type = init_float_type (objfile, bits, name, format);
17502 else
77b7c781 17503 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
9b790ce7
UW
17504
17505 return type;
17506}
17507
eb77c9df
AB
17508/* Allocate an integer type of size BITS and name NAME. */
17509
17510static struct type *
17511dwarf2_init_integer_type (struct dwarf2_cu *cu, struct objfile *objfile,
17512 int bits, int unsigned_p, const char *name)
17513{
17514 struct type *type;
17515
17516 /* Versions of Intel's C Compiler generate an integer type called "void"
17517 instead of using DW_TAG_unspecified_type. This has been seen on
17518 at least versions 14, 17, and 18. */
35ee2dc2
AB
17519 if (bits == 0 && producer_is_icc (cu) && name != nullptr
17520 && strcmp (name, "void") == 0)
eb77c9df
AB
17521 type = objfile_type (objfile)->builtin_void;
17522 else
17523 type = init_integer_type (objfile, bits, unsigned_p, name);
17524
17525 return type;
17526}
17527
8bdc1658
AB
17528/* Initialise and return a floating point type of size BITS suitable for
17529 use as a component of a complex number. The NAME_HINT is passed through
17530 when initialising the floating point type and is the name of the complex
17531 type.
17532
17533 As DWARF doesn't currently provide an explicit name for the components
17534 of a complex number, but it can be helpful to have these components
17535 named, we try to select a suitable name based on the size of the
17536 component. */
17537static struct type *
17538dwarf2_init_complex_target_type (struct dwarf2_cu *cu,
17539 struct objfile *objfile,
17540 int bits, const char *name_hint)
17541{
17542 gdbarch *gdbarch = get_objfile_arch (objfile);
17543 struct type *tt = nullptr;
17544
35add35e
AB
17545 /* Try to find a suitable floating point builtin type of size BITS.
17546 We're going to use the name of this type as the name for the complex
17547 target type that we are about to create. */
8bdc1658
AB
17548 switch (bits)
17549 {
17550 case 32:
17551 tt = builtin_type (gdbarch)->builtin_float;
17552 break;
17553 case 64:
17554 tt = builtin_type (gdbarch)->builtin_double;
17555 break;
35add35e 17556 case 96: /* The x86-32 ABI specifies 96-bit long double. */
8bdc1658
AB
17557 case 128:
17558 tt = builtin_type (gdbarch)->builtin_long_double;
17559 break;
17560 }
17561
35add35e
AB
17562 /* If the type we found doesn't match the size we were looking for, then
17563 pretend we didn't find a type at all, the complex target type we
17564 create will then be nameless. */
a12e5744 17565 if (tt != nullptr && TYPE_LENGTH (tt) * TARGET_CHAR_BIT != bits)
35add35e
AB
17566 tt = nullptr;
17567
8bdc1658
AB
17568 const char *name = (tt == nullptr) ? nullptr : TYPE_NAME (tt);
17569 return dwarf2_init_float_type (objfile, bits, name, name_hint);
17570}
17571
c906108c
SS
17572/* Find a representation of a given base type and install
17573 it in the TYPE field of the die. */
17574
f792889a 17575static struct type *
e7c27a73 17576read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17577{
518817b3 17578 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c
SS
17579 struct type *type;
17580 struct attribute *attr;
19f392bc 17581 int encoding = 0, bits = 0;
15d034d0 17582 const char *name;
c906108c 17583
e142c38c 17584 attr = dwarf2_attr (die, DW_AT_encoding, cu);
c906108c
SS
17585 if (attr)
17586 {
17587 encoding = DW_UNSND (attr);
17588 }
e142c38c 17589 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
17590 if (attr)
17591 {
19f392bc 17592 bits = DW_UNSND (attr) * TARGET_CHAR_BIT;
c906108c 17593 }
39cbfefa 17594 name = dwarf2_name (die, cu);
6ccb9162 17595 if (!name)
c906108c 17596 {
b98664d3 17597 complaint (_("DW_AT_name missing from DW_TAG_base_type"));
c906108c 17598 }
6ccb9162
UW
17599
17600 switch (encoding)
c906108c 17601 {
6ccb9162
UW
17602 case DW_ATE_address:
17603 /* Turn DW_ATE_address into a void * pointer. */
77b7c781 17604 type = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, NULL);
19f392bc 17605 type = init_pointer_type (objfile, bits, name, type);
6ccb9162
UW
17606 break;
17607 case DW_ATE_boolean:
19f392bc 17608 type = init_boolean_type (objfile, bits, 1, name);
6ccb9162
UW
17609 break;
17610 case DW_ATE_complex_float:
8bdc1658 17611 type = dwarf2_init_complex_target_type (cu, objfile, bits / 2, name);
19f392bc 17612 type = init_complex_type (objfile, name, type);
6ccb9162
UW
17613 break;
17614 case DW_ATE_decimal_float:
19f392bc 17615 type = init_decfloat_type (objfile, bits, name);
6ccb9162
UW
17616 break;
17617 case DW_ATE_float:
9b790ce7 17618 type = dwarf2_init_float_type (objfile, bits, name, name);
6ccb9162
UW
17619 break;
17620 case DW_ATE_signed:
eb77c9df 17621 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17622 break;
17623 case DW_ATE_unsigned:
3b2b8fea
TT
17624 if (cu->language == language_fortran
17625 && name
61012eef 17626 && startswith (name, "character("))
19f392bc
UW
17627 type = init_character_type (objfile, bits, 1, name);
17628 else
eb77c9df 17629 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162
UW
17630 break;
17631 case DW_ATE_signed_char:
6e70227d 17632 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
17633 || cu->language == language_pascal
17634 || cu->language == language_fortran)
19f392bc
UW
17635 type = init_character_type (objfile, bits, 0, name);
17636 else
eb77c9df 17637 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17638 break;
17639 case DW_ATE_unsigned_char:
868a0084 17640 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea 17641 || cu->language == language_pascal
c44af4eb
TT
17642 || cu->language == language_fortran
17643 || cu->language == language_rust)
19f392bc
UW
17644 type = init_character_type (objfile, bits, 1, name);
17645 else
eb77c9df 17646 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162 17647 break;
75079b2b 17648 case DW_ATE_UTF:
53e710ac
PA
17649 {
17650 gdbarch *arch = get_objfile_arch (objfile);
17651
17652 if (bits == 16)
17653 type = builtin_type (arch)->builtin_char16;
17654 else if (bits == 32)
17655 type = builtin_type (arch)->builtin_char32;
17656 else
17657 {
b98664d3 17658 complaint (_("unsupported DW_ATE_UTF bit size: '%d'"),
53e710ac 17659 bits);
eb77c9df 17660 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
53e710ac
PA
17661 }
17662 return set_die_type (die, type, cu);
17663 }
75079b2b
TT
17664 break;
17665
6ccb9162 17666 default:
b98664d3 17667 complaint (_("unsupported DW_AT_encoding: '%s'"),
6ccb9162 17668 dwarf_type_encoding_name (encoding));
77b7c781 17669 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
6ccb9162 17670 break;
c906108c 17671 }
6ccb9162 17672
0114d602 17673 if (name && strcmp (name, "char") == 0)
876cecd0 17674 TYPE_NOSIGN (type) = 1;
0114d602 17675
2b4424c3
TT
17676 maybe_set_alignment (cu, die, type);
17677
f792889a 17678 return set_die_type (die, type, cu);
c906108c
SS
17679}
17680
80180f79
SA
17681/* Parse dwarf attribute if it's a block, reference or constant and put the
17682 resulting value of the attribute into struct bound_prop.
17683 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
17684
17685static int
17686attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
17687 struct dwarf2_cu *cu, struct dynamic_prop *prop)
17688{
17689 struct dwarf2_property_baton *baton;
518817b3
SM
17690 struct obstack *obstack
17691 = &cu->per_cu->dwarf2_per_objfile->objfile->objfile_obstack;
80180f79
SA
17692
17693 if (attr == NULL || prop == NULL)
17694 return 0;
17695
17696 if (attr_form_is_block (attr))
17697 {
8d749320 17698 baton = XOBNEW (obstack, struct dwarf2_property_baton);
80180f79
SA
17699 baton->referenced_type = NULL;
17700 baton->locexpr.per_cu = cu->per_cu;
17701 baton->locexpr.size = DW_BLOCK (attr)->size;
17702 baton->locexpr.data = DW_BLOCK (attr)->data;
17703 prop->data.baton = baton;
17704 prop->kind = PROP_LOCEXPR;
17705 gdb_assert (prop->data.baton != NULL);
17706 }
17707 else if (attr_form_is_ref (attr))
17708 {
17709 struct dwarf2_cu *target_cu = cu;
17710 struct die_info *target_die;
17711 struct attribute *target_attr;
17712
17713 target_die = follow_die_ref (die, attr, &target_cu);
17714 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
df25ebbd
JB
17715 if (target_attr == NULL)
17716 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
17717 target_cu);
80180f79
SA
17718 if (target_attr == NULL)
17719 return 0;
17720
df25ebbd 17721 switch (target_attr->name)
80180f79 17722 {
df25ebbd
JB
17723 case DW_AT_location:
17724 if (attr_form_is_section_offset (target_attr))
17725 {
8d749320 17726 baton = XOBNEW (obstack, struct dwarf2_property_baton);
df25ebbd
JB
17727 baton->referenced_type = die_type (target_die, target_cu);
17728 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
17729 prop->data.baton = baton;
17730 prop->kind = PROP_LOCLIST;
17731 gdb_assert (prop->data.baton != NULL);
17732 }
17733 else if (attr_form_is_block (target_attr))
17734 {
8d749320 17735 baton = XOBNEW (obstack, struct dwarf2_property_baton);
df25ebbd
JB
17736 baton->referenced_type = die_type (target_die, target_cu);
17737 baton->locexpr.per_cu = cu->per_cu;
17738 baton->locexpr.size = DW_BLOCK (target_attr)->size;
17739 baton->locexpr.data = DW_BLOCK (target_attr)->data;
17740 prop->data.baton = baton;
17741 prop->kind = PROP_LOCEXPR;
17742 gdb_assert (prop->data.baton != NULL);
17743 }
17744 else
17745 {
17746 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
17747 "dynamic property");
17748 return 0;
17749 }
17750 break;
17751 case DW_AT_data_member_location:
17752 {
17753 LONGEST offset;
17754
17755 if (!handle_data_member_location (target_die, target_cu,
17756 &offset))
17757 return 0;
17758
8d749320 17759 baton = XOBNEW (obstack, struct dwarf2_property_baton);
6ad395a7
JB
17760 baton->referenced_type = read_type_die (target_die->parent,
17761 target_cu);
df25ebbd
JB
17762 baton->offset_info.offset = offset;
17763 baton->offset_info.type = die_type (target_die, target_cu);
17764 prop->data.baton = baton;
17765 prop->kind = PROP_ADDR_OFFSET;
17766 break;
17767 }
80180f79
SA
17768 }
17769 }
17770 else if (attr_form_is_constant (attr))
17771 {
17772 prop->data.const_val = dwarf2_get_attr_constant_value (attr, 0);
17773 prop->kind = PROP_CONST;
17774 }
17775 else
17776 {
17777 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
17778 dwarf2_name (die, cu));
17779 return 0;
17780 }
17781
17782 return 1;
17783}
17784
a02abb62
JB
17785/* Read the given DW_AT_subrange DIE. */
17786
f792889a 17787static struct type *
a02abb62
JB
17788read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
17789{
4c9ad8c2 17790 struct type *base_type, *orig_base_type;
a02abb62
JB
17791 struct type *range_type;
17792 struct attribute *attr;
729efb13 17793 struct dynamic_prop low, high;
4fae6e18 17794 int low_default_is_valid;
c451ebe5 17795 int high_bound_is_count = 0;
15d034d0 17796 const char *name;
d359392f 17797 ULONGEST negative_mask;
e77813c8 17798
4c9ad8c2
TT
17799 orig_base_type = die_type (die, cu);
17800 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
17801 whereas the real type might be. So, we use ORIG_BASE_TYPE when
17802 creating the range type, but we use the result of check_typedef
17803 when examining properties of the type. */
17804 base_type = check_typedef (orig_base_type);
a02abb62 17805
7e314c57
JK
17806 /* The die_type call above may have already set the type for this DIE. */
17807 range_type = get_die_type (die, cu);
17808 if (range_type)
17809 return range_type;
17810
729efb13
SA
17811 low.kind = PROP_CONST;
17812 high.kind = PROP_CONST;
17813 high.data.const_val = 0;
17814
4fae6e18
JK
17815 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
17816 omitting DW_AT_lower_bound. */
17817 switch (cu->language)
6e70227d 17818 {
4fae6e18
JK
17819 case language_c:
17820 case language_cplus:
729efb13 17821 low.data.const_val = 0;
4fae6e18
JK
17822 low_default_is_valid = 1;
17823 break;
17824 case language_fortran:
729efb13 17825 low.data.const_val = 1;
4fae6e18
JK
17826 low_default_is_valid = 1;
17827 break;
17828 case language_d:
4fae6e18 17829 case language_objc:
c44af4eb 17830 case language_rust:
729efb13 17831 low.data.const_val = 0;
4fae6e18
JK
17832 low_default_is_valid = (cu->header.version >= 4);
17833 break;
17834 case language_ada:
17835 case language_m2:
17836 case language_pascal:
729efb13 17837 low.data.const_val = 1;
4fae6e18
JK
17838 low_default_is_valid = (cu->header.version >= 4);
17839 break;
17840 default:
729efb13 17841 low.data.const_val = 0;
4fae6e18
JK
17842 low_default_is_valid = 0;
17843 break;
a02abb62
JB
17844 }
17845
e142c38c 17846 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
a02abb62 17847 if (attr)
11c1ba78 17848 attr_to_dynamic_prop (attr, die, cu, &low);
4fae6e18 17849 else if (!low_default_is_valid)
b98664d3 17850 complaint (_("Missing DW_AT_lower_bound "
9d8780f0
SM
17851 "- DIE at %s [in module %s]"),
17852 sect_offset_str (die->sect_off),
518817b3 17853 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
a02abb62 17854
506f5c41
TV
17855 struct attribute *attr_ub, *attr_count;
17856 attr = attr_ub = dwarf2_attr (die, DW_AT_upper_bound, cu);
80180f79 17857 if (!attr_to_dynamic_prop (attr, die, cu, &high))
e77813c8 17858 {
506f5c41 17859 attr = attr_count = dwarf2_attr (die, DW_AT_count, cu);
c451ebe5 17860 if (attr_to_dynamic_prop (attr, die, cu, &high))
6b662e19 17861 {
c451ebe5
SA
17862 /* If bounds are constant do the final calculation here. */
17863 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
17864 high.data.const_val = low.data.const_val + high.data.const_val - 1;
17865 else
17866 high_bound_is_count = 1;
c2ff108b 17867 }
506f5c41
TV
17868 else
17869 {
17870 if (attr_ub != NULL)
17871 complaint (_("Unresolved DW_AT_upper_bound "
17872 "- DIE at %s [in module %s]"),
17873 sect_offset_str (die->sect_off),
17874 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17875 if (attr_count != NULL)
17876 complaint (_("Unresolved DW_AT_count "
17877 "- DIE at %s [in module %s]"),
17878 sect_offset_str (die->sect_off),
17879 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17880 }
17881
e77813c8
PM
17882 }
17883
17884 /* Dwarf-2 specifications explicitly allows to create subrange types
17885 without specifying a base type.
17886 In that case, the base type must be set to the type of
17887 the lower bound, upper bound or count, in that order, if any of these
17888 three attributes references an object that has a type.
17889 If no base type is found, the Dwarf-2 specifications say that
17890 a signed integer type of size equal to the size of an address should
17891 be used.
17892 For the following C code: `extern char gdb_int [];'
17893 GCC produces an empty range DIE.
17894 FIXME: muller/2010-05-28: Possible references to object for low bound,
0963b4bd 17895 high bound or count are not yet handled by this code. */
e77813c8
PM
17896 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
17897 {
518817b3 17898 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e77813c8
PM
17899 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17900 int addr_size = gdbarch_addr_bit (gdbarch) /8;
17901 struct type *int_type = objfile_type (objfile)->builtin_int;
17902
17903 /* Test "int", "long int", and "long long int" objfile types,
17904 and select the first one having a size above or equal to the
17905 architecture address size. */
17906 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17907 base_type = int_type;
17908 else
17909 {
17910 int_type = objfile_type (objfile)->builtin_long;
17911 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17912 base_type = int_type;
17913 else
17914 {
17915 int_type = objfile_type (objfile)->builtin_long_long;
17916 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17917 base_type = int_type;
17918 }
17919 }
17920 }
a02abb62 17921
dbb9c2b1
JB
17922 /* Normally, the DWARF producers are expected to use a signed
17923 constant form (Eg. DW_FORM_sdata) to express negative bounds.
17924 But this is unfortunately not always the case, as witnessed
17925 with GCC, for instance, where the ambiguous DW_FORM_dataN form
17926 is used instead. To work around that ambiguity, we treat
17927 the bounds as signed, and thus sign-extend their values, when
17928 the base type is signed. */
6e70227d 17929 negative_mask =
d359392f 17930 -((ULONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
729efb13
SA
17931 if (low.kind == PROP_CONST
17932 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
17933 low.data.const_val |= negative_mask;
17934 if (high.kind == PROP_CONST
17935 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
17936 high.data.const_val |= negative_mask;
43bbcdc2 17937
729efb13 17938 range_type = create_range_type (NULL, orig_base_type, &low, &high);
a02abb62 17939
c451ebe5
SA
17940 if (high_bound_is_count)
17941 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
17942
c2ff108b
JK
17943 /* Ada expects an empty array on no boundary attributes. */
17944 if (attr == NULL && cu->language != language_ada)
729efb13 17945 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
c2ff108b 17946
39cbfefa
DJ
17947 name = dwarf2_name (die, cu);
17948 if (name)
17949 TYPE_NAME (range_type) = name;
6e70227d 17950
e142c38c 17951 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
a02abb62
JB
17952 if (attr)
17953 TYPE_LENGTH (range_type) = DW_UNSND (attr);
17954
2b4424c3
TT
17955 maybe_set_alignment (cu, die, range_type);
17956
7e314c57
JK
17957 set_die_type (die, range_type, cu);
17958
17959 /* set_die_type should be already done. */
b4ba55a1
JB
17960 set_descriptive_type (range_type, die, cu);
17961
7e314c57 17962 return range_type;
a02abb62 17963}
6e70227d 17964
f792889a 17965static struct type *
81a17f79
JB
17966read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
17967{
17968 struct type *type;
81a17f79 17969
518817b3
SM
17970 type = init_type (cu->per_cu->dwarf2_per_objfile->objfile, TYPE_CODE_VOID,0,
17971 NULL);
0114d602 17972 TYPE_NAME (type) = dwarf2_name (die, cu);
81a17f79 17973
74a2f8ff
JB
17974 /* In Ada, an unspecified type is typically used when the description
17975 of the type is defered to a different unit. When encountering
17976 such a type, we treat it as a stub, and try to resolve it later on,
17977 when needed. */
17978 if (cu->language == language_ada)
17979 TYPE_STUB (type) = 1;
17980
f792889a 17981 return set_die_type (die, type, cu);
81a17f79 17982}
a02abb62 17983
639d11d3
DC
17984/* Read a single die and all its descendents. Set the die's sibling
17985 field to NULL; set other fields in the die correctly, and set all
17986 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
17987 location of the info_ptr after reading all of those dies. PARENT
17988 is the parent of the die in question. */
17989
17990static struct die_info *
dee91e82 17991read_die_and_children (const struct die_reader_specs *reader,
d521ce57
TT
17992 const gdb_byte *info_ptr,
17993 const gdb_byte **new_info_ptr,
dee91e82 17994 struct die_info *parent)
639d11d3
DC
17995{
17996 struct die_info *die;
d521ce57 17997 const gdb_byte *cur_ptr;
639d11d3
DC
17998 int has_children;
17999
bf6af496 18000 cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
1d325ec1
DJ
18001 if (die == NULL)
18002 {
18003 *new_info_ptr = cur_ptr;
18004 return NULL;
18005 }
93311388 18006 store_in_ref_table (die, reader->cu);
639d11d3
DC
18007
18008 if (has_children)
bf6af496 18009 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
639d11d3
DC
18010 else
18011 {
18012 die->child = NULL;
18013 *new_info_ptr = cur_ptr;
18014 }
18015
18016 die->sibling = NULL;
18017 die->parent = parent;
18018 return die;
18019}
18020
18021/* Read a die, all of its descendents, and all of its siblings; set
18022 all of the fields of all of the dies correctly. Arguments are as
18023 in read_die_and_children. */
18024
18025static struct die_info *
bf6af496 18026read_die_and_siblings_1 (const struct die_reader_specs *reader,
d521ce57
TT
18027 const gdb_byte *info_ptr,
18028 const gdb_byte **new_info_ptr,
bf6af496 18029 struct die_info *parent)
639d11d3
DC
18030{
18031 struct die_info *first_die, *last_sibling;
d521ce57 18032 const gdb_byte *cur_ptr;
639d11d3 18033
c906108c 18034 cur_ptr = info_ptr;
639d11d3
DC
18035 first_die = last_sibling = NULL;
18036
18037 while (1)
c906108c 18038 {
639d11d3 18039 struct die_info *die
dee91e82 18040 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
639d11d3 18041
1d325ec1 18042 if (die == NULL)
c906108c 18043 {
639d11d3
DC
18044 *new_info_ptr = cur_ptr;
18045 return first_die;
c906108c 18046 }
1d325ec1
DJ
18047
18048 if (!first_die)
18049 first_die = die;
c906108c 18050 else
1d325ec1
DJ
18051 last_sibling->sibling = die;
18052
18053 last_sibling = die;
c906108c 18054 }
c906108c
SS
18055}
18056
bf6af496
DE
18057/* Read a die, all of its descendents, and all of its siblings; set
18058 all of the fields of all of the dies correctly. Arguments are as
18059 in read_die_and_children.
18060 This the main entry point for reading a DIE and all its children. */
18061
18062static struct die_info *
18063read_die_and_siblings (const struct die_reader_specs *reader,
d521ce57
TT
18064 const gdb_byte *info_ptr,
18065 const gdb_byte **new_info_ptr,
bf6af496
DE
18066 struct die_info *parent)
18067{
18068 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
18069 new_info_ptr, parent);
18070
b4f54984 18071 if (dwarf_die_debug)
bf6af496
DE
18072 {
18073 fprintf_unfiltered (gdb_stdlog,
18074 "Read die from %s@0x%x of %s:\n",
a32a8923 18075 get_section_name (reader->die_section),
bf6af496
DE
18076 (unsigned) (info_ptr - reader->die_section->buffer),
18077 bfd_get_filename (reader->abfd));
b4f54984 18078 dump_die (die, dwarf_die_debug);
bf6af496
DE
18079 }
18080
18081 return die;
18082}
18083
3019eac3
DE
18084/* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
18085 attributes.
18086 The caller is responsible for filling in the extra attributes
18087 and updating (*DIEP)->num_attrs.
18088 Set DIEP to point to a newly allocated die with its information,
18089 except for its child, sibling, and parent fields.
18090 Set HAS_CHILDREN to tell whether the die has children or not. */
93311388 18091
d521ce57 18092static const gdb_byte *
3019eac3 18093read_full_die_1 (const struct die_reader_specs *reader,
d521ce57 18094 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3 18095 int *has_children, int num_extra_attrs)
93311388 18096{
b64f50a1 18097 unsigned int abbrev_number, bytes_read, i;
93311388
DE
18098 struct abbrev_info *abbrev;
18099 struct die_info *die;
18100 struct dwarf2_cu *cu = reader->cu;
18101 bfd *abfd = reader->abfd;
18102
9c541725 18103 sect_offset sect_off = (sect_offset) (info_ptr - reader->buffer);
93311388
DE
18104 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
18105 info_ptr += bytes_read;
18106 if (!abbrev_number)
18107 {
18108 *diep = NULL;
18109 *has_children = 0;
18110 return info_ptr;
18111 }
18112
685af9cd 18113 abbrev = reader->abbrev_table->lookup_abbrev (abbrev_number);
93311388 18114 if (!abbrev)
348e048f
DE
18115 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
18116 abbrev_number,
18117 bfd_get_filename (abfd));
18118
3019eac3 18119 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
9c541725 18120 die->sect_off = sect_off;
93311388
DE
18121 die->tag = abbrev->tag;
18122 die->abbrev = abbrev_number;
18123
3019eac3
DE
18124 /* Make the result usable.
18125 The caller needs to update num_attrs after adding the extra
18126 attributes. */
93311388
DE
18127 die->num_attrs = abbrev->num_attrs;
18128
18129 for (i = 0; i < abbrev->num_attrs; ++i)
dee91e82
DE
18130 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
18131 info_ptr);
93311388
DE
18132
18133 *diep = die;
18134 *has_children = abbrev->has_children;
18135 return info_ptr;
18136}
18137
3019eac3
DE
18138/* Read a die and all its attributes.
18139 Set DIEP to point to a newly allocated die with its information,
18140 except for its child, sibling, and parent fields.
18141 Set HAS_CHILDREN to tell whether the die has children or not. */
18142
d521ce57 18143static const gdb_byte *
3019eac3 18144read_full_die (const struct die_reader_specs *reader,
d521ce57 18145 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3
DE
18146 int *has_children)
18147{
d521ce57 18148 const gdb_byte *result;
bf6af496
DE
18149
18150 result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
18151
b4f54984 18152 if (dwarf_die_debug)
bf6af496
DE
18153 {
18154 fprintf_unfiltered (gdb_stdlog,
18155 "Read die from %s@0x%x of %s:\n",
a32a8923 18156 get_section_name (reader->die_section),
bf6af496
DE
18157 (unsigned) (info_ptr - reader->die_section->buffer),
18158 bfd_get_filename (reader->abfd));
b4f54984 18159 dump_die (*diep, dwarf_die_debug);
bf6af496
DE
18160 }
18161
18162 return result;
3019eac3 18163}
433df2d4
DE
18164\f
18165/* Abbreviation tables.
3019eac3 18166
433df2d4 18167 In DWARF version 2, the description of the debugging information is
c906108c
SS
18168 stored in a separate .debug_abbrev section. Before we read any
18169 dies from a section we read in all abbreviations and install them
433df2d4
DE
18170 in a hash table. */
18171
18172/* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
18173
685af9cd
TT
18174struct abbrev_info *
18175abbrev_table::alloc_abbrev ()
433df2d4
DE
18176{
18177 struct abbrev_info *abbrev;
18178
685af9cd 18179 abbrev = XOBNEW (&abbrev_obstack, struct abbrev_info);
433df2d4 18180 memset (abbrev, 0, sizeof (struct abbrev_info));
8d749320 18181
433df2d4
DE
18182 return abbrev;
18183}
18184
18185/* Add an abbreviation to the table. */
c906108c 18186
685af9cd
TT
18187void
18188abbrev_table::add_abbrev (unsigned int abbrev_number,
18189 struct abbrev_info *abbrev)
433df2d4
DE
18190{
18191 unsigned int hash_number;
18192
18193 hash_number = abbrev_number % ABBREV_HASH_SIZE;
4a17f768
YQ
18194 abbrev->next = m_abbrevs[hash_number];
18195 m_abbrevs[hash_number] = abbrev;
433df2d4 18196}
dee91e82 18197
433df2d4
DE
18198/* Look up an abbrev in the table.
18199 Returns NULL if the abbrev is not found. */
18200
685af9cd
TT
18201struct abbrev_info *
18202abbrev_table::lookup_abbrev (unsigned int abbrev_number)
c906108c 18203{
433df2d4
DE
18204 unsigned int hash_number;
18205 struct abbrev_info *abbrev;
18206
18207 hash_number = abbrev_number % ABBREV_HASH_SIZE;
4a17f768 18208 abbrev = m_abbrevs[hash_number];
433df2d4
DE
18209
18210 while (abbrev)
18211 {
18212 if (abbrev->number == abbrev_number)
18213 return abbrev;
18214 abbrev = abbrev->next;
18215 }
18216 return NULL;
18217}
18218
18219/* Read in an abbrev table. */
18220
685af9cd 18221static abbrev_table_up
ed2dc618
SM
18222abbrev_table_read_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
18223 struct dwarf2_section_info *section,
9c541725 18224 sect_offset sect_off)
433df2d4
DE
18225{
18226 struct objfile *objfile = dwarf2_per_objfile->objfile;
a32a8923 18227 bfd *abfd = get_section_bfd_owner (section);
d521ce57 18228 const gdb_byte *abbrev_ptr;
c906108c
SS
18229 struct abbrev_info *cur_abbrev;
18230 unsigned int abbrev_number, bytes_read, abbrev_name;
433df2d4 18231 unsigned int abbrev_form;
f3dd6933
DJ
18232 struct attr_abbrev *cur_attrs;
18233 unsigned int allocated_attrs;
c906108c 18234
685af9cd 18235 abbrev_table_up abbrev_table (new struct abbrev_table (sect_off));
c906108c 18236
433df2d4 18237 dwarf2_read_section (objfile, section);
9c541725 18238 abbrev_ptr = section->buffer + to_underlying (sect_off);
c906108c
SS
18239 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18240 abbrev_ptr += bytes_read;
18241
f3dd6933 18242 allocated_attrs = ATTR_ALLOC_CHUNK;
8d749320 18243 cur_attrs = XNEWVEC (struct attr_abbrev, allocated_attrs);
6e70227d 18244
0963b4bd 18245 /* Loop until we reach an abbrev number of 0. */
c906108c
SS
18246 while (abbrev_number)
18247 {
685af9cd 18248 cur_abbrev = abbrev_table->alloc_abbrev ();
c906108c
SS
18249
18250 /* read in abbrev header */
18251 cur_abbrev->number = abbrev_number;
aead7601
SM
18252 cur_abbrev->tag
18253 = (enum dwarf_tag) read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
c906108c
SS
18254 abbrev_ptr += bytes_read;
18255 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
18256 abbrev_ptr += 1;
18257
18258 /* now read in declarations */
22d2f3ab 18259 for (;;)
c906108c 18260 {
43988095
JK
18261 LONGEST implicit_const;
18262
22d2f3ab
JK
18263 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18264 abbrev_ptr += bytes_read;
18265 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18266 abbrev_ptr += bytes_read;
43988095
JK
18267 if (abbrev_form == DW_FORM_implicit_const)
18268 {
18269 implicit_const = read_signed_leb128 (abfd, abbrev_ptr,
18270 &bytes_read);
18271 abbrev_ptr += bytes_read;
18272 }
18273 else
18274 {
18275 /* Initialize it due to a false compiler warning. */
18276 implicit_const = -1;
18277 }
22d2f3ab
JK
18278
18279 if (abbrev_name == 0)
18280 break;
18281
f3dd6933 18282 if (cur_abbrev->num_attrs == allocated_attrs)
c906108c 18283 {
f3dd6933
DJ
18284 allocated_attrs += ATTR_ALLOC_CHUNK;
18285 cur_attrs
224c3ddb 18286 = XRESIZEVEC (struct attr_abbrev, cur_attrs, allocated_attrs);
c906108c 18287 }
ae038cb0 18288
aead7601
SM
18289 cur_attrs[cur_abbrev->num_attrs].name
18290 = (enum dwarf_attribute) abbrev_name;
22d2f3ab 18291 cur_attrs[cur_abbrev->num_attrs].form
aead7601 18292 = (enum dwarf_form) abbrev_form;
43988095 18293 cur_attrs[cur_abbrev->num_attrs].implicit_const = implicit_const;
22d2f3ab 18294 ++cur_abbrev->num_attrs;
c906108c
SS
18295 }
18296
8d749320
SM
18297 cur_abbrev->attrs =
18298 XOBNEWVEC (&abbrev_table->abbrev_obstack, struct attr_abbrev,
18299 cur_abbrev->num_attrs);
f3dd6933
DJ
18300 memcpy (cur_abbrev->attrs, cur_attrs,
18301 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
18302
685af9cd 18303 abbrev_table->add_abbrev (abbrev_number, cur_abbrev);
c906108c
SS
18304
18305 /* Get next abbreviation.
18306 Under Irix6 the abbreviations for a compilation unit are not
c5aa993b
JM
18307 always properly terminated with an abbrev number of 0.
18308 Exit loop if we encounter an abbreviation which we have
18309 already read (which means we are about to read the abbreviations
18310 for the next compile unit) or if the end of the abbreviation
18311 table is reached. */
433df2d4 18312 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
c906108c
SS
18313 break;
18314 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18315 abbrev_ptr += bytes_read;
685af9cd 18316 if (abbrev_table->lookup_abbrev (abbrev_number) != NULL)
c906108c
SS
18317 break;
18318 }
f3dd6933
DJ
18319
18320 xfree (cur_attrs);
433df2d4 18321 return abbrev_table;
c906108c
SS
18322}
18323
72bf9492
DJ
18324/* Returns nonzero if TAG represents a type that we might generate a partial
18325 symbol for. */
18326
18327static int
18328is_type_tag_for_partial (int tag)
18329{
18330 switch (tag)
18331 {
18332#if 0
18333 /* Some types that would be reasonable to generate partial symbols for,
18334 that we don't at present. */
18335 case DW_TAG_array_type:
18336 case DW_TAG_file_type:
18337 case DW_TAG_ptr_to_member_type:
18338 case DW_TAG_set_type:
18339 case DW_TAG_string_type:
18340 case DW_TAG_subroutine_type:
18341#endif
18342 case DW_TAG_base_type:
18343 case DW_TAG_class_type:
680b30c7 18344 case DW_TAG_interface_type:
72bf9492
DJ
18345 case DW_TAG_enumeration_type:
18346 case DW_TAG_structure_type:
18347 case DW_TAG_subrange_type:
18348 case DW_TAG_typedef:
18349 case DW_TAG_union_type:
18350 return 1;
18351 default:
18352 return 0;
18353 }
18354}
18355
18356/* Load all DIEs that are interesting for partial symbols into memory. */
18357
18358static struct partial_die_info *
dee91e82 18359load_partial_dies (const struct die_reader_specs *reader,
d521ce57 18360 const gdb_byte *info_ptr, int building_psymtab)
72bf9492 18361{
dee91e82 18362 struct dwarf2_cu *cu = reader->cu;
518817b3 18363 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
72bf9492 18364 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
72bf9492 18365 unsigned int bytes_read;
5afb4e99 18366 unsigned int load_all = 0;
72bf9492
DJ
18367 int nesting_level = 1;
18368
18369 parent_die = NULL;
18370 last_die = NULL;
18371
7adf1e79
DE
18372 gdb_assert (cu->per_cu != NULL);
18373 if (cu->per_cu->load_all_dies)
5afb4e99
DJ
18374 load_all = 1;
18375
72bf9492
DJ
18376 cu->partial_dies
18377 = htab_create_alloc_ex (cu->header.length / 12,
18378 partial_die_hash,
18379 partial_die_eq,
18380 NULL,
18381 &cu->comp_unit_obstack,
18382 hashtab_obstack_allocate,
18383 dummy_obstack_deallocate);
18384
72bf9492
DJ
18385 while (1)
18386 {
685af9cd 18387 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
72bf9492
DJ
18388
18389 /* A NULL abbrev means the end of a series of children. */
18390 if (abbrev == NULL)
18391 {
18392 if (--nesting_level == 0)
cd9983dd
YQ
18393 return first_die;
18394
72bf9492
DJ
18395 info_ptr += bytes_read;
18396 last_die = parent_die;
18397 parent_die = parent_die->die_parent;
18398 continue;
18399 }
18400
98bfdba5
PA
18401 /* Check for template arguments. We never save these; if
18402 they're seen, we just mark the parent, and go on our way. */
18403 if (parent_die != NULL
18404 && cu->language == language_cplus
18405 && (abbrev->tag == DW_TAG_template_type_param
18406 || abbrev->tag == DW_TAG_template_value_param))
18407 {
18408 parent_die->has_template_arguments = 1;
18409
18410 if (!load_all)
18411 {
18412 /* We don't need a partial DIE for the template argument. */
dee91e82 18413 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18414 continue;
18415 }
18416 }
18417
0d99eb77 18418 /* We only recurse into c++ subprograms looking for template arguments.
98bfdba5
PA
18419 Skip their other children. */
18420 if (!load_all
18421 && cu->language == language_cplus
18422 && parent_die != NULL
18423 && parent_die->tag == DW_TAG_subprogram)
18424 {
dee91e82 18425 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18426 continue;
18427 }
18428
5afb4e99
DJ
18429 /* Check whether this DIE is interesting enough to save. Normally
18430 we would not be interested in members here, but there may be
18431 later variables referencing them via DW_AT_specification (for
18432 static members). */
18433 if (!load_all
18434 && !is_type_tag_for_partial (abbrev->tag)
72929c62 18435 && abbrev->tag != DW_TAG_constant
72bf9492
DJ
18436 && abbrev->tag != DW_TAG_enumerator
18437 && abbrev->tag != DW_TAG_subprogram
b1dc1806 18438 && abbrev->tag != DW_TAG_inlined_subroutine
bc30ff58 18439 && abbrev->tag != DW_TAG_lexical_block
72bf9492 18440 && abbrev->tag != DW_TAG_variable
5afb4e99 18441 && abbrev->tag != DW_TAG_namespace
f55ee35c 18442 && abbrev->tag != DW_TAG_module
95554aad 18443 && abbrev->tag != DW_TAG_member
74921315
KS
18444 && abbrev->tag != DW_TAG_imported_unit
18445 && abbrev->tag != DW_TAG_imported_declaration)
72bf9492
DJ
18446 {
18447 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18448 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
72bf9492
DJ
18449 continue;
18450 }
18451
6f06d47b
YQ
18452 struct partial_die_info pdi ((sect_offset) (info_ptr - reader->buffer),
18453 abbrev);
cd9983dd 18454
48fbe735 18455 info_ptr = pdi.read (reader, *abbrev, info_ptr + bytes_read);
72bf9492
DJ
18456
18457 /* This two-pass algorithm for processing partial symbols has a
18458 high cost in cache pressure. Thus, handle some simple cases
18459 here which cover the majority of C partial symbols. DIEs
18460 which neither have specification tags in them, nor could have
18461 specification tags elsewhere pointing at them, can simply be
18462 processed and discarded.
18463
18464 This segment is also optional; scan_partial_symbols and
18465 add_partial_symbol will handle these DIEs if we chain
18466 them in normally. When compilers which do not emit large
18467 quantities of duplicate debug information are more common,
18468 this code can probably be removed. */
18469
18470 /* Any complete simple types at the top level (pretty much all
18471 of them, for a language without namespaces), can be processed
18472 directly. */
18473 if (parent_die == NULL
cd9983dd
YQ
18474 && pdi.has_specification == 0
18475 && pdi.is_declaration == 0
18476 && ((pdi.tag == DW_TAG_typedef && !pdi.has_children)
18477 || pdi.tag == DW_TAG_base_type
18478 || pdi.tag == DW_TAG_subrange_type))
72bf9492 18479 {
cd9983dd
YQ
18480 if (building_psymtab && pdi.name != NULL)
18481 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
79748972 18482 VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 18483 psymbol_placement::STATIC,
1762568f 18484 0, cu->language, objfile);
cd9983dd 18485 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18486 continue;
18487 }
18488
d8228535
JK
18489 /* The exception for DW_TAG_typedef with has_children above is
18490 a workaround of GCC PR debug/47510. In the case of this complaint
a737d952 18491 type_name_or_error will error on such types later.
d8228535
JK
18492
18493 GDB skipped children of DW_TAG_typedef by the shortcut above and then
18494 it could not find the child DIEs referenced later, this is checked
18495 above. In correct DWARF DW_TAG_typedef should have no children. */
18496
cd9983dd 18497 if (pdi.tag == DW_TAG_typedef && pdi.has_children)
b98664d3 18498 complaint (_("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
9d8780f0 18499 "- DIE at %s [in module %s]"),
cd9983dd 18500 sect_offset_str (pdi.sect_off), objfile_name (objfile));
d8228535 18501
72bf9492
DJ
18502 /* If we're at the second level, and we're an enumerator, and
18503 our parent has no specification (meaning possibly lives in a
18504 namespace elsewhere), then we can add the partial symbol now
18505 instead of queueing it. */
cd9983dd 18506 if (pdi.tag == DW_TAG_enumerator
72bf9492
DJ
18507 && parent_die != NULL
18508 && parent_die->die_parent == NULL
18509 && parent_die->tag == DW_TAG_enumeration_type
18510 && parent_die->has_specification == 0)
18511 {
cd9983dd 18512 if (pdi.name == NULL)
b98664d3 18513 complaint (_("malformed enumerator DIE ignored"));
72bf9492 18514 else if (building_psymtab)
cd9983dd 18515 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
79748972 18516 VAR_DOMAIN, LOC_CONST, -1,
9c37b5ae 18517 cu->language == language_cplus
75aedd27
TT
18518 ? psymbol_placement::GLOBAL
18519 : psymbol_placement::STATIC,
1762568f 18520 0, cu->language, objfile);
72bf9492 18521
cd9983dd 18522 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18523 continue;
18524 }
18525
cd9983dd 18526 struct partial_die_info *part_die
6f06d47b 18527 = new (&cu->comp_unit_obstack) partial_die_info (pdi);
cd9983dd 18528
72bf9492
DJ
18529 /* We'll save this DIE so link it in. */
18530 part_die->die_parent = parent_die;
18531 part_die->die_sibling = NULL;
18532 part_die->die_child = NULL;
18533
18534 if (last_die && last_die == parent_die)
18535 last_die->die_child = part_die;
18536 else if (last_die)
18537 last_die->die_sibling = part_die;
18538
18539 last_die = part_die;
18540
18541 if (first_die == NULL)
18542 first_die = part_die;
18543
18544 /* Maybe add the DIE to the hash table. Not all DIEs that we
18545 find interesting need to be in the hash table, because we
18546 also have the parent/sibling/child chains; only those that we
18547 might refer to by offset later during partial symbol reading.
18548
18549 For now this means things that might have be the target of a
18550 DW_AT_specification, DW_AT_abstract_origin, or
18551 DW_AT_extension. DW_AT_extension will refer only to
18552 namespaces; DW_AT_abstract_origin refers to functions (and
18553 many things under the function DIE, but we do not recurse
18554 into function DIEs during partial symbol reading) and
18555 possibly variables as well; DW_AT_specification refers to
18556 declarations. Declarations ought to have the DW_AT_declaration
18557 flag. It happens that GCC forgets to put it in sometimes, but
18558 only for functions, not for types.
18559
18560 Adding more things than necessary to the hash table is harmless
18561 except for the performance cost. Adding too few will result in
5afb4e99
DJ
18562 wasted time in find_partial_die, when we reread the compilation
18563 unit with load_all_dies set. */
72bf9492 18564
5afb4e99 18565 if (load_all
72929c62 18566 || abbrev->tag == DW_TAG_constant
5afb4e99 18567 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
18568 || abbrev->tag == DW_TAG_variable
18569 || abbrev->tag == DW_TAG_namespace
18570 || part_die->is_declaration)
18571 {
18572 void **slot;
18573
18574 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
9c541725
PA
18575 to_underlying (part_die->sect_off),
18576 INSERT);
72bf9492
DJ
18577 *slot = part_die;
18578 }
18579
72bf9492 18580 /* For some DIEs we want to follow their children (if any). For C
bc30ff58 18581 we have no reason to follow the children of structures; for other
98bfdba5
PA
18582 languages we have to, so that we can get at method physnames
18583 to infer fully qualified class names, for DW_AT_specification,
18584 and for C++ template arguments. For C++, we also look one level
18585 inside functions to find template arguments (if the name of the
18586 function does not already contain the template arguments).
bc30ff58
JB
18587
18588 For Ada, we need to scan the children of subprograms and lexical
18589 blocks as well because Ada allows the definition of nested
18590 entities that could be interesting for the debugger, such as
18591 nested subprograms for instance. */
72bf9492 18592 if (last_die->has_children
5afb4e99
DJ
18593 && (load_all
18594 || last_die->tag == DW_TAG_namespace
f55ee35c 18595 || last_die->tag == DW_TAG_module
72bf9492 18596 || last_die->tag == DW_TAG_enumeration_type
98bfdba5
PA
18597 || (cu->language == language_cplus
18598 && last_die->tag == DW_TAG_subprogram
18599 && (last_die->name == NULL
18600 || strchr (last_die->name, '<') == NULL))
72bf9492
DJ
18601 || (cu->language != language_c
18602 && (last_die->tag == DW_TAG_class_type
680b30c7 18603 || last_die->tag == DW_TAG_interface_type
72bf9492 18604 || last_die->tag == DW_TAG_structure_type
bc30ff58
JB
18605 || last_die->tag == DW_TAG_union_type))
18606 || (cu->language == language_ada
18607 && (last_die->tag == DW_TAG_subprogram
18608 || last_die->tag == DW_TAG_lexical_block))))
72bf9492
DJ
18609 {
18610 nesting_level++;
18611 parent_die = last_die;
18612 continue;
18613 }
18614
18615 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18616 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
72bf9492
DJ
18617
18618 /* Back to the top, do it again. */
18619 }
18620}
18621
6f06d47b
YQ
18622partial_die_info::partial_die_info (sect_offset sect_off_,
18623 struct abbrev_info *abbrev)
18624 : partial_die_info (sect_off_, abbrev->tag, abbrev->has_children)
18625{
18626}
18627
35cc7ed7
YQ
18628/* Read a minimal amount of information into the minimal die structure.
18629 INFO_PTR should point just after the initial uleb128 of a DIE. */
c906108c 18630
48fbe735
YQ
18631const gdb_byte *
18632partial_die_info::read (const struct die_reader_specs *reader,
18633 const struct abbrev_info &abbrev, const gdb_byte *info_ptr)
c906108c 18634{
dee91e82 18635 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
18636 struct dwarf2_per_objfile *dwarf2_per_objfile
18637 = cu->per_cu->dwarf2_per_objfile;
fa238c03 18638 unsigned int i;
c5aa993b 18639 int has_low_pc_attr = 0;
c906108c 18640 int has_high_pc_attr = 0;
91da1414 18641 int high_pc_relative = 0;
c906108c 18642
fd0a254f 18643 for (i = 0; i < abbrev.num_attrs; ++i)
c906108c 18644 {
48fbe735
YQ
18645 struct attribute attr;
18646
fd0a254f 18647 info_ptr = read_attribute (reader, &attr, &abbrev.attrs[i], info_ptr);
c906108c
SS
18648
18649 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 18650 partial symbol table. */
c906108c
SS
18651 switch (attr.name)
18652 {
18653 case DW_AT_name:
48fbe735 18654 switch (tag)
71c25dea
TT
18655 {
18656 case DW_TAG_compile_unit:
95554aad 18657 case DW_TAG_partial_unit:
348e048f 18658 case DW_TAG_type_unit:
71c25dea
TT
18659 /* Compilation units have a DW_AT_name that is a filename, not
18660 a source language identifier. */
18661 case DW_TAG_enumeration_type:
18662 case DW_TAG_enumerator:
18663 /* These tags always have simple identifiers already; no need
18664 to canonicalize them. */
48fbe735 18665 name = DW_STRING (&attr);
71c25dea
TT
18666 break;
18667 default:
48fbe735
YQ
18668 {
18669 struct objfile *objfile = dwarf2_per_objfile->objfile;
18670
18671 name
18672 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
18673 &objfile->per_bfd->storage_obstack);
18674 }
71c25dea
TT
18675 break;
18676 }
c906108c 18677 break;
31ef98ae 18678 case DW_AT_linkage_name:
c906108c 18679 case DW_AT_MIPS_linkage_name:
31ef98ae
TT
18680 /* Note that both forms of linkage name might appear. We
18681 assume they will be the same, and we only store the last
18682 one we see. */
94af9270 18683 if (cu->language == language_ada)
48fbe735
YQ
18684 name = DW_STRING (&attr);
18685 linkage_name = DW_STRING (&attr);
c906108c
SS
18686 break;
18687 case DW_AT_low_pc:
18688 has_low_pc_attr = 1;
48fbe735 18689 lowpc = attr_value_as_address (&attr);
c906108c
SS
18690 break;
18691 case DW_AT_high_pc:
18692 has_high_pc_attr = 1;
48fbe735 18693 highpc = attr_value_as_address (&attr);
31aa7e4e
JB
18694 if (cu->header.version >= 4 && attr_form_is_constant (&attr))
18695 high_pc_relative = 1;
c906108c
SS
18696 break;
18697 case DW_AT_location:
0963b4bd 18698 /* Support the .debug_loc offsets. */
8e19ed76
PS
18699 if (attr_form_is_block (&attr))
18700 {
48fbe735 18701 d.locdesc = DW_BLOCK (&attr);
8e19ed76 18702 }
3690dd37 18703 else if (attr_form_is_section_offset (&attr))
8e19ed76 18704 {
4d3c2250 18705 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
18706 }
18707 else
18708 {
4d3c2250
KB
18709 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
18710 "partial symbol information");
8e19ed76 18711 }
c906108c 18712 break;
c906108c 18713 case DW_AT_external:
48fbe735 18714 is_external = DW_UNSND (&attr);
c906108c
SS
18715 break;
18716 case DW_AT_declaration:
48fbe735 18717 is_declaration = DW_UNSND (&attr);
c906108c
SS
18718 break;
18719 case DW_AT_type:
48fbe735 18720 has_type = 1;
c906108c
SS
18721 break;
18722 case DW_AT_abstract_origin:
18723 case DW_AT_specification:
72bf9492 18724 case DW_AT_extension:
48fbe735
YQ
18725 has_specification = 1;
18726 spec_offset = dwarf2_get_ref_die_offset (&attr);
18727 spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728 18728 || cu->per_cu->is_dwz);
c906108c
SS
18729 break;
18730 case DW_AT_sibling:
18731 /* Ignore absolute siblings, they might point outside of
18732 the current compile unit. */
18733 if (attr.form == DW_FORM_ref_addr)
b98664d3 18734 complaint (_("ignoring absolute DW_AT_sibling"));
c906108c 18735 else
b9502d3f 18736 {
48fbe735 18737 const gdb_byte *buffer = reader->buffer;
9c541725
PA
18738 sect_offset off = dwarf2_get_ref_die_offset (&attr);
18739 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
18740
18741 if (sibling_ptr < info_ptr)
b98664d3 18742 complaint (_("DW_AT_sibling points backwards"));
22869d73
KS
18743 else if (sibling_ptr > reader->buffer_end)
18744 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f 18745 else
48fbe735 18746 sibling = sibling_ptr;
b9502d3f 18747 }
c906108c 18748 break;
fa4028e9 18749 case DW_AT_byte_size:
48fbe735 18750 has_byte_size = 1;
fa4028e9 18751 break;
ff908ebf 18752 case DW_AT_const_value:
48fbe735 18753 has_const_value = 1;
ff908ebf 18754 break;
68511cec
CES
18755 case DW_AT_calling_convention:
18756 /* DWARF doesn't provide a way to identify a program's source-level
18757 entry point. DW_AT_calling_convention attributes are only meant
18758 to describe functions' calling conventions.
18759
18760 However, because it's a necessary piece of information in
0c1b455e
TT
18761 Fortran, and before DWARF 4 DW_CC_program was the only
18762 piece of debugging information whose definition refers to
18763 a 'main program' at all, several compilers marked Fortran
18764 main programs with DW_CC_program --- even when those
18765 functions use the standard calling conventions.
18766
18767 Although DWARF now specifies a way to provide this
18768 information, we support this practice for backward
18769 compatibility. */
68511cec 18770 if (DW_UNSND (&attr) == DW_CC_program
0c1b455e 18771 && cu->language == language_fortran)
48fbe735 18772 main_subprogram = 1;
68511cec 18773 break;
481860b3
GB
18774 case DW_AT_inline:
18775 if (DW_UNSND (&attr) == DW_INL_inlined
18776 || DW_UNSND (&attr) == DW_INL_declared_inlined)
48fbe735 18777 may_be_inlined = 1;
481860b3 18778 break;
95554aad
TT
18779
18780 case DW_AT_import:
48fbe735 18781 if (tag == DW_TAG_imported_unit)
36586728 18782 {
48fbe735
YQ
18783 d.sect_off = dwarf2_get_ref_die_offset (&attr);
18784 is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728
TT
18785 || cu->per_cu->is_dwz);
18786 }
95554aad
TT
18787 break;
18788
0c1b455e 18789 case DW_AT_main_subprogram:
48fbe735 18790 main_subprogram = DW_UNSND (&attr);
0c1b455e
TT
18791 break;
18792
05caa1d2
TT
18793 case DW_AT_ranges:
18794 {
18795 /* It would be nice to reuse dwarf2_get_pc_bounds here,
18796 but that requires a full DIE, so instead we just
18797 reimplement it. */
18798 int need_ranges_base = tag != DW_TAG_compile_unit;
18799 unsigned int ranges_offset = (DW_UNSND (&attr)
18800 + (need_ranges_base
18801 ? cu->ranges_base
18802 : 0));
18803
18804 /* Value of the DW_AT_ranges attribute is the offset in the
18805 .debug_ranges section. */
18806 if (dwarf2_ranges_read (ranges_offset, &lowpc, &highpc, cu,
18807 nullptr))
18808 has_pc_info = 1;
18809 }
18810 break;
18811
c906108c
SS
18812 default:
18813 break;
18814 }
18815 }
18816
91da1414 18817 if (high_pc_relative)
48fbe735 18818 highpc += lowpc;
91da1414 18819
9373cf26
JK
18820 if (has_low_pc_attr && has_high_pc_attr)
18821 {
18822 /* When using the GNU linker, .gnu.linkonce. sections are used to
18823 eliminate duplicate copies of functions and vtables and such.
18824 The linker will arbitrarily choose one and discard the others.
18825 The AT_*_pc values for such functions refer to local labels in
18826 these sections. If the section from that file was discarded, the
18827 labels are not in the output, so the relocs get a value of 0.
18828 If this is a discarded function, mark the pc bounds as invalid,
18829 so that GDB will ignore it. */
48fbe735 18830 if (lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
9373cf26 18831 {
48fbe735 18832 struct objfile *objfile = dwarf2_per_objfile->objfile;
bb5ed363 18833 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26 18834
b98664d3 18835 complaint (_("DW_AT_low_pc %s is zero "
9d8780f0 18836 "for DIE at %s [in module %s]"),
48fbe735
YQ
18837 paddress (gdbarch, lowpc),
18838 sect_offset_str (sect_off),
9d8780f0 18839 objfile_name (objfile));
9373cf26
JK
18840 }
18841 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
48fbe735 18842 else if (lowpc >= highpc)
9373cf26 18843 {
48fbe735 18844 struct objfile *objfile = dwarf2_per_objfile->objfile;
bb5ed363 18845 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26 18846
b98664d3 18847 complaint (_("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
9d8780f0 18848 "for DIE at %s [in module %s]"),
48fbe735
YQ
18849 paddress (gdbarch, lowpc),
18850 paddress (gdbarch, highpc),
18851 sect_offset_str (sect_off),
9c541725 18852 objfile_name (objfile));
9373cf26
JK
18853 }
18854 else
48fbe735 18855 has_pc_info = 1;
9373cf26 18856 }
85cbf3d3 18857
c906108c
SS
18858 return info_ptr;
18859}
18860
72bf9492
DJ
18861/* Find a cached partial DIE at OFFSET in CU. */
18862
d590ff25
YQ
18863struct partial_die_info *
18864dwarf2_cu::find_partial_die (sect_offset sect_off)
72bf9492
DJ
18865{
18866 struct partial_die_info *lookup_die = NULL;
6f06d47b 18867 struct partial_die_info part_die (sect_off);
72bf9492 18868
9a3c8263 18869 lookup_die = ((struct partial_die_info *)
d590ff25 18870 htab_find_with_hash (partial_dies, &part_die,
9c541725 18871 to_underlying (sect_off)));
72bf9492 18872
72bf9492
DJ
18873 return lookup_die;
18874}
18875
348e048f
DE
18876/* Find a partial DIE at OFFSET, which may or may not be in CU,
18877 except in the case of .debug_types DIEs which do not reference
18878 outside their CU (they do however referencing other types via
55f1336d 18879 DW_FORM_ref_sig8). */
72bf9492
DJ
18880
18881static struct partial_die_info *
9c541725 18882find_partial_die (sect_offset sect_off, int offset_in_dwz, struct dwarf2_cu *cu)
72bf9492 18883{
518817b3
SM
18884 struct dwarf2_per_objfile *dwarf2_per_objfile
18885 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 18886 struct objfile *objfile = dwarf2_per_objfile->objfile;
5afb4e99
DJ
18887 struct dwarf2_per_cu_data *per_cu = NULL;
18888 struct partial_die_info *pd = NULL;
72bf9492 18889
36586728 18890 if (offset_in_dwz == cu->per_cu->is_dwz
9c541725 18891 && offset_in_cu_p (&cu->header, sect_off))
5afb4e99 18892 {
d590ff25 18893 pd = cu->find_partial_die (sect_off);
5afb4e99
DJ
18894 if (pd != NULL)
18895 return pd;
0d99eb77
DE
18896 /* We missed recording what we needed.
18897 Load all dies and try again. */
18898 per_cu = cu->per_cu;
5afb4e99 18899 }
0d99eb77
DE
18900 else
18901 {
18902 /* TUs don't reference other CUs/TUs (except via type signatures). */
3019eac3 18903 if (cu->per_cu->is_debug_types)
0d99eb77 18904 {
9d8780f0
SM
18905 error (_("Dwarf Error: Type Unit at offset %s contains"
18906 " external reference to offset %s [in module %s].\n"),
18907 sect_offset_str (cu->header.sect_off), sect_offset_str (sect_off),
0d99eb77
DE
18908 bfd_get_filename (objfile->obfd));
18909 }
9c541725 18910 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 18911 dwarf2_per_objfile);
72bf9492 18912
0d99eb77
DE
18913 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
18914 load_partial_comp_unit (per_cu);
ae038cb0 18915
0d99eb77 18916 per_cu->cu->last_used = 0;
d590ff25 18917 pd = per_cu->cu->find_partial_die (sect_off);
0d99eb77 18918 }
5afb4e99 18919
dee91e82
DE
18920 /* If we didn't find it, and not all dies have been loaded,
18921 load them all and try again. */
18922
5afb4e99
DJ
18923 if (pd == NULL && per_cu->load_all_dies == 0)
18924 {
5afb4e99 18925 per_cu->load_all_dies = 1;
fd820528
DE
18926
18927 /* This is nasty. When we reread the DIEs, somewhere up the call chain
18928 THIS_CU->cu may already be in use. So we can't just free it and
18929 replace its DIEs with the ones we read in. Instead, we leave those
18930 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
18931 and clobber THIS_CU->cu->partial_dies with the hash table for the new
18932 set. */
dee91e82 18933 load_partial_comp_unit (per_cu);
5afb4e99 18934
d590ff25 18935 pd = per_cu->cu->find_partial_die (sect_off);
5afb4e99
DJ
18936 }
18937
18938 if (pd == NULL)
18939 internal_error (__FILE__, __LINE__,
9d8780f0 18940 _("could not find partial DIE %s "
3e43a32a 18941 "in cache [from module %s]\n"),
9d8780f0 18942 sect_offset_str (sect_off), bfd_get_filename (objfile->obfd));
5afb4e99 18943 return pd;
72bf9492
DJ
18944}
18945
abc72ce4
DE
18946/* See if we can figure out if the class lives in a namespace. We do
18947 this by looking for a member function; its demangled name will
18948 contain namespace info, if there is any. */
18949
18950static void
18951guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
18952 struct dwarf2_cu *cu)
18953{
18954 /* NOTE: carlton/2003-10-07: Getting the info this way changes
18955 what template types look like, because the demangler
18956 frequently doesn't give the same name as the debug info. We
18957 could fix this by only using the demangled name to get the
18958 prefix (but see comment in read_structure_type). */
18959
18960 struct partial_die_info *real_pdi;
18961 struct partial_die_info *child_pdi;
18962
18963 /* If this DIE (this DIE's specification, if any) has a parent, then
18964 we should not do this. We'll prepend the parent's fully qualified
18965 name when we create the partial symbol. */
18966
18967 real_pdi = struct_pdi;
18968 while (real_pdi->has_specification)
36586728
TT
18969 real_pdi = find_partial_die (real_pdi->spec_offset,
18970 real_pdi->spec_is_dwz, cu);
abc72ce4
DE
18971
18972 if (real_pdi->die_parent != NULL)
18973 return;
18974
18975 for (child_pdi = struct_pdi->die_child;
18976 child_pdi != NULL;
18977 child_pdi = child_pdi->die_sibling)
18978 {
18979 if (child_pdi->tag == DW_TAG_subprogram
18980 && child_pdi->linkage_name != NULL)
18981 {
18982 char *actual_class_name
18983 = language_class_name_from_physname (cu->language_defn,
18984 child_pdi->linkage_name);
18985 if (actual_class_name != NULL)
18986 {
518817b3 18987 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
abc72ce4 18988 struct_pdi->name
224c3ddb 18989 = ((const char *)
e3b94546 18990 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb
SM
18991 actual_class_name,
18992 strlen (actual_class_name)));
abc72ce4
DE
18993 xfree (actual_class_name);
18994 }
18995 break;
18996 }
18997 }
18998}
18999
52356b79
YQ
19000void
19001partial_die_info::fixup (struct dwarf2_cu *cu)
72bf9492 19002{
abc72ce4
DE
19003 /* Once we've fixed up a die, there's no point in doing so again.
19004 This also avoids a memory leak if we were to call
19005 guess_partial_die_structure_name multiple times. */
52356b79 19006 if (fixup_called)
abc72ce4
DE
19007 return;
19008
72bf9492
DJ
19009 /* If we found a reference attribute and the DIE has no name, try
19010 to find a name in the referred to DIE. */
19011
52356b79 19012 if (name == NULL && has_specification)
72bf9492
DJ
19013 {
19014 struct partial_die_info *spec_die;
72bf9492 19015
52356b79 19016 spec_die = find_partial_die (spec_offset, spec_is_dwz, cu);
72bf9492 19017
52356b79 19018 spec_die->fixup (cu);
72bf9492
DJ
19019
19020 if (spec_die->name)
19021 {
52356b79 19022 name = spec_die->name;
72bf9492
DJ
19023
19024 /* Copy DW_AT_external attribute if it is set. */
19025 if (spec_die->is_external)
52356b79 19026 is_external = spec_die->is_external;
72bf9492
DJ
19027 }
19028 }
19029
19030 /* Set default names for some unnamed DIEs. */
72bf9492 19031
52356b79
YQ
19032 if (name == NULL && tag == DW_TAG_namespace)
19033 name = CP_ANONYMOUS_NAMESPACE_STR;
72bf9492 19034
abc72ce4
DE
19035 /* If there is no parent die to provide a namespace, and there are
19036 children, see if we can determine the namespace from their linkage
122d1940 19037 name. */
abc72ce4 19038 if (cu->language == language_cplus
518817b3
SM
19039 && !VEC_empty (dwarf2_section_info_def,
19040 cu->per_cu->dwarf2_per_objfile->types)
52356b79
YQ
19041 && die_parent == NULL
19042 && has_children
19043 && (tag == DW_TAG_class_type
19044 || tag == DW_TAG_structure_type
19045 || tag == DW_TAG_union_type))
19046 guess_partial_die_structure_name (this, cu);
abc72ce4 19047
53832f31
TT
19048 /* GCC might emit a nameless struct or union that has a linkage
19049 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
52356b79
YQ
19050 if (name == NULL
19051 && (tag == DW_TAG_class_type
19052 || tag == DW_TAG_interface_type
19053 || tag == DW_TAG_structure_type
19054 || tag == DW_TAG_union_type)
19055 && linkage_name != NULL)
53832f31
TT
19056 {
19057 char *demangled;
19058
52356b79 19059 demangled = gdb_demangle (linkage_name, DMGL_TYPES);
53832f31
TT
19060 if (demangled)
19061 {
96408a79
SA
19062 const char *base;
19063
19064 /* Strip any leading namespaces/classes, keep only the base name.
19065 DW_AT_name for named DIEs does not contain the prefixes. */
19066 base = strrchr (demangled, ':');
19067 if (base && base > demangled && base[-1] == ':')
19068 base++;
19069 else
19070 base = demangled;
19071
518817b3 19072 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
52356b79 19073 name
224c3ddb 19074 = ((const char *)
e3b94546 19075 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb 19076 base, strlen (base)));
53832f31
TT
19077 xfree (demangled);
19078 }
19079 }
19080
52356b79 19081 fixup_called = 1;
72bf9492
DJ
19082}
19083
a8329558 19084/* Read an attribute value described by an attribute form. */
c906108c 19085
d521ce57 19086static const gdb_byte *
dee91e82
DE
19087read_attribute_value (const struct die_reader_specs *reader,
19088 struct attribute *attr, unsigned form,
43988095 19089 LONGEST implicit_const, const gdb_byte *info_ptr)
c906108c 19090{
dee91e82 19091 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
19092 struct dwarf2_per_objfile *dwarf2_per_objfile
19093 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 19094 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 19095 struct gdbarch *gdbarch = get_objfile_arch (objfile);
dee91e82 19096 bfd *abfd = reader->abfd;
e7c27a73 19097 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19098 unsigned int bytes_read;
19099 struct dwarf_block *blk;
19100
aead7601 19101 attr->form = (enum dwarf_form) form;
a8329558 19102 switch (form)
c906108c 19103 {
c906108c 19104 case DW_FORM_ref_addr:
ae411497 19105 if (cu->header.version == 2)
4568ecf9 19106 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
ae411497 19107 else
4568ecf9
DE
19108 DW_UNSND (attr) = read_offset (abfd, info_ptr,
19109 &cu->header, &bytes_read);
ae411497
TT
19110 info_ptr += bytes_read;
19111 break;
36586728
TT
19112 case DW_FORM_GNU_ref_alt:
19113 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
19114 info_ptr += bytes_read;
19115 break;
ae411497 19116 case DW_FORM_addr:
e7c27a73 19117 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
3e29f34a 19118 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
107d2387 19119 info_ptr += bytes_read;
c906108c
SS
19120 break;
19121 case DW_FORM_block2:
7b5a2f43 19122 blk = dwarf_alloc_block (cu);
c906108c
SS
19123 blk->size = read_2_bytes (abfd, info_ptr);
19124 info_ptr += 2;
19125 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19126 info_ptr += blk->size;
19127 DW_BLOCK (attr) = blk;
19128 break;
19129 case DW_FORM_block4:
7b5a2f43 19130 blk = dwarf_alloc_block (cu);
c906108c
SS
19131 blk->size = read_4_bytes (abfd, info_ptr);
19132 info_ptr += 4;
19133 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19134 info_ptr += blk->size;
19135 DW_BLOCK (attr) = blk;
19136 break;
19137 case DW_FORM_data2:
19138 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
19139 info_ptr += 2;
19140 break;
19141 case DW_FORM_data4:
19142 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
19143 info_ptr += 4;
19144 break;
19145 case DW_FORM_data8:
19146 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
19147 info_ptr += 8;
19148 break;
0224619f
JK
19149 case DW_FORM_data16:
19150 blk = dwarf_alloc_block (cu);
19151 blk->size = 16;
19152 blk->data = read_n_bytes (abfd, info_ptr, 16);
19153 info_ptr += 16;
19154 DW_BLOCK (attr) = blk;
19155 break;
2dc7f7b3
TT
19156 case DW_FORM_sec_offset:
19157 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
19158 info_ptr += bytes_read;
19159 break;
c906108c 19160 case DW_FORM_string:
9b1c24c8 19161 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
8285870a 19162 DW_STRING_IS_CANONICAL (attr) = 0;
c906108c
SS
19163 info_ptr += bytes_read;
19164 break;
4bdf3d34 19165 case DW_FORM_strp:
36586728
TT
19166 if (!cu->per_cu->is_dwz)
19167 {
ed2dc618
SM
19168 DW_STRING (attr) = read_indirect_string (dwarf2_per_objfile,
19169 abfd, info_ptr, cu_header,
36586728
TT
19170 &bytes_read);
19171 DW_STRING_IS_CANONICAL (attr) = 0;
19172 info_ptr += bytes_read;
19173 break;
19174 }
19175 /* FALLTHROUGH */
43988095
JK
19176 case DW_FORM_line_strp:
19177 if (!cu->per_cu->is_dwz)
19178 {
ed2dc618
SM
19179 DW_STRING (attr) = read_indirect_line_string (dwarf2_per_objfile,
19180 abfd, info_ptr,
43988095
JK
19181 cu_header, &bytes_read);
19182 DW_STRING_IS_CANONICAL (attr) = 0;
19183 info_ptr += bytes_read;
19184 break;
19185 }
19186 /* FALLTHROUGH */
36586728
TT
19187 case DW_FORM_GNU_strp_alt:
19188 {
ed2dc618 19189 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728
TT
19190 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
19191 &bytes_read);
19192
ed2dc618
SM
19193 DW_STRING (attr) = read_indirect_string_from_dwz (objfile,
19194 dwz, str_offset);
36586728
TT
19195 DW_STRING_IS_CANONICAL (attr) = 0;
19196 info_ptr += bytes_read;
19197 }
4bdf3d34 19198 break;
2dc7f7b3 19199 case DW_FORM_exprloc:
c906108c 19200 case DW_FORM_block:
7b5a2f43 19201 blk = dwarf_alloc_block (cu);
c906108c
SS
19202 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19203 info_ptr += bytes_read;
19204 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19205 info_ptr += blk->size;
19206 DW_BLOCK (attr) = blk;
19207 break;
19208 case DW_FORM_block1:
7b5a2f43 19209 blk = dwarf_alloc_block (cu);
c906108c
SS
19210 blk->size = read_1_byte (abfd, info_ptr);
19211 info_ptr += 1;
19212 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19213 info_ptr += blk->size;
19214 DW_BLOCK (attr) = blk;
19215 break;
19216 case DW_FORM_data1:
19217 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19218 info_ptr += 1;
19219 break;
19220 case DW_FORM_flag:
19221 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19222 info_ptr += 1;
19223 break;
2dc7f7b3
TT
19224 case DW_FORM_flag_present:
19225 DW_UNSND (attr) = 1;
19226 break;
c906108c
SS
19227 case DW_FORM_sdata:
19228 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19229 info_ptr += bytes_read;
19230 break;
19231 case DW_FORM_udata:
19232 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19233 info_ptr += bytes_read;
19234 break;
19235 case DW_FORM_ref1:
9c541725 19236 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19237 + read_1_byte (abfd, info_ptr));
c906108c
SS
19238 info_ptr += 1;
19239 break;
19240 case DW_FORM_ref2:
9c541725 19241 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19242 + read_2_bytes (abfd, info_ptr));
c906108c
SS
19243 info_ptr += 2;
19244 break;
19245 case DW_FORM_ref4:
9c541725 19246 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19247 + read_4_bytes (abfd, info_ptr));
c906108c
SS
19248 info_ptr += 4;
19249 break;
613e1657 19250 case DW_FORM_ref8:
9c541725 19251 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19252 + read_8_bytes (abfd, info_ptr));
613e1657
KB
19253 info_ptr += 8;
19254 break;
55f1336d 19255 case DW_FORM_ref_sig8:
ac9ec31b 19256 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
348e048f
DE
19257 info_ptr += 8;
19258 break;
c906108c 19259 case DW_FORM_ref_udata:
9c541725 19260 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19261 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
19262 info_ptr += bytes_read;
19263 break;
c906108c 19264 case DW_FORM_indirect:
a8329558
KW
19265 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19266 info_ptr += bytes_read;
43988095
JK
19267 if (form == DW_FORM_implicit_const)
19268 {
19269 implicit_const = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19270 info_ptr += bytes_read;
19271 }
19272 info_ptr = read_attribute_value (reader, attr, form, implicit_const,
19273 info_ptr);
19274 break;
19275 case DW_FORM_implicit_const:
19276 DW_SND (attr) = implicit_const;
a8329558 19277 break;
336d760d 19278 case DW_FORM_addrx:
3019eac3
DE
19279 case DW_FORM_GNU_addr_index:
19280 if (reader->dwo_file == NULL)
19281 {
19282 /* For now flag a hard error.
19283 Later we can turn this into a complaint. */
19284 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19285 dwarf_form_name (form),
19286 bfd_get_filename (abfd));
19287 }
19288 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
19289 info_ptr += bytes_read;
19290 break;
cf532bd1 19291 case DW_FORM_strx:
3019eac3
DE
19292 case DW_FORM_GNU_str_index:
19293 if (reader->dwo_file == NULL)
19294 {
19295 /* For now flag a hard error.
19296 Later we can turn this into a complaint if warranted. */
19297 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19298 dwarf_form_name (form),
19299 bfd_get_filename (abfd));
19300 }
19301 {
19302 ULONGEST str_index =
19303 read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19304
342587c4 19305 DW_STRING (attr) = read_str_index (reader, str_index);
3019eac3
DE
19306 DW_STRING_IS_CANONICAL (attr) = 0;
19307 info_ptr += bytes_read;
19308 }
19309 break;
c906108c 19310 default:
8a3fe4f8 19311 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
19312 dwarf_form_name (form),
19313 bfd_get_filename (abfd));
c906108c 19314 }
28e94949 19315
36586728 19316 /* Super hack. */
7771576e 19317 if (cu->per_cu->is_dwz && attr_form_is_ref (attr))
36586728
TT
19318 attr->form = DW_FORM_GNU_ref_alt;
19319
28e94949
JB
19320 /* We have seen instances where the compiler tried to emit a byte
19321 size attribute of -1 which ended up being encoded as an unsigned
19322 0xffffffff. Although 0xffffffff is technically a valid size value,
19323 an object of this size seems pretty unlikely so we can relatively
19324 safely treat these cases as if the size attribute was invalid and
19325 treat them as zero by default. */
19326 if (attr->name == DW_AT_byte_size
19327 && form == DW_FORM_data4
19328 && DW_UNSND (attr) >= 0xffffffff)
01c66ae6
JB
19329 {
19330 complaint
b98664d3 19331 (_("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
43bbcdc2 19332 hex_string (DW_UNSND (attr)));
01c66ae6
JB
19333 DW_UNSND (attr) = 0;
19334 }
28e94949 19335
c906108c
SS
19336 return info_ptr;
19337}
19338
a8329558
KW
19339/* Read an attribute described by an abbreviated attribute. */
19340
d521ce57 19341static const gdb_byte *
dee91e82
DE
19342read_attribute (const struct die_reader_specs *reader,
19343 struct attribute *attr, struct attr_abbrev *abbrev,
d521ce57 19344 const gdb_byte *info_ptr)
a8329558
KW
19345{
19346 attr->name = abbrev->name;
43988095
JK
19347 return read_attribute_value (reader, attr, abbrev->form,
19348 abbrev->implicit_const, info_ptr);
a8329558
KW
19349}
19350
0963b4bd 19351/* Read dwarf information from a buffer. */
c906108c
SS
19352
19353static unsigned int
a1855c1d 19354read_1_byte (bfd *abfd, const gdb_byte *buf)
c906108c 19355{
fe1b8b76 19356 return bfd_get_8 (abfd, buf);
c906108c
SS
19357}
19358
19359static int
a1855c1d 19360read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
c906108c 19361{
fe1b8b76 19362 return bfd_get_signed_8 (abfd, buf);
c906108c
SS
19363}
19364
19365static unsigned int
a1855c1d 19366read_2_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19367{
fe1b8b76 19368 return bfd_get_16 (abfd, buf);
c906108c
SS
19369}
19370
21ae7a4d 19371static int
a1855c1d 19372read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
19373{
19374 return bfd_get_signed_16 (abfd, buf);
19375}
19376
c906108c 19377static unsigned int
a1855c1d 19378read_4_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19379{
fe1b8b76 19380 return bfd_get_32 (abfd, buf);
c906108c
SS
19381}
19382
21ae7a4d 19383static int
a1855c1d 19384read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
19385{
19386 return bfd_get_signed_32 (abfd, buf);
19387}
19388
93311388 19389static ULONGEST
a1855c1d 19390read_8_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 19391{
fe1b8b76 19392 return bfd_get_64 (abfd, buf);
c906108c
SS
19393}
19394
19395static CORE_ADDR
d521ce57 19396read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
891d2f0b 19397 unsigned int *bytes_read)
c906108c 19398{
e7c27a73 19399 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19400 CORE_ADDR retval = 0;
19401
107d2387 19402 if (cu_header->signed_addr_p)
c906108c 19403 {
107d2387
AC
19404 switch (cu_header->addr_size)
19405 {
19406 case 2:
fe1b8b76 19407 retval = bfd_get_signed_16 (abfd, buf);
107d2387
AC
19408 break;
19409 case 4:
fe1b8b76 19410 retval = bfd_get_signed_32 (abfd, buf);
107d2387
AC
19411 break;
19412 case 8:
fe1b8b76 19413 retval = bfd_get_signed_64 (abfd, buf);
107d2387
AC
19414 break;
19415 default:
8e65ff28 19416 internal_error (__FILE__, __LINE__,
e2e0b3e5 19417 _("read_address: bad switch, signed [in module %s]"),
659b0389 19418 bfd_get_filename (abfd));
107d2387
AC
19419 }
19420 }
19421 else
19422 {
19423 switch (cu_header->addr_size)
19424 {
19425 case 2:
fe1b8b76 19426 retval = bfd_get_16 (abfd, buf);
107d2387
AC
19427 break;
19428 case 4:
fe1b8b76 19429 retval = bfd_get_32 (abfd, buf);
107d2387
AC
19430 break;
19431 case 8:
fe1b8b76 19432 retval = bfd_get_64 (abfd, buf);
107d2387
AC
19433 break;
19434 default:
8e65ff28 19435 internal_error (__FILE__, __LINE__,
a73c6dcd
MS
19436 _("read_address: bad switch, "
19437 "unsigned [in module %s]"),
659b0389 19438 bfd_get_filename (abfd));
107d2387 19439 }
c906108c 19440 }
64367e0a 19441
107d2387
AC
19442 *bytes_read = cu_header->addr_size;
19443 return retval;
c906108c
SS
19444}
19445
f7ef9339 19446/* Read the initial length from a section. The (draft) DWARF 3
613e1657
KB
19447 specification allows the initial length to take up either 4 bytes
19448 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
19449 bytes describe the length and all offsets will be 8 bytes in length
19450 instead of 4.
19451
f7ef9339
KB
19452 An older, non-standard 64-bit format is also handled by this
19453 function. The older format in question stores the initial length
19454 as an 8-byte quantity without an escape value. Lengths greater
19455 than 2^32 aren't very common which means that the initial 4 bytes
19456 is almost always zero. Since a length value of zero doesn't make
19457 sense for the 32-bit format, this initial zero can be considered to
19458 be an escape value which indicates the presence of the older 64-bit
19459 format. As written, the code can't detect (old format) lengths
917c78fc
MK
19460 greater than 4GB. If it becomes necessary to handle lengths
19461 somewhat larger than 4GB, we could allow other small values (such
19462 as the non-sensical values of 1, 2, and 3) to also be used as
19463 escape values indicating the presence of the old format.
f7ef9339 19464
917c78fc
MK
19465 The value returned via bytes_read should be used to increment the
19466 relevant pointer after calling read_initial_length().
c764a876 19467
613e1657
KB
19468 [ Note: read_initial_length() and read_offset() are based on the
19469 document entitled "DWARF Debugging Information Format", revision
f7ef9339 19470 3, draft 8, dated November 19, 2001. This document was obtained
613e1657
KB
19471 from:
19472
f7ef9339 19473 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
6e70227d 19474
613e1657
KB
19475 This document is only a draft and is subject to change. (So beware.)
19476
f7ef9339 19477 Details regarding the older, non-standard 64-bit format were
917c78fc
MK
19478 determined empirically by examining 64-bit ELF files produced by
19479 the SGI toolchain on an IRIX 6.5 machine.
f7ef9339
KB
19480
19481 - Kevin, July 16, 2002
613e1657
KB
19482 ] */
19483
19484static LONGEST
d521ce57 19485read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
613e1657 19486{
fe1b8b76 19487 LONGEST length = bfd_get_32 (abfd, buf);
613e1657 19488
dd373385 19489 if (length == 0xffffffff)
613e1657 19490 {
fe1b8b76 19491 length = bfd_get_64 (abfd, buf + 4);
613e1657 19492 *bytes_read = 12;
613e1657 19493 }
dd373385 19494 else if (length == 0)
f7ef9339 19495 {
dd373385 19496 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
fe1b8b76 19497 length = bfd_get_64 (abfd, buf);
f7ef9339 19498 *bytes_read = 8;
f7ef9339 19499 }
613e1657
KB
19500 else
19501 {
19502 *bytes_read = 4;
613e1657
KB
19503 }
19504
c764a876
DE
19505 return length;
19506}
dd373385 19507
c764a876
DE
19508/* Cover function for read_initial_length.
19509 Returns the length of the object at BUF, and stores the size of the
19510 initial length in *BYTES_READ and stores the size that offsets will be in
19511 *OFFSET_SIZE.
19512 If the initial length size is not equivalent to that specified in
19513 CU_HEADER then issue a complaint.
19514 This is useful when reading non-comp-unit headers. */
dd373385 19515
c764a876 19516static LONGEST
d521ce57 19517read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
c764a876
DE
19518 const struct comp_unit_head *cu_header,
19519 unsigned int *bytes_read,
19520 unsigned int *offset_size)
19521{
19522 LONGEST length = read_initial_length (abfd, buf, bytes_read);
19523
19524 gdb_assert (cu_header->initial_length_size == 4
19525 || cu_header->initial_length_size == 8
19526 || cu_header->initial_length_size == 12);
19527
19528 if (cu_header->initial_length_size != *bytes_read)
b98664d3 19529 complaint (_("intermixed 32-bit and 64-bit DWARF sections"));
dd373385 19530
c764a876 19531 *offset_size = (*bytes_read == 4) ? 4 : 8;
dd373385 19532 return length;
613e1657
KB
19533}
19534
19535/* Read an offset from the data stream. The size of the offset is
917c78fc 19536 given by cu_header->offset_size. */
613e1657
KB
19537
19538static LONGEST
d521ce57
TT
19539read_offset (bfd *abfd, const gdb_byte *buf,
19540 const struct comp_unit_head *cu_header,
891d2f0b 19541 unsigned int *bytes_read)
c764a876
DE
19542{
19543 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
9a619af0 19544
c764a876
DE
19545 *bytes_read = cu_header->offset_size;
19546 return offset;
19547}
19548
19549/* Read an offset from the data stream. */
19550
19551static LONGEST
d521ce57 19552read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
613e1657
KB
19553{
19554 LONGEST retval = 0;
19555
c764a876 19556 switch (offset_size)
613e1657
KB
19557 {
19558 case 4:
fe1b8b76 19559 retval = bfd_get_32 (abfd, buf);
613e1657
KB
19560 break;
19561 case 8:
fe1b8b76 19562 retval = bfd_get_64 (abfd, buf);
613e1657
KB
19563 break;
19564 default:
8e65ff28 19565 internal_error (__FILE__, __LINE__,
c764a876 19566 _("read_offset_1: bad switch [in module %s]"),
659b0389 19567 bfd_get_filename (abfd));
613e1657
KB
19568 }
19569
917c78fc 19570 return retval;
613e1657
KB
19571}
19572
d521ce57
TT
19573static const gdb_byte *
19574read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
c906108c
SS
19575{
19576 /* If the size of a host char is 8 bits, we can return a pointer
19577 to the buffer, otherwise we have to copy the data to a buffer
19578 allocated on the temporary obstack. */
4bdf3d34 19579 gdb_assert (HOST_CHAR_BIT == 8);
c906108c 19580 return buf;
c906108c
SS
19581}
19582
d521ce57
TT
19583static const char *
19584read_direct_string (bfd *abfd, const gdb_byte *buf,
19585 unsigned int *bytes_read_ptr)
c906108c
SS
19586{
19587 /* If the size of a host char is 8 bits, we can return a pointer
19588 to the string, otherwise we have to copy the string to a buffer
19589 allocated on the temporary obstack. */
4bdf3d34 19590 gdb_assert (HOST_CHAR_BIT == 8);
c906108c
SS
19591 if (*buf == '\0')
19592 {
19593 *bytes_read_ptr = 1;
19594 return NULL;
19595 }
d521ce57
TT
19596 *bytes_read_ptr = strlen ((const char *) buf) + 1;
19597 return (const char *) buf;
4bdf3d34
JJ
19598}
19599
43988095
JK
19600/* Return pointer to string at section SECT offset STR_OFFSET with error
19601 reporting strings FORM_NAME and SECT_NAME. */
19602
d521ce57 19603static const char *
ed2dc618
SM
19604read_indirect_string_at_offset_from (struct objfile *objfile,
19605 bfd *abfd, LONGEST str_offset,
43988095
JK
19606 struct dwarf2_section_info *sect,
19607 const char *form_name,
19608 const char *sect_name)
19609{
ed2dc618 19610 dwarf2_read_section (objfile, sect);
43988095
JK
19611 if (sect->buffer == NULL)
19612 error (_("%s used without %s section [in module %s]"),
19613 form_name, sect_name, bfd_get_filename (abfd));
19614 if (str_offset >= sect->size)
19615 error (_("%s pointing outside of %s section [in module %s]"),
19616 form_name, sect_name, bfd_get_filename (abfd));
4bdf3d34 19617 gdb_assert (HOST_CHAR_BIT == 8);
43988095 19618 if (sect->buffer[str_offset] == '\0')
4bdf3d34 19619 return NULL;
43988095
JK
19620 return (const char *) (sect->buffer + str_offset);
19621}
19622
19623/* Return pointer to string at .debug_str offset STR_OFFSET. */
19624
19625static const char *
ed2dc618
SM
19626read_indirect_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19627 bfd *abfd, LONGEST str_offset)
43988095 19628{
ed2dc618
SM
19629 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19630 abfd, str_offset,
43988095
JK
19631 &dwarf2_per_objfile->str,
19632 "DW_FORM_strp", ".debug_str");
19633}
19634
19635/* Return pointer to string at .debug_line_str offset STR_OFFSET. */
19636
19637static const char *
ed2dc618
SM
19638read_indirect_line_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19639 bfd *abfd, LONGEST str_offset)
43988095 19640{
ed2dc618
SM
19641 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19642 abfd, str_offset,
43988095
JK
19643 &dwarf2_per_objfile->line_str,
19644 "DW_FORM_line_strp",
19645 ".debug_line_str");
c906108c
SS
19646}
19647
36586728
TT
19648/* Read a string at offset STR_OFFSET in the .debug_str section from
19649 the .dwz file DWZ. Throw an error if the offset is too large. If
19650 the string consists of a single NUL byte, return NULL; otherwise
19651 return a pointer to the string. */
19652
d521ce57 19653static const char *
ed2dc618
SM
19654read_indirect_string_from_dwz (struct objfile *objfile, struct dwz_file *dwz,
19655 LONGEST str_offset)
36586728 19656{
ed2dc618 19657 dwarf2_read_section (objfile, &dwz->str);
36586728
TT
19658
19659 if (dwz->str.buffer == NULL)
19660 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
19661 "section [in module %s]"),
19662 bfd_get_filename (dwz->dwz_bfd));
19663 if (str_offset >= dwz->str.size)
19664 error (_("DW_FORM_GNU_strp_alt pointing outside of "
19665 ".debug_str section [in module %s]"),
19666 bfd_get_filename (dwz->dwz_bfd));
19667 gdb_assert (HOST_CHAR_BIT == 8);
19668 if (dwz->str.buffer[str_offset] == '\0')
19669 return NULL;
d521ce57 19670 return (const char *) (dwz->str.buffer + str_offset);
36586728
TT
19671}
19672
43988095
JK
19673/* Return pointer to string at .debug_str offset as read from BUF.
19674 BUF is assumed to be in a compilation unit described by CU_HEADER.
19675 Return *BYTES_READ_PTR count of bytes read from BUF. */
19676
d521ce57 19677static const char *
ed2dc618
SM
19678read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
19679 const gdb_byte *buf,
cf2c3c16
TT
19680 const struct comp_unit_head *cu_header,
19681 unsigned int *bytes_read_ptr)
19682{
19683 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19684
ed2dc618 19685 return read_indirect_string_at_offset (dwarf2_per_objfile, abfd, str_offset);
cf2c3c16
TT
19686}
19687
43988095
JK
19688/* Return pointer to string at .debug_line_str offset as read from BUF.
19689 BUF is assumed to be in a compilation unit described by CU_HEADER.
19690 Return *BYTES_READ_PTR count of bytes read from BUF. */
19691
19692static const char *
ed2dc618
SM
19693read_indirect_line_string (struct dwarf2_per_objfile *dwarf2_per_objfile,
19694 bfd *abfd, const gdb_byte *buf,
43988095
JK
19695 const struct comp_unit_head *cu_header,
19696 unsigned int *bytes_read_ptr)
19697{
19698 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19699
ed2dc618
SM
19700 return read_indirect_line_string_at_offset (dwarf2_per_objfile, abfd,
19701 str_offset);
43988095
JK
19702}
19703
19704ULONGEST
d521ce57 19705read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
43988095 19706 unsigned int *bytes_read_ptr)
c906108c 19707{
12df843f 19708 ULONGEST result;
ce5d95e1 19709 unsigned int num_read;
870f88f7 19710 int shift;
c906108c
SS
19711 unsigned char byte;
19712
19713 result = 0;
19714 shift = 0;
19715 num_read = 0;
c906108c
SS
19716 while (1)
19717 {
fe1b8b76 19718 byte = bfd_get_8 (abfd, buf);
c906108c
SS
19719 buf++;
19720 num_read++;
12df843f 19721 result |= ((ULONGEST) (byte & 127) << shift);
c906108c
SS
19722 if ((byte & 128) == 0)
19723 {
19724 break;
19725 }
19726 shift += 7;
19727 }
19728 *bytes_read_ptr = num_read;
19729 return result;
19730}
19731
12df843f 19732static LONGEST
d521ce57
TT
19733read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
19734 unsigned int *bytes_read_ptr)
c906108c 19735{
4dd1b460 19736 ULONGEST result;
870f88f7 19737 int shift, num_read;
c906108c
SS
19738 unsigned char byte;
19739
19740 result = 0;
19741 shift = 0;
c906108c 19742 num_read = 0;
c906108c
SS
19743 while (1)
19744 {
fe1b8b76 19745 byte = bfd_get_8 (abfd, buf);
c906108c
SS
19746 buf++;
19747 num_read++;
4dd1b460 19748 result |= ((ULONGEST) (byte & 127) << shift);
c906108c
SS
19749 shift += 7;
19750 if ((byte & 128) == 0)
19751 {
19752 break;
19753 }
19754 }
77e0b926 19755 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
4dd1b460 19756 result |= -(((ULONGEST) 1) << shift);
c906108c
SS
19757 *bytes_read_ptr = num_read;
19758 return result;
19759}
19760
3019eac3
DE
19761/* Given index ADDR_INDEX in .debug_addr, fetch the value.
19762 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
19763 ADDR_SIZE is the size of addresses from the CU header. */
19764
19765static CORE_ADDR
ed2dc618
SM
19766read_addr_index_1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
19767 unsigned int addr_index, ULONGEST addr_base, int addr_size)
3019eac3
DE
19768{
19769 struct objfile *objfile = dwarf2_per_objfile->objfile;
19770 bfd *abfd = objfile->obfd;
19771 const gdb_byte *info_ptr;
19772
19773 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
19774 if (dwarf2_per_objfile->addr.buffer == NULL)
19775 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
4262abfb 19776 objfile_name (objfile));
3019eac3
DE
19777 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
19778 error (_("DW_FORM_addr_index pointing outside of "
19779 ".debug_addr section [in module %s]"),
4262abfb 19780 objfile_name (objfile));
3019eac3
DE
19781 info_ptr = (dwarf2_per_objfile->addr.buffer
19782 + addr_base + addr_index * addr_size);
19783 if (addr_size == 4)
19784 return bfd_get_32 (abfd, info_ptr);
19785 else
19786 return bfd_get_64 (abfd, info_ptr);
19787}
19788
19789/* Given index ADDR_INDEX in .debug_addr, fetch the value. */
19790
19791static CORE_ADDR
19792read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
19793{
518817b3
SM
19794 return read_addr_index_1 (cu->per_cu->dwarf2_per_objfile, addr_index,
19795 cu->addr_base, cu->header.addr_size);
3019eac3
DE
19796}
19797
19798/* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
19799
19800static CORE_ADDR
d521ce57 19801read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
3019eac3
DE
19802 unsigned int *bytes_read)
19803{
518817b3 19804 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
3019eac3
DE
19805 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
19806
19807 return read_addr_index (cu, addr_index);
19808}
19809
19810/* Data structure to pass results from dwarf2_read_addr_index_reader
19811 back to dwarf2_read_addr_index. */
19812
19813struct dwarf2_read_addr_index_data
19814{
19815 ULONGEST addr_base;
19816 int addr_size;
19817};
19818
19819/* die_reader_func for dwarf2_read_addr_index. */
19820
19821static void
19822dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
d521ce57 19823 const gdb_byte *info_ptr,
3019eac3
DE
19824 struct die_info *comp_unit_die,
19825 int has_children,
19826 void *data)
19827{
19828 struct dwarf2_cu *cu = reader->cu;
19829 struct dwarf2_read_addr_index_data *aidata =
19830 (struct dwarf2_read_addr_index_data *) data;
19831
19832 aidata->addr_base = cu->addr_base;
19833 aidata->addr_size = cu->header.addr_size;
19834}
19835
19836/* Given an index in .debug_addr, fetch the value.
19837 NOTE: This can be called during dwarf expression evaluation,
19838 long after the debug information has been read, and thus per_cu->cu
19839 may no longer exist. */
19840
19841CORE_ADDR
19842dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
19843 unsigned int addr_index)
19844{
ed2dc618 19845 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
3019eac3
DE
19846 struct dwarf2_cu *cu = per_cu->cu;
19847 ULONGEST addr_base;
19848 int addr_size;
19849
3019eac3
DE
19850 /* We need addr_base and addr_size.
19851 If we don't have PER_CU->cu, we have to get it.
19852 Nasty, but the alternative is storing the needed info in PER_CU,
19853 which at this point doesn't seem justified: it's not clear how frequently
19854 it would get used and it would increase the size of every PER_CU.
19855 Entry points like dwarf2_per_cu_addr_size do a similar thing
19856 so we're not in uncharted territory here.
19857 Alas we need to be a bit more complicated as addr_base is contained
19858 in the DIE.
19859
19860 We don't need to read the entire CU(/TU).
19861 We just need the header and top level die.
a1b64ce1 19862
3019eac3 19863 IWBN to use the aging mechanism to let us lazily later discard the CU.
a1b64ce1 19864 For now we skip this optimization. */
3019eac3
DE
19865
19866 if (cu != NULL)
19867 {
19868 addr_base = cu->addr_base;
19869 addr_size = cu->header.addr_size;
19870 }
19871 else
19872 {
19873 struct dwarf2_read_addr_index_data aidata;
19874
a1b64ce1
DE
19875 /* Note: We can't use init_cutu_and_read_dies_simple here,
19876 we need addr_base. */
58f0c718 19877 init_cutu_and_read_dies (per_cu, NULL, 0, 0, false,
a1b64ce1 19878 dwarf2_read_addr_index_reader, &aidata);
3019eac3
DE
19879 addr_base = aidata.addr_base;
19880 addr_size = aidata.addr_size;
19881 }
19882
ed2dc618
SM
19883 return read_addr_index_1 (dwarf2_per_objfile, addr_index, addr_base,
19884 addr_size);
3019eac3
DE
19885}
19886
cf532bd1 19887/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
57d63ce2 19888 This is only used by the Fission support. */
3019eac3 19889
d521ce57 19890static const char *
342587c4 19891read_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
3019eac3 19892{
ed2dc618 19893 struct dwarf2_cu *cu = reader->cu;
518817b3
SM
19894 struct dwarf2_per_objfile *dwarf2_per_objfile
19895 = cu->per_cu->dwarf2_per_objfile;
3019eac3 19896 struct objfile *objfile = dwarf2_per_objfile->objfile;
c5164cbc 19897 const char *objf_name = objfile_name (objfile);
3019eac3 19898 bfd *abfd = objfile->obfd;
73869dc2
DE
19899 struct dwarf2_section_info *str_section = &reader->dwo_file->sections.str;
19900 struct dwarf2_section_info *str_offsets_section =
19901 &reader->dwo_file->sections.str_offsets;
d521ce57 19902 const gdb_byte *info_ptr;
3019eac3 19903 ULONGEST str_offset;
cf532bd1 19904 static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";
3019eac3 19905
73869dc2
DE
19906 dwarf2_read_section (objfile, str_section);
19907 dwarf2_read_section (objfile, str_offsets_section);
19908 if (str_section->buffer == NULL)
57d63ce2 19909 error (_("%s used without .debug_str.dwo section"
9d8780f0
SM
19910 " in CU at offset %s [in module %s]"),
19911 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19912 if (str_offsets_section->buffer == NULL)
57d63ce2 19913 error (_("%s used without .debug_str_offsets.dwo section"
9d8780f0
SM
19914 " in CU at offset %s [in module %s]"),
19915 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19916 if (str_index * cu->header.offset_size >= str_offsets_section->size)
57d63ce2 19917 error (_("%s pointing outside of .debug_str_offsets.dwo"
9d8780f0
SM
19918 " section in CU at offset %s [in module %s]"),
19919 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19920 info_ptr = (str_offsets_section->buffer
3019eac3
DE
19921 + str_index * cu->header.offset_size);
19922 if (cu->header.offset_size == 4)
19923 str_offset = bfd_get_32 (abfd, info_ptr);
19924 else
19925 str_offset = bfd_get_64 (abfd, info_ptr);
73869dc2 19926 if (str_offset >= str_section->size)
57d63ce2 19927 error (_("Offset from %s pointing outside of"
9d8780f0
SM
19928 " .debug_str.dwo section in CU at offset %s [in module %s]"),
19929 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19930 return (const char *) (str_section->buffer + str_offset);
3019eac3
DE
19931}
19932
3019eac3
DE
19933/* Return the length of an LEB128 number in BUF. */
19934
19935static int
19936leb128_size (const gdb_byte *buf)
19937{
19938 const gdb_byte *begin = buf;
19939 gdb_byte byte;
19940
19941 while (1)
19942 {
19943 byte = *buf++;
19944 if ((byte & 128) == 0)
19945 return buf - begin;
19946 }
19947}
19948
c906108c 19949static void
e142c38c 19950set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
19951{
19952 switch (lang)
19953 {
19954 case DW_LANG_C89:
76bee0cc 19955 case DW_LANG_C99:
0cfd832f 19956 case DW_LANG_C11:
c906108c 19957 case DW_LANG_C:
d1be3247 19958 case DW_LANG_UPC:
e142c38c 19959 cu->language = language_c;
c906108c 19960 break;
9c37b5ae 19961 case DW_LANG_Java:
c906108c 19962 case DW_LANG_C_plus_plus:
0cfd832f
MW
19963 case DW_LANG_C_plus_plus_11:
19964 case DW_LANG_C_plus_plus_14:
e142c38c 19965 cu->language = language_cplus;
c906108c 19966 break;
6aecb9c2
JB
19967 case DW_LANG_D:
19968 cu->language = language_d;
19969 break;
c906108c
SS
19970 case DW_LANG_Fortran77:
19971 case DW_LANG_Fortran90:
b21b22e0 19972 case DW_LANG_Fortran95:
f7de9aab
MW
19973 case DW_LANG_Fortran03:
19974 case DW_LANG_Fortran08:
e142c38c 19975 cu->language = language_fortran;
c906108c 19976 break;
a766d390
DE
19977 case DW_LANG_Go:
19978 cu->language = language_go;
19979 break;
c906108c 19980 case DW_LANG_Mips_Assembler:
e142c38c 19981 cu->language = language_asm;
c906108c
SS
19982 break;
19983 case DW_LANG_Ada83:
8aaf0b47 19984 case DW_LANG_Ada95:
bc5f45f8
JB
19985 cu->language = language_ada;
19986 break;
72019c9c
GM
19987 case DW_LANG_Modula2:
19988 cu->language = language_m2;
19989 break;
fe8e67fd
PM
19990 case DW_LANG_Pascal83:
19991 cu->language = language_pascal;
19992 break;
22566fbd
DJ
19993 case DW_LANG_ObjC:
19994 cu->language = language_objc;
19995 break;
c44af4eb
TT
19996 case DW_LANG_Rust:
19997 case DW_LANG_Rust_old:
19998 cu->language = language_rust;
19999 break;
c906108c
SS
20000 case DW_LANG_Cobol74:
20001 case DW_LANG_Cobol85:
c906108c 20002 default:
e142c38c 20003 cu->language = language_minimal;
c906108c
SS
20004 break;
20005 }
e142c38c 20006 cu->language_defn = language_def (cu->language);
c906108c
SS
20007}
20008
20009/* Return the named attribute or NULL if not there. */
20010
20011static struct attribute *
e142c38c 20012dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c 20013{
a48e046c 20014 for (;;)
c906108c 20015 {
a48e046c
TT
20016 unsigned int i;
20017 struct attribute *spec = NULL;
20018
20019 for (i = 0; i < die->num_attrs; ++i)
20020 {
20021 if (die->attrs[i].name == name)
20022 return &die->attrs[i];
20023 if (die->attrs[i].name == DW_AT_specification
20024 || die->attrs[i].name == DW_AT_abstract_origin)
20025 spec = &die->attrs[i];
20026 }
20027
20028 if (!spec)
20029 break;
c906108c 20030
f2f0e013 20031 die = follow_die_ref (die, spec, &cu);
f2f0e013 20032 }
c5aa993b 20033
c906108c
SS
20034 return NULL;
20035}
20036
348e048f
DE
20037/* Return the named attribute or NULL if not there,
20038 but do not follow DW_AT_specification, etc.
20039 This is for use in contexts where we're reading .debug_types dies.
20040 Following DW_AT_specification, DW_AT_abstract_origin will take us
20041 back up the chain, and we want to go down. */
20042
20043static struct attribute *
45e58e77 20044dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
348e048f
DE
20045{
20046 unsigned int i;
20047
20048 for (i = 0; i < die->num_attrs; ++i)
20049 if (die->attrs[i].name == name)
20050 return &die->attrs[i];
20051
20052 return NULL;
20053}
20054
7d45c7c3
KB
20055/* Return the string associated with a string-typed attribute, or NULL if it
20056 is either not found or is of an incorrect type. */
20057
20058static const char *
20059dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
20060{
20061 struct attribute *attr;
20062 const char *str = NULL;
20063
20064 attr = dwarf2_attr (die, name, cu);
20065
20066 if (attr != NULL)
20067 {
43988095 20068 if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
b3340438 20069 || attr->form == DW_FORM_string
cf532bd1 20070 || attr->form == DW_FORM_strx
b3340438 20071 || attr->form == DW_FORM_GNU_str_index
16eb6b2d 20072 || attr->form == DW_FORM_GNU_strp_alt)
7d45c7c3
KB
20073 str = DW_STRING (attr);
20074 else
b98664d3 20075 complaint (_("string type expected for attribute %s for "
9d8780f0
SM
20076 "DIE at %s in module %s"),
20077 dwarf_attr_name (name), sect_offset_str (die->sect_off),
518817b3 20078 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
7d45c7c3
KB
20079 }
20080
20081 return str;
20082}
20083
05cf31d1
JB
20084/* Return non-zero iff the attribute NAME is defined for the given DIE,
20085 and holds a non-zero value. This function should only be used for
2dc7f7b3 20086 DW_FORM_flag or DW_FORM_flag_present attributes. */
05cf31d1
JB
20087
20088static int
20089dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
20090{
20091 struct attribute *attr = dwarf2_attr (die, name, cu);
20092
20093 return (attr && DW_UNSND (attr));
20094}
20095
3ca72b44 20096static int
e142c38c 20097die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 20098{
05cf31d1
JB
20099 /* A DIE is a declaration if it has a DW_AT_declaration attribute
20100 which value is non-zero. However, we have to be careful with
20101 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
20102 (via dwarf2_flag_true_p) follows this attribute. So we may
20103 end up accidently finding a declaration attribute that belongs
20104 to a different DIE referenced by the specification attribute,
20105 even though the given DIE does not have a declaration attribute. */
20106 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
20107 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
20108}
20109
63d06c5c 20110/* Return the die giving the specification for DIE, if there is
f2f0e013 20111 one. *SPEC_CU is the CU containing DIE on input, and the CU
edb3359d
DJ
20112 containing the return value on output. If there is no
20113 specification, but there is an abstract origin, that is
20114 returned. */
63d06c5c
DC
20115
20116static struct die_info *
f2f0e013 20117die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
63d06c5c 20118{
f2f0e013
DJ
20119 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
20120 *spec_cu);
63d06c5c 20121
edb3359d
DJ
20122 if (spec_attr == NULL)
20123 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
20124
63d06c5c
DC
20125 if (spec_attr == NULL)
20126 return NULL;
20127 else
f2f0e013 20128 return follow_die_ref (die, spec_attr, spec_cu);
63d06c5c 20129}
c906108c 20130
527f3840
JK
20131/* Stub for free_line_header to match void * callback types. */
20132
20133static void
20134free_line_header_voidp (void *arg)
20135{
9a3c8263 20136 struct line_header *lh = (struct line_header *) arg;
527f3840 20137
fff8551c 20138 delete lh;
527f3840
JK
20139}
20140
fff8551c
PA
20141void
20142line_header::add_include_dir (const char *include_dir)
c906108c 20143{
27e0867f 20144 if (dwarf_line_debug >= 2)
fff8551c
PA
20145 fprintf_unfiltered (gdb_stdlog, "Adding dir %zu: %s\n",
20146 include_dirs.size () + 1, include_dir);
27e0867f 20147
fff8551c 20148 include_dirs.push_back (include_dir);
debd256d 20149}
6e70227d 20150
fff8551c
PA
20151void
20152line_header::add_file_name (const char *name,
ecfb656c 20153 dir_index d_index,
fff8551c
PA
20154 unsigned int mod_time,
20155 unsigned int length)
debd256d 20156{
27e0867f
DE
20157 if (dwarf_line_debug >= 2)
20158 fprintf_unfiltered (gdb_stdlog, "Adding file %u: %s\n",
fff8551c 20159 (unsigned) file_names.size () + 1, name);
27e0867f 20160
ecfb656c 20161 file_names.emplace_back (name, d_index, mod_time, length);
debd256d 20162}
6e70227d 20163
83769d0b 20164/* A convenience function to find the proper .debug_line section for a CU. */
36586728
TT
20165
20166static struct dwarf2_section_info *
20167get_debug_line_section (struct dwarf2_cu *cu)
20168{
20169 struct dwarf2_section_info *section;
518817b3
SM
20170 struct dwarf2_per_objfile *dwarf2_per_objfile
20171 = cu->per_cu->dwarf2_per_objfile;
36586728
TT
20172
20173 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
20174 DWO file. */
20175 if (cu->dwo_unit && cu->per_cu->is_debug_types)
20176 section = &cu->dwo_unit->dwo_file->sections.line;
20177 else if (cu->per_cu->is_dwz)
20178 {
ed2dc618 20179 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728
TT
20180
20181 section = &dwz->line;
20182 }
20183 else
20184 section = &dwarf2_per_objfile->line;
20185
20186 return section;
20187}
20188
43988095
JK
20189/* Read directory or file name entry format, starting with byte of
20190 format count entries, ULEB128 pairs of entry formats, ULEB128 of
20191 entries count and the entries themselves in the described entry
20192 format. */
20193
20194static void
ed2dc618
SM
20195read_formatted_entries (struct dwarf2_per_objfile *dwarf2_per_objfile,
20196 bfd *abfd, const gdb_byte **bufp,
43988095
JK
20197 struct line_header *lh,
20198 const struct comp_unit_head *cu_header,
20199 void (*callback) (struct line_header *lh,
20200 const char *name,
ecfb656c 20201 dir_index d_index,
43988095
JK
20202 unsigned int mod_time,
20203 unsigned int length))
20204{
20205 gdb_byte format_count, formati;
20206 ULONGEST data_count, datai;
20207 const gdb_byte *buf = *bufp;
20208 const gdb_byte *format_header_data;
43988095
JK
20209 unsigned int bytes_read;
20210
20211 format_count = read_1_byte (abfd, buf);
20212 buf += 1;
20213 format_header_data = buf;
20214 for (formati = 0; formati < format_count; formati++)
20215 {
20216 read_unsigned_leb128 (abfd, buf, &bytes_read);
20217 buf += bytes_read;
20218 read_unsigned_leb128 (abfd, buf, &bytes_read);
20219 buf += bytes_read;
20220 }
20221
20222 data_count = read_unsigned_leb128 (abfd, buf, &bytes_read);
20223 buf += bytes_read;
20224 for (datai = 0; datai < data_count; datai++)
20225 {
20226 const gdb_byte *format = format_header_data;
20227 struct file_entry fe;
20228
43988095
JK
20229 for (formati = 0; formati < format_count; formati++)
20230 {
ecfb656c 20231 ULONGEST content_type = read_unsigned_leb128 (abfd, format, &bytes_read);
43988095 20232 format += bytes_read;
43988095 20233
ecfb656c 20234 ULONGEST form = read_unsigned_leb128 (abfd, format, &bytes_read);
43988095 20235 format += bytes_read;
ecfb656c
PA
20236
20237 gdb::optional<const char *> string;
20238 gdb::optional<unsigned int> uint;
20239
43988095
JK
20240 switch (form)
20241 {
20242 case DW_FORM_string:
ecfb656c 20243 string.emplace (read_direct_string (abfd, buf, &bytes_read));
43988095
JK
20244 buf += bytes_read;
20245 break;
20246
20247 case DW_FORM_line_strp:
ed2dc618
SM
20248 string.emplace (read_indirect_line_string (dwarf2_per_objfile,
20249 abfd, buf,
ecfb656c
PA
20250 cu_header,
20251 &bytes_read));
43988095
JK
20252 buf += bytes_read;
20253 break;
20254
20255 case DW_FORM_data1:
ecfb656c 20256 uint.emplace (read_1_byte (abfd, buf));
43988095
JK
20257 buf += 1;
20258 break;
20259
20260 case DW_FORM_data2:
ecfb656c 20261 uint.emplace (read_2_bytes (abfd, buf));
43988095
JK
20262 buf += 2;
20263 break;
20264
20265 case DW_FORM_data4:
ecfb656c 20266 uint.emplace (read_4_bytes (abfd, buf));
43988095
JK
20267 buf += 4;
20268 break;
20269
20270 case DW_FORM_data8:
ecfb656c 20271 uint.emplace (read_8_bytes (abfd, buf));
43988095
JK
20272 buf += 8;
20273 break;
20274
20275 case DW_FORM_udata:
ecfb656c 20276 uint.emplace (read_unsigned_leb128 (abfd, buf, &bytes_read));
43988095
JK
20277 buf += bytes_read;
20278 break;
20279
20280 case DW_FORM_block:
20281 /* It is valid only for DW_LNCT_timestamp which is ignored by
20282 current GDB. */
20283 break;
20284 }
ecfb656c
PA
20285
20286 switch (content_type)
20287 {
20288 case DW_LNCT_path:
20289 if (string.has_value ())
20290 fe.name = *string;
20291 break;
20292 case DW_LNCT_directory_index:
20293 if (uint.has_value ())
20294 fe.d_index = (dir_index) *uint;
20295 break;
20296 case DW_LNCT_timestamp:
20297 if (uint.has_value ())
20298 fe.mod_time = *uint;
20299 break;
20300 case DW_LNCT_size:
20301 if (uint.has_value ())
20302 fe.length = *uint;
20303 break;
20304 case DW_LNCT_MD5:
20305 break;
20306 default:
b98664d3 20307 complaint (_("Unknown format content type %s"),
ecfb656c
PA
20308 pulongest (content_type));
20309 }
43988095
JK
20310 }
20311
ecfb656c 20312 callback (lh, fe.name, fe.d_index, fe.mod_time, fe.length);
43988095
JK
20313 }
20314
20315 *bufp = buf;
20316}
20317
debd256d 20318/* Read the statement program header starting at OFFSET in
3019eac3 20319 .debug_line, or .debug_line.dwo. Return a pointer
6502dd73 20320 to a struct line_header, allocated using xmalloc.
cd366ee8
DE
20321 Returns NULL if there is a problem reading the header, e.g., if it
20322 has a version we don't understand.
debd256d
JB
20323
20324 NOTE: the strings in the include directory and file name tables of
3019eac3
DE
20325 the returned object point into the dwarf line section buffer,
20326 and must not be freed. */
ae2de4f8 20327
fff8551c 20328static line_header_up
9c541725 20329dwarf_decode_line_header (sect_offset sect_off, struct dwarf2_cu *cu)
debd256d 20330{
d521ce57 20331 const gdb_byte *line_ptr;
c764a876 20332 unsigned int bytes_read, offset_size;
debd256d 20333 int i;
d521ce57 20334 const char *cur_dir, *cur_file;
3019eac3
DE
20335 struct dwarf2_section_info *section;
20336 bfd *abfd;
518817b3
SM
20337 struct dwarf2_per_objfile *dwarf2_per_objfile
20338 = cu->per_cu->dwarf2_per_objfile;
3019eac3 20339
36586728 20340 section = get_debug_line_section (cu);
3019eac3
DE
20341 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
20342 if (section->buffer == NULL)
debd256d 20343 {
3019eac3 20344 if (cu->dwo_unit && cu->per_cu->is_debug_types)
b98664d3 20345 complaint (_("missing .debug_line.dwo section"));
3019eac3 20346 else
b98664d3 20347 complaint (_("missing .debug_line section"));
debd256d
JB
20348 return 0;
20349 }
20350
fceca515
DE
20351 /* We can't do this until we know the section is non-empty.
20352 Only then do we know we have such a section. */
a32a8923 20353 abfd = get_section_bfd_owner (section);
fceca515 20354
a738430d
MK
20355 /* Make sure that at least there's room for the total_length field.
20356 That could be 12 bytes long, but we're just going to fudge that. */
9c541725 20357 if (to_underlying (sect_off) + 4 >= section->size)
debd256d 20358 {
4d3c2250 20359 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
20360 return 0;
20361 }
20362
fff8551c 20363 line_header_up lh (new line_header ());
debd256d 20364
9c541725 20365 lh->sect_off = sect_off;
527f3840
JK
20366 lh->offset_in_dwz = cu->per_cu->is_dwz;
20367
9c541725 20368 line_ptr = section->buffer + to_underlying (sect_off);
debd256d 20369
a738430d 20370 /* Read in the header. */
6e70227d 20371 lh->total_length =
c764a876
DE
20372 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
20373 &bytes_read, &offset_size);
debd256d 20374 line_ptr += bytes_read;
3019eac3 20375 if (line_ptr + lh->total_length > (section->buffer + section->size))
debd256d 20376 {
4d3c2250 20377 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
20378 return 0;
20379 }
20380 lh->statement_program_end = line_ptr + lh->total_length;
20381 lh->version = read_2_bytes (abfd, line_ptr);
20382 line_ptr += 2;
43988095 20383 if (lh->version > 5)
cd366ee8
DE
20384 {
20385 /* This is a version we don't understand. The format could have
20386 changed in ways we don't handle properly so just punt. */
b98664d3 20387 complaint (_("unsupported version in .debug_line section"));
cd366ee8
DE
20388 return NULL;
20389 }
43988095
JK
20390 if (lh->version >= 5)
20391 {
20392 gdb_byte segment_selector_size;
20393
20394 /* Skip address size. */
20395 read_1_byte (abfd, line_ptr);
20396 line_ptr += 1;
20397
20398 segment_selector_size = read_1_byte (abfd, line_ptr);
20399 line_ptr += 1;
20400 if (segment_selector_size != 0)
20401 {
b98664d3 20402 complaint (_("unsupported segment selector size %u "
43988095
JK
20403 "in .debug_line section"),
20404 segment_selector_size);
20405 return NULL;
20406 }
20407 }
c764a876
DE
20408 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
20409 line_ptr += offset_size;
debd256d
JB
20410 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
20411 line_ptr += 1;
2dc7f7b3
TT
20412 if (lh->version >= 4)
20413 {
20414 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
20415 line_ptr += 1;
20416 }
20417 else
20418 lh->maximum_ops_per_instruction = 1;
20419
20420 if (lh->maximum_ops_per_instruction == 0)
20421 {
20422 lh->maximum_ops_per_instruction = 1;
b98664d3 20423 complaint (_("invalid maximum_ops_per_instruction "
3e43a32a 20424 "in `.debug_line' section"));
2dc7f7b3
TT
20425 }
20426
debd256d
JB
20427 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
20428 line_ptr += 1;
20429 lh->line_base = read_1_signed_byte (abfd, line_ptr);
20430 line_ptr += 1;
20431 lh->line_range = read_1_byte (abfd, line_ptr);
20432 line_ptr += 1;
20433 lh->opcode_base = read_1_byte (abfd, line_ptr);
20434 line_ptr += 1;
fff8551c 20435 lh->standard_opcode_lengths.reset (new unsigned char[lh->opcode_base]);
debd256d
JB
20436
20437 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
20438 for (i = 1; i < lh->opcode_base; ++i)
20439 {
20440 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
20441 line_ptr += 1;
20442 }
20443
43988095 20444 if (lh->version >= 5)
debd256d 20445 {
43988095 20446 /* Read directory table. */
ed2dc618
SM
20447 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20448 &cu->header,
b926417a 20449 [] (struct line_header *header, const char *name,
ecfb656c 20450 dir_index d_index, unsigned int mod_time,
fff8551c
PA
20451 unsigned int length)
20452 {
b926417a 20453 header->add_include_dir (name);
fff8551c 20454 });
debd256d 20455
43988095 20456 /* Read file name table. */
ed2dc618
SM
20457 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20458 &cu->header,
b926417a 20459 [] (struct line_header *header, const char *name,
ecfb656c 20460 dir_index d_index, unsigned int mod_time,
fff8551c
PA
20461 unsigned int length)
20462 {
b926417a 20463 header->add_file_name (name, d_index, mod_time, length);
fff8551c 20464 });
43988095
JK
20465 }
20466 else
debd256d 20467 {
43988095
JK
20468 /* Read directory table. */
20469 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20470 {
20471 line_ptr += bytes_read;
fff8551c 20472 lh->add_include_dir (cur_dir);
43988095 20473 }
debd256d
JB
20474 line_ptr += bytes_read;
20475
43988095
JK
20476 /* Read file name table. */
20477 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20478 {
ecfb656c
PA
20479 unsigned int mod_time, length;
20480 dir_index d_index;
43988095
JK
20481
20482 line_ptr += bytes_read;
ecfb656c 20483 d_index = (dir_index) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
43988095
JK
20484 line_ptr += bytes_read;
20485 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20486 line_ptr += bytes_read;
20487 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20488 line_ptr += bytes_read;
20489
ecfb656c 20490 lh->add_file_name (cur_file, d_index, mod_time, length);
43988095
JK
20491 }
20492 line_ptr += bytes_read;
debd256d 20493 }
6e70227d 20494 lh->statement_program_start = line_ptr;
debd256d 20495
3019eac3 20496 if (line_ptr > (section->buffer + section->size))
b98664d3 20497 complaint (_("line number info header doesn't "
3e43a32a 20498 "fit in `.debug_line' section"));
debd256d 20499
debd256d
JB
20500 return lh;
20501}
c906108c 20502
c6da4cef
DE
20503/* Subroutine of dwarf_decode_lines to simplify it.
20504 Return the file name of the psymtab for included file FILE_INDEX
20505 in line header LH of PST.
20506 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
c89b44cd
TT
20507 If space for the result is malloc'd, *NAME_HOLDER will be set.
20508 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
c6da4cef 20509
d521ce57 20510static const char *
c6da4cef
DE
20511psymtab_include_file_name (const struct line_header *lh, int file_index,
20512 const struct partial_symtab *pst,
c89b44cd
TT
20513 const char *comp_dir,
20514 gdb::unique_xmalloc_ptr<char> *name_holder)
c6da4cef 20515{
8c43009f 20516 const file_entry &fe = lh->file_names[file_index];
d521ce57
TT
20517 const char *include_name = fe.name;
20518 const char *include_name_to_compare = include_name;
72b9f47f 20519 const char *pst_filename;
c6da4cef
DE
20520 int file_is_pst;
20521
8c43009f 20522 const char *dir_name = fe.include_dir (lh);
c6da4cef 20523
c89b44cd 20524 gdb::unique_xmalloc_ptr<char> hold_compare;
c6da4cef
DE
20525 if (!IS_ABSOLUTE_PATH (include_name)
20526 && (dir_name != NULL || comp_dir != NULL))
20527 {
20528 /* Avoid creating a duplicate psymtab for PST.
20529 We do this by comparing INCLUDE_NAME and PST_FILENAME.
20530 Before we do the comparison, however, we need to account
20531 for DIR_NAME and COMP_DIR.
20532 First prepend dir_name (if non-NULL). If we still don't
20533 have an absolute path prepend comp_dir (if non-NULL).
20534 However, the directory we record in the include-file's
20535 psymtab does not contain COMP_DIR (to match the
20536 corresponding symtab(s)).
20537
20538 Example:
20539
20540 bash$ cd /tmp
20541 bash$ gcc -g ./hello.c
20542 include_name = "hello.c"
20543 dir_name = "."
20544 DW_AT_comp_dir = comp_dir = "/tmp"
5f52445b
YQ
20545 DW_AT_name = "./hello.c"
20546
20547 */
c6da4cef
DE
20548
20549 if (dir_name != NULL)
20550 {
c89b44cd
TT
20551 name_holder->reset (concat (dir_name, SLASH_STRING,
20552 include_name, (char *) NULL));
20553 include_name = name_holder->get ();
c6da4cef 20554 include_name_to_compare = include_name;
c6da4cef
DE
20555 }
20556 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
20557 {
c89b44cd
TT
20558 hold_compare.reset (concat (comp_dir, SLASH_STRING,
20559 include_name, (char *) NULL));
20560 include_name_to_compare = hold_compare.get ();
c6da4cef
DE
20561 }
20562 }
20563
20564 pst_filename = pst->filename;
c89b44cd 20565 gdb::unique_xmalloc_ptr<char> copied_name;
c6da4cef
DE
20566 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
20567 {
c89b44cd
TT
20568 copied_name.reset (concat (pst->dirname, SLASH_STRING,
20569 pst_filename, (char *) NULL));
20570 pst_filename = copied_name.get ();
c6da4cef
DE
20571 }
20572
1e3fad37 20573 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
c6da4cef 20574
c6da4cef
DE
20575 if (file_is_pst)
20576 return NULL;
20577 return include_name;
20578}
20579
d9b3de22
DE
20580/* State machine to track the state of the line number program. */
20581
6f77053d 20582class lnp_state_machine
d9b3de22 20583{
6f77053d
PA
20584public:
20585 /* Initialize a machine state for the start of a line number
20586 program. */
804d2729
TT
20587 lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch, line_header *lh,
20588 bool record_lines_p);
6f77053d 20589
8c43009f
PA
20590 file_entry *current_file ()
20591 {
20592 /* lh->file_names is 0-based, but the file name numbers in the
20593 statement program are 1-based. */
6f77053d
PA
20594 return m_line_header->file_name_at (m_file);
20595 }
20596
20597 /* Record the line in the state machine. END_SEQUENCE is true if
20598 we're processing the end of a sequence. */
20599 void record_line (bool end_sequence);
20600
7ab6656f
OJ
20601 /* Check ADDRESS is zero and less than UNRELOCATED_LOWPC and if true
20602 nop-out rest of the lines in this sequence. */
6f77053d
PA
20603 void check_line_address (struct dwarf2_cu *cu,
20604 const gdb_byte *line_ptr,
7ab6656f 20605 CORE_ADDR unrelocated_lowpc, CORE_ADDR address);
6f77053d
PA
20606
20607 void handle_set_discriminator (unsigned int discriminator)
20608 {
20609 m_discriminator = discriminator;
20610 m_line_has_non_zero_discriminator |= discriminator != 0;
20611 }
20612
20613 /* Handle DW_LNE_set_address. */
20614 void handle_set_address (CORE_ADDR baseaddr, CORE_ADDR address)
20615 {
20616 m_op_index = 0;
20617 address += baseaddr;
20618 m_address = gdbarch_adjust_dwarf2_line (m_gdbarch, address, false);
20619 }
20620
20621 /* Handle DW_LNS_advance_pc. */
20622 void handle_advance_pc (CORE_ADDR adjust);
20623
20624 /* Handle a special opcode. */
20625 void handle_special_opcode (unsigned char op_code);
20626
20627 /* Handle DW_LNS_advance_line. */
20628 void handle_advance_line (int line_delta)
20629 {
20630 advance_line (line_delta);
20631 }
20632
20633 /* Handle DW_LNS_set_file. */
20634 void handle_set_file (file_name_index file);
20635
20636 /* Handle DW_LNS_negate_stmt. */
20637 void handle_negate_stmt ()
20638 {
20639 m_is_stmt = !m_is_stmt;
20640 }
20641
20642 /* Handle DW_LNS_const_add_pc. */
20643 void handle_const_add_pc ();
20644
20645 /* Handle DW_LNS_fixed_advance_pc. */
20646 void handle_fixed_advance_pc (CORE_ADDR addr_adj)
20647 {
20648 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20649 m_op_index = 0;
20650 }
20651
20652 /* Handle DW_LNS_copy. */
20653 void handle_copy ()
20654 {
20655 record_line (false);
20656 m_discriminator = 0;
20657 }
20658
20659 /* Handle DW_LNE_end_sequence. */
20660 void handle_end_sequence ()
20661 {
804d2729 20662 m_currently_recording_lines = true;
6f77053d
PA
20663 }
20664
20665private:
20666 /* Advance the line by LINE_DELTA. */
20667 void advance_line (int line_delta)
20668 {
20669 m_line += line_delta;
20670
20671 if (line_delta != 0)
20672 m_line_has_non_zero_discriminator = m_discriminator != 0;
8c43009f
PA
20673 }
20674
804d2729
TT
20675 struct dwarf2_cu *m_cu;
20676
6f77053d
PA
20677 gdbarch *m_gdbarch;
20678
20679 /* True if we're recording lines.
20680 Otherwise we're building partial symtabs and are just interested in
20681 finding include files mentioned by the line number program. */
20682 bool m_record_lines_p;
20683
8c43009f 20684 /* The line number header. */
6f77053d 20685 line_header *m_line_header;
8c43009f 20686
6f77053d
PA
20687 /* These are part of the standard DWARF line number state machine,
20688 and initialized according to the DWARF spec. */
d9b3de22 20689
6f77053d 20690 unsigned char m_op_index = 0;
8c43009f 20691 /* The line table index (1-based) of the current file. */
6f77053d
PA
20692 file_name_index m_file = (file_name_index) 1;
20693 unsigned int m_line = 1;
20694
20695 /* These are initialized in the constructor. */
20696
20697 CORE_ADDR m_address;
20698 bool m_is_stmt;
20699 unsigned int m_discriminator;
d9b3de22
DE
20700
20701 /* Additional bits of state we need to track. */
20702
20703 /* The last file that we called dwarf2_start_subfile for.
20704 This is only used for TLLs. */
6f77053d 20705 unsigned int m_last_file = 0;
d9b3de22 20706 /* The last file a line number was recorded for. */
6f77053d 20707 struct subfile *m_last_subfile = NULL;
d9b3de22 20708
804d2729
TT
20709 /* When true, record the lines we decode. */
20710 bool m_currently_recording_lines = false;
d9b3de22
DE
20711
20712 /* The last line number that was recorded, used to coalesce
20713 consecutive entries for the same line. This can happen, for
20714 example, when discriminators are present. PR 17276. */
6f77053d
PA
20715 unsigned int m_last_line = 0;
20716 bool m_line_has_non_zero_discriminator = false;
8c43009f 20717};
d9b3de22 20718
6f77053d
PA
20719void
20720lnp_state_machine::handle_advance_pc (CORE_ADDR adjust)
20721{
20722 CORE_ADDR addr_adj = (((m_op_index + adjust)
20723 / m_line_header->maximum_ops_per_instruction)
20724 * m_line_header->minimum_instruction_length);
20725 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20726 m_op_index = ((m_op_index + adjust)
20727 % m_line_header->maximum_ops_per_instruction);
20728}
d9b3de22 20729
6f77053d
PA
20730void
20731lnp_state_machine::handle_special_opcode (unsigned char op_code)
d9b3de22 20732{
6f77053d
PA
20733 unsigned char adj_opcode = op_code - m_line_header->opcode_base;
20734 CORE_ADDR addr_adj = (((m_op_index
20735 + (adj_opcode / m_line_header->line_range))
20736 / m_line_header->maximum_ops_per_instruction)
20737 * m_line_header->minimum_instruction_length);
20738 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20739 m_op_index = ((m_op_index + (adj_opcode / m_line_header->line_range))
20740 % m_line_header->maximum_ops_per_instruction);
d9b3de22 20741
6f77053d
PA
20742 int line_delta = (m_line_header->line_base
20743 + (adj_opcode % m_line_header->line_range));
20744 advance_line (line_delta);
20745 record_line (false);
20746 m_discriminator = 0;
20747}
d9b3de22 20748
6f77053d
PA
20749void
20750lnp_state_machine::handle_set_file (file_name_index file)
20751{
20752 m_file = file;
20753
20754 const file_entry *fe = current_file ();
20755 if (fe == NULL)
20756 dwarf2_debug_line_missing_file_complaint ();
20757 else if (m_record_lines_p)
20758 {
20759 const char *dir = fe->include_dir (m_line_header);
20760
c24bdb02 20761 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20762 m_line_has_non_zero_discriminator = m_discriminator != 0;
804d2729 20763 dwarf2_start_subfile (m_cu, fe->name, dir);
6f77053d
PA
20764 }
20765}
20766
20767void
20768lnp_state_machine::handle_const_add_pc ()
20769{
20770 CORE_ADDR adjust
20771 = (255 - m_line_header->opcode_base) / m_line_header->line_range;
20772
20773 CORE_ADDR addr_adj
20774 = (((m_op_index + adjust)
20775 / m_line_header->maximum_ops_per_instruction)
20776 * m_line_header->minimum_instruction_length);
20777
20778 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20779 m_op_index = ((m_op_index + adjust)
20780 % m_line_header->maximum_ops_per_instruction);
20781}
d9b3de22 20782
a05a36a5
DE
20783/* Return non-zero if we should add LINE to the line number table.
20784 LINE is the line to add, LAST_LINE is the last line that was added,
20785 LAST_SUBFILE is the subfile for LAST_LINE.
20786 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
20787 had a non-zero discriminator.
20788
20789 We have to be careful in the presence of discriminators.
20790 E.g., for this line:
20791
20792 for (i = 0; i < 100000; i++);
20793
20794 clang can emit four line number entries for that one line,
20795 each with a different discriminator.
20796 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
20797
20798 However, we want gdb to coalesce all four entries into one.
20799 Otherwise the user could stepi into the middle of the line and
20800 gdb would get confused about whether the pc really was in the
20801 middle of the line.
20802
20803 Things are further complicated by the fact that two consecutive
20804 line number entries for the same line is a heuristic used by gcc
20805 to denote the end of the prologue. So we can't just discard duplicate
20806 entries, we have to be selective about it. The heuristic we use is
20807 that we only collapse consecutive entries for the same line if at least
20808 one of those entries has a non-zero discriminator. PR 17276.
20809
20810 Note: Addresses in the line number state machine can never go backwards
20811 within one sequence, thus this coalescing is ok. */
20812
20813static int
804d2729
TT
20814dwarf_record_line_p (struct dwarf2_cu *cu,
20815 unsigned int line, unsigned int last_line,
a05a36a5
DE
20816 int line_has_non_zero_discriminator,
20817 struct subfile *last_subfile)
20818{
c24bdb02 20819 if (cu->get_builder ()->get_current_subfile () != last_subfile)
a05a36a5
DE
20820 return 1;
20821 if (line != last_line)
20822 return 1;
20823 /* Same line for the same file that we've seen already.
20824 As a last check, for pr 17276, only record the line if the line
20825 has never had a non-zero discriminator. */
20826 if (!line_has_non_zero_discriminator)
20827 return 1;
20828 return 0;
20829}
20830
804d2729
TT
20831/* Use the CU's builder to record line number LINE beginning at
20832 address ADDRESS in the line table of subfile SUBFILE. */
252a6764
DE
20833
20834static void
d9b3de22
DE
20835dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
20836 unsigned int line, CORE_ADDR address,
804d2729 20837 struct dwarf2_cu *cu)
252a6764
DE
20838{
20839 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
20840
27e0867f
DE
20841 if (dwarf_line_debug)
20842 {
20843 fprintf_unfiltered (gdb_stdlog,
20844 "Recording line %u, file %s, address %s\n",
20845 line, lbasename (subfile->name),
20846 paddress (gdbarch, address));
20847 }
20848
804d2729 20849 if (cu != nullptr)
c24bdb02 20850 cu->get_builder ()->record_line (subfile, line, addr);
252a6764
DE
20851}
20852
20853/* Subroutine of dwarf_decode_lines_1 to simplify it.
20854 Mark the end of a set of line number records.
d9b3de22 20855 The arguments are the same as for dwarf_record_line_1.
252a6764
DE
20856 If SUBFILE is NULL the request is ignored. */
20857
20858static void
20859dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
804d2729 20860 CORE_ADDR address, struct dwarf2_cu *cu)
252a6764 20861{
27e0867f
DE
20862 if (subfile == NULL)
20863 return;
20864
20865 if (dwarf_line_debug)
20866 {
20867 fprintf_unfiltered (gdb_stdlog,
20868 "Finishing current line, file %s, address %s\n",
20869 lbasename (subfile->name),
20870 paddress (gdbarch, address));
20871 }
20872
804d2729 20873 dwarf_record_line_1 (gdbarch, subfile, 0, address, cu);
d9b3de22
DE
20874}
20875
6f77053d
PA
20876void
20877lnp_state_machine::record_line (bool end_sequence)
d9b3de22 20878{
d9b3de22
DE
20879 if (dwarf_line_debug)
20880 {
20881 fprintf_unfiltered (gdb_stdlog,
20882 "Processing actual line %u: file %u,"
20883 " address %s, is_stmt %u, discrim %u\n",
6f77053d
PA
20884 m_line, to_underlying (m_file),
20885 paddress (m_gdbarch, m_address),
20886 m_is_stmt, m_discriminator);
d9b3de22
DE
20887 }
20888
6f77053d 20889 file_entry *fe = current_file ();
8c43009f
PA
20890
20891 if (fe == NULL)
d9b3de22
DE
20892 dwarf2_debug_line_missing_file_complaint ();
20893 /* For now we ignore lines not starting on an instruction boundary.
20894 But not when processing end_sequence for compatibility with the
20895 previous version of the code. */
6f77053d 20896 else if (m_op_index == 0 || end_sequence)
d9b3de22 20897 {
8c43009f 20898 fe->included_p = 1;
c258c396 20899 if (m_record_lines_p && (producer_is_codewarrior (m_cu) || m_is_stmt))
d9b3de22 20900 {
c24bdb02 20901 if (m_last_subfile != m_cu->get_builder ()->get_current_subfile ()
804d2729 20902 || end_sequence)
d9b3de22 20903 {
804d2729
TT
20904 dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
20905 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22
DE
20906 }
20907
20908 if (!end_sequence)
20909 {
804d2729 20910 if (dwarf_record_line_p (m_cu, m_line, m_last_line,
6f77053d
PA
20911 m_line_has_non_zero_discriminator,
20912 m_last_subfile))
d9b3de22 20913 {
c24bdb02 20914 buildsym_compunit *builder = m_cu->get_builder ();
804d2729 20915 dwarf_record_line_1 (m_gdbarch,
c24bdb02 20916 builder->get_current_subfile (),
6f77053d 20917 m_line, m_address,
804d2729 20918 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22 20919 }
c24bdb02 20920 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20921 m_last_line = m_line;
d9b3de22
DE
20922 }
20923 }
20924 }
20925}
20926
804d2729
TT
20927lnp_state_machine::lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch,
20928 line_header *lh, bool record_lines_p)
d9b3de22 20929{
804d2729 20930 m_cu = cu;
6f77053d
PA
20931 m_gdbarch = arch;
20932 m_record_lines_p = record_lines_p;
20933 m_line_header = lh;
d9b3de22 20934
804d2729 20935 m_currently_recording_lines = true;
d9b3de22 20936
d9b3de22
DE
20937 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
20938 was a line entry for it so that the backend has a chance to adjust it
20939 and also record it in case it needs it. This is currently used by MIPS
20940 code, cf. `mips_adjust_dwarf2_line'. */
6f77053d
PA
20941 m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
20942 m_is_stmt = lh->default_is_stmt;
20943 m_discriminator = 0;
252a6764
DE
20944}
20945
6f77053d
PA
20946void
20947lnp_state_machine::check_line_address (struct dwarf2_cu *cu,
20948 const gdb_byte *line_ptr,
7ab6656f 20949 CORE_ADDR unrelocated_lowpc, CORE_ADDR address)
924c2928 20950{
7ab6656f
OJ
20951 /* If ADDRESS < UNRELOCATED_LOWPC then it's not a usable value, it's outside
20952 the pc range of the CU. However, we restrict the test to only ADDRESS
20953 values of zero to preserve GDB's previous behaviour which is to handle
20954 the specific case of a function being GC'd by the linker. */
924c2928 20955
7ab6656f 20956 if (address == 0 && address < unrelocated_lowpc)
924c2928
DE
20957 {
20958 /* This line table is for a function which has been
20959 GCd by the linker. Ignore it. PR gdb/12528 */
20960
518817b3 20961 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
924c2928
DE
20962 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
20963
b98664d3 20964 complaint (_(".debug_line address at offset 0x%lx is 0 [in module %s]"),
924c2928 20965 line_offset, objfile_name (objfile));
804d2729
TT
20966 m_currently_recording_lines = false;
20967 /* Note: m_currently_recording_lines is left as false until we see
20968 DW_LNE_end_sequence. */
924c2928
DE
20969 }
20970}
20971
f3f5162e 20972/* Subroutine of dwarf_decode_lines to simplify it.
d9b3de22
DE
20973 Process the line number information in LH.
20974 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
20975 program in order to set included_p for every referenced header. */
debd256d 20976
c906108c 20977static void
43f3e411
DE
20978dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
20979 const int decode_for_pst_p, CORE_ADDR lowpc)
c906108c 20980{
d521ce57
TT
20981 const gdb_byte *line_ptr, *extended_end;
20982 const gdb_byte *line_end;
a8c50c1f 20983 unsigned int bytes_read, extended_len;
699ca60a 20984 unsigned char op_code, extended_op;
e142c38c 20985 CORE_ADDR baseaddr;
518817b3 20986 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
f3f5162e 20987 bfd *abfd = objfile->obfd;
fbf65064 20988 struct gdbarch *gdbarch = get_objfile_arch (objfile);
6f77053d
PA
20989 /* True if we're recording line info (as opposed to building partial
20990 symtabs and just interested in finding include files mentioned by
20991 the line number program). */
20992 bool record_lines_p = !decode_for_pst_p;
e142c38c
DJ
20993
20994 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 20995
debd256d
JB
20996 line_ptr = lh->statement_program_start;
20997 line_end = lh->statement_program_end;
c906108c
SS
20998
20999 /* Read the statement sequences until there's nothing left. */
21000 while (line_ptr < line_end)
21001 {
6f77053d
PA
21002 /* The DWARF line number program state machine. Reset the state
21003 machine at the start of each sequence. */
804d2729 21004 lnp_state_machine state_machine (cu, gdbarch, lh, record_lines_p);
6f77053d 21005 bool end_sequence = false;
d9b3de22 21006
8c43009f 21007 if (record_lines_p)
c906108c 21008 {
8c43009f
PA
21009 /* Start a subfile for the current file of the state
21010 machine. */
21011 const file_entry *fe = state_machine.current_file ();
21012
21013 if (fe != NULL)
804d2729 21014 dwarf2_start_subfile (cu, fe->name, fe->include_dir (lh));
c906108c
SS
21015 }
21016
a738430d 21017 /* Decode the table. */
d9b3de22 21018 while (line_ptr < line_end && !end_sequence)
c906108c
SS
21019 {
21020 op_code = read_1_byte (abfd, line_ptr);
21021 line_ptr += 1;
9aa1fe7e 21022
debd256d 21023 if (op_code >= lh->opcode_base)
6e70227d 21024 {
8e07a239 21025 /* Special opcode. */
6f77053d 21026 state_machine.handle_special_opcode (op_code);
9aa1fe7e
GK
21027 }
21028 else switch (op_code)
c906108c
SS
21029 {
21030 case DW_LNS_extended_op:
3e43a32a
MS
21031 extended_len = read_unsigned_leb128 (abfd, line_ptr,
21032 &bytes_read);
473b7be6 21033 line_ptr += bytes_read;
a8c50c1f 21034 extended_end = line_ptr + extended_len;
c906108c
SS
21035 extended_op = read_1_byte (abfd, line_ptr);
21036 line_ptr += 1;
21037 switch (extended_op)
21038 {
21039 case DW_LNE_end_sequence:
6f77053d
PA
21040 state_machine.handle_end_sequence ();
21041 end_sequence = true;
c906108c
SS
21042 break;
21043 case DW_LNE_set_address:
d9b3de22
DE
21044 {
21045 CORE_ADDR address
21046 = read_address (abfd, line_ptr, cu, &bytes_read);
d9b3de22 21047 line_ptr += bytes_read;
6f77053d
PA
21048
21049 state_machine.check_line_address (cu, line_ptr,
7ab6656f 21050 lowpc - baseaddr, address);
6f77053d 21051 state_machine.handle_set_address (baseaddr, address);
d9b3de22 21052 }
c906108c
SS
21053 break;
21054 case DW_LNE_define_file:
debd256d 21055 {
d521ce57 21056 const char *cur_file;
ecfb656c
PA
21057 unsigned int mod_time, length;
21058 dir_index dindex;
6e70227d 21059
3e43a32a
MS
21060 cur_file = read_direct_string (abfd, line_ptr,
21061 &bytes_read);
debd256d 21062 line_ptr += bytes_read;
ecfb656c 21063 dindex = (dir_index)
debd256d
JB
21064 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21065 line_ptr += bytes_read;
21066 mod_time =
21067 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21068 line_ptr += bytes_read;
21069 length =
21070 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21071 line_ptr += bytes_read;
ecfb656c 21072 lh->add_file_name (cur_file, dindex, mod_time, length);
debd256d 21073 }
c906108c 21074 break;
d0c6ba3d 21075 case DW_LNE_set_discriminator:
6f77053d
PA
21076 {
21077 /* The discriminator is not interesting to the
21078 debugger; just ignore it. We still need to
21079 check its value though:
21080 if there are consecutive entries for the same
21081 (non-prologue) line we want to coalesce them.
21082 PR 17276. */
21083 unsigned int discr
21084 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21085 line_ptr += bytes_read;
21086
21087 state_machine.handle_set_discriminator (discr);
21088 }
d0c6ba3d 21089 break;
c906108c 21090 default:
b98664d3 21091 complaint (_("mangled .debug_line section"));
debd256d 21092 return;
c906108c 21093 }
a8c50c1f
DJ
21094 /* Make sure that we parsed the extended op correctly. If e.g.
21095 we expected a different address size than the producer used,
21096 we may have read the wrong number of bytes. */
21097 if (line_ptr != extended_end)
21098 {
b98664d3 21099 complaint (_("mangled .debug_line section"));
a8c50c1f
DJ
21100 return;
21101 }
c906108c
SS
21102 break;
21103 case DW_LNS_copy:
6f77053d 21104 state_machine.handle_copy ();
c906108c
SS
21105 break;
21106 case DW_LNS_advance_pc:
2dc7f7b3
TT
21107 {
21108 CORE_ADDR adjust
21109 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
2dc7f7b3 21110 line_ptr += bytes_read;
6f77053d
PA
21111
21112 state_machine.handle_advance_pc (adjust);
2dc7f7b3 21113 }
c906108c
SS
21114 break;
21115 case DW_LNS_advance_line:
a05a36a5
DE
21116 {
21117 int line_delta
21118 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
a05a36a5 21119 line_ptr += bytes_read;
6f77053d
PA
21120
21121 state_machine.handle_advance_line (line_delta);
a05a36a5 21122 }
c906108c
SS
21123 break;
21124 case DW_LNS_set_file:
d9b3de22 21125 {
6f77053d 21126 file_name_index file
ecfb656c
PA
21127 = (file_name_index) read_unsigned_leb128 (abfd, line_ptr,
21128 &bytes_read);
d9b3de22 21129 line_ptr += bytes_read;
8c43009f 21130
6f77053d 21131 state_machine.handle_set_file (file);
d9b3de22 21132 }
c906108c
SS
21133 break;
21134 case DW_LNS_set_column:
0ad93d4f 21135 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
c906108c
SS
21136 line_ptr += bytes_read;
21137 break;
21138 case DW_LNS_negate_stmt:
6f77053d 21139 state_machine.handle_negate_stmt ();
c906108c
SS
21140 break;
21141 case DW_LNS_set_basic_block:
c906108c 21142 break;
c2c6d25f
JM
21143 /* Add to the address register of the state machine the
21144 address increment value corresponding to special opcode
a738430d
MK
21145 255. I.e., this value is scaled by the minimum
21146 instruction length since special opcode 255 would have
b021a221 21147 scaled the increment. */
c906108c 21148 case DW_LNS_const_add_pc:
6f77053d 21149 state_machine.handle_const_add_pc ();
c906108c
SS
21150 break;
21151 case DW_LNS_fixed_advance_pc:
3e29f34a 21152 {
6f77053d 21153 CORE_ADDR addr_adj = read_2_bytes (abfd, line_ptr);
3e29f34a 21154 line_ptr += 2;
6f77053d
PA
21155
21156 state_machine.handle_fixed_advance_pc (addr_adj);
3e29f34a 21157 }
c906108c 21158 break;
9aa1fe7e 21159 default:
a738430d
MK
21160 {
21161 /* Unknown standard opcode, ignore it. */
9aa1fe7e 21162 int i;
a738430d 21163
debd256d 21164 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
21165 {
21166 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
21167 line_ptr += bytes_read;
21168 }
21169 }
c906108c
SS
21170 }
21171 }
d9b3de22
DE
21172
21173 if (!end_sequence)
21174 dwarf2_debug_line_missing_end_sequence_complaint ();
21175
21176 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
21177 in which case we still finish recording the last line). */
6f77053d 21178 state_machine.record_line (true);
c906108c 21179 }
f3f5162e
DE
21180}
21181
21182/* Decode the Line Number Program (LNP) for the given line_header
21183 structure and CU. The actual information extracted and the type
21184 of structures created from the LNP depends on the value of PST.
21185
21186 1. If PST is NULL, then this procedure uses the data from the program
21187 to create all necessary symbol tables, and their linetables.
21188
21189 2. If PST is not NULL, this procedure reads the program to determine
21190 the list of files included by the unit represented by PST, and
21191 builds all the associated partial symbol tables.
21192
21193 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
21194 It is used for relative paths in the line table.
21195 NOTE: When processing partial symtabs (pst != NULL),
21196 comp_dir == pst->dirname.
21197
21198 NOTE: It is important that psymtabs have the same file name (via strcmp)
21199 as the corresponding symtab. Since COMP_DIR is not used in the name of the
21200 symtab we don't use it in the name of the psymtabs we create.
21201 E.g. expand_line_sal requires this when finding psymtabs to expand.
c3b7b696
YQ
21202 A good testcase for this is mb-inline.exp.
21203
527f3840
JK
21204 LOWPC is the lowest address in CU (or 0 if not known).
21205
21206 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
21207 for its PC<->lines mapping information. Otherwise only the filename
21208 table is read in. */
f3f5162e
DE
21209
21210static void
21211dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
c3b7b696 21212 struct dwarf2_cu *cu, struct partial_symtab *pst,
527f3840 21213 CORE_ADDR lowpc, int decode_mapping)
f3f5162e 21214{
518817b3 21215 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
f3f5162e 21216 const int decode_for_pst_p = (pst != NULL);
f3f5162e 21217
527f3840
JK
21218 if (decode_mapping)
21219 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
aaa75496
JB
21220
21221 if (decode_for_pst_p)
21222 {
21223 int file_index;
21224
21225 /* Now that we're done scanning the Line Header Program, we can
21226 create the psymtab of each included file. */
fff8551c 21227 for (file_index = 0; file_index < lh->file_names.size (); file_index++)
aaa75496
JB
21228 if (lh->file_names[file_index].included_p == 1)
21229 {
c89b44cd 21230 gdb::unique_xmalloc_ptr<char> name_holder;
d521ce57 21231 const char *include_name =
c89b44cd
TT
21232 psymtab_include_file_name (lh, file_index, pst, comp_dir,
21233 &name_holder);
c6da4cef 21234 if (include_name != NULL)
aaa75496
JB
21235 dwarf2_create_include_psymtab (include_name, pst, objfile);
21236 }
21237 }
cb1df416
DJ
21238 else
21239 {
21240 /* Make sure a symtab is created for every file, even files
21241 which contain only variables (i.e. no code with associated
21242 line numbers). */
c24bdb02
KS
21243 buildsym_compunit *builder = cu->get_builder ();
21244 struct compunit_symtab *cust = builder->get_compunit_symtab ();
cb1df416 21245 int i;
cb1df416 21246
fff8551c 21247 for (i = 0; i < lh->file_names.size (); i++)
cb1df416 21248 {
8c43009f 21249 file_entry &fe = lh->file_names[i];
9a619af0 21250
804d2729 21251 dwarf2_start_subfile (cu, fe.name, fe.include_dir (lh));
cb1df416 21252
c24bdb02 21253 if (builder->get_current_subfile ()->symtab == NULL)
43f3e411 21254 {
c24bdb02 21255 builder->get_current_subfile ()->symtab
804d2729 21256 = allocate_symtab (cust,
c24bdb02 21257 builder->get_current_subfile ()->name);
43f3e411 21258 }
c24bdb02 21259 fe.symtab = builder->get_current_subfile ()->symtab;
cb1df416
DJ
21260 }
21261 }
c906108c
SS
21262}
21263
21264/* Start a subfile for DWARF. FILENAME is the name of the file and
21265 DIRNAME the name of the source directory which contains FILENAME
4d663531 21266 or NULL if not known.
c906108c
SS
21267 This routine tries to keep line numbers from identical absolute and
21268 relative file names in a common subfile.
21269
21270 Using the `list' example from the GDB testsuite, which resides in
21271 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
21272 of /srcdir/list0.c yields the following debugging information for list0.c:
21273
c5aa993b 21274 DW_AT_name: /srcdir/list0.c
4d663531 21275 DW_AT_comp_dir: /compdir
357e46e7 21276 files.files[0].name: list0.h
c5aa993b 21277 files.files[0].dir: /srcdir
357e46e7 21278 files.files[1].name: list0.c
c5aa993b 21279 files.files[1].dir: /srcdir
c906108c
SS
21280
21281 The line number information for list0.c has to end up in a single
4f1520fb
FR
21282 subfile, so that `break /srcdir/list0.c:1' works as expected.
21283 start_subfile will ensure that this happens provided that we pass the
21284 concatenation of files.files[1].dir and files.files[1].name as the
21285 subfile's name. */
c906108c
SS
21286
21287static void
804d2729
TT
21288dwarf2_start_subfile (struct dwarf2_cu *cu, const char *filename,
21289 const char *dirname)
c906108c 21290{
d521ce57 21291 char *copy = NULL;
4f1520fb 21292
4d663531 21293 /* In order not to lose the line information directory,
4f1520fb
FR
21294 we concatenate it to the filename when it makes sense.
21295 Note that the Dwarf3 standard says (speaking of filenames in line
21296 information): ``The directory index is ignored for file names
21297 that represent full path names''. Thus ignoring dirname in the
21298 `else' branch below isn't an issue. */
c906108c 21299
d5166ae1 21300 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
d521ce57
TT
21301 {
21302 copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
21303 filename = copy;
21304 }
c906108c 21305
c24bdb02 21306 cu->get_builder ()->start_subfile (filename);
4f1520fb 21307
d521ce57
TT
21308 if (copy != NULL)
21309 xfree (copy);
c906108c
SS
21310}
21311
804d2729
TT
21312/* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
21313 buildsym_compunit constructor. */
f4dc4d17 21314
c24bdb02
KS
21315struct compunit_symtab *
21316dwarf2_cu::start_symtab (const char *name, const char *comp_dir,
21317 CORE_ADDR low_pc)
f4dc4d17 21318{
c24bdb02 21319 gdb_assert (m_builder == nullptr);
43f3e411 21320
c24bdb02
KS
21321 m_builder.reset (new struct buildsym_compunit
21322 (per_cu->dwarf2_per_objfile->objfile,
21323 name, comp_dir, language, low_pc));
93b8bea4 21324
c24bdb02 21325 list_in_scope = get_builder ()->get_file_symbols ();
804d2729 21326
c24bdb02
KS
21327 get_builder ()->record_debugformat ("DWARF 2");
21328 get_builder ()->record_producer (producer);
f4dc4d17 21329
c24bdb02 21330 processing_has_namespace_info = false;
43f3e411 21331
c24bdb02 21332 return get_builder ()->get_compunit_symtab ();
f4dc4d17
DE
21333}
21334
4c2df51b
DJ
21335static void
21336var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 21337 struct dwarf2_cu *cu)
4c2df51b 21338{
518817b3 21339 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e7c27a73
DJ
21340 struct comp_unit_head *cu_header = &cu->header;
21341
4c2df51b
DJ
21342 /* NOTE drow/2003-01-30: There used to be a comment and some special
21343 code here to turn a symbol with DW_AT_external and a
21344 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
21345 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
21346 with some versions of binutils) where shared libraries could have
21347 relocations against symbols in their debug information - the
21348 minimal symbol would have the right address, but the debug info
21349 would not. It's no longer necessary, because we will explicitly
21350 apply relocations when we read in the debug information now. */
21351
21352 /* A DW_AT_location attribute with no contents indicates that a
21353 variable has been optimized away. */
21354 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
21355 {
f1e6e072 21356 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
4c2df51b
DJ
21357 return;
21358 }
21359
21360 /* Handle one degenerate form of location expression specially, to
21361 preserve GDB's previous behavior when section offsets are
336d760d
AT
21362 specified. If this is just a DW_OP_addr, DW_OP_addrx, or
21363 DW_OP_GNU_addr_index then mark this symbol as LOC_STATIC. */
4c2df51b
DJ
21364
21365 if (attr_form_is_block (attr)
3019eac3
DE
21366 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
21367 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
336d760d
AT
21368 || ((DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
21369 || DW_BLOCK (attr)->data[0] == DW_OP_addrx)
3019eac3
DE
21370 && (DW_BLOCK (attr)->size
21371 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
4c2df51b 21372 {
891d2f0b 21373 unsigned int dummy;
4c2df51b 21374
3019eac3
DE
21375 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
21376 SYMBOL_VALUE_ADDRESS (sym) =
21377 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
21378 else
21379 SYMBOL_VALUE_ADDRESS (sym) =
21380 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
f1e6e072 21381 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
4c2df51b
DJ
21382 fixup_symbol_section (sym, objfile);
21383 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
21384 SYMBOL_SECTION (sym));
4c2df51b
DJ
21385 return;
21386 }
21387
21388 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
21389 expression evaluator, and use LOC_COMPUTED only when necessary
21390 (i.e. when the value of a register or memory location is
21391 referenced, or a thread-local block, etc.). Then again, it might
21392 not be worthwhile. I'm assuming that it isn't unless performance
21393 or memory numbers show me otherwise. */
21394
f1e6e072 21395 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
8be455d7 21396
f1e6e072 21397 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
9068261f 21398 cu->has_loclist = true;
4c2df51b
DJ
21399}
21400
c906108c
SS
21401/* Given a pointer to a DWARF information entry, figure out if we need
21402 to make a symbol table entry for it, and if so, create a new entry
21403 and return a pointer to it.
21404 If TYPE is NULL, determine symbol type from the die, otherwise
34eaf542
TT
21405 used the passed type.
21406 If SPACE is not NULL, use it to hold the new symbol. If it is
21407 NULL, allocate a new symbol on the objfile's obstack. */
c906108c
SS
21408
21409static struct symbol *
5e2db402
TT
21410new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
21411 struct symbol *space)
c906108c 21412{
518817b3
SM
21413 struct dwarf2_per_objfile *dwarf2_per_objfile
21414 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 21415 struct objfile *objfile = dwarf2_per_objfile->objfile;
3e29f34a 21416 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c 21417 struct symbol *sym = NULL;
15d034d0 21418 const char *name;
c906108c
SS
21419 struct attribute *attr = NULL;
21420 struct attribute *attr2 = NULL;
e142c38c 21421 CORE_ADDR baseaddr;
e37fd15a
SW
21422 struct pending **list_to_add = NULL;
21423
edb3359d 21424 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
e142c38c
DJ
21425
21426 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 21427
94af9270 21428 name = dwarf2_name (die, cu);
c906108c
SS
21429 if (name)
21430 {
94af9270 21431 const char *linkagename;
34eaf542 21432 int suppress_add = 0;
94af9270 21433
34eaf542
TT
21434 if (space)
21435 sym = space;
21436 else
e623cf5d 21437 sym = allocate_symbol (objfile);
c906108c 21438 OBJSTAT (objfile, n_syms++);
2de7ced7
DJ
21439
21440 /* Cache this symbol's name and the name's demangled form (if any). */
f85f34ed 21441 SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
94af9270
KS
21442 linkagename = dwarf2_physname (name, die, cu);
21443 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
c906108c 21444
f55ee35c
JK
21445 /* Fortran does not have mangling standard and the mangling does differ
21446 between gfortran, iFort etc. */
21447 if (cu->language == language_fortran
b250c185 21448 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
29df156d 21449 symbol_set_demangled_name (&(sym->ginfo),
cfc594ee 21450 dwarf2_full_name (name, die, cu),
29df156d 21451 NULL);
f55ee35c 21452
c906108c 21453 /* Default assumptions.
c5aa993b 21454 Use the passed type or decode it from the die. */
176620f1 21455 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
f1e6e072 21456 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
21457 if (type != NULL)
21458 SYMBOL_TYPE (sym) = type;
21459 else
e7c27a73 21460 SYMBOL_TYPE (sym) = die_type (die, cu);
edb3359d
DJ
21461 attr = dwarf2_attr (die,
21462 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
21463 cu);
c906108c
SS
21464 if (attr)
21465 {
21466 SYMBOL_LINE (sym) = DW_UNSND (attr);
21467 }
cb1df416 21468
edb3359d
DJ
21469 attr = dwarf2_attr (die,
21470 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
21471 cu);
cb1df416
DJ
21472 if (attr)
21473 {
ecfb656c 21474 file_name_index file_index = (file_name_index) DW_UNSND (attr);
8c43009f 21475 struct file_entry *fe;
9a619af0 21476
ecfb656c
PA
21477 if (cu->line_header != NULL)
21478 fe = cu->line_header->file_name_at (file_index);
8c43009f
PA
21479 else
21480 fe = NULL;
21481
21482 if (fe == NULL)
b98664d3 21483 complaint (_("file index out of range"));
8c43009f
PA
21484 else
21485 symbol_set_symtab (sym, fe->symtab);
cb1df416
DJ
21486 }
21487
c906108c
SS
21488 switch (die->tag)
21489 {
21490 case DW_TAG_label:
e142c38c 21491 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
c906108c 21492 if (attr)
3e29f34a
MR
21493 {
21494 CORE_ADDR addr;
21495
21496 addr = attr_value_as_address (attr);
21497 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
21498 SYMBOL_VALUE_ADDRESS (sym) = addr;
21499 }
0f5238ed
TT
21500 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
21501 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
f1e6e072 21502 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
d3cb6808 21503 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
21504 break;
21505 case DW_TAG_subprogram:
21506 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21507 finish_block. */
f1e6e072 21508 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
e142c38c 21509 attr2 = dwarf2_attr (die, DW_AT_external, cu);
2cfa0c8d
JB
21510 if ((attr2 && (DW_UNSND (attr2) != 0))
21511 || cu->language == language_ada)
c906108c 21512 {
2cfa0c8d
JB
21513 /* Subprograms marked external are stored as a global symbol.
21514 Ada subprograms, whether marked external or not, are always
21515 stored as a global symbol, because we want to be able to
21516 access them globally. For instance, we want to be able
21517 to break on a nested subprogram without having to
21518 specify the context. */
c24bdb02 21519 list_to_add = cu->get_builder ()->get_global_symbols ();
c906108c
SS
21520 }
21521 else
21522 {
e37fd15a 21523 list_to_add = cu->list_in_scope;
c906108c
SS
21524 }
21525 break;
edb3359d
DJ
21526 case DW_TAG_inlined_subroutine:
21527 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21528 finish_block. */
f1e6e072 21529 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
edb3359d 21530 SYMBOL_INLINED (sym) = 1;
481860b3 21531 list_to_add = cu->list_in_scope;
edb3359d 21532 break;
34eaf542
TT
21533 case DW_TAG_template_value_param:
21534 suppress_add = 1;
21535 /* Fall through. */
72929c62 21536 case DW_TAG_constant:
c906108c 21537 case DW_TAG_variable:
254e6b9e 21538 case DW_TAG_member:
0963b4bd
MS
21539 /* Compilation with minimal debug info may result in
21540 variables with missing type entries. Change the
21541 misleading `void' type to something sensible. */
c906108c 21542 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
46a4882b 21543 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_int;
64c50499 21544
e142c38c 21545 attr = dwarf2_attr (die, DW_AT_const_value, cu);
254e6b9e
DE
21546 /* In the case of DW_TAG_member, we should only be called for
21547 static const members. */
21548 if (die->tag == DW_TAG_member)
21549 {
3863f96c
DE
21550 /* dwarf2_add_field uses die_is_declaration,
21551 so we do the same. */
254e6b9e
DE
21552 gdb_assert (die_is_declaration (die, cu));
21553 gdb_assert (attr);
21554 }
c906108c
SS
21555 if (attr)
21556 {
e7c27a73 21557 dwarf2_const_value (attr, sym, cu);
e142c38c 21558 attr2 = dwarf2_attr (die, DW_AT_external, cu);
e37fd15a 21559 if (!suppress_add)
34eaf542
TT
21560 {
21561 if (attr2 && (DW_UNSND (attr2) != 0))
c24bdb02 21562 list_to_add = cu->get_builder ()->get_global_symbols ();
34eaf542 21563 else
e37fd15a 21564 list_to_add = cu->list_in_scope;
34eaf542 21565 }
c906108c
SS
21566 break;
21567 }
e142c38c 21568 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
21569 if (attr)
21570 {
e7c27a73 21571 var_decode_location (attr, sym, cu);
e142c38c 21572 attr2 = dwarf2_attr (die, DW_AT_external, cu);
4357ac6c
TT
21573
21574 /* Fortran explicitly imports any global symbols to the local
21575 scope by DW_TAG_common_block. */
21576 if (cu->language == language_fortran && die->parent
21577 && die->parent->tag == DW_TAG_common_block)
21578 attr2 = NULL;
21579
caac4577
JG
21580 if (SYMBOL_CLASS (sym) == LOC_STATIC
21581 && SYMBOL_VALUE_ADDRESS (sym) == 0
21582 && !dwarf2_per_objfile->has_section_at_zero)
21583 {
21584 /* When a static variable is eliminated by the linker,
21585 the corresponding debug information is not stripped
21586 out, but the variable address is set to null;
21587 do not add such variables into symbol table. */
21588 }
21589 else if (attr2 && (DW_UNSND (attr2) != 0))
1c809c68 21590 {
f55ee35c
JK
21591 /* Workaround gfortran PR debug/40040 - it uses
21592 DW_AT_location for variables in -fPIC libraries which may
21593 get overriden by other libraries/executable and get
21594 a different address. Resolve it by the minimal symbol
21595 which may come from inferior's executable using copy
21596 relocation. Make this workaround only for gfortran as for
21597 other compilers GDB cannot guess the minimal symbol
21598 Fortran mangling kind. */
21599 if (cu->language == language_fortran && die->parent
21600 && die->parent->tag == DW_TAG_module
21601 && cu->producer
28586665 21602 && startswith (cu->producer, "GNU Fortran"))
f1e6e072 21603 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
f55ee35c 21604
1c809c68
TT
21605 /* A variable with DW_AT_external is never static,
21606 but it may be block-scoped. */
804d2729 21607 list_to_add
c24bdb02
KS
21608 = ((cu->list_in_scope
21609 == cu->get_builder ()->get_file_symbols ())
21610 ? cu->get_builder ()->get_global_symbols ()
804d2729 21611 : cu->list_in_scope);
1c809c68 21612 }
c906108c 21613 else
e37fd15a 21614 list_to_add = cu->list_in_scope;
c906108c
SS
21615 }
21616 else
21617 {
21618 /* We do not know the address of this symbol.
c5aa993b
JM
21619 If it is an external symbol and we have type information
21620 for it, enter the symbol as a LOC_UNRESOLVED symbol.
21621 The address of the variable will then be determined from
21622 the minimal symbol table whenever the variable is
21623 referenced. */
e142c38c 21624 attr2 = dwarf2_attr (die, DW_AT_external, cu);
0971de02
TT
21625
21626 /* Fortran explicitly imports any global symbols to the local
21627 scope by DW_TAG_common_block. */
21628 if (cu->language == language_fortran && die->parent
21629 && die->parent->tag == DW_TAG_common_block)
21630 {
21631 /* SYMBOL_CLASS doesn't matter here because
21632 read_common_block is going to reset it. */
21633 if (!suppress_add)
21634 list_to_add = cu->list_in_scope;
21635 }
21636 else if (attr2 && (DW_UNSND (attr2) != 0)
21637 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c 21638 {
0fe7935b
DJ
21639 /* A variable with DW_AT_external is never static, but it
21640 may be block-scoped. */
804d2729 21641 list_to_add
c24bdb02
KS
21642 = ((cu->list_in_scope
21643 == cu->get_builder ()->get_file_symbols ())
21644 ? cu->get_builder ()->get_global_symbols ()
804d2729 21645 : cu->list_in_scope);
0fe7935b 21646
f1e6e072 21647 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
c906108c 21648 }
442ddf59
JK
21649 else if (!die_is_declaration (die, cu))
21650 {
21651 /* Use the default LOC_OPTIMIZED_OUT class. */
21652 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
e37fd15a
SW
21653 if (!suppress_add)
21654 list_to_add = cu->list_in_scope;
442ddf59 21655 }
c906108c
SS
21656 }
21657 break;
21658 case DW_TAG_formal_parameter:
a60f3166
TT
21659 {
21660 /* If we are inside a function, mark this as an argument. If
21661 not, we might be looking at an argument to an inlined function
21662 when we do not have enough information to show inlined frames;
21663 pretend it's a local variable in that case so that the user can
21664 still see it. */
804d2729 21665 struct context_stack *curr
c24bdb02 21666 = cu->get_builder ()->get_current_context_stack ();
a60f3166
TT
21667 if (curr != nullptr && curr->name != nullptr)
21668 SYMBOL_IS_ARGUMENT (sym) = 1;
21669 attr = dwarf2_attr (die, DW_AT_location, cu);
21670 if (attr)
21671 {
21672 var_decode_location (attr, sym, cu);
21673 }
21674 attr = dwarf2_attr (die, DW_AT_const_value, cu);
21675 if (attr)
21676 {
21677 dwarf2_const_value (attr, sym, cu);
21678 }
f346a30d 21679
a60f3166
TT
21680 list_to_add = cu->list_in_scope;
21681 }
c906108c
SS
21682 break;
21683 case DW_TAG_unspecified_parameters:
21684 /* From varargs functions; gdb doesn't seem to have any
21685 interest in this information, so just ignore it for now.
21686 (FIXME?) */
21687 break;
34eaf542
TT
21688 case DW_TAG_template_type_param:
21689 suppress_add = 1;
21690 /* Fall through. */
c906108c 21691 case DW_TAG_class_type:
680b30c7 21692 case DW_TAG_interface_type:
c906108c
SS
21693 case DW_TAG_structure_type:
21694 case DW_TAG_union_type:
72019c9c 21695 case DW_TAG_set_type:
c906108c 21696 case DW_TAG_enumeration_type:
f1e6e072 21697 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21698 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 21699
63d06c5c 21700 {
9c37b5ae 21701 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
63d06c5c
DC
21702 really ever be static objects: otherwise, if you try
21703 to, say, break of a class's method and you're in a file
21704 which doesn't mention that class, it won't work unless
21705 the check for all static symbols in lookup_symbol_aux
21706 saves you. See the OtherFileClass tests in
21707 gdb.c++/namespace.exp. */
21708
e37fd15a 21709 if (!suppress_add)
34eaf542 21710 {
c24bdb02 21711 buildsym_compunit *builder = cu->get_builder ();
804d2729 21712 list_to_add
c24bdb02 21713 = (cu->list_in_scope == builder->get_file_symbols ()
804d2729 21714 && cu->language == language_cplus
c24bdb02 21715 ? builder->get_global_symbols ()
804d2729 21716 : cu->list_in_scope);
63d06c5c 21717
64382290 21718 /* The semantics of C++ state that "struct foo {
9c37b5ae 21719 ... }" also defines a typedef for "foo". */
64382290 21720 if (cu->language == language_cplus
45280282 21721 || cu->language == language_ada
c44af4eb
TT
21722 || cu->language == language_d
21723 || cu->language == language_rust)
64382290
TT
21724 {
21725 /* The symbol's name is already allocated along
21726 with this objfile, so we don't need to
21727 duplicate it for the type. */
21728 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
21729 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
21730 }
63d06c5c
DC
21731 }
21732 }
c906108c
SS
21733 break;
21734 case DW_TAG_typedef:
f1e6e072 21735 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
63d06c5c 21736 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21737 list_to_add = cu->list_in_scope;
63d06c5c 21738 break;
c906108c 21739 case DW_TAG_base_type:
a02abb62 21740 case DW_TAG_subrange_type:
f1e6e072 21741 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21742 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21743 list_to_add = cu->list_in_scope;
c906108c
SS
21744 break;
21745 case DW_TAG_enumerator:
e142c38c 21746 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
21747 if (attr)
21748 {
e7c27a73 21749 dwarf2_const_value (attr, sym, cu);
c906108c 21750 }
63d06c5c
DC
21751 {
21752 /* NOTE: carlton/2003-11-10: See comment above in the
21753 DW_TAG_class_type, etc. block. */
21754
804d2729 21755 list_to_add
c24bdb02 21756 = (cu->list_in_scope == cu->get_builder ()->get_file_symbols ()
804d2729 21757 && cu->language == language_cplus
c24bdb02 21758 ? cu->get_builder ()->get_global_symbols ()
804d2729 21759 : cu->list_in_scope);
63d06c5c 21760 }
c906108c 21761 break;
74921315 21762 case DW_TAG_imported_declaration:
5c4e30ca 21763 case DW_TAG_namespace:
f1e6e072 21764 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
c24bdb02 21765 list_to_add = cu->get_builder ()->get_global_symbols ();
5c4e30ca 21766 break;
530e8392
KB
21767 case DW_TAG_module:
21768 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21769 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
c24bdb02 21770 list_to_add = cu->get_builder ()->get_global_symbols ();
530e8392 21771 break;
4357ac6c 21772 case DW_TAG_common_block:
f1e6e072 21773 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
4357ac6c 21774 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
d3cb6808 21775 add_symbol_to_list (sym, cu->list_in_scope);
4357ac6c 21776 break;
c906108c
SS
21777 default:
21778 /* Not a tag we recognize. Hopefully we aren't processing
21779 trash data, but since we must specifically ignore things
21780 we don't recognize, there is nothing else we should do at
0963b4bd 21781 this point. */
b98664d3 21782 complaint (_("unsupported tag: '%s'"),
4d3c2250 21783 dwarf_tag_name (die->tag));
c906108c
SS
21784 break;
21785 }
df8a16a1 21786
e37fd15a
SW
21787 if (suppress_add)
21788 {
21789 sym->hash_next = objfile->template_symbols;
21790 objfile->template_symbols = sym;
21791 list_to_add = NULL;
21792 }
21793
21794 if (list_to_add != NULL)
d3cb6808 21795 add_symbol_to_list (sym, list_to_add);
e37fd15a 21796
df8a16a1
DJ
21797 /* For the benefit of old versions of GCC, check for anonymous
21798 namespaces based on the demangled name. */
4d4ec4e5 21799 if (!cu->processing_has_namespace_info
94af9270 21800 && cu->language == language_cplus)
c24bdb02 21801 cp_scan_for_anonymous_namespaces (cu->get_builder (), sym, objfile);
c906108c
SS
21802 }
21803 return (sym);
21804}
21805
98bfdba5
PA
21806/* Given an attr with a DW_FORM_dataN value in host byte order,
21807 zero-extend it as appropriate for the symbol's type. The DWARF
21808 standard (v4) is not entirely clear about the meaning of using
21809 DW_FORM_dataN for a constant with a signed type, where the type is
21810 wider than the data. The conclusion of a discussion on the DWARF
21811 list was that this is unspecified. We choose to always zero-extend
21812 because that is the interpretation long in use by GCC. */
c906108c 21813
98bfdba5 21814static gdb_byte *
ff39bb5e 21815dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
12df843f 21816 struct dwarf2_cu *cu, LONGEST *value, int bits)
c906108c 21817{
518817b3 21818 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e17a4113
UW
21819 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
21820 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
98bfdba5
PA
21821 LONGEST l = DW_UNSND (attr);
21822
21823 if (bits < sizeof (*value) * 8)
21824 {
21825 l &= ((LONGEST) 1 << bits) - 1;
21826 *value = l;
21827 }
21828 else if (bits == sizeof (*value) * 8)
21829 *value = l;
21830 else
21831 {
224c3ddb 21832 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
98bfdba5
PA
21833 store_unsigned_integer (bytes, bits / 8, byte_order, l);
21834 return bytes;
21835 }
21836
21837 return NULL;
21838}
21839
21840/* Read a constant value from an attribute. Either set *VALUE, or if
21841 the value does not fit in *VALUE, set *BYTES - either already
21842 allocated on the objfile obstack, or newly allocated on OBSTACK,
21843 or, set *BATON, if we translated the constant to a location
21844 expression. */
21845
21846static void
ff39bb5e 21847dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
98bfdba5
PA
21848 const char *name, struct obstack *obstack,
21849 struct dwarf2_cu *cu,
d521ce57 21850 LONGEST *value, const gdb_byte **bytes,
98bfdba5
PA
21851 struct dwarf2_locexpr_baton **baton)
21852{
518817b3 21853 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
98bfdba5 21854 struct comp_unit_head *cu_header = &cu->header;
c906108c 21855 struct dwarf_block *blk;
98bfdba5
PA
21856 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
21857 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
21858
21859 *value = 0;
21860 *bytes = NULL;
21861 *baton = NULL;
c906108c
SS
21862
21863 switch (attr->form)
21864 {
21865 case DW_FORM_addr:
336d760d 21866 case DW_FORM_addrx:
3019eac3 21867 case DW_FORM_GNU_addr_index:
ac56253d 21868 {
ac56253d
TT
21869 gdb_byte *data;
21870
98bfdba5
PA
21871 if (TYPE_LENGTH (type) != cu_header->addr_size)
21872 dwarf2_const_value_length_mismatch_complaint (name,
ac56253d 21873 cu_header->addr_size,
98bfdba5 21874 TYPE_LENGTH (type));
ac56253d
TT
21875 /* Symbols of this form are reasonably rare, so we just
21876 piggyback on the existing location code rather than writing
21877 a new implementation of symbol_computed_ops. */
8d749320 21878 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
98bfdba5
PA
21879 (*baton)->per_cu = cu->per_cu;
21880 gdb_assert ((*baton)->per_cu);
ac56253d 21881
98bfdba5 21882 (*baton)->size = 2 + cu_header->addr_size;
224c3ddb 21883 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
98bfdba5 21884 (*baton)->data = data;
ac56253d
TT
21885
21886 data[0] = DW_OP_addr;
21887 store_unsigned_integer (&data[1], cu_header->addr_size,
21888 byte_order, DW_ADDR (attr));
21889 data[cu_header->addr_size + 1] = DW_OP_stack_value;
ac56253d 21890 }
c906108c 21891 break;
4ac36638 21892 case DW_FORM_string:
93b5768b 21893 case DW_FORM_strp:
cf532bd1 21894 case DW_FORM_strx:
3019eac3 21895 case DW_FORM_GNU_str_index:
36586728 21896 case DW_FORM_GNU_strp_alt:
98bfdba5
PA
21897 /* DW_STRING is already allocated on the objfile obstack, point
21898 directly to it. */
d521ce57 21899 *bytes = (const gdb_byte *) DW_STRING (attr);
93b5768b 21900 break;
c906108c
SS
21901 case DW_FORM_block1:
21902 case DW_FORM_block2:
21903 case DW_FORM_block4:
21904 case DW_FORM_block:
2dc7f7b3 21905 case DW_FORM_exprloc:
0224619f 21906 case DW_FORM_data16:
c906108c 21907 blk = DW_BLOCK (attr);
98bfdba5
PA
21908 if (TYPE_LENGTH (type) != blk->size)
21909 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
21910 TYPE_LENGTH (type));
21911 *bytes = blk->data;
c906108c 21912 break;
2df3850c
JM
21913
21914 /* The DW_AT_const_value attributes are supposed to carry the
21915 symbol's value "represented as it would be on the target
21916 architecture." By the time we get here, it's already been
21917 converted to host endianness, so we just need to sign- or
21918 zero-extend it as appropriate. */
21919 case DW_FORM_data1:
3aef2284 21920 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
2df3850c 21921 break;
c906108c 21922 case DW_FORM_data2:
3aef2284 21923 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
2df3850c 21924 break;
c906108c 21925 case DW_FORM_data4:
3aef2284 21926 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
2df3850c 21927 break;
c906108c 21928 case DW_FORM_data8:
3aef2284 21929 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
2df3850c
JM
21930 break;
21931
c906108c 21932 case DW_FORM_sdata:
663c44ac 21933 case DW_FORM_implicit_const:
98bfdba5 21934 *value = DW_SND (attr);
2df3850c
JM
21935 break;
21936
c906108c 21937 case DW_FORM_udata:
98bfdba5 21938 *value = DW_UNSND (attr);
c906108c 21939 break;
2df3850c 21940
c906108c 21941 default:
b98664d3 21942 complaint (_("unsupported const value attribute form: '%s'"),
4d3c2250 21943 dwarf_form_name (attr->form));
98bfdba5 21944 *value = 0;
c906108c
SS
21945 break;
21946 }
21947}
21948
2df3850c 21949
98bfdba5
PA
21950/* Copy constant value from an attribute to a symbol. */
21951
2df3850c 21952static void
ff39bb5e 21953dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
98bfdba5 21954 struct dwarf2_cu *cu)
2df3850c 21955{
518817b3 21956 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
12df843f 21957 LONGEST value;
d521ce57 21958 const gdb_byte *bytes;
98bfdba5 21959 struct dwarf2_locexpr_baton *baton;
2df3850c 21960
98bfdba5
PA
21961 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
21962 SYMBOL_PRINT_NAME (sym),
21963 &objfile->objfile_obstack, cu,
21964 &value, &bytes, &baton);
2df3850c 21965
98bfdba5
PA
21966 if (baton != NULL)
21967 {
98bfdba5 21968 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 21969 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
98bfdba5
PA
21970 }
21971 else if (bytes != NULL)
21972 {
21973 SYMBOL_VALUE_BYTES (sym) = bytes;
f1e6e072 21974 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
98bfdba5
PA
21975 }
21976 else
21977 {
21978 SYMBOL_VALUE (sym) = value;
f1e6e072 21979 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
98bfdba5 21980 }
2df3850c
JM
21981}
21982
c906108c
SS
21983/* Return the type of the die in question using its DW_AT_type attribute. */
21984
21985static struct type *
e7c27a73 21986die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21987{
c906108c 21988 struct attribute *type_attr;
c906108c 21989
e142c38c 21990 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
21991 if (!type_attr)
21992 {
518817b3 21993 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 21994 /* A missing DW_AT_type represents a void type. */
518817b3 21995 return objfile_type (objfile)->builtin_void;
c906108c 21996 }
348e048f 21997
673bfd45 21998 return lookup_die_type (die, type_attr, cu);
c906108c
SS
21999}
22000
b4ba55a1
JB
22001/* True iff CU's producer generates GNAT Ada auxiliary information
22002 that allows to find parallel types through that information instead
22003 of having to do expensive parallel lookups by type name. */
22004
22005static int
22006need_gnat_info (struct dwarf2_cu *cu)
22007{
de4cb04a
JB
22008 /* Assume that the Ada compiler was GNAT, which always produces
22009 the auxiliary information. */
22010 return (cu->language == language_ada);
b4ba55a1
JB
22011}
22012
b4ba55a1
JB
22013/* Return the auxiliary type of the die in question using its
22014 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
22015 attribute is not present. */
22016
22017static struct type *
22018die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
22019{
b4ba55a1 22020 struct attribute *type_attr;
b4ba55a1
JB
22021
22022 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
22023 if (!type_attr)
22024 return NULL;
22025
673bfd45 22026 return lookup_die_type (die, type_attr, cu);
b4ba55a1
JB
22027}
22028
22029/* If DIE has a descriptive_type attribute, then set the TYPE's
22030 descriptive type accordingly. */
22031
22032static void
22033set_descriptive_type (struct type *type, struct die_info *die,
22034 struct dwarf2_cu *cu)
22035{
22036 struct type *descriptive_type = die_descriptive_type (die, cu);
22037
22038 if (descriptive_type)
22039 {
22040 ALLOCATE_GNAT_AUX_TYPE (type);
22041 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
22042 }
22043}
22044
c906108c
SS
22045/* Return the containing type of the die in question using its
22046 DW_AT_containing_type attribute. */
22047
22048static struct type *
e7c27a73 22049die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22050{
c906108c 22051 struct attribute *type_attr;
518817b3 22052 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
c906108c 22053
e142c38c 22054 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
33ac96f0
JK
22055 if (!type_attr)
22056 error (_("Dwarf Error: Problem turning containing type into gdb type "
518817b3 22057 "[in module %s]"), objfile_name (objfile));
33ac96f0 22058
673bfd45 22059 return lookup_die_type (die, type_attr, cu);
c906108c
SS
22060}
22061
ac9ec31b
DE
22062/* Return an error marker type to use for the ill formed type in DIE/CU. */
22063
22064static struct type *
22065build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
22066{
518817b3
SM
22067 struct dwarf2_per_objfile *dwarf2_per_objfile
22068 = cu->per_cu->dwarf2_per_objfile;
ac9ec31b 22069 struct objfile *objfile = dwarf2_per_objfile->objfile;
528e1572 22070 char *saved;
ac9ec31b 22071
528e1572
SM
22072 std::string message
22073 = string_printf (_("<unknown type in %s, CU %s, DIE %s>"),
22074 objfile_name (objfile),
22075 sect_offset_str (cu->header.sect_off),
22076 sect_offset_str (die->sect_off));
224c3ddb 22077 saved = (char *) obstack_copy0 (&objfile->objfile_obstack,
528e1572 22078 message.c_str (), message.length ());
ac9ec31b 22079
19f392bc 22080 return init_type (objfile, TYPE_CODE_ERROR, 0, saved);
ac9ec31b
DE
22081}
22082
673bfd45 22083/* Look up the type of DIE in CU using its type attribute ATTR.
ac9ec31b
DE
22084 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
22085 DW_AT_containing_type.
673bfd45
DE
22086 If there is no type substitute an error marker. */
22087
c906108c 22088static struct type *
ff39bb5e 22089lookup_die_type (struct die_info *die, const struct attribute *attr,
673bfd45 22090 struct dwarf2_cu *cu)
c906108c 22091{
518817b3
SM
22092 struct dwarf2_per_objfile *dwarf2_per_objfile
22093 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 22094 struct objfile *objfile = dwarf2_per_objfile->objfile;
f792889a
DJ
22095 struct type *this_type;
22096
ac9ec31b
DE
22097 gdb_assert (attr->name == DW_AT_type
22098 || attr->name == DW_AT_GNAT_descriptive_type
22099 || attr->name == DW_AT_containing_type);
22100
673bfd45
DE
22101 /* First see if we have it cached. */
22102
36586728
TT
22103 if (attr->form == DW_FORM_GNU_ref_alt)
22104 {
22105 struct dwarf2_per_cu_data *per_cu;
9c541725 22106 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
36586728 22107
ed2dc618
SM
22108 per_cu = dwarf2_find_containing_comp_unit (sect_off, 1,
22109 dwarf2_per_objfile);
9c541725 22110 this_type = get_die_type_at_offset (sect_off, per_cu);
36586728 22111 }
7771576e 22112 else if (attr_form_is_ref (attr))
673bfd45 22113 {
9c541725 22114 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
673bfd45 22115
9c541725 22116 this_type = get_die_type_at_offset (sect_off, cu->per_cu);
673bfd45 22117 }
55f1336d 22118 else if (attr->form == DW_FORM_ref_sig8)
673bfd45 22119 {
ac9ec31b 22120 ULONGEST signature = DW_SIGNATURE (attr);
673bfd45 22121
ac9ec31b 22122 return get_signatured_type (die, signature, cu);
673bfd45
DE
22123 }
22124 else
22125 {
b98664d3 22126 complaint (_("Dwarf Error: Bad type attribute %s in DIE"
9d8780f0
SM
22127 " at %s [in module %s]"),
22128 dwarf_attr_name (attr->name), sect_offset_str (die->sect_off),
4262abfb 22129 objfile_name (objfile));
ac9ec31b 22130 return build_error_marker_type (cu, die);
673bfd45
DE
22131 }
22132
22133 /* If not cached we need to read it in. */
22134
22135 if (this_type == NULL)
22136 {
ac9ec31b 22137 struct die_info *type_die = NULL;
673bfd45
DE
22138 struct dwarf2_cu *type_cu = cu;
22139
7771576e 22140 if (attr_form_is_ref (attr))
ac9ec31b
DE
22141 type_die = follow_die_ref (die, attr, &type_cu);
22142 if (type_die == NULL)
22143 return build_error_marker_type (cu, die);
22144 /* If we find the type now, it's probably because the type came
3019eac3
DE
22145 from an inter-CU reference and the type's CU got expanded before
22146 ours. */
ac9ec31b 22147 this_type = read_type_die (type_die, type_cu);
673bfd45
DE
22148 }
22149
22150 /* If we still don't have a type use an error marker. */
22151
22152 if (this_type == NULL)
ac9ec31b 22153 return build_error_marker_type (cu, die);
673bfd45 22154
f792889a 22155 return this_type;
c906108c
SS
22156}
22157
673bfd45
DE
22158/* Return the type in DIE, CU.
22159 Returns NULL for invalid types.
22160
02142a6c 22161 This first does a lookup in die_type_hash,
673bfd45
DE
22162 and only reads the die in if necessary.
22163
22164 NOTE: This can be called when reading in partial or full symbols. */
22165
f792889a 22166static struct type *
e7c27a73 22167read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22168{
f792889a
DJ
22169 struct type *this_type;
22170
22171 this_type = get_die_type (die, cu);
22172 if (this_type)
22173 return this_type;
22174
673bfd45
DE
22175 return read_type_die_1 (die, cu);
22176}
22177
22178/* Read the type in DIE, CU.
22179 Returns NULL for invalid types. */
22180
22181static struct type *
22182read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
22183{
22184 struct type *this_type = NULL;
22185
c906108c
SS
22186 switch (die->tag)
22187 {
22188 case DW_TAG_class_type:
680b30c7 22189 case DW_TAG_interface_type:
c906108c
SS
22190 case DW_TAG_structure_type:
22191 case DW_TAG_union_type:
f792889a 22192 this_type = read_structure_type (die, cu);
c906108c
SS
22193 break;
22194 case DW_TAG_enumeration_type:
f792889a 22195 this_type = read_enumeration_type (die, cu);
c906108c
SS
22196 break;
22197 case DW_TAG_subprogram:
22198 case DW_TAG_subroutine_type:
edb3359d 22199 case DW_TAG_inlined_subroutine:
f792889a 22200 this_type = read_subroutine_type (die, cu);
c906108c
SS
22201 break;
22202 case DW_TAG_array_type:
f792889a 22203 this_type = read_array_type (die, cu);
c906108c 22204 break;
72019c9c 22205 case DW_TAG_set_type:
f792889a 22206 this_type = read_set_type (die, cu);
72019c9c 22207 break;
c906108c 22208 case DW_TAG_pointer_type:
f792889a 22209 this_type = read_tag_pointer_type (die, cu);
c906108c
SS
22210 break;
22211 case DW_TAG_ptr_to_member_type:
f792889a 22212 this_type = read_tag_ptr_to_member_type (die, cu);
c906108c
SS
22213 break;
22214 case DW_TAG_reference_type:
4297a3f0
AV
22215 this_type = read_tag_reference_type (die, cu, TYPE_CODE_REF);
22216 break;
22217 case DW_TAG_rvalue_reference_type:
22218 this_type = read_tag_reference_type (die, cu, TYPE_CODE_RVALUE_REF);
c906108c
SS
22219 break;
22220 case DW_TAG_const_type:
f792889a 22221 this_type = read_tag_const_type (die, cu);
c906108c
SS
22222 break;
22223 case DW_TAG_volatile_type:
f792889a 22224 this_type = read_tag_volatile_type (die, cu);
c906108c 22225 break;
06d66ee9
TT
22226 case DW_TAG_restrict_type:
22227 this_type = read_tag_restrict_type (die, cu);
22228 break;
c906108c 22229 case DW_TAG_string_type:
f792889a 22230 this_type = read_tag_string_type (die, cu);
c906108c
SS
22231 break;
22232 case DW_TAG_typedef:
f792889a 22233 this_type = read_typedef (die, cu);
c906108c 22234 break;
a02abb62 22235 case DW_TAG_subrange_type:
f792889a 22236 this_type = read_subrange_type (die, cu);
a02abb62 22237 break;
c906108c 22238 case DW_TAG_base_type:
f792889a 22239 this_type = read_base_type (die, cu);
c906108c 22240 break;
81a17f79 22241 case DW_TAG_unspecified_type:
f792889a 22242 this_type = read_unspecified_type (die, cu);
81a17f79 22243 break;
0114d602
DJ
22244 case DW_TAG_namespace:
22245 this_type = read_namespace_type (die, cu);
22246 break;
f55ee35c
JK
22247 case DW_TAG_module:
22248 this_type = read_module_type (die, cu);
22249 break;
a2c2acaf
MW
22250 case DW_TAG_atomic_type:
22251 this_type = read_tag_atomic_type (die, cu);
22252 break;
c906108c 22253 default:
b98664d3 22254 complaint (_("unexpected tag in read_type_die: '%s'"),
4d3c2250 22255 dwarf_tag_name (die->tag));
c906108c
SS
22256 break;
22257 }
63d06c5c 22258
f792889a 22259 return this_type;
63d06c5c
DC
22260}
22261
abc72ce4
DE
22262/* See if we can figure out if the class lives in a namespace. We do
22263 this by looking for a member function; its demangled name will
22264 contain namespace info, if there is any.
22265 Return the computed name or NULL.
22266 Space for the result is allocated on the objfile's obstack.
22267 This is the full-die version of guess_partial_die_structure_name.
22268 In this case we know DIE has no useful parent. */
22269
22270static char *
22271guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
22272{
22273 struct die_info *spec_die;
22274 struct dwarf2_cu *spec_cu;
22275 struct die_info *child;
518817b3 22276 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
abc72ce4
DE
22277
22278 spec_cu = cu;
22279 spec_die = die_specification (die, &spec_cu);
22280 if (spec_die != NULL)
22281 {
22282 die = spec_die;
22283 cu = spec_cu;
22284 }
22285
22286 for (child = die->child;
22287 child != NULL;
22288 child = child->sibling)
22289 {
22290 if (child->tag == DW_TAG_subprogram)
22291 {
73b9be8b 22292 const char *linkage_name = dw2_linkage_name (child, cu);
abc72ce4 22293
7d45c7c3 22294 if (linkage_name != NULL)
abc72ce4
DE
22295 {
22296 char *actual_name
22297 = language_class_name_from_physname (cu->language_defn,
7d45c7c3 22298 linkage_name);
abc72ce4
DE
22299 char *name = NULL;
22300
22301 if (actual_name != NULL)
22302 {
15d034d0 22303 const char *die_name = dwarf2_name (die, cu);
abc72ce4
DE
22304
22305 if (die_name != NULL
22306 && strcmp (die_name, actual_name) != 0)
22307 {
22308 /* Strip off the class name from the full name.
22309 We want the prefix. */
22310 int die_name_len = strlen (die_name);
22311 int actual_name_len = strlen (actual_name);
22312
22313 /* Test for '::' as a sanity check. */
22314 if (actual_name_len > die_name_len + 2
3e43a32a
MS
22315 && actual_name[actual_name_len
22316 - die_name_len - 1] == ':')
224c3ddb 22317 name = (char *) obstack_copy0 (
e3b94546 22318 &objfile->per_bfd->storage_obstack,
224c3ddb 22319 actual_name, actual_name_len - die_name_len - 2);
abc72ce4
DE
22320 }
22321 }
22322 xfree (actual_name);
22323 return name;
22324 }
22325 }
22326 }
22327
22328 return NULL;
22329}
22330
96408a79
SA
22331/* GCC might emit a nameless typedef that has a linkage name. Determine the
22332 prefix part in such case. See
22333 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22334
a121b7c1 22335static const char *
96408a79
SA
22336anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
22337{
22338 struct attribute *attr;
e6a959d6 22339 const char *base;
96408a79
SA
22340
22341 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
22342 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
22343 return NULL;
22344
7d45c7c3 22345 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
96408a79
SA
22346 return NULL;
22347
73b9be8b 22348 attr = dw2_linkage_name_attr (die, cu);
96408a79
SA
22349 if (attr == NULL || DW_STRING (attr) == NULL)
22350 return NULL;
22351
22352 /* dwarf2_name had to be already called. */
22353 gdb_assert (DW_STRING_IS_CANONICAL (attr));
22354
22355 /* Strip the base name, keep any leading namespaces/classes. */
22356 base = strrchr (DW_STRING (attr), ':');
22357 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
22358 return "";
22359
518817b3 22360 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
e3b94546 22361 return (char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb
SM
22362 DW_STRING (attr),
22363 &base[-1] - DW_STRING (attr));
96408a79
SA
22364}
22365
fdde2d81 22366/* Return the name of the namespace/class that DIE is defined within,
0114d602 22367 or "" if we can't tell. The caller should not xfree the result.
fdde2d81 22368
0114d602
DJ
22369 For example, if we're within the method foo() in the following
22370 code:
22371
22372 namespace N {
22373 class C {
22374 void foo () {
22375 }
22376 };
22377 }
22378
22379 then determine_prefix on foo's die will return "N::C". */
fdde2d81 22380
0d5cff50 22381static const char *
e142c38c 22382determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 22383{
518817b3
SM
22384 struct dwarf2_per_objfile *dwarf2_per_objfile
22385 = cu->per_cu->dwarf2_per_objfile;
0114d602
DJ
22386 struct die_info *parent, *spec_die;
22387 struct dwarf2_cu *spec_cu;
22388 struct type *parent_type;
a121b7c1 22389 const char *retval;
63d06c5c 22390
9c37b5ae 22391 if (cu->language != language_cplus
c44af4eb
TT
22392 && cu->language != language_fortran && cu->language != language_d
22393 && cu->language != language_rust)
0114d602
DJ
22394 return "";
22395
96408a79
SA
22396 retval = anonymous_struct_prefix (die, cu);
22397 if (retval)
22398 return retval;
22399
0114d602
DJ
22400 /* We have to be careful in the presence of DW_AT_specification.
22401 For example, with GCC 3.4, given the code
22402
22403 namespace N {
22404 void foo() {
22405 // Definition of N::foo.
22406 }
22407 }
22408
22409 then we'll have a tree of DIEs like this:
22410
22411 1: DW_TAG_compile_unit
22412 2: DW_TAG_namespace // N
22413 3: DW_TAG_subprogram // declaration of N::foo
22414 4: DW_TAG_subprogram // definition of N::foo
22415 DW_AT_specification // refers to die #3
22416
22417 Thus, when processing die #4, we have to pretend that we're in
22418 the context of its DW_AT_specification, namely the contex of die
22419 #3. */
22420 spec_cu = cu;
22421 spec_die = die_specification (die, &spec_cu);
22422 if (spec_die == NULL)
22423 parent = die->parent;
22424 else
63d06c5c 22425 {
0114d602
DJ
22426 parent = spec_die->parent;
22427 cu = spec_cu;
63d06c5c 22428 }
0114d602
DJ
22429
22430 if (parent == NULL)
22431 return "";
98bfdba5
PA
22432 else if (parent->building_fullname)
22433 {
22434 const char *name;
22435 const char *parent_name;
22436
22437 /* It has been seen on RealView 2.2 built binaries,
22438 DW_TAG_template_type_param types actually _defined_ as
22439 children of the parent class:
22440
22441 enum E {};
22442 template class <class Enum> Class{};
22443 Class<enum E> class_e;
22444
22445 1: DW_TAG_class_type (Class)
22446 2: DW_TAG_enumeration_type (E)
22447 3: DW_TAG_enumerator (enum1:0)
22448 3: DW_TAG_enumerator (enum2:1)
22449 ...
22450 2: DW_TAG_template_type_param
22451 DW_AT_type DW_FORM_ref_udata (E)
22452
22453 Besides being broken debug info, it can put GDB into an
22454 infinite loop. Consider:
22455
22456 When we're building the full name for Class<E>, we'll start
22457 at Class, and go look over its template type parameters,
22458 finding E. We'll then try to build the full name of E, and
22459 reach here. We're now trying to build the full name of E,
22460 and look over the parent DIE for containing scope. In the
22461 broken case, if we followed the parent DIE of E, we'd again
22462 find Class, and once again go look at its template type
22463 arguments, etc., etc. Simply don't consider such parent die
22464 as source-level parent of this die (it can't be, the language
22465 doesn't allow it), and break the loop here. */
22466 name = dwarf2_name (die, cu);
22467 parent_name = dwarf2_name (parent, cu);
b98664d3 22468 complaint (_("template param type '%s' defined within parent '%s'"),
98bfdba5
PA
22469 name ? name : "<unknown>",
22470 parent_name ? parent_name : "<unknown>");
22471 return "";
22472 }
63d06c5c 22473 else
0114d602
DJ
22474 switch (parent->tag)
22475 {
63d06c5c 22476 case DW_TAG_namespace:
0114d602 22477 parent_type = read_type_die (parent, cu);
acebe513
UW
22478 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
22479 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
22480 Work around this problem here. */
22481 if (cu->language == language_cplus
e86ca25f 22482 && strcmp (TYPE_NAME (parent_type), "::") == 0)
acebe513 22483 return "";
0114d602 22484 /* We give a name to even anonymous namespaces. */
e86ca25f 22485 return TYPE_NAME (parent_type);
63d06c5c 22486 case DW_TAG_class_type:
680b30c7 22487 case DW_TAG_interface_type:
63d06c5c 22488 case DW_TAG_structure_type:
0114d602 22489 case DW_TAG_union_type:
f55ee35c 22490 case DW_TAG_module:
0114d602 22491 parent_type = read_type_die (parent, cu);
e86ca25f
TT
22492 if (TYPE_NAME (parent_type) != NULL)
22493 return TYPE_NAME (parent_type);
0114d602
DJ
22494 else
22495 /* An anonymous structure is only allowed non-static data
22496 members; no typedefs, no member functions, et cetera.
22497 So it does not need a prefix. */
22498 return "";
abc72ce4 22499 case DW_TAG_compile_unit:
95554aad 22500 case DW_TAG_partial_unit:
abc72ce4
DE
22501 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
22502 if (cu->language == language_cplus
8b70b953 22503 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
abc72ce4
DE
22504 && die->child != NULL
22505 && (die->tag == DW_TAG_class_type
22506 || die->tag == DW_TAG_structure_type
22507 || die->tag == DW_TAG_union_type))
22508 {
22509 char *name = guess_full_die_structure_name (die, cu);
22510 if (name != NULL)
22511 return name;
22512 }
22513 return "";
3d567982
TT
22514 case DW_TAG_enumeration_type:
22515 parent_type = read_type_die (parent, cu);
22516 if (TYPE_DECLARED_CLASS (parent_type))
22517 {
e86ca25f
TT
22518 if (TYPE_NAME (parent_type) != NULL)
22519 return TYPE_NAME (parent_type);
3d567982
TT
22520 return "";
22521 }
22522 /* Fall through. */
63d06c5c 22523 default:
8176b9b8 22524 return determine_prefix (parent, cu);
63d06c5c 22525 }
63d06c5c
DC
22526}
22527
3e43a32a
MS
22528/* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
22529 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
22530 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
22531 an obconcat, otherwise allocate storage for the result. The CU argument is
22532 used to determine the language and hence, the appropriate separator. */
987504bb 22533
f55ee35c 22534#define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
63d06c5c
DC
22535
22536static char *
f55ee35c
JK
22537typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
22538 int physname, struct dwarf2_cu *cu)
63d06c5c 22539{
f55ee35c 22540 const char *lead = "";
5c315b68 22541 const char *sep;
63d06c5c 22542
3e43a32a
MS
22543 if (suffix == NULL || suffix[0] == '\0'
22544 || prefix == NULL || prefix[0] == '\0')
987504bb 22545 sep = "";
45280282
IB
22546 else if (cu->language == language_d)
22547 {
22548 /* For D, the 'main' function could be defined in any module, but it
22549 should never be prefixed. */
22550 if (strcmp (suffix, "D main") == 0)
22551 {
22552 prefix = "";
22553 sep = "";
22554 }
22555 else
22556 sep = ".";
22557 }
f55ee35c
JK
22558 else if (cu->language == language_fortran && physname)
22559 {
22560 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
22561 DW_AT_MIPS_linkage_name is preferred and used instead. */
22562
22563 lead = "__";
22564 sep = "_MOD_";
22565 }
987504bb
JJ
22566 else
22567 sep = "::";
63d06c5c 22568
6dd47d34
DE
22569 if (prefix == NULL)
22570 prefix = "";
22571 if (suffix == NULL)
22572 suffix = "";
22573
987504bb
JJ
22574 if (obs == NULL)
22575 {
3e43a32a 22576 char *retval
224c3ddb
SM
22577 = ((char *)
22578 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
9a619af0 22579
f55ee35c
JK
22580 strcpy (retval, lead);
22581 strcat (retval, prefix);
6dd47d34
DE
22582 strcat (retval, sep);
22583 strcat (retval, suffix);
63d06c5c
DC
22584 return retval;
22585 }
987504bb
JJ
22586 else
22587 {
22588 /* We have an obstack. */
f55ee35c 22589 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
987504bb 22590 }
63d06c5c
DC
22591}
22592
c906108c
SS
22593/* Return sibling of die, NULL if no sibling. */
22594
f9aca02d 22595static struct die_info *
fba45db2 22596sibling_die (struct die_info *die)
c906108c 22597{
639d11d3 22598 return die->sibling;
c906108c
SS
22599}
22600
71c25dea
TT
22601/* Get name of a die, return NULL if not found. */
22602
15d034d0
TT
22603static const char *
22604dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
71c25dea
TT
22605 struct obstack *obstack)
22606{
22607 if (name && cu->language == language_cplus)
22608 {
2f408ecb 22609 std::string canon_name = cp_canonicalize_string (name);
71c25dea 22610
2f408ecb 22611 if (!canon_name.empty ())
71c25dea 22612 {
2f408ecb
PA
22613 if (canon_name != name)
22614 name = (const char *) obstack_copy0 (obstack,
22615 canon_name.c_str (),
22616 canon_name.length ());
71c25dea
TT
22617 }
22618 }
22619
22620 return name;
c906108c
SS
22621}
22622
96553a0c
DE
22623/* Get name of a die, return NULL if not found.
22624 Anonymous namespaces are converted to their magic string. */
9219021c 22625
15d034d0 22626static const char *
e142c38c 22627dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
22628{
22629 struct attribute *attr;
518817b3 22630 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
9219021c 22631
e142c38c 22632 attr = dwarf2_attr (die, DW_AT_name, cu);
53832f31 22633 if ((!attr || !DW_STRING (attr))
96553a0c 22634 && die->tag != DW_TAG_namespace
53832f31
TT
22635 && die->tag != DW_TAG_class_type
22636 && die->tag != DW_TAG_interface_type
22637 && die->tag != DW_TAG_structure_type
22638 && die->tag != DW_TAG_union_type)
71c25dea
TT
22639 return NULL;
22640
22641 switch (die->tag)
22642 {
22643 case DW_TAG_compile_unit:
95554aad 22644 case DW_TAG_partial_unit:
71c25dea
TT
22645 /* Compilation units have a DW_AT_name that is a filename, not
22646 a source language identifier. */
22647 case DW_TAG_enumeration_type:
22648 case DW_TAG_enumerator:
22649 /* These tags always have simple identifiers already; no need
22650 to canonicalize them. */
22651 return DW_STRING (attr);
907af001 22652
96553a0c
DE
22653 case DW_TAG_namespace:
22654 if (attr != NULL && DW_STRING (attr) != NULL)
22655 return DW_STRING (attr);
22656 return CP_ANONYMOUS_NAMESPACE_STR;
22657
907af001
UW
22658 case DW_TAG_class_type:
22659 case DW_TAG_interface_type:
22660 case DW_TAG_structure_type:
22661 case DW_TAG_union_type:
22662 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
22663 structures or unions. These were of the form "._%d" in GCC 4.1,
22664 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
22665 and GCC 4.4. We work around this problem by ignoring these. */
53832f31 22666 if (attr && DW_STRING (attr)
61012eef
GB
22667 && (startswith (DW_STRING (attr), "._")
22668 || startswith (DW_STRING (attr), "<anonymous")))
907af001 22669 return NULL;
53832f31
TT
22670
22671 /* GCC might emit a nameless typedef that has a linkage name. See
22672 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22673 if (!attr || DW_STRING (attr) == NULL)
22674 {
df5c6c50 22675 char *demangled = NULL;
53832f31 22676
73b9be8b 22677 attr = dw2_linkage_name_attr (die, cu);
53832f31
TT
22678 if (attr == NULL || DW_STRING (attr) == NULL)
22679 return NULL;
22680
df5c6c50
JK
22681 /* Avoid demangling DW_STRING (attr) the second time on a second
22682 call for the same DIE. */
22683 if (!DW_STRING_IS_CANONICAL (attr))
8de20a37 22684 demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
53832f31
TT
22685
22686 if (demangled)
22687 {
e6a959d6 22688 const char *base;
96408a79 22689
53832f31 22690 /* FIXME: we already did this for the partial symbol... */
34a68019 22691 DW_STRING (attr)
224c3ddb 22692 = ((const char *)
e3b94546 22693 obstack_copy0 (&objfile->per_bfd->storage_obstack,
224c3ddb 22694 demangled, strlen (demangled)));
53832f31
TT
22695 DW_STRING_IS_CANONICAL (attr) = 1;
22696 xfree (demangled);
96408a79
SA
22697
22698 /* Strip any leading namespaces/classes, keep only the base name.
22699 DW_AT_name for named DIEs does not contain the prefixes. */
22700 base = strrchr (DW_STRING (attr), ':');
22701 if (base && base > DW_STRING (attr) && base[-1] == ':')
22702 return &base[1];
22703 else
22704 return DW_STRING (attr);
53832f31
TT
22705 }
22706 }
907af001
UW
22707 break;
22708
71c25dea 22709 default:
907af001
UW
22710 break;
22711 }
22712
22713 if (!DW_STRING_IS_CANONICAL (attr))
22714 {
22715 DW_STRING (attr)
22716 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
e3b94546 22717 &objfile->per_bfd->storage_obstack);
907af001 22718 DW_STRING_IS_CANONICAL (attr) = 1;
71c25dea 22719 }
907af001 22720 return DW_STRING (attr);
9219021c
DC
22721}
22722
22723/* Return the die that this die in an extension of, or NULL if there
f2f0e013
DJ
22724 is none. *EXT_CU is the CU containing DIE on input, and the CU
22725 containing the return value on output. */
9219021c
DC
22726
22727static struct die_info *
f2f0e013 22728dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9219021c
DC
22729{
22730 struct attribute *attr;
9219021c 22731
f2f0e013 22732 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9219021c
DC
22733 if (attr == NULL)
22734 return NULL;
22735
f2f0e013 22736 return follow_die_ref (die, attr, ext_cu);
9219021c
DC
22737}
22738
c906108c
SS
22739/* Convert a DIE tag into its string name. */
22740
f39c6ffd 22741static const char *
aa1ee363 22742dwarf_tag_name (unsigned tag)
c906108c 22743{
f39c6ffd
TT
22744 const char *name = get_DW_TAG_name (tag);
22745
22746 if (name == NULL)
22747 return "DW_TAG_<unknown>";
22748
22749 return name;
c906108c
SS
22750}
22751
22752/* Convert a DWARF attribute code into its string name. */
22753
f39c6ffd 22754static const char *
aa1ee363 22755dwarf_attr_name (unsigned attr)
c906108c 22756{
f39c6ffd
TT
22757 const char *name;
22758
c764a876 22759#ifdef MIPS /* collides with DW_AT_HP_block_index */
f39c6ffd
TT
22760 if (attr == DW_AT_MIPS_fde)
22761 return "DW_AT_MIPS_fde";
22762#else
22763 if (attr == DW_AT_HP_block_index)
22764 return "DW_AT_HP_block_index";
c764a876 22765#endif
f39c6ffd
TT
22766
22767 name = get_DW_AT_name (attr);
22768
22769 if (name == NULL)
22770 return "DW_AT_<unknown>";
22771
22772 return name;
c906108c
SS
22773}
22774
22775/* Convert a DWARF value form code into its string name. */
22776
f39c6ffd 22777static const char *
aa1ee363 22778dwarf_form_name (unsigned form)
c906108c 22779{
f39c6ffd
TT
22780 const char *name = get_DW_FORM_name (form);
22781
22782 if (name == NULL)
22783 return "DW_FORM_<unknown>";
22784
22785 return name;
c906108c
SS
22786}
22787
a121b7c1 22788static const char *
fba45db2 22789dwarf_bool_name (unsigned mybool)
c906108c
SS
22790{
22791 if (mybool)
22792 return "TRUE";
22793 else
22794 return "FALSE";
22795}
22796
22797/* Convert a DWARF type code into its string name. */
22798
f39c6ffd 22799static const char *
aa1ee363 22800dwarf_type_encoding_name (unsigned enc)
c906108c 22801{
f39c6ffd 22802 const char *name = get_DW_ATE_name (enc);
c906108c 22803
f39c6ffd
TT
22804 if (name == NULL)
22805 return "DW_ATE_<unknown>";
c906108c 22806
f39c6ffd 22807 return name;
c906108c 22808}
c906108c 22809
f9aca02d 22810static void
d97bc12b 22811dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
c906108c
SS
22812{
22813 unsigned int i;
22814
d97bc12b 22815 print_spaces (indent, f);
9d8780f0 22816 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset %s)\n",
9c541725 22817 dwarf_tag_name (die->tag), die->abbrev,
9d8780f0 22818 sect_offset_str (die->sect_off));
d97bc12b
DE
22819
22820 if (die->parent != NULL)
22821 {
22822 print_spaces (indent, f);
9d8780f0
SM
22823 fprintf_unfiltered (f, " parent at offset: %s\n",
22824 sect_offset_str (die->parent->sect_off));
d97bc12b
DE
22825 }
22826
22827 print_spaces (indent, f);
22828 fprintf_unfiltered (f, " has children: %s\n",
639d11d3 22829 dwarf_bool_name (die->child != NULL));
c906108c 22830
d97bc12b
DE
22831 print_spaces (indent, f);
22832 fprintf_unfiltered (f, " attributes:\n");
22833
c906108c
SS
22834 for (i = 0; i < die->num_attrs; ++i)
22835 {
d97bc12b
DE
22836 print_spaces (indent, f);
22837 fprintf_unfiltered (f, " %s (%s) ",
c906108c
SS
22838 dwarf_attr_name (die->attrs[i].name),
22839 dwarf_form_name (die->attrs[i].form));
d97bc12b 22840
c906108c
SS
22841 switch (die->attrs[i].form)
22842 {
c906108c 22843 case DW_FORM_addr:
336d760d 22844 case DW_FORM_addrx:
3019eac3 22845 case DW_FORM_GNU_addr_index:
d97bc12b 22846 fprintf_unfiltered (f, "address: ");
5af949e3 22847 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
c906108c
SS
22848 break;
22849 case DW_FORM_block2:
22850 case DW_FORM_block4:
22851 case DW_FORM_block:
22852 case DW_FORM_block1:
56eb65bd
SP
22853 fprintf_unfiltered (f, "block: size %s",
22854 pulongest (DW_BLOCK (&die->attrs[i])->size));
c906108c 22855 break;
2dc7f7b3 22856 case DW_FORM_exprloc:
56eb65bd
SP
22857 fprintf_unfiltered (f, "expression: size %s",
22858 pulongest (DW_BLOCK (&die->attrs[i])->size));
2dc7f7b3 22859 break;
0224619f
JK
22860 case DW_FORM_data16:
22861 fprintf_unfiltered (f, "constant of 16 bytes");
22862 break;
4568ecf9
DE
22863 case DW_FORM_ref_addr:
22864 fprintf_unfiltered (f, "ref address: ");
22865 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22866 break;
36586728
TT
22867 case DW_FORM_GNU_ref_alt:
22868 fprintf_unfiltered (f, "alt ref address: ");
22869 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22870 break;
10b3939b
DJ
22871 case DW_FORM_ref1:
22872 case DW_FORM_ref2:
22873 case DW_FORM_ref4:
4568ecf9
DE
22874 case DW_FORM_ref8:
22875 case DW_FORM_ref_udata:
d97bc12b 22876 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
4568ecf9 22877 (long) (DW_UNSND (&die->attrs[i])));
10b3939b 22878 break;
c906108c
SS
22879 case DW_FORM_data1:
22880 case DW_FORM_data2:
22881 case DW_FORM_data4:
ce5d95e1 22882 case DW_FORM_data8:
c906108c
SS
22883 case DW_FORM_udata:
22884 case DW_FORM_sdata:
43bbcdc2
PH
22885 fprintf_unfiltered (f, "constant: %s",
22886 pulongest (DW_UNSND (&die->attrs[i])));
c906108c 22887 break;
2dc7f7b3
TT
22888 case DW_FORM_sec_offset:
22889 fprintf_unfiltered (f, "section offset: %s",
22890 pulongest (DW_UNSND (&die->attrs[i])));
22891 break;
55f1336d 22892 case DW_FORM_ref_sig8:
ac9ec31b
DE
22893 fprintf_unfiltered (f, "signature: %s",
22894 hex_string (DW_SIGNATURE (&die->attrs[i])));
348e048f 22895 break;
c906108c 22896 case DW_FORM_string:
4bdf3d34 22897 case DW_FORM_strp:
43988095 22898 case DW_FORM_line_strp:
cf532bd1 22899 case DW_FORM_strx:
3019eac3 22900 case DW_FORM_GNU_str_index:
36586728 22901 case DW_FORM_GNU_strp_alt:
8285870a 22902 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
c906108c 22903 DW_STRING (&die->attrs[i])
8285870a
JK
22904 ? DW_STRING (&die->attrs[i]) : "",
22905 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
c906108c
SS
22906 break;
22907 case DW_FORM_flag:
22908 if (DW_UNSND (&die->attrs[i]))
d97bc12b 22909 fprintf_unfiltered (f, "flag: TRUE");
c906108c 22910 else
d97bc12b 22911 fprintf_unfiltered (f, "flag: FALSE");
c906108c 22912 break;
2dc7f7b3
TT
22913 case DW_FORM_flag_present:
22914 fprintf_unfiltered (f, "flag: TRUE");
22915 break;
a8329558 22916 case DW_FORM_indirect:
0963b4bd
MS
22917 /* The reader will have reduced the indirect form to
22918 the "base form" so this form should not occur. */
3e43a32a
MS
22919 fprintf_unfiltered (f,
22920 "unexpected attribute form: DW_FORM_indirect");
a8329558 22921 break;
663c44ac
JK
22922 case DW_FORM_implicit_const:
22923 fprintf_unfiltered (f, "constant: %s",
22924 plongest (DW_SND (&die->attrs[i])));
22925 break;
c906108c 22926 default:
d97bc12b 22927 fprintf_unfiltered (f, "unsupported attribute form: %d.",
c5aa993b 22928 die->attrs[i].form);
d97bc12b 22929 break;
c906108c 22930 }
d97bc12b 22931 fprintf_unfiltered (f, "\n");
c906108c
SS
22932 }
22933}
22934
f9aca02d 22935static void
d97bc12b 22936dump_die_for_error (struct die_info *die)
c906108c 22937{
d97bc12b
DE
22938 dump_die_shallow (gdb_stderr, 0, die);
22939}
22940
22941static void
22942dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
22943{
22944 int indent = level * 4;
22945
22946 gdb_assert (die != NULL);
22947
22948 if (level >= max_level)
22949 return;
22950
22951 dump_die_shallow (f, indent, die);
22952
22953 if (die->child != NULL)
c906108c 22954 {
d97bc12b
DE
22955 print_spaces (indent, f);
22956 fprintf_unfiltered (f, " Children:");
22957 if (level + 1 < max_level)
22958 {
22959 fprintf_unfiltered (f, "\n");
22960 dump_die_1 (f, level + 1, max_level, die->child);
22961 }
22962 else
22963 {
3e43a32a
MS
22964 fprintf_unfiltered (f,
22965 " [not printed, max nesting level reached]\n");
d97bc12b
DE
22966 }
22967 }
22968
22969 if (die->sibling != NULL && level > 0)
22970 {
22971 dump_die_1 (f, level, max_level, die->sibling);
c906108c
SS
22972 }
22973}
22974
d97bc12b
DE
22975/* This is called from the pdie macro in gdbinit.in.
22976 It's not static so gcc will keep a copy callable from gdb. */
22977
22978void
22979dump_die (struct die_info *die, int max_level)
22980{
22981 dump_die_1 (gdb_stdlog, 0, max_level, die);
22982}
22983
f9aca02d 22984static void
51545339 22985store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22986{
51545339 22987 void **slot;
c906108c 22988
9c541725
PA
22989 slot = htab_find_slot_with_hash (cu->die_hash, die,
22990 to_underlying (die->sect_off),
b64f50a1 22991 INSERT);
51545339
DJ
22992
22993 *slot = die;
c906108c
SS
22994}
22995
b64f50a1
JK
22996/* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
22997 required kind. */
22998
22999static sect_offset
ff39bb5e 23000dwarf2_get_ref_die_offset (const struct attribute *attr)
93311388 23001{
7771576e 23002 if (attr_form_is_ref (attr))
9c541725 23003 return (sect_offset) DW_UNSND (attr);
93311388 23004
b98664d3 23005 complaint (_("unsupported die ref attribute form: '%s'"),
93311388 23006 dwarf_form_name (attr->form));
9c541725 23007 return {};
c906108c
SS
23008}
23009
43bbcdc2
PH
23010/* Return the constant value held by ATTR. Return DEFAULT_VALUE if
23011 * the value held by the attribute is not constant. */
a02abb62 23012
43bbcdc2 23013static LONGEST
ff39bb5e 23014dwarf2_get_attr_constant_value (const struct attribute *attr, int default_value)
a02abb62 23015{
663c44ac 23016 if (attr->form == DW_FORM_sdata || attr->form == DW_FORM_implicit_const)
a02abb62
JB
23017 return DW_SND (attr);
23018 else if (attr->form == DW_FORM_udata
23019 || attr->form == DW_FORM_data1
23020 || attr->form == DW_FORM_data2
23021 || attr->form == DW_FORM_data4
23022 || attr->form == DW_FORM_data8)
23023 return DW_UNSND (attr);
23024 else
23025 {
0224619f 23026 /* For DW_FORM_data16 see attr_form_is_constant. */
b98664d3 23027 complaint (_("Attribute value is not a constant (%s)"),
a02abb62
JB
23028 dwarf_form_name (attr->form));
23029 return default_value;
23030 }
23031}
23032
348e048f
DE
23033/* Follow reference or signature attribute ATTR of SRC_DIE.
23034 On entry *REF_CU is the CU of SRC_DIE.
23035 On exit *REF_CU is the CU of the result. */
23036
23037static struct die_info *
ff39bb5e 23038follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
348e048f
DE
23039 struct dwarf2_cu **ref_cu)
23040{
23041 struct die_info *die;
23042
7771576e 23043 if (attr_form_is_ref (attr))
348e048f 23044 die = follow_die_ref (src_die, attr, ref_cu);
55f1336d 23045 else if (attr->form == DW_FORM_ref_sig8)
348e048f
DE
23046 die = follow_die_sig (src_die, attr, ref_cu);
23047 else
23048 {
23049 dump_die_for_error (src_die);
23050 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
518817b3 23051 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
348e048f
DE
23052 }
23053
23054 return die;
03dd20cc
DJ
23055}
23056
5c631832 23057/* Follow reference OFFSET.
673bfd45
DE
23058 On entry *REF_CU is the CU of the source die referencing OFFSET.
23059 On exit *REF_CU is the CU of the result.
23060 Returns NULL if OFFSET is invalid. */
f504f079 23061
f9aca02d 23062static struct die_info *
9c541725 23063follow_die_offset (sect_offset sect_off, int offset_in_dwz,
36586728 23064 struct dwarf2_cu **ref_cu)
c906108c 23065{
10b3939b 23066 struct die_info temp_die;
f2f0e013 23067 struct dwarf2_cu *target_cu, *cu = *ref_cu;
518817b3
SM
23068 struct dwarf2_per_objfile *dwarf2_per_objfile
23069 = cu->per_cu->dwarf2_per_objfile;
10b3939b 23070
348e048f
DE
23071 gdb_assert (cu->per_cu != NULL);
23072
98bfdba5
PA
23073 target_cu = cu;
23074
3019eac3 23075 if (cu->per_cu->is_debug_types)
348e048f
DE
23076 {
23077 /* .debug_types CUs cannot reference anything outside their CU.
23078 If they need to, they have to reference a signatured type via
55f1336d 23079 DW_FORM_ref_sig8. */
9c541725 23080 if (!offset_in_cu_p (&cu->header, sect_off))
5c631832 23081 return NULL;
348e048f 23082 }
36586728 23083 else if (offset_in_dwz != cu->per_cu->is_dwz
9c541725 23084 || !offset_in_cu_p (&cu->header, sect_off))
10b3939b
DJ
23085 {
23086 struct dwarf2_per_cu_data *per_cu;
9a619af0 23087
9c541725 23088 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
ed2dc618 23089 dwarf2_per_objfile);
03dd20cc
DJ
23090
23091 /* If necessary, add it to the queue and load its DIEs. */
95554aad 23092 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
58f0c718 23093 load_full_comp_unit (per_cu, false, cu->language);
03dd20cc 23094
10b3939b
DJ
23095 target_cu = per_cu->cu;
23096 }
98bfdba5
PA
23097 else if (cu->dies == NULL)
23098 {
23099 /* We're loading full DIEs during partial symbol reading. */
23100 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
58f0c718 23101 load_full_comp_unit (cu->per_cu, false, language_minimal);
98bfdba5 23102 }
c906108c 23103
f2f0e013 23104 *ref_cu = target_cu;
9c541725 23105 temp_die.sect_off = sect_off;
c24bdb02
KS
23106
23107 if (target_cu != cu)
23108 target_cu->ancestor = cu;
23109
9a3c8263 23110 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
9c541725
PA
23111 &temp_die,
23112 to_underlying (sect_off));
5c631832 23113}
10b3939b 23114
5c631832
JK
23115/* Follow reference attribute ATTR of SRC_DIE.
23116 On entry *REF_CU is the CU of SRC_DIE.
23117 On exit *REF_CU is the CU of the result. */
23118
23119static struct die_info *
ff39bb5e 23120follow_die_ref (struct die_info *src_die, const struct attribute *attr,
5c631832
JK
23121 struct dwarf2_cu **ref_cu)
23122{
9c541725 23123 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
5c631832
JK
23124 struct dwarf2_cu *cu = *ref_cu;
23125 struct die_info *die;
23126
9c541725 23127 die = follow_die_offset (sect_off,
36586728
TT
23128 (attr->form == DW_FORM_GNU_ref_alt
23129 || cu->per_cu->is_dwz),
23130 ref_cu);
5c631832 23131 if (!die)
9d8780f0
SM
23132 error (_("Dwarf Error: Cannot find DIE at %s referenced from DIE "
23133 "at %s [in module %s]"),
23134 sect_offset_str (sect_off), sect_offset_str (src_die->sect_off),
518817b3 23135 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
348e048f 23136
5c631832
JK
23137 return die;
23138}
23139
9c541725 23140/* Return DWARF block referenced by DW_AT_location of DIE at SECT_OFF at PER_CU.
d83e736b 23141 Returned value is intended for DW_OP_call*. Returned
e3b94546
SM
23142 dwarf2_locexpr_baton->data has lifetime of
23143 PER_CU->DWARF2_PER_OBJFILE->OBJFILE. */
5c631832
JK
23144
23145struct dwarf2_locexpr_baton
9c541725 23146dwarf2_fetch_die_loc_sect_off (sect_offset sect_off,
8b9737bf
TT
23147 struct dwarf2_per_cu_data *per_cu,
23148 CORE_ADDR (*get_frame_pc) (void *baton),
e4a62c65 23149 void *baton, bool resolve_abstract_p)
5c631832 23150{
918dd910 23151 struct dwarf2_cu *cu;
5c631832
JK
23152 struct die_info *die;
23153 struct attribute *attr;
23154 struct dwarf2_locexpr_baton retval;
12359b5e
SM
23155 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
23156 struct objfile *objfile = dwarf2_per_objfile->objfile;
8cf6f0b1 23157
918dd910 23158 if (per_cu->cu == NULL)
58f0c718 23159 load_cu (per_cu, false);
918dd910 23160 cu = per_cu->cu;
cc12ce38
DE
23161 if (cu == NULL)
23162 {
23163 /* We shouldn't get here for a dummy CU, but don't crash on the user.
23164 Instead just throw an error, not much else we can do. */
9d8780f0
SM
23165 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
23166 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 23167 }
918dd910 23168
9c541725 23169 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
5c631832 23170 if (!die)
9d8780f0
SM
23171 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
23172 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
23173
23174 attr = dwarf2_attr (die, DW_AT_location, cu);
e4a62c65
TV
23175 if (!attr && resolve_abstract_p
23176 && (dwarf2_per_objfile->abstract_to_concrete.find (die)
23177 != dwarf2_per_objfile->abstract_to_concrete.end ()))
23178 {
23179 CORE_ADDR pc = (*get_frame_pc) (baton);
23180
23181 for (const auto &cand : dwarf2_per_objfile->abstract_to_concrete[die])
23182 {
23183 if (!cand->parent
23184 || cand->parent->tag != DW_TAG_subprogram)
23185 continue;
23186
23187 CORE_ADDR pc_low, pc_high;
23188 get_scope_pc_bounds (cand->parent, &pc_low, &pc_high, cu);
23189 if (pc_low == ((CORE_ADDR) -1)
23190 || !(pc_low <= pc && pc < pc_high))
23191 continue;
23192
23193 die = cand;
23194 attr = dwarf2_attr (die, DW_AT_location, cu);
23195 break;
23196 }
23197 }
23198
5c631832
JK
23199 if (!attr)
23200 {
e103e986
JK
23201 /* DWARF: "If there is no such attribute, then there is no effect.".
23202 DATA is ignored if SIZE is 0. */
5c631832 23203
e103e986 23204 retval.data = NULL;
5c631832
JK
23205 retval.size = 0;
23206 }
8cf6f0b1
TT
23207 else if (attr_form_is_section_offset (attr))
23208 {
23209 struct dwarf2_loclist_baton loclist_baton;
23210 CORE_ADDR pc = (*get_frame_pc) (baton);
23211 size_t size;
23212
23213 fill_in_loclist_baton (cu, &loclist_baton, attr);
23214
23215 retval.data = dwarf2_find_location_expression (&loclist_baton,
23216 &size, pc);
23217 retval.size = size;
23218 }
5c631832
JK
23219 else
23220 {
23221 if (!attr_form_is_block (attr))
9d8780f0 23222 error (_("Dwarf Error: DIE at %s referenced in module %s "
5c631832 23223 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
9d8780f0 23224 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
23225
23226 retval.data = DW_BLOCK (attr)->data;
23227 retval.size = DW_BLOCK (attr)->size;
23228 }
23229 retval.per_cu = cu->per_cu;
918dd910 23230
ed2dc618 23231 age_cached_comp_units (dwarf2_per_objfile);
918dd910 23232
5c631832 23233 return retval;
348e048f
DE
23234}
23235
8b9737bf
TT
23236/* Like dwarf2_fetch_die_loc_sect_off, but take a CU
23237 offset. */
23238
23239struct dwarf2_locexpr_baton
23240dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
23241 struct dwarf2_per_cu_data *per_cu,
23242 CORE_ADDR (*get_frame_pc) (void *baton),
23243 void *baton)
23244{
9c541725 23245 sect_offset sect_off = per_cu->sect_off + to_underlying (offset_in_cu);
8b9737bf 23246
9c541725 23247 return dwarf2_fetch_die_loc_sect_off (sect_off, per_cu, get_frame_pc, baton);
8b9737bf
TT
23248}
23249
b6807d98
TT
23250/* Write a constant of a given type as target-ordered bytes into
23251 OBSTACK. */
23252
23253static const gdb_byte *
23254write_constant_as_bytes (struct obstack *obstack,
23255 enum bfd_endian byte_order,
23256 struct type *type,
23257 ULONGEST value,
23258 LONGEST *len)
23259{
23260 gdb_byte *result;
23261
23262 *len = TYPE_LENGTH (type);
224c3ddb 23263 result = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
23264 store_unsigned_integer (result, *len, byte_order, value);
23265
23266 return result;
23267}
23268
23269/* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
23270 pointer to the constant bytes and set LEN to the length of the
23271 data. If memory is needed, allocate it on OBSTACK. If the DIE
23272 does not have a DW_AT_const_value, return NULL. */
23273
23274const gdb_byte *
9c541725 23275dwarf2_fetch_constant_bytes (sect_offset sect_off,
b6807d98
TT
23276 struct dwarf2_per_cu_data *per_cu,
23277 struct obstack *obstack,
23278 LONGEST *len)
23279{
23280 struct dwarf2_cu *cu;
23281 struct die_info *die;
23282 struct attribute *attr;
23283 const gdb_byte *result = NULL;
23284 struct type *type;
23285 LONGEST value;
23286 enum bfd_endian byte_order;
e3b94546 23287 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
b6807d98 23288
b6807d98 23289 if (per_cu->cu == NULL)
58f0c718 23290 load_cu (per_cu, false);
b6807d98 23291 cu = per_cu->cu;
cc12ce38
DE
23292 if (cu == NULL)
23293 {
23294 /* We shouldn't get here for a dummy CU, but don't crash on the user.
23295 Instead just throw an error, not much else we can do. */
9d8780f0
SM
23296 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
23297 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 23298 }
b6807d98 23299
9c541725 23300 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
b6807d98 23301 if (!die)
9d8780f0
SM
23302 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
23303 sect_offset_str (sect_off), objfile_name (objfile));
b6807d98
TT
23304
23305 attr = dwarf2_attr (die, DW_AT_const_value, cu);
23306 if (attr == NULL)
23307 return NULL;
23308
e3b94546 23309 byte_order = (bfd_big_endian (objfile->obfd)
b6807d98
TT
23310 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
23311
23312 switch (attr->form)
23313 {
23314 case DW_FORM_addr:
336d760d 23315 case DW_FORM_addrx:
b6807d98
TT
23316 case DW_FORM_GNU_addr_index:
23317 {
23318 gdb_byte *tem;
23319
23320 *len = cu->header.addr_size;
224c3ddb 23321 tem = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
23322 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
23323 result = tem;
23324 }
23325 break;
23326 case DW_FORM_string:
23327 case DW_FORM_strp:
cf532bd1 23328 case DW_FORM_strx:
b6807d98
TT
23329 case DW_FORM_GNU_str_index:
23330 case DW_FORM_GNU_strp_alt:
23331 /* DW_STRING is already allocated on the objfile obstack, point
23332 directly to it. */
23333 result = (const gdb_byte *) DW_STRING (attr);
23334 *len = strlen (DW_STRING (attr));
23335 break;
23336 case DW_FORM_block1:
23337 case DW_FORM_block2:
23338 case DW_FORM_block4:
23339 case DW_FORM_block:
23340 case DW_FORM_exprloc:
0224619f 23341 case DW_FORM_data16:
b6807d98
TT
23342 result = DW_BLOCK (attr)->data;
23343 *len = DW_BLOCK (attr)->size;
23344 break;
23345
23346 /* The DW_AT_const_value attributes are supposed to carry the
23347 symbol's value "represented as it would be on the target
23348 architecture." By the time we get here, it's already been
23349 converted to host endianness, so we just need to sign- or
23350 zero-extend it as appropriate. */
23351 case DW_FORM_data1:
23352 type = die_type (die, cu);
23353 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
23354 if (result == NULL)
23355 result = write_constant_as_bytes (obstack, byte_order,
23356 type, value, len);
23357 break;
23358 case DW_FORM_data2:
23359 type = die_type (die, cu);
23360 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
23361 if (result == NULL)
23362 result = write_constant_as_bytes (obstack, byte_order,
23363 type, value, len);
23364 break;
23365 case DW_FORM_data4:
23366 type = die_type (die, cu);
23367 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
23368 if (result == NULL)
23369 result = write_constant_as_bytes (obstack, byte_order,
23370 type, value, len);
23371 break;
23372 case DW_FORM_data8:
23373 type = die_type (die, cu);
23374 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
23375 if (result == NULL)
23376 result = write_constant_as_bytes (obstack, byte_order,
23377 type, value, len);
23378 break;
23379
23380 case DW_FORM_sdata:
663c44ac 23381 case DW_FORM_implicit_const:
b6807d98
TT
23382 type = die_type (die, cu);
23383 result = write_constant_as_bytes (obstack, byte_order,
23384 type, DW_SND (attr), len);
23385 break;
23386
23387 case DW_FORM_udata:
23388 type = die_type (die, cu);
23389 result = write_constant_as_bytes (obstack, byte_order,
23390 type, DW_UNSND (attr), len);
23391 break;
23392
23393 default:
b98664d3 23394 complaint (_("unsupported const value attribute form: '%s'"),
b6807d98
TT
23395 dwarf_form_name (attr->form));
23396 break;
23397 }
23398
23399 return result;
23400}
23401
7942e96e
AA
23402/* Return the type of the die at OFFSET in PER_CU. Return NULL if no
23403 valid type for this die is found. */
23404
23405struct type *
9c541725 23406dwarf2_fetch_die_type_sect_off (sect_offset sect_off,
7942e96e
AA
23407 struct dwarf2_per_cu_data *per_cu)
23408{
23409 struct dwarf2_cu *cu;
23410 struct die_info *die;
23411
7942e96e 23412 if (per_cu->cu == NULL)
58f0c718 23413 load_cu (per_cu, false);
7942e96e
AA
23414 cu = per_cu->cu;
23415 if (!cu)
23416 return NULL;
23417
9c541725 23418 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
7942e96e
AA
23419 if (!die)
23420 return NULL;
23421
23422 return die_type (die, cu);
23423}
23424
8a9b8146
TT
23425/* Return the type of the DIE at DIE_OFFSET in the CU named by
23426 PER_CU. */
23427
23428struct type *
b64f50a1 23429dwarf2_get_die_type (cu_offset die_offset,
8a9b8146
TT
23430 struct dwarf2_per_cu_data *per_cu)
23431{
9c541725 23432 sect_offset die_offset_sect = per_cu->sect_off + to_underlying (die_offset);
b64f50a1 23433 return get_die_type_at_offset (die_offset_sect, per_cu);
8a9b8146
TT
23434}
23435
ac9ec31b 23436/* Follow type unit SIG_TYPE referenced by SRC_DIE.
348e048f 23437 On entry *REF_CU is the CU of SRC_DIE.
ac9ec31b
DE
23438 On exit *REF_CU is the CU of the result.
23439 Returns NULL if the referenced DIE isn't found. */
348e048f
DE
23440
23441static struct die_info *
ac9ec31b
DE
23442follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
23443 struct dwarf2_cu **ref_cu)
348e048f 23444{
348e048f 23445 struct die_info temp_die;
c24bdb02 23446 struct dwarf2_cu *sig_cu, *cu = *ref_cu;
348e048f
DE
23447 struct die_info *die;
23448
ac9ec31b
DE
23449 /* While it might be nice to assert sig_type->type == NULL here,
23450 we can get here for DW_AT_imported_declaration where we need
23451 the DIE not the type. */
348e048f
DE
23452
23453 /* If necessary, add it to the queue and load its DIEs. */
23454
95554aad 23455 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
a0f42c21 23456 read_signatured_type (sig_type);
348e048f 23457
348e048f 23458 sig_cu = sig_type->per_cu.cu;
69d751e3 23459 gdb_assert (sig_cu != NULL);
9c541725
PA
23460 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
23461 temp_die.sect_off = sig_type->type_offset_in_section;
9a3c8263 23462 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
9c541725 23463 to_underlying (temp_die.sect_off));
348e048f
DE
23464 if (die)
23465 {
ed2dc618 23466 struct dwarf2_per_objfile *dwarf2_per_objfile
518817b3 23467 = (*ref_cu)->per_cu->dwarf2_per_objfile;
ed2dc618 23468
796a7ff8
DE
23469 /* For .gdb_index version 7 keep track of included TUs.
23470 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
23471 if (dwarf2_per_objfile->index_table != NULL
23472 && dwarf2_per_objfile->index_table->version <= 7)
23473 {
23474 VEC_safe_push (dwarf2_per_cu_ptr,
23475 (*ref_cu)->per_cu->imported_symtabs,
23476 sig_cu->per_cu);
23477 }
23478
348e048f 23479 *ref_cu = sig_cu;
c24bdb02
KS
23480 if (sig_cu != cu)
23481 sig_cu->ancestor = cu;
23482
348e048f
DE
23483 return die;
23484 }
23485
ac9ec31b
DE
23486 return NULL;
23487}
23488
23489/* Follow signatured type referenced by ATTR in SRC_DIE.
23490 On entry *REF_CU is the CU of SRC_DIE.
23491 On exit *REF_CU is the CU of the result.
23492 The result is the DIE of the type.
23493 If the referenced type cannot be found an error is thrown. */
23494
23495static struct die_info *
ff39bb5e 23496follow_die_sig (struct die_info *src_die, const struct attribute *attr,
ac9ec31b
DE
23497 struct dwarf2_cu **ref_cu)
23498{
23499 ULONGEST signature = DW_SIGNATURE (attr);
23500 struct signatured_type *sig_type;
23501 struct die_info *die;
23502
23503 gdb_assert (attr->form == DW_FORM_ref_sig8);
23504
a2ce51a0 23505 sig_type = lookup_signatured_type (*ref_cu, signature);
ac9ec31b
DE
23506 /* sig_type will be NULL if the signatured type is missing from
23507 the debug info. */
23508 if (sig_type == NULL)
23509 {
23510 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
23511 " from DIE at %s [in module %s]"),
23512 hex_string (signature), sect_offset_str (src_die->sect_off),
518817b3 23513 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
ac9ec31b
DE
23514 }
23515
23516 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
23517 if (die == NULL)
23518 {
23519 dump_die_for_error (src_die);
23520 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
23521 " from DIE at %s [in module %s]"),
23522 hex_string (signature), sect_offset_str (src_die->sect_off),
518817b3 23523 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
ac9ec31b
DE
23524 }
23525
23526 return die;
23527}
23528
23529/* Get the type specified by SIGNATURE referenced in DIE/CU,
23530 reading in and processing the type unit if necessary. */
23531
23532static struct type *
23533get_signatured_type (struct die_info *die, ULONGEST signature,
23534 struct dwarf2_cu *cu)
23535{
518817b3
SM
23536 struct dwarf2_per_objfile *dwarf2_per_objfile
23537 = cu->per_cu->dwarf2_per_objfile;
ac9ec31b
DE
23538 struct signatured_type *sig_type;
23539 struct dwarf2_cu *type_cu;
23540 struct die_info *type_die;
23541 struct type *type;
23542
a2ce51a0 23543 sig_type = lookup_signatured_type (cu, signature);
ac9ec31b
DE
23544 /* sig_type will be NULL if the signatured type is missing from
23545 the debug info. */
23546 if (sig_type == NULL)
23547 {
b98664d3 23548 complaint (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
23549 " from DIE at %s [in module %s]"),
23550 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23551 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23552 return build_error_marker_type (cu, die);
23553 }
23554
23555 /* If we already know the type we're done. */
23556 if (sig_type->type != NULL)
23557 return sig_type->type;
23558
23559 type_cu = cu;
23560 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
23561 if (type_die != NULL)
23562 {
23563 /* N.B. We need to call get_die_type to ensure only one type for this DIE
23564 is created. This is important, for example, because for c++ classes
23565 we need TYPE_NAME set which is only done by new_symbol. Blech. */
23566 type = read_type_die (type_die, type_cu);
23567 if (type == NULL)
23568 {
b98664d3 23569 complaint (_("Dwarf Error: Cannot build signatured type %s"
9d8780f0
SM
23570 " referenced from DIE at %s [in module %s]"),
23571 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23572 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23573 type = build_error_marker_type (cu, die);
23574 }
23575 }
23576 else
23577 {
b98664d3 23578 complaint (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
23579 " from DIE at %s [in module %s]"),
23580 hex_string (signature), sect_offset_str (die->sect_off),
4262abfb 23581 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23582 type = build_error_marker_type (cu, die);
23583 }
23584 sig_type->type = type;
23585
23586 return type;
23587}
23588
23589/* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
23590 reading in and processing the type unit if necessary. */
23591
23592static struct type *
ff39bb5e 23593get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
b385a60d 23594 struct dwarf2_cu *cu) /* ARI: editCase function */
ac9ec31b
DE
23595{
23596 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
7771576e 23597 if (attr_form_is_ref (attr))
ac9ec31b
DE
23598 {
23599 struct dwarf2_cu *type_cu = cu;
23600 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
23601
23602 return read_type_die (type_die, type_cu);
23603 }
23604 else if (attr->form == DW_FORM_ref_sig8)
23605 {
23606 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
23607 }
23608 else
23609 {
518817b3
SM
23610 struct dwarf2_per_objfile *dwarf2_per_objfile
23611 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 23612
b98664d3 23613 complaint (_("Dwarf Error: DW_AT_signature has bad form %s in DIE"
9d8780f0
SM
23614 " at %s [in module %s]"),
23615 dwarf_form_name (attr->form), sect_offset_str (die->sect_off),
4262abfb 23616 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
23617 return build_error_marker_type (cu, die);
23618 }
348e048f
DE
23619}
23620
e5fe5e75 23621/* Load the DIEs associated with type unit PER_CU into memory. */
348e048f
DE
23622
23623static void
e5fe5e75 23624load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
348e048f 23625{
52dc124a 23626 struct signatured_type *sig_type;
348e048f 23627
f4dc4d17
DE
23628 /* Caller is responsible for ensuring type_unit_groups don't get here. */
23629 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
23630
6721b2ec
DE
23631 /* We have the per_cu, but we need the signatured_type.
23632 Fortunately this is an easy translation. */
23633 gdb_assert (per_cu->is_debug_types);
23634 sig_type = (struct signatured_type *) per_cu;
348e048f 23635
6721b2ec 23636 gdb_assert (per_cu->cu == NULL);
348e048f 23637
52dc124a 23638 read_signatured_type (sig_type);
348e048f 23639
6721b2ec 23640 gdb_assert (per_cu->cu != NULL);
348e048f
DE
23641}
23642
dee91e82
DE
23643/* die_reader_func for read_signatured_type.
23644 This is identical to load_full_comp_unit_reader,
23645 but is kept separate for now. */
348e048f
DE
23646
23647static void
dee91e82 23648read_signatured_type_reader (const struct die_reader_specs *reader,
d521ce57 23649 const gdb_byte *info_ptr,
dee91e82
DE
23650 struct die_info *comp_unit_die,
23651 int has_children,
23652 void *data)
348e048f 23653{
dee91e82 23654 struct dwarf2_cu *cu = reader->cu;
348e048f 23655
dee91e82
DE
23656 gdb_assert (cu->die_hash == NULL);
23657 cu->die_hash =
23658 htab_create_alloc_ex (cu->header.length / 12,
23659 die_hash,
23660 die_eq,
23661 NULL,
23662 &cu->comp_unit_obstack,
23663 hashtab_obstack_allocate,
23664 dummy_obstack_deallocate);
348e048f 23665
dee91e82
DE
23666 if (has_children)
23667 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
23668 &info_ptr, comp_unit_die);
23669 cu->dies = comp_unit_die;
23670 /* comp_unit_die is not stored in die_hash, no need. */
348e048f
DE
23671
23672 /* We try not to read any attributes in this function, because not
9cdd5dbd 23673 all CUs needed for references have been loaded yet, and symbol
348e048f 23674 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
23675 or we won't be able to build types correctly.
23676 Similarly, if we do not read the producer, we can not apply
23677 producer-specific interpretation. */
95554aad 23678 prepare_one_comp_unit (cu, cu->dies, language_minimal);
dee91e82 23679}
348e048f 23680
3019eac3
DE
23681/* Read in a signatured type and build its CU and DIEs.
23682 If the type is a stub for the real type in a DWO file,
23683 read in the real type from the DWO file as well. */
dee91e82
DE
23684
23685static void
23686read_signatured_type (struct signatured_type *sig_type)
23687{
23688 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
348e048f 23689
3019eac3 23690 gdb_assert (per_cu->is_debug_types);
dee91e82 23691 gdb_assert (per_cu->cu == NULL);
348e048f 23692
58f0c718 23693 init_cutu_and_read_dies (per_cu, NULL, 0, 1, false,
f4dc4d17 23694 read_signatured_type_reader, NULL);
7ee85ab1 23695 sig_type->per_cu.tu_read = 1;
c906108c
SS
23696}
23697
c906108c
SS
23698/* Decode simple location descriptions.
23699 Given a pointer to a dwarf block that defines a location, compute
23700 the location and return the value.
23701
4cecd739
DJ
23702 NOTE drow/2003-11-18: This function is called in two situations
23703 now: for the address of static or global variables (partial symbols
23704 only) and for offsets into structures which are expected to be
23705 (more or less) constant. The partial symbol case should go away,
23706 and only the constant case should remain. That will let this
23707 function complain more accurately. A few special modes are allowed
23708 without complaint for global variables (for instance, global
23709 register values and thread-local values).
c906108c
SS
23710
23711 A location description containing no operations indicates that the
4cecd739 23712 object is optimized out. The return value is 0 for that case.
6b992462
DJ
23713 FIXME drow/2003-11-16: No callers check for this case any more; soon all
23714 callers will only want a very basic result and this can become a
21ae7a4d
JK
23715 complaint.
23716
23717 Note that stack[0] is unused except as a default error return. */
c906108c
SS
23718
23719static CORE_ADDR
e7c27a73 23720decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
c906108c 23721{
518817b3 23722 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
56eb65bd
SP
23723 size_t i;
23724 size_t size = blk->size;
d521ce57 23725 const gdb_byte *data = blk->data;
21ae7a4d
JK
23726 CORE_ADDR stack[64];
23727 int stacki;
23728 unsigned int bytes_read, unsnd;
23729 gdb_byte op;
c906108c 23730
21ae7a4d
JK
23731 i = 0;
23732 stacki = 0;
23733 stack[stacki] = 0;
23734 stack[++stacki] = 0;
23735
23736 while (i < size)
23737 {
23738 op = data[i++];
23739 switch (op)
23740 {
23741 case DW_OP_lit0:
23742 case DW_OP_lit1:
23743 case DW_OP_lit2:
23744 case DW_OP_lit3:
23745 case DW_OP_lit4:
23746 case DW_OP_lit5:
23747 case DW_OP_lit6:
23748 case DW_OP_lit7:
23749 case DW_OP_lit8:
23750 case DW_OP_lit9:
23751 case DW_OP_lit10:
23752 case DW_OP_lit11:
23753 case DW_OP_lit12:
23754 case DW_OP_lit13:
23755 case DW_OP_lit14:
23756 case DW_OP_lit15:
23757 case DW_OP_lit16:
23758 case DW_OP_lit17:
23759 case DW_OP_lit18:
23760 case DW_OP_lit19:
23761 case DW_OP_lit20:
23762 case DW_OP_lit21:
23763 case DW_OP_lit22:
23764 case DW_OP_lit23:
23765 case DW_OP_lit24:
23766 case DW_OP_lit25:
23767 case DW_OP_lit26:
23768 case DW_OP_lit27:
23769 case DW_OP_lit28:
23770 case DW_OP_lit29:
23771 case DW_OP_lit30:
23772 case DW_OP_lit31:
23773 stack[++stacki] = op - DW_OP_lit0;
23774 break;
f1bea926 23775
21ae7a4d
JK
23776 case DW_OP_reg0:
23777 case DW_OP_reg1:
23778 case DW_OP_reg2:
23779 case DW_OP_reg3:
23780 case DW_OP_reg4:
23781 case DW_OP_reg5:
23782 case DW_OP_reg6:
23783 case DW_OP_reg7:
23784 case DW_OP_reg8:
23785 case DW_OP_reg9:
23786 case DW_OP_reg10:
23787 case DW_OP_reg11:
23788 case DW_OP_reg12:
23789 case DW_OP_reg13:
23790 case DW_OP_reg14:
23791 case DW_OP_reg15:
23792 case DW_OP_reg16:
23793 case DW_OP_reg17:
23794 case DW_OP_reg18:
23795 case DW_OP_reg19:
23796 case DW_OP_reg20:
23797 case DW_OP_reg21:
23798 case DW_OP_reg22:
23799 case DW_OP_reg23:
23800 case DW_OP_reg24:
23801 case DW_OP_reg25:
23802 case DW_OP_reg26:
23803 case DW_OP_reg27:
23804 case DW_OP_reg28:
23805 case DW_OP_reg29:
23806 case DW_OP_reg30:
23807 case DW_OP_reg31:
23808 stack[++stacki] = op - DW_OP_reg0;
23809 if (i < size)
23810 dwarf2_complex_location_expr_complaint ();
23811 break;
c906108c 23812
21ae7a4d
JK
23813 case DW_OP_regx:
23814 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
23815 i += bytes_read;
23816 stack[++stacki] = unsnd;
23817 if (i < size)
23818 dwarf2_complex_location_expr_complaint ();
23819 break;
c906108c 23820
21ae7a4d
JK
23821 case DW_OP_addr:
23822 stack[++stacki] = read_address (objfile->obfd, &data[i],
23823 cu, &bytes_read);
23824 i += bytes_read;
23825 break;
d53d4ac5 23826
21ae7a4d
JK
23827 case DW_OP_const1u:
23828 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
23829 i += 1;
23830 break;
23831
23832 case DW_OP_const1s:
23833 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
23834 i += 1;
23835 break;
23836
23837 case DW_OP_const2u:
23838 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
23839 i += 2;
23840 break;
23841
23842 case DW_OP_const2s:
23843 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
23844 i += 2;
23845 break;
d53d4ac5 23846
21ae7a4d
JK
23847 case DW_OP_const4u:
23848 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
23849 i += 4;
23850 break;
23851
23852 case DW_OP_const4s:
23853 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
23854 i += 4;
23855 break;
23856
585861ea
JK
23857 case DW_OP_const8u:
23858 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
23859 i += 8;
23860 break;
23861
21ae7a4d
JK
23862 case DW_OP_constu:
23863 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
23864 &bytes_read);
23865 i += bytes_read;
23866 break;
23867
23868 case DW_OP_consts:
23869 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
23870 i += bytes_read;
23871 break;
23872
23873 case DW_OP_dup:
23874 stack[stacki + 1] = stack[stacki];
23875 stacki++;
23876 break;
23877
23878 case DW_OP_plus:
23879 stack[stacki - 1] += stack[stacki];
23880 stacki--;
23881 break;
23882
23883 case DW_OP_plus_uconst:
23884 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
23885 &bytes_read);
23886 i += bytes_read;
23887 break;
23888
23889 case DW_OP_minus:
23890 stack[stacki - 1] -= stack[stacki];
23891 stacki--;
23892 break;
23893
23894 case DW_OP_deref:
23895 /* If we're not the last op, then we definitely can't encode
23896 this using GDB's address_class enum. This is valid for partial
23897 global symbols, although the variable's address will be bogus
23898 in the psymtab. */
23899 if (i < size)
23900 dwarf2_complex_location_expr_complaint ();
23901 break;
23902
23903 case DW_OP_GNU_push_tls_address:
4aa4e28b 23904 case DW_OP_form_tls_address:
21ae7a4d
JK
23905 /* The top of the stack has the offset from the beginning
23906 of the thread control block at which the variable is located. */
23907 /* Nothing should follow this operator, so the top of stack would
23908 be returned. */
23909 /* This is valid for partial global symbols, but the variable's
585861ea
JK
23910 address will be bogus in the psymtab. Make it always at least
23911 non-zero to not look as a variable garbage collected by linker
23912 which have DW_OP_addr 0. */
21ae7a4d
JK
23913 if (i < size)
23914 dwarf2_complex_location_expr_complaint ();
585861ea 23915 stack[stacki]++;
21ae7a4d
JK
23916 break;
23917
23918 case DW_OP_GNU_uninit:
23919 break;
23920
336d760d 23921 case DW_OP_addrx:
3019eac3 23922 case DW_OP_GNU_addr_index:
49f6c839 23923 case DW_OP_GNU_const_index:
3019eac3
DE
23924 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
23925 &bytes_read);
23926 i += bytes_read;
23927 break;
23928
21ae7a4d
JK
23929 default:
23930 {
f39c6ffd 23931 const char *name = get_DW_OP_name (op);
21ae7a4d
JK
23932
23933 if (name)
b98664d3 23934 complaint (_("unsupported stack op: '%s'"),
21ae7a4d
JK
23935 name);
23936 else
b98664d3 23937 complaint (_("unsupported stack op: '%02x'"),
21ae7a4d
JK
23938 op);
23939 }
23940
23941 return (stack[stacki]);
d53d4ac5 23942 }
3c6e0cb3 23943
21ae7a4d
JK
23944 /* Enforce maximum stack depth of SIZE-1 to avoid writing
23945 outside of the allocated space. Also enforce minimum>0. */
23946 if (stacki >= ARRAY_SIZE (stack) - 1)
23947 {
b98664d3 23948 complaint (_("location description stack overflow"));
21ae7a4d
JK
23949 return 0;
23950 }
23951
23952 if (stacki <= 0)
23953 {
b98664d3 23954 complaint (_("location description stack underflow"));
21ae7a4d
JK
23955 return 0;
23956 }
23957 }
23958 return (stack[stacki]);
c906108c
SS
23959}
23960
23961/* memory allocation interface */
23962
c906108c 23963static struct dwarf_block *
7b5a2f43 23964dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c 23965{
8d749320 23966 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
c906108c
SS
23967}
23968
c906108c 23969static struct die_info *
b60c80d6 23970dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
c906108c
SS
23971{
23972 struct die_info *die;
b60c80d6
DJ
23973 size_t size = sizeof (struct die_info);
23974
23975 if (num_attrs > 1)
23976 size += (num_attrs - 1) * sizeof (struct attribute);
c906108c 23977
b60c80d6 23978 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
c906108c
SS
23979 memset (die, 0, sizeof (struct die_info));
23980 return (die);
23981}
2e276125
JB
23982
23983\f
23984/* Macro support. */
23985
233d95b5
JK
23986/* Return file name relative to the compilation directory of file number I in
23987 *LH's file name table. The result is allocated using xmalloc; the caller is
2e276125 23988 responsible for freeing it. */
233d95b5 23989
2e276125 23990static char *
233d95b5 23991file_file_name (int file, struct line_header *lh)
2e276125 23992{
6a83a1e6
EZ
23993 /* Is the file number a valid index into the line header's file name
23994 table? Remember that file numbers start with one, not zero. */
fff8551c 23995 if (1 <= file && file <= lh->file_names.size ())
6a83a1e6 23996 {
8c43009f 23997 const file_entry &fe = lh->file_names[file - 1];
6e70227d 23998
8c43009f
PA
23999 if (!IS_ABSOLUTE_PATH (fe.name))
24000 {
24001 const char *dir = fe.include_dir (lh);
24002 if (dir != NULL)
24003 return concat (dir, SLASH_STRING, fe.name, (char *) NULL);
24004 }
24005 return xstrdup (fe.name);
6a83a1e6 24006 }
2e276125
JB
24007 else
24008 {
6a83a1e6
EZ
24009 /* The compiler produced a bogus file number. We can at least
24010 record the macro definitions made in the file, even if we
24011 won't be able to find the file by name. */
24012 char fake_name[80];
9a619af0 24013
8c042590
PM
24014 xsnprintf (fake_name, sizeof (fake_name),
24015 "<bad macro file number %d>", file);
2e276125 24016
b98664d3 24017 complaint (_("bad file number in macro information (%d)"),
6a83a1e6 24018 file);
2e276125 24019
6a83a1e6 24020 return xstrdup (fake_name);
2e276125
JB
24021 }
24022}
24023
233d95b5
JK
24024/* Return the full name of file number I in *LH's file name table.
24025 Use COMP_DIR as the name of the current directory of the
24026 compilation. The result is allocated using xmalloc; the caller is
24027 responsible for freeing it. */
24028static char *
24029file_full_name (int file, struct line_header *lh, const char *comp_dir)
24030{
24031 /* Is the file number a valid index into the line header's file name
24032 table? Remember that file numbers start with one, not zero. */
fff8551c 24033 if (1 <= file && file <= lh->file_names.size ())
233d95b5
JK
24034 {
24035 char *relative = file_file_name (file, lh);
24036
24037 if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
24038 return relative;
b36cec19
PA
24039 return reconcat (relative, comp_dir, SLASH_STRING,
24040 relative, (char *) NULL);
233d95b5
JK
24041 }
24042 else
24043 return file_file_name (file, lh);
24044}
24045
2e276125
JB
24046
24047static struct macro_source_file *
804d2729
TT
24048macro_start_file (struct dwarf2_cu *cu,
24049 int file, int line,
2e276125 24050 struct macro_source_file *current_file,
43f3e411 24051 struct line_header *lh)
2e276125 24052{
233d95b5
JK
24053 /* File name relative to the compilation directory of this source file. */
24054 char *file_name = file_file_name (file, lh);
2e276125 24055
2e276125 24056 if (! current_file)
abc9d0dc 24057 {
fc474241
DE
24058 /* Note: We don't create a macro table for this compilation unit
24059 at all until we actually get a filename. */
c24bdb02 24060 struct macro_table *macro_table = cu->get_builder ()->get_macro_table ();
fc474241 24061
abc9d0dc
TT
24062 /* If we have no current file, then this must be the start_file
24063 directive for the compilation unit's main source file. */
fc474241
DE
24064 current_file = macro_set_main (macro_table, file_name);
24065 macro_define_special (macro_table);
abc9d0dc 24066 }
2e276125 24067 else
233d95b5 24068 current_file = macro_include (current_file, line, file_name);
2e276125 24069
233d95b5 24070 xfree (file_name);
6e70227d 24071
2e276125
JB
24072 return current_file;
24073}
24074
2e276125
JB
24075static const char *
24076consume_improper_spaces (const char *p, const char *body)
24077{
24078 if (*p == ' ')
24079 {
b98664d3 24080 complaint (_("macro definition contains spaces "
3e43a32a 24081 "in formal argument list:\n`%s'"),
4d3c2250 24082 body);
2e276125
JB
24083
24084 while (*p == ' ')
24085 p++;
24086 }
24087
24088 return p;
24089}
24090
24091
24092static void
24093parse_macro_definition (struct macro_source_file *file, int line,
24094 const char *body)
24095{
24096 const char *p;
24097
24098 /* The body string takes one of two forms. For object-like macro
24099 definitions, it should be:
24100
24101 <macro name> " " <definition>
24102
24103 For function-like macro definitions, it should be:
24104
24105 <macro name> "() " <definition>
24106 or
24107 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
24108
24109 Spaces may appear only where explicitly indicated, and in the
24110 <definition>.
24111
24112 The Dwarf 2 spec says that an object-like macro's name is always
24113 followed by a space, but versions of GCC around March 2002 omit
6e70227d 24114 the space when the macro's definition is the empty string.
2e276125
JB
24115
24116 The Dwarf 2 spec says that there should be no spaces between the
24117 formal arguments in a function-like macro's formal argument list,
24118 but versions of GCC around March 2002 include spaces after the
24119 commas. */
24120
24121
24122 /* Find the extent of the macro name. The macro name is terminated
24123 by either a space or null character (for an object-like macro) or
24124 an opening paren (for a function-like macro). */
24125 for (p = body; *p; p++)
24126 if (*p == ' ' || *p == '(')
24127 break;
24128
24129 if (*p == ' ' || *p == '\0')
24130 {
24131 /* It's an object-like macro. */
24132 int name_len = p - body;
3f8a7804 24133 char *name = savestring (body, name_len);
2e276125
JB
24134 const char *replacement;
24135
24136 if (*p == ' ')
24137 replacement = body + name_len + 1;
24138 else
24139 {
4d3c2250 24140 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24141 replacement = body + name_len;
24142 }
6e70227d 24143
2e276125
JB
24144 macro_define_object (file, line, name, replacement);
24145
24146 xfree (name);
24147 }
24148 else if (*p == '(')
24149 {
24150 /* It's a function-like macro. */
3f8a7804 24151 char *name = savestring (body, p - body);
2e276125
JB
24152 int argc = 0;
24153 int argv_size = 1;
8d749320 24154 char **argv = XNEWVEC (char *, argv_size);
2e276125
JB
24155
24156 p++;
24157
24158 p = consume_improper_spaces (p, body);
24159
24160 /* Parse the formal argument list. */
24161 while (*p && *p != ')')
24162 {
24163 /* Find the extent of the current argument name. */
24164 const char *arg_start = p;
24165
24166 while (*p && *p != ',' && *p != ')' && *p != ' ')
24167 p++;
24168
24169 if (! *p || p == arg_start)
4d3c2250 24170 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24171 else
24172 {
24173 /* Make sure argv has room for the new argument. */
24174 if (argc >= argv_size)
24175 {
24176 argv_size *= 2;
224c3ddb 24177 argv = XRESIZEVEC (char *, argv, argv_size);
2e276125
JB
24178 }
24179
3f8a7804 24180 argv[argc++] = savestring (arg_start, p - arg_start);
2e276125
JB
24181 }
24182
24183 p = consume_improper_spaces (p, body);
24184
24185 /* Consume the comma, if present. */
24186 if (*p == ',')
24187 {
24188 p++;
24189
24190 p = consume_improper_spaces (p, body);
24191 }
24192 }
24193
24194 if (*p == ')')
24195 {
24196 p++;
24197
24198 if (*p == ' ')
24199 /* Perfectly formed definition, no complaints. */
24200 macro_define_function (file, line, name,
6e70227d 24201 argc, (const char **) argv,
2e276125
JB
24202 p + 1);
24203 else if (*p == '\0')
24204 {
24205 /* Complain, but do define it. */
4d3c2250 24206 dwarf2_macro_malformed_definition_complaint (body);
2e276125 24207 macro_define_function (file, line, name,
6e70227d 24208 argc, (const char **) argv,
2e276125
JB
24209 p);
24210 }
24211 else
24212 /* Just complain. */
4d3c2250 24213 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24214 }
24215 else
24216 /* Just complain. */
4d3c2250 24217 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24218
24219 xfree (name);
24220 {
24221 int i;
24222
24223 for (i = 0; i < argc; i++)
24224 xfree (argv[i]);
24225 }
24226 xfree (argv);
24227 }
24228 else
4d3c2250 24229 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
24230}
24231
cf2c3c16
TT
24232/* Skip some bytes from BYTES according to the form given in FORM.
24233 Returns the new pointer. */
2e276125 24234
d521ce57
TT
24235static const gdb_byte *
24236skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
cf2c3c16
TT
24237 enum dwarf_form form,
24238 unsigned int offset_size,
24239 struct dwarf2_section_info *section)
2e276125 24240{
cf2c3c16 24241 unsigned int bytes_read;
2e276125 24242
cf2c3c16 24243 switch (form)
2e276125 24244 {
cf2c3c16
TT
24245 case DW_FORM_data1:
24246 case DW_FORM_flag:
24247 ++bytes;
24248 break;
24249
24250 case DW_FORM_data2:
24251 bytes += 2;
24252 break;
24253
24254 case DW_FORM_data4:
24255 bytes += 4;
24256 break;
24257
24258 case DW_FORM_data8:
24259 bytes += 8;
24260 break;
24261
0224619f
JK
24262 case DW_FORM_data16:
24263 bytes += 16;
24264 break;
24265
cf2c3c16
TT
24266 case DW_FORM_string:
24267 read_direct_string (abfd, bytes, &bytes_read);
24268 bytes += bytes_read;
24269 break;
24270
24271 case DW_FORM_sec_offset:
24272 case DW_FORM_strp:
36586728 24273 case DW_FORM_GNU_strp_alt:
cf2c3c16
TT
24274 bytes += offset_size;
24275 break;
24276
24277 case DW_FORM_block:
24278 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
24279 bytes += bytes_read;
24280 break;
24281
24282 case DW_FORM_block1:
24283 bytes += 1 + read_1_byte (abfd, bytes);
24284 break;
24285 case DW_FORM_block2:
24286 bytes += 2 + read_2_bytes (abfd, bytes);
24287 break;
24288 case DW_FORM_block4:
24289 bytes += 4 + read_4_bytes (abfd, bytes);
24290 break;
24291
336d760d 24292 case DW_FORM_addrx:
cf2c3c16 24293 case DW_FORM_sdata:
cf532bd1 24294 case DW_FORM_strx:
cf2c3c16 24295 case DW_FORM_udata:
3019eac3
DE
24296 case DW_FORM_GNU_addr_index:
24297 case DW_FORM_GNU_str_index:
d521ce57 24298 bytes = gdb_skip_leb128 (bytes, buffer_end);
f664829e
DE
24299 if (bytes == NULL)
24300 {
24301 dwarf2_section_buffer_overflow_complaint (section);
24302 return NULL;
24303 }
cf2c3c16
TT
24304 break;
24305
663c44ac
JK
24306 case DW_FORM_implicit_const:
24307 break;
24308
cf2c3c16
TT
24309 default:
24310 {
b98664d3 24311 complaint (_("invalid form 0x%x in `%s'"),
a32a8923 24312 form, get_section_name (section));
cf2c3c16
TT
24313 return NULL;
24314 }
2e276125
JB
24315 }
24316
cf2c3c16
TT
24317 return bytes;
24318}
757a13d0 24319
cf2c3c16
TT
24320/* A helper for dwarf_decode_macros that handles skipping an unknown
24321 opcode. Returns an updated pointer to the macro data buffer; or,
24322 on error, issues a complaint and returns NULL. */
757a13d0 24323
d521ce57 24324static const gdb_byte *
cf2c3c16 24325skip_unknown_opcode (unsigned int opcode,
d521ce57
TT
24326 const gdb_byte **opcode_definitions,
24327 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16
TT
24328 bfd *abfd,
24329 unsigned int offset_size,
24330 struct dwarf2_section_info *section)
24331{
24332 unsigned int bytes_read, i;
24333 unsigned long arg;
d521ce57 24334 const gdb_byte *defn;
2e276125 24335
cf2c3c16 24336 if (opcode_definitions[opcode] == NULL)
2e276125 24337 {
b98664d3 24338 complaint (_("unrecognized DW_MACFINO opcode 0x%x"),
cf2c3c16
TT
24339 opcode);
24340 return NULL;
24341 }
2e276125 24342
cf2c3c16
TT
24343 defn = opcode_definitions[opcode];
24344 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
24345 defn += bytes_read;
2e276125 24346
cf2c3c16
TT
24347 for (i = 0; i < arg; ++i)
24348 {
aead7601
SM
24349 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end,
24350 (enum dwarf_form) defn[i], offset_size,
f664829e 24351 section);
cf2c3c16
TT
24352 if (mac_ptr == NULL)
24353 {
24354 /* skip_form_bytes already issued the complaint. */
24355 return NULL;
24356 }
24357 }
757a13d0 24358
cf2c3c16
TT
24359 return mac_ptr;
24360}
757a13d0 24361
cf2c3c16
TT
24362/* A helper function which parses the header of a macro section.
24363 If the macro section is the extended (for now called "GNU") type,
24364 then this updates *OFFSET_SIZE. Returns a pointer to just after
24365 the header, or issues a complaint and returns NULL on error. */
757a13d0 24366
d521ce57
TT
24367static const gdb_byte *
24368dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
cf2c3c16 24369 bfd *abfd,
d521ce57 24370 const gdb_byte *mac_ptr,
cf2c3c16
TT
24371 unsigned int *offset_size,
24372 int section_is_gnu)
24373{
24374 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
757a13d0 24375
cf2c3c16
TT
24376 if (section_is_gnu)
24377 {
24378 unsigned int version, flags;
757a13d0 24379
cf2c3c16 24380 version = read_2_bytes (abfd, mac_ptr);
0af92d60 24381 if (version != 4 && version != 5)
cf2c3c16 24382 {
b98664d3 24383 complaint (_("unrecognized version `%d' in .debug_macro section"),
cf2c3c16
TT
24384 version);
24385 return NULL;
24386 }
24387 mac_ptr += 2;
757a13d0 24388
cf2c3c16
TT
24389 flags = read_1_byte (abfd, mac_ptr);
24390 ++mac_ptr;
24391 *offset_size = (flags & 1) ? 8 : 4;
757a13d0 24392
cf2c3c16
TT
24393 if ((flags & 2) != 0)
24394 /* We don't need the line table offset. */
24395 mac_ptr += *offset_size;
757a13d0 24396
cf2c3c16
TT
24397 /* Vendor opcode descriptions. */
24398 if ((flags & 4) != 0)
24399 {
24400 unsigned int i, count;
757a13d0 24401
cf2c3c16
TT
24402 count = read_1_byte (abfd, mac_ptr);
24403 ++mac_ptr;
24404 for (i = 0; i < count; ++i)
24405 {
24406 unsigned int opcode, bytes_read;
24407 unsigned long arg;
24408
24409 opcode = read_1_byte (abfd, mac_ptr);
24410 ++mac_ptr;
24411 opcode_definitions[opcode] = mac_ptr;
24412 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24413 mac_ptr += bytes_read;
24414 mac_ptr += arg;
24415 }
757a13d0 24416 }
cf2c3c16 24417 }
757a13d0 24418
cf2c3c16
TT
24419 return mac_ptr;
24420}
757a13d0 24421
cf2c3c16 24422/* A helper for dwarf_decode_macros that handles the GNU extensions,
0af92d60 24423 including DW_MACRO_import. */
cf2c3c16
TT
24424
24425static void
804d2729 24426dwarf_decode_macro_bytes (struct dwarf2_cu *cu,
ed2dc618 24427 bfd *abfd,
d521ce57 24428 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16 24429 struct macro_source_file *current_file,
43f3e411 24430 struct line_header *lh,
cf2c3c16 24431 struct dwarf2_section_info *section,
36586728 24432 int section_is_gnu, int section_is_dwz,
cf2c3c16 24433 unsigned int offset_size,
8fc3fc34 24434 htab_t include_hash)
cf2c3c16 24435{
804d2729
TT
24436 struct dwarf2_per_objfile *dwarf2_per_objfile
24437 = cu->per_cu->dwarf2_per_objfile;
4d663531 24438 struct objfile *objfile = dwarf2_per_objfile->objfile;
cf2c3c16
TT
24439 enum dwarf_macro_record_type macinfo_type;
24440 int at_commandline;
d521ce57 24441 const gdb_byte *opcode_definitions[256];
757a13d0 24442
cf2c3c16
TT
24443 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24444 &offset_size, section_is_gnu);
24445 if (mac_ptr == NULL)
24446 {
24447 /* We already issued a complaint. */
24448 return;
24449 }
757a13d0
JK
24450
24451 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
24452 GDB is still reading the definitions from command line. First
24453 DW_MACINFO_start_file will need to be ignored as it was already executed
24454 to create CURRENT_FILE for the main source holding also the command line
24455 definitions. On first met DW_MACINFO_start_file this flag is reset to
24456 normally execute all the remaining DW_MACINFO_start_file macinfos. */
24457
24458 at_commandline = 1;
24459
24460 do
24461 {
24462 /* Do we at least have room for a macinfo type byte? */
24463 if (mac_ptr >= mac_end)
24464 {
f664829e 24465 dwarf2_section_buffer_overflow_complaint (section);
757a13d0
JK
24466 break;
24467 }
24468
aead7601 24469 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
757a13d0
JK
24470 mac_ptr++;
24471
cf2c3c16
TT
24472 /* Note that we rely on the fact that the corresponding GNU and
24473 DWARF constants are the same. */
132448f8
SM
24474 DIAGNOSTIC_PUSH
24475 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
757a13d0
JK
24476 switch (macinfo_type)
24477 {
24478 /* A zero macinfo type indicates the end of the macro
24479 information. */
24480 case 0:
24481 break;
2e276125 24482
0af92d60
JK
24483 case DW_MACRO_define:
24484 case DW_MACRO_undef:
24485 case DW_MACRO_define_strp:
24486 case DW_MACRO_undef_strp:
24487 case DW_MACRO_define_sup:
24488 case DW_MACRO_undef_sup:
2e276125 24489 {
891d2f0b 24490 unsigned int bytes_read;
2e276125 24491 int line;
d521ce57 24492 const char *body;
cf2c3c16 24493 int is_define;
2e276125 24494
cf2c3c16
TT
24495 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24496 mac_ptr += bytes_read;
24497
0af92d60
JK
24498 if (macinfo_type == DW_MACRO_define
24499 || macinfo_type == DW_MACRO_undef)
cf2c3c16
TT
24500 {
24501 body = read_direct_string (abfd, mac_ptr, &bytes_read);
24502 mac_ptr += bytes_read;
24503 }
24504 else
24505 {
24506 LONGEST str_offset;
24507
24508 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
24509 mac_ptr += offset_size;
2e276125 24510
0af92d60
JK
24511 if (macinfo_type == DW_MACRO_define_sup
24512 || macinfo_type == DW_MACRO_undef_sup
f7a35f02 24513 || section_is_dwz)
36586728 24514 {
ed2dc618
SM
24515 struct dwz_file *dwz
24516 = dwarf2_get_dwz_file (dwarf2_per_objfile);
36586728 24517
ed2dc618
SM
24518 body = read_indirect_string_from_dwz (objfile,
24519 dwz, str_offset);
36586728
TT
24520 }
24521 else
ed2dc618
SM
24522 body = read_indirect_string_at_offset (dwarf2_per_objfile,
24523 abfd, str_offset);
cf2c3c16
TT
24524 }
24525
0af92d60
JK
24526 is_define = (macinfo_type == DW_MACRO_define
24527 || macinfo_type == DW_MACRO_define_strp
24528 || macinfo_type == DW_MACRO_define_sup);
2e276125 24529 if (! current_file)
757a13d0
JK
24530 {
24531 /* DWARF violation as no main source is present. */
b98664d3 24532 complaint (_("debug info with no main source gives macro %s "
757a13d0 24533 "on line %d: %s"),
cf2c3c16
TT
24534 is_define ? _("definition") : _("undefinition"),
24535 line, body);
757a13d0
JK
24536 break;
24537 }
3e43a32a
MS
24538 if ((line == 0 && !at_commandline)
24539 || (line != 0 && at_commandline))
b98664d3 24540 complaint (_("debug info gives %s macro %s with %s line %d: %s"),
757a13d0 24541 at_commandline ? _("command-line") : _("in-file"),
cf2c3c16 24542 is_define ? _("definition") : _("undefinition"),
757a13d0
JK
24543 line == 0 ? _("zero") : _("non-zero"), line, body);
24544
cf2c3c16 24545 if (is_define)
757a13d0 24546 parse_macro_definition (current_file, line, body);
cf2c3c16
TT
24547 else
24548 {
0af92d60
JK
24549 gdb_assert (macinfo_type == DW_MACRO_undef
24550 || macinfo_type == DW_MACRO_undef_strp
24551 || macinfo_type == DW_MACRO_undef_sup);
cf2c3c16
TT
24552 macro_undef (current_file, line, body);
24553 }
2e276125
JB
24554 }
24555 break;
24556
0af92d60 24557 case DW_MACRO_start_file:
2e276125 24558 {
891d2f0b 24559 unsigned int bytes_read;
2e276125
JB
24560 int line, file;
24561
24562 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24563 mac_ptr += bytes_read;
24564 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24565 mac_ptr += bytes_read;
24566
3e43a32a
MS
24567 if ((line == 0 && !at_commandline)
24568 || (line != 0 && at_commandline))
b98664d3 24569 complaint (_("debug info gives source %d included "
757a13d0
JK
24570 "from %s at %s line %d"),
24571 file, at_commandline ? _("command-line") : _("file"),
24572 line == 0 ? _("zero") : _("non-zero"), line);
24573
24574 if (at_commandline)
24575 {
0af92d60 24576 /* This DW_MACRO_start_file was executed in the
cf2c3c16 24577 pass one. */
757a13d0
JK
24578 at_commandline = 0;
24579 }
24580 else
804d2729
TT
24581 current_file = macro_start_file (cu, file, line, current_file,
24582 lh);
2e276125
JB
24583 }
24584 break;
24585
0af92d60 24586 case DW_MACRO_end_file:
2e276125 24587 if (! current_file)
b98664d3 24588 complaint (_("macro debug info has an unmatched "
3e43a32a 24589 "`close_file' directive"));
2e276125
JB
24590 else
24591 {
24592 current_file = current_file->included_by;
24593 if (! current_file)
24594 {
cf2c3c16 24595 enum dwarf_macro_record_type next_type;
2e276125
JB
24596
24597 /* GCC circa March 2002 doesn't produce the zero
24598 type byte marking the end of the compilation
24599 unit. Complain if it's not there, but exit no
24600 matter what. */
24601
24602 /* Do we at least have room for a macinfo type byte? */
24603 if (mac_ptr >= mac_end)
24604 {
f664829e 24605 dwarf2_section_buffer_overflow_complaint (section);
2e276125
JB
24606 return;
24607 }
24608
24609 /* We don't increment mac_ptr here, so this is just
24610 a look-ahead. */
aead7601
SM
24611 next_type
24612 = (enum dwarf_macro_record_type) read_1_byte (abfd,
24613 mac_ptr);
2e276125 24614 if (next_type != 0)
b98664d3 24615 complaint (_("no terminating 0-type entry for "
3e43a32a 24616 "macros in `.debug_macinfo' section"));
2e276125
JB
24617
24618 return;
24619 }
24620 }
24621 break;
24622
0af92d60
JK
24623 case DW_MACRO_import:
24624 case DW_MACRO_import_sup:
cf2c3c16
TT
24625 {
24626 LONGEST offset;
8fc3fc34 24627 void **slot;
a036ba48
TT
24628 bfd *include_bfd = abfd;
24629 struct dwarf2_section_info *include_section = section;
d521ce57 24630 const gdb_byte *include_mac_end = mac_end;
a036ba48 24631 int is_dwz = section_is_dwz;
d521ce57 24632 const gdb_byte *new_mac_ptr;
cf2c3c16
TT
24633
24634 offset = read_offset_1 (abfd, mac_ptr, offset_size);
24635 mac_ptr += offset_size;
24636
0af92d60 24637 if (macinfo_type == DW_MACRO_import_sup)
a036ba48 24638 {
ed2dc618 24639 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
a036ba48 24640
4d663531 24641 dwarf2_read_section (objfile, &dwz->macro);
a036ba48 24642
a036ba48 24643 include_section = &dwz->macro;
a32a8923 24644 include_bfd = get_section_bfd_owner (include_section);
a036ba48
TT
24645 include_mac_end = dwz->macro.buffer + dwz->macro.size;
24646 is_dwz = 1;
24647 }
24648
24649 new_mac_ptr = include_section->buffer + offset;
24650 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
24651
8fc3fc34
TT
24652 if (*slot != NULL)
24653 {
24654 /* This has actually happened; see
24655 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
b98664d3 24656 complaint (_("recursive DW_MACRO_import in "
8fc3fc34
TT
24657 ".debug_macro section"));
24658 }
24659 else
24660 {
d521ce57 24661 *slot = (void *) new_mac_ptr;
36586728 24662
804d2729 24663 dwarf_decode_macro_bytes (cu, include_bfd, new_mac_ptr,
43f3e411 24664 include_mac_end, current_file, lh,
36586728 24665 section, section_is_gnu, is_dwz,
4d663531 24666 offset_size, include_hash);
8fc3fc34 24667
d521ce57 24668 htab_remove_elt (include_hash, (void *) new_mac_ptr);
8fc3fc34 24669 }
cf2c3c16
TT
24670 }
24671 break;
24672
2e276125 24673 case DW_MACINFO_vendor_ext:
cf2c3c16
TT
24674 if (!section_is_gnu)
24675 {
24676 unsigned int bytes_read;
2e276125 24677
ac298888
TT
24678 /* This reads the constant, but since we don't recognize
24679 any vendor extensions, we ignore it. */
24680 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
cf2c3c16
TT
24681 mac_ptr += bytes_read;
24682 read_direct_string (abfd, mac_ptr, &bytes_read);
24683 mac_ptr += bytes_read;
2e276125 24684
cf2c3c16
TT
24685 /* We don't recognize any vendor extensions. */
24686 break;
24687 }
24688 /* FALLTHROUGH */
24689
24690 default:
24691 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 24692 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
24693 section);
24694 if (mac_ptr == NULL)
24695 return;
24696 break;
2e276125 24697 }
132448f8 24698 DIAGNOSTIC_POP
757a13d0 24699 } while (macinfo_type != 0);
2e276125 24700}
8e19ed76 24701
cf2c3c16 24702static void
09262596 24703dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
43f3e411 24704 int section_is_gnu)
cf2c3c16 24705{
518817b3
SM
24706 struct dwarf2_per_objfile *dwarf2_per_objfile
24707 = cu->per_cu->dwarf2_per_objfile;
bb5ed363 24708 struct objfile *objfile = dwarf2_per_objfile->objfile;
09262596
DE
24709 struct line_header *lh = cu->line_header;
24710 bfd *abfd;
d521ce57 24711 const gdb_byte *mac_ptr, *mac_end;
cf2c3c16
TT
24712 struct macro_source_file *current_file = 0;
24713 enum dwarf_macro_record_type macinfo_type;
24714 unsigned int offset_size = cu->header.offset_size;
d521ce57 24715 const gdb_byte *opcode_definitions[256];
8fc3fc34 24716 void **slot;
09262596
DE
24717 struct dwarf2_section_info *section;
24718 const char *section_name;
24719
24720 if (cu->dwo_unit != NULL)
24721 {
24722 if (section_is_gnu)
24723 {
24724 section = &cu->dwo_unit->dwo_file->sections.macro;
24725 section_name = ".debug_macro.dwo";
24726 }
24727 else
24728 {
24729 section = &cu->dwo_unit->dwo_file->sections.macinfo;
24730 section_name = ".debug_macinfo.dwo";
24731 }
24732 }
24733 else
24734 {
24735 if (section_is_gnu)
24736 {
24737 section = &dwarf2_per_objfile->macro;
24738 section_name = ".debug_macro";
24739 }
24740 else
24741 {
24742 section = &dwarf2_per_objfile->macinfo;
24743 section_name = ".debug_macinfo";
24744 }
24745 }
cf2c3c16 24746
bb5ed363 24747 dwarf2_read_section (objfile, section);
cf2c3c16
TT
24748 if (section->buffer == NULL)
24749 {
b98664d3 24750 complaint (_("missing %s section"), section_name);
cf2c3c16
TT
24751 return;
24752 }
a32a8923 24753 abfd = get_section_bfd_owner (section);
cf2c3c16
TT
24754
24755 /* First pass: Find the name of the base filename.
24756 This filename is needed in order to process all macros whose definition
24757 (or undefinition) comes from the command line. These macros are defined
24758 before the first DW_MACINFO_start_file entry, and yet still need to be
24759 associated to the base file.
24760
24761 To determine the base file name, we scan the macro definitions until we
24762 reach the first DW_MACINFO_start_file entry. We then initialize
24763 CURRENT_FILE accordingly so that any macro definition found before the
24764 first DW_MACINFO_start_file can still be associated to the base file. */
24765
24766 mac_ptr = section->buffer + offset;
24767 mac_end = section->buffer + section->size;
24768
24769 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24770 &offset_size, section_is_gnu);
24771 if (mac_ptr == NULL)
24772 {
24773 /* We already issued a complaint. */
24774 return;
24775 }
24776
24777 do
24778 {
24779 /* Do we at least have room for a macinfo type byte? */
24780 if (mac_ptr >= mac_end)
24781 {
24782 /* Complaint is printed during the second pass as GDB will probably
24783 stop the first pass earlier upon finding
24784 DW_MACINFO_start_file. */
24785 break;
24786 }
24787
aead7601 24788 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
cf2c3c16
TT
24789 mac_ptr++;
24790
24791 /* Note that we rely on the fact that the corresponding GNU and
24792 DWARF constants are the same. */
132448f8
SM
24793 DIAGNOSTIC_PUSH
24794 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
cf2c3c16
TT
24795 switch (macinfo_type)
24796 {
24797 /* A zero macinfo type indicates the end of the macro
24798 information. */
24799 case 0:
24800 break;
24801
0af92d60
JK
24802 case DW_MACRO_define:
24803 case DW_MACRO_undef:
cf2c3c16
TT
24804 /* Only skip the data by MAC_PTR. */
24805 {
24806 unsigned int bytes_read;
24807
24808 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24809 mac_ptr += bytes_read;
24810 read_direct_string (abfd, mac_ptr, &bytes_read);
24811 mac_ptr += bytes_read;
24812 }
24813 break;
24814
0af92d60 24815 case DW_MACRO_start_file:
cf2c3c16
TT
24816 {
24817 unsigned int bytes_read;
24818 int line, file;
24819
24820 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24821 mac_ptr += bytes_read;
24822 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24823 mac_ptr += bytes_read;
24824
804d2729 24825 current_file = macro_start_file (cu, file, line, current_file, lh);
cf2c3c16
TT
24826 }
24827 break;
24828
0af92d60 24829 case DW_MACRO_end_file:
cf2c3c16
TT
24830 /* No data to skip by MAC_PTR. */
24831 break;
24832
0af92d60
JK
24833 case DW_MACRO_define_strp:
24834 case DW_MACRO_undef_strp:
24835 case DW_MACRO_define_sup:
24836 case DW_MACRO_undef_sup:
cf2c3c16
TT
24837 {
24838 unsigned int bytes_read;
24839
24840 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24841 mac_ptr += bytes_read;
24842 mac_ptr += offset_size;
24843 }
24844 break;
24845
0af92d60
JK
24846 case DW_MACRO_import:
24847 case DW_MACRO_import_sup:
cf2c3c16 24848 /* Note that, according to the spec, a transparent include
0af92d60 24849 chain cannot call DW_MACRO_start_file. So, we can just
cf2c3c16
TT
24850 skip this opcode. */
24851 mac_ptr += offset_size;
24852 break;
24853
24854 case DW_MACINFO_vendor_ext:
24855 /* Only skip the data by MAC_PTR. */
24856 if (!section_is_gnu)
24857 {
24858 unsigned int bytes_read;
24859
24860 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24861 mac_ptr += bytes_read;
24862 read_direct_string (abfd, mac_ptr, &bytes_read);
24863 mac_ptr += bytes_read;
24864 }
24865 /* FALLTHROUGH */
24866
24867 default:
24868 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 24869 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
24870 section);
24871 if (mac_ptr == NULL)
24872 return;
24873 break;
24874 }
132448f8 24875 DIAGNOSTIC_POP
cf2c3c16
TT
24876 } while (macinfo_type != 0 && current_file == NULL);
24877
24878 /* Second pass: Process all entries.
24879
24880 Use the AT_COMMAND_LINE flag to determine whether we are still processing
24881 command-line macro definitions/undefinitions. This flag is unset when we
24882 reach the first DW_MACINFO_start_file entry. */
24883
fc4007c9
TT
24884 htab_up include_hash (htab_create_alloc (1, htab_hash_pointer,
24885 htab_eq_pointer,
24886 NULL, xcalloc, xfree));
8fc3fc34 24887 mac_ptr = section->buffer + offset;
fc4007c9 24888 slot = htab_find_slot (include_hash.get (), mac_ptr, INSERT);
d521ce57 24889 *slot = (void *) mac_ptr;
804d2729 24890 dwarf_decode_macro_bytes (cu, abfd, mac_ptr, mac_end,
43f3e411 24891 current_file, lh, section,
fc4007c9
TT
24892 section_is_gnu, 0, offset_size,
24893 include_hash.get ());
cf2c3c16
TT
24894}
24895
8e19ed76 24896/* Check if the attribute's form is a DW_FORM_block*
0963b4bd 24897 if so return true else false. */
380bca97 24898
8e19ed76 24899static int
6e5a29e1 24900attr_form_is_block (const struct attribute *attr)
8e19ed76
PS
24901{
24902 return (attr == NULL ? 0 :
24903 attr->form == DW_FORM_block1
24904 || attr->form == DW_FORM_block2
24905 || attr->form == DW_FORM_block4
2dc7f7b3
TT
24906 || attr->form == DW_FORM_block
24907 || attr->form == DW_FORM_exprloc);
8e19ed76 24908}
4c2df51b 24909
c6a0999f
JB
24910/* Return non-zero if ATTR's value is a section offset --- classes
24911 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
24912 You may use DW_UNSND (attr) to retrieve such offsets.
24913
24914 Section 7.5.4, "Attribute Encodings", explains that no attribute
24915 may have a value that belongs to more than one of these classes; it
24916 would be ambiguous if we did, because we use the same forms for all
24917 of them. */
380bca97 24918
3690dd37 24919static int
6e5a29e1 24920attr_form_is_section_offset (const struct attribute *attr)
3690dd37
JB
24921{
24922 return (attr->form == DW_FORM_data4
2dc7f7b3
TT
24923 || attr->form == DW_FORM_data8
24924 || attr->form == DW_FORM_sec_offset);
3690dd37
JB
24925}
24926
3690dd37
JB
24927/* Return non-zero if ATTR's value falls in the 'constant' class, or
24928 zero otherwise. When this function returns true, you can apply
24929 dwarf2_get_attr_constant_value to it.
24930
24931 However, note that for some attributes you must check
24932 attr_form_is_section_offset before using this test. DW_FORM_data4
24933 and DW_FORM_data8 are members of both the constant class, and of
24934 the classes that contain offsets into other debug sections
24935 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
24936 that, if an attribute's can be either a constant or one of the
24937 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
0224619f
JK
24938 taken as section offsets, not constants.
24939
24940 DW_FORM_data16 is not considered as dwarf2_get_attr_constant_value
24941 cannot handle that. */
380bca97 24942
3690dd37 24943static int
6e5a29e1 24944attr_form_is_constant (const struct attribute *attr)
3690dd37
JB
24945{
24946 switch (attr->form)
24947 {
24948 case DW_FORM_sdata:
24949 case DW_FORM_udata:
24950 case DW_FORM_data1:
24951 case DW_FORM_data2:
24952 case DW_FORM_data4:
24953 case DW_FORM_data8:
663c44ac 24954 case DW_FORM_implicit_const:
3690dd37
JB
24955 return 1;
24956 default:
24957 return 0;
24958 }
24959}
24960
7771576e
SA
24961
24962/* DW_ADDR is always stored already as sect_offset; despite for the forms
24963 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
24964
24965static int
6e5a29e1 24966attr_form_is_ref (const struct attribute *attr)
7771576e
SA
24967{
24968 switch (attr->form)
24969 {
24970 case DW_FORM_ref_addr:
24971 case DW_FORM_ref1:
24972 case DW_FORM_ref2:
24973 case DW_FORM_ref4:
24974 case DW_FORM_ref8:
24975 case DW_FORM_ref_udata:
24976 case DW_FORM_GNU_ref_alt:
24977 return 1;
24978 default:
24979 return 0;
24980 }
24981}
24982
3019eac3
DE
24983/* Return the .debug_loc section to use for CU.
24984 For DWO files use .debug_loc.dwo. */
24985
24986static struct dwarf2_section_info *
24987cu_debug_loc_section (struct dwarf2_cu *cu)
24988{
518817b3
SM
24989 struct dwarf2_per_objfile *dwarf2_per_objfile
24990 = cu->per_cu->dwarf2_per_objfile;
ed2dc618 24991
3019eac3 24992 if (cu->dwo_unit)
43988095
JK
24993 {
24994 struct dwo_sections *sections = &cu->dwo_unit->dwo_file->sections;
24995
24996 return cu->header.version >= 5 ? &sections->loclists : &sections->loc;
24997 }
24998 return (cu->header.version >= 5 ? &dwarf2_per_objfile->loclists
24999 : &dwarf2_per_objfile->loc);
3019eac3
DE
25000}
25001
8cf6f0b1
TT
25002/* A helper function that fills in a dwarf2_loclist_baton. */
25003
25004static void
25005fill_in_loclist_baton (struct dwarf2_cu *cu,
25006 struct dwarf2_loclist_baton *baton,
ff39bb5e 25007 const struct attribute *attr)
8cf6f0b1 25008{
518817b3
SM
25009 struct dwarf2_per_objfile *dwarf2_per_objfile
25010 = cu->per_cu->dwarf2_per_objfile;
3019eac3
DE
25011 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
25012
25013 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
8cf6f0b1
TT
25014
25015 baton->per_cu = cu->per_cu;
25016 gdb_assert (baton->per_cu);
25017 /* We don't know how long the location list is, but make sure we
25018 don't run off the edge of the section. */
3019eac3
DE
25019 baton->size = section->size - DW_UNSND (attr);
25020 baton->data = section->buffer + DW_UNSND (attr);
8cf6f0b1 25021 baton->base_address = cu->base_address;
f664829e 25022 baton->from_dwo = cu->dwo_unit != NULL;
8cf6f0b1
TT
25023}
25024
4c2df51b 25025static void
ff39bb5e 25026dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
f1e6e072 25027 struct dwarf2_cu *cu, int is_block)
4c2df51b 25028{
518817b3
SM
25029 struct dwarf2_per_objfile *dwarf2_per_objfile
25030 = cu->per_cu->dwarf2_per_objfile;
bb5ed363 25031 struct objfile *objfile = dwarf2_per_objfile->objfile;
3019eac3 25032 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
bb5ed363 25033
3690dd37 25034 if (attr_form_is_section_offset (attr)
3019eac3 25035 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
99bcc461
DJ
25036 the section. If so, fall through to the complaint in the
25037 other branch. */
3019eac3 25038 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
4c2df51b 25039 {
0d53c4c4 25040 struct dwarf2_loclist_baton *baton;
4c2df51b 25041
8d749320 25042 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
4c2df51b 25043
8cf6f0b1 25044 fill_in_loclist_baton (cu, baton, attr);
be391dca 25045
d00adf39 25046 if (cu->base_known == 0)
b98664d3 25047 complaint (_("Location list used without "
3e43a32a 25048 "specifying the CU base address."));
4c2df51b 25049
f1e6e072
TT
25050 SYMBOL_ACLASS_INDEX (sym) = (is_block
25051 ? dwarf2_loclist_block_index
25052 : dwarf2_loclist_index);
0d53c4c4
DJ
25053 SYMBOL_LOCATION_BATON (sym) = baton;
25054 }
25055 else
25056 {
25057 struct dwarf2_locexpr_baton *baton;
25058
8d749320 25059 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
ae0d2f24
UW
25060 baton->per_cu = cu->per_cu;
25061 gdb_assert (baton->per_cu);
0d53c4c4
DJ
25062
25063 if (attr_form_is_block (attr))
25064 {
25065 /* Note that we're just copying the block's data pointer
25066 here, not the actual data. We're still pointing into the
6502dd73
DJ
25067 info_buffer for SYM's objfile; right now we never release
25068 that buffer, but when we do clean up properly this may
25069 need to change. */
0d53c4c4
DJ
25070 baton->size = DW_BLOCK (attr)->size;
25071 baton->data = DW_BLOCK (attr)->data;
25072 }
25073 else
25074 {
25075 dwarf2_invalid_attrib_class_complaint ("location description",
25076 SYMBOL_NATURAL_NAME (sym));
25077 baton->size = 0;
0d53c4c4 25078 }
6e70227d 25079
f1e6e072
TT
25080 SYMBOL_ACLASS_INDEX (sym) = (is_block
25081 ? dwarf2_locexpr_block_index
25082 : dwarf2_locexpr_index);
0d53c4c4
DJ
25083 SYMBOL_LOCATION_BATON (sym) = baton;
25084 }
4c2df51b 25085}
6502dd73 25086
9aa1f1e3
TT
25087/* Return the OBJFILE associated with the compilation unit CU. If CU
25088 came from a separate debuginfo file, then the master objfile is
25089 returned. */
ae0d2f24
UW
25090
25091struct objfile *
25092dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
25093{
e3b94546 25094 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
ae0d2f24
UW
25095
25096 /* Return the master objfile, so that we can report and look up the
25097 correct file containing this variable. */
25098 if (objfile->separate_debug_objfile_backlink)
25099 objfile = objfile->separate_debug_objfile_backlink;
25100
25101 return objfile;
25102}
25103
96408a79
SA
25104/* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
25105 (CU_HEADERP is unused in such case) or prepare a temporary copy at
25106 CU_HEADERP first. */
25107
25108static const struct comp_unit_head *
25109per_cu_header_read_in (struct comp_unit_head *cu_headerp,
25110 struct dwarf2_per_cu_data *per_cu)
25111{
d521ce57 25112 const gdb_byte *info_ptr;
96408a79
SA
25113
25114 if (per_cu->cu)
25115 return &per_cu->cu->header;
25116
9c541725 25117 info_ptr = per_cu->section->buffer + to_underlying (per_cu->sect_off);
96408a79
SA
25118
25119 memset (cu_headerp, 0, sizeof (*cu_headerp));
43988095
JK
25120 read_comp_unit_head (cu_headerp, info_ptr, per_cu->section,
25121 rcuh_kind::COMPILE);
96408a79
SA
25122
25123 return cu_headerp;
25124}
25125
ae0d2f24
UW
25126/* Return the address size given in the compilation unit header for CU. */
25127
98714339 25128int
ae0d2f24
UW
25129dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
25130{
96408a79
SA
25131 struct comp_unit_head cu_header_local;
25132 const struct comp_unit_head *cu_headerp;
c471e790 25133
96408a79
SA
25134 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25135
25136 return cu_headerp->addr_size;
ae0d2f24
UW
25137}
25138
9eae7c52
TT
25139/* Return the offset size given in the compilation unit header for CU. */
25140
25141int
25142dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
25143{
96408a79
SA
25144 struct comp_unit_head cu_header_local;
25145 const struct comp_unit_head *cu_headerp;
9c6c53f7 25146
96408a79
SA
25147 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25148
25149 return cu_headerp->offset_size;
25150}
25151
25152/* See its dwarf2loc.h declaration. */
25153
25154int
25155dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
25156{
25157 struct comp_unit_head cu_header_local;
25158 const struct comp_unit_head *cu_headerp;
25159
25160 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
25161
25162 if (cu_headerp->version == 2)
25163 return cu_headerp->addr_size;
25164 else
25165 return cu_headerp->offset_size;
181cebd4
JK
25166}
25167
9aa1f1e3
TT
25168/* Return the text offset of the CU. The returned offset comes from
25169 this CU's objfile. If this objfile came from a separate debuginfo
25170 file, then the offset may be different from the corresponding
25171 offset in the parent objfile. */
25172
25173CORE_ADDR
25174dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
25175{
e3b94546 25176 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
9aa1f1e3
TT
25177
25178 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
25179}
25180
43988095
JK
25181/* Return DWARF version number of PER_CU. */
25182
25183short
25184dwarf2_version (struct dwarf2_per_cu_data *per_cu)
25185{
25186 return per_cu->dwarf_version;
25187}
25188
348e048f
DE
25189/* Locate the .debug_info compilation unit from CU's objfile which contains
25190 the DIE at OFFSET. Raises an error on failure. */
ae038cb0
DJ
25191
25192static struct dwarf2_per_cu_data *
9c541725 25193dwarf2_find_containing_comp_unit (sect_offset sect_off,
36586728 25194 unsigned int offset_in_dwz,
ed2dc618 25195 struct dwarf2_per_objfile *dwarf2_per_objfile)
ae038cb0
DJ
25196{
25197 struct dwarf2_per_cu_data *this_cu;
25198 int low, high;
25199
ae038cb0 25200 low = 0;
b76e467d 25201 high = dwarf2_per_objfile->all_comp_units.size () - 1;
ae038cb0
DJ
25202 while (high > low)
25203 {
36586728 25204 struct dwarf2_per_cu_data *mid_cu;
ae038cb0 25205 int mid = low + (high - low) / 2;
9a619af0 25206
36586728 25207 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
36586728 25208 if (mid_cu->is_dwz > offset_in_dwz
81fbbaf9 25209 || (mid_cu->is_dwz == offset_in_dwz
45b8ae0c 25210 && mid_cu->sect_off + mid_cu->length >= sect_off))
ae038cb0
DJ
25211 high = mid;
25212 else
25213 low = mid + 1;
25214 }
25215 gdb_assert (low == high);
36586728 25216 this_cu = dwarf2_per_objfile->all_comp_units[low];
45b8ae0c 25217 if (this_cu->is_dwz != offset_in_dwz || this_cu->sect_off > sect_off)
ae038cb0 25218 {
36586728 25219 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
8a3fe4f8 25220 error (_("Dwarf Error: could not find partial DIE containing "
9d8780f0
SM
25221 "offset %s [in module %s]"),
25222 sect_offset_str (sect_off),
ed2dc618 25223 bfd_get_filename (dwarf2_per_objfile->objfile->obfd));
10b3939b 25224
9c541725
PA
25225 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->sect_off
25226 <= sect_off);
ae038cb0
DJ
25227 return dwarf2_per_objfile->all_comp_units[low-1];
25228 }
25229 else
25230 {
b76e467d 25231 if (low == dwarf2_per_objfile->all_comp_units.size () - 1
9c541725 25232 && sect_off >= this_cu->sect_off + this_cu->length)
9d8780f0 25233 error (_("invalid dwarf2 offset %s"), sect_offset_str (sect_off));
9c541725 25234 gdb_assert (sect_off < this_cu->sect_off + this_cu->length);
ae038cb0
DJ
25235 return this_cu;
25236 }
25237}
25238
23745b47 25239/* Initialize dwarf2_cu CU, owned by PER_CU. */
93311388 25240
fcd3b13d
SM
25241dwarf2_cu::dwarf2_cu (struct dwarf2_per_cu_data *per_cu_)
25242 : per_cu (per_cu_),
9068261f
AB
25243 mark (false),
25244 has_loclist (false),
25245 checked_producer (false),
25246 producer_is_gxx_lt_4_6 (false),
25247 producer_is_gcc_lt_4_3 (false),
eb77c9df 25248 producer_is_icc (false),
9068261f 25249 producer_is_icc_lt_14 (false),
c258c396 25250 producer_is_codewarrior (false),
9068261f 25251 processing_has_namespace_info (false)
93311388 25252{
fcd3b13d
SM
25253 per_cu->cu = this;
25254}
25255
25256/* Destroy a dwarf2_cu. */
25257
25258dwarf2_cu::~dwarf2_cu ()
25259{
25260 per_cu->cu = NULL;
9816fde3
JK
25261}
25262
25263/* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
25264
25265static void
95554aad
TT
25266prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
25267 enum language pretend_language)
9816fde3
JK
25268{
25269 struct attribute *attr;
25270
25271 /* Set the language we're debugging. */
25272 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
25273 if (attr)
25274 set_cu_language (DW_UNSND (attr), cu);
25275 else
9cded63f 25276 {
95554aad 25277 cu->language = pretend_language;
9cded63f
TT
25278 cu->language_defn = language_def (cu->language);
25279 }
dee91e82 25280
7d45c7c3 25281 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
93311388
DE
25282}
25283
ae038cb0
DJ
25284/* Increase the age counter on each cached compilation unit, and free
25285 any that are too old. */
25286
25287static void
ed2dc618 25288age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
ae038cb0
DJ
25289{
25290 struct dwarf2_per_cu_data *per_cu, **last_chain;
25291
25292 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
25293 per_cu = dwarf2_per_objfile->read_in_chain;
25294 while (per_cu != NULL)
25295 {
25296 per_cu->cu->last_used ++;
b4f54984 25297 if (per_cu->cu->last_used <= dwarf_max_cache_age)
ae038cb0
DJ
25298 dwarf2_mark (per_cu->cu);
25299 per_cu = per_cu->cu->read_in_chain;
25300 }
25301
25302 per_cu = dwarf2_per_objfile->read_in_chain;
25303 last_chain = &dwarf2_per_objfile->read_in_chain;
25304 while (per_cu != NULL)
25305 {
25306 struct dwarf2_per_cu_data *next_cu;
25307
25308 next_cu = per_cu->cu->read_in_chain;
25309
25310 if (!per_cu->cu->mark)
25311 {
fcd3b13d 25312 delete per_cu->cu;
ae038cb0
DJ
25313 *last_chain = next_cu;
25314 }
25315 else
25316 last_chain = &per_cu->cu->read_in_chain;
25317
25318 per_cu = next_cu;
25319 }
25320}
25321
25322/* Remove a single compilation unit from the cache. */
25323
25324static void
dee91e82 25325free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
ae038cb0
DJ
25326{
25327 struct dwarf2_per_cu_data *per_cu, **last_chain;
ed2dc618
SM
25328 struct dwarf2_per_objfile *dwarf2_per_objfile
25329 = target_per_cu->dwarf2_per_objfile;
ae038cb0
DJ
25330
25331 per_cu = dwarf2_per_objfile->read_in_chain;
25332 last_chain = &dwarf2_per_objfile->read_in_chain;
25333 while (per_cu != NULL)
25334 {
25335 struct dwarf2_per_cu_data *next_cu;
25336
25337 next_cu = per_cu->cu->read_in_chain;
25338
dee91e82 25339 if (per_cu == target_per_cu)
ae038cb0 25340 {
fcd3b13d 25341 delete per_cu->cu;
dee91e82 25342 per_cu->cu = NULL;
ae038cb0
DJ
25343 *last_chain = next_cu;
25344 break;
25345 }
25346 else
25347 last_chain = &per_cu->cu->read_in_chain;
25348
25349 per_cu = next_cu;
25350 }
25351}
25352
d95d3aef 25353/* Cleanup function for the dwarf2_per_objfile data. */
fe3e1990 25354
d95d3aef
TT
25355static void
25356dwarf2_free_objfile (struct objfile *objfile, void *datum)
fe3e1990 25357{
ed2dc618 25358 struct dwarf2_per_objfile *dwarf2_per_objfile
d95d3aef 25359 = static_cast<struct dwarf2_per_objfile *> (datum);
fe3e1990 25360
fd90ace4 25361 delete dwarf2_per_objfile;
fe3e1990
DJ
25362}
25363
dee91e82
DE
25364/* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
25365 We store these in a hash table separate from the DIEs, and preserve them
25366 when the DIEs are flushed out of cache.
25367
25368 The CU "per_cu" pointer is needed because offset alone is not enough to
3019eac3 25369 uniquely identify the type. A file may have multiple .debug_types sections,
c88ee1f0
DE
25370 or the type may come from a DWO file. Furthermore, while it's more logical
25371 to use per_cu->section+offset, with Fission the section with the data is in
25372 the DWO file but we don't know that section at the point we need it.
25373 We have to use something in dwarf2_per_cu_data (or the pointer to it)
25374 because we can enter the lookup routine, get_die_type_at_offset, from
25375 outside this file, and thus won't necessarily have PER_CU->cu.
25376 Fortunately, PER_CU is stable for the life of the objfile. */
1c379e20 25377
dee91e82 25378struct dwarf2_per_cu_offset_and_type
1c379e20 25379{
dee91e82 25380 const struct dwarf2_per_cu_data *per_cu;
9c541725 25381 sect_offset sect_off;
1c379e20
DJ
25382 struct type *type;
25383};
25384
dee91e82 25385/* Hash function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
25386
25387static hashval_t
dee91e82 25388per_cu_offset_and_type_hash (const void *item)
1c379e20 25389{
9a3c8263
SM
25390 const struct dwarf2_per_cu_offset_and_type *ofs
25391 = (const struct dwarf2_per_cu_offset_and_type *) item;
9a619af0 25392
9c541725 25393 return (uintptr_t) ofs->per_cu + to_underlying (ofs->sect_off);
1c379e20
DJ
25394}
25395
dee91e82 25396/* Equality function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
25397
25398static int
dee91e82 25399per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
1c379e20 25400{
9a3c8263
SM
25401 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
25402 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
25403 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
25404 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
9a619af0 25405
dee91e82 25406 return (ofs_lhs->per_cu == ofs_rhs->per_cu
9c541725 25407 && ofs_lhs->sect_off == ofs_rhs->sect_off);
1c379e20
DJ
25408}
25409
25410/* Set the type associated with DIE to TYPE. Save it in CU's hash
7e314c57
JK
25411 table if necessary. For convenience, return TYPE.
25412
25413 The DIEs reading must have careful ordering to:
25414 * Not cause infite loops trying to read in DIEs as a prerequisite for
25415 reading current DIE.
25416 * Not trying to dereference contents of still incompletely read in types
25417 while reading in other DIEs.
25418 * Enable referencing still incompletely read in types just by a pointer to
25419 the type without accessing its fields.
25420
25421 Therefore caller should follow these rules:
25422 * Try to fetch any prerequisite types we may need to build this DIE type
25423 before building the type and calling set_die_type.
e71ec853 25424 * After building type call set_die_type for current DIE as soon as
7e314c57
JK
25425 possible before fetching more types to complete the current type.
25426 * Make the type as complete as possible before fetching more types. */
1c379e20 25427
f792889a 25428static struct type *
1c379e20
DJ
25429set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
25430{
518817b3
SM
25431 struct dwarf2_per_objfile *dwarf2_per_objfile
25432 = cu->per_cu->dwarf2_per_objfile;
dee91e82 25433 struct dwarf2_per_cu_offset_and_type **slot, ofs;
ed2dc618 25434 struct objfile *objfile = dwarf2_per_objfile->objfile;
3cdcd0ce
JB
25435 struct attribute *attr;
25436 struct dynamic_prop prop;
1c379e20 25437
b4ba55a1
JB
25438 /* For Ada types, make sure that the gnat-specific data is always
25439 initialized (if not already set). There are a few types where
25440 we should not be doing so, because the type-specific area is
25441 already used to hold some other piece of info (eg: TYPE_CODE_FLT
25442 where the type-specific area is used to store the floatformat).
25443 But this is not a problem, because the gnat-specific information
25444 is actually not needed for these types. */
25445 if (need_gnat_info (cu)
25446 && TYPE_CODE (type) != TYPE_CODE_FUNC
25447 && TYPE_CODE (type) != TYPE_CODE_FLT
09e2d7c7
DE
25448 && TYPE_CODE (type) != TYPE_CODE_METHODPTR
25449 && TYPE_CODE (type) != TYPE_CODE_MEMBERPTR
25450 && TYPE_CODE (type) != TYPE_CODE_METHOD
b4ba55a1
JB
25451 && !HAVE_GNAT_AUX_INFO (type))
25452 INIT_GNAT_SPECIFIC (type);
25453
3f2f83dd
KB
25454 /* Read DW_AT_allocated and set in type. */
25455 attr = dwarf2_attr (die, DW_AT_allocated, cu);
25456 if (attr_form_is_block (attr))
25457 {
25458 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25459 add_dyn_prop (DYN_PROP_ALLOCATED, prop, type);
3f2f83dd
KB
25460 }
25461 else if (attr != NULL)
25462 {
b98664d3 25463 complaint (_("DW_AT_allocated has the wrong form (%s) at DIE %s"),
9c541725 25464 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 25465 sect_offset_str (die->sect_off));
3f2f83dd
KB
25466 }
25467
25468 /* Read DW_AT_associated and set in type. */
25469 attr = dwarf2_attr (die, DW_AT_associated, cu);
25470 if (attr_form_is_block (attr))
25471 {
25472 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25473 add_dyn_prop (DYN_PROP_ASSOCIATED, prop, type);
3f2f83dd
KB
25474 }
25475 else if (attr != NULL)
25476 {
b98664d3 25477 complaint (_("DW_AT_associated has the wrong form (%s) at DIE %s"),
9c541725 25478 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 25479 sect_offset_str (die->sect_off));
3f2f83dd
KB
25480 }
25481
3cdcd0ce
JB
25482 /* Read DW_AT_data_location and set in type. */
25483 attr = dwarf2_attr (die, DW_AT_data_location, cu);
25484 if (attr_to_dynamic_prop (attr, die, cu, &prop))
50a82047 25485 add_dyn_prop (DYN_PROP_DATA_LOCATION, prop, type);
3cdcd0ce 25486
dee91e82 25487 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 25488 {
dee91e82
DE
25489 dwarf2_per_objfile->die_type_hash =
25490 htab_create_alloc_ex (127,
25491 per_cu_offset_and_type_hash,
25492 per_cu_offset_and_type_eq,
25493 NULL,
25494 &objfile->objfile_obstack,
25495 hashtab_obstack_allocate,
25496 dummy_obstack_deallocate);
f792889a 25497 }
1c379e20 25498
dee91e82 25499 ofs.per_cu = cu->per_cu;
9c541725 25500 ofs.sect_off = die->sect_off;
1c379e20 25501 ofs.type = type;
dee91e82
DE
25502 slot = (struct dwarf2_per_cu_offset_and_type **)
25503 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
7e314c57 25504 if (*slot)
b98664d3 25505 complaint (_("A problem internal to GDB: DIE %s has type already set"),
9d8780f0 25506 sect_offset_str (die->sect_off));
8d749320
SM
25507 *slot = XOBNEW (&objfile->objfile_obstack,
25508 struct dwarf2_per_cu_offset_and_type);
1c379e20 25509 **slot = ofs;
f792889a 25510 return type;
1c379e20
DJ
25511}
25512
9c541725 25513/* Look up the type for the die at SECT_OFF in PER_CU in die_type_hash,
02142a6c 25514 or return NULL if the die does not have a saved type. */
1c379e20
DJ
25515
25516static struct type *
9c541725 25517get_die_type_at_offset (sect_offset sect_off,
673bfd45 25518 struct dwarf2_per_cu_data *per_cu)
1c379e20 25519{
dee91e82 25520 struct dwarf2_per_cu_offset_and_type *slot, ofs;
ed2dc618 25521 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
f792889a 25522
dee91e82 25523 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 25524 return NULL;
1c379e20 25525
dee91e82 25526 ofs.per_cu = per_cu;
9c541725 25527 ofs.sect_off = sect_off;
9a3c8263
SM
25528 slot = ((struct dwarf2_per_cu_offset_and_type *)
25529 htab_find (dwarf2_per_objfile->die_type_hash, &ofs));
1c379e20
DJ
25530 if (slot)
25531 return slot->type;
25532 else
25533 return NULL;
25534}
25535
02142a6c 25536/* Look up the type for DIE in CU in die_type_hash,
673bfd45
DE
25537 or return NULL if DIE does not have a saved type. */
25538
25539static struct type *
25540get_die_type (struct die_info *die, struct dwarf2_cu *cu)
25541{
9c541725 25542 return get_die_type_at_offset (die->sect_off, cu->per_cu);
673bfd45
DE
25543}
25544
10b3939b
DJ
25545/* Add a dependence relationship from CU to REF_PER_CU. */
25546
25547static void
25548dwarf2_add_dependence (struct dwarf2_cu *cu,
25549 struct dwarf2_per_cu_data *ref_per_cu)
25550{
25551 void **slot;
25552
25553 if (cu->dependencies == NULL)
25554 cu->dependencies
25555 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
25556 NULL, &cu->comp_unit_obstack,
25557 hashtab_obstack_allocate,
25558 dummy_obstack_deallocate);
25559
25560 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
25561 if (*slot == NULL)
25562 *slot = ref_per_cu;
25563}
1c379e20 25564
f504f079
DE
25565/* Subroutine of dwarf2_mark to pass to htab_traverse.
25566 Set the mark field in every compilation unit in the
ae038cb0
DJ
25567 cache that we must keep because we are keeping CU. */
25568
10b3939b
DJ
25569static int
25570dwarf2_mark_helper (void **slot, void *data)
25571{
25572 struct dwarf2_per_cu_data *per_cu;
25573
25574 per_cu = (struct dwarf2_per_cu_data *) *slot;
d07ed419
JK
25575
25576 /* cu->dependencies references may not yet have been ever read if QUIT aborts
25577 reading of the chain. As such dependencies remain valid it is not much
25578 useful to track and undo them during QUIT cleanups. */
25579 if (per_cu->cu == NULL)
25580 return 1;
25581
10b3939b
DJ
25582 if (per_cu->cu->mark)
25583 return 1;
9068261f 25584 per_cu->cu->mark = true;
10b3939b
DJ
25585
25586 if (per_cu->cu->dependencies != NULL)
25587 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
25588
25589 return 1;
25590}
25591
f504f079
DE
25592/* Set the mark field in CU and in every other compilation unit in the
25593 cache that we must keep because we are keeping CU. */
25594
ae038cb0
DJ
25595static void
25596dwarf2_mark (struct dwarf2_cu *cu)
25597{
25598 if (cu->mark)
25599 return;
9068261f 25600 cu->mark = true;
10b3939b
DJ
25601 if (cu->dependencies != NULL)
25602 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
ae038cb0
DJ
25603}
25604
25605static void
25606dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
25607{
25608 while (per_cu)
25609 {
9068261f 25610 per_cu->cu->mark = false;
ae038cb0
DJ
25611 per_cu = per_cu->cu->read_in_chain;
25612 }
72bf9492
DJ
25613}
25614
72bf9492
DJ
25615/* Trivial hash function for partial_die_info: the hash value of a DIE
25616 is its offset in .debug_info for this objfile. */
25617
25618static hashval_t
25619partial_die_hash (const void *item)
25620{
9a3c8263
SM
25621 const struct partial_die_info *part_die
25622 = (const struct partial_die_info *) item;
9a619af0 25623
9c541725 25624 return to_underlying (part_die->sect_off);
72bf9492
DJ
25625}
25626
25627/* Trivial comparison function for partial_die_info structures: two DIEs
25628 are equal if they have the same offset. */
25629
25630static int
25631partial_die_eq (const void *item_lhs, const void *item_rhs)
25632{
9a3c8263
SM
25633 const struct partial_die_info *part_die_lhs
25634 = (const struct partial_die_info *) item_lhs;
25635 const struct partial_die_info *part_die_rhs
25636 = (const struct partial_die_info *) item_rhs;
9a619af0 25637
9c541725 25638 return part_die_lhs->sect_off == part_die_rhs->sect_off;
72bf9492
DJ
25639}
25640
3c3bb058
AB
25641struct cmd_list_element *set_dwarf_cmdlist;
25642struct cmd_list_element *show_dwarf_cmdlist;
ae038cb0
DJ
25643
25644static void
981a3fb3 25645set_dwarf_cmd (const char *args, int from_tty)
ae038cb0 25646{
b4f54984 25647 help_list (set_dwarf_cmdlist, "maintenance set dwarf ", all_commands,
635c7e8a 25648 gdb_stdout);
ae038cb0
DJ
25649}
25650
25651static void
981a3fb3 25652show_dwarf_cmd (const char *args, int from_tty)
6e70227d 25653{
b4f54984 25654 cmd_show_list (show_dwarf_cmdlist, from_tty, "");
ae038cb0
DJ
25655}
25656
cd4fb1b2 25657int dwarf_always_disassemble;
437afbb8 25658
437afbb8 25659static void
cd4fb1b2
SM
25660show_dwarf_always_disassemble (struct ui_file *file, int from_tty,
25661 struct cmd_list_element *c, const char *value)
9291a0cd 25662{
cd4fb1b2
SM
25663 fprintf_filtered (file,
25664 _("Whether to always disassemble "
25665 "DWARF expressions is %s.\n"),
25666 value);
9291a0cd
TT
25667}
25668
9291a0cd 25669static void
cd4fb1b2
SM
25670show_check_physname (struct ui_file *file, int from_tty,
25671 struct cmd_list_element *c, const char *value)
9291a0cd 25672{
cd4fb1b2
SM
25673 fprintf_filtered (file,
25674 _("Whether to check \"physname\" is %s.\n"),
25675 value);
9291a0cd
TT
25676}
25677
cd4fb1b2
SM
25678void
25679_initialize_dwarf2_read (void)
9291a0cd 25680{
d95d3aef
TT
25681 dwarf2_objfile_data_key
25682 = register_objfile_data_with_cleanup (nullptr, dwarf2_free_objfile);
156942c7 25683
cd4fb1b2
SM
25684 add_prefix_cmd ("dwarf", class_maintenance, set_dwarf_cmd, _("\
25685Set DWARF specific variables.\n\
25686Configure DWARF variables such as the cache size"),
25687 &set_dwarf_cmdlist, "maintenance set dwarf ",
25688 0/*allow-unknown*/, &maintenance_set_cmdlist);
156942c7 25689
cd4fb1b2
SM
25690 add_prefix_cmd ("dwarf", class_maintenance, show_dwarf_cmd, _("\
25691Show DWARF specific variables\n\
25692Show DWARF variables such as the cache size"),
25693 &show_dwarf_cmdlist, "maintenance show dwarf ",
25694 0/*allow-unknown*/, &maintenance_show_cmdlist);
156942c7 25695
cd4fb1b2
SM
25696 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
25697 &dwarf_max_cache_age, _("\
25698Set the upper bound on the age of cached DWARF compilation units."), _("\
25699Show the upper bound on the age of cached DWARF compilation units."), _("\
25700A higher limit means that cached compilation units will be stored\n\
25701in memory longer, and more total memory will be used. Zero disables\n\
25702caching, which can slow down startup."),
25703 NULL,
25704 show_dwarf_max_cache_age,
25705 &set_dwarf_cmdlist,
25706 &show_dwarf_cmdlist);
156942c7 25707
cd4fb1b2
SM
25708 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
25709 &dwarf_always_disassemble, _("\
25710Set whether `info address' always disassembles DWARF expressions."), _("\
25711Show whether `info address' always disassembles DWARF expressions."), _("\
25712When enabled, DWARF expressions are always printed in an assembly-like\n\
25713syntax. When disabled, expressions will be printed in a more\n\
25714conversational style, when possible."),
25715 NULL,
25716 show_dwarf_always_disassemble,
25717 &set_dwarf_cmdlist,
25718 &show_dwarf_cmdlist);
9291a0cd 25719
cd4fb1b2
SM
25720 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
25721Set debugging of the DWARF reader."), _("\
25722Show debugging of the DWARF reader."), _("\
25723When enabled (non-zero), debugging messages are printed during DWARF\n\
25724reading and symtab expansion. A value of 1 (one) provides basic\n\
25725information. A value greater than 1 provides more verbose information."),
25726 NULL,
25727 NULL,
25728 &setdebuglist, &showdebuglist);
9291a0cd 25729
cd4fb1b2
SM
25730 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
25731Set debugging of the DWARF DIE reader."), _("\
25732Show debugging of the DWARF DIE reader."), _("\
25733When enabled (non-zero), DIEs are dumped after they are read in.\n\
25734The value is the maximum depth to print."),
25735 NULL,
25736 NULL,
25737 &setdebuglist, &showdebuglist);
9291a0cd 25738
cd4fb1b2
SM
25739 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
25740Set debugging of the dwarf line reader."), _("\
25741Show debugging of the dwarf line reader."), _("\
25742When enabled (non-zero), line number entries are dumped as they are read in.\n\
25743A value of 1 (one) provides basic information.\n\
25744A value greater than 1 provides more verbose information."),
25745 NULL,
25746 NULL,
25747 &setdebuglist, &showdebuglist);
437afbb8 25748
cd4fb1b2
SM
25749 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
25750Set cross-checking of \"physname\" code against demangler."), _("\
25751Show cross-checking of \"physname\" code against demangler."), _("\
25752When enabled, GDB's internal \"physname\" code is checked against\n\
25753the demangler."),
25754 NULL, show_check_physname,
25755 &setdebuglist, &showdebuglist);
900e11f9 25756
e615022a
DE
25757 add_setshow_boolean_cmd ("use-deprecated-index-sections",
25758 no_class, &use_deprecated_index_sections, _("\
25759Set whether to use deprecated gdb_index sections."), _("\
25760Show whether to use deprecated gdb_index sections."), _("\
25761When enabled, deprecated .gdb_index sections are used anyway.\n\
25762Normally they are ignored either because of a missing feature or\n\
25763performance issue.\n\
25764Warning: This option must be enabled before gdb reads the file."),
25765 NULL,
25766 NULL,
25767 &setlist, &showlist);
25768
f1e6e072
TT
25769 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
25770 &dwarf2_locexpr_funcs);
25771 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
25772 &dwarf2_loclist_funcs);
25773
25774 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
25775 &dwarf2_block_frame_base_locexpr_funcs);
25776 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
25777 &dwarf2_block_frame_base_loclist_funcs);
c62446b1
PA
25778
25779#if GDB_SELF_TEST
25780 selftests::register_test ("dw2_expand_symtabs_matching",
25781 selftests::dw2_expand_symtabs_matching::run_test);
25782#endif
6502dd73 25783}
This page took 4.504676 seconds and 4 git commands to generate.