Only call {set,clear}_semaphore probe function if they are not NULL
[deliverable/binutils-gdb.git] / gdb / dwarf2read.c
CommitLineData
c906108c 1/* DWARF 2 debugging format support for GDB.
917c78fc 2
ecd75fc8 3 Copyright (C) 1994-2014 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
SS
31#include "defs.h"
32#include "bfd.h"
80626a55 33#include "elf-bfd.h"
c906108c
SS
34#include "symtab.h"
35#include "gdbtypes.h"
c906108c 36#include "objfiles.h"
fa8f86ff 37#include "dwarf2.h"
c906108c
SS
38#include "buildsym.h"
39#include "demangle.h"
50f182aa 40#include "gdb-demangle.h"
c906108c 41#include "expression.h"
d5166ae1 42#include "filenames.h" /* for DOSish file names */
2e276125 43#include "macrotab.h"
c906108c
SS
44#include "language.h"
45#include "complaints.h"
357e46e7 46#include "bcache.h"
4c2df51b
DJ
47#include "dwarf2expr.h"
48#include "dwarf2loc.h"
9219021c 49#include "cp-support.h"
72bf9492 50#include "hashtab.h"
ae038cb0
DJ
51#include "command.h"
52#include "gdbcmd.h"
edb3359d 53#include "block.h"
ff013f42 54#include "addrmap.h"
94af9270
KS
55#include "typeprint.h"
56#include "jv-lang.h"
ccefe4c4 57#include "psympriv.h"
53ce3c39 58#include <sys/stat.h>
96d19272 59#include "completer.h"
34eaf542 60#include "vec.h"
98bfdba5 61#include "c-lang.h"
a766d390 62#include "go-lang.h"
98bfdba5 63#include "valprint.h"
3019eac3 64#include "gdbcore.h" /* for gnutarget */
156942c7 65#include "gdb/gdb-index.h"
60d5a603 66#include <ctype.h>
cbb099e8 67#include "gdb_bfd.h"
4357ac6c 68#include "f-lang.h"
05cba821 69#include "source.h"
614c279d 70#include "filestuff.h"
dc294be5 71#include "build-id.h"
4c2df51b 72
c906108c 73#include <fcntl.h>
c906108c 74#include <sys/types.h>
d8151005 75
34eaf542
TT
76typedef struct symbol *symbolp;
77DEF_VEC_P (symbolp);
78
73be47f5
DE
79/* When == 1, print basic high level tracing messages.
80 When > 1, be more verbose.
45cfd468 81 This is in contrast to the low level DIE reading of dwarf2_die_debug. */
73be47f5 82static unsigned int dwarf2_read_debug = 0;
45cfd468 83
d97bc12b 84/* When non-zero, dump DIEs after they are read in. */
ccce17b0 85static unsigned int dwarf2_die_debug = 0;
d97bc12b 86
900e11f9
JK
87/* When non-zero, cross-check physname against demangler. */
88static int check_physname = 0;
89
481860b3 90/* When non-zero, do not reject deprecated .gdb_index sections. */
e615022a 91static int use_deprecated_index_sections = 0;
481860b3 92
6502dd73
DJ
93static const struct objfile_data *dwarf2_objfile_data_key;
94
f1e6e072
TT
95/* The "aclass" indices for various kinds of computed DWARF symbols. */
96
97static int dwarf2_locexpr_index;
98static int dwarf2_loclist_index;
99static int dwarf2_locexpr_block_index;
100static int dwarf2_loclist_block_index;
101
73869dc2
DE
102/* A descriptor for dwarf sections.
103
104 S.ASECTION, SIZE are typically initialized when the objfile is first
105 scanned. BUFFER, READIN are filled in later when the section is read.
106 If the section contained compressed data then SIZE is updated to record
107 the uncompressed size of the section.
108
109 DWP file format V2 introduces a wrinkle that is easiest to handle by
110 creating the concept of virtual sections contained within a real section.
111 In DWP V2 the sections of the input DWO files are concatenated together
112 into one section, but section offsets are kept relative to the original
113 input section.
114 If this is a virtual dwp-v2 section, S.CONTAINING_SECTION is a backlink to
115 the real section this "virtual" section is contained in, and BUFFER,SIZE
116 describe the virtual section. */
117
dce234bc
PP
118struct dwarf2_section_info
119{
73869dc2
DE
120 union
121 {
e5aa3347 122 /* If this is a real section, the bfd section. */
73869dc2
DE
123 asection *asection;
124 /* If this is a virtual section, pointer to the containing ("real")
e5aa3347 125 section. */
73869dc2
DE
126 struct dwarf2_section_info *containing_section;
127 } s;
19ac8c2e 128 /* Pointer to section data, only valid if readin. */
d521ce57 129 const gdb_byte *buffer;
73869dc2 130 /* The size of the section, real or virtual. */
dce234bc 131 bfd_size_type size;
73869dc2
DE
132 /* If this is a virtual section, the offset in the real section.
133 Only valid if is_virtual. */
134 bfd_size_type virtual_offset;
be391dca 135 /* True if we have tried to read this section. */
73869dc2
DE
136 char readin;
137 /* True if this is a virtual section, False otherwise.
138 This specifies which of s.asection and s.containing_section to use. */
139 char is_virtual;
dce234bc
PP
140};
141
8b70b953
TT
142typedef struct dwarf2_section_info dwarf2_section_info_def;
143DEF_VEC_O (dwarf2_section_info_def);
144
9291a0cd
TT
145/* All offsets in the index are of this type. It must be
146 architecture-independent. */
147typedef uint32_t offset_type;
148
149DEF_VEC_I (offset_type);
150
156942c7
DE
151/* Ensure only legit values are used. */
152#define DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE(cu_index, value) \
153 do { \
154 gdb_assert ((unsigned int) (value) <= 1); \
155 GDB_INDEX_SYMBOL_STATIC_SET_VALUE((cu_index), (value)); \
156 } while (0)
157
158/* Ensure only legit values are used. */
159#define DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE(cu_index, value) \
160 do { \
161 gdb_assert ((value) >= GDB_INDEX_SYMBOL_KIND_TYPE \
162 && (value) <= GDB_INDEX_SYMBOL_KIND_OTHER); \
163 GDB_INDEX_SYMBOL_KIND_SET_VALUE((cu_index), (value)); \
164 } while (0)
165
166/* Ensure we don't use more than the alloted nuber of bits for the CU. */
167#define DW2_GDB_INDEX_CU_SET_VALUE(cu_index, value) \
168 do { \
169 gdb_assert (((value) & ~GDB_INDEX_CU_MASK) == 0); \
170 GDB_INDEX_CU_SET_VALUE((cu_index), (value)); \
171 } while (0)
172
9291a0cd
TT
173/* A description of the mapped index. The file format is described in
174 a comment by the code that writes the index. */
175struct mapped_index
176{
559a7a62
JK
177 /* Index data format version. */
178 int version;
179
9291a0cd
TT
180 /* The total length of the buffer. */
181 off_t total_size;
b11b1f88 182
9291a0cd
TT
183 /* A pointer to the address table data. */
184 const gdb_byte *address_table;
b11b1f88 185
9291a0cd
TT
186 /* Size of the address table data in bytes. */
187 offset_type address_table_size;
b11b1f88 188
3876f04e
DE
189 /* The symbol table, implemented as a hash table. */
190 const offset_type *symbol_table;
b11b1f88 191
9291a0cd 192 /* Size in slots, each slot is 2 offset_types. */
3876f04e 193 offset_type symbol_table_slots;
b11b1f88 194
9291a0cd
TT
195 /* A pointer to the constant pool. */
196 const char *constant_pool;
197};
198
95554aad
TT
199typedef struct dwarf2_per_cu_data *dwarf2_per_cu_ptr;
200DEF_VEC_P (dwarf2_per_cu_ptr);
201
9cdd5dbd
DE
202/* Collection of data recorded per objfile.
203 This hangs off of dwarf2_objfile_data_key. */
204
6502dd73
DJ
205struct dwarf2_per_objfile
206{
dce234bc
PP
207 struct dwarf2_section_info info;
208 struct dwarf2_section_info abbrev;
209 struct dwarf2_section_info line;
dce234bc
PP
210 struct dwarf2_section_info loc;
211 struct dwarf2_section_info macinfo;
cf2c3c16 212 struct dwarf2_section_info macro;
dce234bc
PP
213 struct dwarf2_section_info str;
214 struct dwarf2_section_info ranges;
3019eac3 215 struct dwarf2_section_info addr;
dce234bc
PP
216 struct dwarf2_section_info frame;
217 struct dwarf2_section_info eh_frame;
9291a0cd 218 struct dwarf2_section_info gdb_index;
ae038cb0 219
8b70b953
TT
220 VEC (dwarf2_section_info_def) *types;
221
be391dca
TT
222 /* Back link. */
223 struct objfile *objfile;
224
d467dd73 225 /* Table of all the compilation units. This is used to locate
10b3939b 226 the target compilation unit of a particular reference. */
ae038cb0
DJ
227 struct dwarf2_per_cu_data **all_comp_units;
228
229 /* The number of compilation units in ALL_COMP_UNITS. */
230 int n_comp_units;
231
1fd400ff 232 /* The number of .debug_types-related CUs. */
d467dd73 233 int n_type_units;
1fd400ff 234
6aa5f3a6
DE
235 /* The number of elements allocated in all_type_units.
236 If there are skeleton-less TUs, we add them to all_type_units lazily. */
237 int n_allocated_type_units;
238
a2ce51a0
DE
239 /* The .debug_types-related CUs (TUs).
240 This is stored in malloc space because we may realloc it. */
b4dd5633 241 struct signatured_type **all_type_units;
1fd400ff 242
f4dc4d17
DE
243 /* Table of struct type_unit_group objects.
244 The hash key is the DW_AT_stmt_list value. */
245 htab_t type_unit_groups;
72dca2f5 246
348e048f
DE
247 /* A table mapping .debug_types signatures to its signatured_type entry.
248 This is NULL if the .debug_types section hasn't been read in yet. */
249 htab_t signatured_types;
250
f4dc4d17
DE
251 /* Type unit statistics, to see how well the scaling improvements
252 are doing. */
253 struct tu_stats
254 {
255 int nr_uniq_abbrev_tables;
256 int nr_symtabs;
257 int nr_symtab_sharers;
258 int nr_stmt_less_type_units;
6aa5f3a6 259 int nr_all_type_units_reallocs;
f4dc4d17
DE
260 } tu_stats;
261
262 /* A chain of compilation units that are currently read in, so that
263 they can be freed later. */
264 struct dwarf2_per_cu_data *read_in_chain;
265
3019eac3
DE
266 /* A table mapping DW_AT_dwo_name values to struct dwo_file objects.
267 This is NULL if the table hasn't been allocated yet. */
268 htab_t dwo_files;
269
80626a55
DE
270 /* Non-zero if we've check for whether there is a DWP file. */
271 int dwp_checked;
272
273 /* The DWP file if there is one, or NULL. */
274 struct dwp_file *dwp_file;
275
36586728
TT
276 /* The shared '.dwz' file, if one exists. This is used when the
277 original data was compressed using 'dwz -m'. */
278 struct dwz_file *dwz_file;
279
72dca2f5
FR
280 /* A flag indicating wether this objfile has a section loaded at a
281 VMA of 0. */
282 int has_section_at_zero;
9291a0cd 283
ae2de4f8
DE
284 /* True if we are using the mapped index,
285 or we are faking it for OBJF_READNOW's sake. */
9291a0cd
TT
286 unsigned char using_index;
287
ae2de4f8 288 /* The mapped index, or NULL if .gdb_index is missing or not being used. */
9291a0cd 289 struct mapped_index *index_table;
98bfdba5 290
7b9f3c50 291 /* When using index_table, this keeps track of all quick_file_names entries.
56e64610
DE
292 TUs typically share line table entries with a CU, so we maintain a
293 separate table of all line table entries to support the sharing.
294 Note that while there can be way more TUs than CUs, we've already
295 sorted all the TUs into "type unit groups", grouped by their
296 DW_AT_stmt_list value. Therefore the only sharing done here is with a
297 CU and its associated TU group if there is one. */
7b9f3c50
DE
298 htab_t quick_file_names_table;
299
98bfdba5
PA
300 /* Set during partial symbol reading, to prevent queueing of full
301 symbols. */
302 int reading_partial_symbols;
673bfd45 303
dee91e82 304 /* Table mapping type DIEs to their struct type *.
673bfd45 305 This is NULL if not allocated yet.
02142a6c 306 The mapping is done via (CU/TU + DIE offset) -> type. */
dee91e82 307 htab_t die_type_hash;
95554aad
TT
308
309 /* The CUs we recently read. */
310 VEC (dwarf2_per_cu_ptr) *just_read_cus;
6502dd73
DJ
311};
312
313static struct dwarf2_per_objfile *dwarf2_per_objfile;
c906108c 314
251d32d9 315/* Default names of the debugging sections. */
c906108c 316
233a11ab
CS
317/* Note that if the debugging section has been compressed, it might
318 have a name like .zdebug_info. */
319
9cdd5dbd
DE
320static const struct dwarf2_debug_sections dwarf2_elf_names =
321{
251d32d9
TG
322 { ".debug_info", ".zdebug_info" },
323 { ".debug_abbrev", ".zdebug_abbrev" },
324 { ".debug_line", ".zdebug_line" },
325 { ".debug_loc", ".zdebug_loc" },
326 { ".debug_macinfo", ".zdebug_macinfo" },
cf2c3c16 327 { ".debug_macro", ".zdebug_macro" },
251d32d9
TG
328 { ".debug_str", ".zdebug_str" },
329 { ".debug_ranges", ".zdebug_ranges" },
330 { ".debug_types", ".zdebug_types" },
3019eac3 331 { ".debug_addr", ".zdebug_addr" },
251d32d9
TG
332 { ".debug_frame", ".zdebug_frame" },
333 { ".eh_frame", NULL },
24d3216f
TT
334 { ".gdb_index", ".zgdb_index" },
335 23
251d32d9 336};
c906108c 337
80626a55 338/* List of DWO/DWP sections. */
3019eac3 339
80626a55 340static const struct dwop_section_names
3019eac3
DE
341{
342 struct dwarf2_section_names abbrev_dwo;
343 struct dwarf2_section_names info_dwo;
344 struct dwarf2_section_names line_dwo;
345 struct dwarf2_section_names loc_dwo;
09262596
DE
346 struct dwarf2_section_names macinfo_dwo;
347 struct dwarf2_section_names macro_dwo;
3019eac3
DE
348 struct dwarf2_section_names str_dwo;
349 struct dwarf2_section_names str_offsets_dwo;
350 struct dwarf2_section_names types_dwo;
80626a55
DE
351 struct dwarf2_section_names cu_index;
352 struct dwarf2_section_names tu_index;
3019eac3 353}
80626a55 354dwop_section_names =
3019eac3
DE
355{
356 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
357 { ".debug_info.dwo", ".zdebug_info.dwo" },
358 { ".debug_line.dwo", ".zdebug_line.dwo" },
359 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
09262596
DE
360 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
361 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
3019eac3
DE
362 { ".debug_str.dwo", ".zdebug_str.dwo" },
363 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
364 { ".debug_types.dwo", ".zdebug_types.dwo" },
80626a55
DE
365 { ".debug_cu_index", ".zdebug_cu_index" },
366 { ".debug_tu_index", ".zdebug_tu_index" },
3019eac3
DE
367};
368
c906108c
SS
369/* local data types */
370
107d2387
AC
371/* The data in a compilation unit header, after target2host
372 translation, looks like this. */
c906108c 373struct comp_unit_head
a738430d 374{
c764a876 375 unsigned int length;
a738430d 376 short version;
a738430d
MK
377 unsigned char addr_size;
378 unsigned char signed_addr_p;
b64f50a1 379 sect_offset abbrev_offset;
57349743 380
a738430d
MK
381 /* Size of file offsets; either 4 or 8. */
382 unsigned int offset_size;
57349743 383
a738430d
MK
384 /* Size of the length field; either 4 or 12. */
385 unsigned int initial_length_size;
57349743 386
a738430d
MK
387 /* Offset to the first byte of this compilation unit header in the
388 .debug_info section, for resolving relative reference dies. */
b64f50a1 389 sect_offset offset;
57349743 390
d00adf39
DE
391 /* Offset to first die in this cu from the start of the cu.
392 This will be the first byte following the compilation unit header. */
b64f50a1 393 cu_offset first_die_offset;
a738430d 394};
c906108c 395
3da10d80
KS
396/* Type used for delaying computation of method physnames.
397 See comments for compute_delayed_physnames. */
398struct delayed_method_info
399{
400 /* The type to which the method is attached, i.e., its parent class. */
401 struct type *type;
402
403 /* The index of the method in the type's function fieldlists. */
404 int fnfield_index;
405
406 /* The index of the method in the fieldlist. */
407 int index;
408
409 /* The name of the DIE. */
410 const char *name;
411
412 /* The DIE associated with this method. */
413 struct die_info *die;
414};
415
416typedef struct delayed_method_info delayed_method_info;
417DEF_VEC_O (delayed_method_info);
418
e7c27a73
DJ
419/* Internal state when decoding a particular compilation unit. */
420struct dwarf2_cu
421{
422 /* The objfile containing this compilation unit. */
423 struct objfile *objfile;
424
d00adf39 425 /* The header of the compilation unit. */
e7c27a73 426 struct comp_unit_head header;
e142c38c 427
d00adf39
DE
428 /* Base address of this compilation unit. */
429 CORE_ADDR base_address;
430
431 /* Non-zero if base_address has been set. */
432 int base_known;
433
e142c38c
DJ
434 /* The language we are debugging. */
435 enum language language;
436 const struct language_defn *language_defn;
437
b0f35d58
DL
438 const char *producer;
439
e142c38c
DJ
440 /* The generic symbol table building routines have separate lists for
441 file scope symbols and all all other scopes (local scopes). So
442 we need to select the right one to pass to add_symbol_to_list().
443 We do it by keeping a pointer to the correct list in list_in_scope.
444
445 FIXME: The original dwarf code just treated the file scope as the
446 first local scope, and all other local scopes as nested local
447 scopes, and worked fine. Check to see if we really need to
448 distinguish these in buildsym.c. */
449 struct pending **list_in_scope;
450
433df2d4
DE
451 /* The abbrev table for this CU.
452 Normally this points to the abbrev table in the objfile.
453 But if DWO_UNIT is non-NULL this is the abbrev table in the DWO file. */
454 struct abbrev_table *abbrev_table;
72bf9492 455
b64f50a1
JK
456 /* Hash table holding all the loaded partial DIEs
457 with partial_die->offset.SECT_OFF as hash. */
72bf9492
DJ
458 htab_t partial_dies;
459
460 /* Storage for things with the same lifetime as this read-in compilation
461 unit, including partial DIEs. */
462 struct obstack comp_unit_obstack;
463
ae038cb0
DJ
464 /* When multiple dwarf2_cu structures are living in memory, this field
465 chains them all together, so that they can be released efficiently.
466 We will probably also want a generation counter so that most-recently-used
467 compilation units are cached... */
468 struct dwarf2_per_cu_data *read_in_chain;
469
69d751e3 470 /* Backlink to our per_cu entry. */
ae038cb0
DJ
471 struct dwarf2_per_cu_data *per_cu;
472
473 /* How many compilation units ago was this CU last referenced? */
474 int last_used;
475
b64f50a1
JK
476 /* A hash table of DIE cu_offset for following references with
477 die_info->offset.sect_off as hash. */
51545339 478 htab_t die_hash;
10b3939b
DJ
479
480 /* Full DIEs if read in. */
481 struct die_info *dies;
482
483 /* A set of pointers to dwarf2_per_cu_data objects for compilation
484 units referenced by this one. Only set during full symbol processing;
485 partial symbol tables do not have dependencies. */
486 htab_t dependencies;
487
cb1df416
DJ
488 /* Header data from the line table, during full symbol processing. */
489 struct line_header *line_header;
490
3da10d80
KS
491 /* A list of methods which need to have physnames computed
492 after all type information has been read. */
493 VEC (delayed_method_info) *method_list;
494
96408a79
SA
495 /* To be copied to symtab->call_site_htab. */
496 htab_t call_site_htab;
497
034e5797
DE
498 /* Non-NULL if this CU came from a DWO file.
499 There is an invariant here that is important to remember:
500 Except for attributes copied from the top level DIE in the "main"
501 (or "stub") file in preparation for reading the DWO file
502 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
503 Either there isn't a DWO file (in which case this is NULL and the point
504 is moot), or there is and either we're not going to read it (in which
505 case this is NULL) or there is and we are reading it (in which case this
506 is non-NULL). */
3019eac3
DE
507 struct dwo_unit *dwo_unit;
508
509 /* The DW_AT_addr_base attribute if present, zero otherwise
510 (zero is a valid value though).
1dbab08b 511 Note this value comes from the Fission stub CU/TU's DIE. */
3019eac3
DE
512 ULONGEST addr_base;
513
2e3cf129
DE
514 /* The DW_AT_ranges_base attribute if present, zero otherwise
515 (zero is a valid value though).
1dbab08b 516 Note this value comes from the Fission stub CU/TU's DIE.
2e3cf129 517 Also note that the value is zero in the non-DWO case so this value can
ab435259
DE
518 be used without needing to know whether DWO files are in use or not.
519 N.B. This does not apply to DW_AT_ranges appearing in
520 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
521 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
522 DW_AT_ranges_base *would* have to be applied, and we'd have to care
523 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
2e3cf129
DE
524 ULONGEST ranges_base;
525
ae038cb0
DJ
526 /* Mark used when releasing cached dies. */
527 unsigned int mark : 1;
528
8be455d7
JK
529 /* This CU references .debug_loc. See the symtab->locations_valid field.
530 This test is imperfect as there may exist optimized debug code not using
531 any location list and still facing inlining issues if handled as
532 unoptimized code. For a future better test see GCC PR other/32998. */
8be455d7 533 unsigned int has_loclist : 1;
ba919b58 534
1b80a9fa
JK
535 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is set
536 if all the producer_is_* fields are valid. This information is cached
537 because profiling CU expansion showed excessive time spent in
538 producer_is_gxx_lt_4_6. */
ba919b58
TT
539 unsigned int checked_producer : 1;
540 unsigned int producer_is_gxx_lt_4_6 : 1;
1b80a9fa 541 unsigned int producer_is_gcc_lt_4_3 : 1;
685b1105 542 unsigned int producer_is_icc : 1;
4d4ec4e5
TT
543
544 /* When set, the file that we're processing is known to have
545 debugging info for C++ namespaces. GCC 3.3.x did not produce
546 this information, but later versions do. */
547
548 unsigned int processing_has_namespace_info : 1;
e7c27a73
DJ
549};
550
10b3939b
DJ
551/* Persistent data held for a compilation unit, even when not
552 processing it. We put a pointer to this structure in the
28dee7f5 553 read_symtab_private field of the psymtab. */
10b3939b 554
ae038cb0
DJ
555struct dwarf2_per_cu_data
556{
36586728 557 /* The start offset and length of this compilation unit.
45452591 558 NOTE: Unlike comp_unit_head.length, this length includes
3019eac3
DE
559 initial_length_size.
560 If the DIE refers to a DWO file, this is always of the original die,
561 not the DWO file. */
b64f50a1 562 sect_offset offset;
36586728 563 unsigned int length;
ae038cb0
DJ
564
565 /* Flag indicating this compilation unit will be read in before
566 any of the current compilation units are processed. */
c764a876 567 unsigned int queued : 1;
ae038cb0 568
0d99eb77
DE
569 /* This flag will be set when reading partial DIEs if we need to load
570 absolutely all DIEs for this compilation unit, instead of just the ones
571 we think are interesting. It gets set if we look for a DIE in the
5afb4e99
DJ
572 hash table and don't find it. */
573 unsigned int load_all_dies : 1;
574
0186c6a7
DE
575 /* Non-zero if this CU is from .debug_types.
576 Struct dwarf2_per_cu_data is contained in struct signatured_type iff
577 this is non-zero. */
3019eac3
DE
578 unsigned int is_debug_types : 1;
579
36586728
TT
580 /* Non-zero if this CU is from the .dwz file. */
581 unsigned int is_dwz : 1;
582
a2ce51a0
DE
583 /* Non-zero if reading a TU directly from a DWO file, bypassing the stub.
584 This flag is only valid if is_debug_types is true.
585 We can't read a CU directly from a DWO file: There are required
586 attributes in the stub. */
587 unsigned int reading_dwo_directly : 1;
588
7ee85ab1
DE
589 /* Non-zero if the TU has been read.
590 This is used to assist the "Stay in DWO Optimization" for Fission:
591 When reading a DWO, it's faster to read TUs from the DWO instead of
592 fetching them from random other DWOs (due to comdat folding).
593 If the TU has already been read, the optimization is unnecessary
594 (and unwise - we don't want to change where gdb thinks the TU lives
595 "midflight").
596 This flag is only valid if is_debug_types is true. */
597 unsigned int tu_read : 1;
598
3019eac3
DE
599 /* The section this CU/TU lives in.
600 If the DIE refers to a DWO file, this is always the original die,
601 not the DWO file. */
8a0459fd 602 struct dwarf2_section_info *section;
348e048f 603
17ea53c3
JK
604 /* Set to non-NULL iff this CU is currently loaded. When it gets freed out
605 of the CU cache it gets reset to NULL again. */
ae038cb0 606 struct dwarf2_cu *cu;
1c379e20 607
9cdd5dbd
DE
608 /* The corresponding objfile.
609 Normally we can get the objfile from dwarf2_per_objfile.
610 However we can enter this file with just a "per_cu" handle. */
9291a0cd
TT
611 struct objfile *objfile;
612
fffbe6a8
YQ
613 /* When dwarf2_per_objfile->using_index is true, the 'quick' field
614 is active. Otherwise, the 'psymtab' field is active. */
9291a0cd
TT
615 union
616 {
617 /* The partial symbol table associated with this compilation unit,
95554aad 618 or NULL for unread partial units. */
9291a0cd
TT
619 struct partial_symtab *psymtab;
620
621 /* Data needed by the "quick" functions. */
622 struct dwarf2_per_cu_quick_data *quick;
623 } v;
95554aad 624
796a7ff8
DE
625 /* The CUs we import using DW_TAG_imported_unit. This is filled in
626 while reading psymtabs, used to compute the psymtab dependencies,
627 and then cleared. Then it is filled in again while reading full
628 symbols, and only deleted when the objfile is destroyed.
629
630 This is also used to work around a difference between the way gold
631 generates .gdb_index version <=7 and the way gdb does. Arguably this
632 is a gold bug. For symbols coming from TUs, gold records in the index
633 the CU that includes the TU instead of the TU itself. This breaks
634 dw2_lookup_symbol: It assumes that if the index says symbol X lives
635 in CU/TU Y, then one need only expand Y and a subsequent lookup in Y
636 will find X. Alas TUs live in their own symtab, so after expanding CU Y
637 we need to look in TU Z to find X. Fortunately, this is akin to
638 DW_TAG_imported_unit, so we just use the same mechanism: For
639 .gdb_index version <=7 this also records the TUs that the CU referred
640 to. Concurrently with this change gdb was modified to emit version 8
69d751e3
DE
641 indices so we only pay a price for gold generated indices.
642 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
796a7ff8 643 VEC (dwarf2_per_cu_ptr) *imported_symtabs;
ae038cb0
DJ
644};
645
348e048f
DE
646/* Entry in the signatured_types hash table. */
647
648struct signatured_type
649{
42e7ad6c 650 /* The "per_cu" object of this type.
ac9ec31b 651 This struct is used iff per_cu.is_debug_types.
42e7ad6c
DE
652 N.B.: This is the first member so that it's easy to convert pointers
653 between them. */
654 struct dwarf2_per_cu_data per_cu;
655
3019eac3 656 /* The type's signature. */
348e048f
DE
657 ULONGEST signature;
658
3019eac3 659 /* Offset in the TU of the type's DIE, as read from the TU header.
c88ee1f0
DE
660 If this TU is a DWO stub and the definition lives in a DWO file
661 (specified by DW_AT_GNU_dwo_name), this value is unusable. */
3019eac3
DE
662 cu_offset type_offset_in_tu;
663
664 /* Offset in the section of the type's DIE.
665 If the definition lives in a DWO file, this is the offset in the
666 .debug_types.dwo section.
667 The value is zero until the actual value is known.
668 Zero is otherwise not a valid section offset. */
669 sect_offset type_offset_in_section;
0186c6a7
DE
670
671 /* Type units are grouped by their DW_AT_stmt_list entry so that they
672 can share them. This points to the containing symtab. */
673 struct type_unit_group *type_unit_group;
ac9ec31b
DE
674
675 /* The type.
676 The first time we encounter this type we fully read it in and install it
677 in the symbol tables. Subsequent times we only need the type. */
678 struct type *type;
a2ce51a0
DE
679
680 /* Containing DWO unit.
681 This field is valid iff per_cu.reading_dwo_directly. */
682 struct dwo_unit *dwo_unit;
348e048f
DE
683};
684
0186c6a7
DE
685typedef struct signatured_type *sig_type_ptr;
686DEF_VEC_P (sig_type_ptr);
687
094b34ac
DE
688/* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
689 This includes type_unit_group and quick_file_names. */
690
691struct stmt_list_hash
692{
693 /* The DWO unit this table is from or NULL if there is none. */
694 struct dwo_unit *dwo_unit;
695
696 /* Offset in .debug_line or .debug_line.dwo. */
697 sect_offset line_offset;
698};
699
f4dc4d17
DE
700/* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
701 an object of this type. */
702
703struct type_unit_group
704{
0186c6a7 705 /* dwarf2read.c's main "handle" on a TU symtab.
f4dc4d17
DE
706 To simplify things we create an artificial CU that "includes" all the
707 type units using this stmt_list so that the rest of the code still has
708 a "per_cu" handle on the symtab.
709 This PER_CU is recognized by having no section. */
8a0459fd 710#define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
094b34ac
DE
711 struct dwarf2_per_cu_data per_cu;
712
0186c6a7
DE
713 /* The TUs that share this DW_AT_stmt_list entry.
714 This is added to while parsing type units to build partial symtabs,
715 and is deleted afterwards and not used again. */
716 VEC (sig_type_ptr) *tus;
f4dc4d17
DE
717
718 /* The primary symtab.
094b34ac
DE
719 Type units in a group needn't all be defined in the same source file,
720 so we create an essentially anonymous symtab as the primary symtab. */
f4dc4d17
DE
721 struct symtab *primary_symtab;
722
094b34ac
DE
723 /* The data used to construct the hash key. */
724 struct stmt_list_hash hash;
f4dc4d17
DE
725
726 /* The number of symtabs from the line header.
727 The value here must match line_header.num_file_names. */
728 unsigned int num_symtabs;
729
730 /* The symbol tables for this TU (obtained from the files listed in
731 DW_AT_stmt_list).
732 WARNING: The order of entries here must match the order of entries
733 in the line header. After the first TU using this type_unit_group, the
734 line header for the subsequent TUs is recreated from this. This is done
735 because we need to use the same symtabs for each TU using the same
736 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
737 there's no guarantee the line header doesn't have duplicate entries. */
738 struct symtab **symtabs;
739};
740
73869dc2 741/* These sections are what may appear in a (real or virtual) DWO file. */
3019eac3
DE
742
743struct dwo_sections
744{
745 struct dwarf2_section_info abbrev;
3019eac3
DE
746 struct dwarf2_section_info line;
747 struct dwarf2_section_info loc;
09262596
DE
748 struct dwarf2_section_info macinfo;
749 struct dwarf2_section_info macro;
3019eac3
DE
750 struct dwarf2_section_info str;
751 struct dwarf2_section_info str_offsets;
80626a55
DE
752 /* In the case of a virtual DWO file, these two are unused. */
753 struct dwarf2_section_info info;
3019eac3
DE
754 VEC (dwarf2_section_info_def) *types;
755};
756
c88ee1f0 757/* CUs/TUs in DWP/DWO files. */
3019eac3
DE
758
759struct dwo_unit
760{
761 /* Backlink to the containing struct dwo_file. */
762 struct dwo_file *dwo_file;
763
764 /* The "id" that distinguishes this CU/TU.
765 .debug_info calls this "dwo_id", .debug_types calls this "signature".
766 Since signatures came first, we stick with it for consistency. */
767 ULONGEST signature;
768
769 /* The section this CU/TU lives in, in the DWO file. */
8a0459fd 770 struct dwarf2_section_info *section;
3019eac3 771
19ac8c2e 772 /* Same as dwarf2_per_cu_data:{offset,length} but in the DWO section. */
3019eac3
DE
773 sect_offset offset;
774 unsigned int length;
775
776 /* For types, offset in the type's DIE of the type defined by this TU. */
777 cu_offset type_offset_in_tu;
778};
779
73869dc2
DE
780/* include/dwarf2.h defines the DWP section codes.
781 It defines a max value but it doesn't define a min value, which we
782 use for error checking, so provide one. */
783
784enum dwp_v2_section_ids
785{
786 DW_SECT_MIN = 1
787};
788
80626a55 789/* Data for one DWO file.
57d63ce2
DE
790
791 This includes virtual DWO files (a virtual DWO file is a DWO file as it
792 appears in a DWP file). DWP files don't really have DWO files per se -
793 comdat folding of types "loses" the DWO file they came from, and from
794 a high level view DWP files appear to contain a mass of random types.
795 However, to maintain consistency with the non-DWP case we pretend DWP
796 files contain virtual DWO files, and we assign each TU with one virtual
797 DWO file (generally based on the line and abbrev section offsets -
798 a heuristic that seems to work in practice). */
3019eac3
DE
799
800struct dwo_file
801{
0ac5b59e 802 /* The DW_AT_GNU_dwo_name attribute.
80626a55
DE
803 For virtual DWO files the name is constructed from the section offsets
804 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
805 from related CU+TUs. */
0ac5b59e
DE
806 const char *dwo_name;
807
808 /* The DW_AT_comp_dir attribute. */
809 const char *comp_dir;
3019eac3 810
80626a55
DE
811 /* The bfd, when the file is open. Otherwise this is NULL.
812 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
813 bfd *dbfd;
3019eac3 814
73869dc2
DE
815 /* The sections that make up this DWO file.
816 Remember that for virtual DWO files in DWP V2, these are virtual
817 sections (for lack of a better name). */
3019eac3
DE
818 struct dwo_sections sections;
819
19c3d4c9
DE
820 /* The CU in the file.
821 We only support one because having more than one requires hacking the
822 dwo_name of each to match, which is highly unlikely to happen.
823 Doing this means all TUs can share comp_dir: We also assume that
824 DW_AT_comp_dir across all TUs in a DWO file will be identical. */
825 struct dwo_unit *cu;
3019eac3
DE
826
827 /* Table of TUs in the file.
828 Each element is a struct dwo_unit. */
829 htab_t tus;
830};
831
80626a55
DE
832/* These sections are what may appear in a DWP file. */
833
834struct dwp_sections
835{
73869dc2 836 /* These are used by both DWP version 1 and 2. */
80626a55
DE
837 struct dwarf2_section_info str;
838 struct dwarf2_section_info cu_index;
839 struct dwarf2_section_info tu_index;
73869dc2
DE
840
841 /* These are only used by DWP version 2 files.
842 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
843 sections are referenced by section number, and are not recorded here.
844 In DWP version 2 there is at most one copy of all these sections, each
845 section being (effectively) comprised of the concatenation of all of the
846 individual sections that exist in the version 1 format.
847 To keep the code simple we treat each of these concatenated pieces as a
848 section itself (a virtual section?). */
849 struct dwarf2_section_info abbrev;
850 struct dwarf2_section_info info;
851 struct dwarf2_section_info line;
852 struct dwarf2_section_info loc;
853 struct dwarf2_section_info macinfo;
854 struct dwarf2_section_info macro;
855 struct dwarf2_section_info str_offsets;
856 struct dwarf2_section_info types;
80626a55
DE
857};
858
73869dc2
DE
859/* These sections are what may appear in a virtual DWO file in DWP version 1.
860 A virtual DWO file is a DWO file as it appears in a DWP file. */
80626a55 861
73869dc2 862struct virtual_v1_dwo_sections
80626a55
DE
863{
864 struct dwarf2_section_info abbrev;
865 struct dwarf2_section_info line;
866 struct dwarf2_section_info loc;
867 struct dwarf2_section_info macinfo;
868 struct dwarf2_section_info macro;
869 struct dwarf2_section_info str_offsets;
870 /* Each DWP hash table entry records one CU or one TU.
8a0459fd 871 That is recorded here, and copied to dwo_unit.section. */
80626a55
DE
872 struct dwarf2_section_info info_or_types;
873};
874
73869dc2
DE
875/* Similar to virtual_v1_dwo_sections, but for DWP version 2.
876 In version 2, the sections of the DWO files are concatenated together
877 and stored in one section of that name. Thus each ELF section contains
878 several "virtual" sections. */
879
880struct virtual_v2_dwo_sections
881{
882 bfd_size_type abbrev_offset;
883 bfd_size_type abbrev_size;
884
885 bfd_size_type line_offset;
886 bfd_size_type line_size;
887
888 bfd_size_type loc_offset;
889 bfd_size_type loc_size;
890
891 bfd_size_type macinfo_offset;
892 bfd_size_type macinfo_size;
893
894 bfd_size_type macro_offset;
895 bfd_size_type macro_size;
896
897 bfd_size_type str_offsets_offset;
898 bfd_size_type str_offsets_size;
899
900 /* Each DWP hash table entry records one CU or one TU.
901 That is recorded here, and copied to dwo_unit.section. */
902 bfd_size_type info_or_types_offset;
903 bfd_size_type info_or_types_size;
904};
905
80626a55
DE
906/* Contents of DWP hash tables. */
907
908struct dwp_hash_table
909{
73869dc2 910 uint32_t version, nr_columns;
80626a55 911 uint32_t nr_units, nr_slots;
73869dc2
DE
912 const gdb_byte *hash_table, *unit_table;
913 union
914 {
915 struct
916 {
917 const gdb_byte *indices;
918 } v1;
919 struct
920 {
921 /* This is indexed by column number and gives the id of the section
922 in that column. */
923#define MAX_NR_V2_DWO_SECTIONS \
924 (1 /* .debug_info or .debug_types */ \
925 + 1 /* .debug_abbrev */ \
926 + 1 /* .debug_line */ \
927 + 1 /* .debug_loc */ \
928 + 1 /* .debug_str_offsets */ \
929 + 1 /* .debug_macro or .debug_macinfo */)
930 int section_ids[MAX_NR_V2_DWO_SECTIONS];
931 const gdb_byte *offsets;
932 const gdb_byte *sizes;
933 } v2;
934 } section_pool;
80626a55
DE
935};
936
937/* Data for one DWP file. */
938
939struct dwp_file
940{
941 /* Name of the file. */
942 const char *name;
943
73869dc2
DE
944 /* File format version. */
945 int version;
946
93417882 947 /* The bfd. */
80626a55
DE
948 bfd *dbfd;
949
950 /* Section info for this file. */
951 struct dwp_sections sections;
952
57d63ce2 953 /* Table of CUs in the file. */
80626a55
DE
954 const struct dwp_hash_table *cus;
955
956 /* Table of TUs in the file. */
957 const struct dwp_hash_table *tus;
958
19ac8c2e
DE
959 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
960 htab_t loaded_cus;
961 htab_t loaded_tus;
80626a55 962
73869dc2
DE
963 /* Table to map ELF section numbers to their sections.
964 This is only needed for the DWP V1 file format. */
80626a55
DE
965 unsigned int num_sections;
966 asection **elf_sections;
967};
968
36586728
TT
969/* This represents a '.dwz' file. */
970
971struct dwz_file
972{
973 /* A dwz file can only contain a few sections. */
974 struct dwarf2_section_info abbrev;
975 struct dwarf2_section_info info;
976 struct dwarf2_section_info str;
977 struct dwarf2_section_info line;
978 struct dwarf2_section_info macro;
2ec9a5e0 979 struct dwarf2_section_info gdb_index;
36586728
TT
980
981 /* The dwz's BFD. */
982 bfd *dwz_bfd;
983};
984
0963b4bd
MS
985/* Struct used to pass misc. parameters to read_die_and_children, et
986 al. which are used for both .debug_info and .debug_types dies.
987 All parameters here are unchanging for the life of the call. This
dee91e82 988 struct exists to abstract away the constant parameters of die reading. */
93311388
DE
989
990struct die_reader_specs
991{
a32a8923 992 /* The bfd of die_section. */
93311388
DE
993 bfd* abfd;
994
995 /* The CU of the DIE we are parsing. */
996 struct dwarf2_cu *cu;
997
80626a55 998 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
3019eac3
DE
999 struct dwo_file *dwo_file;
1000
dee91e82 1001 /* The section the die comes from.
3019eac3 1002 This is either .debug_info or .debug_types, or the .dwo variants. */
dee91e82
DE
1003 struct dwarf2_section_info *die_section;
1004
1005 /* die_section->buffer. */
d521ce57 1006 const gdb_byte *buffer;
f664829e
DE
1007
1008 /* The end of the buffer. */
1009 const gdb_byte *buffer_end;
a2ce51a0
DE
1010
1011 /* The value of the DW_AT_comp_dir attribute. */
1012 const char *comp_dir;
93311388
DE
1013};
1014
fd820528 1015/* Type of function passed to init_cutu_and_read_dies, et.al. */
dee91e82 1016typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
d521ce57 1017 const gdb_byte *info_ptr,
dee91e82
DE
1018 struct die_info *comp_unit_die,
1019 int has_children,
1020 void *data);
1021
debd256d
JB
1022/* The line number information for a compilation unit (found in the
1023 .debug_line section) begins with a "statement program header",
1024 which contains the following information. */
1025struct line_header
1026{
1027 unsigned int total_length;
1028 unsigned short version;
1029 unsigned int header_length;
1030 unsigned char minimum_instruction_length;
2dc7f7b3 1031 unsigned char maximum_ops_per_instruction;
debd256d
JB
1032 unsigned char default_is_stmt;
1033 int line_base;
1034 unsigned char line_range;
1035 unsigned char opcode_base;
1036
1037 /* standard_opcode_lengths[i] is the number of operands for the
1038 standard opcode whose value is i. This means that
1039 standard_opcode_lengths[0] is unused, and the last meaningful
1040 element is standard_opcode_lengths[opcode_base - 1]. */
1041 unsigned char *standard_opcode_lengths;
1042
1043 /* The include_directories table. NOTE! These strings are not
1044 allocated with xmalloc; instead, they are pointers into
1045 debug_line_buffer. If you try to free them, `free' will get
1046 indigestion. */
1047 unsigned int num_include_dirs, include_dirs_size;
d521ce57 1048 const char **include_dirs;
debd256d
JB
1049
1050 /* The file_names table. NOTE! These strings are not allocated
1051 with xmalloc; instead, they are pointers into debug_line_buffer.
1052 Don't try to free them directly. */
1053 unsigned int num_file_names, file_names_size;
1054 struct file_entry
c906108c 1055 {
d521ce57 1056 const char *name;
debd256d
JB
1057 unsigned int dir_index;
1058 unsigned int mod_time;
1059 unsigned int length;
aaa75496 1060 int included_p; /* Non-zero if referenced by the Line Number Program. */
cb1df416 1061 struct symtab *symtab; /* The associated symbol table, if any. */
debd256d
JB
1062 } *file_names;
1063
1064 /* The start and end of the statement program following this
6502dd73 1065 header. These point into dwarf2_per_objfile->line_buffer. */
d521ce57 1066 const gdb_byte *statement_program_start, *statement_program_end;
debd256d 1067};
c906108c
SS
1068
1069/* When we construct a partial symbol table entry we only
0963b4bd 1070 need this much information. */
c906108c
SS
1071struct partial_die_info
1072 {
72bf9492 1073 /* Offset of this DIE. */
b64f50a1 1074 sect_offset offset;
72bf9492
DJ
1075
1076 /* DWARF-2 tag for this DIE. */
1077 ENUM_BITFIELD(dwarf_tag) tag : 16;
1078
72bf9492
DJ
1079 /* Assorted flags describing the data found in this DIE. */
1080 unsigned int has_children : 1;
1081 unsigned int is_external : 1;
1082 unsigned int is_declaration : 1;
1083 unsigned int has_type : 1;
1084 unsigned int has_specification : 1;
1085 unsigned int has_pc_info : 1;
481860b3 1086 unsigned int may_be_inlined : 1;
72bf9492
DJ
1087
1088 /* Flag set if the SCOPE field of this structure has been
1089 computed. */
1090 unsigned int scope_set : 1;
1091
fa4028e9
JB
1092 /* Flag set if the DIE has a byte_size attribute. */
1093 unsigned int has_byte_size : 1;
1094
98bfdba5
PA
1095 /* Flag set if any of the DIE's children are template arguments. */
1096 unsigned int has_template_arguments : 1;
1097
abc72ce4
DE
1098 /* Flag set if fixup_partial_die has been called on this die. */
1099 unsigned int fixup_called : 1;
1100
36586728
TT
1101 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1102 unsigned int is_dwz : 1;
1103
1104 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1105 unsigned int spec_is_dwz : 1;
1106
72bf9492 1107 /* The name of this DIE. Normally the value of DW_AT_name, but
94af9270 1108 sometimes a default name for unnamed DIEs. */
15d034d0 1109 const char *name;
72bf9492 1110
abc72ce4
DE
1111 /* The linkage name, if present. */
1112 const char *linkage_name;
1113
72bf9492
DJ
1114 /* The scope to prepend to our children. This is generally
1115 allocated on the comp_unit_obstack, so will disappear
1116 when this compilation unit leaves the cache. */
15d034d0 1117 const char *scope;
72bf9492 1118
95554aad
TT
1119 /* Some data associated with the partial DIE. The tag determines
1120 which field is live. */
1121 union
1122 {
1123 /* The location description associated with this DIE, if any. */
1124 struct dwarf_block *locdesc;
1125 /* The offset of an import, for DW_TAG_imported_unit. */
1126 sect_offset offset;
1127 } d;
72bf9492
DJ
1128
1129 /* If HAS_PC_INFO, the PC range associated with this DIE. */
c906108c
SS
1130 CORE_ADDR lowpc;
1131 CORE_ADDR highpc;
72bf9492 1132
93311388 1133 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
72bf9492 1134 DW_AT_sibling, if any. */
abc72ce4
DE
1135 /* NOTE: This member isn't strictly necessary, read_partial_die could
1136 return DW_AT_sibling values to its caller load_partial_dies. */
d521ce57 1137 const gdb_byte *sibling;
72bf9492
DJ
1138
1139 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1140 DW_AT_specification (or DW_AT_abstract_origin or
1141 DW_AT_extension). */
b64f50a1 1142 sect_offset spec_offset;
72bf9492
DJ
1143
1144 /* Pointers to this DIE's parent, first child, and next sibling,
1145 if any. */
1146 struct partial_die_info *die_parent, *die_child, *die_sibling;
c906108c
SS
1147 };
1148
0963b4bd 1149/* This data structure holds the information of an abbrev. */
c906108c
SS
1150struct abbrev_info
1151 {
1152 unsigned int number; /* number identifying abbrev */
1153 enum dwarf_tag tag; /* dwarf tag */
f3dd6933
DJ
1154 unsigned short has_children; /* boolean */
1155 unsigned short num_attrs; /* number of attributes */
c906108c
SS
1156 struct attr_abbrev *attrs; /* an array of attribute descriptions */
1157 struct abbrev_info *next; /* next in chain */
1158 };
1159
1160struct attr_abbrev
1161 {
9d25dd43
DE
1162 ENUM_BITFIELD(dwarf_attribute) name : 16;
1163 ENUM_BITFIELD(dwarf_form) form : 16;
c906108c
SS
1164 };
1165
433df2d4
DE
1166/* Size of abbrev_table.abbrev_hash_table. */
1167#define ABBREV_HASH_SIZE 121
1168
1169/* Top level data structure to contain an abbreviation table. */
1170
1171struct abbrev_table
1172{
f4dc4d17
DE
1173 /* Where the abbrev table came from.
1174 This is used as a sanity check when the table is used. */
433df2d4
DE
1175 sect_offset offset;
1176
1177 /* Storage for the abbrev table. */
1178 struct obstack abbrev_obstack;
1179
1180 /* Hash table of abbrevs.
1181 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1182 It could be statically allocated, but the previous code didn't so we
1183 don't either. */
1184 struct abbrev_info **abbrevs;
1185};
1186
0963b4bd 1187/* Attributes have a name and a value. */
b60c80d6
DJ
1188struct attribute
1189 {
9d25dd43 1190 ENUM_BITFIELD(dwarf_attribute) name : 16;
8285870a
JK
1191 ENUM_BITFIELD(dwarf_form) form : 15;
1192
1193 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
1194 field should be in u.str (existing only for DW_STRING) but it is kept
1195 here for better struct attribute alignment. */
1196 unsigned int string_is_canonical : 1;
1197
b60c80d6
DJ
1198 union
1199 {
15d034d0 1200 const char *str;
b60c80d6 1201 struct dwarf_block *blk;
43bbcdc2
PH
1202 ULONGEST unsnd;
1203 LONGEST snd;
b60c80d6 1204 CORE_ADDR addr;
ac9ec31b 1205 ULONGEST signature;
b60c80d6
DJ
1206 }
1207 u;
1208 };
1209
0963b4bd 1210/* This data structure holds a complete die structure. */
c906108c
SS
1211struct die_info
1212 {
76815b17
DE
1213 /* DWARF-2 tag for this DIE. */
1214 ENUM_BITFIELD(dwarf_tag) tag : 16;
1215
1216 /* Number of attributes */
98bfdba5
PA
1217 unsigned char num_attrs;
1218
1219 /* True if we're presently building the full type name for the
1220 type derived from this DIE. */
1221 unsigned char building_fullname : 1;
76815b17 1222
adde2bff
DE
1223 /* True if this die is in process. PR 16581. */
1224 unsigned char in_process : 1;
1225
76815b17
DE
1226 /* Abbrev number */
1227 unsigned int abbrev;
1228
93311388 1229 /* Offset in .debug_info or .debug_types section. */
b64f50a1 1230 sect_offset offset;
78ba4af6
JB
1231
1232 /* The dies in a compilation unit form an n-ary tree. PARENT
1233 points to this die's parent; CHILD points to the first child of
1234 this node; and all the children of a given node are chained
4950bc1c 1235 together via their SIBLING fields. */
639d11d3
DC
1236 struct die_info *child; /* Its first child, if any. */
1237 struct die_info *sibling; /* Its next sibling, if any. */
1238 struct die_info *parent; /* Its parent, if any. */
c906108c 1239
b60c80d6
DJ
1240 /* An array of attributes, with NUM_ATTRS elements. There may be
1241 zero, but it's not common and zero-sized arrays are not
1242 sufficiently portable C. */
1243 struct attribute attrs[1];
c906108c
SS
1244 };
1245
0963b4bd 1246/* Get at parts of an attribute structure. */
c906108c
SS
1247
1248#define DW_STRING(attr) ((attr)->u.str)
8285870a 1249#define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
c906108c
SS
1250#define DW_UNSND(attr) ((attr)->u.unsnd)
1251#define DW_BLOCK(attr) ((attr)->u.blk)
1252#define DW_SND(attr) ((attr)->u.snd)
1253#define DW_ADDR(attr) ((attr)->u.addr)
ac9ec31b 1254#define DW_SIGNATURE(attr) ((attr)->u.signature)
c906108c 1255
0963b4bd 1256/* Blocks are a bunch of untyped bytes. */
c906108c
SS
1257struct dwarf_block
1258 {
56eb65bd 1259 size_t size;
1d6edc3c
JK
1260
1261 /* Valid only if SIZE is not zero. */
d521ce57 1262 const gdb_byte *data;
c906108c
SS
1263 };
1264
c906108c
SS
1265#ifndef ATTR_ALLOC_CHUNK
1266#define ATTR_ALLOC_CHUNK 4
1267#endif
1268
c906108c
SS
1269/* Allocate fields for structs, unions and enums in this size. */
1270#ifndef DW_FIELD_ALLOC_CHUNK
1271#define DW_FIELD_ALLOC_CHUNK 4
1272#endif
1273
c906108c
SS
1274/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1275 but this would require a corresponding change in unpack_field_as_long
1276 and friends. */
1277static int bits_per_byte = 8;
1278
1279/* The routines that read and process dies for a C struct or C++ class
1280 pass lists of data member fields and lists of member function fields
1281 in an instance of a field_info structure, as defined below. */
1282struct field_info
c5aa993b 1283 {
0963b4bd 1284 /* List of data member and baseclasses fields. */
c5aa993b
JM
1285 struct nextfield
1286 {
1287 struct nextfield *next;
1288 int accessibility;
1289 int virtuality;
1290 struct field field;
1291 }
7d0ccb61 1292 *fields, *baseclasses;
c906108c 1293
7d0ccb61 1294 /* Number of fields (including baseclasses). */
c5aa993b 1295 int nfields;
c906108c 1296
c5aa993b
JM
1297 /* Number of baseclasses. */
1298 int nbaseclasses;
c906108c 1299
c5aa993b
JM
1300 /* Set if the accesibility of one of the fields is not public. */
1301 int non_public_fields;
c906108c 1302
c5aa993b
JM
1303 /* Member function fields array, entries are allocated in the order they
1304 are encountered in the object file. */
1305 struct nextfnfield
1306 {
1307 struct nextfnfield *next;
1308 struct fn_field fnfield;
1309 }
1310 *fnfields;
c906108c 1311
c5aa993b
JM
1312 /* Member function fieldlist array, contains name of possibly overloaded
1313 member function, number of overloaded member functions and a pointer
1314 to the head of the member function field chain. */
1315 struct fnfieldlist
1316 {
15d034d0 1317 const char *name;
c5aa993b
JM
1318 int length;
1319 struct nextfnfield *head;
1320 }
1321 *fnfieldlists;
c906108c 1322
c5aa993b
JM
1323 /* Number of entries in the fnfieldlists array. */
1324 int nfnfields;
98751a41
JK
1325
1326 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1327 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
1328 struct typedef_field_list
1329 {
1330 struct typedef_field field;
1331 struct typedef_field_list *next;
1332 }
1333 *typedef_field_list;
1334 unsigned typedef_field_list_count;
c5aa993b 1335 };
c906108c 1336
10b3939b
DJ
1337/* One item on the queue of compilation units to read in full symbols
1338 for. */
1339struct dwarf2_queue_item
1340{
1341 struct dwarf2_per_cu_data *per_cu;
95554aad 1342 enum language pretend_language;
10b3939b
DJ
1343 struct dwarf2_queue_item *next;
1344};
1345
1346/* The current queue. */
1347static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1348
ae038cb0
DJ
1349/* Loaded secondary compilation units are kept in memory until they
1350 have not been referenced for the processing of this many
1351 compilation units. Set this to zero to disable caching. Cache
1352 sizes of up to at least twenty will improve startup time for
1353 typical inter-CU-reference binaries, at an obvious memory cost. */
1354static int dwarf2_max_cache_age = 5;
920d2a44
AC
1355static void
1356show_dwarf2_max_cache_age (struct ui_file *file, int from_tty,
1357 struct cmd_list_element *c, const char *value)
1358{
3e43a32a
MS
1359 fprintf_filtered (file, _("The upper bound on the age of cached "
1360 "dwarf2 compilation units is %s.\n"),
920d2a44
AC
1361 value);
1362}
4390d890 1363\f
c906108c
SS
1364/* local function prototypes */
1365
a32a8923
DE
1366static const char *get_section_name (const struct dwarf2_section_info *);
1367
1368static const char *get_section_file_name (const struct dwarf2_section_info *);
1369
4efb68b1 1370static void dwarf2_locate_sections (bfd *, asection *, void *);
c906108c 1371
918dd910
JK
1372static void dwarf2_find_base_address (struct die_info *die,
1373 struct dwarf2_cu *cu);
1374
0018ea6f
DE
1375static struct partial_symtab *create_partial_symtab
1376 (struct dwarf2_per_cu_data *per_cu, const char *name);
1377
c67a9c90 1378static void dwarf2_build_psymtabs_hard (struct objfile *);
c906108c 1379
72bf9492
DJ
1380static void scan_partial_symbols (struct partial_die_info *,
1381 CORE_ADDR *, CORE_ADDR *,
5734ee8b 1382 int, struct dwarf2_cu *);
c906108c 1383
72bf9492
DJ
1384static void add_partial_symbol (struct partial_die_info *,
1385 struct dwarf2_cu *);
63d06c5c 1386
72bf9492
DJ
1387static void add_partial_namespace (struct partial_die_info *pdi,
1388 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 1389 int set_addrmap, struct dwarf2_cu *cu);
63d06c5c 1390
5d7cb8df 1391static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 1392 CORE_ADDR *highpc, int set_addrmap,
5d7cb8df
JK
1393 struct dwarf2_cu *cu);
1394
72bf9492
DJ
1395static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1396 struct dwarf2_cu *cu);
91c24f0a 1397
bc30ff58
JB
1398static void add_partial_subprogram (struct partial_die_info *pdi,
1399 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5734ee8b 1400 int need_pc, struct dwarf2_cu *cu);
bc30ff58 1401
257e7a09
YQ
1402static void dwarf2_read_symtab (struct partial_symtab *,
1403 struct objfile *);
c906108c 1404
a14ed312 1405static void psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 1406
433df2d4
DE
1407static struct abbrev_info *abbrev_table_lookup_abbrev
1408 (const struct abbrev_table *, unsigned int);
1409
1410static struct abbrev_table *abbrev_table_read_table
1411 (struct dwarf2_section_info *, sect_offset);
1412
1413static void abbrev_table_free (struct abbrev_table *);
1414
f4dc4d17
DE
1415static void abbrev_table_free_cleanup (void *);
1416
dee91e82
DE
1417static void dwarf2_read_abbrevs (struct dwarf2_cu *,
1418 struct dwarf2_section_info *);
c906108c 1419
f3dd6933 1420static void dwarf2_free_abbrev_table (void *);
c906108c 1421
d521ce57 1422static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
6caca83c 1423
dee91e82 1424static struct partial_die_info *load_partial_dies
d521ce57 1425 (const struct die_reader_specs *, const gdb_byte *, int);
72bf9492 1426
d521ce57
TT
1427static const gdb_byte *read_partial_die (const struct die_reader_specs *,
1428 struct partial_die_info *,
1429 struct abbrev_info *,
1430 unsigned int,
1431 const gdb_byte *);
c906108c 1432
36586728 1433static struct partial_die_info *find_partial_die (sect_offset, int,
10b3939b 1434 struct dwarf2_cu *);
72bf9492
DJ
1435
1436static void fixup_partial_die (struct partial_die_info *,
1437 struct dwarf2_cu *);
1438
d521ce57
TT
1439static const gdb_byte *read_attribute (const struct die_reader_specs *,
1440 struct attribute *, struct attr_abbrev *,
1441 const gdb_byte *);
a8329558 1442
a1855c1d 1443static unsigned int read_1_byte (bfd *, const gdb_byte *);
c906108c 1444
a1855c1d 1445static int read_1_signed_byte (bfd *, const gdb_byte *);
c906108c 1446
a1855c1d 1447static unsigned int read_2_bytes (bfd *, const gdb_byte *);
c906108c 1448
a1855c1d 1449static unsigned int read_4_bytes (bfd *, const gdb_byte *);
c906108c 1450
a1855c1d 1451static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
c906108c 1452
d521ce57 1453static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
891d2f0b 1454 unsigned int *);
c906108c 1455
d521ce57 1456static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
c764a876
DE
1457
1458static LONGEST read_checked_initial_length_and_offset
d521ce57 1459 (bfd *, const gdb_byte *, const struct comp_unit_head *,
c764a876 1460 unsigned int *, unsigned int *);
613e1657 1461
d521ce57
TT
1462static LONGEST read_offset (bfd *, const gdb_byte *,
1463 const struct comp_unit_head *,
c764a876
DE
1464 unsigned int *);
1465
d521ce57 1466static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
613e1657 1467
f4dc4d17
DE
1468static sect_offset read_abbrev_offset (struct dwarf2_section_info *,
1469 sect_offset);
1470
d521ce57 1471static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
c906108c 1472
d521ce57 1473static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
c906108c 1474
d521ce57
TT
1475static const char *read_indirect_string (bfd *, const gdb_byte *,
1476 const struct comp_unit_head *,
1477 unsigned int *);
4bdf3d34 1478
d521ce57 1479static const char *read_indirect_string_from_dwz (struct dwz_file *, LONGEST);
36586728 1480
d521ce57 1481static ULONGEST read_unsigned_leb128 (bfd *, const gdb_byte *, unsigned int *);
c906108c 1482
d521ce57 1483static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
c906108c 1484
d521ce57
TT
1485static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1486 const gdb_byte *,
3019eac3
DE
1487 unsigned int *);
1488
d521ce57 1489static const char *read_str_index (const struct die_reader_specs *reader,
342587c4 1490 ULONGEST str_index);
3019eac3 1491
e142c38c 1492static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 1493
e142c38c
DJ
1494static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1495 struct dwarf2_cu *);
c906108c 1496
348e048f 1497static struct attribute *dwarf2_attr_no_follow (struct die_info *,
45e58e77 1498 unsigned int);
348e048f 1499
05cf31d1
JB
1500static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1501 struct dwarf2_cu *cu);
1502
e142c38c 1503static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 1504
e142c38c 1505static struct die_info *die_specification (struct die_info *die,
f2f0e013 1506 struct dwarf2_cu **);
63d06c5c 1507
debd256d
JB
1508static void free_line_header (struct line_header *lh);
1509
3019eac3
DE
1510static struct line_header *dwarf_decode_line_header (unsigned int offset,
1511 struct dwarf2_cu *cu);
debd256d 1512
f3f5162e 1513static void dwarf_decode_lines (struct line_header *, const char *,
c3b7b696
YQ
1514 struct dwarf2_cu *, struct partial_symtab *,
1515 CORE_ADDR);
c906108c 1516
d521ce57 1517static void dwarf2_start_subfile (const char *, const char *, const char *);
c906108c 1518
f4dc4d17 1519static void dwarf2_start_symtab (struct dwarf2_cu *,
15d034d0 1520 const char *, const char *, CORE_ADDR);
f4dc4d17 1521
a14ed312 1522static struct symbol *new_symbol (struct die_info *, struct type *,
e7c27a73 1523 struct dwarf2_cu *);
c906108c 1524
34eaf542
TT
1525static struct symbol *new_symbol_full (struct die_info *, struct type *,
1526 struct dwarf2_cu *, struct symbol *);
1527
ff39bb5e 1528static void dwarf2_const_value (const struct attribute *, struct symbol *,
e7c27a73 1529 struct dwarf2_cu *);
c906108c 1530
ff39bb5e 1531static void dwarf2_const_value_attr (const struct attribute *attr,
98bfdba5
PA
1532 struct type *type,
1533 const char *name,
1534 struct obstack *obstack,
12df843f 1535 struct dwarf2_cu *cu, LONGEST *value,
d521ce57 1536 const gdb_byte **bytes,
98bfdba5 1537 struct dwarf2_locexpr_baton **baton);
2df3850c 1538
e7c27a73 1539static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 1540
b4ba55a1
JB
1541static int need_gnat_info (struct dwarf2_cu *);
1542
3e43a32a
MS
1543static struct type *die_descriptive_type (struct die_info *,
1544 struct dwarf2_cu *);
b4ba55a1
JB
1545
1546static void set_descriptive_type (struct type *, struct die_info *,
1547 struct dwarf2_cu *);
1548
e7c27a73
DJ
1549static struct type *die_containing_type (struct die_info *,
1550 struct dwarf2_cu *);
c906108c 1551
ff39bb5e 1552static struct type *lookup_die_type (struct die_info *, const struct attribute *,
673bfd45 1553 struct dwarf2_cu *);
c906108c 1554
f792889a 1555static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 1556
673bfd45
DE
1557static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1558
0d5cff50 1559static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 1560
6e70227d 1561static char *typename_concat (struct obstack *obs, const char *prefix,
f55ee35c
JK
1562 const char *suffix, int physname,
1563 struct dwarf2_cu *cu);
63d06c5c 1564
e7c27a73 1565static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1566
348e048f
DE
1567static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1568
e7c27a73 1569static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1570
e7c27a73 1571static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1572
96408a79
SA
1573static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1574
ff013f42
JK
1575static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1576 struct dwarf2_cu *, struct partial_symtab *);
1577
a14ed312 1578static int dwarf2_get_pc_bounds (struct die_info *,
d85a05f0
DJ
1579 CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *,
1580 struct partial_symtab *);
c906108c 1581
fae299cd
DC
1582static void get_scope_pc_bounds (struct die_info *,
1583 CORE_ADDR *, CORE_ADDR *,
1584 struct dwarf2_cu *);
1585
801e3a5b
JB
1586static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1587 CORE_ADDR, struct dwarf2_cu *);
1588
a14ed312 1589static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 1590 struct dwarf2_cu *);
c906108c 1591
a14ed312 1592static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 1593 struct type *, struct dwarf2_cu *);
c906108c 1594
a14ed312 1595static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 1596 struct die_info *, struct type *,
e7c27a73 1597 struct dwarf2_cu *);
c906108c 1598
a14ed312 1599static void dwarf2_attach_fn_fields_to_type (struct field_info *,
3e43a32a
MS
1600 struct type *,
1601 struct dwarf2_cu *);
c906108c 1602
134d01f1 1603static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1604
e7c27a73 1605static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 1606
e7c27a73 1607static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 1608
5d7cb8df
JK
1609static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1610
27aa8d6a
SW
1611static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1612
74921315
KS
1613static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1614
f55ee35c
JK
1615static struct type *read_module_type (struct die_info *die,
1616 struct dwarf2_cu *cu);
1617
38d518c9 1618static const char *namespace_name (struct die_info *die,
e142c38c 1619 int *is_anonymous, struct dwarf2_cu *);
38d518c9 1620
134d01f1 1621static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1622
e7c27a73 1623static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
c906108c 1624
6e70227d 1625static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
7ca2d3a3
DL
1626 struct dwarf2_cu *);
1627
bf6af496 1628static struct die_info *read_die_and_siblings_1
d521ce57 1629 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
bf6af496 1630 struct die_info *);
639d11d3 1631
dee91e82 1632static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
d521ce57
TT
1633 const gdb_byte *info_ptr,
1634 const gdb_byte **new_info_ptr,
639d11d3
DC
1635 struct die_info *parent);
1636
d521ce57
TT
1637static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1638 struct die_info **, const gdb_byte *,
1639 int *, int);
3019eac3 1640
d521ce57
TT
1641static const gdb_byte *read_full_die (const struct die_reader_specs *,
1642 struct die_info **, const gdb_byte *,
1643 int *);
93311388 1644
e7c27a73 1645static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 1646
15d034d0
TT
1647static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1648 struct obstack *);
71c25dea 1649
15d034d0 1650static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 1651
15d034d0 1652static const char *dwarf2_full_name (const char *name,
98bfdba5
PA
1653 struct die_info *die,
1654 struct dwarf2_cu *cu);
1655
ca69b9e6
DE
1656static const char *dwarf2_physname (const char *name, struct die_info *die,
1657 struct dwarf2_cu *cu);
1658
e142c38c 1659static struct die_info *dwarf2_extension (struct die_info *die,
f2f0e013 1660 struct dwarf2_cu **);
9219021c 1661
f39c6ffd 1662static const char *dwarf_tag_name (unsigned int);
c906108c 1663
f39c6ffd 1664static const char *dwarf_attr_name (unsigned int);
c906108c 1665
f39c6ffd 1666static const char *dwarf_form_name (unsigned int);
c906108c 1667
a14ed312 1668static char *dwarf_bool_name (unsigned int);
c906108c 1669
f39c6ffd 1670static const char *dwarf_type_encoding_name (unsigned int);
c906108c 1671
f9aca02d 1672static struct die_info *sibling_die (struct die_info *);
c906108c 1673
d97bc12b
DE
1674static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1675
1676static void dump_die_for_error (struct die_info *);
1677
1678static void dump_die_1 (struct ui_file *, int level, int max_level,
1679 struct die_info *);
c906108c 1680
d97bc12b 1681/*static*/ void dump_die (struct die_info *, int max_level);
c906108c 1682
51545339 1683static void store_in_ref_table (struct die_info *,
10b3939b 1684 struct dwarf2_cu *);
c906108c 1685
ff39bb5e 1686static sect_offset dwarf2_get_ref_die_offset (const struct attribute *);
c906108c 1687
ff39bb5e 1688static LONGEST dwarf2_get_attr_constant_value (const struct attribute *, int);
a02abb62 1689
348e048f 1690static struct die_info *follow_die_ref_or_sig (struct die_info *,
ff39bb5e 1691 const struct attribute *,
348e048f
DE
1692 struct dwarf2_cu **);
1693
10b3939b 1694static struct die_info *follow_die_ref (struct die_info *,
ff39bb5e 1695 const struct attribute *,
f2f0e013 1696 struct dwarf2_cu **);
c906108c 1697
348e048f 1698static struct die_info *follow_die_sig (struct die_info *,
ff39bb5e 1699 const struct attribute *,
348e048f
DE
1700 struct dwarf2_cu **);
1701
ac9ec31b
DE
1702static struct type *get_signatured_type (struct die_info *, ULONGEST,
1703 struct dwarf2_cu *);
1704
1705static struct type *get_DW_AT_signature_type (struct die_info *,
ff39bb5e 1706 const struct attribute *,
ac9ec31b
DE
1707 struct dwarf2_cu *);
1708
e5fe5e75 1709static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
348e048f 1710
52dc124a 1711static void read_signatured_type (struct signatured_type *);
348e048f 1712
c906108c
SS
1713/* memory allocation interface */
1714
7b5a2f43 1715static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1716
b60c80d6 1717static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
c906108c 1718
09262596 1719static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int,
15d034d0 1720 const char *, int);
2e276125 1721
6e5a29e1 1722static int attr_form_is_block (const struct attribute *);
8e19ed76 1723
6e5a29e1 1724static int attr_form_is_section_offset (const struct attribute *);
3690dd37 1725
6e5a29e1 1726static int attr_form_is_constant (const struct attribute *);
3690dd37 1727
6e5a29e1 1728static int attr_form_is_ref (const struct attribute *);
7771576e 1729
8cf6f0b1
TT
1730static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1731 struct dwarf2_loclist_baton *baton,
ff39bb5e 1732 const struct attribute *attr);
8cf6f0b1 1733
ff39bb5e 1734static void dwarf2_symbol_mark_computed (const struct attribute *attr,
93e7bd98 1735 struct symbol *sym,
f1e6e072
TT
1736 struct dwarf2_cu *cu,
1737 int is_block);
4c2df51b 1738
d521ce57
TT
1739static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1740 const gdb_byte *info_ptr,
1741 struct abbrev_info *abbrev);
4bb7a0a7 1742
72bf9492
DJ
1743static void free_stack_comp_unit (void *);
1744
72bf9492
DJ
1745static hashval_t partial_die_hash (const void *item);
1746
1747static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1748
ae038cb0 1749static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
36586728 1750 (sect_offset offset, unsigned int offset_in_dwz, struct objfile *objfile);
ae038cb0 1751
9816fde3 1752static void init_one_comp_unit (struct dwarf2_cu *cu,
23745b47 1753 struct dwarf2_per_cu_data *per_cu);
9816fde3
JK
1754
1755static void prepare_one_comp_unit (struct dwarf2_cu *cu,
95554aad
TT
1756 struct die_info *comp_unit_die,
1757 enum language pretend_language);
93311388 1758
68dc6402 1759static void free_heap_comp_unit (void *);
ae038cb0
DJ
1760
1761static void free_cached_comp_units (void *);
1762
1763static void age_cached_comp_units (void);
1764
dee91e82 1765static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
ae038cb0 1766
f792889a
DJ
1767static struct type *set_die_type (struct die_info *, struct type *,
1768 struct dwarf2_cu *);
1c379e20 1769
ae038cb0
DJ
1770static void create_all_comp_units (struct objfile *);
1771
0e50663e 1772static int create_all_type_units (struct objfile *);
1fd400ff 1773
95554aad
TT
1774static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1775 enum language);
10b3939b 1776
95554aad
TT
1777static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1778 enum language);
10b3939b 1779
f4dc4d17
DE
1780static void process_full_type_unit (struct dwarf2_per_cu_data *,
1781 enum language);
1782
10b3939b
DJ
1783static void dwarf2_add_dependence (struct dwarf2_cu *,
1784 struct dwarf2_per_cu_data *);
1785
ae038cb0
DJ
1786static void dwarf2_mark (struct dwarf2_cu *);
1787
1788static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1789
b64f50a1 1790static struct type *get_die_type_at_offset (sect_offset,
ac9ec31b 1791 struct dwarf2_per_cu_data *);
673bfd45 1792
f792889a 1793static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
72019c9c 1794
9291a0cd
TT
1795static void dwarf2_release_queue (void *dummy);
1796
95554aad
TT
1797static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1798 enum language pretend_language);
1799
a0f42c21 1800static void process_queue (void);
9291a0cd
TT
1801
1802static void find_file_and_directory (struct die_info *die,
1803 struct dwarf2_cu *cu,
15d034d0 1804 const char **name, const char **comp_dir);
9291a0cd
TT
1805
1806static char *file_full_name (int file, struct line_header *lh,
1807 const char *comp_dir);
1808
d521ce57 1809static const gdb_byte *read_and_check_comp_unit_head
36586728
TT
1810 (struct comp_unit_head *header,
1811 struct dwarf2_section_info *section,
d521ce57 1812 struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
36586728
TT
1813 int is_debug_types_section);
1814
fd820528 1815static void init_cutu_and_read_dies
f4dc4d17
DE
1816 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1817 int use_existing_cu, int keep,
3019eac3
DE
1818 die_reader_func_ftype *die_reader_func, void *data);
1819
dee91e82
DE
1820static void init_cutu_and_read_dies_simple
1821 (struct dwarf2_per_cu_data *this_cu,
1822 die_reader_func_ftype *die_reader_func, void *data);
9291a0cd 1823
673bfd45 1824static htab_t allocate_signatured_type_table (struct objfile *objfile);
1fd400ff 1825
3019eac3
DE
1826static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1827
57d63ce2
DE
1828static struct dwo_unit *lookup_dwo_unit_in_dwp
1829 (struct dwp_file *dwp_file, const char *comp_dir,
1830 ULONGEST signature, int is_debug_types);
a2ce51a0
DE
1831
1832static struct dwp_file *get_dwp_file (void);
1833
3019eac3 1834static struct dwo_unit *lookup_dwo_comp_unit
a1855c1d 1835 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
3019eac3
DE
1836
1837static struct dwo_unit *lookup_dwo_type_unit
a1855c1d 1838 (struct signatured_type *, const char *, const char *);
3019eac3 1839
89e63ee4
DE
1840static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
1841
3019eac3
DE
1842static void free_dwo_file_cleanup (void *);
1843
95554aad
TT
1844static void process_cu_includes (void);
1845
1b80a9fa 1846static void check_producer (struct dwarf2_cu *cu);
4390d890
DE
1847\f
1848/* Various complaints about symbol reading that don't abort the process. */
1849
1850static void
1851dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1852{
1853 complaint (&symfile_complaints,
1854 _("statement list doesn't fit in .debug_line section"));
1855}
1856
1857static void
1858dwarf2_debug_line_missing_file_complaint (void)
1859{
1860 complaint (&symfile_complaints,
1861 _(".debug_line section has line data without a file"));
1862}
1863
1864static void
1865dwarf2_debug_line_missing_end_sequence_complaint (void)
1866{
1867 complaint (&symfile_complaints,
1868 _(".debug_line section has line "
1869 "program sequence without an end"));
1870}
1871
1872static void
1873dwarf2_complex_location_expr_complaint (void)
1874{
1875 complaint (&symfile_complaints, _("location expression too complex"));
1876}
1877
1878static void
1879dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1880 int arg3)
1881{
1882 complaint (&symfile_complaints,
1883 _("const value length mismatch for '%s', got %d, expected %d"),
1884 arg1, arg2, arg3);
1885}
1886
1887static void
1888dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
1889{
1890 complaint (&symfile_complaints,
1891 _("debug info runs off end of %s section"
1892 " [in module %s]"),
a32a8923
DE
1893 get_section_name (section),
1894 get_section_file_name (section));
4390d890 1895}
1b80a9fa 1896
4390d890
DE
1897static void
1898dwarf2_macro_malformed_definition_complaint (const char *arg1)
1899{
1900 complaint (&symfile_complaints,
1901 _("macro debug info contains a "
1902 "malformed macro definition:\n`%s'"),
1903 arg1);
1904}
1905
1906static void
1907dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1908{
1909 complaint (&symfile_complaints,
1910 _("invalid attribute class or form for '%s' in '%s'"),
1911 arg1, arg2);
1912}
1913\f
9291a0cd
TT
1914#if WORDS_BIGENDIAN
1915
1916/* Convert VALUE between big- and little-endian. */
1917static offset_type
1918byte_swap (offset_type value)
1919{
1920 offset_type result;
1921
1922 result = (value & 0xff) << 24;
1923 result |= (value & 0xff00) << 8;
1924 result |= (value & 0xff0000) >> 8;
1925 result |= (value & 0xff000000) >> 24;
1926 return result;
1927}
1928
1929#define MAYBE_SWAP(V) byte_swap (V)
1930
1931#else
1932#define MAYBE_SWAP(V) (V)
1933#endif /* WORDS_BIGENDIAN */
1934
31aa7e4e
JB
1935/* Read the given attribute value as an address, taking the attribute's
1936 form into account. */
1937
1938static CORE_ADDR
1939attr_value_as_address (struct attribute *attr)
1940{
1941 CORE_ADDR addr;
1942
1943 if (attr->form != DW_FORM_addr && attr->form != DW_FORM_GNU_addr_index)
1944 {
1945 /* Aside from a few clearly defined exceptions, attributes that
1946 contain an address must always be in DW_FORM_addr form.
1947 Unfortunately, some compilers happen to be violating this
1948 requirement by encoding addresses using other forms, such
1949 as DW_FORM_data4 for example. For those broken compilers,
1950 we try to do our best, without any guarantee of success,
1951 to interpret the address correctly. It would also be nice
1952 to generate a complaint, but that would require us to maintain
1953 a list of legitimate cases where a non-address form is allowed,
1954 as well as update callers to pass in at least the CU's DWARF
1955 version. This is more overhead than what we're willing to
1956 expand for a pretty rare case. */
1957 addr = DW_UNSND (attr);
1958 }
1959 else
1960 addr = DW_ADDR (attr);
1961
1962 return addr;
1963}
1964
9291a0cd
TT
1965/* The suffix for an index file. */
1966#define INDEX_SUFFIX ".gdb-index"
1967
c906108c 1968/* Try to locate the sections we need for DWARF 2 debugging
251d32d9
TG
1969 information and return true if we have enough to do something.
1970 NAMES points to the dwarf2 section names, or is NULL if the standard
1971 ELF names are used. */
c906108c
SS
1972
1973int
251d32d9
TG
1974dwarf2_has_info (struct objfile *objfile,
1975 const struct dwarf2_debug_sections *names)
c906108c 1976{
be391dca
TT
1977 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
1978 if (!dwarf2_per_objfile)
1979 {
1980 /* Initialize per-objfile state. */
1981 struct dwarf2_per_objfile *data
1982 = obstack_alloc (&objfile->objfile_obstack, sizeof (*data));
9a619af0 1983
be391dca
TT
1984 memset (data, 0, sizeof (*data));
1985 set_objfile_data (objfile, dwarf2_objfile_data_key, data);
1986 dwarf2_per_objfile = data;
6502dd73 1987
251d32d9
TG
1988 bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections,
1989 (void *) names);
be391dca
TT
1990 dwarf2_per_objfile->objfile = objfile;
1991 }
73869dc2
DE
1992 return (!dwarf2_per_objfile->info.is_virtual
1993 && dwarf2_per_objfile->info.s.asection != NULL
1994 && !dwarf2_per_objfile->abbrev.is_virtual
1995 && dwarf2_per_objfile->abbrev.s.asection != NULL);
1996}
1997
1998/* Return the containing section of virtual section SECTION. */
1999
2000static struct dwarf2_section_info *
2001get_containing_section (const struct dwarf2_section_info *section)
2002{
2003 gdb_assert (section->is_virtual);
2004 return section->s.containing_section;
c906108c
SS
2005}
2006
a32a8923
DE
2007/* Return the bfd owner of SECTION. */
2008
2009static struct bfd *
2010get_section_bfd_owner (const struct dwarf2_section_info *section)
2011{
73869dc2
DE
2012 if (section->is_virtual)
2013 {
2014 section = get_containing_section (section);
2015 gdb_assert (!section->is_virtual);
2016 }
2017 return section->s.asection->owner;
a32a8923
DE
2018}
2019
2020/* Return the bfd section of SECTION.
2021 Returns NULL if the section is not present. */
2022
2023static asection *
2024get_section_bfd_section (const struct dwarf2_section_info *section)
2025{
73869dc2
DE
2026 if (section->is_virtual)
2027 {
2028 section = get_containing_section (section);
2029 gdb_assert (!section->is_virtual);
2030 }
2031 return section->s.asection;
a32a8923
DE
2032}
2033
2034/* Return the name of SECTION. */
2035
2036static const char *
2037get_section_name (const struct dwarf2_section_info *section)
2038{
2039 asection *sectp = get_section_bfd_section (section);
2040
2041 gdb_assert (sectp != NULL);
2042 return bfd_section_name (get_section_bfd_owner (section), sectp);
2043}
2044
2045/* Return the name of the file SECTION is in. */
2046
2047static const char *
2048get_section_file_name (const struct dwarf2_section_info *section)
2049{
2050 bfd *abfd = get_section_bfd_owner (section);
2051
2052 return bfd_get_filename (abfd);
2053}
2054
2055/* Return the id of SECTION.
2056 Returns 0 if SECTION doesn't exist. */
2057
2058static int
2059get_section_id (const struct dwarf2_section_info *section)
2060{
2061 asection *sectp = get_section_bfd_section (section);
2062
2063 if (sectp == NULL)
2064 return 0;
2065 return sectp->id;
2066}
2067
2068/* Return the flags of SECTION.
73869dc2 2069 SECTION (or containing section if this is a virtual section) must exist. */
a32a8923
DE
2070
2071static int
2072get_section_flags (const struct dwarf2_section_info *section)
2073{
2074 asection *sectp = get_section_bfd_section (section);
2075
2076 gdb_assert (sectp != NULL);
2077 return bfd_get_section_flags (sectp->owner, sectp);
2078}
2079
251d32d9
TG
2080/* When loading sections, we look either for uncompressed section or for
2081 compressed section names. */
233a11ab
CS
2082
2083static int
251d32d9
TG
2084section_is_p (const char *section_name,
2085 const struct dwarf2_section_names *names)
233a11ab 2086{
251d32d9
TG
2087 if (names->normal != NULL
2088 && strcmp (section_name, names->normal) == 0)
2089 return 1;
2090 if (names->compressed != NULL
2091 && strcmp (section_name, names->compressed) == 0)
2092 return 1;
2093 return 0;
233a11ab
CS
2094}
2095
c906108c
SS
2096/* This function is mapped across the sections and remembers the
2097 offset and size of each of the debugging sections we are interested
2098 in. */
2099
2100static void
251d32d9 2101dwarf2_locate_sections (bfd *abfd, asection *sectp, void *vnames)
c906108c 2102{
251d32d9 2103 const struct dwarf2_debug_sections *names;
dc7650b8 2104 flagword aflag = bfd_get_section_flags (abfd, sectp);
251d32d9
TG
2105
2106 if (vnames == NULL)
2107 names = &dwarf2_elf_names;
2108 else
2109 names = (const struct dwarf2_debug_sections *) vnames;
2110
dc7650b8
JK
2111 if ((aflag & SEC_HAS_CONTENTS) == 0)
2112 {
2113 }
2114 else if (section_is_p (sectp->name, &names->info))
c906108c 2115 {
73869dc2 2116 dwarf2_per_objfile->info.s.asection = sectp;
dce234bc 2117 dwarf2_per_objfile->info.size = bfd_get_section_size (sectp);
c906108c 2118 }
251d32d9 2119 else if (section_is_p (sectp->name, &names->abbrev))
c906108c 2120 {
73869dc2 2121 dwarf2_per_objfile->abbrev.s.asection = sectp;
dce234bc 2122 dwarf2_per_objfile->abbrev.size = bfd_get_section_size (sectp);
c906108c 2123 }
251d32d9 2124 else if (section_is_p (sectp->name, &names->line))
c906108c 2125 {
73869dc2 2126 dwarf2_per_objfile->line.s.asection = sectp;
dce234bc 2127 dwarf2_per_objfile->line.size = bfd_get_section_size (sectp);
c906108c 2128 }
251d32d9 2129 else if (section_is_p (sectp->name, &names->loc))
c906108c 2130 {
73869dc2 2131 dwarf2_per_objfile->loc.s.asection = sectp;
dce234bc 2132 dwarf2_per_objfile->loc.size = bfd_get_section_size (sectp);
c906108c 2133 }
251d32d9 2134 else if (section_is_p (sectp->name, &names->macinfo))
c906108c 2135 {
73869dc2 2136 dwarf2_per_objfile->macinfo.s.asection = sectp;
dce234bc 2137 dwarf2_per_objfile->macinfo.size = bfd_get_section_size (sectp);
c906108c 2138 }
cf2c3c16
TT
2139 else if (section_is_p (sectp->name, &names->macro))
2140 {
73869dc2 2141 dwarf2_per_objfile->macro.s.asection = sectp;
cf2c3c16
TT
2142 dwarf2_per_objfile->macro.size = bfd_get_section_size (sectp);
2143 }
251d32d9 2144 else if (section_is_p (sectp->name, &names->str))
c906108c 2145 {
73869dc2 2146 dwarf2_per_objfile->str.s.asection = sectp;
dce234bc 2147 dwarf2_per_objfile->str.size = bfd_get_section_size (sectp);
c906108c 2148 }
3019eac3
DE
2149 else if (section_is_p (sectp->name, &names->addr))
2150 {
73869dc2 2151 dwarf2_per_objfile->addr.s.asection = sectp;
3019eac3
DE
2152 dwarf2_per_objfile->addr.size = bfd_get_section_size (sectp);
2153 }
251d32d9 2154 else if (section_is_p (sectp->name, &names->frame))
b6af0555 2155 {
73869dc2 2156 dwarf2_per_objfile->frame.s.asection = sectp;
dce234bc 2157 dwarf2_per_objfile->frame.size = bfd_get_section_size (sectp);
b6af0555 2158 }
251d32d9 2159 else if (section_is_p (sectp->name, &names->eh_frame))
b6af0555 2160 {
73869dc2 2161 dwarf2_per_objfile->eh_frame.s.asection = sectp;
dc7650b8 2162 dwarf2_per_objfile->eh_frame.size = bfd_get_section_size (sectp);
b6af0555 2163 }
251d32d9 2164 else if (section_is_p (sectp->name, &names->ranges))
af34e669 2165 {
73869dc2 2166 dwarf2_per_objfile->ranges.s.asection = sectp;
dce234bc 2167 dwarf2_per_objfile->ranges.size = bfd_get_section_size (sectp);
af34e669 2168 }
251d32d9 2169 else if (section_is_p (sectp->name, &names->types))
348e048f 2170 {
8b70b953
TT
2171 struct dwarf2_section_info type_section;
2172
2173 memset (&type_section, 0, sizeof (type_section));
73869dc2 2174 type_section.s.asection = sectp;
8b70b953
TT
2175 type_section.size = bfd_get_section_size (sectp);
2176
2177 VEC_safe_push (dwarf2_section_info_def, dwarf2_per_objfile->types,
2178 &type_section);
348e048f 2179 }
251d32d9 2180 else if (section_is_p (sectp->name, &names->gdb_index))
9291a0cd 2181 {
73869dc2 2182 dwarf2_per_objfile->gdb_index.s.asection = sectp;
9291a0cd
TT
2183 dwarf2_per_objfile->gdb_index.size = bfd_get_section_size (sectp);
2184 }
dce234bc 2185
72dca2f5
FR
2186 if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD)
2187 && bfd_section_vma (abfd, sectp) == 0)
2188 dwarf2_per_objfile->has_section_at_zero = 1;
c906108c
SS
2189}
2190
fceca515
DE
2191/* A helper function that decides whether a section is empty,
2192 or not present. */
9e0ac564
TT
2193
2194static int
19ac8c2e 2195dwarf2_section_empty_p (const struct dwarf2_section_info *section)
9e0ac564 2196{
73869dc2
DE
2197 if (section->is_virtual)
2198 return section->size == 0;
2199 return section->s.asection == NULL || section->size == 0;
9e0ac564
TT
2200}
2201
3019eac3
DE
2202/* Read the contents of the section INFO.
2203 OBJFILE is the main object file, but not necessarily the file where
a32a8923
DE
2204 the section comes from. E.g., for DWO files the bfd of INFO is the bfd
2205 of the DWO file.
dce234bc 2206 If the section is compressed, uncompress it before returning. */
c906108c 2207
dce234bc
PP
2208static void
2209dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)
c906108c 2210{
a32a8923 2211 asection *sectp;
3019eac3 2212 bfd *abfd;
dce234bc 2213 gdb_byte *buf, *retbuf;
c906108c 2214
be391dca
TT
2215 if (info->readin)
2216 return;
dce234bc 2217 info->buffer = NULL;
be391dca 2218 info->readin = 1;
188dd5d6 2219
9e0ac564 2220 if (dwarf2_section_empty_p (info))
dce234bc 2221 return;
c906108c 2222
a32a8923 2223 sectp = get_section_bfd_section (info);
3019eac3 2224
73869dc2
DE
2225 /* If this is a virtual section we need to read in the real one first. */
2226 if (info->is_virtual)
2227 {
2228 struct dwarf2_section_info *containing_section =
2229 get_containing_section (info);
2230
2231 gdb_assert (sectp != NULL);
2232 if ((sectp->flags & SEC_RELOC) != 0)
2233 {
2234 error (_("Dwarf Error: DWP format V2 with relocations is not"
2235 " supported in section %s [in module %s]"),
2236 get_section_name (info), get_section_file_name (info));
2237 }
2238 dwarf2_read_section (objfile, containing_section);
2239 /* Other code should have already caught virtual sections that don't
2240 fit. */
2241 gdb_assert (info->virtual_offset + info->size
2242 <= containing_section->size);
2243 /* If the real section is empty or there was a problem reading the
2244 section we shouldn't get here. */
2245 gdb_assert (containing_section->buffer != NULL);
2246 info->buffer = containing_section->buffer + info->virtual_offset;
2247 return;
2248 }
2249
4bf44c1c
TT
2250 /* If the section has relocations, we must read it ourselves.
2251 Otherwise we attach it to the BFD. */
2252 if ((sectp->flags & SEC_RELOC) == 0)
dce234bc 2253 {
d521ce57 2254 info->buffer = gdb_bfd_map_section (sectp, &info->size);
4bf44c1c 2255 return;
dce234bc 2256 }
dce234bc 2257
4bf44c1c
TT
2258 buf = obstack_alloc (&objfile->objfile_obstack, info->size);
2259 info->buffer = buf;
dce234bc
PP
2260
2261 /* When debugging .o files, we may need to apply relocations; see
2262 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
2263 We never compress sections in .o files, so we only need to
2264 try this when the section is not compressed. */
ac8035ab 2265 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
dce234bc
PP
2266 if (retbuf != NULL)
2267 {
2268 info->buffer = retbuf;
2269 return;
2270 }
2271
a32a8923
DE
2272 abfd = get_section_bfd_owner (info);
2273 gdb_assert (abfd != NULL);
2274
dce234bc
PP
2275 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
2276 || bfd_bread (buf, info->size, abfd) != info->size)
19ac8c2e
DE
2277 {
2278 error (_("Dwarf Error: Can't read DWARF data"
2279 " in section %s [in module %s]"),
2280 bfd_section_name (abfd, sectp), bfd_get_filename (abfd));
2281 }
dce234bc
PP
2282}
2283
9e0ac564
TT
2284/* A helper function that returns the size of a section in a safe way.
2285 If you are positive that the section has been read before using the
2286 size, then it is safe to refer to the dwarf2_section_info object's
2287 "size" field directly. In other cases, you must call this
2288 function, because for compressed sections the size field is not set
2289 correctly until the section has been read. */
2290
2291static bfd_size_type
2292dwarf2_section_size (struct objfile *objfile,
2293 struct dwarf2_section_info *info)
2294{
2295 if (!info->readin)
2296 dwarf2_read_section (objfile, info);
2297 return info->size;
2298}
2299
dce234bc 2300/* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
0963b4bd 2301 SECTION_NAME. */
af34e669 2302
dce234bc 2303void
3017a003
TG
2304dwarf2_get_section_info (struct objfile *objfile,
2305 enum dwarf2_section_enum sect,
d521ce57 2306 asection **sectp, const gdb_byte **bufp,
dce234bc
PP
2307 bfd_size_type *sizep)
2308{
2309 struct dwarf2_per_objfile *data
2310 = objfile_data (objfile, dwarf2_objfile_data_key);
2311 struct dwarf2_section_info *info;
a3b2a86b
TT
2312
2313 /* We may see an objfile without any DWARF, in which case we just
2314 return nothing. */
2315 if (data == NULL)
2316 {
2317 *sectp = NULL;
2318 *bufp = NULL;
2319 *sizep = 0;
2320 return;
2321 }
3017a003
TG
2322 switch (sect)
2323 {
2324 case DWARF2_DEBUG_FRAME:
2325 info = &data->frame;
2326 break;
2327 case DWARF2_EH_FRAME:
2328 info = &data->eh_frame;
2329 break;
2330 default:
2331 gdb_assert_not_reached ("unexpected section");
2332 }
dce234bc 2333
9e0ac564 2334 dwarf2_read_section (objfile, info);
dce234bc 2335
a32a8923 2336 *sectp = get_section_bfd_section (info);
dce234bc
PP
2337 *bufp = info->buffer;
2338 *sizep = info->size;
2339}
2340
36586728
TT
2341/* A helper function to find the sections for a .dwz file. */
2342
2343static void
2344locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2345{
2346 struct dwz_file *dwz_file = arg;
2347
2348 /* Note that we only support the standard ELF names, because .dwz
2349 is ELF-only (at the time of writing). */
2350 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2351 {
73869dc2 2352 dwz_file->abbrev.s.asection = sectp;
36586728
TT
2353 dwz_file->abbrev.size = bfd_get_section_size (sectp);
2354 }
2355 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2356 {
73869dc2 2357 dwz_file->info.s.asection = sectp;
36586728
TT
2358 dwz_file->info.size = bfd_get_section_size (sectp);
2359 }
2360 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2361 {
73869dc2 2362 dwz_file->str.s.asection = sectp;
36586728
TT
2363 dwz_file->str.size = bfd_get_section_size (sectp);
2364 }
2365 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2366 {
73869dc2 2367 dwz_file->line.s.asection = sectp;
36586728
TT
2368 dwz_file->line.size = bfd_get_section_size (sectp);
2369 }
2370 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2371 {
73869dc2 2372 dwz_file->macro.s.asection = sectp;
36586728
TT
2373 dwz_file->macro.size = bfd_get_section_size (sectp);
2374 }
2ec9a5e0
TT
2375 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2376 {
73869dc2 2377 dwz_file->gdb_index.s.asection = sectp;
2ec9a5e0
TT
2378 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2379 }
36586728
TT
2380}
2381
4db1a1dc
TT
2382/* Open the separate '.dwz' debug file, if needed. Return NULL if
2383 there is no .gnu_debugaltlink section in the file. Error if there
2384 is such a section but the file cannot be found. */
36586728
TT
2385
2386static struct dwz_file *
2387dwarf2_get_dwz_file (void)
2388{
4db1a1dc
TT
2389 bfd *dwz_bfd;
2390 char *data;
36586728
TT
2391 struct cleanup *cleanup;
2392 const char *filename;
2393 struct dwz_file *result;
acd13123 2394 bfd_size_type buildid_len_arg;
dc294be5
TT
2395 size_t buildid_len;
2396 bfd_byte *buildid;
36586728
TT
2397
2398 if (dwarf2_per_objfile->dwz_file != NULL)
2399 return dwarf2_per_objfile->dwz_file;
2400
4db1a1dc
TT
2401 bfd_set_error (bfd_error_no_error);
2402 data = bfd_get_alt_debug_link_info (dwarf2_per_objfile->objfile->obfd,
acd13123 2403 &buildid_len_arg, &buildid);
4db1a1dc
TT
2404 if (data == NULL)
2405 {
2406 if (bfd_get_error () == bfd_error_no_error)
2407 return NULL;
2408 error (_("could not read '.gnu_debugaltlink' section: %s"),
2409 bfd_errmsg (bfd_get_error ()));
2410 }
36586728 2411 cleanup = make_cleanup (xfree, data);
dc294be5 2412 make_cleanup (xfree, buildid);
36586728 2413
acd13123
TT
2414 buildid_len = (size_t) buildid_len_arg;
2415
f9d83a0b 2416 filename = (const char *) data;
36586728
TT
2417 if (!IS_ABSOLUTE_PATH (filename))
2418 {
4262abfb 2419 char *abs = gdb_realpath (objfile_name (dwarf2_per_objfile->objfile));
36586728
TT
2420 char *rel;
2421
2422 make_cleanup (xfree, abs);
2423 abs = ldirname (abs);
2424 make_cleanup (xfree, abs);
2425
2426 rel = concat (abs, SLASH_STRING, filename, (char *) NULL);
2427 make_cleanup (xfree, rel);
2428 filename = rel;
2429 }
2430
dc294be5
TT
2431 /* First try the file name given in the section. If that doesn't
2432 work, try to use the build-id instead. */
36586728 2433 dwz_bfd = gdb_bfd_open (filename, gnutarget, -1);
dc294be5 2434 if (dwz_bfd != NULL)
36586728 2435 {
dc294be5
TT
2436 if (!build_id_verify (dwz_bfd, buildid_len, buildid))
2437 {
2438 gdb_bfd_unref (dwz_bfd);
2439 dwz_bfd = NULL;
2440 }
36586728
TT
2441 }
2442
dc294be5
TT
2443 if (dwz_bfd == NULL)
2444 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2445
2446 if (dwz_bfd == NULL)
2447 error (_("could not find '.gnu_debugaltlink' file for %s"),
2448 objfile_name (dwarf2_per_objfile->objfile));
2449
36586728
TT
2450 result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2451 struct dwz_file);
2452 result->dwz_bfd = dwz_bfd;
2453
2454 bfd_map_over_sections (dwz_bfd, locate_dwz_sections, result);
2455
2456 do_cleanups (cleanup);
2457
13aaf454 2458 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, dwz_bfd);
8d2cc612 2459 dwarf2_per_objfile->dwz_file = result;
36586728
TT
2460 return result;
2461}
9291a0cd 2462\f
7b9f3c50
DE
2463/* DWARF quick_symbols_functions support. */
2464
2465/* TUs can share .debug_line entries, and there can be a lot more TUs than
2466 unique line tables, so we maintain a separate table of all .debug_line
2467 derived entries to support the sharing.
2468 All the quick functions need is the list of file names. We discard the
2469 line_header when we're done and don't need to record it here. */
2470struct quick_file_names
2471{
094b34ac
DE
2472 /* The data used to construct the hash key. */
2473 struct stmt_list_hash hash;
7b9f3c50
DE
2474
2475 /* The number of entries in file_names, real_names. */
2476 unsigned int num_file_names;
2477
2478 /* The file names from the line table, after being run through
2479 file_full_name. */
2480 const char **file_names;
2481
2482 /* The file names from the line table after being run through
2483 gdb_realpath. These are computed lazily. */
2484 const char **real_names;
2485};
2486
2487/* When using the index (and thus not using psymtabs), each CU has an
2488 object of this type. This is used to hold information needed by
2489 the various "quick" methods. */
2490struct dwarf2_per_cu_quick_data
2491{
2492 /* The file table. This can be NULL if there was no file table
2493 or it's currently not read in.
2494 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2495 struct quick_file_names *file_names;
2496
2497 /* The corresponding symbol table. This is NULL if symbols for this
2498 CU have not yet been read. */
2499 struct symtab *symtab;
2500
2501 /* A temporary mark bit used when iterating over all CUs in
2502 expand_symtabs_matching. */
2503 unsigned int mark : 1;
2504
2505 /* True if we've tried to read the file table and found there isn't one.
2506 There will be no point in trying to read it again next time. */
2507 unsigned int no_file_data : 1;
2508};
2509
094b34ac
DE
2510/* Utility hash function for a stmt_list_hash. */
2511
2512static hashval_t
2513hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2514{
2515 hashval_t v = 0;
2516
2517 if (stmt_list_hash->dwo_unit != NULL)
2518 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2519 v += stmt_list_hash->line_offset.sect_off;
2520 return v;
2521}
2522
2523/* Utility equality function for a stmt_list_hash. */
2524
2525static int
2526eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2527 const struct stmt_list_hash *rhs)
2528{
2529 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2530 return 0;
2531 if (lhs->dwo_unit != NULL
2532 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2533 return 0;
2534
2535 return lhs->line_offset.sect_off == rhs->line_offset.sect_off;
2536}
2537
7b9f3c50
DE
2538/* Hash function for a quick_file_names. */
2539
2540static hashval_t
2541hash_file_name_entry (const void *e)
2542{
2543 const struct quick_file_names *file_data = e;
2544
094b34ac 2545 return hash_stmt_list_entry (&file_data->hash);
7b9f3c50
DE
2546}
2547
2548/* Equality function for a quick_file_names. */
2549
2550static int
2551eq_file_name_entry (const void *a, const void *b)
2552{
2553 const struct quick_file_names *ea = a;
2554 const struct quick_file_names *eb = b;
2555
094b34ac 2556 return eq_stmt_list_entry (&ea->hash, &eb->hash);
7b9f3c50
DE
2557}
2558
2559/* Delete function for a quick_file_names. */
2560
2561static void
2562delete_file_name_entry (void *e)
2563{
2564 struct quick_file_names *file_data = e;
2565 int i;
2566
2567 for (i = 0; i < file_data->num_file_names; ++i)
2568 {
2569 xfree ((void*) file_data->file_names[i]);
2570 if (file_data->real_names)
2571 xfree ((void*) file_data->real_names[i]);
2572 }
2573
2574 /* The space for the struct itself lives on objfile_obstack,
2575 so we don't free it here. */
2576}
2577
2578/* Create a quick_file_names hash table. */
2579
2580static htab_t
2581create_quick_file_names_table (unsigned int nr_initial_entries)
2582{
2583 return htab_create_alloc (nr_initial_entries,
2584 hash_file_name_entry, eq_file_name_entry,
2585 delete_file_name_entry, xcalloc, xfree);
2586}
9291a0cd 2587
918dd910
JK
2588/* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2589 have to be created afterwards. You should call age_cached_comp_units after
2590 processing PER_CU->CU. dw2_setup must have been already called. */
2591
2592static void
2593load_cu (struct dwarf2_per_cu_data *per_cu)
2594{
3019eac3 2595 if (per_cu->is_debug_types)
e5fe5e75 2596 load_full_type_unit (per_cu);
918dd910 2597 else
95554aad 2598 load_full_comp_unit (per_cu, language_minimal);
918dd910 2599
918dd910 2600 gdb_assert (per_cu->cu != NULL);
2dc860c0
DE
2601
2602 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
918dd910
JK
2603}
2604
a0f42c21 2605/* Read in the symbols for PER_CU. */
2fdf6df6 2606
9291a0cd 2607static void
a0f42c21 2608dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
9291a0cd
TT
2609{
2610 struct cleanup *back_to;
2611
f4dc4d17
DE
2612 /* Skip type_unit_groups, reading the type units they contain
2613 is handled elsewhere. */
2614 if (IS_TYPE_UNIT_GROUP (per_cu))
2615 return;
2616
9291a0cd
TT
2617 back_to = make_cleanup (dwarf2_release_queue, NULL);
2618
95554aad
TT
2619 if (dwarf2_per_objfile->using_index
2620 ? per_cu->v.quick->symtab == NULL
2621 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2622 {
2623 queue_comp_unit (per_cu, language_minimal);
2624 load_cu (per_cu);
89e63ee4
DE
2625
2626 /* If we just loaded a CU from a DWO, and we're working with an index
2627 that may badly handle TUs, load all the TUs in that DWO as well.
2628 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2629 if (!per_cu->is_debug_types
2630 && per_cu->cu->dwo_unit != NULL
2631 && dwarf2_per_objfile->index_table != NULL
2632 && dwarf2_per_objfile->index_table->version <= 7
2633 /* DWP files aren't supported yet. */
2634 && get_dwp_file () == NULL)
2635 queue_and_load_all_dwo_tus (per_cu);
95554aad 2636 }
9291a0cd 2637
a0f42c21 2638 process_queue ();
9291a0cd
TT
2639
2640 /* Age the cache, releasing compilation units that have not
2641 been used recently. */
2642 age_cached_comp_units ();
2643
2644 do_cleanups (back_to);
2645}
2646
2647/* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2648 the objfile from which this CU came. Returns the resulting symbol
2649 table. */
2fdf6df6 2650
9291a0cd 2651static struct symtab *
a0f42c21 2652dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
9291a0cd 2653{
95554aad 2654 gdb_assert (dwarf2_per_objfile->using_index);
9291a0cd
TT
2655 if (!per_cu->v.quick->symtab)
2656 {
2657 struct cleanup *back_to = make_cleanup (free_cached_comp_units, NULL);
2658 increment_reading_symtab ();
a0f42c21 2659 dw2_do_instantiate_symtab (per_cu);
95554aad 2660 process_cu_includes ();
9291a0cd
TT
2661 do_cleanups (back_to);
2662 }
2663 return per_cu->v.quick->symtab;
2664}
2665
8832e7e3 2666/* Return the CU/TU given its index.
f4dc4d17
DE
2667
2668 This is intended for loops like:
2669
2670 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2671 + dwarf2_per_objfile->n_type_units); ++i)
2672 {
8832e7e3 2673 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
f4dc4d17
DE
2674
2675 ...;
2676 }
2677*/
2fdf6df6 2678
1fd400ff 2679static struct dwarf2_per_cu_data *
8832e7e3 2680dw2_get_cutu (int index)
1fd400ff
TT
2681{
2682 if (index >= dwarf2_per_objfile->n_comp_units)
2683 {
f4dc4d17 2684 index -= dwarf2_per_objfile->n_comp_units;
094b34ac
DE
2685 gdb_assert (index < dwarf2_per_objfile->n_type_units);
2686 return &dwarf2_per_objfile->all_type_units[index]->per_cu;
f4dc4d17
DE
2687 }
2688
2689 return dwarf2_per_objfile->all_comp_units[index];
2690}
2691
8832e7e3
DE
2692/* Return the CU given its index.
2693 This differs from dw2_get_cutu in that it's for when you know INDEX
2694 refers to a CU. */
f4dc4d17
DE
2695
2696static struct dwarf2_per_cu_data *
8832e7e3 2697dw2_get_cu (int index)
f4dc4d17 2698{
8832e7e3 2699 gdb_assert (index >= 0 && index < dwarf2_per_objfile->n_comp_units);
f4dc4d17 2700
1fd400ff
TT
2701 return dwarf2_per_objfile->all_comp_units[index];
2702}
2703
2ec9a5e0
TT
2704/* A helper for create_cus_from_index that handles a given list of
2705 CUs. */
2fdf6df6 2706
74a0d9f6 2707static void
2ec9a5e0
TT
2708create_cus_from_index_list (struct objfile *objfile,
2709 const gdb_byte *cu_list, offset_type n_elements,
2710 struct dwarf2_section_info *section,
2711 int is_dwz,
2712 int base_offset)
9291a0cd
TT
2713{
2714 offset_type i;
9291a0cd 2715
2ec9a5e0 2716 for (i = 0; i < n_elements; i += 2)
9291a0cd
TT
2717 {
2718 struct dwarf2_per_cu_data *the_cu;
2719 ULONGEST offset, length;
2720
74a0d9f6
JK
2721 gdb_static_assert (sizeof (ULONGEST) >= 8);
2722 offset = extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2723 length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
9291a0cd
TT
2724 cu_list += 2 * 8;
2725
2726 the_cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2727 struct dwarf2_per_cu_data);
b64f50a1 2728 the_cu->offset.sect_off = offset;
9291a0cd
TT
2729 the_cu->length = length;
2730 the_cu->objfile = objfile;
8a0459fd 2731 the_cu->section = section;
9291a0cd
TT
2732 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2733 struct dwarf2_per_cu_quick_data);
2ec9a5e0
TT
2734 the_cu->is_dwz = is_dwz;
2735 dwarf2_per_objfile->all_comp_units[base_offset + i / 2] = the_cu;
9291a0cd 2736 }
9291a0cd
TT
2737}
2738
2ec9a5e0 2739/* Read the CU list from the mapped index, and use it to create all
74a0d9f6 2740 the CU objects for this objfile. */
2ec9a5e0 2741
74a0d9f6 2742static void
2ec9a5e0
TT
2743create_cus_from_index (struct objfile *objfile,
2744 const gdb_byte *cu_list, offset_type cu_list_elements,
2745 const gdb_byte *dwz_list, offset_type dwz_elements)
2746{
2747 struct dwz_file *dwz;
2748
2749 dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
2750 dwarf2_per_objfile->all_comp_units
2751 = obstack_alloc (&objfile->objfile_obstack,
2752 dwarf2_per_objfile->n_comp_units
2753 * sizeof (struct dwarf2_per_cu_data *));
2754
74a0d9f6
JK
2755 create_cus_from_index_list (objfile, cu_list, cu_list_elements,
2756 &dwarf2_per_objfile->info, 0, 0);
2ec9a5e0
TT
2757
2758 if (dwz_elements == 0)
74a0d9f6 2759 return;
2ec9a5e0
TT
2760
2761 dwz = dwarf2_get_dwz_file ();
74a0d9f6
JK
2762 create_cus_from_index_list (objfile, dwz_list, dwz_elements, &dwz->info, 1,
2763 cu_list_elements / 2);
2ec9a5e0
TT
2764}
2765
1fd400ff 2766/* Create the signatured type hash table from the index. */
673bfd45 2767
74a0d9f6 2768static void
673bfd45 2769create_signatured_type_table_from_index (struct objfile *objfile,
8b70b953 2770 struct dwarf2_section_info *section,
673bfd45
DE
2771 const gdb_byte *bytes,
2772 offset_type elements)
1fd400ff
TT
2773{
2774 offset_type i;
673bfd45 2775 htab_t sig_types_hash;
1fd400ff 2776
6aa5f3a6
DE
2777 dwarf2_per_objfile->n_type_units
2778 = dwarf2_per_objfile->n_allocated_type_units
2779 = elements / 3;
d467dd73 2780 dwarf2_per_objfile->all_type_units
a2ce51a0
DE
2781 = xmalloc (dwarf2_per_objfile->n_type_units
2782 * sizeof (struct signatured_type *));
1fd400ff 2783
673bfd45 2784 sig_types_hash = allocate_signatured_type_table (objfile);
1fd400ff
TT
2785
2786 for (i = 0; i < elements; i += 3)
2787 {
52dc124a
DE
2788 struct signatured_type *sig_type;
2789 ULONGEST offset, type_offset_in_tu, signature;
1fd400ff
TT
2790 void **slot;
2791
74a0d9f6
JK
2792 gdb_static_assert (sizeof (ULONGEST) >= 8);
2793 offset = extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2794 type_offset_in_tu = extract_unsigned_integer (bytes + 8, 8,
2795 BFD_ENDIAN_LITTLE);
1fd400ff
TT
2796 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2797 bytes += 3 * 8;
2798
52dc124a 2799 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
1fd400ff 2800 struct signatured_type);
52dc124a 2801 sig_type->signature = signature;
3019eac3
DE
2802 sig_type->type_offset_in_tu.cu_off = type_offset_in_tu;
2803 sig_type->per_cu.is_debug_types = 1;
8a0459fd 2804 sig_type->per_cu.section = section;
52dc124a
DE
2805 sig_type->per_cu.offset.sect_off = offset;
2806 sig_type->per_cu.objfile = objfile;
2807 sig_type->per_cu.v.quick
1fd400ff
TT
2808 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2809 struct dwarf2_per_cu_quick_data);
2810
52dc124a
DE
2811 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
2812 *slot = sig_type;
1fd400ff 2813
b4dd5633 2814 dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
1fd400ff
TT
2815 }
2816
673bfd45 2817 dwarf2_per_objfile->signatured_types = sig_types_hash;
1fd400ff
TT
2818}
2819
9291a0cd
TT
2820/* Read the address map data from the mapped index, and use it to
2821 populate the objfile's psymtabs_addrmap. */
2fdf6df6 2822
9291a0cd
TT
2823static void
2824create_addrmap_from_index (struct objfile *objfile, struct mapped_index *index)
2825{
2826 const gdb_byte *iter, *end;
2827 struct obstack temp_obstack;
2828 struct addrmap *mutable_map;
2829 struct cleanup *cleanup;
2830 CORE_ADDR baseaddr;
2831
2832 obstack_init (&temp_obstack);
2833 cleanup = make_cleanup_obstack_free (&temp_obstack);
2834 mutable_map = addrmap_create_mutable (&temp_obstack);
2835
2836 iter = index->address_table;
2837 end = iter + index->address_table_size;
2838
2839 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2840
2841 while (iter < end)
2842 {
2843 ULONGEST hi, lo, cu_index;
2844 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2845 iter += 8;
2846 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2847 iter += 8;
2848 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2849 iter += 4;
f652bce2 2850
24a55014 2851 if (lo > hi)
f652bce2 2852 {
24a55014
DE
2853 complaint (&symfile_complaints,
2854 _(".gdb_index address table has invalid range (%s - %s)"),
c0cd8254 2855 hex_string (lo), hex_string (hi));
24a55014 2856 continue;
f652bce2 2857 }
24a55014
DE
2858
2859 if (cu_index >= dwarf2_per_objfile->n_comp_units)
f652bce2
DE
2860 {
2861 complaint (&symfile_complaints,
2862 _(".gdb_index address table has invalid CU number %u"),
2863 (unsigned) cu_index);
24a55014 2864 continue;
f652bce2 2865 }
24a55014
DE
2866
2867 addrmap_set_empty (mutable_map, lo + baseaddr, hi + baseaddr - 1,
8832e7e3 2868 dw2_get_cutu (cu_index));
9291a0cd
TT
2869 }
2870
2871 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
2872 &objfile->objfile_obstack);
2873 do_cleanups (cleanup);
2874}
2875
59d7bcaf
JK
2876/* The hash function for strings in the mapped index. This is the same as
2877 SYMBOL_HASH_NEXT, but we keep a separate copy to maintain control over the
2878 implementation. This is necessary because the hash function is tied to the
2879 format of the mapped index file. The hash values do not have to match with
559a7a62
JK
2880 SYMBOL_HASH_NEXT.
2881
2882 Use INT_MAX for INDEX_VERSION if you generate the current index format. */
2fdf6df6 2883
9291a0cd 2884static hashval_t
559a7a62 2885mapped_index_string_hash (int index_version, const void *p)
9291a0cd
TT
2886{
2887 const unsigned char *str = (const unsigned char *) p;
2888 hashval_t r = 0;
2889 unsigned char c;
2890
2891 while ((c = *str++) != 0)
559a7a62
JK
2892 {
2893 if (index_version >= 5)
2894 c = tolower (c);
2895 r = r * 67 + c - 113;
2896 }
9291a0cd
TT
2897
2898 return r;
2899}
2900
2901/* Find a slot in the mapped index INDEX for the object named NAME.
2902 If NAME is found, set *VEC_OUT to point to the CU vector in the
2903 constant pool and return 1. If NAME cannot be found, return 0. */
2fdf6df6 2904
9291a0cd
TT
2905static int
2906find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2907 offset_type **vec_out)
2908{
0cf03b49
JK
2909 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2910 offset_type hash;
9291a0cd 2911 offset_type slot, step;
559a7a62 2912 int (*cmp) (const char *, const char *);
9291a0cd 2913
0cf03b49
JK
2914 if (current_language->la_language == language_cplus
2915 || current_language->la_language == language_java
2916 || current_language->la_language == language_fortran)
2917 {
2918 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
2919 not contain any. */
2920 const char *paren = strchr (name, '(');
2921
2922 if (paren)
2923 {
2924 char *dup;
2925
2926 dup = xmalloc (paren - name + 1);
2927 memcpy (dup, name, paren - name);
2928 dup[paren - name] = 0;
2929
2930 make_cleanup (xfree, dup);
2931 name = dup;
2932 }
2933 }
2934
559a7a62 2935 /* Index version 4 did not support case insensitive searches. But the
feea76c2 2936 indices for case insensitive languages are built in lowercase, therefore
559a7a62
JK
2937 simulate our NAME being searched is also lowercased. */
2938 hash = mapped_index_string_hash ((index->version == 4
2939 && case_sensitivity == case_sensitive_off
2940 ? 5 : index->version),
2941 name);
2942
3876f04e
DE
2943 slot = hash & (index->symbol_table_slots - 1);
2944 step = ((hash * 17) & (index->symbol_table_slots - 1)) | 1;
559a7a62 2945 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
9291a0cd
TT
2946
2947 for (;;)
2948 {
2949 /* Convert a slot number to an offset into the table. */
2950 offset_type i = 2 * slot;
2951 const char *str;
3876f04e 2952 if (index->symbol_table[i] == 0 && index->symbol_table[i + 1] == 0)
0cf03b49
JK
2953 {
2954 do_cleanups (back_to);
2955 return 0;
2956 }
9291a0cd 2957
3876f04e 2958 str = index->constant_pool + MAYBE_SWAP (index->symbol_table[i]);
559a7a62 2959 if (!cmp (name, str))
9291a0cd
TT
2960 {
2961 *vec_out = (offset_type *) (index->constant_pool
3876f04e 2962 + MAYBE_SWAP (index->symbol_table[i + 1]));
0cf03b49 2963 do_cleanups (back_to);
9291a0cd
TT
2964 return 1;
2965 }
2966
3876f04e 2967 slot = (slot + step) & (index->symbol_table_slots - 1);
9291a0cd
TT
2968 }
2969}
2970
2ec9a5e0
TT
2971/* A helper function that reads the .gdb_index from SECTION and fills
2972 in MAP. FILENAME is the name of the file containing the section;
2973 it is used for error reporting. DEPRECATED_OK is nonzero if it is
2974 ok to use deprecated sections.
2975
2976 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2977 out parameters that are filled in with information about the CU and
2978 TU lists in the section.
2979
2980 Returns 1 if all went well, 0 otherwise. */
2fdf6df6 2981
9291a0cd 2982static int
2ec9a5e0
TT
2983read_index_from_section (struct objfile *objfile,
2984 const char *filename,
2985 int deprecated_ok,
2986 struct dwarf2_section_info *section,
2987 struct mapped_index *map,
2988 const gdb_byte **cu_list,
2989 offset_type *cu_list_elements,
2990 const gdb_byte **types_list,
2991 offset_type *types_list_elements)
9291a0cd 2992{
948f8e3d 2993 const gdb_byte *addr;
2ec9a5e0 2994 offset_type version;
b3b272e1 2995 offset_type *metadata;
1fd400ff 2996 int i;
9291a0cd 2997
2ec9a5e0 2998 if (dwarf2_section_empty_p (section))
9291a0cd 2999 return 0;
82430852
JK
3000
3001 /* Older elfutils strip versions could keep the section in the main
3002 executable while splitting it for the separate debug info file. */
a32a8923 3003 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
82430852
JK
3004 return 0;
3005
2ec9a5e0 3006 dwarf2_read_section (objfile, section);
9291a0cd 3007
2ec9a5e0 3008 addr = section->buffer;
9291a0cd 3009 /* Version check. */
1fd400ff 3010 version = MAYBE_SWAP (*(offset_type *) addr);
987d643c 3011 /* Versions earlier than 3 emitted every copy of a psymbol. This
a6e293d1 3012 causes the index to behave very poorly for certain requests. Version 3
831adc1f 3013 contained incomplete addrmap. So, it seems better to just ignore such
481860b3 3014 indices. */
831adc1f 3015 if (version < 4)
481860b3
GB
3016 {
3017 static int warning_printed = 0;
3018 if (!warning_printed)
3019 {
3020 warning (_("Skipping obsolete .gdb_index section in %s."),
2ec9a5e0 3021 filename);
481860b3
GB
3022 warning_printed = 1;
3023 }
3024 return 0;
3025 }
3026 /* Index version 4 uses a different hash function than index version
3027 5 and later.
3028
3029 Versions earlier than 6 did not emit psymbols for inlined
3030 functions. Using these files will cause GDB not to be able to
3031 set breakpoints on inlined functions by name, so we ignore these
e615022a
DE
3032 indices unless the user has done
3033 "set use-deprecated-index-sections on". */
2ec9a5e0 3034 if (version < 6 && !deprecated_ok)
481860b3
GB
3035 {
3036 static int warning_printed = 0;
3037 if (!warning_printed)
3038 {
e615022a
DE
3039 warning (_("\
3040Skipping deprecated .gdb_index section in %s.\n\
3041Do \"set use-deprecated-index-sections on\" before the file is read\n\
3042to use the section anyway."),
2ec9a5e0 3043 filename);
481860b3
GB
3044 warning_printed = 1;
3045 }
3046 return 0;
3047 }
796a7ff8 3048 /* Version 7 indices generated by gold refer to the CU for a symbol instead
8943b874
DE
3049 of the TU (for symbols coming from TUs),
3050 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3051 Plus gold-generated indices can have duplicate entries for global symbols,
3052 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3053 These are just performance bugs, and we can't distinguish gdb-generated
3054 indices from gold-generated ones, so issue no warning here. */
796a7ff8 3055
481860b3 3056 /* Indexes with higher version than the one supported by GDB may be no
594e8718 3057 longer backward compatible. */
796a7ff8 3058 if (version > 8)
594e8718 3059 return 0;
9291a0cd 3060
559a7a62 3061 map->version = version;
2ec9a5e0 3062 map->total_size = section->size;
9291a0cd
TT
3063
3064 metadata = (offset_type *) (addr + sizeof (offset_type));
1fd400ff
TT
3065
3066 i = 0;
2ec9a5e0
TT
3067 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3068 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3069 / 8);
1fd400ff
TT
3070 ++i;
3071
2ec9a5e0
TT
3072 *types_list = addr + MAYBE_SWAP (metadata[i]);
3073 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3074 - MAYBE_SWAP (metadata[i]))
3075 / 8);
987d643c 3076 ++i;
1fd400ff
TT
3077
3078 map->address_table = addr + MAYBE_SWAP (metadata[i]);
3079 map->address_table_size = (MAYBE_SWAP (metadata[i + 1])
3080 - MAYBE_SWAP (metadata[i]));
3081 ++i;
3082
3876f04e
DE
3083 map->symbol_table = (offset_type *) (addr + MAYBE_SWAP (metadata[i]));
3084 map->symbol_table_slots = ((MAYBE_SWAP (metadata[i + 1])
3085 - MAYBE_SWAP (metadata[i]))
3086 / (2 * sizeof (offset_type)));
1fd400ff 3087 ++i;
9291a0cd 3088
f9d83a0b 3089 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
1fd400ff 3090
2ec9a5e0
TT
3091 return 1;
3092}
3093
3094
3095/* Read the index file. If everything went ok, initialize the "quick"
3096 elements of all the CUs and return 1. Otherwise, return 0. */
3097
3098static int
3099dwarf2_read_index (struct objfile *objfile)
3100{
3101 struct mapped_index local_map, *map;
3102 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3103 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
4db1a1dc 3104 struct dwz_file *dwz;
2ec9a5e0 3105
4262abfb 3106 if (!read_index_from_section (objfile, objfile_name (objfile),
2ec9a5e0
TT
3107 use_deprecated_index_sections,
3108 &dwarf2_per_objfile->gdb_index, &local_map,
3109 &cu_list, &cu_list_elements,
3110 &types_list, &types_list_elements))
3111 return 0;
3112
0fefef59 3113 /* Don't use the index if it's empty. */
2ec9a5e0 3114 if (local_map.symbol_table_slots == 0)
0fefef59
DE
3115 return 0;
3116
2ec9a5e0
TT
3117 /* If there is a .dwz file, read it so we can get its CU list as
3118 well. */
4db1a1dc
TT
3119 dwz = dwarf2_get_dwz_file ();
3120 if (dwz != NULL)
2ec9a5e0 3121 {
2ec9a5e0
TT
3122 struct mapped_index dwz_map;
3123 const gdb_byte *dwz_types_ignore;
3124 offset_type dwz_types_elements_ignore;
3125
3126 if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
3127 1,
3128 &dwz->gdb_index, &dwz_map,
3129 &dwz_list, &dwz_list_elements,
3130 &dwz_types_ignore,
3131 &dwz_types_elements_ignore))
3132 {
3133 warning (_("could not read '.gdb_index' section from %s; skipping"),
3134 bfd_get_filename (dwz->dwz_bfd));
3135 return 0;
3136 }
3137 }
3138
74a0d9f6
JK
3139 create_cus_from_index (objfile, cu_list, cu_list_elements, dwz_list,
3140 dwz_list_elements);
1fd400ff 3141
8b70b953
TT
3142 if (types_list_elements)
3143 {
3144 struct dwarf2_section_info *section;
3145
3146 /* We can only handle a single .debug_types when we have an
3147 index. */
3148 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
3149 return 0;
3150
3151 section = VEC_index (dwarf2_section_info_def,
3152 dwarf2_per_objfile->types, 0);
3153
74a0d9f6
JK
3154 create_signatured_type_table_from_index (objfile, section, types_list,
3155 types_list_elements);
8b70b953 3156 }
9291a0cd 3157
2ec9a5e0
TT
3158 create_addrmap_from_index (objfile, &local_map);
3159
3160 map = obstack_alloc (&objfile->objfile_obstack, sizeof (struct mapped_index));
3161 *map = local_map;
9291a0cd
TT
3162
3163 dwarf2_per_objfile->index_table = map;
3164 dwarf2_per_objfile->using_index = 1;
7b9f3c50
DE
3165 dwarf2_per_objfile->quick_file_names_table =
3166 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
9291a0cd
TT
3167
3168 return 1;
3169}
3170
3171/* A helper for the "quick" functions which sets the global
3172 dwarf2_per_objfile according to OBJFILE. */
2fdf6df6 3173
9291a0cd
TT
3174static void
3175dw2_setup (struct objfile *objfile)
3176{
3177 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
3178 gdb_assert (dwarf2_per_objfile);
3179}
3180
dee91e82 3181/* die_reader_func for dw2_get_file_names. */
2fdf6df6 3182
dee91e82
DE
3183static void
3184dw2_get_file_names_reader (const struct die_reader_specs *reader,
d521ce57 3185 const gdb_byte *info_ptr,
dee91e82
DE
3186 struct die_info *comp_unit_die,
3187 int has_children,
3188 void *data)
9291a0cd 3189{
dee91e82
DE
3190 struct dwarf2_cu *cu = reader->cu;
3191 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
3192 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 3193 struct dwarf2_per_cu_data *lh_cu;
7b9f3c50 3194 struct line_header *lh;
9291a0cd 3195 struct attribute *attr;
dee91e82 3196 int i;
15d034d0 3197 const char *name, *comp_dir;
7b9f3c50
DE
3198 void **slot;
3199 struct quick_file_names *qfn;
3200 unsigned int line_offset;
9291a0cd 3201
0186c6a7
DE
3202 gdb_assert (! this_cu->is_debug_types);
3203
07261596
TT
3204 /* Our callers never want to match partial units -- instead they
3205 will match the enclosing full CU. */
3206 if (comp_unit_die->tag == DW_TAG_partial_unit)
3207 {
3208 this_cu->v.quick->no_file_data = 1;
3209 return;
3210 }
3211
0186c6a7 3212 lh_cu = this_cu;
7b9f3c50
DE
3213 lh = NULL;
3214 slot = NULL;
3215 line_offset = 0;
dee91e82
DE
3216
3217 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
9291a0cd
TT
3218 if (attr)
3219 {
7b9f3c50
DE
3220 struct quick_file_names find_entry;
3221
3222 line_offset = DW_UNSND (attr);
3223
3224 /* We may have already read in this line header (TU line header sharing).
3225 If we have we're done. */
094b34ac
DE
3226 find_entry.hash.dwo_unit = cu->dwo_unit;
3227 find_entry.hash.line_offset.sect_off = line_offset;
7b9f3c50
DE
3228 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
3229 &find_entry, INSERT);
3230 if (*slot != NULL)
3231 {
094b34ac 3232 lh_cu->v.quick->file_names = *slot;
dee91e82 3233 return;
7b9f3c50
DE
3234 }
3235
3019eac3 3236 lh = dwarf_decode_line_header (line_offset, cu);
9291a0cd
TT
3237 }
3238 if (lh == NULL)
3239 {
094b34ac 3240 lh_cu->v.quick->no_file_data = 1;
dee91e82 3241 return;
9291a0cd
TT
3242 }
3243
7b9f3c50 3244 qfn = obstack_alloc (&objfile->objfile_obstack, sizeof (*qfn));
094b34ac
DE
3245 qfn->hash.dwo_unit = cu->dwo_unit;
3246 qfn->hash.line_offset.sect_off = line_offset;
7b9f3c50
DE
3247 gdb_assert (slot != NULL);
3248 *slot = qfn;
9291a0cd 3249
dee91e82 3250 find_file_and_directory (comp_unit_die, cu, &name, &comp_dir);
9291a0cd 3251
7b9f3c50
DE
3252 qfn->num_file_names = lh->num_file_names;
3253 qfn->file_names = obstack_alloc (&objfile->objfile_obstack,
3254 lh->num_file_names * sizeof (char *));
9291a0cd 3255 for (i = 0; i < lh->num_file_names; ++i)
7b9f3c50
DE
3256 qfn->file_names[i] = file_full_name (i + 1, lh, comp_dir);
3257 qfn->real_names = NULL;
9291a0cd 3258
7b9f3c50 3259 free_line_header (lh);
7b9f3c50 3260
094b34ac 3261 lh_cu->v.quick->file_names = qfn;
dee91e82
DE
3262}
3263
3264/* A helper for the "quick" functions which attempts to read the line
3265 table for THIS_CU. */
3266
3267static struct quick_file_names *
e4a48d9d 3268dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
dee91e82 3269{
0186c6a7
DE
3270 /* This should never be called for TUs. */
3271 gdb_assert (! this_cu->is_debug_types);
3272 /* Nor type unit groups. */
3273 gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
f4dc4d17 3274
dee91e82
DE
3275 if (this_cu->v.quick->file_names != NULL)
3276 return this_cu->v.quick->file_names;
3277 /* If we know there is no line data, no point in looking again. */
3278 if (this_cu->v.quick->no_file_data)
3279 return NULL;
3280
0186c6a7 3281 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
dee91e82
DE
3282
3283 if (this_cu->v.quick->no_file_data)
3284 return NULL;
3285 return this_cu->v.quick->file_names;
9291a0cd
TT
3286}
3287
3288/* A helper for the "quick" functions which computes and caches the
7b9f3c50 3289 real path for a given file name from the line table. */
2fdf6df6 3290
9291a0cd 3291static const char *
7b9f3c50
DE
3292dw2_get_real_path (struct objfile *objfile,
3293 struct quick_file_names *qfn, int index)
9291a0cd 3294{
7b9f3c50
DE
3295 if (qfn->real_names == NULL)
3296 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
26f2dc30 3297 qfn->num_file_names, const char *);
9291a0cd 3298
7b9f3c50
DE
3299 if (qfn->real_names[index] == NULL)
3300 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]);
9291a0cd 3301
7b9f3c50 3302 return qfn->real_names[index];
9291a0cd
TT
3303}
3304
3305static struct symtab *
3306dw2_find_last_source_symtab (struct objfile *objfile)
3307{
3308 int index;
ae2de4f8 3309
9291a0cd
TT
3310 dw2_setup (objfile);
3311 index = dwarf2_per_objfile->n_comp_units - 1;
8832e7e3 3312 return dw2_instantiate_symtab (dw2_get_cutu (index));
9291a0cd
TT
3313}
3314
7b9f3c50
DE
3315/* Traversal function for dw2_forget_cached_source_info. */
3316
3317static int
3318dw2_free_cached_file_names (void **slot, void *info)
9291a0cd 3319{
7b9f3c50 3320 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
9291a0cd 3321
7b9f3c50 3322 if (file_data->real_names)
9291a0cd 3323 {
7b9f3c50 3324 int i;
9291a0cd 3325
7b9f3c50 3326 for (i = 0; i < file_data->num_file_names; ++i)
9291a0cd 3327 {
7b9f3c50
DE
3328 xfree ((void*) file_data->real_names[i]);
3329 file_data->real_names[i] = NULL;
9291a0cd
TT
3330 }
3331 }
7b9f3c50
DE
3332
3333 return 1;
3334}
3335
3336static void
3337dw2_forget_cached_source_info (struct objfile *objfile)
3338{
3339 dw2_setup (objfile);
3340
3341 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3342 dw2_free_cached_file_names, NULL);
9291a0cd
TT
3343}
3344
f8eba3c6
TT
3345/* Helper function for dw2_map_symtabs_matching_filename that expands
3346 the symtabs and calls the iterator. */
3347
3348static int
3349dw2_map_expand_apply (struct objfile *objfile,
3350 struct dwarf2_per_cu_data *per_cu,
f5b95b50 3351 const char *name, const char *real_path,
f8eba3c6
TT
3352 int (*callback) (struct symtab *, void *),
3353 void *data)
3354{
3355 struct symtab *last_made = objfile->symtabs;
3356
3357 /* Don't visit already-expanded CUs. */
3358 if (per_cu->v.quick->symtab)
3359 return 0;
3360
3361 /* This may expand more than one symtab, and we want to iterate over
3362 all of them. */
a0f42c21 3363 dw2_instantiate_symtab (per_cu);
f8eba3c6 3364
f5b95b50 3365 return iterate_over_some_symtabs (name, real_path, callback, data,
f8eba3c6
TT
3366 objfile->symtabs, last_made);
3367}
3368
3369/* Implementation of the map_symtabs_matching_filename method. */
3370
9291a0cd 3371static int
f8eba3c6 3372dw2_map_symtabs_matching_filename (struct objfile *objfile, const char *name,
f5b95b50 3373 const char *real_path,
f8eba3c6
TT
3374 int (*callback) (struct symtab *, void *),
3375 void *data)
9291a0cd
TT
3376{
3377 int i;
c011a4f4 3378 const char *name_basename = lbasename (name);
9291a0cd
TT
3379
3380 dw2_setup (objfile);
ae2de4f8 3381
848e3e78
DE
3382 /* The rule is CUs specify all the files, including those used by
3383 any TU, so there's no need to scan TUs here. */
f4dc4d17 3384
848e3e78 3385 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
9291a0cd
TT
3386 {
3387 int j;
8832e7e3 3388 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
7b9f3c50 3389 struct quick_file_names *file_data;
9291a0cd 3390
3d7bb9d9 3391 /* We only need to look at symtabs not already expanded. */
e254ef6a 3392 if (per_cu->v.quick->symtab)
9291a0cd
TT
3393 continue;
3394
e4a48d9d 3395 file_data = dw2_get_file_names (per_cu);
7b9f3c50 3396 if (file_data == NULL)
9291a0cd
TT
3397 continue;
3398
7b9f3c50 3399 for (j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3400 {
7b9f3c50 3401 const char *this_name = file_data->file_names[j];
da235a7c 3402 const char *this_real_name;
9291a0cd 3403
af529f8f 3404 if (compare_filenames_for_search (this_name, name))
9291a0cd 3405 {
f5b95b50 3406 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
f8eba3c6
TT
3407 callback, data))
3408 return 1;
288e77a7 3409 continue;
4aac40c8 3410 }
9291a0cd 3411
c011a4f4
DE
3412 /* Before we invoke realpath, which can get expensive when many
3413 files are involved, do a quick comparison of the basenames. */
3414 if (! basenames_may_differ
3415 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3416 continue;
3417
da235a7c
JK
3418 this_real_name = dw2_get_real_path (objfile, file_data, j);
3419 if (compare_filenames_for_search (this_real_name, name))
9291a0cd 3420 {
da235a7c
JK
3421 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3422 callback, data))
3423 return 1;
288e77a7 3424 continue;
da235a7c 3425 }
9291a0cd 3426
da235a7c
JK
3427 if (real_path != NULL)
3428 {
af529f8f
JK
3429 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3430 gdb_assert (IS_ABSOLUTE_PATH (name));
7b9f3c50 3431 if (this_real_name != NULL
af529f8f 3432 && FILENAME_CMP (real_path, this_real_name) == 0)
9291a0cd 3433 {
f5b95b50 3434 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
f8eba3c6
TT
3435 callback, data))
3436 return 1;
288e77a7 3437 continue;
9291a0cd
TT
3438 }
3439 }
3440 }
3441 }
3442
9291a0cd
TT
3443 return 0;
3444}
3445
da51c347
DE
3446/* Struct used to manage iterating over all CUs looking for a symbol. */
3447
3448struct dw2_symtab_iterator
9291a0cd 3449{
da51c347
DE
3450 /* The internalized form of .gdb_index. */
3451 struct mapped_index *index;
3452 /* If non-zero, only look for symbols that match BLOCK_INDEX. */
3453 int want_specific_block;
3454 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3455 Unused if !WANT_SPECIFIC_BLOCK. */
3456 int block_index;
3457 /* The kind of symbol we're looking for. */
3458 domain_enum domain;
3459 /* The list of CUs from the index entry of the symbol,
3460 or NULL if not found. */
3461 offset_type *vec;
3462 /* The next element in VEC to look at. */
3463 int next;
3464 /* The number of elements in VEC, or zero if there is no match. */
3465 int length;
8943b874
DE
3466 /* Have we seen a global version of the symbol?
3467 If so we can ignore all further global instances.
3468 This is to work around gold/15646, inefficient gold-generated
3469 indices. */
3470 int global_seen;
da51c347 3471};
9291a0cd 3472
da51c347
DE
3473/* Initialize the index symtab iterator ITER.
3474 If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3475 in block BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
2fdf6df6 3476
9291a0cd 3477static void
da51c347
DE
3478dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
3479 struct mapped_index *index,
3480 int want_specific_block,
3481 int block_index,
3482 domain_enum domain,
3483 const char *name)
3484{
3485 iter->index = index;
3486 iter->want_specific_block = want_specific_block;
3487 iter->block_index = block_index;
3488 iter->domain = domain;
3489 iter->next = 0;
8943b874 3490 iter->global_seen = 0;
da51c347
DE
3491
3492 if (find_slot_in_mapped_hash (index, name, &iter->vec))
3493 iter->length = MAYBE_SWAP (*iter->vec);
3494 else
3495 {
3496 iter->vec = NULL;
3497 iter->length = 0;
3498 }
3499}
3500
3501/* Return the next matching CU or NULL if there are no more. */
3502
3503static struct dwarf2_per_cu_data *
3504dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3505{
3506 for ( ; iter->next < iter->length; ++iter->next)
3507 {
3508 offset_type cu_index_and_attrs =
3509 MAYBE_SWAP (iter->vec[iter->next + 1]);
3510 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3190f0c6 3511 struct dwarf2_per_cu_data *per_cu;
da51c347
DE
3512 int want_static = iter->block_index != GLOBAL_BLOCK;
3513 /* This value is only valid for index versions >= 7. */
3514 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3515 gdb_index_symbol_kind symbol_kind =
3516 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3517 /* Only check the symbol attributes if they're present.
3518 Indices prior to version 7 don't record them,
3519 and indices >= 7 may elide them for certain symbols
3520 (gold does this). */
3521 int attrs_valid =
3522 (iter->index->version >= 7
3523 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3524
3190f0c6
DE
3525 /* Don't crash on bad data. */
3526 if (cu_index >= (dwarf2_per_objfile->n_comp_units
3527 + dwarf2_per_objfile->n_type_units))
3528 {
3529 complaint (&symfile_complaints,
3530 _(".gdb_index entry has bad CU index"
4262abfb
JK
3531 " [in module %s]"),
3532 objfile_name (dwarf2_per_objfile->objfile));
3190f0c6
DE
3533 continue;
3534 }
3535
8832e7e3 3536 per_cu = dw2_get_cutu (cu_index);
3190f0c6 3537
da51c347
DE
3538 /* Skip if already read in. */
3539 if (per_cu->v.quick->symtab)
3540 continue;
3541
8943b874
DE
3542 /* Check static vs global. */
3543 if (attrs_valid)
3544 {
3545 if (iter->want_specific_block
3546 && want_static != is_static)
3547 continue;
3548 /* Work around gold/15646. */
3549 if (!is_static && iter->global_seen)
3550 continue;
3551 if (!is_static)
3552 iter->global_seen = 1;
3553 }
da51c347
DE
3554
3555 /* Only check the symbol's kind if it has one. */
3556 if (attrs_valid)
3557 {
3558 switch (iter->domain)
3559 {
3560 case VAR_DOMAIN:
3561 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3562 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3563 /* Some types are also in VAR_DOMAIN. */
3564 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3565 continue;
3566 break;
3567 case STRUCT_DOMAIN:
3568 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3569 continue;
3570 break;
3571 case LABEL_DOMAIN:
3572 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3573 continue;
3574 break;
3575 default:
3576 break;
3577 }
3578 }
3579
3580 ++iter->next;
3581 return per_cu;
3582 }
3583
3584 return NULL;
3585}
3586
3587static struct symtab *
3588dw2_lookup_symbol (struct objfile *objfile, int block_index,
3589 const char *name, domain_enum domain)
9291a0cd 3590{
da51c347 3591 struct symtab *stab_best = NULL;
156942c7
DE
3592 struct mapped_index *index;
3593
9291a0cd
TT
3594 dw2_setup (objfile);
3595
156942c7
DE
3596 index = dwarf2_per_objfile->index_table;
3597
da51c347 3598 /* index is NULL if OBJF_READNOW. */
156942c7 3599 if (index)
9291a0cd 3600 {
da51c347
DE
3601 struct dw2_symtab_iterator iter;
3602 struct dwarf2_per_cu_data *per_cu;
3603
3604 dw2_symtab_iter_init (&iter, index, 1, block_index, domain, name);
9291a0cd 3605
da51c347 3606 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
9291a0cd 3607 {
da51c347
DE
3608 struct symbol *sym = NULL;
3609 struct symtab *stab = dw2_instantiate_symtab (per_cu);
3610
3611 /* Some caution must be observed with overloaded functions
3612 and methods, since the index will not contain any overload
3613 information (but NAME might contain it). */
3614 if (stab->primary)
9291a0cd 3615 {
346d1dfe 3616 const struct blockvector *bv = BLOCKVECTOR (stab);
da51c347 3617 struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
156942c7 3618
da51c347
DE
3619 sym = lookup_block_symbol (block, name, domain);
3620 }
1fd400ff 3621
da51c347
DE
3622 if (sym && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
3623 {
3624 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
3625 return stab;
3626
3627 stab_best = stab;
9291a0cd 3628 }
da51c347
DE
3629
3630 /* Keep looking through other CUs. */
9291a0cd
TT
3631 }
3632 }
9291a0cd 3633
da51c347 3634 return stab_best;
9291a0cd
TT
3635}
3636
3637static void
3638dw2_print_stats (struct objfile *objfile)
3639{
e4a48d9d 3640 int i, total, count;
9291a0cd
TT
3641
3642 dw2_setup (objfile);
e4a48d9d 3643 total = dwarf2_per_objfile->n_comp_units + dwarf2_per_objfile->n_type_units;
9291a0cd 3644 count = 0;
e4a48d9d 3645 for (i = 0; i < total; ++i)
9291a0cd 3646 {
8832e7e3 3647 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
9291a0cd 3648
e254ef6a 3649 if (!per_cu->v.quick->symtab)
9291a0cd
TT
3650 ++count;
3651 }
e4a48d9d 3652 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
9291a0cd
TT
3653 printf_filtered (_(" Number of unread CUs: %d\n"), count);
3654}
3655
779bd270
DE
3656/* This dumps minimal information about the index.
3657 It is called via "mt print objfiles".
3658 One use is to verify .gdb_index has been loaded by the
3659 gdb.dwarf2/gdb-index.exp testcase. */
3660
9291a0cd
TT
3661static void
3662dw2_dump (struct objfile *objfile)
3663{
779bd270
DE
3664 dw2_setup (objfile);
3665 gdb_assert (dwarf2_per_objfile->using_index);
3666 printf_filtered (".gdb_index:");
3667 if (dwarf2_per_objfile->index_table != NULL)
3668 {
3669 printf_filtered (" version %d\n",
3670 dwarf2_per_objfile->index_table->version);
3671 }
3672 else
3673 printf_filtered (" faked for \"readnow\"\n");
3674 printf_filtered ("\n");
9291a0cd
TT
3675}
3676
3677static void
3189cb12
DE
3678dw2_relocate (struct objfile *objfile,
3679 const struct section_offsets *new_offsets,
3680 const struct section_offsets *delta)
9291a0cd
TT
3681{
3682 /* There's nothing to relocate here. */
3683}
3684
3685static void
3686dw2_expand_symtabs_for_function (struct objfile *objfile,
3687 const char *func_name)
3688{
da51c347
DE
3689 struct mapped_index *index;
3690
3691 dw2_setup (objfile);
3692
3693 index = dwarf2_per_objfile->index_table;
3694
3695 /* index is NULL if OBJF_READNOW. */
3696 if (index)
3697 {
3698 struct dw2_symtab_iterator iter;
3699 struct dwarf2_per_cu_data *per_cu;
3700
3701 /* Note: It doesn't matter what we pass for block_index here. */
3702 dw2_symtab_iter_init (&iter, index, 0, GLOBAL_BLOCK, VAR_DOMAIN,
3703 func_name);
3704
3705 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3706 dw2_instantiate_symtab (per_cu);
3707 }
9291a0cd
TT
3708}
3709
3710static void
3711dw2_expand_all_symtabs (struct objfile *objfile)
3712{
3713 int i;
3714
3715 dw2_setup (objfile);
1fd400ff
TT
3716
3717 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
d467dd73 3718 + dwarf2_per_objfile->n_type_units); ++i)
9291a0cd 3719 {
8832e7e3 3720 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
9291a0cd 3721
a0f42c21 3722 dw2_instantiate_symtab (per_cu);
9291a0cd
TT
3723 }
3724}
3725
3726static void
652a8996
JK
3727dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3728 const char *fullname)
9291a0cd
TT
3729{
3730 int i;
3731
3732 dw2_setup (objfile);
d4637a04
DE
3733
3734 /* We don't need to consider type units here.
3735 This is only called for examining code, e.g. expand_line_sal.
3736 There can be an order of magnitude (or more) more type units
3737 than comp units, and we avoid them if we can. */
3738
3739 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
9291a0cd
TT
3740 {
3741 int j;
8832e7e3 3742 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
7b9f3c50 3743 struct quick_file_names *file_data;
9291a0cd 3744
3d7bb9d9 3745 /* We only need to look at symtabs not already expanded. */
e254ef6a 3746 if (per_cu->v.quick->symtab)
9291a0cd
TT
3747 continue;
3748
e4a48d9d 3749 file_data = dw2_get_file_names (per_cu);
7b9f3c50 3750 if (file_data == NULL)
9291a0cd
TT
3751 continue;
3752
7b9f3c50 3753 for (j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3754 {
652a8996
JK
3755 const char *this_fullname = file_data->file_names[j];
3756
3757 if (filename_cmp (this_fullname, fullname) == 0)
9291a0cd 3758 {
a0f42c21 3759 dw2_instantiate_symtab (per_cu);
9291a0cd
TT
3760 break;
3761 }
3762 }
3763 }
3764}
3765
9291a0cd 3766static void
ade7ed9e
DE
3767dw2_map_matching_symbols (struct objfile *objfile,
3768 const char * name, domain_enum namespace,
3769 int global,
40658b94
PH
3770 int (*callback) (struct block *,
3771 struct symbol *, void *),
2edb89d3
JK
3772 void *data, symbol_compare_ftype *match,
3773 symbol_compare_ftype *ordered_compare)
9291a0cd 3774{
40658b94 3775 /* Currently unimplemented; used for Ada. The function can be called if the
a9e6a4bb
JK
3776 current language is Ada for a non-Ada objfile using GNU index. As Ada
3777 does not look for non-Ada symbols this function should just return. */
9291a0cd
TT
3778}
3779
3780static void
f8eba3c6
TT
3781dw2_expand_symtabs_matching
3782 (struct objfile *objfile,
206f2a57
DE
3783 expand_symtabs_file_matcher_ftype *file_matcher,
3784 expand_symtabs_symbol_matcher_ftype *symbol_matcher,
f8eba3c6
TT
3785 enum search_domain kind,
3786 void *data)
9291a0cd
TT
3787{
3788 int i;
3789 offset_type iter;
4b5246aa 3790 struct mapped_index *index;
9291a0cd
TT
3791
3792 dw2_setup (objfile);
ae2de4f8
DE
3793
3794 /* index_table is NULL if OBJF_READNOW. */
9291a0cd
TT
3795 if (!dwarf2_per_objfile->index_table)
3796 return;
4b5246aa 3797 index = dwarf2_per_objfile->index_table;
9291a0cd 3798
7b08b9eb 3799 if (file_matcher != NULL)
24c79950
TT
3800 {
3801 struct cleanup *cleanup;
3802 htab_t visited_found, visited_not_found;
3803
3804 visited_found = htab_create_alloc (10,
3805 htab_hash_pointer, htab_eq_pointer,
3806 NULL, xcalloc, xfree);
3807 cleanup = make_cleanup_htab_delete (visited_found);
3808 visited_not_found = htab_create_alloc (10,
3809 htab_hash_pointer, htab_eq_pointer,
3810 NULL, xcalloc, xfree);
3811 make_cleanup_htab_delete (visited_not_found);
3812
848e3e78
DE
3813 /* The rule is CUs specify all the files, including those used by
3814 any TU, so there's no need to scan TUs here. */
3815
3816 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
24c79950
TT
3817 {
3818 int j;
8832e7e3 3819 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
24c79950
TT
3820 struct quick_file_names *file_data;
3821 void **slot;
7b08b9eb 3822
24c79950 3823 per_cu->v.quick->mark = 0;
3d7bb9d9 3824
24c79950
TT
3825 /* We only need to look at symtabs not already expanded. */
3826 if (per_cu->v.quick->symtab)
3827 continue;
7b08b9eb 3828
e4a48d9d 3829 file_data = dw2_get_file_names (per_cu);
24c79950
TT
3830 if (file_data == NULL)
3831 continue;
7b08b9eb 3832
24c79950
TT
3833 if (htab_find (visited_not_found, file_data) != NULL)
3834 continue;
3835 else if (htab_find (visited_found, file_data) != NULL)
3836 {
3837 per_cu->v.quick->mark = 1;
3838 continue;
3839 }
3840
3841 for (j = 0; j < file_data->num_file_names; ++j)
3842 {
da235a7c
JK
3843 const char *this_real_name;
3844
fbd9ab74 3845 if (file_matcher (file_data->file_names[j], data, 0))
24c79950
TT
3846 {
3847 per_cu->v.quick->mark = 1;
3848 break;
3849 }
da235a7c
JK
3850
3851 /* Before we invoke realpath, which can get expensive when many
3852 files are involved, do a quick comparison of the basenames. */
3853 if (!basenames_may_differ
3854 && !file_matcher (lbasename (file_data->file_names[j]),
3855 data, 1))
3856 continue;
3857
3858 this_real_name = dw2_get_real_path (objfile, file_data, j);
3859 if (file_matcher (this_real_name, data, 0))
3860 {
3861 per_cu->v.quick->mark = 1;
3862 break;
3863 }
24c79950
TT
3864 }
3865
3866 slot = htab_find_slot (per_cu->v.quick->mark
3867 ? visited_found
3868 : visited_not_found,
3869 file_data, INSERT);
3870 *slot = file_data;
3871 }
3872
3873 do_cleanups (cleanup);
3874 }
9291a0cd 3875
3876f04e 3876 for (iter = 0; iter < index->symbol_table_slots; ++iter)
9291a0cd
TT
3877 {
3878 offset_type idx = 2 * iter;
3879 const char *name;
3880 offset_type *vec, vec_len, vec_idx;
8943b874 3881 int global_seen = 0;
9291a0cd 3882
3876f04e 3883 if (index->symbol_table[idx] == 0 && index->symbol_table[idx + 1] == 0)
9291a0cd
TT
3884 continue;
3885
3876f04e 3886 name = index->constant_pool + MAYBE_SWAP (index->symbol_table[idx]);
9291a0cd 3887
206f2a57 3888 if (! (*symbol_matcher) (name, data))
9291a0cd
TT
3889 continue;
3890
3891 /* The name was matched, now expand corresponding CUs that were
3892 marked. */
4b5246aa 3893 vec = (offset_type *) (index->constant_pool
3876f04e 3894 + MAYBE_SWAP (index->symbol_table[idx + 1]));
9291a0cd
TT
3895 vec_len = MAYBE_SWAP (vec[0]);
3896 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
3897 {
e254ef6a 3898 struct dwarf2_per_cu_data *per_cu;
156942c7 3899 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
8943b874
DE
3900 /* This value is only valid for index versions >= 7. */
3901 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
156942c7
DE
3902 gdb_index_symbol_kind symbol_kind =
3903 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3904 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3190f0c6
DE
3905 /* Only check the symbol attributes if they're present.
3906 Indices prior to version 7 don't record them,
3907 and indices >= 7 may elide them for certain symbols
3908 (gold does this). */
3909 int attrs_valid =
3910 (index->version >= 7
3911 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3912
8943b874
DE
3913 /* Work around gold/15646. */
3914 if (attrs_valid)
3915 {
3916 if (!is_static && global_seen)
3917 continue;
3918 if (!is_static)
3919 global_seen = 1;
3920 }
3921
3190f0c6
DE
3922 /* Only check the symbol's kind if it has one. */
3923 if (attrs_valid)
156942c7
DE
3924 {
3925 switch (kind)
3926 {
3927 case VARIABLES_DOMAIN:
3928 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
3929 continue;
3930 break;
3931 case FUNCTIONS_DOMAIN:
3932 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
3933 continue;
3934 break;
3935 case TYPES_DOMAIN:
3936 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3937 continue;
3938 break;
3939 default:
3940 break;
3941 }
3942 }
3943
3190f0c6
DE
3944 /* Don't crash on bad data. */
3945 if (cu_index >= (dwarf2_per_objfile->n_comp_units
3946 + dwarf2_per_objfile->n_type_units))
3947 {
3948 complaint (&symfile_complaints,
3949 _(".gdb_index entry has bad CU index"
4262abfb 3950 " [in module %s]"), objfile_name (objfile));
3190f0c6
DE
3951 continue;
3952 }
3953
8832e7e3 3954 per_cu = dw2_get_cutu (cu_index);
7b08b9eb 3955 if (file_matcher == NULL || per_cu->v.quick->mark)
a0f42c21 3956 dw2_instantiate_symtab (per_cu);
9291a0cd
TT
3957 }
3958 }
3959}
3960
9703b513
TT
3961/* A helper for dw2_find_pc_sect_symtab which finds the most specific
3962 symtab. */
3963
3964static struct symtab *
3965recursively_find_pc_sect_symtab (struct symtab *symtab, CORE_ADDR pc)
3966{
3967 int i;
3968
3969 if (BLOCKVECTOR (symtab) != NULL
3970 && blockvector_contains_pc (BLOCKVECTOR (symtab), pc))
3971 return symtab;
3972
a3ec0bb1
DE
3973 if (symtab->includes == NULL)
3974 return NULL;
3975
9703b513
TT
3976 for (i = 0; symtab->includes[i]; ++i)
3977 {
a3ec0bb1 3978 struct symtab *s = symtab->includes[i];
9703b513
TT
3979
3980 s = recursively_find_pc_sect_symtab (s, pc);
3981 if (s != NULL)
3982 return s;
3983 }
3984
3985 return NULL;
3986}
3987
9291a0cd
TT
3988static struct symtab *
3989dw2_find_pc_sect_symtab (struct objfile *objfile,
77e371c0 3990 struct bound_minimal_symbol msymbol,
9291a0cd
TT
3991 CORE_ADDR pc,
3992 struct obj_section *section,
3993 int warn_if_readin)
3994{
3995 struct dwarf2_per_cu_data *data;
9703b513 3996 struct symtab *result;
9291a0cd
TT
3997
3998 dw2_setup (objfile);
3999
4000 if (!objfile->psymtabs_addrmap)
4001 return NULL;
4002
4003 data = addrmap_find (objfile->psymtabs_addrmap, pc);
4004 if (!data)
4005 return NULL;
4006
4007 if (warn_if_readin && data->v.quick->symtab)
abebb8b0 4008 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
9291a0cd
TT
4009 paddress (get_objfile_arch (objfile), pc));
4010
9703b513
TT
4011 result = recursively_find_pc_sect_symtab (dw2_instantiate_symtab (data), pc);
4012 gdb_assert (result != NULL);
4013 return result;
9291a0cd
TT
4014}
4015
9291a0cd 4016static void
44b13c5a 4017dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
74e2f255 4018 void *data, int need_fullname)
9291a0cd
TT
4019{
4020 int i;
24c79950
TT
4021 struct cleanup *cleanup;
4022 htab_t visited = htab_create_alloc (10, htab_hash_pointer, htab_eq_pointer,
4023 NULL, xcalloc, xfree);
9291a0cd 4024
24c79950 4025 cleanup = make_cleanup_htab_delete (visited);
9291a0cd 4026 dw2_setup (objfile);
ae2de4f8 4027
848e3e78
DE
4028 /* The rule is CUs specify all the files, including those used by
4029 any TU, so there's no need to scan TUs here.
4030 We can ignore file names coming from already-expanded CUs. */
f4dc4d17 4031
848e3e78 4032 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
24c79950 4033 {
8832e7e3 4034 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
24c79950
TT
4035
4036 if (per_cu->v.quick->symtab)
4037 {
4038 void **slot = htab_find_slot (visited, per_cu->v.quick->file_names,
4039 INSERT);
4040
4041 *slot = per_cu->v.quick->file_names;
4042 }
4043 }
4044
848e3e78 4045 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
9291a0cd
TT
4046 {
4047 int j;
8832e7e3 4048 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (i);
7b9f3c50 4049 struct quick_file_names *file_data;
24c79950 4050 void **slot;
9291a0cd 4051
3d7bb9d9 4052 /* We only need to look at symtabs not already expanded. */
e254ef6a 4053 if (per_cu->v.quick->symtab)
9291a0cd
TT
4054 continue;
4055
e4a48d9d 4056 file_data = dw2_get_file_names (per_cu);
7b9f3c50 4057 if (file_data == NULL)
9291a0cd
TT
4058 continue;
4059
24c79950
TT
4060 slot = htab_find_slot (visited, file_data, INSERT);
4061 if (*slot)
4062 {
4063 /* Already visited. */
4064 continue;
4065 }
4066 *slot = file_data;
4067
7b9f3c50 4068 for (j = 0; j < file_data->num_file_names; ++j)
9291a0cd 4069 {
74e2f255
DE
4070 const char *this_real_name;
4071
4072 if (need_fullname)
4073 this_real_name = dw2_get_real_path (objfile, file_data, j);
4074 else
4075 this_real_name = NULL;
7b9f3c50 4076 (*fun) (file_data->file_names[j], this_real_name, data);
9291a0cd
TT
4077 }
4078 }
24c79950
TT
4079
4080 do_cleanups (cleanup);
9291a0cd
TT
4081}
4082
4083static int
4084dw2_has_symbols (struct objfile *objfile)
4085{
4086 return 1;
4087}
4088
4089const struct quick_symbol_functions dwarf2_gdb_index_functions =
4090{
4091 dw2_has_symbols,
4092 dw2_find_last_source_symtab,
4093 dw2_forget_cached_source_info,
f8eba3c6 4094 dw2_map_symtabs_matching_filename,
9291a0cd 4095 dw2_lookup_symbol,
9291a0cd
TT
4096 dw2_print_stats,
4097 dw2_dump,
4098 dw2_relocate,
4099 dw2_expand_symtabs_for_function,
4100 dw2_expand_all_symtabs,
652a8996 4101 dw2_expand_symtabs_with_fullname,
40658b94 4102 dw2_map_matching_symbols,
9291a0cd
TT
4103 dw2_expand_symtabs_matching,
4104 dw2_find_pc_sect_symtab,
9291a0cd
TT
4105 dw2_map_symbol_filenames
4106};
4107
4108/* Initialize for reading DWARF for this objfile. Return 0 if this
4109 file will use psymtabs, or 1 if using the GNU index. */
4110
4111int
4112dwarf2_initialize_objfile (struct objfile *objfile)
4113{
4114 /* If we're about to read full symbols, don't bother with the
4115 indices. In this case we also don't care if some other debug
4116 format is making psymtabs, because they are all about to be
4117 expanded anyway. */
4118 if ((objfile->flags & OBJF_READNOW))
4119 {
4120 int i;
4121
4122 dwarf2_per_objfile->using_index = 1;
4123 create_all_comp_units (objfile);
0e50663e 4124 create_all_type_units (objfile);
7b9f3c50
DE
4125 dwarf2_per_objfile->quick_file_names_table =
4126 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
9291a0cd 4127
1fd400ff 4128 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
d467dd73 4129 + dwarf2_per_objfile->n_type_units); ++i)
9291a0cd 4130 {
8832e7e3 4131 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
9291a0cd 4132
e254ef6a
DE
4133 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4134 struct dwarf2_per_cu_quick_data);
9291a0cd
TT
4135 }
4136
4137 /* Return 1 so that gdb sees the "quick" functions. However,
4138 these functions will be no-ops because we will have expanded
4139 all symtabs. */
4140 return 1;
4141 }
4142
4143 if (dwarf2_read_index (objfile))
4144 return 1;
4145
9291a0cd
TT
4146 return 0;
4147}
4148
4149\f
4150
dce234bc
PP
4151/* Build a partial symbol table. */
4152
4153void
f29dff0a 4154dwarf2_build_psymtabs (struct objfile *objfile)
dce234bc 4155{
c9bf0622
TT
4156 volatile struct gdb_exception except;
4157
f29dff0a 4158 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
c906108c
SS
4159 {
4160 init_psymbol_list (objfile, 1024);
4161 }
4162
c9bf0622
TT
4163 TRY_CATCH (except, RETURN_MASK_ERROR)
4164 {
4165 /* This isn't really ideal: all the data we allocate on the
4166 objfile's obstack is still uselessly kept around. However,
4167 freeing it seems unsafe. */
4168 struct cleanup *cleanups = make_cleanup_discard_psymtabs (objfile);
4169
4170 dwarf2_build_psymtabs_hard (objfile);
4171 discard_cleanups (cleanups);
4172 }
4173 if (except.reason < 0)
4174 exception_print (gdb_stderr, except);
c906108c 4175}
c906108c 4176
1ce1cefd
DE
4177/* Return the total length of the CU described by HEADER. */
4178
4179static unsigned int
4180get_cu_length (const struct comp_unit_head *header)
4181{
4182 return header->initial_length_size + header->length;
4183}
4184
45452591
DE
4185/* Return TRUE if OFFSET is within CU_HEADER. */
4186
4187static inline int
b64f50a1 4188offset_in_cu_p (const struct comp_unit_head *cu_header, sect_offset offset)
45452591 4189{
b64f50a1 4190 sect_offset bottom = { cu_header->offset.sect_off };
1ce1cefd 4191 sect_offset top = { cu_header->offset.sect_off + get_cu_length (cu_header) };
9a619af0 4192
b64f50a1 4193 return (offset.sect_off >= bottom.sect_off && offset.sect_off < top.sect_off);
45452591
DE
4194}
4195
3b80fe9b
DE
4196/* Find the base address of the compilation unit for range lists and
4197 location lists. It will normally be specified by DW_AT_low_pc.
4198 In DWARF-3 draft 4, the base address could be overridden by
4199 DW_AT_entry_pc. It's been removed, but GCC still uses this for
4200 compilation units with discontinuous ranges. */
4201
4202static void
4203dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
4204{
4205 struct attribute *attr;
4206
4207 cu->base_known = 0;
4208 cu->base_address = 0;
4209
4210 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
4211 if (attr)
4212 {
31aa7e4e 4213 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
4214 cu->base_known = 1;
4215 }
4216 else
4217 {
4218 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
4219 if (attr)
4220 {
31aa7e4e 4221 cu->base_address = attr_value_as_address (attr);
3b80fe9b
DE
4222 cu->base_known = 1;
4223 }
4224 }
4225}
4226
93311388
DE
4227/* Read in the comp unit header information from the debug_info at info_ptr.
4228 NOTE: This leaves members offset, first_die_offset to be filled in
4229 by the caller. */
107d2387 4230
d521ce57 4231static const gdb_byte *
107d2387 4232read_comp_unit_head (struct comp_unit_head *cu_header,
d521ce57 4233 const gdb_byte *info_ptr, bfd *abfd)
107d2387
AC
4234{
4235 int signed_addr;
891d2f0b 4236 unsigned int bytes_read;
c764a876
DE
4237
4238 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
4239 cu_header->initial_length_size = bytes_read;
4240 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
613e1657 4241 info_ptr += bytes_read;
107d2387
AC
4242 cu_header->version = read_2_bytes (abfd, info_ptr);
4243 info_ptr += 2;
b64f50a1
JK
4244 cu_header->abbrev_offset.sect_off = read_offset (abfd, info_ptr, cu_header,
4245 &bytes_read);
613e1657 4246 info_ptr += bytes_read;
107d2387
AC
4247 cu_header->addr_size = read_1_byte (abfd, info_ptr);
4248 info_ptr += 1;
4249 signed_addr = bfd_get_sign_extend_vma (abfd);
4250 if (signed_addr < 0)
8e65ff28 4251 internal_error (__FILE__, __LINE__,
e2e0b3e5 4252 _("read_comp_unit_head: dwarf from non elf file"));
107d2387 4253 cu_header->signed_addr_p = signed_addr;
c764a876 4254
107d2387
AC
4255 return info_ptr;
4256}
4257
36586728
TT
4258/* Helper function that returns the proper abbrev section for
4259 THIS_CU. */
4260
4261static struct dwarf2_section_info *
4262get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
4263{
4264 struct dwarf2_section_info *abbrev;
4265
4266 if (this_cu->is_dwz)
4267 abbrev = &dwarf2_get_dwz_file ()->abbrev;
4268 else
4269 abbrev = &dwarf2_per_objfile->abbrev;
4270
4271 return abbrev;
4272}
4273
9ff913ba
DE
4274/* Subroutine of read_and_check_comp_unit_head and
4275 read_and_check_type_unit_head to simplify them.
4276 Perform various error checking on the header. */
4277
4278static void
4279error_check_comp_unit_head (struct comp_unit_head *header,
4bdcc0c1
DE
4280 struct dwarf2_section_info *section,
4281 struct dwarf2_section_info *abbrev_section)
9ff913ba 4282{
a32a8923
DE
4283 bfd *abfd = get_section_bfd_owner (section);
4284 const char *filename = get_section_file_name (section);
9ff913ba
DE
4285
4286 if (header->version != 2 && header->version != 3 && header->version != 4)
4287 error (_("Dwarf Error: wrong version in compilation unit header "
4288 "(is %d, should be 2, 3, or 4) [in module %s]"), header->version,
4289 filename);
4290
b64f50a1 4291 if (header->abbrev_offset.sect_off
36586728 4292 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
9ff913ba
DE
4293 error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header "
4294 "(offset 0x%lx + 6) [in module %s]"),
b64f50a1 4295 (long) header->abbrev_offset.sect_off, (long) header->offset.sect_off,
9ff913ba
DE
4296 filename);
4297
4298 /* Cast to unsigned long to use 64-bit arithmetic when possible to
4299 avoid potential 32-bit overflow. */
1ce1cefd 4300 if (((unsigned long) header->offset.sect_off + get_cu_length (header))
9ff913ba
DE
4301 > section->size)
4302 error (_("Dwarf Error: bad length (0x%lx) in compilation unit header "
4303 "(offset 0x%lx + 0) [in module %s]"),
b64f50a1 4304 (long) header->length, (long) header->offset.sect_off,
9ff913ba
DE
4305 filename);
4306}
4307
4308/* Read in a CU/TU header and perform some basic error checking.
4309 The contents of the header are stored in HEADER.
4310 The result is a pointer to the start of the first DIE. */
adabb602 4311
d521ce57 4312static const gdb_byte *
9ff913ba
DE
4313read_and_check_comp_unit_head (struct comp_unit_head *header,
4314 struct dwarf2_section_info *section,
4bdcc0c1 4315 struct dwarf2_section_info *abbrev_section,
d521ce57 4316 const gdb_byte *info_ptr,
9ff913ba 4317 int is_debug_types_section)
72bf9492 4318{
d521ce57 4319 const gdb_byte *beg_of_comp_unit = info_ptr;
a32a8923 4320 bfd *abfd = get_section_bfd_owner (section);
72bf9492 4321
b64f50a1 4322 header->offset.sect_off = beg_of_comp_unit - section->buffer;
adabb602 4323
72bf9492
DJ
4324 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
4325
460c1c54
CC
4326 /* If we're reading a type unit, skip over the signature and
4327 type_offset fields. */
b0df02fd 4328 if (is_debug_types_section)
460c1c54
CC
4329 info_ptr += 8 /*signature*/ + header->offset_size;
4330
b64f50a1 4331 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
adabb602 4332
4bdcc0c1 4333 error_check_comp_unit_head (header, section, abbrev_section);
72bf9492
DJ
4334
4335 return info_ptr;
4336}
4337
348e048f
DE
4338/* Read in the types comp unit header information from .debug_types entry at
4339 types_ptr. The result is a pointer to one past the end of the header. */
4340
d521ce57 4341static const gdb_byte *
9ff913ba
DE
4342read_and_check_type_unit_head (struct comp_unit_head *header,
4343 struct dwarf2_section_info *section,
4bdcc0c1 4344 struct dwarf2_section_info *abbrev_section,
d521ce57 4345 const gdb_byte *info_ptr,
dee91e82
DE
4346 ULONGEST *signature,
4347 cu_offset *type_offset_in_tu)
348e048f 4348{
d521ce57 4349 const gdb_byte *beg_of_comp_unit = info_ptr;
a32a8923 4350 bfd *abfd = get_section_bfd_owner (section);
348e048f 4351
b64f50a1 4352 header->offset.sect_off = beg_of_comp_unit - section->buffer;
348e048f 4353
9ff913ba 4354 info_ptr = read_comp_unit_head (header, info_ptr, abfd);
348e048f 4355
9ff913ba
DE
4356 /* If we're reading a type unit, skip over the signature and
4357 type_offset fields. */
4358 if (signature != NULL)
4359 *signature = read_8_bytes (abfd, info_ptr);
4360 info_ptr += 8;
dee91e82
DE
4361 if (type_offset_in_tu != NULL)
4362 type_offset_in_tu->cu_off = read_offset_1 (abfd, info_ptr,
4363 header->offset_size);
9ff913ba
DE
4364 info_ptr += header->offset_size;
4365
b64f50a1 4366 header->first_die_offset.cu_off = info_ptr - beg_of_comp_unit;
348e048f 4367
4bdcc0c1 4368 error_check_comp_unit_head (header, section, abbrev_section);
9ff913ba
DE
4369
4370 return info_ptr;
348e048f
DE
4371}
4372
f4dc4d17
DE
4373/* Fetch the abbreviation table offset from a comp or type unit header. */
4374
4375static sect_offset
4376read_abbrev_offset (struct dwarf2_section_info *section,
4377 sect_offset offset)
4378{
a32a8923 4379 bfd *abfd = get_section_bfd_owner (section);
d521ce57 4380 const gdb_byte *info_ptr;
f4dc4d17
DE
4381 unsigned int length, initial_length_size, offset_size;
4382 sect_offset abbrev_offset;
4383
4384 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
4385 info_ptr = section->buffer + offset.sect_off;
4386 length = read_initial_length (abfd, info_ptr, &initial_length_size);
4387 offset_size = initial_length_size == 4 ? 4 : 8;
4388 info_ptr += initial_length_size + 2 /*version*/;
4389 abbrev_offset.sect_off = read_offset_1 (abfd, info_ptr, offset_size);
4390 return abbrev_offset;
4391}
4392
aaa75496
JB
4393/* Allocate a new partial symtab for file named NAME and mark this new
4394 partial symtab as being an include of PST. */
4395
4396static void
d521ce57 4397dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
aaa75496
JB
4398 struct objfile *objfile)
4399{
4400 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
4401
fbd9ab74
JK
4402 if (!IS_ABSOLUTE_PATH (subpst->filename))
4403 {
4404 /* It shares objfile->objfile_obstack. */
4405 subpst->dirname = pst->dirname;
4406 }
4407
aaa75496
JB
4408 subpst->section_offsets = pst->section_offsets;
4409 subpst->textlow = 0;
4410 subpst->texthigh = 0;
4411
4412 subpst->dependencies = (struct partial_symtab **)
4413 obstack_alloc (&objfile->objfile_obstack,
4414 sizeof (struct partial_symtab *));
4415 subpst->dependencies[0] = pst;
4416 subpst->number_of_dependencies = 1;
4417
4418 subpst->globals_offset = 0;
4419 subpst->n_global_syms = 0;
4420 subpst->statics_offset = 0;
4421 subpst->n_static_syms = 0;
4422 subpst->symtab = NULL;
4423 subpst->read_symtab = pst->read_symtab;
4424 subpst->readin = 0;
4425
4426 /* No private part is necessary for include psymtabs. This property
4427 can be used to differentiate between such include psymtabs and
10b3939b 4428 the regular ones. */
58a9656e 4429 subpst->read_symtab_private = NULL;
aaa75496
JB
4430}
4431
4432/* Read the Line Number Program data and extract the list of files
4433 included by the source file represented by PST. Build an include
d85a05f0 4434 partial symtab for each of these included files. */
aaa75496
JB
4435
4436static void
4437dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
dee91e82
DE
4438 struct die_info *die,
4439 struct partial_symtab *pst)
aaa75496 4440{
d85a05f0
DJ
4441 struct line_header *lh = NULL;
4442 struct attribute *attr;
aaa75496 4443
d85a05f0
DJ
4444 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
4445 if (attr)
3019eac3 4446 lh = dwarf_decode_line_header (DW_UNSND (attr), cu);
aaa75496
JB
4447 if (lh == NULL)
4448 return; /* No linetable, so no includes. */
4449
c6da4cef 4450 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
c3b7b696 4451 dwarf_decode_lines (lh, pst->dirname, cu, pst, pst->textlow);
aaa75496
JB
4452
4453 free_line_header (lh);
4454}
4455
348e048f 4456static hashval_t
52dc124a 4457hash_signatured_type (const void *item)
348e048f 4458{
52dc124a 4459 const struct signatured_type *sig_type = item;
9a619af0 4460
348e048f 4461 /* This drops the top 32 bits of the signature, but is ok for a hash. */
52dc124a 4462 return sig_type->signature;
348e048f
DE
4463}
4464
4465static int
52dc124a 4466eq_signatured_type (const void *item_lhs, const void *item_rhs)
348e048f
DE
4467{
4468 const struct signatured_type *lhs = item_lhs;
4469 const struct signatured_type *rhs = item_rhs;
9a619af0 4470
348e048f
DE
4471 return lhs->signature == rhs->signature;
4472}
4473
1fd400ff
TT
4474/* Allocate a hash table for signatured types. */
4475
4476static htab_t
673bfd45 4477allocate_signatured_type_table (struct objfile *objfile)
1fd400ff
TT
4478{
4479 return htab_create_alloc_ex (41,
52dc124a
DE
4480 hash_signatured_type,
4481 eq_signatured_type,
1fd400ff
TT
4482 NULL,
4483 &objfile->objfile_obstack,
4484 hashtab_obstack_allocate,
4485 dummy_obstack_deallocate);
4486}
4487
d467dd73 4488/* A helper function to add a signatured type CU to a table. */
1fd400ff
TT
4489
4490static int
d467dd73 4491add_signatured_type_cu_to_table (void **slot, void *datum)
1fd400ff
TT
4492{
4493 struct signatured_type *sigt = *slot;
b4dd5633 4494 struct signatured_type ***datap = datum;
1fd400ff 4495
b4dd5633 4496 **datap = sigt;
1fd400ff
TT
4497 ++*datap;
4498
4499 return 1;
4500}
4501
c88ee1f0
DE
4502/* Create the hash table of all entries in the .debug_types
4503 (or .debug_types.dwo) section(s).
4504 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
4505 otherwise it is NULL.
4506
4507 The result is a pointer to the hash table or NULL if there are no types.
4508
4509 Note: This function processes DWO files only, not DWP files. */
348e048f 4510
3019eac3
DE
4511static htab_t
4512create_debug_types_hash_table (struct dwo_file *dwo_file,
4513 VEC (dwarf2_section_info_def) *types)
348e048f 4514{
3019eac3 4515 struct objfile *objfile = dwarf2_per_objfile->objfile;
8b70b953 4516 htab_t types_htab = NULL;
8b70b953
TT
4517 int ix;
4518 struct dwarf2_section_info *section;
4bdcc0c1 4519 struct dwarf2_section_info *abbrev_section;
348e048f 4520
3019eac3
DE
4521 if (VEC_empty (dwarf2_section_info_def, types))
4522 return NULL;
348e048f 4523
4bdcc0c1
DE
4524 abbrev_section = (dwo_file != NULL
4525 ? &dwo_file->sections.abbrev
4526 : &dwarf2_per_objfile->abbrev);
4527
09406207
DE
4528 if (dwarf2_read_debug)
4529 fprintf_unfiltered (gdb_stdlog, "Reading .debug_types%s for %s:\n",
4530 dwo_file ? ".dwo" : "",
a32a8923 4531 get_section_file_name (abbrev_section));
09406207 4532
8b70b953 4533 for (ix = 0;
3019eac3 4534 VEC_iterate (dwarf2_section_info_def, types, ix, section);
8b70b953
TT
4535 ++ix)
4536 {
3019eac3 4537 bfd *abfd;
d521ce57 4538 const gdb_byte *info_ptr, *end_ptr;
348e048f 4539
8b70b953
TT
4540 dwarf2_read_section (objfile, section);
4541 info_ptr = section->buffer;
348e048f 4542
8b70b953
TT
4543 if (info_ptr == NULL)
4544 continue;
348e048f 4545
3019eac3 4546 /* We can't set abfd until now because the section may be empty or
a32a8923
DE
4547 not present, in which case the bfd is unknown. */
4548 abfd = get_section_bfd_owner (section);
3019eac3 4549
dee91e82
DE
4550 /* We don't use init_cutu_and_read_dies_simple, or some such, here
4551 because we don't need to read any dies: the signature is in the
4552 header. */
8b70b953
TT
4553
4554 end_ptr = info_ptr + section->size;
4555 while (info_ptr < end_ptr)
4556 {
b64f50a1 4557 sect_offset offset;
3019eac3 4558 cu_offset type_offset_in_tu;
8b70b953 4559 ULONGEST signature;
52dc124a 4560 struct signatured_type *sig_type;
3019eac3 4561 struct dwo_unit *dwo_tu;
8b70b953 4562 void **slot;
d521ce57 4563 const gdb_byte *ptr = info_ptr;
9ff913ba 4564 struct comp_unit_head header;
dee91e82 4565 unsigned int length;
348e048f 4566
b64f50a1 4567 offset.sect_off = ptr - section->buffer;
348e048f 4568
8b70b953 4569 /* We need to read the type's signature in order to build the hash
9ff913ba 4570 table, but we don't need anything else just yet. */
348e048f 4571
4bdcc0c1
DE
4572 ptr = read_and_check_type_unit_head (&header, section,
4573 abbrev_section, ptr,
3019eac3 4574 &signature, &type_offset_in_tu);
6caca83c 4575
1ce1cefd 4576 length = get_cu_length (&header);
dee91e82 4577
6caca83c 4578 /* Skip dummy type units. */
dee91e82
DE
4579 if (ptr >= info_ptr + length
4580 || peek_abbrev_code (abfd, ptr) == 0)
6caca83c 4581 {
1ce1cefd 4582 info_ptr += length;
6caca83c
CC
4583 continue;
4584 }
8b70b953 4585
0349ea22
DE
4586 if (types_htab == NULL)
4587 {
4588 if (dwo_file)
4589 types_htab = allocate_dwo_unit_table (objfile);
4590 else
4591 types_htab = allocate_signatured_type_table (objfile);
4592 }
4593
3019eac3
DE
4594 if (dwo_file)
4595 {
4596 sig_type = NULL;
4597 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4598 struct dwo_unit);
4599 dwo_tu->dwo_file = dwo_file;
4600 dwo_tu->signature = signature;
4601 dwo_tu->type_offset_in_tu = type_offset_in_tu;
8a0459fd 4602 dwo_tu->section = section;
3019eac3
DE
4603 dwo_tu->offset = offset;
4604 dwo_tu->length = length;
4605 }
4606 else
4607 {
4608 /* N.B.: type_offset is not usable if this type uses a DWO file.
4609 The real type_offset is in the DWO file. */
4610 dwo_tu = NULL;
4611 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4612 struct signatured_type);
4613 sig_type->signature = signature;
4614 sig_type->type_offset_in_tu = type_offset_in_tu;
4615 sig_type->per_cu.objfile = objfile;
4616 sig_type->per_cu.is_debug_types = 1;
8a0459fd 4617 sig_type->per_cu.section = section;
3019eac3
DE
4618 sig_type->per_cu.offset = offset;
4619 sig_type->per_cu.length = length;
4620 }
8b70b953 4621
3019eac3
DE
4622 slot = htab_find_slot (types_htab,
4623 dwo_file ? (void*) dwo_tu : (void *) sig_type,
4624 INSERT);
8b70b953
TT
4625 gdb_assert (slot != NULL);
4626 if (*slot != NULL)
4627 {
3019eac3
DE
4628 sect_offset dup_offset;
4629
4630 if (dwo_file)
4631 {
4632 const struct dwo_unit *dup_tu = *slot;
4633
4634 dup_offset = dup_tu->offset;
4635 }
4636 else
4637 {
4638 const struct signatured_type *dup_tu = *slot;
4639
4640 dup_offset = dup_tu->per_cu.offset;
4641 }
b3c8eb43 4642
8b70b953 4643 complaint (&symfile_complaints,
c88ee1f0 4644 _("debug type entry at offset 0x%x is duplicate to"
4031ecc5 4645 " the entry at offset 0x%x, signature %s"),
3019eac3 4646 offset.sect_off, dup_offset.sect_off,
4031ecc5 4647 hex_string (signature));
8b70b953 4648 }
3019eac3 4649 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
348e048f 4650
73be47f5 4651 if (dwarf2_read_debug > 1)
4031ecc5 4652 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, signature %s\n",
b64f50a1 4653 offset.sect_off,
4031ecc5 4654 hex_string (signature));
348e048f 4655
dee91e82 4656 info_ptr += length;
8b70b953 4657 }
348e048f
DE
4658 }
4659
3019eac3
DE
4660 return types_htab;
4661}
4662
4663/* Create the hash table of all entries in the .debug_types section,
4664 and initialize all_type_units.
4665 The result is zero if there is an error (e.g. missing .debug_types section),
4666 otherwise non-zero. */
4667
4668static int
4669create_all_type_units (struct objfile *objfile)
4670{
4671 htab_t types_htab;
b4dd5633 4672 struct signatured_type **iter;
3019eac3
DE
4673
4674 types_htab = create_debug_types_hash_table (NULL, dwarf2_per_objfile->types);
4675 if (types_htab == NULL)
4676 {
4677 dwarf2_per_objfile->signatured_types = NULL;
4678 return 0;
4679 }
4680
348e048f
DE
4681 dwarf2_per_objfile->signatured_types = types_htab;
4682
6aa5f3a6
DE
4683 dwarf2_per_objfile->n_type_units
4684 = dwarf2_per_objfile->n_allocated_type_units
4685 = htab_elements (types_htab);
d467dd73 4686 dwarf2_per_objfile->all_type_units
a2ce51a0
DE
4687 = xmalloc (dwarf2_per_objfile->n_type_units
4688 * sizeof (struct signatured_type *));
d467dd73
DE
4689 iter = &dwarf2_per_objfile->all_type_units[0];
4690 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
4691 gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
4692 == dwarf2_per_objfile->n_type_units);
1fd400ff 4693
348e048f
DE
4694 return 1;
4695}
4696
6aa5f3a6
DE
4697/* Add an entry for signature SIG to dwarf2_per_objfile->signatured_types.
4698 If SLOT is non-NULL, it is the entry to use in the hash table.
4699 Otherwise we find one. */
4700
4701static struct signatured_type *
4702add_type_unit (ULONGEST sig, void **slot)
4703{
4704 struct objfile *objfile = dwarf2_per_objfile->objfile;
4705 int n_type_units = dwarf2_per_objfile->n_type_units;
4706 struct signatured_type *sig_type;
4707
4708 gdb_assert (n_type_units <= dwarf2_per_objfile->n_allocated_type_units);
4709 ++n_type_units;
4710 if (n_type_units > dwarf2_per_objfile->n_allocated_type_units)
4711 {
4712 if (dwarf2_per_objfile->n_allocated_type_units == 0)
4713 dwarf2_per_objfile->n_allocated_type_units = 1;
4714 dwarf2_per_objfile->n_allocated_type_units *= 2;
4715 dwarf2_per_objfile->all_type_units
4716 = xrealloc (dwarf2_per_objfile->all_type_units,
4717 dwarf2_per_objfile->n_allocated_type_units
4718 * sizeof (struct signatured_type *));
4719 ++dwarf2_per_objfile->tu_stats.nr_all_type_units_reallocs;
4720 }
4721 dwarf2_per_objfile->n_type_units = n_type_units;
4722
4723 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
4724 struct signatured_type);
4725 dwarf2_per_objfile->all_type_units[n_type_units - 1] = sig_type;
4726 sig_type->signature = sig;
4727 sig_type->per_cu.is_debug_types = 1;
4728 if (dwarf2_per_objfile->using_index)
4729 {
4730 sig_type->per_cu.v.quick =
4731 OBSTACK_ZALLOC (&objfile->objfile_obstack,
4732 struct dwarf2_per_cu_quick_data);
4733 }
4734
4735 if (slot == NULL)
4736 {
4737 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4738 sig_type, INSERT);
4739 }
4740 gdb_assert (*slot == NULL);
4741 *slot = sig_type;
4742 /* The rest of sig_type must be filled in by the caller. */
4743 return sig_type;
4744}
4745
a2ce51a0
DE
4746/* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
4747 Fill in SIG_ENTRY with DWO_ENTRY. */
4748
4749static void
4750fill_in_sig_entry_from_dwo_entry (struct objfile *objfile,
4751 struct signatured_type *sig_entry,
4752 struct dwo_unit *dwo_entry)
4753{
7ee85ab1 4754 /* Make sure we're not clobbering something we don't expect to. */
a2ce51a0
DE
4755 gdb_assert (! sig_entry->per_cu.queued);
4756 gdb_assert (sig_entry->per_cu.cu == NULL);
6aa5f3a6
DE
4757 if (dwarf2_per_objfile->using_index)
4758 {
4759 gdb_assert (sig_entry->per_cu.v.quick != NULL);
4760 gdb_assert (sig_entry->per_cu.v.quick->symtab == NULL);
4761 }
4762 else
4763 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
a2ce51a0
DE
4764 gdb_assert (sig_entry->signature == dwo_entry->signature);
4765 gdb_assert (sig_entry->type_offset_in_section.sect_off == 0);
4766 gdb_assert (sig_entry->type_unit_group == NULL);
7ee85ab1
DE
4767 gdb_assert (sig_entry->dwo_unit == NULL);
4768
4769 sig_entry->per_cu.section = dwo_entry->section;
4770 sig_entry->per_cu.offset = dwo_entry->offset;
4771 sig_entry->per_cu.length = dwo_entry->length;
4772 sig_entry->per_cu.reading_dwo_directly = 1;
4773 sig_entry->per_cu.objfile = objfile;
a2ce51a0
DE
4774 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
4775 sig_entry->dwo_unit = dwo_entry;
4776}
4777
4778/* Subroutine of lookup_signatured_type.
7ee85ab1
DE
4779 If we haven't read the TU yet, create the signatured_type data structure
4780 for a TU to be read in directly from a DWO file, bypassing the stub.
4781 This is the "Stay in DWO Optimization": When there is no DWP file and we're
4782 using .gdb_index, then when reading a CU we want to stay in the DWO file
4783 containing that CU. Otherwise we could end up reading several other DWO
4784 files (due to comdat folding) to process the transitive closure of all the
4785 mentioned TUs, and that can be slow. The current DWO file will have every
4786 type signature that it needs.
a2ce51a0
DE
4787 We only do this for .gdb_index because in the psymtab case we already have
4788 to read all the DWOs to build the type unit groups. */
4789
4790static struct signatured_type *
4791lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
4792{
4793 struct objfile *objfile = dwarf2_per_objfile->objfile;
4794 struct dwo_file *dwo_file;
4795 struct dwo_unit find_dwo_entry, *dwo_entry;
4796 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 4797 void **slot;
a2ce51a0
DE
4798
4799 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
4800
6aa5f3a6
DE
4801 /* If TU skeletons have been removed then we may not have read in any
4802 TUs yet. */
4803 if (dwarf2_per_objfile->signatured_types == NULL)
4804 {
4805 dwarf2_per_objfile->signatured_types
4806 = allocate_signatured_type_table (objfile);
4807 }
a2ce51a0
DE
4808
4809 /* We only ever need to read in one copy of a signatured type.
6aa5f3a6
DE
4810 Use the global signatured_types array to do our own comdat-folding
4811 of types. If this is the first time we're reading this TU, and
4812 the TU has an entry in .gdb_index, replace the recorded data from
4813 .gdb_index with this TU. */
a2ce51a0 4814
a2ce51a0 4815 find_sig_entry.signature = sig;
6aa5f3a6
DE
4816 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4817 &find_sig_entry, INSERT);
4818 sig_entry = *slot;
7ee85ab1
DE
4819
4820 /* We can get here with the TU already read, *or* in the process of being
6aa5f3a6
DE
4821 read. Don't reassign the global entry to point to this DWO if that's
4822 the case. Also note that if the TU is already being read, it may not
4823 have come from a DWO, the program may be a mix of Fission-compiled
4824 code and non-Fission-compiled code. */
4825
4826 /* Have we already tried to read this TU?
4827 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
4828 needn't exist in the global table yet). */
4829 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
a2ce51a0
DE
4830 return sig_entry;
4831
6aa5f3a6
DE
4832 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
4833 dwo_unit of the TU itself. */
4834 dwo_file = cu->dwo_unit->dwo_file;
4835
a2ce51a0
DE
4836 /* Ok, this is the first time we're reading this TU. */
4837 if (dwo_file->tus == NULL)
4838 return NULL;
4839 find_dwo_entry.signature = sig;
4840 dwo_entry = htab_find (dwo_file->tus, &find_dwo_entry);
4841 if (dwo_entry == NULL)
4842 return NULL;
4843
6aa5f3a6
DE
4844 /* If the global table doesn't have an entry for this TU, add one. */
4845 if (sig_entry == NULL)
4846 sig_entry = add_type_unit (sig, slot);
4847
a2ce51a0 4848 fill_in_sig_entry_from_dwo_entry (objfile, sig_entry, dwo_entry);
89e63ee4 4849 sig_entry->per_cu.tu_read = 1;
a2ce51a0
DE
4850 return sig_entry;
4851}
4852
a2ce51a0
DE
4853/* Subroutine of lookup_signatured_type.
4854 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
6aa5f3a6
DE
4855 then try the DWP file. If the TU stub (skeleton) has been removed then
4856 it won't be in .gdb_index. */
a2ce51a0
DE
4857
4858static struct signatured_type *
4859lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
4860{
4861 struct objfile *objfile = dwarf2_per_objfile->objfile;
4862 struct dwp_file *dwp_file = get_dwp_file ();
4863 struct dwo_unit *dwo_entry;
4864 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 4865 void **slot;
a2ce51a0
DE
4866
4867 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
4868 gdb_assert (dwp_file != NULL);
4869
6aa5f3a6
DE
4870 /* If TU skeletons have been removed then we may not have read in any
4871 TUs yet. */
4872 if (dwarf2_per_objfile->signatured_types == NULL)
a2ce51a0 4873 {
6aa5f3a6
DE
4874 dwarf2_per_objfile->signatured_types
4875 = allocate_signatured_type_table (objfile);
a2ce51a0
DE
4876 }
4877
6aa5f3a6
DE
4878 find_sig_entry.signature = sig;
4879 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
4880 &find_sig_entry, INSERT);
4881 sig_entry = *slot;
4882
4883 /* Have we already tried to read this TU?
4884 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
4885 needn't exist in the global table yet). */
4886 if (sig_entry != NULL)
4887 return sig_entry;
4888
a2ce51a0
DE
4889 if (dwp_file->tus == NULL)
4890 return NULL;
57d63ce2
DE
4891 dwo_entry = lookup_dwo_unit_in_dwp (dwp_file, NULL,
4892 sig, 1 /* is_debug_types */);
a2ce51a0
DE
4893 if (dwo_entry == NULL)
4894 return NULL;
4895
6aa5f3a6 4896 sig_entry = add_type_unit (sig, slot);
a2ce51a0
DE
4897 fill_in_sig_entry_from_dwo_entry (objfile, sig_entry, dwo_entry);
4898
a2ce51a0
DE
4899 return sig_entry;
4900}
4901
380bca97 4902/* Lookup a signature based type for DW_FORM_ref_sig8.
5a8b3f62
DE
4903 Returns NULL if signature SIG is not present in the table.
4904 It is up to the caller to complain about this. */
348e048f
DE
4905
4906static struct signatured_type *
a2ce51a0 4907lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
348e048f 4908{
a2ce51a0
DE
4909 if (cu->dwo_unit
4910 && dwarf2_per_objfile->using_index)
4911 {
4912 /* We're in a DWO/DWP file, and we're using .gdb_index.
4913 These cases require special processing. */
4914 if (get_dwp_file () == NULL)
4915 return lookup_dwo_signatured_type (cu, sig);
4916 else
4917 return lookup_dwp_signatured_type (cu, sig);
4918 }
4919 else
4920 {
4921 struct signatured_type find_entry, *entry;
348e048f 4922
a2ce51a0
DE
4923 if (dwarf2_per_objfile->signatured_types == NULL)
4924 return NULL;
4925 find_entry.signature = sig;
4926 entry = htab_find (dwarf2_per_objfile->signatured_types, &find_entry);
4927 return entry;
4928 }
348e048f 4929}
42e7ad6c
DE
4930\f
4931/* Low level DIE reading support. */
348e048f 4932
d85a05f0
DJ
4933/* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
4934
4935static void
4936init_cu_die_reader (struct die_reader_specs *reader,
dee91e82 4937 struct dwarf2_cu *cu,
3019eac3
DE
4938 struct dwarf2_section_info *section,
4939 struct dwo_file *dwo_file)
d85a05f0 4940{
fceca515 4941 gdb_assert (section->readin && section->buffer != NULL);
a32a8923 4942 reader->abfd = get_section_bfd_owner (section);
d85a05f0 4943 reader->cu = cu;
3019eac3 4944 reader->dwo_file = dwo_file;
dee91e82
DE
4945 reader->die_section = section;
4946 reader->buffer = section->buffer;
f664829e 4947 reader->buffer_end = section->buffer + section->size;
a2ce51a0 4948 reader->comp_dir = NULL;
d85a05f0
DJ
4949}
4950
b0c7bfa9
DE
4951/* Subroutine of init_cutu_and_read_dies to simplify it.
4952 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
4953 There's just a lot of work to do, and init_cutu_and_read_dies is big enough
4954 already.
4955
4956 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
4957 from it to the DIE in the DWO. If NULL we are skipping the stub.
a2ce51a0
DE
4958 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
4959 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
c54a1dd8
DE
4960 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
4961 STUB_COMP_DIR may be non-NULL.
b0c7bfa9
DE
4962 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
4963 are filled in with the info of the DIE from the DWO file.
4964 ABBREV_TABLE_PROVIDED is non-zero if the caller of init_cutu_and_read_dies
4965 provided an abbrev table to use.
4966 The result is non-zero if a valid (non-dummy) DIE was found. */
4967
4968static int
4969read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
4970 struct dwo_unit *dwo_unit,
4971 int abbrev_table_provided,
4972 struct die_info *stub_comp_unit_die,
a2ce51a0 4973 const char *stub_comp_dir,
b0c7bfa9 4974 struct die_reader_specs *result_reader,
d521ce57 4975 const gdb_byte **result_info_ptr,
b0c7bfa9
DE
4976 struct die_info **result_comp_unit_die,
4977 int *result_has_children)
4978{
4979 struct objfile *objfile = dwarf2_per_objfile->objfile;
4980 struct dwarf2_cu *cu = this_cu->cu;
4981 struct dwarf2_section_info *section;
4982 bfd *abfd;
d521ce57 4983 const gdb_byte *begin_info_ptr, *info_ptr;
b0c7bfa9
DE
4984 ULONGEST signature; /* Or dwo_id. */
4985 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
4986 int i,num_extra_attrs;
4987 struct dwarf2_section_info *dwo_abbrev_section;
4988 struct attribute *attr;
4989 struct die_info *comp_unit_die;
4990
b0aeadb3
DE
4991 /* At most one of these may be provided. */
4992 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
a2ce51a0 4993
b0c7bfa9
DE
4994 /* These attributes aren't processed until later:
4995 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
0d60c288
DE
4996 DW_AT_comp_dir is used now, to find the DWO file, but it is also
4997 referenced later. However, these attributes are found in the stub
4998 which we won't have later. In order to not impose this complication
4999 on the rest of the code, we read them here and copy them to the
5000 DWO CU/TU die. */
b0c7bfa9
DE
5001
5002 stmt_list = NULL;
5003 low_pc = NULL;
5004 high_pc = NULL;
5005 ranges = NULL;
5006 comp_dir = NULL;
5007
5008 if (stub_comp_unit_die != NULL)
5009 {
5010 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
5011 DWO file. */
5012 if (! this_cu->is_debug_types)
5013 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
5014 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
5015 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
5016 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
5017 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
5018
5019 /* There should be a DW_AT_addr_base attribute here (if needed).
5020 We need the value before we can process DW_FORM_GNU_addr_index. */
5021 cu->addr_base = 0;
5022 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
5023 if (attr)
5024 cu->addr_base = DW_UNSND (attr);
5025
5026 /* There should be a DW_AT_ranges_base attribute here (if needed).
5027 We need the value before we can process DW_AT_ranges. */
5028 cu->ranges_base = 0;
5029 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
5030 if (attr)
5031 cu->ranges_base = DW_UNSND (attr);
5032 }
a2ce51a0
DE
5033 else if (stub_comp_dir != NULL)
5034 {
5035 /* Reconstruct the comp_dir attribute to simplify the code below. */
5036 comp_dir = (struct attribute *)
5037 obstack_alloc (&cu->comp_unit_obstack, sizeof (*comp_dir));
5038 comp_dir->name = DW_AT_comp_dir;
5039 comp_dir->form = DW_FORM_string;
5040 DW_STRING_IS_CANONICAL (comp_dir) = 0;
5041 DW_STRING (comp_dir) = stub_comp_dir;
5042 }
b0c7bfa9
DE
5043
5044 /* Set up for reading the DWO CU/TU. */
5045 cu->dwo_unit = dwo_unit;
5046 section = dwo_unit->section;
5047 dwarf2_read_section (objfile, section);
a32a8923 5048 abfd = get_section_bfd_owner (section);
b0c7bfa9
DE
5049 begin_info_ptr = info_ptr = section->buffer + dwo_unit->offset.sect_off;
5050 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
5051 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file);
5052
5053 if (this_cu->is_debug_types)
5054 {
5055 ULONGEST header_signature;
5056 cu_offset type_offset_in_tu;
5057 struct signatured_type *sig_type = (struct signatured_type *) this_cu;
5058
5059 info_ptr = read_and_check_type_unit_head (&cu->header, section,
5060 dwo_abbrev_section,
5061 info_ptr,
5062 &header_signature,
5063 &type_offset_in_tu);
a2ce51a0
DE
5064 /* This is not an assert because it can be caused by bad debug info. */
5065 if (sig_type->signature != header_signature)
5066 {
5067 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
5068 " TU at offset 0x%x [in module %s]"),
5069 hex_string (sig_type->signature),
5070 hex_string (header_signature),
5071 dwo_unit->offset.sect_off,
5072 bfd_get_filename (abfd));
5073 }
b0c7bfa9
DE
5074 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
5075 /* For DWOs coming from DWP files, we don't know the CU length
5076 nor the type's offset in the TU until now. */
5077 dwo_unit->length = get_cu_length (&cu->header);
5078 dwo_unit->type_offset_in_tu = type_offset_in_tu;
5079
5080 /* Establish the type offset that can be used to lookup the type.
5081 For DWO files, we don't know it until now. */
5082 sig_type->type_offset_in_section.sect_off =
5083 dwo_unit->offset.sect_off + dwo_unit->type_offset_in_tu.cu_off;
5084 }
5085 else
5086 {
5087 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
5088 dwo_abbrev_section,
5089 info_ptr, 0);
5090 gdb_assert (dwo_unit->offset.sect_off == cu->header.offset.sect_off);
5091 /* For DWOs coming from DWP files, we don't know the CU length
5092 until now. */
5093 dwo_unit->length = get_cu_length (&cu->header);
5094 }
5095
02142a6c
DE
5096 /* Replace the CU's original abbrev table with the DWO's.
5097 Reminder: We can't read the abbrev table until we've read the header. */
b0c7bfa9
DE
5098 if (abbrev_table_provided)
5099 {
5100 /* Don't free the provided abbrev table, the caller of
5101 init_cutu_and_read_dies owns it. */
5102 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
02142a6c 5103 /* Ensure the DWO abbrev table gets freed. */
b0c7bfa9
DE
5104 make_cleanup (dwarf2_free_abbrev_table, cu);
5105 }
5106 else
5107 {
5108 dwarf2_free_abbrev_table (cu);
5109 dwarf2_read_abbrevs (cu, dwo_abbrev_section);
02142a6c 5110 /* Leave any existing abbrev table cleanup as is. */
b0c7bfa9
DE
5111 }
5112
5113 /* Read in the die, but leave space to copy over the attributes
5114 from the stub. This has the benefit of simplifying the rest of
5115 the code - all the work to maintain the illusion of a single
5116 DW_TAG_{compile,type}_unit DIE is done here. */
5117 num_extra_attrs = ((stmt_list != NULL)
5118 + (low_pc != NULL)
5119 + (high_pc != NULL)
5120 + (ranges != NULL)
5121 + (comp_dir != NULL));
5122 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
5123 result_has_children, num_extra_attrs);
5124
5125 /* Copy over the attributes from the stub to the DIE we just read in. */
5126 comp_unit_die = *result_comp_unit_die;
5127 i = comp_unit_die->num_attrs;
5128 if (stmt_list != NULL)
5129 comp_unit_die->attrs[i++] = *stmt_list;
5130 if (low_pc != NULL)
5131 comp_unit_die->attrs[i++] = *low_pc;
5132 if (high_pc != NULL)
5133 comp_unit_die->attrs[i++] = *high_pc;
5134 if (ranges != NULL)
5135 comp_unit_die->attrs[i++] = *ranges;
5136 if (comp_dir != NULL)
5137 comp_unit_die->attrs[i++] = *comp_dir;
5138 comp_unit_die->num_attrs += num_extra_attrs;
5139
bf6af496
DE
5140 if (dwarf2_die_debug)
5141 {
5142 fprintf_unfiltered (gdb_stdlog,
5143 "Read die from %s@0x%x of %s:\n",
a32a8923 5144 get_section_name (section),
bf6af496
DE
5145 (unsigned) (begin_info_ptr - section->buffer),
5146 bfd_get_filename (abfd));
5147 dump_die (comp_unit_die, dwarf2_die_debug);
5148 }
5149
a2ce51a0
DE
5150 /* Save the comp_dir attribute. If there is no DWP file then we'll read
5151 TUs by skipping the stub and going directly to the entry in the DWO file.
5152 However, skipping the stub means we won't get DW_AT_comp_dir, so we have
5153 to get it via circuitous means. Blech. */
5154 if (comp_dir != NULL)
5155 result_reader->comp_dir = DW_STRING (comp_dir);
5156
b0c7bfa9
DE
5157 /* Skip dummy compilation units. */
5158 if (info_ptr >= begin_info_ptr + dwo_unit->length
5159 || peek_abbrev_code (abfd, info_ptr) == 0)
5160 return 0;
5161
5162 *result_info_ptr = info_ptr;
5163 return 1;
5164}
5165
5166/* Subroutine of init_cutu_and_read_dies to simplify it.
5167 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
6a506a2d 5168 Returns NULL if the specified DWO unit cannot be found. */
b0c7bfa9
DE
5169
5170static struct dwo_unit *
5171lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
5172 struct die_info *comp_unit_die)
5173{
5174 struct dwarf2_cu *cu = this_cu->cu;
5175 struct attribute *attr;
5176 ULONGEST signature;
5177 struct dwo_unit *dwo_unit;
5178 const char *comp_dir, *dwo_name;
5179
a2ce51a0
DE
5180 gdb_assert (cu != NULL);
5181
b0c7bfa9
DE
5182 /* Yeah, we look dwo_name up again, but it simplifies the code. */
5183 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
5184 gdb_assert (attr != NULL);
5185 dwo_name = DW_STRING (attr);
5186 comp_dir = NULL;
5187 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
5188 if (attr)
5189 comp_dir = DW_STRING (attr);
5190
5191 if (this_cu->is_debug_types)
5192 {
5193 struct signatured_type *sig_type;
5194
5195 /* Since this_cu is the first member of struct signatured_type,
5196 we can go from a pointer to one to a pointer to the other. */
5197 sig_type = (struct signatured_type *) this_cu;
5198 signature = sig_type->signature;
5199 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
5200 }
5201 else
5202 {
5203 struct attribute *attr;
5204
5205 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
5206 if (! attr)
5207 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
5208 " [in module %s]"),
4262abfb 5209 dwo_name, objfile_name (this_cu->objfile));
b0c7bfa9
DE
5210 signature = DW_UNSND (attr);
5211 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
5212 signature);
5213 }
5214
b0c7bfa9
DE
5215 return dwo_unit;
5216}
5217
a2ce51a0 5218/* Subroutine of init_cutu_and_read_dies to simplify it.
6aa5f3a6
DE
5219 See it for a description of the parameters.
5220 Read a TU directly from a DWO file, bypassing the stub.
5221
5222 Note: This function could be a little bit simpler if we shared cleanups
5223 with our caller, init_cutu_and_read_dies. That's generally a fragile thing
5224 to do, so we keep this function self-contained. Or we could move this
5225 into our caller, but it's complex enough already. */
a2ce51a0
DE
5226
5227static void
6aa5f3a6
DE
5228init_tu_and_read_dwo_dies (struct dwarf2_per_cu_data *this_cu,
5229 int use_existing_cu, int keep,
a2ce51a0
DE
5230 die_reader_func_ftype *die_reader_func,
5231 void *data)
5232{
5233 struct dwarf2_cu *cu;
5234 struct signatured_type *sig_type;
6aa5f3a6 5235 struct cleanup *cleanups, *free_cu_cleanup = NULL;
a2ce51a0
DE
5236 struct die_reader_specs reader;
5237 const gdb_byte *info_ptr;
5238 struct die_info *comp_unit_die;
5239 int has_children;
5240
5241 /* Verify we can do the following downcast, and that we have the
5242 data we need. */
5243 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
5244 sig_type = (struct signatured_type *) this_cu;
5245 gdb_assert (sig_type->dwo_unit != NULL);
5246
5247 cleanups = make_cleanup (null_cleanup, NULL);
5248
6aa5f3a6
DE
5249 if (use_existing_cu && this_cu->cu != NULL)
5250 {
5251 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
5252 cu = this_cu->cu;
5253 /* There's no need to do the rereading_dwo_cu handling that
5254 init_cutu_and_read_dies does since we don't read the stub. */
5255 }
5256 else
5257 {
5258 /* If !use_existing_cu, this_cu->cu must be NULL. */
5259 gdb_assert (this_cu->cu == NULL);
5260 cu = xmalloc (sizeof (*cu));
5261 init_one_comp_unit (cu, this_cu);
5262 /* If an error occurs while loading, release our storage. */
5263 free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
5264 }
5265
5266 /* A future optimization, if needed, would be to use an existing
5267 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
5268 could share abbrev tables. */
a2ce51a0
DE
5269
5270 if (read_cutu_die_from_dwo (this_cu, sig_type->dwo_unit,
5271 0 /* abbrev_table_provided */,
5272 NULL /* stub_comp_unit_die */,
5273 sig_type->dwo_unit->dwo_file->comp_dir,
5274 &reader, &info_ptr,
5275 &comp_unit_die, &has_children) == 0)
5276 {
5277 /* Dummy die. */
5278 do_cleanups (cleanups);
5279 return;
5280 }
5281
5282 /* All the "real" work is done here. */
5283 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5284
6aa5f3a6 5285 /* This duplicates the code in init_cutu_and_read_dies,
a2ce51a0
DE
5286 but the alternative is making the latter more complex.
5287 This function is only for the special case of using DWO files directly:
5288 no point in overly complicating the general case just to handle this. */
6aa5f3a6 5289 if (free_cu_cleanup != NULL)
a2ce51a0 5290 {
6aa5f3a6
DE
5291 if (keep)
5292 {
5293 /* We've successfully allocated this compilation unit. Let our
5294 caller clean it up when finished with it. */
5295 discard_cleanups (free_cu_cleanup);
a2ce51a0 5296
6aa5f3a6
DE
5297 /* We can only discard free_cu_cleanup and all subsequent cleanups.
5298 So we have to manually free the abbrev table. */
5299 dwarf2_free_abbrev_table (cu);
a2ce51a0 5300
6aa5f3a6
DE
5301 /* Link this CU into read_in_chain. */
5302 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5303 dwarf2_per_objfile->read_in_chain = this_cu;
5304 }
5305 else
5306 do_cleanups (free_cu_cleanup);
a2ce51a0 5307 }
a2ce51a0
DE
5308
5309 do_cleanups (cleanups);
5310}
5311
fd820528 5312/* Initialize a CU (or TU) and read its DIEs.
3019eac3 5313 If the CU defers to a DWO file, read the DWO file as well.
dee91e82 5314
f4dc4d17
DE
5315 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
5316 Otherwise the table specified in the comp unit header is read in and used.
5317 This is an optimization for when we already have the abbrev table.
5318
dee91e82
DE
5319 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
5320 Otherwise, a new CU is allocated with xmalloc.
5321
5322 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
5323 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
5324
5325 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
fd820528 5326 linker) then DIE_READER_FUNC will not get called. */
aaa75496 5327
70221824 5328static void
fd820528 5329init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
f4dc4d17 5330 struct abbrev_table *abbrev_table,
fd820528
DE
5331 int use_existing_cu, int keep,
5332 die_reader_func_ftype *die_reader_func,
5333 void *data)
c906108c 5334{
dee91e82 5335 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 5336 struct dwarf2_section_info *section = this_cu->section;
a32a8923 5337 bfd *abfd = get_section_bfd_owner (section);
dee91e82 5338 struct dwarf2_cu *cu;
d521ce57 5339 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 5340 struct die_reader_specs reader;
d85a05f0 5341 struct die_info *comp_unit_die;
dee91e82 5342 int has_children;
d85a05f0 5343 struct attribute *attr;
365156ad 5344 struct cleanup *cleanups, *free_cu_cleanup = NULL;
dee91e82 5345 struct signatured_type *sig_type = NULL;
4bdcc0c1 5346 struct dwarf2_section_info *abbrev_section;
42e7ad6c
DE
5347 /* Non-zero if CU currently points to a DWO file and we need to
5348 reread it. When this happens we need to reread the skeleton die
a2ce51a0 5349 before we can reread the DWO file (this only applies to CUs, not TUs). */
42e7ad6c 5350 int rereading_dwo_cu = 0;
c906108c 5351
09406207
DE
5352 if (dwarf2_die_debug)
5353 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
5354 this_cu->is_debug_types ? "type" : "comp",
5355 this_cu->offset.sect_off);
5356
dee91e82
DE
5357 if (use_existing_cu)
5358 gdb_assert (keep);
23745b47 5359
a2ce51a0
DE
5360 /* If we're reading a TU directly from a DWO file, including a virtual DWO
5361 file (instead of going through the stub), short-circuit all of this. */
5362 if (this_cu->reading_dwo_directly)
5363 {
5364 /* Narrow down the scope of possibilities to have to understand. */
5365 gdb_assert (this_cu->is_debug_types);
5366 gdb_assert (abbrev_table == NULL);
6aa5f3a6
DE
5367 init_tu_and_read_dwo_dies (this_cu, use_existing_cu, keep,
5368 die_reader_func, data);
a2ce51a0
DE
5369 return;
5370 }
5371
dee91e82
DE
5372 cleanups = make_cleanup (null_cleanup, NULL);
5373
5374 /* This is cheap if the section is already read in. */
5375 dwarf2_read_section (objfile, section);
5376
5377 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
36586728
TT
5378
5379 abbrev_section = get_abbrev_section_for_cu (this_cu);
dee91e82
DE
5380
5381 if (use_existing_cu && this_cu->cu != NULL)
5382 {
5383 cu = this_cu->cu;
42e7ad6c
DE
5384 /* If this CU is from a DWO file we need to start over, we need to
5385 refetch the attributes from the skeleton CU.
5386 This could be optimized by retrieving those attributes from when we
5387 were here the first time: the previous comp_unit_die was stored in
5388 comp_unit_obstack. But there's no data yet that we need this
5389 optimization. */
5390 if (cu->dwo_unit != NULL)
5391 rereading_dwo_cu = 1;
dee91e82
DE
5392 }
5393 else
5394 {
5395 /* If !use_existing_cu, this_cu->cu must be NULL. */
5396 gdb_assert (this_cu->cu == NULL);
dee91e82
DE
5397 cu = xmalloc (sizeof (*cu));
5398 init_one_comp_unit (cu, this_cu);
dee91e82 5399 /* If an error occurs while loading, release our storage. */
365156ad 5400 free_cu_cleanup = make_cleanup (free_heap_comp_unit, cu);
42e7ad6c 5401 }
dee91e82 5402
b0c7bfa9 5403 /* Get the header. */
42e7ad6c
DE
5404 if (cu->header.first_die_offset.cu_off != 0 && ! rereading_dwo_cu)
5405 {
5406 /* We already have the header, there's no need to read it in again. */
5407 info_ptr += cu->header.first_die_offset.cu_off;
5408 }
5409 else
5410 {
3019eac3 5411 if (this_cu->is_debug_types)
dee91e82
DE
5412 {
5413 ULONGEST signature;
42e7ad6c 5414 cu_offset type_offset_in_tu;
dee91e82 5415
4bdcc0c1
DE
5416 info_ptr = read_and_check_type_unit_head (&cu->header, section,
5417 abbrev_section, info_ptr,
42e7ad6c
DE
5418 &signature,
5419 &type_offset_in_tu);
dee91e82 5420
42e7ad6c
DE
5421 /* Since per_cu is the first member of struct signatured_type,
5422 we can go from a pointer to one to a pointer to the other. */
5423 sig_type = (struct signatured_type *) this_cu;
5424 gdb_assert (sig_type->signature == signature);
5425 gdb_assert (sig_type->type_offset_in_tu.cu_off
5426 == type_offset_in_tu.cu_off);
dee91e82
DE
5427 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
5428
42e7ad6c
DE
5429 /* LENGTH has not been set yet for type units if we're
5430 using .gdb_index. */
1ce1cefd 5431 this_cu->length = get_cu_length (&cu->header);
3019eac3
DE
5432
5433 /* Establish the type offset that can be used to lookup the type. */
5434 sig_type->type_offset_in_section.sect_off =
5435 this_cu->offset.sect_off + sig_type->type_offset_in_tu.cu_off;
dee91e82
DE
5436 }
5437 else
5438 {
4bdcc0c1
DE
5439 info_ptr = read_and_check_comp_unit_head (&cu->header, section,
5440 abbrev_section,
5441 info_ptr, 0);
dee91e82
DE
5442
5443 gdb_assert (this_cu->offset.sect_off == cu->header.offset.sect_off);
1ce1cefd 5444 gdb_assert (this_cu->length == get_cu_length (&cu->header));
dee91e82
DE
5445 }
5446 }
10b3939b 5447
6caca83c 5448 /* Skip dummy compilation units. */
dee91e82 5449 if (info_ptr >= begin_info_ptr + this_cu->length
6caca83c
CC
5450 || peek_abbrev_code (abfd, info_ptr) == 0)
5451 {
dee91e82 5452 do_cleanups (cleanups);
21b2bd31 5453 return;
6caca83c
CC
5454 }
5455
433df2d4
DE
5456 /* If we don't have them yet, read the abbrevs for this compilation unit.
5457 And if we need to read them now, make sure they're freed when we're
42e7ad6c
DE
5458 done. Note that it's important that if the CU had an abbrev table
5459 on entry we don't free it when we're done: Somewhere up the call stack
5460 it may be in use. */
f4dc4d17
DE
5461 if (abbrev_table != NULL)
5462 {
5463 gdb_assert (cu->abbrev_table == NULL);
5464 gdb_assert (cu->header.abbrev_offset.sect_off
5465 == abbrev_table->offset.sect_off);
5466 cu->abbrev_table = abbrev_table;
5467 }
5468 else if (cu->abbrev_table == NULL)
dee91e82 5469 {
4bdcc0c1 5470 dwarf2_read_abbrevs (cu, abbrev_section);
dee91e82
DE
5471 make_cleanup (dwarf2_free_abbrev_table, cu);
5472 }
42e7ad6c
DE
5473 else if (rereading_dwo_cu)
5474 {
5475 dwarf2_free_abbrev_table (cu);
5476 dwarf2_read_abbrevs (cu, abbrev_section);
5477 }
af703f96 5478
dee91e82 5479 /* Read the top level CU/TU die. */
3019eac3 5480 init_cu_die_reader (&reader, cu, section, NULL);
dee91e82 5481 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
93311388 5482
b0c7bfa9
DE
5483 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
5484 from the DWO file.
5485 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
5486 DWO CU, that this test will fail (the attribute will not be present). */
3019eac3
DE
5487 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
5488 if (attr)
5489 {
3019eac3 5490 struct dwo_unit *dwo_unit;
b0c7bfa9 5491 struct die_info *dwo_comp_unit_die;
3019eac3
DE
5492
5493 if (has_children)
6a506a2d
DE
5494 {
5495 complaint (&symfile_complaints,
5496 _("compilation unit with DW_AT_GNU_dwo_name"
5497 " has children (offset 0x%x) [in module %s]"),
5498 this_cu->offset.sect_off, bfd_get_filename (abfd));
5499 }
b0c7bfa9 5500 dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
6a506a2d 5501 if (dwo_unit != NULL)
3019eac3 5502 {
6a506a2d
DE
5503 if (read_cutu_die_from_dwo (this_cu, dwo_unit,
5504 abbrev_table != NULL,
a2ce51a0 5505 comp_unit_die, NULL,
6a506a2d
DE
5506 &reader, &info_ptr,
5507 &dwo_comp_unit_die, &has_children) == 0)
5508 {
5509 /* Dummy die. */
5510 do_cleanups (cleanups);
5511 return;
5512 }
5513 comp_unit_die = dwo_comp_unit_die;
5514 }
5515 else
5516 {
5517 /* Yikes, we couldn't find the rest of the DIE, we only have
5518 the stub. A complaint has already been logged. There's
5519 not much more we can do except pass on the stub DIE to
5520 die_reader_func. We don't want to throw an error on bad
5521 debug info. */
3019eac3
DE
5522 }
5523 }
5524
b0c7bfa9 5525 /* All of the above is setup for this call. Yikes. */
dee91e82
DE
5526 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5527
b0c7bfa9 5528 /* Done, clean up. */
365156ad 5529 if (free_cu_cleanup != NULL)
348e048f 5530 {
365156ad
TT
5531 if (keep)
5532 {
5533 /* We've successfully allocated this compilation unit. Let our
5534 caller clean it up when finished with it. */
5535 discard_cleanups (free_cu_cleanup);
dee91e82 5536
365156ad
TT
5537 /* We can only discard free_cu_cleanup and all subsequent cleanups.
5538 So we have to manually free the abbrev table. */
5539 dwarf2_free_abbrev_table (cu);
dee91e82 5540
365156ad
TT
5541 /* Link this CU into read_in_chain. */
5542 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
5543 dwarf2_per_objfile->read_in_chain = this_cu;
5544 }
5545 else
5546 do_cleanups (free_cu_cleanup);
348e048f 5547 }
365156ad
TT
5548
5549 do_cleanups (cleanups);
dee91e82
DE
5550}
5551
33e80786
DE
5552/* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name if present.
5553 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed
5554 to have already done the lookup to find the DWO file).
dee91e82
DE
5555
5556 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
3019eac3 5557 THIS_CU->is_debug_types, but nothing else.
dee91e82
DE
5558
5559 We fill in THIS_CU->length.
5560
5561 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
5562 linker) then DIE_READER_FUNC will not get called.
5563
5564 THIS_CU->cu is always freed when done.
3019eac3
DE
5565 This is done in order to not leave THIS_CU->cu in a state where we have
5566 to care whether it refers to the "main" CU or the DWO CU. */
dee91e82
DE
5567
5568static void
5569init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
3019eac3 5570 struct dwo_file *dwo_file,
dee91e82
DE
5571 die_reader_func_ftype *die_reader_func,
5572 void *data)
5573{
5574 struct objfile *objfile = dwarf2_per_objfile->objfile;
8a0459fd 5575 struct dwarf2_section_info *section = this_cu->section;
a32a8923 5576 bfd *abfd = get_section_bfd_owner (section);
33e80786 5577 struct dwarf2_section_info *abbrev_section;
dee91e82 5578 struct dwarf2_cu cu;
d521ce57 5579 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82
DE
5580 struct die_reader_specs reader;
5581 struct cleanup *cleanups;
5582 struct die_info *comp_unit_die;
5583 int has_children;
5584
09406207
DE
5585 if (dwarf2_die_debug)
5586 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset 0x%x\n",
5587 this_cu->is_debug_types ? "type" : "comp",
5588 this_cu->offset.sect_off);
5589
dee91e82
DE
5590 gdb_assert (this_cu->cu == NULL);
5591
33e80786
DE
5592 abbrev_section = (dwo_file != NULL
5593 ? &dwo_file->sections.abbrev
5594 : get_abbrev_section_for_cu (this_cu));
5595
dee91e82
DE
5596 /* This is cheap if the section is already read in. */
5597 dwarf2_read_section (objfile, section);
5598
5599 init_one_comp_unit (&cu, this_cu);
5600
5601 cleanups = make_cleanup (free_stack_comp_unit, &cu);
5602
5603 begin_info_ptr = info_ptr = section->buffer + this_cu->offset.sect_off;
4bdcc0c1
DE
5604 info_ptr = read_and_check_comp_unit_head (&cu.header, section,
5605 abbrev_section, info_ptr,
3019eac3 5606 this_cu->is_debug_types);
dee91e82 5607
1ce1cefd 5608 this_cu->length = get_cu_length (&cu.header);
dee91e82
DE
5609
5610 /* Skip dummy compilation units. */
5611 if (info_ptr >= begin_info_ptr + this_cu->length
5612 || peek_abbrev_code (abfd, info_ptr) == 0)
c906108c 5613 {
dee91e82 5614 do_cleanups (cleanups);
21b2bd31 5615 return;
93311388 5616 }
72bf9492 5617
dee91e82
DE
5618 dwarf2_read_abbrevs (&cu, abbrev_section);
5619 make_cleanup (dwarf2_free_abbrev_table, &cu);
5620
3019eac3 5621 init_cu_die_reader (&reader, &cu, section, dwo_file);
dee91e82
DE
5622 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
5623
5624 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
5625
5626 do_cleanups (cleanups);
5627}
5628
3019eac3
DE
5629/* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
5630 does not lookup the specified DWO file.
5631 This cannot be used to read DWO files.
dee91e82
DE
5632
5633 THIS_CU->cu is always freed when done.
3019eac3
DE
5634 This is done in order to not leave THIS_CU->cu in a state where we have
5635 to care whether it refers to the "main" CU or the DWO CU.
5636 We can revisit this if the data shows there's a performance issue. */
dee91e82
DE
5637
5638static void
5639init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
5640 die_reader_func_ftype *die_reader_func,
5641 void *data)
5642{
33e80786 5643 init_cutu_and_read_dies_no_follow (this_cu, NULL, die_reader_func, data);
dee91e82 5644}
0018ea6f
DE
5645\f
5646/* Type Unit Groups.
dee91e82 5647
0018ea6f
DE
5648 Type Unit Groups are a way to collapse the set of all TUs (type units) into
5649 a more manageable set. The grouping is done by DW_AT_stmt_list entry
5650 so that all types coming from the same compilation (.o file) are grouped
5651 together. A future step could be to put the types in the same symtab as
5652 the CU the types ultimately came from. */
ff013f42 5653
f4dc4d17
DE
5654static hashval_t
5655hash_type_unit_group (const void *item)
5656{
094b34ac 5657 const struct type_unit_group *tu_group = item;
f4dc4d17 5658
094b34ac 5659 return hash_stmt_list_entry (&tu_group->hash);
f4dc4d17 5660}
348e048f
DE
5661
5662static int
f4dc4d17 5663eq_type_unit_group (const void *item_lhs, const void *item_rhs)
348e048f 5664{
f4dc4d17
DE
5665 const struct type_unit_group *lhs = item_lhs;
5666 const struct type_unit_group *rhs = item_rhs;
348e048f 5667
094b34ac 5668 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
f4dc4d17 5669}
348e048f 5670
f4dc4d17
DE
5671/* Allocate a hash table for type unit groups. */
5672
5673static htab_t
5674allocate_type_unit_groups_table (void)
5675{
5676 return htab_create_alloc_ex (3,
5677 hash_type_unit_group,
5678 eq_type_unit_group,
5679 NULL,
5680 &dwarf2_per_objfile->objfile->objfile_obstack,
5681 hashtab_obstack_allocate,
5682 dummy_obstack_deallocate);
5683}
dee91e82 5684
f4dc4d17
DE
5685/* Type units that don't have DW_AT_stmt_list are grouped into their own
5686 partial symtabs. We combine several TUs per psymtab to not let the size
5687 of any one psymtab grow too big. */
5688#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
5689#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
dee91e82 5690
094b34ac 5691/* Helper routine for get_type_unit_group.
f4dc4d17
DE
5692 Create the type_unit_group object used to hold one or more TUs. */
5693
5694static struct type_unit_group *
094b34ac 5695create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
f4dc4d17
DE
5696{
5697 struct objfile *objfile = dwarf2_per_objfile->objfile;
094b34ac 5698 struct dwarf2_per_cu_data *per_cu;
f4dc4d17 5699 struct type_unit_group *tu_group;
f4dc4d17
DE
5700
5701 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5702 struct type_unit_group);
094b34ac 5703 per_cu = &tu_group->per_cu;
f4dc4d17 5704 per_cu->objfile = objfile;
f4dc4d17 5705
094b34ac
DE
5706 if (dwarf2_per_objfile->using_index)
5707 {
5708 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
5709 struct dwarf2_per_cu_quick_data);
094b34ac
DE
5710 }
5711 else
5712 {
5713 unsigned int line_offset = line_offset_struct.sect_off;
5714 struct partial_symtab *pst;
5715 char *name;
5716
5717 /* Give the symtab a useful name for debug purposes. */
5718 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
5719 name = xstrprintf ("<type_units_%d>",
5720 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
5721 else
5722 name = xstrprintf ("<type_units_at_0x%x>", line_offset);
5723
5724 pst = create_partial_symtab (per_cu, name);
5725 pst->anonymous = 1;
f4dc4d17 5726
094b34ac
DE
5727 xfree (name);
5728 }
f4dc4d17 5729
094b34ac
DE
5730 tu_group->hash.dwo_unit = cu->dwo_unit;
5731 tu_group->hash.line_offset = line_offset_struct;
f4dc4d17
DE
5732
5733 return tu_group;
5734}
5735
094b34ac
DE
5736/* Look up the type_unit_group for type unit CU, and create it if necessary.
5737 STMT_LIST is a DW_AT_stmt_list attribute. */
f4dc4d17
DE
5738
5739static struct type_unit_group *
ff39bb5e 5740get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
f4dc4d17
DE
5741{
5742 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
5743 struct type_unit_group *tu_group;
5744 void **slot;
5745 unsigned int line_offset;
5746 struct type_unit_group type_unit_group_for_lookup;
5747
5748 if (dwarf2_per_objfile->type_unit_groups == NULL)
5749 {
5750 dwarf2_per_objfile->type_unit_groups =
5751 allocate_type_unit_groups_table ();
5752 }
5753
5754 /* Do we need to create a new group, or can we use an existing one? */
5755
5756 if (stmt_list)
5757 {
5758 line_offset = DW_UNSND (stmt_list);
5759 ++tu_stats->nr_symtab_sharers;
5760 }
5761 else
5762 {
5763 /* Ugh, no stmt_list. Rare, but we have to handle it.
5764 We can do various things here like create one group per TU or
5765 spread them over multiple groups to split up the expansion work.
5766 To avoid worst case scenarios (too many groups or too large groups)
5767 we, umm, group them in bunches. */
5768 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
5769 | (tu_stats->nr_stmt_less_type_units
5770 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
5771 ++tu_stats->nr_stmt_less_type_units;
5772 }
5773
094b34ac
DE
5774 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
5775 type_unit_group_for_lookup.hash.line_offset.sect_off = line_offset;
f4dc4d17
DE
5776 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
5777 &type_unit_group_for_lookup, INSERT);
5778 if (*slot != NULL)
5779 {
5780 tu_group = *slot;
5781 gdb_assert (tu_group != NULL);
5782 }
5783 else
5784 {
5785 sect_offset line_offset_struct;
5786
5787 line_offset_struct.sect_off = line_offset;
094b34ac 5788 tu_group = create_type_unit_group (cu, line_offset_struct);
f4dc4d17
DE
5789 *slot = tu_group;
5790 ++tu_stats->nr_symtabs;
5791 }
5792
5793 return tu_group;
5794}
0018ea6f
DE
5795\f
5796/* Partial symbol tables. */
5797
5798/* Create a psymtab named NAME and assign it to PER_CU.
5799
5800 The caller must fill in the following details:
5801 dirname, textlow, texthigh. */
5802
5803static struct partial_symtab *
5804create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
5805{
5806 struct objfile *objfile = per_cu->objfile;
5807 struct partial_symtab *pst;
5808
5809 pst = start_psymtab_common (objfile, objfile->section_offsets,
5810 name, 0,
5811 objfile->global_psymbols.next,
5812 objfile->static_psymbols.next);
5813
5814 pst->psymtabs_addrmap_supported = 1;
5815
5816 /* This is the glue that links PST into GDB's symbol API. */
5817 pst->read_symtab_private = per_cu;
5818 pst->read_symtab = dwarf2_read_symtab;
5819 per_cu->v.psymtab = pst;
5820
5821 return pst;
5822}
5823
b93601f3
TT
5824/* The DATA object passed to process_psymtab_comp_unit_reader has this
5825 type. */
5826
5827struct process_psymtab_comp_unit_data
5828{
5829 /* True if we are reading a DW_TAG_partial_unit. */
5830
5831 int want_partial_unit;
5832
5833 /* The "pretend" language that is used if the CU doesn't declare a
5834 language. */
5835
5836 enum language pretend_language;
5837};
5838
0018ea6f
DE
5839/* die_reader_func for process_psymtab_comp_unit. */
5840
5841static void
5842process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 5843 const gdb_byte *info_ptr,
0018ea6f
DE
5844 struct die_info *comp_unit_die,
5845 int has_children,
5846 void *data)
5847{
5848 struct dwarf2_cu *cu = reader->cu;
5849 struct objfile *objfile = cu->objfile;
5850 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
5851 struct attribute *attr;
5852 CORE_ADDR baseaddr;
5853 CORE_ADDR best_lowpc = 0, best_highpc = 0;
5854 struct partial_symtab *pst;
5855 int has_pc_info;
5856 const char *filename;
b93601f3 5857 struct process_psymtab_comp_unit_data *info = data;
0018ea6f 5858
b93601f3 5859 if (comp_unit_die->tag == DW_TAG_partial_unit && !info->want_partial_unit)
0018ea6f
DE
5860 return;
5861
5862 gdb_assert (! per_cu->is_debug_types);
5863
b93601f3 5864 prepare_one_comp_unit (cu, comp_unit_die, info->pretend_language);
0018ea6f
DE
5865
5866 cu->list_in_scope = &file_symbols;
5867
5868 /* Allocate a new partial symbol table structure. */
5869 attr = dwarf2_attr (comp_unit_die, DW_AT_name, cu);
5870 if (attr == NULL || !DW_STRING (attr))
5871 filename = "";
5872 else
5873 filename = DW_STRING (attr);
5874
5875 pst = create_partial_symtab (per_cu, filename);
5876
5877 /* This must be done before calling dwarf2_build_include_psymtabs. */
5878 attr = dwarf2_attr (comp_unit_die, DW_AT_comp_dir, cu);
5879 if (attr != NULL)
5880 pst->dirname = DW_STRING (attr);
5881
5882 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
5883
5884 dwarf2_find_base_address (comp_unit_die, cu);
5885
5886 /* Possibly set the default values of LOWPC and HIGHPC from
5887 `DW_AT_ranges'. */
5888 has_pc_info = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
5889 &best_highpc, cu, pst);
5890 if (has_pc_info == 1 && best_lowpc < best_highpc)
5891 /* Store the contiguous range if it is not empty; it can be empty for
5892 CUs with no code. */
5893 addrmap_set_empty (objfile->psymtabs_addrmap,
5894 best_lowpc + baseaddr,
5895 best_highpc + baseaddr - 1, pst);
5896
5897 /* Check if comp unit has_children.
5898 If so, read the rest of the partial symbols from this comp unit.
5899 If not, there's no more debug_info for this comp unit. */
5900 if (has_children)
5901 {
5902 struct partial_die_info *first_die;
5903 CORE_ADDR lowpc, highpc;
5904
5905 lowpc = ((CORE_ADDR) -1);
5906 highpc = ((CORE_ADDR) 0);
5907
5908 first_die = load_partial_dies (reader, info_ptr, 1);
5909
5910 scan_partial_symbols (first_die, &lowpc, &highpc,
5911 ! has_pc_info, cu);
5912
5913 /* If we didn't find a lowpc, set it to highpc to avoid
5914 complaints from `maint check'. */
5915 if (lowpc == ((CORE_ADDR) -1))
5916 lowpc = highpc;
5917
5918 /* If the compilation unit didn't have an explicit address range,
5919 then use the information extracted from its child dies. */
5920 if (! has_pc_info)
5921 {
5922 best_lowpc = lowpc;
5923 best_highpc = highpc;
5924 }
5925 }
5926 pst->textlow = best_lowpc + baseaddr;
5927 pst->texthigh = best_highpc + baseaddr;
5928
5929 pst->n_global_syms = objfile->global_psymbols.next -
5930 (objfile->global_psymbols.list + pst->globals_offset);
5931 pst->n_static_syms = objfile->static_psymbols.next -
5932 (objfile->static_psymbols.list + pst->statics_offset);
5933 sort_pst_symbols (objfile, pst);
5934
5935 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
5936 {
5937 int i;
5938 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5939 struct dwarf2_per_cu_data *iter;
5940
5941 /* Fill in 'dependencies' here; we fill in 'users' in a
5942 post-pass. */
5943 pst->number_of_dependencies = len;
5944 pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
5945 len * sizeof (struct symtab *));
5946 for (i = 0;
5947 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
5948 i, iter);
5949 ++i)
5950 pst->dependencies[i] = iter->v.psymtab;
5951
5952 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
5953 }
5954
5955 /* Get the list of files included in the current compilation unit,
5956 and build a psymtab for each of them. */
5957 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
5958
5959 if (dwarf2_read_debug)
5960 {
5961 struct gdbarch *gdbarch = get_objfile_arch (objfile);
5962
5963 fprintf_unfiltered (gdb_stdlog,
5964 "Psymtab for %s unit @0x%x: %s - %s"
5965 ", %d global, %d static syms\n",
5966 per_cu->is_debug_types ? "type" : "comp",
5967 per_cu->offset.sect_off,
5968 paddress (gdbarch, pst->textlow),
5969 paddress (gdbarch, pst->texthigh),
5970 pst->n_global_syms, pst->n_static_syms);
5971 }
5972}
5973
5974/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
5975 Process compilation unit THIS_CU for a psymtab. */
5976
5977static void
5978process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
b93601f3
TT
5979 int want_partial_unit,
5980 enum language pretend_language)
0018ea6f 5981{
b93601f3
TT
5982 struct process_psymtab_comp_unit_data info;
5983
0018ea6f
DE
5984 /* If this compilation unit was already read in, free the
5985 cached copy in order to read it in again. This is
5986 necessary because we skipped some symbols when we first
5987 read in the compilation unit (see load_partial_dies).
5988 This problem could be avoided, but the benefit is unclear. */
5989 if (this_cu->cu != NULL)
5990 free_one_cached_comp_unit (this_cu);
5991
5992 gdb_assert (! this_cu->is_debug_types);
b93601f3
TT
5993 info.want_partial_unit = want_partial_unit;
5994 info.pretend_language = pretend_language;
0018ea6f
DE
5995 init_cutu_and_read_dies (this_cu, NULL, 0, 0,
5996 process_psymtab_comp_unit_reader,
b93601f3 5997 &info);
0018ea6f
DE
5998
5999 /* Age out any secondary CUs. */
6000 age_cached_comp_units ();
6001}
f4dc4d17
DE
6002
6003/* Reader function for build_type_psymtabs. */
6004
6005static void
6006build_type_psymtabs_reader (const struct die_reader_specs *reader,
d521ce57 6007 const gdb_byte *info_ptr,
f4dc4d17
DE
6008 struct die_info *type_unit_die,
6009 int has_children,
6010 void *data)
6011{
6012 struct objfile *objfile = dwarf2_per_objfile->objfile;
6013 struct dwarf2_cu *cu = reader->cu;
6014 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0186c6a7 6015 struct signatured_type *sig_type;
f4dc4d17
DE
6016 struct type_unit_group *tu_group;
6017 struct attribute *attr;
6018 struct partial_die_info *first_die;
6019 CORE_ADDR lowpc, highpc;
6020 struct partial_symtab *pst;
6021
6022 gdb_assert (data == NULL);
0186c6a7
DE
6023 gdb_assert (per_cu->is_debug_types);
6024 sig_type = (struct signatured_type *) per_cu;
f4dc4d17
DE
6025
6026 if (! has_children)
6027 return;
6028
6029 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
094b34ac 6030 tu_group = get_type_unit_group (cu, attr);
f4dc4d17 6031
0186c6a7 6032 VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
f4dc4d17
DE
6033
6034 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
6035 cu->list_in_scope = &file_symbols;
6036 pst = create_partial_symtab (per_cu, "");
6037 pst->anonymous = 1;
6038
6039 first_die = load_partial_dies (reader, info_ptr, 1);
6040
6041 lowpc = (CORE_ADDR) -1;
6042 highpc = (CORE_ADDR) 0;
6043 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
6044
6045 pst->n_global_syms = objfile->global_psymbols.next -
6046 (objfile->global_psymbols.list + pst->globals_offset);
6047 pst->n_static_syms = objfile->static_psymbols.next -
6048 (objfile->static_psymbols.list + pst->statics_offset);
5c80ed9d 6049 sort_pst_symbols (objfile, pst);
f4dc4d17
DE
6050}
6051
73051182
DE
6052/* Struct used to sort TUs by their abbreviation table offset. */
6053
6054struct tu_abbrev_offset
6055{
6056 struct signatured_type *sig_type;
6057 sect_offset abbrev_offset;
6058};
6059
6060/* Helper routine for build_type_psymtabs_1, passed to qsort. */
6061
6062static int
6063sort_tu_by_abbrev_offset (const void *ap, const void *bp)
6064{
6065 const struct tu_abbrev_offset * const *a = ap;
6066 const struct tu_abbrev_offset * const *b = bp;
6067 unsigned int aoff = (*a)->abbrev_offset.sect_off;
6068 unsigned int boff = (*b)->abbrev_offset.sect_off;
6069
6070 return (aoff > boff) - (aoff < boff);
6071}
6072
6073/* Efficiently read all the type units.
6074 This does the bulk of the work for build_type_psymtabs.
6075
6076 The efficiency is because we sort TUs by the abbrev table they use and
6077 only read each abbrev table once. In one program there are 200K TUs
6078 sharing 8K abbrev tables.
6079
6080 The main purpose of this function is to support building the
6081 dwarf2_per_objfile->type_unit_groups table.
6082 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
6083 can collapse the search space by grouping them by stmt_list.
6084 The savings can be significant, in the same program from above the 200K TUs
6085 share 8K stmt_list tables.
6086
6087 FUNC is expected to call get_type_unit_group, which will create the
6088 struct type_unit_group if necessary and add it to
6089 dwarf2_per_objfile->type_unit_groups. */
6090
6091static void
6092build_type_psymtabs_1 (void)
6093{
6094 struct objfile *objfile = dwarf2_per_objfile->objfile;
6095 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
6096 struct cleanup *cleanups;
6097 struct abbrev_table *abbrev_table;
6098 sect_offset abbrev_offset;
6099 struct tu_abbrev_offset *sorted_by_abbrev;
6100 struct type_unit_group **iter;
6101 int i;
6102
6103 /* It's up to the caller to not call us multiple times. */
6104 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
6105
6106 if (dwarf2_per_objfile->n_type_units == 0)
6107 return;
6108
6109 /* TUs typically share abbrev tables, and there can be way more TUs than
6110 abbrev tables. Sort by abbrev table to reduce the number of times we
6111 read each abbrev table in.
6112 Alternatives are to punt or to maintain a cache of abbrev tables.
6113 This is simpler and efficient enough for now.
6114
6115 Later we group TUs by their DW_AT_stmt_list value (as this defines the
6116 symtab to use). Typically TUs with the same abbrev offset have the same
6117 stmt_list value too so in practice this should work well.
6118
6119 The basic algorithm here is:
6120
6121 sort TUs by abbrev table
6122 for each TU with same abbrev table:
6123 read abbrev table if first user
6124 read TU top level DIE
6125 [IWBN if DWO skeletons had DW_AT_stmt_list]
6126 call FUNC */
6127
6128 if (dwarf2_read_debug)
6129 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
6130
6131 /* Sort in a separate table to maintain the order of all_type_units
6132 for .gdb_index: TU indices directly index all_type_units. */
6133 sorted_by_abbrev = XNEWVEC (struct tu_abbrev_offset,
6134 dwarf2_per_objfile->n_type_units);
6135 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
6136 {
6137 struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
6138
6139 sorted_by_abbrev[i].sig_type = sig_type;
6140 sorted_by_abbrev[i].abbrev_offset =
6141 read_abbrev_offset (sig_type->per_cu.section,
6142 sig_type->per_cu.offset);
6143 }
6144 cleanups = make_cleanup (xfree, sorted_by_abbrev);
6145 qsort (sorted_by_abbrev, dwarf2_per_objfile->n_type_units,
6146 sizeof (struct tu_abbrev_offset), sort_tu_by_abbrev_offset);
6147
6148 abbrev_offset.sect_off = ~(unsigned) 0;
6149 abbrev_table = NULL;
6150 make_cleanup (abbrev_table_free_cleanup, &abbrev_table);
6151
6152 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
6153 {
6154 const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
6155
6156 /* Switch to the next abbrev table if necessary. */
6157 if (abbrev_table == NULL
6158 || tu->abbrev_offset.sect_off != abbrev_offset.sect_off)
6159 {
6160 if (abbrev_table != NULL)
6161 {
6162 abbrev_table_free (abbrev_table);
6163 /* Reset to NULL in case abbrev_table_read_table throws
6164 an error: abbrev_table_free_cleanup will get called. */
6165 abbrev_table = NULL;
6166 }
6167 abbrev_offset = tu->abbrev_offset;
6168 abbrev_table =
6169 abbrev_table_read_table (&dwarf2_per_objfile->abbrev,
6170 abbrev_offset);
6171 ++tu_stats->nr_uniq_abbrev_tables;
6172 }
6173
6174 init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table, 0, 0,
6175 build_type_psymtabs_reader, NULL);
6176 }
6177
73051182 6178 do_cleanups (cleanups);
6aa5f3a6 6179}
73051182 6180
6aa5f3a6
DE
6181/* Print collected type unit statistics. */
6182
6183static void
6184print_tu_stats (void)
6185{
6186 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
6187
6188 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
6189 fprintf_unfiltered (gdb_stdlog, " %d TUs\n",
6190 dwarf2_per_objfile->n_type_units);
6191 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
6192 tu_stats->nr_uniq_abbrev_tables);
6193 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
6194 tu_stats->nr_symtabs);
6195 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
6196 tu_stats->nr_symtab_sharers);
6197 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
6198 tu_stats->nr_stmt_less_type_units);
6199 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
6200 tu_stats->nr_all_type_units_reallocs);
73051182
DE
6201}
6202
f4dc4d17
DE
6203/* Traversal function for build_type_psymtabs. */
6204
6205static int
6206build_type_psymtab_dependencies (void **slot, void *info)
6207{
6208 struct objfile *objfile = dwarf2_per_objfile->objfile;
6209 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
094b34ac 6210 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
f4dc4d17 6211 struct partial_symtab *pst = per_cu->v.psymtab;
0186c6a7
DE
6212 int len = VEC_length (sig_type_ptr, tu_group->tus);
6213 struct signatured_type *iter;
f4dc4d17
DE
6214 int i;
6215
6216 gdb_assert (len > 0);
0186c6a7 6217 gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
f4dc4d17
DE
6218
6219 pst->number_of_dependencies = len;
6220 pst->dependencies = obstack_alloc (&objfile->objfile_obstack,
6221 len * sizeof (struct psymtab *));
6222 for (i = 0;
0186c6a7 6223 VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
f4dc4d17
DE
6224 ++i)
6225 {
0186c6a7
DE
6226 gdb_assert (iter->per_cu.is_debug_types);
6227 pst->dependencies[i] = iter->per_cu.v.psymtab;
796a7ff8 6228 iter->type_unit_group = tu_group;
f4dc4d17
DE
6229 }
6230
0186c6a7 6231 VEC_free (sig_type_ptr, tu_group->tus);
348e048f
DE
6232
6233 return 1;
6234}
6235
6236/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
6237 Build partial symbol tables for the .debug_types comp-units. */
6238
6239static void
6240build_type_psymtabs (struct objfile *objfile)
6241{
0e50663e 6242 if (! create_all_type_units (objfile))
348e048f
DE
6243 return;
6244
73051182 6245 build_type_psymtabs_1 ();
6aa5f3a6 6246}
f4dc4d17 6247
6aa5f3a6
DE
6248/* Traversal function for process_skeletonless_type_unit.
6249 Read a TU in a DWO file and build partial symbols for it. */
6250
6251static int
6252process_skeletonless_type_unit (void **slot, void *info)
6253{
6254 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
6255 struct objfile *objfile = info;
6256 struct signatured_type find_entry, *entry;
6257
6258 /* If this TU doesn't exist in the global table, add it and read it in. */
6259
6260 if (dwarf2_per_objfile->signatured_types == NULL)
6261 {
6262 dwarf2_per_objfile->signatured_types
6263 = allocate_signatured_type_table (objfile);
6264 }
6265
6266 find_entry.signature = dwo_unit->signature;
6267 slot = htab_find_slot (dwarf2_per_objfile->signatured_types, &find_entry,
6268 INSERT);
6269 /* If we've already seen this type there's nothing to do. What's happening
6270 is we're doing our own version of comdat-folding here. */
6271 if (*slot != NULL)
6272 return 1;
6273
6274 /* This does the job that create_all_type_units would have done for
6275 this TU. */
6276 entry = add_type_unit (dwo_unit->signature, slot);
6277 fill_in_sig_entry_from_dwo_entry (objfile, entry, dwo_unit);
6278 *slot = entry;
6279
6280 /* This does the job that build_type_psymtabs_1 would have done. */
6281 init_cutu_and_read_dies (&entry->per_cu, NULL, 0, 0,
6282 build_type_psymtabs_reader, NULL);
6283
6284 return 1;
6285}
6286
6287/* Traversal function for process_skeletonless_type_units. */
6288
6289static int
6290process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
6291{
6292 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
6293
6294 if (dwo_file->tus != NULL)
6295 {
6296 htab_traverse_noresize (dwo_file->tus,
6297 process_skeletonless_type_unit, info);
6298 }
6299
6300 return 1;
6301}
6302
6303/* Scan all TUs of DWO files, verifying we've processed them.
6304 This is needed in case a TU was emitted without its skeleton.
6305 Note: This can't be done until we know what all the DWO files are. */
6306
6307static void
6308process_skeletonless_type_units (struct objfile *objfile)
6309{
6310 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
6311 if (get_dwp_file () == NULL
6312 && dwarf2_per_objfile->dwo_files != NULL)
6313 {
6314 htab_traverse_noresize (dwarf2_per_objfile->dwo_files,
6315 process_dwo_file_for_skeletonless_type_units,
6316 objfile);
6317 }
348e048f
DE
6318}
6319
60606b2c
TT
6320/* A cleanup function that clears objfile's psymtabs_addrmap field. */
6321
6322static void
6323psymtabs_addrmap_cleanup (void *o)
6324{
6325 struct objfile *objfile = o;
ec61707d 6326
60606b2c
TT
6327 objfile->psymtabs_addrmap = NULL;
6328}
6329
95554aad
TT
6330/* Compute the 'user' field for each psymtab in OBJFILE. */
6331
6332static void
6333set_partial_user (struct objfile *objfile)
6334{
6335 int i;
6336
6337 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
6338 {
8832e7e3 6339 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
95554aad
TT
6340 struct partial_symtab *pst = per_cu->v.psymtab;
6341 int j;
6342
36586728
TT
6343 if (pst == NULL)
6344 continue;
6345
95554aad
TT
6346 for (j = 0; j < pst->number_of_dependencies; ++j)
6347 {
6348 /* Set the 'user' field only if it is not already set. */
6349 if (pst->dependencies[j]->user == NULL)
6350 pst->dependencies[j]->user = pst;
6351 }
6352 }
6353}
6354
93311388
DE
6355/* Build the partial symbol table by doing a quick pass through the
6356 .debug_info and .debug_abbrev sections. */
72bf9492 6357
93311388 6358static void
c67a9c90 6359dwarf2_build_psymtabs_hard (struct objfile *objfile)
93311388 6360{
60606b2c
TT
6361 struct cleanup *back_to, *addrmap_cleanup;
6362 struct obstack temp_obstack;
21b2bd31 6363 int i;
93311388 6364
45cfd468
DE
6365 if (dwarf2_read_debug)
6366 {
6367 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
4262abfb 6368 objfile_name (objfile));
45cfd468
DE
6369 }
6370
98bfdba5
PA
6371 dwarf2_per_objfile->reading_partial_symbols = 1;
6372
be391dca 6373 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
91c24f0a 6374
93311388
DE
6375 /* Any cached compilation units will be linked by the per-objfile
6376 read_in_chain. Make sure to free them when we're done. */
6377 back_to = make_cleanup (free_cached_comp_units, NULL);
72bf9492 6378
348e048f
DE
6379 build_type_psymtabs (objfile);
6380
93311388 6381 create_all_comp_units (objfile);
c906108c 6382
60606b2c
TT
6383 /* Create a temporary address map on a temporary obstack. We later
6384 copy this to the final obstack. */
6385 obstack_init (&temp_obstack);
6386 make_cleanup_obstack_free (&temp_obstack);
6387 objfile->psymtabs_addrmap = addrmap_create_mutable (&temp_obstack);
6388 addrmap_cleanup = make_cleanup (psymtabs_addrmap_cleanup, objfile);
72bf9492 6389
21b2bd31 6390 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
93311388 6391 {
8832e7e3 6392 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
aaa75496 6393
b93601f3 6394 process_psymtab_comp_unit (per_cu, 0, language_minimal);
c906108c 6395 }
ff013f42 6396
6aa5f3a6
DE
6397 /* This has to wait until we read the CUs, we need the list of DWOs. */
6398 process_skeletonless_type_units (objfile);
6399
6400 /* Now that all TUs have been processed we can fill in the dependencies. */
6401 if (dwarf2_per_objfile->type_unit_groups != NULL)
6402 {
6403 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
6404 build_type_psymtab_dependencies, NULL);
6405 }
6406
6407 if (dwarf2_read_debug)
6408 print_tu_stats ();
6409
95554aad
TT
6410 set_partial_user (objfile);
6411
ff013f42
JK
6412 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
6413 &objfile->objfile_obstack);
60606b2c 6414 discard_cleanups (addrmap_cleanup);
ff013f42 6415
ae038cb0 6416 do_cleanups (back_to);
45cfd468
DE
6417
6418 if (dwarf2_read_debug)
6419 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
4262abfb 6420 objfile_name (objfile));
ae038cb0
DJ
6421}
6422
3019eac3 6423/* die_reader_func for load_partial_comp_unit. */
ae038cb0
DJ
6424
6425static void
dee91e82 6426load_partial_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 6427 const gdb_byte *info_ptr,
dee91e82
DE
6428 struct die_info *comp_unit_die,
6429 int has_children,
6430 void *data)
ae038cb0 6431{
dee91e82 6432 struct dwarf2_cu *cu = reader->cu;
ae038cb0 6433
95554aad 6434 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
ae038cb0 6435
ae038cb0
DJ
6436 /* Check if comp unit has_children.
6437 If so, read the rest of the partial symbols from this comp unit.
0963b4bd 6438 If not, there's no more debug_info for this comp unit. */
d85a05f0 6439 if (has_children)
dee91e82
DE
6440 load_partial_dies (reader, info_ptr, 0);
6441}
98bfdba5 6442
dee91e82
DE
6443/* Load the partial DIEs for a secondary CU into memory.
6444 This is also used when rereading a primary CU with load_all_dies. */
c5b7e1cb 6445
dee91e82
DE
6446static void
6447load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
6448{
f4dc4d17
DE
6449 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
6450 load_partial_comp_unit_reader, NULL);
ae038cb0
DJ
6451}
6452
ae038cb0 6453static void
36586728
TT
6454read_comp_units_from_section (struct objfile *objfile,
6455 struct dwarf2_section_info *section,
6456 unsigned int is_dwz,
6457 int *n_allocated,
6458 int *n_comp_units,
6459 struct dwarf2_per_cu_data ***all_comp_units)
ae038cb0 6460{
d521ce57 6461 const gdb_byte *info_ptr;
a32a8923 6462 bfd *abfd = get_section_bfd_owner (section);
be391dca 6463
bf6af496
DE
6464 if (dwarf2_read_debug)
6465 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
a32a8923
DE
6466 get_section_name (section),
6467 get_section_file_name (section));
bf6af496 6468
36586728 6469 dwarf2_read_section (objfile, section);
ae038cb0 6470
36586728 6471 info_ptr = section->buffer;
6e70227d 6472
36586728 6473 while (info_ptr < section->buffer + section->size)
ae038cb0 6474 {
c764a876 6475 unsigned int length, initial_length_size;
ae038cb0 6476 struct dwarf2_per_cu_data *this_cu;
b64f50a1 6477 sect_offset offset;
ae038cb0 6478
36586728 6479 offset.sect_off = info_ptr - section->buffer;
ae038cb0
DJ
6480
6481 /* Read just enough information to find out where the next
6482 compilation unit is. */
36586728 6483 length = read_initial_length (abfd, info_ptr, &initial_length_size);
ae038cb0
DJ
6484
6485 /* Save the compilation unit for later lookup. */
6486 this_cu = obstack_alloc (&objfile->objfile_obstack,
6487 sizeof (struct dwarf2_per_cu_data));
6488 memset (this_cu, 0, sizeof (*this_cu));
6489 this_cu->offset = offset;
c764a876 6490 this_cu->length = length + initial_length_size;
36586728 6491 this_cu->is_dwz = is_dwz;
9291a0cd 6492 this_cu->objfile = objfile;
8a0459fd 6493 this_cu->section = section;
ae038cb0 6494
36586728 6495 if (*n_comp_units == *n_allocated)
ae038cb0 6496 {
36586728
TT
6497 *n_allocated *= 2;
6498 *all_comp_units = xrealloc (*all_comp_units,
6499 *n_allocated
6500 * sizeof (struct dwarf2_per_cu_data *));
ae038cb0 6501 }
36586728
TT
6502 (*all_comp_units)[*n_comp_units] = this_cu;
6503 ++*n_comp_units;
ae038cb0
DJ
6504
6505 info_ptr = info_ptr + this_cu->length;
6506 }
36586728
TT
6507}
6508
6509/* Create a list of all compilation units in OBJFILE.
6510 This is only done for -readnow and building partial symtabs. */
6511
6512static void
6513create_all_comp_units (struct objfile *objfile)
6514{
6515 int n_allocated;
6516 int n_comp_units;
6517 struct dwarf2_per_cu_data **all_comp_units;
4db1a1dc 6518 struct dwz_file *dwz;
36586728
TT
6519
6520 n_comp_units = 0;
6521 n_allocated = 10;
6522 all_comp_units = xmalloc (n_allocated
6523 * sizeof (struct dwarf2_per_cu_data *));
6524
6525 read_comp_units_from_section (objfile, &dwarf2_per_objfile->info, 0,
6526 &n_allocated, &n_comp_units, &all_comp_units);
6527
4db1a1dc
TT
6528 dwz = dwarf2_get_dwz_file ();
6529 if (dwz != NULL)
6530 read_comp_units_from_section (objfile, &dwz->info, 1,
6531 &n_allocated, &n_comp_units,
6532 &all_comp_units);
ae038cb0
DJ
6533
6534 dwarf2_per_objfile->all_comp_units
6535 = obstack_alloc (&objfile->objfile_obstack,
6536 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
6537 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
6538 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
6539 xfree (all_comp_units);
6540 dwarf2_per_objfile->n_comp_units = n_comp_units;
c906108c
SS
6541}
6542
5734ee8b 6543/* Process all loaded DIEs for compilation unit CU, starting at
cdc07690 6544 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
5734ee8b 6545 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
cdc07690
YQ
6546 DW_AT_ranges). See the comments of add_partial_subprogram on how
6547 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
c906108c 6548
72bf9492
DJ
6549static void
6550scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
cdc07690
YQ
6551 CORE_ADDR *highpc, int set_addrmap,
6552 struct dwarf2_cu *cu)
c906108c 6553{
72bf9492 6554 struct partial_die_info *pdi;
c906108c 6555
91c24f0a
DC
6556 /* Now, march along the PDI's, descending into ones which have
6557 interesting children but skipping the children of the other ones,
6558 until we reach the end of the compilation unit. */
c906108c 6559
72bf9492 6560 pdi = first_die;
91c24f0a 6561
72bf9492
DJ
6562 while (pdi != NULL)
6563 {
6564 fixup_partial_die (pdi, cu);
c906108c 6565
f55ee35c 6566 /* Anonymous namespaces or modules have no name but have interesting
91c24f0a
DC
6567 children, so we need to look at them. Ditto for anonymous
6568 enums. */
933c6fe4 6569
72bf9492 6570 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
95554aad
TT
6571 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
6572 || pdi->tag == DW_TAG_imported_unit)
c906108c 6573 {
72bf9492 6574 switch (pdi->tag)
c906108c
SS
6575 {
6576 case DW_TAG_subprogram:
cdc07690 6577 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
c906108c 6578 break;
72929c62 6579 case DW_TAG_constant:
c906108c
SS
6580 case DW_TAG_variable:
6581 case DW_TAG_typedef:
91c24f0a 6582 case DW_TAG_union_type:
72bf9492 6583 if (!pdi->is_declaration)
63d06c5c 6584 {
72bf9492 6585 add_partial_symbol (pdi, cu);
63d06c5c
DC
6586 }
6587 break;
c906108c 6588 case DW_TAG_class_type:
680b30c7 6589 case DW_TAG_interface_type:
c906108c 6590 case DW_TAG_structure_type:
72bf9492 6591 if (!pdi->is_declaration)
c906108c 6592 {
72bf9492 6593 add_partial_symbol (pdi, cu);
c906108c
SS
6594 }
6595 break;
91c24f0a 6596 case DW_TAG_enumeration_type:
72bf9492
DJ
6597 if (!pdi->is_declaration)
6598 add_partial_enumeration (pdi, cu);
c906108c
SS
6599 break;
6600 case DW_TAG_base_type:
a02abb62 6601 case DW_TAG_subrange_type:
c906108c 6602 /* File scope base type definitions are added to the partial
c5aa993b 6603 symbol table. */
72bf9492 6604 add_partial_symbol (pdi, cu);
c906108c 6605 break;
d9fa45fe 6606 case DW_TAG_namespace:
cdc07690 6607 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
91c24f0a 6608 break;
5d7cb8df 6609 case DW_TAG_module:
cdc07690 6610 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
5d7cb8df 6611 break;
95554aad
TT
6612 case DW_TAG_imported_unit:
6613 {
6614 struct dwarf2_per_cu_data *per_cu;
6615
f4dc4d17
DE
6616 /* For now we don't handle imported units in type units. */
6617 if (cu->per_cu->is_debug_types)
6618 {
6619 error (_("Dwarf Error: DW_TAG_imported_unit is not"
6620 " supported in type units [in module %s]"),
4262abfb 6621 objfile_name (cu->objfile));
f4dc4d17
DE
6622 }
6623
95554aad 6624 per_cu = dwarf2_find_containing_comp_unit (pdi->d.offset,
36586728 6625 pdi->is_dwz,
95554aad
TT
6626 cu->objfile);
6627
6628 /* Go read the partial unit, if needed. */
6629 if (per_cu->v.psymtab == NULL)
b93601f3 6630 process_psymtab_comp_unit (per_cu, 1, cu->language);
95554aad 6631
f4dc4d17 6632 VEC_safe_push (dwarf2_per_cu_ptr,
796a7ff8 6633 cu->per_cu->imported_symtabs, per_cu);
95554aad
TT
6634 }
6635 break;
74921315
KS
6636 case DW_TAG_imported_declaration:
6637 add_partial_symbol (pdi, cu);
6638 break;
c906108c
SS
6639 default:
6640 break;
6641 }
6642 }
6643
72bf9492
DJ
6644 /* If the die has a sibling, skip to the sibling. */
6645
6646 pdi = pdi->die_sibling;
6647 }
6648}
6649
6650/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 6651
72bf9492 6652 Normally, this is simple. For C++, the parent DIE's fully scoped
987504bb
JJ
6653 name is concatenated with "::" and the partial DIE's name. For
6654 Java, the same thing occurs except that "." is used instead of "::".
72bf9492
DJ
6655 Enumerators are an exception; they use the scope of their parent
6656 enumeration type, i.e. the name of the enumeration type is not
6657 prepended to the enumerator.
91c24f0a 6658
72bf9492
DJ
6659 There are two complexities. One is DW_AT_specification; in this
6660 case "parent" means the parent of the target of the specification,
6661 instead of the direct parent of the DIE. The other is compilers
6662 which do not emit DW_TAG_namespace; in this case we try to guess
6663 the fully qualified name of structure types from their members'
6664 linkage names. This must be done using the DIE's children rather
6665 than the children of any DW_AT_specification target. We only need
6666 to do this for structures at the top level, i.e. if the target of
6667 any DW_AT_specification (if any; otherwise the DIE itself) does not
6668 have a parent. */
6669
6670/* Compute the scope prefix associated with PDI's parent, in
6671 compilation unit CU. The result will be allocated on CU's
6672 comp_unit_obstack, or a copy of the already allocated PDI->NAME
6673 field. NULL is returned if no prefix is necessary. */
15d034d0 6674static const char *
72bf9492
DJ
6675partial_die_parent_scope (struct partial_die_info *pdi,
6676 struct dwarf2_cu *cu)
6677{
15d034d0 6678 const char *grandparent_scope;
72bf9492 6679 struct partial_die_info *parent, *real_pdi;
91c24f0a 6680
72bf9492
DJ
6681 /* We need to look at our parent DIE; if we have a DW_AT_specification,
6682 then this means the parent of the specification DIE. */
6683
6684 real_pdi = pdi;
72bf9492 6685 while (real_pdi->has_specification)
36586728
TT
6686 real_pdi = find_partial_die (real_pdi->spec_offset,
6687 real_pdi->spec_is_dwz, cu);
72bf9492
DJ
6688
6689 parent = real_pdi->die_parent;
6690 if (parent == NULL)
6691 return NULL;
6692
6693 if (parent->scope_set)
6694 return parent->scope;
6695
6696 fixup_partial_die (parent, cu);
6697
10b3939b 6698 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492 6699
acebe513
UW
6700 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
6701 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
6702 Work around this problem here. */
6703 if (cu->language == language_cplus
6e70227d 6704 && parent->tag == DW_TAG_namespace
acebe513
UW
6705 && strcmp (parent->name, "::") == 0
6706 && grandparent_scope == NULL)
6707 {
6708 parent->scope = NULL;
6709 parent->scope_set = 1;
6710 return NULL;
6711 }
6712
9c6c53f7
SA
6713 if (pdi->tag == DW_TAG_enumerator)
6714 /* Enumerators should not get the name of the enumeration as a prefix. */
6715 parent->scope = grandparent_scope;
6716 else if (parent->tag == DW_TAG_namespace
f55ee35c 6717 || parent->tag == DW_TAG_module
72bf9492
DJ
6718 || parent->tag == DW_TAG_structure_type
6719 || parent->tag == DW_TAG_class_type
680b30c7 6720 || parent->tag == DW_TAG_interface_type
ceeb3d5a
TT
6721 || parent->tag == DW_TAG_union_type
6722 || parent->tag == DW_TAG_enumeration_type)
72bf9492
DJ
6723 {
6724 if (grandparent_scope == NULL)
6725 parent->scope = parent->name;
6726 else
3e43a32a
MS
6727 parent->scope = typename_concat (&cu->comp_unit_obstack,
6728 grandparent_scope,
f55ee35c 6729 parent->name, 0, cu);
72bf9492 6730 }
72bf9492
DJ
6731 else
6732 {
6733 /* FIXME drow/2004-04-01: What should we be doing with
6734 function-local names? For partial symbols, we should probably be
6735 ignoring them. */
6736 complaint (&symfile_complaints,
e2e0b3e5 6737 _("unhandled containing DIE tag %d for DIE at %d"),
b64f50a1 6738 parent->tag, pdi->offset.sect_off);
72bf9492 6739 parent->scope = grandparent_scope;
c906108c
SS
6740 }
6741
72bf9492
DJ
6742 parent->scope_set = 1;
6743 return parent->scope;
6744}
6745
6746/* Return the fully scoped name associated with PDI, from compilation unit
6747 CU. The result will be allocated with malloc. */
4568ecf9 6748
72bf9492
DJ
6749static char *
6750partial_die_full_name (struct partial_die_info *pdi,
6751 struct dwarf2_cu *cu)
6752{
15d034d0 6753 const char *parent_scope;
72bf9492 6754
98bfdba5
PA
6755 /* If this is a template instantiation, we can not work out the
6756 template arguments from partial DIEs. So, unfortunately, we have
6757 to go through the full DIEs. At least any work we do building
6758 types here will be reused if full symbols are loaded later. */
6759 if (pdi->has_template_arguments)
6760 {
6761 fixup_partial_die (pdi, cu);
6762
6763 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
6764 {
6765 struct die_info *die;
6766 struct attribute attr;
6767 struct dwarf2_cu *ref_cu = cu;
6768
b64f50a1 6769 /* DW_FORM_ref_addr is using section offset. */
98bfdba5
PA
6770 attr.name = 0;
6771 attr.form = DW_FORM_ref_addr;
4568ecf9 6772 attr.u.unsnd = pdi->offset.sect_off;
98bfdba5
PA
6773 die = follow_die_ref (NULL, &attr, &ref_cu);
6774
6775 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
6776 }
6777 }
6778
72bf9492
DJ
6779 parent_scope = partial_die_parent_scope (pdi, cu);
6780 if (parent_scope == NULL)
6781 return NULL;
6782 else
f55ee35c 6783 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
c906108c
SS
6784}
6785
6786static void
72bf9492 6787add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 6788{
e7c27a73 6789 struct objfile *objfile = cu->objfile;
c906108c 6790 CORE_ADDR addr = 0;
15d034d0 6791 const char *actual_name = NULL;
e142c38c 6792 CORE_ADDR baseaddr;
15d034d0 6793 char *built_actual_name;
e142c38c
DJ
6794
6795 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 6796
15d034d0
TT
6797 built_actual_name = partial_die_full_name (pdi, cu);
6798 if (built_actual_name != NULL)
6799 actual_name = built_actual_name;
63d06c5c 6800
72bf9492
DJ
6801 if (actual_name == NULL)
6802 actual_name = pdi->name;
6803
c906108c
SS
6804 switch (pdi->tag)
6805 {
6806 case DW_TAG_subprogram:
2cfa0c8d 6807 if (pdi->is_external || cu->language == language_ada)
c906108c 6808 {
2cfa0c8d
JB
6809 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
6810 of the global scope. But in Ada, we want to be able to access
6811 nested procedures globally. So all Ada subprograms are stored
6812 in the global scope. */
f47fb265 6813 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
c5aa993b 6814 mst_text, objfile); */
f47fb265 6815 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6816 built_actual_name != NULL,
f47fb265
MS
6817 VAR_DOMAIN, LOC_BLOCK,
6818 &objfile->global_psymbols,
6819 0, pdi->lowpc + baseaddr,
6820 cu->language, objfile);
c906108c
SS
6821 }
6822 else
6823 {
f47fb265 6824 /* prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr,
c5aa993b 6825 mst_file_text, objfile); */
f47fb265 6826 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6827 built_actual_name != NULL,
f47fb265
MS
6828 VAR_DOMAIN, LOC_BLOCK,
6829 &objfile->static_psymbols,
6830 0, pdi->lowpc + baseaddr,
6831 cu->language, objfile);
c906108c
SS
6832 }
6833 break;
72929c62
JB
6834 case DW_TAG_constant:
6835 {
6836 struct psymbol_allocation_list *list;
6837
6838 if (pdi->is_external)
6839 list = &objfile->global_psymbols;
6840 else
6841 list = &objfile->static_psymbols;
f47fb265 6842 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6843 built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
f47fb265 6844 list, 0, 0, cu->language, objfile);
72929c62
JB
6845 }
6846 break;
c906108c 6847 case DW_TAG_variable:
95554aad
TT
6848 if (pdi->d.locdesc)
6849 addr = decode_locdesc (pdi->d.locdesc, cu);
caac4577 6850
95554aad 6851 if (pdi->d.locdesc
caac4577
JG
6852 && addr == 0
6853 && !dwarf2_per_objfile->has_section_at_zero)
6854 {
6855 /* A global or static variable may also have been stripped
6856 out by the linker if unused, in which case its address
6857 will be nullified; do not add such variables into partial
6858 symbol table then. */
6859 }
6860 else if (pdi->is_external)
c906108c
SS
6861 {
6862 /* Global Variable.
6863 Don't enter into the minimal symbol tables as there is
6864 a minimal symbol table entry from the ELF symbols already.
6865 Enter into partial symbol table if it has a location
6866 descriptor or a type.
6867 If the location descriptor is missing, new_symbol will create
6868 a LOC_UNRESOLVED symbol, the address of the variable will then
6869 be determined from the minimal symbol table whenever the variable
6870 is referenced.
6871 The address for the partial symbol table entry is not
6872 used by GDB, but it comes in handy for debugging partial symbol
6873 table building. */
6874
95554aad 6875 if (pdi->d.locdesc || pdi->has_type)
f47fb265 6876 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6877 built_actual_name != NULL,
f47fb265
MS
6878 VAR_DOMAIN, LOC_STATIC,
6879 &objfile->global_psymbols,
6880 0, addr + baseaddr,
6881 cu->language, objfile);
c906108c
SS
6882 }
6883 else
6884 {
0963b4bd 6885 /* Static Variable. Skip symbols without location descriptors. */
95554aad 6886 if (pdi->d.locdesc == NULL)
decbce07 6887 {
15d034d0 6888 xfree (built_actual_name);
decbce07
MS
6889 return;
6890 }
f47fb265 6891 /* prim_record_minimal_symbol (actual_name, addr + baseaddr,
c5aa993b 6892 mst_file_data, objfile); */
f47fb265 6893 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6894 built_actual_name != NULL,
f47fb265
MS
6895 VAR_DOMAIN, LOC_STATIC,
6896 &objfile->static_psymbols,
6897 0, addr + baseaddr,
6898 cu->language, objfile);
c906108c
SS
6899 }
6900 break;
6901 case DW_TAG_typedef:
6902 case DW_TAG_base_type:
a02abb62 6903 case DW_TAG_subrange_type:
38d518c9 6904 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6905 built_actual_name != NULL,
176620f1 6906 VAR_DOMAIN, LOC_TYPEDEF,
c906108c 6907 &objfile->static_psymbols,
e142c38c 6908 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c 6909 break;
74921315 6910 case DW_TAG_imported_declaration:
72bf9492
DJ
6911 case DW_TAG_namespace:
6912 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6913 built_actual_name != NULL,
72bf9492
DJ
6914 VAR_DOMAIN, LOC_TYPEDEF,
6915 &objfile->global_psymbols,
6916 0, (CORE_ADDR) 0, cu->language, objfile);
6917 break;
530e8392
KB
6918 case DW_TAG_module:
6919 add_psymbol_to_list (actual_name, strlen (actual_name),
6920 built_actual_name != NULL,
6921 MODULE_DOMAIN, LOC_TYPEDEF,
6922 &objfile->global_psymbols,
6923 0, (CORE_ADDR) 0, cu->language, objfile);
6924 break;
c906108c 6925 case DW_TAG_class_type:
680b30c7 6926 case DW_TAG_interface_type:
c906108c
SS
6927 case DW_TAG_structure_type:
6928 case DW_TAG_union_type:
6929 case DW_TAG_enumeration_type:
fa4028e9
JB
6930 /* Skip external references. The DWARF standard says in the section
6931 about "Structure, Union, and Class Type Entries": "An incomplete
6932 structure, union or class type is represented by a structure,
6933 union or class entry that does not have a byte size attribute
6934 and that has a DW_AT_declaration attribute." */
6935 if (!pdi->has_byte_size && pdi->is_declaration)
decbce07 6936 {
15d034d0 6937 xfree (built_actual_name);
decbce07
MS
6938 return;
6939 }
fa4028e9 6940
63d06c5c
DC
6941 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
6942 static vs. global. */
38d518c9 6943 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6944 built_actual_name != NULL,
176620f1 6945 STRUCT_DOMAIN, LOC_TYPEDEF,
987504bb
JJ
6946 (cu->language == language_cplus
6947 || cu->language == language_java)
63d06c5c
DC
6948 ? &objfile->global_psymbols
6949 : &objfile->static_psymbols,
e142c38c 6950 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c 6951
c906108c
SS
6952 break;
6953 case DW_TAG_enumerator:
38d518c9 6954 add_psymbol_to_list (actual_name, strlen (actual_name),
15d034d0 6955 built_actual_name != NULL,
176620f1 6956 VAR_DOMAIN, LOC_CONST,
987504bb
JJ
6957 (cu->language == language_cplus
6958 || cu->language == language_java)
f6fe98ef
DJ
6959 ? &objfile->global_psymbols
6960 : &objfile->static_psymbols,
e142c38c 6961 0, (CORE_ADDR) 0, cu->language, objfile);
c906108c
SS
6962 break;
6963 default:
6964 break;
6965 }
5c4e30ca 6966
15d034d0 6967 xfree (built_actual_name);
c906108c
SS
6968}
6969
5c4e30ca
DC
6970/* Read a partial die corresponding to a namespace; also, add a symbol
6971 corresponding to that namespace to the symbol table. NAMESPACE is
6972 the name of the enclosing namespace. */
91c24f0a 6973
72bf9492
DJ
6974static void
6975add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 6976 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 6977 int set_addrmap, struct dwarf2_cu *cu)
91c24f0a 6978{
72bf9492 6979 /* Add a symbol for the namespace. */
e7c27a73 6980
72bf9492 6981 add_partial_symbol (pdi, cu);
5c4e30ca
DC
6982
6983 /* Now scan partial symbols in that namespace. */
6984
91c24f0a 6985 if (pdi->has_children)
cdc07690 6986 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
91c24f0a
DC
6987}
6988
5d7cb8df
JK
6989/* Read a partial die corresponding to a Fortran module. */
6990
6991static void
6992add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 6993 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
5d7cb8df 6994{
530e8392
KB
6995 /* Add a symbol for the namespace. */
6996
6997 add_partial_symbol (pdi, cu);
6998
f55ee35c 6999 /* Now scan partial symbols in that module. */
5d7cb8df
JK
7000
7001 if (pdi->has_children)
cdc07690 7002 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
5d7cb8df
JK
7003}
7004
bc30ff58
JB
7005/* Read a partial die corresponding to a subprogram and create a partial
7006 symbol for that subprogram. When the CU language allows it, this
7007 routine also defines a partial symbol for each nested subprogram
cdc07690 7008 that this subprogram contains. If SET_ADDRMAP is true, record the
428fc5fc
YQ
7009 covered ranges in the addrmap. Set *LOWPC and *HIGHPC to the lowest
7010 and highest PC values found in PDI.
6e70227d 7011
cdc07690
YQ
7012 PDI may also be a lexical block, in which case we simply search
7013 recursively for subprograms defined inside that lexical block.
bc30ff58
JB
7014 Again, this is only performed when the CU language allows this
7015 type of definitions. */
7016
7017static void
7018add_partial_subprogram (struct partial_die_info *pdi,
7019 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 7020 int set_addrmap, struct dwarf2_cu *cu)
bc30ff58
JB
7021{
7022 if (pdi->tag == DW_TAG_subprogram)
7023 {
7024 if (pdi->has_pc_info)
7025 {
7026 if (pdi->lowpc < *lowpc)
7027 *lowpc = pdi->lowpc;
7028 if (pdi->highpc > *highpc)
7029 *highpc = pdi->highpc;
cdc07690 7030 if (set_addrmap)
5734ee8b
DJ
7031 {
7032 CORE_ADDR baseaddr;
7033 struct objfile *objfile = cu->objfile;
7034
7035 baseaddr = ANOFFSET (objfile->section_offsets,
7036 SECT_OFF_TEXT (objfile));
7037 addrmap_set_empty (objfile->psymtabs_addrmap,
01637564
DE
7038 pdi->lowpc + baseaddr,
7039 pdi->highpc - 1 + baseaddr,
9291a0cd 7040 cu->per_cu->v.psymtab);
5734ee8b 7041 }
481860b3
GB
7042 }
7043
7044 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
7045 {
bc30ff58 7046 if (!pdi->is_declaration)
e8d05480
JB
7047 /* Ignore subprogram DIEs that do not have a name, they are
7048 illegal. Do not emit a complaint at this point, we will
7049 do so when we convert this psymtab into a symtab. */
7050 if (pdi->name)
7051 add_partial_symbol (pdi, cu);
bc30ff58
JB
7052 }
7053 }
6e70227d 7054
bc30ff58
JB
7055 if (! pdi->has_children)
7056 return;
7057
7058 if (cu->language == language_ada)
7059 {
7060 pdi = pdi->die_child;
7061 while (pdi != NULL)
7062 {
7063 fixup_partial_die (pdi, cu);
7064 if (pdi->tag == DW_TAG_subprogram
7065 || pdi->tag == DW_TAG_lexical_block)
cdc07690 7066 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
bc30ff58
JB
7067 pdi = pdi->die_sibling;
7068 }
7069 }
7070}
7071
91c24f0a
DC
7072/* Read a partial die corresponding to an enumeration type. */
7073
72bf9492
DJ
7074static void
7075add_partial_enumeration (struct partial_die_info *enum_pdi,
7076 struct dwarf2_cu *cu)
91c24f0a 7077{
72bf9492 7078 struct partial_die_info *pdi;
91c24f0a
DC
7079
7080 if (enum_pdi->name != NULL)
72bf9492
DJ
7081 add_partial_symbol (enum_pdi, cu);
7082
7083 pdi = enum_pdi->die_child;
7084 while (pdi)
91c24f0a 7085 {
72bf9492 7086 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
e2e0b3e5 7087 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
91c24f0a 7088 else
72bf9492
DJ
7089 add_partial_symbol (pdi, cu);
7090 pdi = pdi->die_sibling;
91c24f0a 7091 }
91c24f0a
DC
7092}
7093
6caca83c
CC
7094/* Return the initial uleb128 in the die at INFO_PTR. */
7095
7096static unsigned int
d521ce57 7097peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6caca83c
CC
7098{
7099 unsigned int bytes_read;
7100
7101 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7102}
7103
4bb7a0a7
DJ
7104/* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU.
7105 Return the corresponding abbrev, or NULL if the number is zero (indicating
7106 an empty DIE). In either case *BYTES_READ will be set to the length of
7107 the initial number. */
7108
7109static struct abbrev_info *
d521ce57 7110peek_die_abbrev (const gdb_byte *info_ptr, unsigned int *bytes_read,
891d2f0b 7111 struct dwarf2_cu *cu)
4bb7a0a7
DJ
7112{
7113 bfd *abfd = cu->objfile->obfd;
7114 unsigned int abbrev_number;
7115 struct abbrev_info *abbrev;
7116
7117 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
7118
7119 if (abbrev_number == 0)
7120 return NULL;
7121
433df2d4 7122 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
4bb7a0a7
DJ
7123 if (!abbrev)
7124 {
3e43a32a
MS
7125 error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"),
7126 abbrev_number, bfd_get_filename (abfd));
4bb7a0a7
DJ
7127 }
7128
7129 return abbrev;
7130}
7131
93311388
DE
7132/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
7133 Returns a pointer to the end of a series of DIEs, terminated by an empty
4bb7a0a7
DJ
7134 DIE. Any children of the skipped DIEs will also be skipped. */
7135
d521ce57
TT
7136static const gdb_byte *
7137skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
4bb7a0a7 7138{
dee91e82 7139 struct dwarf2_cu *cu = reader->cu;
4bb7a0a7
DJ
7140 struct abbrev_info *abbrev;
7141 unsigned int bytes_read;
7142
7143 while (1)
7144 {
7145 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
7146 if (abbrev == NULL)
7147 return info_ptr + bytes_read;
7148 else
dee91e82 7149 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
4bb7a0a7
DJ
7150 }
7151}
7152
93311388
DE
7153/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
7154 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4bb7a0a7
DJ
7155 abbrev corresponding to that skipped uleb128 should be passed in
7156 ABBREV. Returns a pointer to this DIE's sibling, skipping any
7157 children. */
7158
d521ce57
TT
7159static const gdb_byte *
7160skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
dee91e82 7161 struct abbrev_info *abbrev)
4bb7a0a7
DJ
7162{
7163 unsigned int bytes_read;
7164 struct attribute attr;
dee91e82
DE
7165 bfd *abfd = reader->abfd;
7166 struct dwarf2_cu *cu = reader->cu;
d521ce57 7167 const gdb_byte *buffer = reader->buffer;
f664829e 7168 const gdb_byte *buffer_end = reader->buffer_end;
d521ce57 7169 const gdb_byte *start_info_ptr = info_ptr;
4bb7a0a7
DJ
7170 unsigned int form, i;
7171
7172 for (i = 0; i < abbrev->num_attrs; i++)
7173 {
7174 /* The only abbrev we care about is DW_AT_sibling. */
7175 if (abbrev->attrs[i].name == DW_AT_sibling)
7176 {
dee91e82 7177 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
4bb7a0a7 7178 if (attr.form == DW_FORM_ref_addr)
3e43a32a
MS
7179 complaint (&symfile_complaints,
7180 _("ignoring absolute DW_AT_sibling"));
4bb7a0a7 7181 else
b9502d3f
WN
7182 {
7183 unsigned int off = dwarf2_get_ref_die_offset (&attr).sect_off;
7184 const gdb_byte *sibling_ptr = buffer + off;
7185
7186 if (sibling_ptr < info_ptr)
7187 complaint (&symfile_complaints,
7188 _("DW_AT_sibling points backwards"));
22869d73
KS
7189 else if (sibling_ptr > reader->buffer_end)
7190 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f
WN
7191 else
7192 return sibling_ptr;
7193 }
4bb7a0a7
DJ
7194 }
7195
7196 /* If it isn't DW_AT_sibling, skip this attribute. */
7197 form = abbrev->attrs[i].form;
7198 skip_attribute:
7199 switch (form)
7200 {
4bb7a0a7 7201 case DW_FORM_ref_addr:
ae411497
TT
7202 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
7203 and later it is offset sized. */
7204 if (cu->header.version == 2)
7205 info_ptr += cu->header.addr_size;
7206 else
7207 info_ptr += cu->header.offset_size;
7208 break;
36586728
TT
7209 case DW_FORM_GNU_ref_alt:
7210 info_ptr += cu->header.offset_size;
7211 break;
ae411497 7212 case DW_FORM_addr:
4bb7a0a7
DJ
7213 info_ptr += cu->header.addr_size;
7214 break;
7215 case DW_FORM_data1:
7216 case DW_FORM_ref1:
7217 case DW_FORM_flag:
7218 info_ptr += 1;
7219 break;
2dc7f7b3
TT
7220 case DW_FORM_flag_present:
7221 break;
4bb7a0a7
DJ
7222 case DW_FORM_data2:
7223 case DW_FORM_ref2:
7224 info_ptr += 2;
7225 break;
7226 case DW_FORM_data4:
7227 case DW_FORM_ref4:
7228 info_ptr += 4;
7229 break;
7230 case DW_FORM_data8:
7231 case DW_FORM_ref8:
55f1336d 7232 case DW_FORM_ref_sig8:
4bb7a0a7
DJ
7233 info_ptr += 8;
7234 break;
7235 case DW_FORM_string:
9b1c24c8 7236 read_direct_string (abfd, info_ptr, &bytes_read);
4bb7a0a7
DJ
7237 info_ptr += bytes_read;
7238 break;
2dc7f7b3 7239 case DW_FORM_sec_offset:
4bb7a0a7 7240 case DW_FORM_strp:
36586728 7241 case DW_FORM_GNU_strp_alt:
4bb7a0a7
DJ
7242 info_ptr += cu->header.offset_size;
7243 break;
2dc7f7b3 7244 case DW_FORM_exprloc:
4bb7a0a7
DJ
7245 case DW_FORM_block:
7246 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7247 info_ptr += bytes_read;
7248 break;
7249 case DW_FORM_block1:
7250 info_ptr += 1 + read_1_byte (abfd, info_ptr);
7251 break;
7252 case DW_FORM_block2:
7253 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
7254 break;
7255 case DW_FORM_block4:
7256 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
7257 break;
7258 case DW_FORM_sdata:
7259 case DW_FORM_udata:
7260 case DW_FORM_ref_udata:
3019eac3
DE
7261 case DW_FORM_GNU_addr_index:
7262 case DW_FORM_GNU_str_index:
d521ce57 7263 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
4bb7a0a7
DJ
7264 break;
7265 case DW_FORM_indirect:
7266 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
7267 info_ptr += bytes_read;
7268 /* We need to continue parsing from here, so just go back to
7269 the top. */
7270 goto skip_attribute;
7271
7272 default:
3e43a32a
MS
7273 error (_("Dwarf Error: Cannot handle %s "
7274 "in DWARF reader [in module %s]"),
4bb7a0a7
DJ
7275 dwarf_form_name (form),
7276 bfd_get_filename (abfd));
7277 }
7278 }
7279
7280 if (abbrev->has_children)
dee91e82 7281 return skip_children (reader, info_ptr);
4bb7a0a7
DJ
7282 else
7283 return info_ptr;
7284}
7285
93311388 7286/* Locate ORIG_PDI's sibling.
dee91e82 7287 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
91c24f0a 7288
d521ce57 7289static const gdb_byte *
dee91e82
DE
7290locate_pdi_sibling (const struct die_reader_specs *reader,
7291 struct partial_die_info *orig_pdi,
d521ce57 7292 const gdb_byte *info_ptr)
91c24f0a
DC
7293{
7294 /* Do we know the sibling already? */
72bf9492 7295
91c24f0a
DC
7296 if (orig_pdi->sibling)
7297 return orig_pdi->sibling;
7298
7299 /* Are there any children to deal with? */
7300
7301 if (!orig_pdi->has_children)
7302 return info_ptr;
7303
4bb7a0a7 7304 /* Skip the children the long way. */
91c24f0a 7305
dee91e82 7306 return skip_children (reader, info_ptr);
91c24f0a
DC
7307}
7308
257e7a09 7309/* Expand this partial symbol table into a full symbol table. SELF is
442e4d9c 7310 not NULL. */
c906108c
SS
7311
7312static void
257e7a09
YQ
7313dwarf2_read_symtab (struct partial_symtab *self,
7314 struct objfile *objfile)
c906108c 7315{
257e7a09 7316 if (self->readin)
c906108c 7317 {
442e4d9c 7318 warning (_("bug: psymtab for %s is already read in."),
257e7a09 7319 self->filename);
442e4d9c
YQ
7320 }
7321 else
7322 {
7323 if (info_verbose)
c906108c 7324 {
442e4d9c 7325 printf_filtered (_("Reading in symbols for %s..."),
257e7a09 7326 self->filename);
442e4d9c 7327 gdb_flush (gdb_stdout);
c906108c 7328 }
c906108c 7329
442e4d9c
YQ
7330 /* Restore our global data. */
7331 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
10b3939b 7332
442e4d9c
YQ
7333 /* If this psymtab is constructed from a debug-only objfile, the
7334 has_section_at_zero flag will not necessarily be correct. We
7335 can get the correct value for this flag by looking at the data
7336 associated with the (presumably stripped) associated objfile. */
7337 if (objfile->separate_debug_objfile_backlink)
7338 {
7339 struct dwarf2_per_objfile *dpo_backlink
7340 = objfile_data (objfile->separate_debug_objfile_backlink,
7341 dwarf2_objfile_data_key);
9a619af0 7342
442e4d9c
YQ
7343 dwarf2_per_objfile->has_section_at_zero
7344 = dpo_backlink->has_section_at_zero;
7345 }
b2ab525c 7346
442e4d9c 7347 dwarf2_per_objfile->reading_partial_symbols = 0;
98bfdba5 7348
257e7a09 7349 psymtab_to_symtab_1 (self);
c906108c 7350
442e4d9c
YQ
7351 /* Finish up the debug error message. */
7352 if (info_verbose)
7353 printf_filtered (_("done.\n"));
c906108c 7354 }
95554aad
TT
7355
7356 process_cu_includes ();
c906108c 7357}
9cdd5dbd
DE
7358\f
7359/* Reading in full CUs. */
c906108c 7360
10b3939b
DJ
7361/* Add PER_CU to the queue. */
7362
7363static void
95554aad
TT
7364queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
7365 enum language pretend_language)
10b3939b
DJ
7366{
7367 struct dwarf2_queue_item *item;
7368
7369 per_cu->queued = 1;
7370 item = xmalloc (sizeof (*item));
7371 item->per_cu = per_cu;
95554aad 7372 item->pretend_language = pretend_language;
10b3939b
DJ
7373 item->next = NULL;
7374
7375 if (dwarf2_queue == NULL)
7376 dwarf2_queue = item;
7377 else
7378 dwarf2_queue_tail->next = item;
7379
7380 dwarf2_queue_tail = item;
7381}
7382
89e63ee4
DE
7383/* If PER_CU is not yet queued, add it to the queue.
7384 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
7385 dependency.
0907af0c 7386 The result is non-zero if PER_CU was queued, otherwise the result is zero
69d751e3
DE
7387 meaning either PER_CU is already queued or it is already loaded.
7388
7389 N.B. There is an invariant here that if a CU is queued then it is loaded.
7390 The caller is required to load PER_CU if we return non-zero. */
0907af0c
DE
7391
7392static int
89e63ee4 7393maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
0907af0c
DE
7394 struct dwarf2_per_cu_data *per_cu,
7395 enum language pretend_language)
7396{
7397 /* We may arrive here during partial symbol reading, if we need full
7398 DIEs to process an unusual case (e.g. template arguments). Do
7399 not queue PER_CU, just tell our caller to load its DIEs. */
7400 if (dwarf2_per_objfile->reading_partial_symbols)
7401 {
7402 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
7403 return 1;
7404 return 0;
7405 }
7406
7407 /* Mark the dependence relation so that we don't flush PER_CU
7408 too early. */
89e63ee4
DE
7409 if (dependent_cu != NULL)
7410 dwarf2_add_dependence (dependent_cu, per_cu);
0907af0c
DE
7411
7412 /* If it's already on the queue, we have nothing to do. */
7413 if (per_cu->queued)
7414 return 0;
7415
7416 /* If the compilation unit is already loaded, just mark it as
7417 used. */
7418 if (per_cu->cu != NULL)
7419 {
7420 per_cu->cu->last_used = 0;
7421 return 0;
7422 }
7423
7424 /* Add it to the queue. */
7425 queue_comp_unit (per_cu, pretend_language);
7426
7427 return 1;
7428}
7429
10b3939b
DJ
7430/* Process the queue. */
7431
7432static void
a0f42c21 7433process_queue (void)
10b3939b
DJ
7434{
7435 struct dwarf2_queue_item *item, *next_item;
7436
45cfd468
DE
7437 if (dwarf2_read_debug)
7438 {
7439 fprintf_unfiltered (gdb_stdlog,
7440 "Expanding one or more symtabs of objfile %s ...\n",
4262abfb 7441 objfile_name (dwarf2_per_objfile->objfile));
45cfd468
DE
7442 }
7443
03dd20cc
DJ
7444 /* The queue starts out with one item, but following a DIE reference
7445 may load a new CU, adding it to the end of the queue. */
10b3939b
DJ
7446 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
7447 {
9291a0cd
TT
7448 if (dwarf2_per_objfile->using_index
7449 ? !item->per_cu->v.quick->symtab
7450 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
f4dc4d17
DE
7451 {
7452 struct dwarf2_per_cu_data *per_cu = item->per_cu;
73be47f5 7453 unsigned int debug_print_threshold;
247f5c4f 7454 char buf[100];
f4dc4d17 7455
247f5c4f 7456 if (per_cu->is_debug_types)
f4dc4d17 7457 {
247f5c4f
DE
7458 struct signatured_type *sig_type =
7459 (struct signatured_type *) per_cu;
7460
7461 sprintf (buf, "TU %s at offset 0x%x",
73be47f5
DE
7462 hex_string (sig_type->signature),
7463 per_cu->offset.sect_off);
7464 /* There can be 100s of TUs.
7465 Only print them in verbose mode. */
7466 debug_print_threshold = 2;
f4dc4d17 7467 }
247f5c4f 7468 else
73be47f5
DE
7469 {
7470 sprintf (buf, "CU at offset 0x%x", per_cu->offset.sect_off);
7471 debug_print_threshold = 1;
7472 }
247f5c4f 7473
73be47f5 7474 if (dwarf2_read_debug >= debug_print_threshold)
247f5c4f 7475 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
f4dc4d17
DE
7476
7477 if (per_cu->is_debug_types)
7478 process_full_type_unit (per_cu, item->pretend_language);
7479 else
7480 process_full_comp_unit (per_cu, item->pretend_language);
7481
73be47f5 7482 if (dwarf2_read_debug >= debug_print_threshold)
247f5c4f 7483 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
f4dc4d17 7484 }
10b3939b
DJ
7485
7486 item->per_cu->queued = 0;
7487 next_item = item->next;
7488 xfree (item);
7489 }
7490
7491 dwarf2_queue_tail = NULL;
45cfd468
DE
7492
7493 if (dwarf2_read_debug)
7494 {
7495 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
4262abfb 7496 objfile_name (dwarf2_per_objfile->objfile));
45cfd468 7497 }
10b3939b
DJ
7498}
7499
7500/* Free all allocated queue entries. This function only releases anything if
7501 an error was thrown; if the queue was processed then it would have been
7502 freed as we went along. */
7503
7504static void
7505dwarf2_release_queue (void *dummy)
7506{
7507 struct dwarf2_queue_item *item, *last;
7508
7509 item = dwarf2_queue;
7510 while (item)
7511 {
7512 /* Anything still marked queued is likely to be in an
7513 inconsistent state, so discard it. */
7514 if (item->per_cu->queued)
7515 {
7516 if (item->per_cu->cu != NULL)
dee91e82 7517 free_one_cached_comp_unit (item->per_cu);
10b3939b
DJ
7518 item->per_cu->queued = 0;
7519 }
7520
7521 last = item;
7522 item = item->next;
7523 xfree (last);
7524 }
7525
7526 dwarf2_queue = dwarf2_queue_tail = NULL;
7527}
7528
7529/* Read in full symbols for PST, and anything it depends on. */
7530
c906108c 7531static void
fba45db2 7532psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c 7533{
10b3939b 7534 struct dwarf2_per_cu_data *per_cu;
aaa75496
JB
7535 int i;
7536
95554aad
TT
7537 if (pst->readin)
7538 return;
7539
aaa75496 7540 for (i = 0; i < pst->number_of_dependencies; i++)
95554aad
TT
7541 if (!pst->dependencies[i]->readin
7542 && pst->dependencies[i]->user == NULL)
aaa75496
JB
7543 {
7544 /* Inform about additional files that need to be read in. */
7545 if (info_verbose)
7546 {
a3f17187 7547 /* FIXME: i18n: Need to make this a single string. */
aaa75496
JB
7548 fputs_filtered (" ", gdb_stdout);
7549 wrap_here ("");
7550 fputs_filtered ("and ", gdb_stdout);
7551 wrap_here ("");
7552 printf_filtered ("%s...", pst->dependencies[i]->filename);
0963b4bd 7553 wrap_here (""); /* Flush output. */
aaa75496
JB
7554 gdb_flush (gdb_stdout);
7555 }
7556 psymtab_to_symtab_1 (pst->dependencies[i]);
7557 }
7558
e38df1d0 7559 per_cu = pst->read_symtab_private;
10b3939b
DJ
7560
7561 if (per_cu == NULL)
aaa75496
JB
7562 {
7563 /* It's an include file, no symbols to read for it.
7564 Everything is in the parent symtab. */
7565 pst->readin = 1;
7566 return;
7567 }
c906108c 7568
a0f42c21 7569 dw2_do_instantiate_symtab (per_cu);
10b3939b
DJ
7570}
7571
dee91e82
DE
7572/* Trivial hash function for die_info: the hash value of a DIE
7573 is its offset in .debug_info for this objfile. */
10b3939b 7574
dee91e82
DE
7575static hashval_t
7576die_hash (const void *item)
10b3939b 7577{
dee91e82 7578 const struct die_info *die = item;
6502dd73 7579
dee91e82
DE
7580 return die->offset.sect_off;
7581}
63d06c5c 7582
dee91e82
DE
7583/* Trivial comparison function for die_info structures: two DIEs
7584 are equal if they have the same offset. */
98bfdba5 7585
dee91e82
DE
7586static int
7587die_eq (const void *item_lhs, const void *item_rhs)
7588{
7589 const struct die_info *die_lhs = item_lhs;
7590 const struct die_info *die_rhs = item_rhs;
c906108c 7591
dee91e82
DE
7592 return die_lhs->offset.sect_off == die_rhs->offset.sect_off;
7593}
c906108c 7594
dee91e82
DE
7595/* die_reader_func for load_full_comp_unit.
7596 This is identical to read_signatured_type_reader,
7597 but is kept separate for now. */
c906108c 7598
dee91e82
DE
7599static void
7600load_full_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 7601 const gdb_byte *info_ptr,
dee91e82
DE
7602 struct die_info *comp_unit_die,
7603 int has_children,
7604 void *data)
7605{
7606 struct dwarf2_cu *cu = reader->cu;
95554aad 7607 enum language *language_ptr = data;
6caca83c 7608
dee91e82
DE
7609 gdb_assert (cu->die_hash == NULL);
7610 cu->die_hash =
7611 htab_create_alloc_ex (cu->header.length / 12,
7612 die_hash,
7613 die_eq,
7614 NULL,
7615 &cu->comp_unit_obstack,
7616 hashtab_obstack_allocate,
7617 dummy_obstack_deallocate);
e142c38c 7618
dee91e82
DE
7619 if (has_children)
7620 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
7621 &info_ptr, comp_unit_die);
7622 cu->dies = comp_unit_die;
7623 /* comp_unit_die is not stored in die_hash, no need. */
10b3939b
DJ
7624
7625 /* We try not to read any attributes in this function, because not
9cdd5dbd 7626 all CUs needed for references have been loaded yet, and symbol
10b3939b 7627 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
7628 or we won't be able to build types correctly.
7629 Similarly, if we do not read the producer, we can not apply
7630 producer-specific interpretation. */
95554aad 7631 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
dee91e82 7632}
10b3939b 7633
dee91e82 7634/* Load the DIEs associated with PER_CU into memory. */
a6c727b2 7635
dee91e82 7636static void
95554aad
TT
7637load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
7638 enum language pretend_language)
dee91e82 7639{
3019eac3 7640 gdb_assert (! this_cu->is_debug_types);
c5b7e1cb 7641
f4dc4d17
DE
7642 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
7643 load_full_comp_unit_reader, &pretend_language);
10b3939b
DJ
7644}
7645
3da10d80
KS
7646/* Add a DIE to the delayed physname list. */
7647
7648static void
7649add_to_method_list (struct type *type, int fnfield_index, int index,
7650 const char *name, struct die_info *die,
7651 struct dwarf2_cu *cu)
7652{
7653 struct delayed_method_info mi;
7654 mi.type = type;
7655 mi.fnfield_index = fnfield_index;
7656 mi.index = index;
7657 mi.name = name;
7658 mi.die = die;
7659 VEC_safe_push (delayed_method_info, cu->method_list, &mi);
7660}
7661
7662/* A cleanup for freeing the delayed method list. */
7663
7664static void
7665free_delayed_list (void *ptr)
7666{
7667 struct dwarf2_cu *cu = (struct dwarf2_cu *) ptr;
7668 if (cu->method_list != NULL)
7669 {
7670 VEC_free (delayed_method_info, cu->method_list);
7671 cu->method_list = NULL;
7672 }
7673}
7674
7675/* Compute the physnames of any methods on the CU's method list.
7676
7677 The computation of method physnames is delayed in order to avoid the
7678 (bad) condition that one of the method's formal parameters is of an as yet
7679 incomplete type. */
7680
7681static void
7682compute_delayed_physnames (struct dwarf2_cu *cu)
7683{
7684 int i;
7685 struct delayed_method_info *mi;
7686 for (i = 0; VEC_iterate (delayed_method_info, cu->method_list, i, mi) ; ++i)
7687 {
1d06ead6 7688 const char *physname;
3da10d80
KS
7689 struct fn_fieldlist *fn_flp
7690 = &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
7d455152 7691 physname = dwarf2_physname (mi->name, mi->die, cu);
3da10d80
KS
7692 fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
7693 }
7694}
7695
a766d390
DE
7696/* Go objects should be embedded in a DW_TAG_module DIE,
7697 and it's not clear if/how imported objects will appear.
7698 To keep Go support simple until that's worked out,
7699 go back through what we've read and create something usable.
7700 We could do this while processing each DIE, and feels kinda cleaner,
7701 but that way is more invasive.
7702 This is to, for example, allow the user to type "p var" or "b main"
7703 without having to specify the package name, and allow lookups
7704 of module.object to work in contexts that use the expression
7705 parser. */
7706
7707static void
7708fixup_go_packaging (struct dwarf2_cu *cu)
7709{
7710 char *package_name = NULL;
7711 struct pending *list;
7712 int i;
7713
7714 for (list = global_symbols; list != NULL; list = list->next)
7715 {
7716 for (i = 0; i < list->nsyms; ++i)
7717 {
7718 struct symbol *sym = list->symbol[i];
7719
7720 if (SYMBOL_LANGUAGE (sym) == language_go
7721 && SYMBOL_CLASS (sym) == LOC_BLOCK)
7722 {
7723 char *this_package_name = go_symbol_package_name (sym);
7724
7725 if (this_package_name == NULL)
7726 continue;
7727 if (package_name == NULL)
7728 package_name = this_package_name;
7729 else
7730 {
7731 if (strcmp (package_name, this_package_name) != 0)
7732 complaint (&symfile_complaints,
7733 _("Symtab %s has objects from two different Go packages: %s and %s"),
210bbc17 7734 (SYMBOL_SYMTAB (sym)
05cba821 7735 ? symtab_to_filename_for_display (SYMBOL_SYMTAB (sym))
4262abfb 7736 : objfile_name (cu->objfile)),
a766d390
DE
7737 this_package_name, package_name);
7738 xfree (this_package_name);
7739 }
7740 }
7741 }
7742 }
7743
7744 if (package_name != NULL)
7745 {
7746 struct objfile *objfile = cu->objfile;
34a68019
TT
7747 const char *saved_package_name
7748 = obstack_copy0 (&objfile->per_bfd->storage_obstack,
7749 package_name,
7750 strlen (package_name));
a766d390 7751 struct type *type = init_type (TYPE_CODE_MODULE, 0, 0,
86f62fd7 7752 saved_package_name, objfile);
a766d390
DE
7753 struct symbol *sym;
7754
7755 TYPE_TAG_NAME (type) = TYPE_NAME (type);
7756
e623cf5d 7757 sym = allocate_symbol (objfile);
f85f34ed 7758 SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
86f62fd7
TT
7759 SYMBOL_SET_NAMES (sym, saved_package_name,
7760 strlen (saved_package_name), 0, objfile);
a766d390
DE
7761 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
7762 e.g., "main" finds the "main" module and not C's main(). */
7763 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
f1e6e072 7764 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
a766d390
DE
7765 SYMBOL_TYPE (sym) = type;
7766
7767 add_symbol_to_list (sym, &global_symbols);
7768
7769 xfree (package_name);
7770 }
7771}
7772
95554aad
TT
7773/* Return the symtab for PER_CU. This works properly regardless of
7774 whether we're using the index or psymtabs. */
7775
7776static struct symtab *
7777get_symtab (struct dwarf2_per_cu_data *per_cu)
7778{
7779 return (dwarf2_per_objfile->using_index
7780 ? per_cu->v.quick->symtab
7781 : per_cu->v.psymtab->symtab);
7782}
7783
7784/* A helper function for computing the list of all symbol tables
7785 included by PER_CU. */
7786
7787static void
ec94af83
DE
7788recursively_compute_inclusions (VEC (symtab_ptr) **result,
7789 htab_t all_children, htab_t all_type_symtabs,
f9125b6c
TT
7790 struct dwarf2_per_cu_data *per_cu,
7791 struct symtab *immediate_parent)
95554aad
TT
7792{
7793 void **slot;
7794 int ix;
ec94af83 7795 struct symtab *symtab;
95554aad
TT
7796 struct dwarf2_per_cu_data *iter;
7797
7798 slot = htab_find_slot (all_children, per_cu, INSERT);
7799 if (*slot != NULL)
7800 {
7801 /* This inclusion and its children have been processed. */
7802 return;
7803 }
7804
7805 *slot = per_cu;
7806 /* Only add a CU if it has a symbol table. */
ec94af83
DE
7807 symtab = get_symtab (per_cu);
7808 if (symtab != NULL)
7809 {
7810 /* If this is a type unit only add its symbol table if we haven't
7811 seen it yet (type unit per_cu's can share symtabs). */
7812 if (per_cu->is_debug_types)
7813 {
7814 slot = htab_find_slot (all_type_symtabs, symtab, INSERT);
7815 if (*slot == NULL)
7816 {
7817 *slot = symtab;
7818 VEC_safe_push (symtab_ptr, *result, symtab);
f9125b6c
TT
7819 if (symtab->user == NULL)
7820 symtab->user = immediate_parent;
ec94af83
DE
7821 }
7822 }
7823 else
f9125b6c
TT
7824 {
7825 VEC_safe_push (symtab_ptr, *result, symtab);
7826 if (symtab->user == NULL)
7827 symtab->user = immediate_parent;
7828 }
ec94af83 7829 }
95554aad
TT
7830
7831 for (ix = 0;
796a7ff8 7832 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
95554aad 7833 ++ix)
ec94af83
DE
7834 {
7835 recursively_compute_inclusions (result, all_children,
f9125b6c 7836 all_type_symtabs, iter, symtab);
ec94af83 7837 }
95554aad
TT
7838}
7839
7840/* Compute the symtab 'includes' fields for the symtab related to
7841 PER_CU. */
7842
7843static void
7844compute_symtab_includes (struct dwarf2_per_cu_data *per_cu)
7845{
f4dc4d17
DE
7846 gdb_assert (! per_cu->is_debug_types);
7847
796a7ff8 7848 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
95554aad
TT
7849 {
7850 int ix, len;
ec94af83
DE
7851 struct dwarf2_per_cu_data *per_cu_iter;
7852 struct symtab *symtab_iter;
7853 VEC (symtab_ptr) *result_symtabs = NULL;
7854 htab_t all_children, all_type_symtabs;
95554aad
TT
7855 struct symtab *symtab = get_symtab (per_cu);
7856
7857 /* If we don't have a symtab, we can just skip this case. */
7858 if (symtab == NULL)
7859 return;
7860
7861 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
7862 NULL, xcalloc, xfree);
ec94af83
DE
7863 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
7864 NULL, xcalloc, xfree);
95554aad
TT
7865
7866 for (ix = 0;
796a7ff8 7867 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
ec94af83 7868 ix, per_cu_iter);
95554aad 7869 ++ix)
ec94af83
DE
7870 {
7871 recursively_compute_inclusions (&result_symtabs, all_children,
f9125b6c
TT
7872 all_type_symtabs, per_cu_iter,
7873 symtab);
ec94af83 7874 }
95554aad 7875
ec94af83
DE
7876 /* Now we have a transitive closure of all the included symtabs. */
7877 len = VEC_length (symtab_ptr, result_symtabs);
95554aad
TT
7878 symtab->includes
7879 = obstack_alloc (&dwarf2_per_objfile->objfile->objfile_obstack,
7880 (len + 1) * sizeof (struct symtab *));
7881 for (ix = 0;
ec94af83 7882 VEC_iterate (symtab_ptr, result_symtabs, ix, symtab_iter);
95554aad 7883 ++ix)
ec94af83 7884 symtab->includes[ix] = symtab_iter;
95554aad
TT
7885 symtab->includes[len] = NULL;
7886
ec94af83 7887 VEC_free (symtab_ptr, result_symtabs);
95554aad 7888 htab_delete (all_children);
ec94af83 7889 htab_delete (all_type_symtabs);
95554aad
TT
7890 }
7891}
7892
7893/* Compute the 'includes' field for the symtabs of all the CUs we just
7894 read. */
7895
7896static void
7897process_cu_includes (void)
7898{
7899 int ix;
7900 struct dwarf2_per_cu_data *iter;
7901
7902 for (ix = 0;
7903 VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
7904 ix, iter);
7905 ++ix)
f4dc4d17
DE
7906 {
7907 if (! iter->is_debug_types)
7908 compute_symtab_includes (iter);
7909 }
95554aad
TT
7910
7911 VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
7912}
7913
9cdd5dbd 7914/* Generate full symbol information for PER_CU, whose DIEs have
10b3939b
DJ
7915 already been loaded into memory. */
7916
7917static void
95554aad
TT
7918process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
7919 enum language pretend_language)
10b3939b 7920{
10b3939b 7921 struct dwarf2_cu *cu = per_cu->cu;
9291a0cd 7922 struct objfile *objfile = per_cu->objfile;
10b3939b
DJ
7923 CORE_ADDR lowpc, highpc;
7924 struct symtab *symtab;
3da10d80 7925 struct cleanup *back_to, *delayed_list_cleanup;
10b3939b 7926 CORE_ADDR baseaddr;
4359dff1 7927 struct block *static_block;
10b3939b
DJ
7928
7929 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
7930
10b3939b
DJ
7931 buildsym_init ();
7932 back_to = make_cleanup (really_free_pendings, NULL);
3da10d80 7933 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
10b3939b
DJ
7934
7935 cu->list_in_scope = &file_symbols;
c906108c 7936
95554aad
TT
7937 cu->language = pretend_language;
7938 cu->language_defn = language_def (cu->language);
7939
c906108c 7940 /* Do line number decoding in read_file_scope () */
10b3939b 7941 process_die (cu->dies, cu);
c906108c 7942
a766d390
DE
7943 /* For now fudge the Go package. */
7944 if (cu->language == language_go)
7945 fixup_go_packaging (cu);
7946
3da10d80
KS
7947 /* Now that we have processed all the DIEs in the CU, all the types
7948 should be complete, and it should now be safe to compute all of the
7949 physnames. */
7950 compute_delayed_physnames (cu);
7951 do_cleanups (delayed_list_cleanup);
7952
fae299cd
DC
7953 /* Some compilers don't define a DW_AT_high_pc attribute for the
7954 compilation unit. If the DW_AT_high_pc is missing, synthesize
7955 it, by scanning the DIE's below the compilation unit. */
10b3939b 7956 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 7957
36586728 7958 static_block
ff546935 7959 = end_symtab_get_static_block (highpc + baseaddr, objfile, 0, 1);
4359dff1
JK
7960
7961 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
7962 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
7963 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
7964 addrmap to help ensure it has an accurate map of pc values belonging to
7965 this comp unit. */
7966 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
7967
7968 symtab = end_symtab_from_static_block (static_block, objfile,
7969 SECT_OFF_TEXT (objfile), 0);
c906108c 7970
8be455d7 7971 if (symtab != NULL)
c906108c 7972 {
df15bd07 7973 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
4632c0d0 7974
8be455d7
JK
7975 /* Set symtab language to language from DW_AT_language. If the
7976 compilation is from a C file generated by language preprocessors, do
7977 not set the language if it was already deduced by start_subfile. */
7978 if (!(cu->language == language_c && symtab->language != language_c))
7979 symtab->language = cu->language;
7980
7981 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
7982 produce DW_AT_location with location lists but it can be possibly
ab260dad
JK
7983 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
7984 there were bugs in prologue debug info, fixed later in GCC-4.5
7985 by "unwind info for epilogues" patch (which is not directly related).
8be455d7
JK
7986
7987 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
7988 needed, it would be wrong due to missing DW_AT_producer there.
7989
7990 Still one can confuse GDB by using non-standard GCC compilation
7991 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
7992 */
ab260dad 7993 if (cu->has_loclist && gcc_4_minor >= 5)
8be455d7 7994 symtab->locations_valid = 1;
e0d00bc7
JK
7995
7996 if (gcc_4_minor >= 5)
7997 symtab->epilogue_unwind_valid = 1;
96408a79
SA
7998
7999 symtab->call_site_htab = cu->call_site_htab;
c906108c 8000 }
9291a0cd
TT
8001
8002 if (dwarf2_per_objfile->using_index)
8003 per_cu->v.quick->symtab = symtab;
8004 else
8005 {
8006 struct partial_symtab *pst = per_cu->v.psymtab;
8007 pst->symtab = symtab;
8008 pst->readin = 1;
8009 }
c906108c 8010
95554aad
TT
8011 /* Push it for inclusion processing later. */
8012 VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
8013
c906108c 8014 do_cleanups (back_to);
f4dc4d17 8015}
45cfd468 8016
f4dc4d17
DE
8017/* Generate full symbol information for type unit PER_CU, whose DIEs have
8018 already been loaded into memory. */
8019
8020static void
8021process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
8022 enum language pretend_language)
8023{
8024 struct dwarf2_cu *cu = per_cu->cu;
8025 struct objfile *objfile = per_cu->objfile;
8026 struct symtab *symtab;
8027 struct cleanup *back_to, *delayed_list_cleanup;
0186c6a7
DE
8028 struct signatured_type *sig_type;
8029
8030 gdb_assert (per_cu->is_debug_types);
8031 sig_type = (struct signatured_type *) per_cu;
f4dc4d17
DE
8032
8033 buildsym_init ();
8034 back_to = make_cleanup (really_free_pendings, NULL);
8035 delayed_list_cleanup = make_cleanup (free_delayed_list, cu);
8036
8037 cu->list_in_scope = &file_symbols;
8038
8039 cu->language = pretend_language;
8040 cu->language_defn = language_def (cu->language);
8041
8042 /* The symbol tables are set up in read_type_unit_scope. */
8043 process_die (cu->dies, cu);
8044
8045 /* For now fudge the Go package. */
8046 if (cu->language == language_go)
8047 fixup_go_packaging (cu);
8048
8049 /* Now that we have processed all the DIEs in the CU, all the types
8050 should be complete, and it should now be safe to compute all of the
8051 physnames. */
8052 compute_delayed_physnames (cu);
8053 do_cleanups (delayed_list_cleanup);
8054
8055 /* TUs share symbol tables.
8056 If this is the first TU to use this symtab, complete the construction
094b34ac
DE
8057 of it with end_expandable_symtab. Otherwise, complete the addition of
8058 this TU's symbols to the existing symtab. */
0186c6a7 8059 if (sig_type->type_unit_group->primary_symtab == NULL)
45cfd468 8060 {
f4dc4d17 8061 symtab = end_expandable_symtab (0, objfile, SECT_OFF_TEXT (objfile));
0186c6a7 8062 sig_type->type_unit_group->primary_symtab = symtab;
f4dc4d17
DE
8063
8064 if (symtab != NULL)
8065 {
8066 /* Set symtab language to language from DW_AT_language. If the
8067 compilation is from a C file generated by language preprocessors,
8068 do not set the language if it was already deduced by
8069 start_subfile. */
8070 if (!(cu->language == language_c && symtab->language != language_c))
8071 symtab->language = cu->language;
8072 }
8073 }
8074 else
8075 {
8076 augment_type_symtab (objfile,
0186c6a7
DE
8077 sig_type->type_unit_group->primary_symtab);
8078 symtab = sig_type->type_unit_group->primary_symtab;
f4dc4d17
DE
8079 }
8080
8081 if (dwarf2_per_objfile->using_index)
8082 per_cu->v.quick->symtab = symtab;
8083 else
8084 {
8085 struct partial_symtab *pst = per_cu->v.psymtab;
8086 pst->symtab = symtab;
8087 pst->readin = 1;
45cfd468 8088 }
f4dc4d17
DE
8089
8090 do_cleanups (back_to);
c906108c
SS
8091}
8092
95554aad
TT
8093/* Process an imported unit DIE. */
8094
8095static void
8096process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
8097{
8098 struct attribute *attr;
8099
f4dc4d17
DE
8100 /* For now we don't handle imported units in type units. */
8101 if (cu->per_cu->is_debug_types)
8102 {
8103 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8104 " supported in type units [in module %s]"),
4262abfb 8105 objfile_name (cu->objfile));
f4dc4d17
DE
8106 }
8107
95554aad
TT
8108 attr = dwarf2_attr (die, DW_AT_import, cu);
8109 if (attr != NULL)
8110 {
8111 struct dwarf2_per_cu_data *per_cu;
8112 struct symtab *imported_symtab;
8113 sect_offset offset;
36586728 8114 int is_dwz;
95554aad
TT
8115
8116 offset = dwarf2_get_ref_die_offset (attr);
36586728
TT
8117 is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
8118 per_cu = dwarf2_find_containing_comp_unit (offset, is_dwz, cu->objfile);
95554aad 8119
69d751e3 8120 /* If necessary, add it to the queue and load its DIEs. */
95554aad
TT
8121 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
8122 load_full_comp_unit (per_cu, cu->language);
8123
796a7ff8 8124 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
95554aad
TT
8125 per_cu);
8126 }
8127}
8128
adde2bff
DE
8129/* Reset the in_process bit of a die. */
8130
8131static void
8132reset_die_in_process (void *arg)
8133{
8134 struct die_info *die = arg;
8c3cb9fa 8135
adde2bff
DE
8136 die->in_process = 0;
8137}
8138
c906108c
SS
8139/* Process a die and its children. */
8140
8141static void
e7c27a73 8142process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 8143{
adde2bff
DE
8144 struct cleanup *in_process;
8145
8146 /* We should only be processing those not already in process. */
8147 gdb_assert (!die->in_process);
8148
8149 die->in_process = 1;
8150 in_process = make_cleanup (reset_die_in_process,die);
8151
c906108c
SS
8152 switch (die->tag)
8153 {
8154 case DW_TAG_padding:
8155 break;
8156 case DW_TAG_compile_unit:
95554aad 8157 case DW_TAG_partial_unit:
e7c27a73 8158 read_file_scope (die, cu);
c906108c 8159 break;
348e048f
DE
8160 case DW_TAG_type_unit:
8161 read_type_unit_scope (die, cu);
8162 break;
c906108c 8163 case DW_TAG_subprogram:
c906108c 8164 case DW_TAG_inlined_subroutine:
edb3359d 8165 read_func_scope (die, cu);
c906108c
SS
8166 break;
8167 case DW_TAG_lexical_block:
14898363
L
8168 case DW_TAG_try_block:
8169 case DW_TAG_catch_block:
e7c27a73 8170 read_lexical_block_scope (die, cu);
c906108c 8171 break;
96408a79
SA
8172 case DW_TAG_GNU_call_site:
8173 read_call_site_scope (die, cu);
8174 break;
c906108c 8175 case DW_TAG_class_type:
680b30c7 8176 case DW_TAG_interface_type:
c906108c
SS
8177 case DW_TAG_structure_type:
8178 case DW_TAG_union_type:
134d01f1 8179 process_structure_scope (die, cu);
c906108c
SS
8180 break;
8181 case DW_TAG_enumeration_type:
134d01f1 8182 process_enumeration_scope (die, cu);
c906108c 8183 break;
134d01f1 8184
f792889a
DJ
8185 /* These dies have a type, but processing them does not create
8186 a symbol or recurse to process the children. Therefore we can
8187 read them on-demand through read_type_die. */
c906108c 8188 case DW_TAG_subroutine_type:
72019c9c 8189 case DW_TAG_set_type:
c906108c 8190 case DW_TAG_array_type:
c906108c 8191 case DW_TAG_pointer_type:
c906108c 8192 case DW_TAG_ptr_to_member_type:
c906108c 8193 case DW_TAG_reference_type:
c906108c 8194 case DW_TAG_string_type:
c906108c 8195 break;
134d01f1 8196
c906108c 8197 case DW_TAG_base_type:
a02abb62 8198 case DW_TAG_subrange_type:
cb249c71 8199 case DW_TAG_typedef:
134d01f1
DJ
8200 /* Add a typedef symbol for the type definition, if it has a
8201 DW_AT_name. */
f792889a 8202 new_symbol (die, read_type_die (die, cu), cu);
a02abb62 8203 break;
c906108c 8204 case DW_TAG_common_block:
e7c27a73 8205 read_common_block (die, cu);
c906108c
SS
8206 break;
8207 case DW_TAG_common_inclusion:
8208 break;
d9fa45fe 8209 case DW_TAG_namespace:
4d4ec4e5 8210 cu->processing_has_namespace_info = 1;
e7c27a73 8211 read_namespace (die, cu);
d9fa45fe 8212 break;
5d7cb8df 8213 case DW_TAG_module:
4d4ec4e5 8214 cu->processing_has_namespace_info = 1;
5d7cb8df
JK
8215 read_module (die, cu);
8216 break;
d9fa45fe 8217 case DW_TAG_imported_declaration:
74921315
KS
8218 cu->processing_has_namespace_info = 1;
8219 if (read_namespace_alias (die, cu))
8220 break;
8221 /* The declaration is not a global namespace alias: fall through. */
d9fa45fe 8222 case DW_TAG_imported_module:
4d4ec4e5 8223 cu->processing_has_namespace_info = 1;
27aa8d6a
SW
8224 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
8225 || cu->language != language_fortran))
8226 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
8227 dwarf_tag_name (die->tag));
8228 read_import_statement (die, cu);
d9fa45fe 8229 break;
95554aad
TT
8230
8231 case DW_TAG_imported_unit:
8232 process_imported_unit_die (die, cu);
8233 break;
8234
c906108c 8235 default:
e7c27a73 8236 new_symbol (die, NULL, cu);
c906108c
SS
8237 break;
8238 }
adde2bff
DE
8239
8240 do_cleanups (in_process);
c906108c 8241}
ca69b9e6
DE
8242\f
8243/* DWARF name computation. */
c906108c 8244
94af9270
KS
8245/* A helper function for dwarf2_compute_name which determines whether DIE
8246 needs to have the name of the scope prepended to the name listed in the
8247 die. */
8248
8249static int
8250die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
8251{
1c809c68
TT
8252 struct attribute *attr;
8253
94af9270
KS
8254 switch (die->tag)
8255 {
8256 case DW_TAG_namespace:
8257 case DW_TAG_typedef:
8258 case DW_TAG_class_type:
8259 case DW_TAG_interface_type:
8260 case DW_TAG_structure_type:
8261 case DW_TAG_union_type:
8262 case DW_TAG_enumeration_type:
8263 case DW_TAG_enumerator:
8264 case DW_TAG_subprogram:
8265 case DW_TAG_member:
74921315 8266 case DW_TAG_imported_declaration:
94af9270
KS
8267 return 1;
8268
8269 case DW_TAG_variable:
c2b0a229 8270 case DW_TAG_constant:
94af9270
KS
8271 /* We only need to prefix "globally" visible variables. These include
8272 any variable marked with DW_AT_external or any variable that
8273 lives in a namespace. [Variables in anonymous namespaces
8274 require prefixing, but they are not DW_AT_external.] */
8275
8276 if (dwarf2_attr (die, DW_AT_specification, cu))
8277 {
8278 struct dwarf2_cu *spec_cu = cu;
9a619af0 8279
94af9270
KS
8280 return die_needs_namespace (die_specification (die, &spec_cu),
8281 spec_cu);
8282 }
8283
1c809c68 8284 attr = dwarf2_attr (die, DW_AT_external, cu);
f55ee35c
JK
8285 if (attr == NULL && die->parent->tag != DW_TAG_namespace
8286 && die->parent->tag != DW_TAG_module)
1c809c68
TT
8287 return 0;
8288 /* A variable in a lexical block of some kind does not need a
8289 namespace, even though in C++ such variables may be external
8290 and have a mangled name. */
8291 if (die->parent->tag == DW_TAG_lexical_block
8292 || die->parent->tag == DW_TAG_try_block
1054b214
TT
8293 || die->parent->tag == DW_TAG_catch_block
8294 || die->parent->tag == DW_TAG_subprogram)
1c809c68
TT
8295 return 0;
8296 return 1;
94af9270
KS
8297
8298 default:
8299 return 0;
8300 }
8301}
8302
98bfdba5
PA
8303/* Retrieve the last character from a mem_file. */
8304
8305static void
8306do_ui_file_peek_last (void *object, const char *buffer, long length)
8307{
8308 char *last_char_p = (char *) object;
8309
8310 if (length > 0)
8311 *last_char_p = buffer[length - 1];
8312}
8313
94af9270 8314/* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
a766d390
DE
8315 compute the physname for the object, which include a method's:
8316 - formal parameters (C++/Java),
8317 - receiver type (Go),
8318 - return type (Java).
8319
8320 The term "physname" is a bit confusing.
8321 For C++, for example, it is the demangled name.
8322 For Go, for example, it's the mangled name.
94af9270 8323
af6b7be1
JB
8324 For Ada, return the DIE's linkage name rather than the fully qualified
8325 name. PHYSNAME is ignored..
8326
94af9270
KS
8327 The result is allocated on the objfile_obstack and canonicalized. */
8328
8329static const char *
15d034d0
TT
8330dwarf2_compute_name (const char *name,
8331 struct die_info *die, struct dwarf2_cu *cu,
94af9270
KS
8332 int physname)
8333{
bb5ed363
DE
8334 struct objfile *objfile = cu->objfile;
8335
94af9270
KS
8336 if (name == NULL)
8337 name = dwarf2_name (die, cu);
8338
f55ee35c
JK
8339 /* For Fortran GDB prefers DW_AT_*linkage_name if present but otherwise
8340 compute it by typename_concat inside GDB. */
8341 if (cu->language == language_ada
8342 || (cu->language == language_fortran && physname))
8343 {
8344 /* For Ada unit, we prefer the linkage name over the name, as
8345 the former contains the exported name, which the user expects
8346 to be able to reference. Ideally, we want the user to be able
8347 to reference this entity using either natural or linkage name,
8348 but we haven't started looking at this enhancement yet. */
8349 struct attribute *attr;
8350
8351 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
8352 if (attr == NULL)
8353 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
8354 if (attr && DW_STRING (attr))
8355 return DW_STRING (attr);
8356 }
8357
94af9270
KS
8358 /* These are the only languages we know how to qualify names in. */
8359 if (name != NULL
f55ee35c
JK
8360 && (cu->language == language_cplus || cu->language == language_java
8361 || cu->language == language_fortran))
94af9270
KS
8362 {
8363 if (die_needs_namespace (die, cu))
8364 {
8365 long length;
0d5cff50 8366 const char *prefix;
94af9270 8367 struct ui_file *buf;
34a68019
TT
8368 char *intermediate_name;
8369 const char *canonical_name = NULL;
94af9270
KS
8370
8371 prefix = determine_prefix (die, cu);
8372 buf = mem_fileopen ();
8373 if (*prefix != '\0')
8374 {
f55ee35c
JK
8375 char *prefixed_name = typename_concat (NULL, prefix, name,
8376 physname, cu);
9a619af0 8377
94af9270
KS
8378 fputs_unfiltered (prefixed_name, buf);
8379 xfree (prefixed_name);
8380 }
8381 else
62d5b8da 8382 fputs_unfiltered (name, buf);
94af9270 8383
98bfdba5
PA
8384 /* Template parameters may be specified in the DIE's DW_AT_name, or
8385 as children with DW_TAG_template_type_param or
8386 DW_TAG_value_type_param. If the latter, add them to the name
8387 here. If the name already has template parameters, then
8388 skip this step; some versions of GCC emit both, and
8389 it is more efficient to use the pre-computed name.
8390
8391 Something to keep in mind about this process: it is very
8392 unlikely, or in some cases downright impossible, to produce
8393 something that will match the mangled name of a function.
8394 If the definition of the function has the same debug info,
8395 we should be able to match up with it anyway. But fallbacks
8396 using the minimal symbol, for instance to find a method
8397 implemented in a stripped copy of libstdc++, will not work.
8398 If we do not have debug info for the definition, we will have to
8399 match them up some other way.
8400
8401 When we do name matching there is a related problem with function
8402 templates; two instantiated function templates are allowed to
8403 differ only by their return types, which we do not add here. */
8404
8405 if (cu->language == language_cplus && strchr (name, '<') == NULL)
8406 {
8407 struct attribute *attr;
8408 struct die_info *child;
8409 int first = 1;
8410
8411 die->building_fullname = 1;
8412
8413 for (child = die->child; child != NULL; child = child->sibling)
8414 {
8415 struct type *type;
12df843f 8416 LONGEST value;
d521ce57 8417 const gdb_byte *bytes;
98bfdba5
PA
8418 struct dwarf2_locexpr_baton *baton;
8419 struct value *v;
8420
8421 if (child->tag != DW_TAG_template_type_param
8422 && child->tag != DW_TAG_template_value_param)
8423 continue;
8424
8425 if (first)
8426 {
8427 fputs_unfiltered ("<", buf);
8428 first = 0;
8429 }
8430 else
8431 fputs_unfiltered (", ", buf);
8432
8433 attr = dwarf2_attr (child, DW_AT_type, cu);
8434 if (attr == NULL)
8435 {
8436 complaint (&symfile_complaints,
8437 _("template parameter missing DW_AT_type"));
8438 fputs_unfiltered ("UNKNOWN_TYPE", buf);
8439 continue;
8440 }
8441 type = die_type (child, cu);
8442
8443 if (child->tag == DW_TAG_template_type_param)
8444 {
79d43c61 8445 c_print_type (type, "", buf, -1, 0, &type_print_raw_options);
98bfdba5
PA
8446 continue;
8447 }
8448
8449 attr = dwarf2_attr (child, DW_AT_const_value, cu);
8450 if (attr == NULL)
8451 {
8452 complaint (&symfile_complaints,
3e43a32a
MS
8453 _("template parameter missing "
8454 "DW_AT_const_value"));
98bfdba5
PA
8455 fputs_unfiltered ("UNKNOWN_VALUE", buf);
8456 continue;
8457 }
8458
8459 dwarf2_const_value_attr (attr, type, name,
8460 &cu->comp_unit_obstack, cu,
8461 &value, &bytes, &baton);
8462
8463 if (TYPE_NOSIGN (type))
8464 /* GDB prints characters as NUMBER 'CHAR'. If that's
8465 changed, this can use value_print instead. */
8466 c_printchar (value, type, buf);
8467 else
8468 {
8469 struct value_print_options opts;
8470
8471 if (baton != NULL)
8472 v = dwarf2_evaluate_loc_desc (type, NULL,
8473 baton->data,
8474 baton->size,
8475 baton->per_cu);
8476 else if (bytes != NULL)
8477 {
8478 v = allocate_value (type);
8479 memcpy (value_contents_writeable (v), bytes,
8480 TYPE_LENGTH (type));
8481 }
8482 else
8483 v = value_from_longest (type, value);
8484
3e43a32a
MS
8485 /* Specify decimal so that we do not depend on
8486 the radix. */
98bfdba5
PA
8487 get_formatted_print_options (&opts, 'd');
8488 opts.raw = 1;
8489 value_print (v, buf, &opts);
8490 release_value (v);
8491 value_free (v);
8492 }
8493 }
8494
8495 die->building_fullname = 0;
8496
8497 if (!first)
8498 {
8499 /* Close the argument list, with a space if necessary
8500 (nested templates). */
8501 char last_char = '\0';
8502 ui_file_put (buf, do_ui_file_peek_last, &last_char);
8503 if (last_char == '>')
8504 fputs_unfiltered (" >", buf);
8505 else
8506 fputs_unfiltered (">", buf);
8507 }
8508 }
8509
94af9270
KS
8510 /* For Java and C++ methods, append formal parameter type
8511 information, if PHYSNAME. */
6e70227d 8512
94af9270
KS
8513 if (physname && die->tag == DW_TAG_subprogram
8514 && (cu->language == language_cplus
8515 || cu->language == language_java))
8516 {
8517 struct type *type = read_type_die (die, cu);
8518
79d43c61
TT
8519 c_type_print_args (type, buf, 1, cu->language,
8520 &type_print_raw_options);
94af9270
KS
8521
8522 if (cu->language == language_java)
8523 {
8524 /* For java, we must append the return type to method
0963b4bd 8525 names. */
94af9270
KS
8526 if (die->tag == DW_TAG_subprogram)
8527 java_print_type (TYPE_TARGET_TYPE (type), "", buf,
79d43c61 8528 0, 0, &type_print_raw_options);
94af9270
KS
8529 }
8530 else if (cu->language == language_cplus)
8531 {
60430eff
DJ
8532 /* Assume that an artificial first parameter is
8533 "this", but do not crash if it is not. RealView
8534 marks unnamed (and thus unused) parameters as
8535 artificial; there is no way to differentiate
8536 the two cases. */
94af9270
KS
8537 if (TYPE_NFIELDS (type) > 0
8538 && TYPE_FIELD_ARTIFICIAL (type, 0)
60430eff 8539 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
3e43a32a
MS
8540 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
8541 0))))
94af9270
KS
8542 fputs_unfiltered (" const", buf);
8543 }
8544 }
8545
34a68019 8546 intermediate_name = ui_file_xstrdup (buf, &length);
94af9270
KS
8547 ui_file_delete (buf);
8548
8549 if (cu->language == language_cplus)
34a68019
TT
8550 canonical_name
8551 = dwarf2_canonicalize_name (intermediate_name, cu,
8552 &objfile->per_bfd->storage_obstack);
8553
8554 /* If we only computed INTERMEDIATE_NAME, or if
8555 INTERMEDIATE_NAME is already canonical, then we need to
8556 copy it to the appropriate obstack. */
8557 if (canonical_name == NULL || canonical_name == intermediate_name)
8558 name = obstack_copy0 (&objfile->per_bfd->storage_obstack,
8559 intermediate_name,
8560 strlen (intermediate_name));
8561 else
8562 name = canonical_name;
9a619af0 8563
34a68019 8564 xfree (intermediate_name);
94af9270
KS
8565 }
8566 }
8567
8568 return name;
8569}
8570
0114d602
DJ
8571/* Return the fully qualified name of DIE, based on its DW_AT_name.
8572 If scope qualifiers are appropriate they will be added. The result
34a68019 8573 will be allocated on the storage_obstack, or NULL if the DIE does
94af9270
KS
8574 not have a name. NAME may either be from a previous call to
8575 dwarf2_name or NULL.
8576
0963b4bd 8577 The output string will be canonicalized (if C++/Java). */
0114d602
DJ
8578
8579static const char *
15d034d0 8580dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
0114d602 8581{
94af9270
KS
8582 return dwarf2_compute_name (name, die, cu, 0);
8583}
0114d602 8584
94af9270
KS
8585/* Construct a physname for the given DIE in CU. NAME may either be
8586 from a previous call to dwarf2_name or NULL. The result will be
8587 allocated on the objfile_objstack or NULL if the DIE does not have a
8588 name.
0114d602 8589
94af9270 8590 The output string will be canonicalized (if C++/Java). */
0114d602 8591
94af9270 8592static const char *
15d034d0 8593dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
94af9270 8594{
bb5ed363 8595 struct objfile *objfile = cu->objfile;
900e11f9
JK
8596 struct attribute *attr;
8597 const char *retval, *mangled = NULL, *canon = NULL;
8598 struct cleanup *back_to;
8599 int need_copy = 1;
8600
8601 /* In this case dwarf2_compute_name is just a shortcut not building anything
8602 on its own. */
8603 if (!die_needs_namespace (die, cu))
8604 return dwarf2_compute_name (name, die, cu, 1);
8605
8606 back_to = make_cleanup (null_cleanup, NULL);
8607
8608 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
8609 if (!attr)
8610 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
8611
8612 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
8613 has computed. */
8614 if (attr && DW_STRING (attr))
8615 {
8616 char *demangled;
8617
8618 mangled = DW_STRING (attr);
8619
8620 /* Use DMGL_RET_DROP for C++ template functions to suppress their return
8621 type. It is easier for GDB users to search for such functions as
8622 `name(params)' than `long name(params)'. In such case the minimal
8623 symbol names do not match the full symbol names but for template
8624 functions there is never a need to look up their definition from their
8625 declaration so the only disadvantage remains the minimal symbol
8626 variant `long name(params)' does not have the proper inferior type.
8627 */
8628
a766d390
DE
8629 if (cu->language == language_go)
8630 {
8631 /* This is a lie, but we already lie to the caller new_symbol_full.
8632 new_symbol_full assumes we return the mangled name.
8633 This just undoes that lie until things are cleaned up. */
8634 demangled = NULL;
8635 }
8636 else
8637 {
8de20a37
TT
8638 demangled = gdb_demangle (mangled,
8639 (DMGL_PARAMS | DMGL_ANSI
8640 | (cu->language == language_java
8641 ? DMGL_JAVA | DMGL_RET_POSTFIX
8642 : DMGL_RET_DROP)));
a766d390 8643 }
900e11f9
JK
8644 if (demangled)
8645 {
8646 make_cleanup (xfree, demangled);
8647 canon = demangled;
8648 }
8649 else
8650 {
8651 canon = mangled;
8652 need_copy = 0;
8653 }
8654 }
8655
8656 if (canon == NULL || check_physname)
8657 {
8658 const char *physname = dwarf2_compute_name (name, die, cu, 1);
8659
8660 if (canon != NULL && strcmp (physname, canon) != 0)
8661 {
8662 /* It may not mean a bug in GDB. The compiler could also
8663 compute DW_AT_linkage_name incorrectly. But in such case
8664 GDB would need to be bug-to-bug compatible. */
8665
8666 complaint (&symfile_complaints,
8667 _("Computed physname <%s> does not match demangled <%s> "
8668 "(from linkage <%s>) - DIE at 0x%x [in module %s]"),
4262abfb
JK
8669 physname, canon, mangled, die->offset.sect_off,
8670 objfile_name (objfile));
900e11f9
JK
8671
8672 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
8673 is available here - over computed PHYSNAME. It is safer
8674 against both buggy GDB and buggy compilers. */
8675
8676 retval = canon;
8677 }
8678 else
8679 {
8680 retval = physname;
8681 need_copy = 0;
8682 }
8683 }
8684 else
8685 retval = canon;
8686
8687 if (need_copy)
34a68019
TT
8688 retval = obstack_copy0 (&objfile->per_bfd->storage_obstack,
8689 retval, strlen (retval));
900e11f9
JK
8690
8691 do_cleanups (back_to);
8692 return retval;
0114d602
DJ
8693}
8694
74921315
KS
8695/* Inspect DIE in CU for a namespace alias. If one exists, record
8696 a new symbol for it.
8697
8698 Returns 1 if a namespace alias was recorded, 0 otherwise. */
8699
8700static int
8701read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
8702{
8703 struct attribute *attr;
8704
8705 /* If the die does not have a name, this is not a namespace
8706 alias. */
8707 attr = dwarf2_attr (die, DW_AT_name, cu);
8708 if (attr != NULL)
8709 {
8710 int num;
8711 struct die_info *d = die;
8712 struct dwarf2_cu *imported_cu = cu;
8713
8714 /* If the compiler has nested DW_AT_imported_declaration DIEs,
8715 keep inspecting DIEs until we hit the underlying import. */
8716#define MAX_NESTED_IMPORTED_DECLARATIONS 100
8717 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
8718 {
8719 attr = dwarf2_attr (d, DW_AT_import, cu);
8720 if (attr == NULL)
8721 break;
8722
8723 d = follow_die_ref (d, attr, &imported_cu);
8724 if (d->tag != DW_TAG_imported_declaration)
8725 break;
8726 }
8727
8728 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
8729 {
8730 complaint (&symfile_complaints,
8731 _("DIE at 0x%x has too many recursively imported "
8732 "declarations"), d->offset.sect_off);
8733 return 0;
8734 }
8735
8736 if (attr != NULL)
8737 {
8738 struct type *type;
8739 sect_offset offset = dwarf2_get_ref_die_offset (attr);
8740
8741 type = get_die_type_at_offset (offset, cu->per_cu);
8742 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
8743 {
8744 /* This declaration is a global namespace alias. Add
8745 a symbol for it whose type is the aliased namespace. */
8746 new_symbol (die, type, cu);
8747 return 1;
8748 }
8749 }
8750 }
8751
8752 return 0;
8753}
8754
27aa8d6a
SW
8755/* Read the import statement specified by the given die and record it. */
8756
8757static void
8758read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
8759{
bb5ed363 8760 struct objfile *objfile = cu->objfile;
27aa8d6a 8761 struct attribute *import_attr;
32019081 8762 struct die_info *imported_die, *child_die;
de4affc9 8763 struct dwarf2_cu *imported_cu;
27aa8d6a 8764 const char *imported_name;
794684b6 8765 const char *imported_name_prefix;
13387711
SW
8766 const char *canonical_name;
8767 const char *import_alias;
8768 const char *imported_declaration = NULL;
794684b6 8769 const char *import_prefix;
32019081
JK
8770 VEC (const_char_ptr) *excludes = NULL;
8771 struct cleanup *cleanups;
13387711 8772
27aa8d6a
SW
8773 import_attr = dwarf2_attr (die, DW_AT_import, cu);
8774 if (import_attr == NULL)
8775 {
8776 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
8777 dwarf_tag_name (die->tag));
8778 return;
8779 }
8780
de4affc9
CC
8781 imported_cu = cu;
8782 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
8783 imported_name = dwarf2_name (imported_die, imported_cu);
27aa8d6a
SW
8784 if (imported_name == NULL)
8785 {
8786 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
8787
8788 The import in the following code:
8789 namespace A
8790 {
8791 typedef int B;
8792 }
8793
8794 int main ()
8795 {
8796 using A::B;
8797 B b;
8798 return b;
8799 }
8800
8801 ...
8802 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
8803 <52> DW_AT_decl_file : 1
8804 <53> DW_AT_decl_line : 6
8805 <54> DW_AT_import : <0x75>
8806 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
8807 <59> DW_AT_name : B
8808 <5b> DW_AT_decl_file : 1
8809 <5c> DW_AT_decl_line : 2
8810 <5d> DW_AT_type : <0x6e>
8811 ...
8812 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
8813 <76> DW_AT_byte_size : 4
8814 <77> DW_AT_encoding : 5 (signed)
8815
8816 imports the wrong die ( 0x75 instead of 0x58 ).
8817 This case will be ignored until the gcc bug is fixed. */
8818 return;
8819 }
8820
82856980
SW
8821 /* Figure out the local name after import. */
8822 import_alias = dwarf2_name (die, cu);
27aa8d6a 8823
794684b6
SW
8824 /* Figure out where the statement is being imported to. */
8825 import_prefix = determine_prefix (die, cu);
8826
8827 /* Figure out what the scope of the imported die is and prepend it
8828 to the name of the imported die. */
de4affc9 8829 imported_name_prefix = determine_prefix (imported_die, imported_cu);
794684b6 8830
f55ee35c
JK
8831 if (imported_die->tag != DW_TAG_namespace
8832 && imported_die->tag != DW_TAG_module)
794684b6 8833 {
13387711
SW
8834 imported_declaration = imported_name;
8835 canonical_name = imported_name_prefix;
794684b6 8836 }
13387711 8837 else if (strlen (imported_name_prefix) > 0)
12aaed36
TT
8838 canonical_name = obconcat (&objfile->objfile_obstack,
8839 imported_name_prefix, "::", imported_name,
8840 (char *) NULL);
13387711
SW
8841 else
8842 canonical_name = imported_name;
794684b6 8843
32019081
JK
8844 cleanups = make_cleanup (VEC_cleanup (const_char_ptr), &excludes);
8845
8846 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
8847 for (child_die = die->child; child_die && child_die->tag;
8848 child_die = sibling_die (child_die))
8849 {
8850 /* DWARF-4: A Fortran use statement with a “rename list” may be
8851 represented by an imported module entry with an import attribute
8852 referring to the module and owned entries corresponding to those
8853 entities that are renamed as part of being imported. */
8854
8855 if (child_die->tag != DW_TAG_imported_declaration)
8856 {
8857 complaint (&symfile_complaints,
8858 _("child DW_TAG_imported_declaration expected "
8859 "- DIE at 0x%x [in module %s]"),
4262abfb 8860 child_die->offset.sect_off, objfile_name (objfile));
32019081
JK
8861 continue;
8862 }
8863
8864 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
8865 if (import_attr == NULL)
8866 {
8867 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
8868 dwarf_tag_name (child_die->tag));
8869 continue;
8870 }
8871
8872 imported_cu = cu;
8873 imported_die = follow_die_ref_or_sig (child_die, import_attr,
8874 &imported_cu);
8875 imported_name = dwarf2_name (imported_die, imported_cu);
8876 if (imported_name == NULL)
8877 {
8878 complaint (&symfile_complaints,
8879 _("child DW_TAG_imported_declaration has unknown "
8880 "imported name - DIE at 0x%x [in module %s]"),
4262abfb 8881 child_die->offset.sect_off, objfile_name (objfile));
32019081
JK
8882 continue;
8883 }
8884
8885 VEC_safe_push (const_char_ptr, excludes, imported_name);
8886
8887 process_die (child_die, cu);
8888 }
8889
c0cc3a76
SW
8890 cp_add_using_directive (import_prefix,
8891 canonical_name,
8892 import_alias,
13387711 8893 imported_declaration,
32019081 8894 excludes,
12aaed36 8895 0,
bb5ed363 8896 &objfile->objfile_obstack);
32019081
JK
8897
8898 do_cleanups (cleanups);
27aa8d6a
SW
8899}
8900
f4dc4d17 8901/* Cleanup function for handle_DW_AT_stmt_list. */
ae2de4f8 8902
cb1df416
DJ
8903static void
8904free_cu_line_header (void *arg)
8905{
8906 struct dwarf2_cu *cu = arg;
8907
8908 free_line_header (cu->line_header);
8909 cu->line_header = NULL;
8910}
8911
1b80a9fa
JK
8912/* Check for possibly missing DW_AT_comp_dir with relative .debug_line
8913 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
8914 this, it was first present in GCC release 4.3.0. */
8915
8916static int
8917producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
8918{
8919 if (!cu->checked_producer)
8920 check_producer (cu);
8921
8922 return cu->producer_is_gcc_lt_4_3;
8923}
8924
9291a0cd
TT
8925static void
8926find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu,
15d034d0 8927 const char **name, const char **comp_dir)
9291a0cd
TT
8928{
8929 struct attribute *attr;
8930
8931 *name = NULL;
8932 *comp_dir = NULL;
8933
8934 /* Find the filename. Do not use dwarf2_name here, since the filename
8935 is not a source language identifier. */
8936 attr = dwarf2_attr (die, DW_AT_name, cu);
8937 if (attr)
8938 {
8939 *name = DW_STRING (attr);
8940 }
8941
8942 attr = dwarf2_attr (die, DW_AT_comp_dir, cu);
8943 if (attr)
8944 *comp_dir = DW_STRING (attr);
1b80a9fa
JK
8945 else if (producer_is_gcc_lt_4_3 (cu) && *name != NULL
8946 && IS_ABSOLUTE_PATH (*name))
9291a0cd 8947 {
15d034d0
TT
8948 char *d = ldirname (*name);
8949
8950 *comp_dir = d;
8951 if (d != NULL)
8952 make_cleanup (xfree, d);
9291a0cd
TT
8953 }
8954 if (*comp_dir != NULL)
8955 {
8956 /* Irix 6.2 native cc prepends <machine>.: to the compilation
8957 directory, get rid of it. */
8958 char *cp = strchr (*comp_dir, ':');
8959
8960 if (cp && cp != *comp_dir && cp[-1] == '.' && cp[1] == '/')
8961 *comp_dir = cp + 1;
8962 }
8963
8964 if (*name == NULL)
8965 *name = "<unknown>";
8966}
8967
f4dc4d17
DE
8968/* Handle DW_AT_stmt_list for a compilation unit.
8969 DIE is the DW_TAG_compile_unit die for CU.
c3b7b696
YQ
8970 COMP_DIR is the compilation directory. LOWPC is passed to
8971 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
2ab95328
TT
8972
8973static void
8974handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
c3b7b696 8975 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
2ab95328
TT
8976{
8977 struct attribute *attr;
2ab95328 8978
f4dc4d17
DE
8979 gdb_assert (! cu->per_cu->is_debug_types);
8980
2ab95328
TT
8981 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
8982 if (attr)
8983 {
8984 unsigned int line_offset = DW_UNSND (attr);
8985 struct line_header *line_header
3019eac3 8986 = dwarf_decode_line_header (line_offset, cu);
2ab95328
TT
8987
8988 if (line_header)
dee91e82
DE
8989 {
8990 cu->line_header = line_header;
8991 make_cleanup (free_cu_line_header, cu);
c3b7b696 8992 dwarf_decode_lines (line_header, comp_dir, cu, NULL, lowpc);
dee91e82 8993 }
2ab95328
TT
8994 }
8995}
8996
95554aad 8997/* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
ae2de4f8 8998
c906108c 8999static void
e7c27a73 9000read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 9001{
dee91e82 9002 struct objfile *objfile = dwarf2_per_objfile->objfile;
debd256d 9003 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
2acceee2 9004 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
9005 CORE_ADDR highpc = ((CORE_ADDR) 0);
9006 struct attribute *attr;
15d034d0
TT
9007 const char *name = NULL;
9008 const char *comp_dir = NULL;
c906108c
SS
9009 struct die_info *child_die;
9010 bfd *abfd = objfile->obfd;
e142c38c 9011 CORE_ADDR baseaddr;
6e70227d 9012
e142c38c 9013 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 9014
fae299cd 9015 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
9016
9017 /* If we didn't find a lowpc, set it to highpc to avoid complaints
9018 from finish_block. */
2acceee2 9019 if (lowpc == ((CORE_ADDR) -1))
c906108c
SS
9020 lowpc = highpc;
9021 lowpc += baseaddr;
9022 highpc += baseaddr;
9023
9291a0cd 9024 find_file_and_directory (die, cu, &name, &comp_dir);
e1024ff1 9025
95554aad 9026 prepare_one_comp_unit (cu, die, cu->language);
303b6f5d 9027
f4b8a18d
KW
9028 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
9029 standardised yet. As a workaround for the language detection we fall
9030 back to the DW_AT_producer string. */
9031 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
9032 cu->language = language_opencl;
9033
3019eac3
DE
9034 /* Similar hack for Go. */
9035 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
9036 set_cu_language (DW_LANG_Go, cu);
9037
f4dc4d17 9038 dwarf2_start_symtab (cu, name, comp_dir, lowpc);
3019eac3
DE
9039
9040 /* Decode line number information if present. We do this before
9041 processing child DIEs, so that the line header table is available
9042 for DW_AT_decl_file. */
c3b7b696 9043 handle_DW_AT_stmt_list (die, cu, comp_dir, lowpc);
3019eac3
DE
9044
9045 /* Process all dies in compilation unit. */
9046 if (die->child != NULL)
9047 {
9048 child_die = die->child;
9049 while (child_die && child_die->tag)
9050 {
9051 process_die (child_die, cu);
9052 child_die = sibling_die (child_die);
9053 }
9054 }
9055
9056 /* Decode macro information, if present. Dwarf 2 macro information
9057 refers to information in the line number info statement program
9058 header, so we can only read it if we've read the header
9059 successfully. */
9060 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
9061 if (attr && cu->line_header)
9062 {
9063 if (dwarf2_attr (die, DW_AT_macro_info, cu))
9064 complaint (&symfile_complaints,
9065 _("CU refers to both DW_AT_GNU_macros and DW_AT_macro_info"));
9066
09262596 9067 dwarf_decode_macros (cu, DW_UNSND (attr), comp_dir, 1);
3019eac3
DE
9068 }
9069 else
9070 {
9071 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
9072 if (attr && cu->line_header)
9073 {
9074 unsigned int macro_offset = DW_UNSND (attr);
9075
09262596 9076 dwarf_decode_macros (cu, macro_offset, comp_dir, 0);
3019eac3
DE
9077 }
9078 }
9079
9080 do_cleanups (back_to);
9081}
9082
f4dc4d17
DE
9083/* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
9084 Create the set of symtabs used by this TU, or if this TU is sharing
9085 symtabs with another TU and the symtabs have already been created
9086 then restore those symtabs in the line header.
9087 We don't need the pc/line-number mapping for type units. */
3019eac3
DE
9088
9089static void
f4dc4d17 9090setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
3019eac3 9091{
f4dc4d17
DE
9092 struct objfile *objfile = dwarf2_per_objfile->objfile;
9093 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
9094 struct type_unit_group *tu_group;
9095 int first_time;
9096 struct line_header *lh;
3019eac3 9097 struct attribute *attr;
f4dc4d17 9098 unsigned int i, line_offset;
0186c6a7 9099 struct signatured_type *sig_type;
3019eac3 9100
f4dc4d17 9101 gdb_assert (per_cu->is_debug_types);
0186c6a7 9102 sig_type = (struct signatured_type *) per_cu;
3019eac3 9103
f4dc4d17 9104 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
3019eac3 9105
f4dc4d17 9106 /* If we're using .gdb_index (includes -readnow) then
74e04d1c 9107 per_cu->type_unit_group may not have been set up yet. */
0186c6a7
DE
9108 if (sig_type->type_unit_group == NULL)
9109 sig_type->type_unit_group = get_type_unit_group (cu, attr);
9110 tu_group = sig_type->type_unit_group;
f4dc4d17
DE
9111
9112 /* If we've already processed this stmt_list there's no real need to
9113 do it again, we could fake it and just recreate the part we need
9114 (file name,index -> symtab mapping). If data shows this optimization
9115 is useful we can do it then. */
9116 first_time = tu_group->primary_symtab == NULL;
9117
9118 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
9119 debug info. */
9120 lh = NULL;
9121 if (attr != NULL)
3019eac3 9122 {
f4dc4d17
DE
9123 line_offset = DW_UNSND (attr);
9124 lh = dwarf_decode_line_header (line_offset, cu);
9125 }
9126 if (lh == NULL)
9127 {
9128 if (first_time)
9129 dwarf2_start_symtab (cu, "", NULL, 0);
9130 else
9131 {
9132 gdb_assert (tu_group->symtabs == NULL);
9133 restart_symtab (0);
9134 }
9135 /* Note: The primary symtab will get allocated at the end. */
9136 return;
3019eac3
DE
9137 }
9138
f4dc4d17
DE
9139 cu->line_header = lh;
9140 make_cleanup (free_cu_line_header, cu);
3019eac3 9141
f4dc4d17
DE
9142 if (first_time)
9143 {
9144 dwarf2_start_symtab (cu, "", NULL, 0);
3019eac3 9145
f4dc4d17
DE
9146 tu_group->num_symtabs = lh->num_file_names;
9147 tu_group->symtabs = XNEWVEC (struct symtab *, lh->num_file_names);
3019eac3 9148
f4dc4d17
DE
9149 for (i = 0; i < lh->num_file_names; ++i)
9150 {
d521ce57 9151 const char *dir = NULL;
f4dc4d17 9152 struct file_entry *fe = &lh->file_names[i];
3019eac3 9153
f4dc4d17
DE
9154 if (fe->dir_index)
9155 dir = lh->include_dirs[fe->dir_index - 1];
9156 dwarf2_start_subfile (fe->name, dir, NULL);
3019eac3 9157
f4dc4d17
DE
9158 /* Note: We don't have to watch for the main subfile here, type units
9159 don't have DW_AT_name. */
3019eac3 9160
f4dc4d17
DE
9161 if (current_subfile->symtab == NULL)
9162 {
9163 /* NOTE: start_subfile will recognize when it's been passed
9164 a file it has already seen. So we can't assume there's a
9165 simple mapping from lh->file_names to subfiles,
9166 lh->file_names may contain dups. */
9167 current_subfile->symtab = allocate_symtab (current_subfile->name,
9168 objfile);
9169 }
9170
9171 fe->symtab = current_subfile->symtab;
9172 tu_group->symtabs[i] = fe->symtab;
9173 }
9174 }
9175 else
3019eac3 9176 {
f4dc4d17
DE
9177 restart_symtab (0);
9178
9179 for (i = 0; i < lh->num_file_names; ++i)
9180 {
9181 struct file_entry *fe = &lh->file_names[i];
9182
9183 fe->symtab = tu_group->symtabs[i];
9184 }
3019eac3
DE
9185 }
9186
f4dc4d17
DE
9187 /* The main symtab is allocated last. Type units don't have DW_AT_name
9188 so they don't have a "real" (so to speak) symtab anyway.
9189 There is later code that will assign the main symtab to all symbols
9190 that don't have one. We need to handle the case of a symbol with a
9191 missing symtab (DW_AT_decl_file) anyway. */
9192}
3019eac3 9193
f4dc4d17
DE
9194/* Process DW_TAG_type_unit.
9195 For TUs we want to skip the first top level sibling if it's not the
9196 actual type being defined by this TU. In this case the first top
9197 level sibling is there to provide context only. */
3019eac3 9198
f4dc4d17
DE
9199static void
9200read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
9201{
9202 struct die_info *child_die;
3019eac3 9203
f4dc4d17
DE
9204 prepare_one_comp_unit (cu, die, language_minimal);
9205
9206 /* Initialize (or reinitialize) the machinery for building symtabs.
9207 We do this before processing child DIEs, so that the line header table
9208 is available for DW_AT_decl_file. */
9209 setup_type_unit_groups (die, cu);
9210
9211 if (die->child != NULL)
9212 {
9213 child_die = die->child;
9214 while (child_die && child_die->tag)
9215 {
9216 process_die (child_die, cu);
9217 child_die = sibling_die (child_die);
9218 }
9219 }
3019eac3
DE
9220}
9221\f
80626a55
DE
9222/* DWO/DWP files.
9223
9224 http://gcc.gnu.org/wiki/DebugFission
9225 http://gcc.gnu.org/wiki/DebugFissionDWP
9226
9227 To simplify handling of both DWO files ("object" files with the DWARF info)
9228 and DWP files (a file with the DWOs packaged up into one file), we treat
9229 DWP files as having a collection of virtual DWO files. */
3019eac3
DE
9230
9231static hashval_t
9232hash_dwo_file (const void *item)
9233{
9234 const struct dwo_file *dwo_file = item;
a2ce51a0 9235 hashval_t hash;
3019eac3 9236
a2ce51a0
DE
9237 hash = htab_hash_string (dwo_file->dwo_name);
9238 if (dwo_file->comp_dir != NULL)
9239 hash += htab_hash_string (dwo_file->comp_dir);
9240 return hash;
3019eac3
DE
9241}
9242
9243static int
9244eq_dwo_file (const void *item_lhs, const void *item_rhs)
9245{
9246 const struct dwo_file *lhs = item_lhs;
9247 const struct dwo_file *rhs = item_rhs;
9248
a2ce51a0
DE
9249 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
9250 return 0;
9251 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
9252 return lhs->comp_dir == rhs->comp_dir;
9253 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
3019eac3
DE
9254}
9255
9256/* Allocate a hash table for DWO files. */
9257
9258static htab_t
9259allocate_dwo_file_hash_table (void)
9260{
9261 struct objfile *objfile = dwarf2_per_objfile->objfile;
9262
9263 return htab_create_alloc_ex (41,
9264 hash_dwo_file,
9265 eq_dwo_file,
9266 NULL,
9267 &objfile->objfile_obstack,
9268 hashtab_obstack_allocate,
9269 dummy_obstack_deallocate);
9270}
9271
80626a55
DE
9272/* Lookup DWO file DWO_NAME. */
9273
9274static void **
0ac5b59e 9275lookup_dwo_file_slot (const char *dwo_name, const char *comp_dir)
80626a55
DE
9276{
9277 struct dwo_file find_entry;
9278 void **slot;
9279
9280 if (dwarf2_per_objfile->dwo_files == NULL)
9281 dwarf2_per_objfile->dwo_files = allocate_dwo_file_hash_table ();
9282
9283 memset (&find_entry, 0, sizeof (find_entry));
0ac5b59e
DE
9284 find_entry.dwo_name = dwo_name;
9285 find_entry.comp_dir = comp_dir;
80626a55
DE
9286 slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
9287
9288 return slot;
9289}
9290
3019eac3
DE
9291static hashval_t
9292hash_dwo_unit (const void *item)
9293{
9294 const struct dwo_unit *dwo_unit = item;
9295
9296 /* This drops the top 32 bits of the id, but is ok for a hash. */
9297 return dwo_unit->signature;
9298}
9299
9300static int
9301eq_dwo_unit (const void *item_lhs, const void *item_rhs)
9302{
9303 const struct dwo_unit *lhs = item_lhs;
9304 const struct dwo_unit *rhs = item_rhs;
9305
9306 /* The signature is assumed to be unique within the DWO file.
9307 So while object file CU dwo_id's always have the value zero,
9308 that's OK, assuming each object file DWO file has only one CU,
9309 and that's the rule for now. */
9310 return lhs->signature == rhs->signature;
9311}
9312
9313/* Allocate a hash table for DWO CUs,TUs.
9314 There is one of these tables for each of CUs,TUs for each DWO file. */
9315
9316static htab_t
9317allocate_dwo_unit_table (struct objfile *objfile)
9318{
9319 /* Start out with a pretty small number.
9320 Generally DWO files contain only one CU and maybe some TUs. */
9321 return htab_create_alloc_ex (3,
9322 hash_dwo_unit,
9323 eq_dwo_unit,
9324 NULL,
9325 &objfile->objfile_obstack,
9326 hashtab_obstack_allocate,
9327 dummy_obstack_deallocate);
9328}
9329
80626a55 9330/* Structure used to pass data to create_dwo_debug_info_hash_table_reader. */
3019eac3 9331
19c3d4c9 9332struct create_dwo_cu_data
3019eac3
DE
9333{
9334 struct dwo_file *dwo_file;
19c3d4c9 9335 struct dwo_unit dwo_unit;
3019eac3
DE
9336};
9337
19c3d4c9 9338/* die_reader_func for create_dwo_cu. */
3019eac3
DE
9339
9340static void
19c3d4c9
DE
9341create_dwo_cu_reader (const struct die_reader_specs *reader,
9342 const gdb_byte *info_ptr,
9343 struct die_info *comp_unit_die,
9344 int has_children,
9345 void *datap)
3019eac3
DE
9346{
9347 struct dwarf2_cu *cu = reader->cu;
9348 struct objfile *objfile = dwarf2_per_objfile->objfile;
9349 sect_offset offset = cu->per_cu->offset;
8a0459fd 9350 struct dwarf2_section_info *section = cu->per_cu->section;
19c3d4c9 9351 struct create_dwo_cu_data *data = datap;
3019eac3 9352 struct dwo_file *dwo_file = data->dwo_file;
19c3d4c9 9353 struct dwo_unit *dwo_unit = &data->dwo_unit;
3019eac3 9354 struct attribute *attr;
3019eac3
DE
9355
9356 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
9357 if (attr == NULL)
9358 {
19c3d4c9
DE
9359 complaint (&symfile_complaints,
9360 _("Dwarf Error: debug entry at offset 0x%x is missing"
9361 " its dwo_id [in module %s]"),
9362 offset.sect_off, dwo_file->dwo_name);
3019eac3
DE
9363 return;
9364 }
9365
3019eac3
DE
9366 dwo_unit->dwo_file = dwo_file;
9367 dwo_unit->signature = DW_UNSND (attr);
8a0459fd 9368 dwo_unit->section = section;
3019eac3
DE
9369 dwo_unit->offset = offset;
9370 dwo_unit->length = cu->per_cu->length;
9371
09406207 9372 if (dwarf2_read_debug)
4031ecc5
DE
9373 fprintf_unfiltered (gdb_stdlog, " offset 0x%x, dwo_id %s\n",
9374 offset.sect_off, hex_string (dwo_unit->signature));
3019eac3
DE
9375}
9376
19c3d4c9
DE
9377/* Create the dwo_unit for the lone CU in DWO_FILE.
9378 Note: This function processes DWO files only, not DWP files. */
3019eac3 9379
19c3d4c9
DE
9380static struct dwo_unit *
9381create_dwo_cu (struct dwo_file *dwo_file)
3019eac3
DE
9382{
9383 struct objfile *objfile = dwarf2_per_objfile->objfile;
9384 struct dwarf2_section_info *section = &dwo_file->sections.info;
9385 bfd *abfd;
9386 htab_t cu_htab;
d521ce57 9387 const gdb_byte *info_ptr, *end_ptr;
19c3d4c9
DE
9388 struct create_dwo_cu_data create_dwo_cu_data;
9389 struct dwo_unit *dwo_unit;
3019eac3
DE
9390
9391 dwarf2_read_section (objfile, section);
9392 info_ptr = section->buffer;
9393
9394 if (info_ptr == NULL)
9395 return NULL;
9396
9397 /* We can't set abfd until now because the section may be empty or
9398 not present, in which case section->asection will be NULL. */
a32a8923 9399 abfd = get_section_bfd_owner (section);
3019eac3 9400
09406207 9401 if (dwarf2_read_debug)
19c3d4c9
DE
9402 {
9403 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
a32a8923
DE
9404 get_section_name (section),
9405 get_section_file_name (section));
19c3d4c9 9406 }
3019eac3 9407
19c3d4c9
DE
9408 create_dwo_cu_data.dwo_file = dwo_file;
9409 dwo_unit = NULL;
3019eac3
DE
9410
9411 end_ptr = info_ptr + section->size;
9412 while (info_ptr < end_ptr)
9413 {
9414 struct dwarf2_per_cu_data per_cu;
9415
19c3d4c9
DE
9416 memset (&create_dwo_cu_data.dwo_unit, 0,
9417 sizeof (create_dwo_cu_data.dwo_unit));
3019eac3
DE
9418 memset (&per_cu, 0, sizeof (per_cu));
9419 per_cu.objfile = objfile;
9420 per_cu.is_debug_types = 0;
9421 per_cu.offset.sect_off = info_ptr - section->buffer;
8a0459fd 9422 per_cu.section = section;
3019eac3 9423
33e80786 9424 init_cutu_and_read_dies_no_follow (&per_cu, dwo_file,
19c3d4c9
DE
9425 create_dwo_cu_reader,
9426 &create_dwo_cu_data);
9427
9428 if (create_dwo_cu_data.dwo_unit.dwo_file != NULL)
9429 {
9430 /* If we've already found one, complain. We only support one
9431 because having more than one requires hacking the dwo_name of
9432 each to match, which is highly unlikely to happen. */
9433 if (dwo_unit != NULL)
9434 {
9435 complaint (&symfile_complaints,
9436 _("Multiple CUs in DWO file %s [in module %s]"),
4262abfb 9437 dwo_file->dwo_name, objfile_name (objfile));
19c3d4c9
DE
9438 break;
9439 }
9440
9441 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
9442 *dwo_unit = create_dwo_cu_data.dwo_unit;
9443 }
3019eac3
DE
9444
9445 info_ptr += per_cu.length;
9446 }
9447
19c3d4c9 9448 return dwo_unit;
3019eac3
DE
9449}
9450
80626a55
DE
9451/* DWP file .debug_{cu,tu}_index section format:
9452 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
9453
d2415c6c
DE
9454 DWP Version 1:
9455
80626a55
DE
9456 Both index sections have the same format, and serve to map a 64-bit
9457 signature to a set of section numbers. Each section begins with a header,
9458 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
9459 indexes, and a pool of 32-bit section numbers. The index sections will be
9460 aligned at 8-byte boundaries in the file.
9461
d2415c6c
DE
9462 The index section header consists of:
9463
9464 V, 32 bit version number
9465 -, 32 bits unused
9466 N, 32 bit number of compilation units or type units in the index
9467 M, 32 bit number of slots in the hash table
80626a55 9468
d2415c6c 9469 Numbers are recorded using the byte order of the application binary.
80626a55 9470
d2415c6c
DE
9471 The hash table begins at offset 16 in the section, and consists of an array
9472 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
9473 order of the application binary). Unused slots in the hash table are 0.
9474 (We rely on the extreme unlikeliness of a signature being exactly 0.)
80626a55 9475
d2415c6c
DE
9476 The parallel table begins immediately after the hash table
9477 (at offset 16 + 8 * M from the beginning of the section), and consists of an
9478 array of 32-bit indexes (using the byte order of the application binary),
9479 corresponding 1-1 with slots in the hash table. Each entry in the parallel
9480 table contains a 32-bit index into the pool of section numbers. For unused
9481 hash table slots, the corresponding entry in the parallel table will be 0.
80626a55 9482
73869dc2
DE
9483 The pool of section numbers begins immediately following the hash table
9484 (at offset 16 + 12 * M from the beginning of the section). The pool of
9485 section numbers consists of an array of 32-bit words (using the byte order
9486 of the application binary). Each item in the array is indexed starting
9487 from 0. The hash table entry provides the index of the first section
9488 number in the set. Additional section numbers in the set follow, and the
9489 set is terminated by a 0 entry (section number 0 is not used in ELF).
9490
9491 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
9492 section must be the first entry in the set, and the .debug_abbrev.dwo must
9493 be the second entry. Other members of the set may follow in any order.
9494
9495 ---
9496
9497 DWP Version 2:
9498
9499 DWP Version 2 combines all the .debug_info, etc. sections into one,
9500 and the entries in the index tables are now offsets into these sections.
9501 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
9502 section.
9503
9504 Index Section Contents:
9505 Header
9506 Hash Table of Signatures dwp_hash_table.hash_table
9507 Parallel Table of Indices dwp_hash_table.unit_table
9508 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
9509 Table of Section Sizes dwp_hash_table.v2.sizes
9510
9511 The index section header consists of:
9512
9513 V, 32 bit version number
9514 L, 32 bit number of columns in the table of section offsets
9515 N, 32 bit number of compilation units or type units in the index
9516 M, 32 bit number of slots in the hash table
9517
9518 Numbers are recorded using the byte order of the application binary.
9519
9520 The hash table has the same format as version 1.
9521 The parallel table of indices has the same format as version 1,
9522 except that the entries are origin-1 indices into the table of sections
9523 offsets and the table of section sizes.
9524
9525 The table of offsets begins immediately following the parallel table
9526 (at offset 16 + 12 * M from the beginning of the section). The table is
9527 a two-dimensional array of 32-bit words (using the byte order of the
9528 application binary), with L columns and N+1 rows, in row-major order.
9529 Each row in the array is indexed starting from 0. The first row provides
9530 a key to the remaining rows: each column in this row provides an identifier
9531 for a debug section, and the offsets in the same column of subsequent rows
9532 refer to that section. The section identifiers are:
9533
9534 DW_SECT_INFO 1 .debug_info.dwo
9535 DW_SECT_TYPES 2 .debug_types.dwo
9536 DW_SECT_ABBREV 3 .debug_abbrev.dwo
9537 DW_SECT_LINE 4 .debug_line.dwo
9538 DW_SECT_LOC 5 .debug_loc.dwo
9539 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
9540 DW_SECT_MACINFO 7 .debug_macinfo.dwo
9541 DW_SECT_MACRO 8 .debug_macro.dwo
9542
9543 The offsets provided by the CU and TU index sections are the base offsets
9544 for the contributions made by each CU or TU to the corresponding section
9545 in the package file. Each CU and TU header contains an abbrev_offset
9546 field, used to find the abbreviations table for that CU or TU within the
9547 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
9548 be interpreted as relative to the base offset given in the index section.
9549 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
9550 should be interpreted as relative to the base offset for .debug_line.dwo,
9551 and offsets into other debug sections obtained from DWARF attributes should
9552 also be interpreted as relative to the corresponding base offset.
9553
9554 The table of sizes begins immediately following the table of offsets.
9555 Like the table of offsets, it is a two-dimensional array of 32-bit words,
9556 with L columns and N rows, in row-major order. Each row in the array is
9557 indexed starting from 1 (row 0 is shared by the two tables).
9558
9559 ---
9560
9561 Hash table lookup is handled the same in version 1 and 2:
9562
9563 We assume that N and M will not exceed 2^32 - 1.
9564 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
9565
d2415c6c
DE
9566 Given a 64-bit compilation unit signature or a type signature S, an entry
9567 in the hash table is located as follows:
80626a55 9568
d2415c6c
DE
9569 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
9570 the low-order k bits all set to 1.
80626a55 9571
d2415c6c 9572 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
80626a55 9573
d2415c6c
DE
9574 3) If the hash table entry at index H matches the signature, use that
9575 entry. If the hash table entry at index H is unused (all zeroes),
9576 terminate the search: the signature is not present in the table.
80626a55 9577
d2415c6c 9578 4) Let H = (H + H') modulo M. Repeat at Step 3.
80626a55 9579
d2415c6c 9580 Because M > N and H' and M are relatively prime, the search is guaranteed
73869dc2 9581 to stop at an unused slot or find the match. */
80626a55
DE
9582
9583/* Create a hash table to map DWO IDs to their CU/TU entry in
9584 .debug_{info,types}.dwo in DWP_FILE.
9585 Returns NULL if there isn't one.
9586 Note: This function processes DWP files only, not DWO files. */
9587
9588static struct dwp_hash_table *
9589create_dwp_hash_table (struct dwp_file *dwp_file, int is_debug_types)
9590{
9591 struct objfile *objfile = dwarf2_per_objfile->objfile;
9592 bfd *dbfd = dwp_file->dbfd;
948f8e3d 9593 const gdb_byte *index_ptr, *index_end;
80626a55 9594 struct dwarf2_section_info *index;
73869dc2 9595 uint32_t version, nr_columns, nr_units, nr_slots;
80626a55
DE
9596 struct dwp_hash_table *htab;
9597
9598 if (is_debug_types)
9599 index = &dwp_file->sections.tu_index;
9600 else
9601 index = &dwp_file->sections.cu_index;
9602
9603 if (dwarf2_section_empty_p (index))
9604 return NULL;
9605 dwarf2_read_section (objfile, index);
9606
9607 index_ptr = index->buffer;
9608 index_end = index_ptr + index->size;
9609
9610 version = read_4_bytes (dbfd, index_ptr);
73869dc2
DE
9611 index_ptr += 4;
9612 if (version == 2)
9613 nr_columns = read_4_bytes (dbfd, index_ptr);
9614 else
9615 nr_columns = 0;
9616 index_ptr += 4;
80626a55
DE
9617 nr_units = read_4_bytes (dbfd, index_ptr);
9618 index_ptr += 4;
9619 nr_slots = read_4_bytes (dbfd, index_ptr);
9620 index_ptr += 4;
9621
73869dc2 9622 if (version != 1 && version != 2)
80626a55 9623 {
21aa081e 9624 error (_("Dwarf Error: unsupported DWP file version (%s)"
80626a55 9625 " [in module %s]"),
21aa081e 9626 pulongest (version), dwp_file->name);
80626a55
DE
9627 }
9628 if (nr_slots != (nr_slots & -nr_slots))
9629 {
21aa081e 9630 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
80626a55 9631 " is not power of 2 [in module %s]"),
21aa081e 9632 pulongest (nr_slots), dwp_file->name);
80626a55
DE
9633 }
9634
9635 htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
73869dc2
DE
9636 htab->version = version;
9637 htab->nr_columns = nr_columns;
80626a55
DE
9638 htab->nr_units = nr_units;
9639 htab->nr_slots = nr_slots;
9640 htab->hash_table = index_ptr;
9641 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
73869dc2
DE
9642
9643 /* Exit early if the table is empty. */
9644 if (nr_slots == 0 || nr_units == 0
9645 || (version == 2 && nr_columns == 0))
9646 {
9647 /* All must be zero. */
9648 if (nr_slots != 0 || nr_units != 0
9649 || (version == 2 && nr_columns != 0))
9650 {
9651 complaint (&symfile_complaints,
9652 _("Empty DWP but nr_slots,nr_units,nr_columns not"
9653 " all zero [in modules %s]"),
9654 dwp_file->name);
9655 }
9656 return htab;
9657 }
9658
9659 if (version == 1)
9660 {
9661 htab->section_pool.v1.indices =
9662 htab->unit_table + sizeof (uint32_t) * nr_slots;
9663 /* It's harder to decide whether the section is too small in v1.
9664 V1 is deprecated anyway so we punt. */
9665 }
9666 else
9667 {
9668 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
9669 int *ids = htab->section_pool.v2.section_ids;
9670 /* Reverse map for error checking. */
9671 int ids_seen[DW_SECT_MAX + 1];
9672 int i;
9673
9674 if (nr_columns < 2)
9675 {
9676 error (_("Dwarf Error: bad DWP hash table, too few columns"
9677 " in section table [in module %s]"),
9678 dwp_file->name);
9679 }
9680 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
9681 {
9682 error (_("Dwarf Error: bad DWP hash table, too many columns"
9683 " in section table [in module %s]"),
9684 dwp_file->name);
9685 }
9686 memset (ids, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
9687 memset (ids_seen, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
9688 for (i = 0; i < nr_columns; ++i)
9689 {
9690 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
9691
9692 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
9693 {
9694 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
9695 " in section table [in module %s]"),
9696 id, dwp_file->name);
9697 }
9698 if (ids_seen[id] != -1)
9699 {
9700 error (_("Dwarf Error: bad DWP hash table, duplicate section"
9701 " id %d in section table [in module %s]"),
9702 id, dwp_file->name);
9703 }
9704 ids_seen[id] = i;
9705 ids[i] = id;
9706 }
9707 /* Must have exactly one info or types section. */
9708 if (((ids_seen[DW_SECT_INFO] != -1)
9709 + (ids_seen[DW_SECT_TYPES] != -1))
9710 != 1)
9711 {
9712 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
9713 " DWO info/types section [in module %s]"),
9714 dwp_file->name);
9715 }
9716 /* Must have an abbrev section. */
9717 if (ids_seen[DW_SECT_ABBREV] == -1)
9718 {
9719 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
9720 " section [in module %s]"),
9721 dwp_file->name);
9722 }
9723 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
9724 htab->section_pool.v2.sizes =
9725 htab->section_pool.v2.offsets + (sizeof (uint32_t)
9726 * nr_units * nr_columns);
9727 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
9728 * nr_units * nr_columns))
9729 > index_end)
9730 {
9731 error (_("Dwarf Error: DWP index section is corrupt (too small)"
9732 " [in module %s]"),
9733 dwp_file->name);
9734 }
9735 }
80626a55
DE
9736
9737 return htab;
9738}
9739
9740/* Update SECTIONS with the data from SECTP.
9741
9742 This function is like the other "locate" section routines that are
9743 passed to bfd_map_over_sections, but in this context the sections to
73869dc2 9744 read comes from the DWP V1 hash table, not the full ELF section table.
80626a55
DE
9745
9746 The result is non-zero for success, or zero if an error was found. */
9747
9748static int
73869dc2
DE
9749locate_v1_virtual_dwo_sections (asection *sectp,
9750 struct virtual_v1_dwo_sections *sections)
80626a55
DE
9751{
9752 const struct dwop_section_names *names = &dwop_section_names;
9753
9754 if (section_is_p (sectp->name, &names->abbrev_dwo))
9755 {
9756 /* There can be only one. */
73869dc2 9757 if (sections->abbrev.s.asection != NULL)
80626a55 9758 return 0;
73869dc2 9759 sections->abbrev.s.asection = sectp;
80626a55
DE
9760 sections->abbrev.size = bfd_get_section_size (sectp);
9761 }
9762 else if (section_is_p (sectp->name, &names->info_dwo)
9763 || section_is_p (sectp->name, &names->types_dwo))
9764 {
9765 /* There can be only one. */
73869dc2 9766 if (sections->info_or_types.s.asection != NULL)
80626a55 9767 return 0;
73869dc2 9768 sections->info_or_types.s.asection = sectp;
80626a55
DE
9769 sections->info_or_types.size = bfd_get_section_size (sectp);
9770 }
9771 else if (section_is_p (sectp->name, &names->line_dwo))
9772 {
9773 /* There can be only one. */
73869dc2 9774 if (sections->line.s.asection != NULL)
80626a55 9775 return 0;
73869dc2 9776 sections->line.s.asection = sectp;
80626a55
DE
9777 sections->line.size = bfd_get_section_size (sectp);
9778 }
9779 else if (section_is_p (sectp->name, &names->loc_dwo))
9780 {
9781 /* There can be only one. */
73869dc2 9782 if (sections->loc.s.asection != NULL)
80626a55 9783 return 0;
73869dc2 9784 sections->loc.s.asection = sectp;
80626a55
DE
9785 sections->loc.size = bfd_get_section_size (sectp);
9786 }
9787 else if (section_is_p (sectp->name, &names->macinfo_dwo))
9788 {
9789 /* There can be only one. */
73869dc2 9790 if (sections->macinfo.s.asection != NULL)
80626a55 9791 return 0;
73869dc2 9792 sections->macinfo.s.asection = sectp;
80626a55
DE
9793 sections->macinfo.size = bfd_get_section_size (sectp);
9794 }
9795 else if (section_is_p (sectp->name, &names->macro_dwo))
9796 {
9797 /* There can be only one. */
73869dc2 9798 if (sections->macro.s.asection != NULL)
80626a55 9799 return 0;
73869dc2 9800 sections->macro.s.asection = sectp;
80626a55
DE
9801 sections->macro.size = bfd_get_section_size (sectp);
9802 }
9803 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
9804 {
9805 /* There can be only one. */
73869dc2 9806 if (sections->str_offsets.s.asection != NULL)
80626a55 9807 return 0;
73869dc2 9808 sections->str_offsets.s.asection = sectp;
80626a55
DE
9809 sections->str_offsets.size = bfd_get_section_size (sectp);
9810 }
9811 else
9812 {
9813 /* No other kind of section is valid. */
9814 return 0;
9815 }
9816
9817 return 1;
9818}
9819
73869dc2
DE
9820/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
9821 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
9822 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
9823 This is for DWP version 1 files. */
80626a55
DE
9824
9825static struct dwo_unit *
73869dc2
DE
9826create_dwo_unit_in_dwp_v1 (struct dwp_file *dwp_file,
9827 uint32_t unit_index,
9828 const char *comp_dir,
9829 ULONGEST signature, int is_debug_types)
80626a55
DE
9830{
9831 struct objfile *objfile = dwarf2_per_objfile->objfile;
73869dc2
DE
9832 const struct dwp_hash_table *dwp_htab =
9833 is_debug_types ? dwp_file->tus : dwp_file->cus;
80626a55
DE
9834 bfd *dbfd = dwp_file->dbfd;
9835 const char *kind = is_debug_types ? "TU" : "CU";
9836 struct dwo_file *dwo_file;
9837 struct dwo_unit *dwo_unit;
73869dc2 9838 struct virtual_v1_dwo_sections sections;
80626a55
DE
9839 void **dwo_file_slot;
9840 char *virtual_dwo_name;
9841 struct dwarf2_section_info *cutu;
9842 struct cleanup *cleanups;
9843 int i;
9844
73869dc2
DE
9845 gdb_assert (dwp_file->version == 1);
9846
80626a55
DE
9847 if (dwarf2_read_debug)
9848 {
73869dc2 9849 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
80626a55 9850 kind,
73869dc2 9851 pulongest (unit_index), hex_string (signature),
80626a55
DE
9852 dwp_file->name);
9853 }
9854
19ac8c2e 9855 /* Fetch the sections of this DWO unit.
80626a55
DE
9856 Put a limit on the number of sections we look for so that bad data
9857 doesn't cause us to loop forever. */
9858
73869dc2 9859#define MAX_NR_V1_DWO_SECTIONS \
80626a55
DE
9860 (1 /* .debug_info or .debug_types */ \
9861 + 1 /* .debug_abbrev */ \
9862 + 1 /* .debug_line */ \
9863 + 1 /* .debug_loc */ \
9864 + 1 /* .debug_str_offsets */ \
19ac8c2e 9865 + 1 /* .debug_macro or .debug_macinfo */ \
80626a55
DE
9866 + 1 /* trailing zero */)
9867
9868 memset (&sections, 0, sizeof (sections));
9869 cleanups = make_cleanup (null_cleanup, 0);
9870
73869dc2 9871 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
80626a55
DE
9872 {
9873 asection *sectp;
9874 uint32_t section_nr =
9875 read_4_bytes (dbfd,
73869dc2
DE
9876 dwp_htab->section_pool.v1.indices
9877 + (unit_index + i) * sizeof (uint32_t));
80626a55
DE
9878
9879 if (section_nr == 0)
9880 break;
9881 if (section_nr >= dwp_file->num_sections)
9882 {
9883 error (_("Dwarf Error: bad DWP hash table, section number too large"
9884 " [in module %s]"),
9885 dwp_file->name);
9886 }
9887
9888 sectp = dwp_file->elf_sections[section_nr];
73869dc2 9889 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
80626a55
DE
9890 {
9891 error (_("Dwarf Error: bad DWP hash table, invalid section found"
9892 " [in module %s]"),
9893 dwp_file->name);
9894 }
9895 }
9896
9897 if (i < 2
a32a8923
DE
9898 || dwarf2_section_empty_p (&sections.info_or_types)
9899 || dwarf2_section_empty_p (&sections.abbrev))
80626a55
DE
9900 {
9901 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
9902 " [in module %s]"),
9903 dwp_file->name);
9904 }
73869dc2 9905 if (i == MAX_NR_V1_DWO_SECTIONS)
80626a55
DE
9906 {
9907 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
9908 " [in module %s]"),
9909 dwp_file->name);
9910 }
9911
9912 /* It's easier for the rest of the code if we fake a struct dwo_file and
9913 have dwo_unit "live" in that. At least for now.
9914
9915 The DWP file can be made up of a random collection of CUs and TUs.
c766f7ec 9916 However, for each CU + set of TUs that came from the same original DWO
57d63ce2
DE
9917 file, we can combine them back into a virtual DWO file to save space
9918 (fewer struct dwo_file objects to allocate). Remember that for really
80626a55
DE
9919 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
9920
2792b94d
PM
9921 virtual_dwo_name =
9922 xstrprintf ("virtual-dwo/%d-%d-%d-%d",
a32a8923
DE
9923 get_section_id (&sections.abbrev),
9924 get_section_id (&sections.line),
9925 get_section_id (&sections.loc),
9926 get_section_id (&sections.str_offsets));
80626a55
DE
9927 make_cleanup (xfree, virtual_dwo_name);
9928 /* Can we use an existing virtual DWO file? */
0ac5b59e 9929 dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name, comp_dir);
80626a55
DE
9930 /* Create one if necessary. */
9931 if (*dwo_file_slot == NULL)
9932 {
9933 if (dwarf2_read_debug)
9934 {
9935 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
9936 virtual_dwo_name);
9937 }
9938 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
0ac5b59e
DE
9939 dwo_file->dwo_name = obstack_copy0 (&objfile->objfile_obstack,
9940 virtual_dwo_name,
9941 strlen (virtual_dwo_name));
9942 dwo_file->comp_dir = comp_dir;
80626a55
DE
9943 dwo_file->sections.abbrev = sections.abbrev;
9944 dwo_file->sections.line = sections.line;
9945 dwo_file->sections.loc = sections.loc;
9946 dwo_file->sections.macinfo = sections.macinfo;
9947 dwo_file->sections.macro = sections.macro;
9948 dwo_file->sections.str_offsets = sections.str_offsets;
9949 /* The "str" section is global to the entire DWP file. */
9950 dwo_file->sections.str = dwp_file->sections.str;
57d63ce2 9951 /* The info or types section is assigned below to dwo_unit,
80626a55
DE
9952 there's no need to record it in dwo_file.
9953 Also, we can't simply record type sections in dwo_file because
9954 we record a pointer into the vector in dwo_unit. As we collect more
9955 types we'll grow the vector and eventually have to reallocate space
57d63ce2
DE
9956 for it, invalidating all copies of pointers into the previous
9957 contents. */
80626a55
DE
9958 *dwo_file_slot = dwo_file;
9959 }
9960 else
9961 {
9962 if (dwarf2_read_debug)
9963 {
9964 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
9965 virtual_dwo_name);
9966 }
9967 dwo_file = *dwo_file_slot;
9968 }
9969 do_cleanups (cleanups);
9970
9971 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
9972 dwo_unit->dwo_file = dwo_file;
9973 dwo_unit->signature = signature;
8a0459fd
DE
9974 dwo_unit->section = obstack_alloc (&objfile->objfile_obstack,
9975 sizeof (struct dwarf2_section_info));
9976 *dwo_unit->section = sections.info_or_types;
57d63ce2 9977 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
80626a55
DE
9978
9979 return dwo_unit;
9980}
9981
73869dc2
DE
9982/* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
9983 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
9984 piece within that section used by a TU/CU, return a virtual section
9985 of just that piece. */
9986
9987static struct dwarf2_section_info
9988create_dwp_v2_section (struct dwarf2_section_info *section,
9989 bfd_size_type offset, bfd_size_type size)
9990{
9991 struct dwarf2_section_info result;
9992 asection *sectp;
9993
9994 gdb_assert (section != NULL);
9995 gdb_assert (!section->is_virtual);
9996
9997 memset (&result, 0, sizeof (result));
9998 result.s.containing_section = section;
9999 result.is_virtual = 1;
10000
10001 if (size == 0)
10002 return result;
10003
10004 sectp = get_section_bfd_section (section);
10005
10006 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
10007 bounds of the real section. This is a pretty-rare event, so just
10008 flag an error (easier) instead of a warning and trying to cope. */
10009 if (sectp == NULL
10010 || offset + size > bfd_get_section_size (sectp))
10011 {
10012 bfd *abfd = sectp->owner;
10013
10014 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
10015 " in section %s [in module %s]"),
10016 sectp ? bfd_section_name (abfd, sectp) : "<unknown>",
10017 objfile_name (dwarf2_per_objfile->objfile));
10018 }
10019
10020 result.virtual_offset = offset;
10021 result.size = size;
10022 return result;
10023}
10024
10025/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
10026 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
10027 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
10028 This is for DWP version 2 files. */
10029
10030static struct dwo_unit *
10031create_dwo_unit_in_dwp_v2 (struct dwp_file *dwp_file,
10032 uint32_t unit_index,
10033 const char *comp_dir,
10034 ULONGEST signature, int is_debug_types)
10035{
10036 struct objfile *objfile = dwarf2_per_objfile->objfile;
10037 const struct dwp_hash_table *dwp_htab =
10038 is_debug_types ? dwp_file->tus : dwp_file->cus;
10039 bfd *dbfd = dwp_file->dbfd;
10040 const char *kind = is_debug_types ? "TU" : "CU";
10041 struct dwo_file *dwo_file;
10042 struct dwo_unit *dwo_unit;
10043 struct virtual_v2_dwo_sections sections;
10044 void **dwo_file_slot;
10045 char *virtual_dwo_name;
10046 struct dwarf2_section_info *cutu;
10047 struct cleanup *cleanups;
10048 int i;
10049
10050 gdb_assert (dwp_file->version == 2);
10051
10052 if (dwarf2_read_debug)
10053 {
10054 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
10055 kind,
10056 pulongest (unit_index), hex_string (signature),
10057 dwp_file->name);
10058 }
10059
10060 /* Fetch the section offsets of this DWO unit. */
10061
10062 memset (&sections, 0, sizeof (sections));
10063 cleanups = make_cleanup (null_cleanup, 0);
10064
10065 for (i = 0; i < dwp_htab->nr_columns; ++i)
10066 {
10067 uint32_t offset = read_4_bytes (dbfd,
10068 dwp_htab->section_pool.v2.offsets
10069 + (((unit_index - 1) * dwp_htab->nr_columns
10070 + i)
10071 * sizeof (uint32_t)));
10072 uint32_t size = read_4_bytes (dbfd,
10073 dwp_htab->section_pool.v2.sizes
10074 + (((unit_index - 1) * dwp_htab->nr_columns
10075 + i)
10076 * sizeof (uint32_t)));
10077
10078 switch (dwp_htab->section_pool.v2.section_ids[i])
10079 {
10080 case DW_SECT_INFO:
10081 case DW_SECT_TYPES:
10082 sections.info_or_types_offset = offset;
10083 sections.info_or_types_size = size;
10084 break;
10085 case DW_SECT_ABBREV:
10086 sections.abbrev_offset = offset;
10087 sections.abbrev_size = size;
10088 break;
10089 case DW_SECT_LINE:
10090 sections.line_offset = offset;
10091 sections.line_size = size;
10092 break;
10093 case DW_SECT_LOC:
10094 sections.loc_offset = offset;
10095 sections.loc_size = size;
10096 break;
10097 case DW_SECT_STR_OFFSETS:
10098 sections.str_offsets_offset = offset;
10099 sections.str_offsets_size = size;
10100 break;
10101 case DW_SECT_MACINFO:
10102 sections.macinfo_offset = offset;
10103 sections.macinfo_size = size;
10104 break;
10105 case DW_SECT_MACRO:
10106 sections.macro_offset = offset;
10107 sections.macro_size = size;
10108 break;
10109 }
10110 }
10111
10112 /* It's easier for the rest of the code if we fake a struct dwo_file and
10113 have dwo_unit "live" in that. At least for now.
10114
10115 The DWP file can be made up of a random collection of CUs and TUs.
10116 However, for each CU + set of TUs that came from the same original DWO
10117 file, we can combine them back into a virtual DWO file to save space
10118 (fewer struct dwo_file objects to allocate). Remember that for really
10119 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
10120
10121 virtual_dwo_name =
10122 xstrprintf ("virtual-dwo/%ld-%ld-%ld-%ld",
10123 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
10124 (long) (sections.line_size ? sections.line_offset : 0),
10125 (long) (sections.loc_size ? sections.loc_offset : 0),
10126 (long) (sections.str_offsets_size
10127 ? sections.str_offsets_offset : 0));
10128 make_cleanup (xfree, virtual_dwo_name);
10129 /* Can we use an existing virtual DWO file? */
10130 dwo_file_slot = lookup_dwo_file_slot (virtual_dwo_name, comp_dir);
10131 /* Create one if necessary. */
10132 if (*dwo_file_slot == NULL)
10133 {
10134 if (dwarf2_read_debug)
10135 {
10136 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
10137 virtual_dwo_name);
10138 }
10139 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
10140 dwo_file->dwo_name = obstack_copy0 (&objfile->objfile_obstack,
10141 virtual_dwo_name,
10142 strlen (virtual_dwo_name));
10143 dwo_file->comp_dir = comp_dir;
10144 dwo_file->sections.abbrev =
10145 create_dwp_v2_section (&dwp_file->sections.abbrev,
10146 sections.abbrev_offset, sections.abbrev_size);
10147 dwo_file->sections.line =
10148 create_dwp_v2_section (&dwp_file->sections.line,
10149 sections.line_offset, sections.line_size);
10150 dwo_file->sections.loc =
10151 create_dwp_v2_section (&dwp_file->sections.loc,
10152 sections.loc_offset, sections.loc_size);
10153 dwo_file->sections.macinfo =
10154 create_dwp_v2_section (&dwp_file->sections.macinfo,
10155 sections.macinfo_offset, sections.macinfo_size);
10156 dwo_file->sections.macro =
10157 create_dwp_v2_section (&dwp_file->sections.macro,
10158 sections.macro_offset, sections.macro_size);
10159 dwo_file->sections.str_offsets =
10160 create_dwp_v2_section (&dwp_file->sections.str_offsets,
10161 sections.str_offsets_offset,
10162 sections.str_offsets_size);
10163 /* The "str" section is global to the entire DWP file. */
10164 dwo_file->sections.str = dwp_file->sections.str;
10165 /* The info or types section is assigned below to dwo_unit,
10166 there's no need to record it in dwo_file.
10167 Also, we can't simply record type sections in dwo_file because
10168 we record a pointer into the vector in dwo_unit. As we collect more
10169 types we'll grow the vector and eventually have to reallocate space
10170 for it, invalidating all copies of pointers into the previous
10171 contents. */
10172 *dwo_file_slot = dwo_file;
10173 }
10174 else
10175 {
10176 if (dwarf2_read_debug)
10177 {
10178 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
10179 virtual_dwo_name);
10180 }
10181 dwo_file = *dwo_file_slot;
10182 }
10183 do_cleanups (cleanups);
10184
10185 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
10186 dwo_unit->dwo_file = dwo_file;
10187 dwo_unit->signature = signature;
10188 dwo_unit->section = obstack_alloc (&objfile->objfile_obstack,
10189 sizeof (struct dwarf2_section_info));
10190 *dwo_unit->section = create_dwp_v2_section (is_debug_types
10191 ? &dwp_file->sections.types
10192 : &dwp_file->sections.info,
10193 sections.info_or_types_offset,
10194 sections.info_or_types_size);
10195 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
10196
10197 return dwo_unit;
10198}
10199
57d63ce2
DE
10200/* Lookup the DWO unit with SIGNATURE in DWP_FILE.
10201 Returns NULL if the signature isn't found. */
80626a55
DE
10202
10203static struct dwo_unit *
57d63ce2
DE
10204lookup_dwo_unit_in_dwp (struct dwp_file *dwp_file, const char *comp_dir,
10205 ULONGEST signature, int is_debug_types)
80626a55 10206{
57d63ce2
DE
10207 const struct dwp_hash_table *dwp_htab =
10208 is_debug_types ? dwp_file->tus : dwp_file->cus;
80626a55 10209 bfd *dbfd = dwp_file->dbfd;
57d63ce2 10210 uint32_t mask = dwp_htab->nr_slots - 1;
80626a55
DE
10211 uint32_t hash = signature & mask;
10212 uint32_t hash2 = ((signature >> 32) & mask) | 1;
10213 unsigned int i;
10214 void **slot;
10215 struct dwo_unit find_dwo_cu, *dwo_cu;
10216
10217 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
10218 find_dwo_cu.signature = signature;
19ac8c2e
DE
10219 slot = htab_find_slot (is_debug_types
10220 ? dwp_file->loaded_tus
10221 : dwp_file->loaded_cus,
10222 &find_dwo_cu, INSERT);
80626a55
DE
10223
10224 if (*slot != NULL)
10225 return *slot;
10226
10227 /* Use a for loop so that we don't loop forever on bad debug info. */
57d63ce2 10228 for (i = 0; i < dwp_htab->nr_slots; ++i)
80626a55
DE
10229 {
10230 ULONGEST signature_in_table;
10231
10232 signature_in_table =
57d63ce2 10233 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
80626a55
DE
10234 if (signature_in_table == signature)
10235 {
57d63ce2
DE
10236 uint32_t unit_index =
10237 read_4_bytes (dbfd,
10238 dwp_htab->unit_table + hash * sizeof (uint32_t));
80626a55 10239
73869dc2
DE
10240 if (dwp_file->version == 1)
10241 {
10242 *slot = create_dwo_unit_in_dwp_v1 (dwp_file, unit_index,
10243 comp_dir, signature,
10244 is_debug_types);
10245 }
10246 else
10247 {
10248 *slot = create_dwo_unit_in_dwp_v2 (dwp_file, unit_index,
10249 comp_dir, signature,
10250 is_debug_types);
10251 }
80626a55
DE
10252 return *slot;
10253 }
10254 if (signature_in_table == 0)
10255 return NULL;
10256 hash = (hash + hash2) & mask;
10257 }
10258
10259 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
10260 " [in module %s]"),
10261 dwp_file->name);
10262}
10263
ab5088bf 10264/* Subroutine of open_dwo_file,open_dwp_file to simplify them.
3019eac3
DE
10265 Open the file specified by FILE_NAME and hand it off to BFD for
10266 preliminary analysis. Return a newly initialized bfd *, which
10267 includes a canonicalized copy of FILE_NAME.
80626a55 10268 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
6ac97d4c
DE
10269 SEARCH_CWD is true if the current directory is to be searched.
10270 It will be searched before debug-file-directory.
13aaf454
DE
10271 If successful, the file is added to the bfd include table of the
10272 objfile's bfd (see gdb_bfd_record_inclusion).
6ac97d4c 10273 If unable to find/open the file, return NULL.
3019eac3
DE
10274 NOTE: This function is derived from symfile_bfd_open. */
10275
10276static bfd *
6ac97d4c 10277try_open_dwop_file (const char *file_name, int is_dwp, int search_cwd)
3019eac3
DE
10278{
10279 bfd *sym_bfd;
80626a55 10280 int desc, flags;
3019eac3 10281 char *absolute_name;
9c02c129
DE
10282 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
10283 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
10284 to debug_file_directory. */
10285 char *search_path;
10286 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
10287
6ac97d4c
DE
10288 if (search_cwd)
10289 {
10290 if (*debug_file_directory != '\0')
10291 search_path = concat (".", dirname_separator_string,
10292 debug_file_directory, NULL);
10293 else
10294 search_path = xstrdup (".");
10295 }
9c02c129 10296 else
6ac97d4c 10297 search_path = xstrdup (debug_file_directory);
3019eac3 10298
492c0ab7 10299 flags = OPF_RETURN_REALPATH;
80626a55
DE
10300 if (is_dwp)
10301 flags |= OPF_SEARCH_IN_PATH;
9c02c129 10302 desc = openp (search_path, flags, file_name,
3019eac3 10303 O_RDONLY | O_BINARY, &absolute_name);
9c02c129 10304 xfree (search_path);
3019eac3
DE
10305 if (desc < 0)
10306 return NULL;
10307
bb397797 10308 sym_bfd = gdb_bfd_open (absolute_name, gnutarget, desc);
a4453b7e 10309 xfree (absolute_name);
9c02c129
DE
10310 if (sym_bfd == NULL)
10311 return NULL;
3019eac3
DE
10312 bfd_set_cacheable (sym_bfd, 1);
10313
10314 if (!bfd_check_format (sym_bfd, bfd_object))
10315 {
cbb099e8 10316 gdb_bfd_unref (sym_bfd); /* This also closes desc. */
3019eac3
DE
10317 return NULL;
10318 }
10319
13aaf454
DE
10320 /* Success. Record the bfd as having been included by the objfile's bfd.
10321 This is important because things like demangled_names_hash lives in the
10322 objfile's per_bfd space and may have references to things like symbol
10323 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
10324 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd);
10325
3019eac3
DE
10326 return sym_bfd;
10327}
10328
ab5088bf 10329/* Try to open DWO file FILE_NAME.
3019eac3
DE
10330 COMP_DIR is the DW_AT_comp_dir attribute.
10331 The result is the bfd handle of the file.
10332 If there is a problem finding or opening the file, return NULL.
10333 Upon success, the canonicalized path of the file is stored in the bfd,
10334 same as symfile_bfd_open. */
10335
10336static bfd *
ab5088bf 10337open_dwo_file (const char *file_name, const char *comp_dir)
3019eac3
DE
10338{
10339 bfd *abfd;
3019eac3 10340
80626a55 10341 if (IS_ABSOLUTE_PATH (file_name))
6ac97d4c 10342 return try_open_dwop_file (file_name, 0 /*is_dwp*/, 0 /*search_cwd*/);
3019eac3
DE
10343
10344 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
10345
10346 if (comp_dir != NULL)
10347 {
80626a55 10348 char *path_to_try = concat (comp_dir, SLASH_STRING, file_name, NULL);
3019eac3
DE
10349
10350 /* NOTE: If comp_dir is a relative path, this will also try the
10351 search path, which seems useful. */
6ac97d4c 10352 abfd = try_open_dwop_file (path_to_try, 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
10353 xfree (path_to_try);
10354 if (abfd != NULL)
10355 return abfd;
10356 }
10357
10358 /* That didn't work, try debug-file-directory, which, despite its name,
10359 is a list of paths. */
10360
10361 if (*debug_file_directory == '\0')
10362 return NULL;
10363
6ac97d4c 10364 return try_open_dwop_file (file_name, 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
10365}
10366
80626a55
DE
10367/* This function is mapped across the sections and remembers the offset and
10368 size of each of the DWO debugging sections we are interested in. */
10369
10370static void
10371dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
10372{
10373 struct dwo_sections *dwo_sections = dwo_sections_ptr;
10374 const struct dwop_section_names *names = &dwop_section_names;
10375
10376 if (section_is_p (sectp->name, &names->abbrev_dwo))
10377 {
73869dc2 10378 dwo_sections->abbrev.s.asection = sectp;
80626a55
DE
10379 dwo_sections->abbrev.size = bfd_get_section_size (sectp);
10380 }
10381 else if (section_is_p (sectp->name, &names->info_dwo))
10382 {
73869dc2 10383 dwo_sections->info.s.asection = sectp;
80626a55
DE
10384 dwo_sections->info.size = bfd_get_section_size (sectp);
10385 }
10386 else if (section_is_p (sectp->name, &names->line_dwo))
10387 {
73869dc2 10388 dwo_sections->line.s.asection = sectp;
80626a55
DE
10389 dwo_sections->line.size = bfd_get_section_size (sectp);
10390 }
10391 else if (section_is_p (sectp->name, &names->loc_dwo))
10392 {
73869dc2 10393 dwo_sections->loc.s.asection = sectp;
80626a55
DE
10394 dwo_sections->loc.size = bfd_get_section_size (sectp);
10395 }
10396 else if (section_is_p (sectp->name, &names->macinfo_dwo))
10397 {
73869dc2 10398 dwo_sections->macinfo.s.asection = sectp;
80626a55
DE
10399 dwo_sections->macinfo.size = bfd_get_section_size (sectp);
10400 }
10401 else if (section_is_p (sectp->name, &names->macro_dwo))
10402 {
73869dc2 10403 dwo_sections->macro.s.asection = sectp;
80626a55
DE
10404 dwo_sections->macro.size = bfd_get_section_size (sectp);
10405 }
10406 else if (section_is_p (sectp->name, &names->str_dwo))
10407 {
73869dc2 10408 dwo_sections->str.s.asection = sectp;
80626a55
DE
10409 dwo_sections->str.size = bfd_get_section_size (sectp);
10410 }
10411 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
10412 {
73869dc2 10413 dwo_sections->str_offsets.s.asection = sectp;
80626a55
DE
10414 dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
10415 }
10416 else if (section_is_p (sectp->name, &names->types_dwo))
10417 {
10418 struct dwarf2_section_info type_section;
10419
10420 memset (&type_section, 0, sizeof (type_section));
73869dc2 10421 type_section.s.asection = sectp;
80626a55
DE
10422 type_section.size = bfd_get_section_size (sectp);
10423 VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
10424 &type_section);
10425 }
10426}
10427
ab5088bf 10428/* Initialize the use of the DWO file specified by DWO_NAME and referenced
19c3d4c9 10429 by PER_CU. This is for the non-DWP case.
80626a55 10430 The result is NULL if DWO_NAME can't be found. */
3019eac3
DE
10431
10432static struct dwo_file *
0ac5b59e
DE
10433open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
10434 const char *dwo_name, const char *comp_dir)
3019eac3
DE
10435{
10436 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55
DE
10437 struct dwo_file *dwo_file;
10438 bfd *dbfd;
3019eac3
DE
10439 struct cleanup *cleanups;
10440
ab5088bf 10441 dbfd = open_dwo_file (dwo_name, comp_dir);
80626a55
DE
10442 if (dbfd == NULL)
10443 {
10444 if (dwarf2_read_debug)
10445 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
10446 return NULL;
10447 }
10448 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
0ac5b59e
DE
10449 dwo_file->dwo_name = dwo_name;
10450 dwo_file->comp_dir = comp_dir;
80626a55 10451 dwo_file->dbfd = dbfd;
3019eac3
DE
10452
10453 cleanups = make_cleanup (free_dwo_file_cleanup, dwo_file);
10454
80626a55 10455 bfd_map_over_sections (dbfd, dwarf2_locate_dwo_sections, &dwo_file->sections);
3019eac3 10456
19c3d4c9 10457 dwo_file->cu = create_dwo_cu (dwo_file);
3019eac3
DE
10458
10459 dwo_file->tus = create_debug_types_hash_table (dwo_file,
10460 dwo_file->sections.types);
10461
10462 discard_cleanups (cleanups);
10463
80626a55
DE
10464 if (dwarf2_read_debug)
10465 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
10466
3019eac3
DE
10467 return dwo_file;
10468}
10469
80626a55 10470/* This function is mapped across the sections and remembers the offset and
73869dc2
DE
10471 size of each of the DWP debugging sections common to version 1 and 2 that
10472 we are interested in. */
3019eac3 10473
80626a55 10474static void
73869dc2
DE
10475dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
10476 void *dwp_file_ptr)
3019eac3 10477{
80626a55
DE
10478 struct dwp_file *dwp_file = dwp_file_ptr;
10479 const struct dwop_section_names *names = &dwop_section_names;
10480 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
3019eac3 10481
80626a55 10482 /* Record the ELF section number for later lookup: this is what the
73869dc2 10483 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
80626a55
DE
10484 gdb_assert (elf_section_nr < dwp_file->num_sections);
10485 dwp_file->elf_sections[elf_section_nr] = sectp;
3019eac3 10486
80626a55
DE
10487 /* Look for specific sections that we need. */
10488 if (section_is_p (sectp->name, &names->str_dwo))
10489 {
73869dc2 10490 dwp_file->sections.str.s.asection = sectp;
80626a55
DE
10491 dwp_file->sections.str.size = bfd_get_section_size (sectp);
10492 }
10493 else if (section_is_p (sectp->name, &names->cu_index))
10494 {
73869dc2 10495 dwp_file->sections.cu_index.s.asection = sectp;
80626a55
DE
10496 dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
10497 }
10498 else if (section_is_p (sectp->name, &names->tu_index))
10499 {
73869dc2 10500 dwp_file->sections.tu_index.s.asection = sectp;
80626a55
DE
10501 dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
10502 }
10503}
3019eac3 10504
73869dc2
DE
10505/* This function is mapped across the sections and remembers the offset and
10506 size of each of the DWP version 2 debugging sections that we are interested
10507 in. This is split into a separate function because we don't know if we
10508 have version 1 or 2 until we parse the cu_index/tu_index sections. */
10509
10510static void
10511dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
10512{
10513 struct dwp_file *dwp_file = dwp_file_ptr;
10514 const struct dwop_section_names *names = &dwop_section_names;
10515 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
10516
10517 /* Record the ELF section number for later lookup: this is what the
10518 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
10519 gdb_assert (elf_section_nr < dwp_file->num_sections);
10520 dwp_file->elf_sections[elf_section_nr] = sectp;
10521
10522 /* Look for specific sections that we need. */
10523 if (section_is_p (sectp->name, &names->abbrev_dwo))
10524 {
10525 dwp_file->sections.abbrev.s.asection = sectp;
10526 dwp_file->sections.abbrev.size = bfd_get_section_size (sectp);
10527 }
10528 else if (section_is_p (sectp->name, &names->info_dwo))
10529 {
10530 dwp_file->sections.info.s.asection = sectp;
10531 dwp_file->sections.info.size = bfd_get_section_size (sectp);
10532 }
10533 else if (section_is_p (sectp->name, &names->line_dwo))
10534 {
10535 dwp_file->sections.line.s.asection = sectp;
10536 dwp_file->sections.line.size = bfd_get_section_size (sectp);
10537 }
10538 else if (section_is_p (sectp->name, &names->loc_dwo))
10539 {
10540 dwp_file->sections.loc.s.asection = sectp;
10541 dwp_file->sections.loc.size = bfd_get_section_size (sectp);
10542 }
10543 else if (section_is_p (sectp->name, &names->macinfo_dwo))
10544 {
10545 dwp_file->sections.macinfo.s.asection = sectp;
10546 dwp_file->sections.macinfo.size = bfd_get_section_size (sectp);
10547 }
10548 else if (section_is_p (sectp->name, &names->macro_dwo))
10549 {
10550 dwp_file->sections.macro.s.asection = sectp;
10551 dwp_file->sections.macro.size = bfd_get_section_size (sectp);
10552 }
10553 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
10554 {
10555 dwp_file->sections.str_offsets.s.asection = sectp;
10556 dwp_file->sections.str_offsets.size = bfd_get_section_size (sectp);
10557 }
10558 else if (section_is_p (sectp->name, &names->types_dwo))
10559 {
10560 dwp_file->sections.types.s.asection = sectp;
10561 dwp_file->sections.types.size = bfd_get_section_size (sectp);
10562 }
10563}
10564
80626a55 10565/* Hash function for dwp_file loaded CUs/TUs. */
3019eac3 10566
80626a55
DE
10567static hashval_t
10568hash_dwp_loaded_cutus (const void *item)
10569{
10570 const struct dwo_unit *dwo_unit = item;
3019eac3 10571
80626a55
DE
10572 /* This drops the top 32 bits of the signature, but is ok for a hash. */
10573 return dwo_unit->signature;
3019eac3
DE
10574}
10575
80626a55 10576/* Equality function for dwp_file loaded CUs/TUs. */
3019eac3 10577
80626a55
DE
10578static int
10579eq_dwp_loaded_cutus (const void *a, const void *b)
3019eac3 10580{
80626a55
DE
10581 const struct dwo_unit *dua = a;
10582 const struct dwo_unit *dub = b;
3019eac3 10583
80626a55
DE
10584 return dua->signature == dub->signature;
10585}
3019eac3 10586
80626a55 10587/* Allocate a hash table for dwp_file loaded CUs/TUs. */
3019eac3 10588
80626a55
DE
10589static htab_t
10590allocate_dwp_loaded_cutus_table (struct objfile *objfile)
10591{
10592 return htab_create_alloc_ex (3,
10593 hash_dwp_loaded_cutus,
10594 eq_dwp_loaded_cutus,
10595 NULL,
10596 &objfile->objfile_obstack,
10597 hashtab_obstack_allocate,
10598 dummy_obstack_deallocate);
10599}
3019eac3 10600
ab5088bf
DE
10601/* Try to open DWP file FILE_NAME.
10602 The result is the bfd handle of the file.
10603 If there is a problem finding or opening the file, return NULL.
10604 Upon success, the canonicalized path of the file is stored in the bfd,
10605 same as symfile_bfd_open. */
10606
10607static bfd *
10608open_dwp_file (const char *file_name)
10609{
6ac97d4c
DE
10610 bfd *abfd;
10611
10612 abfd = try_open_dwop_file (file_name, 1 /*is_dwp*/, 1 /*search_cwd*/);
10613 if (abfd != NULL)
10614 return abfd;
10615
10616 /* Work around upstream bug 15652.
10617 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
10618 [Whether that's a "bug" is debatable, but it is getting in our way.]
10619 We have no real idea where the dwp file is, because gdb's realpath-ing
10620 of the executable's path may have discarded the needed info.
10621 [IWBN if the dwp file name was recorded in the executable, akin to
10622 .gnu_debuglink, but that doesn't exist yet.]
10623 Strip the directory from FILE_NAME and search again. */
10624 if (*debug_file_directory != '\0')
10625 {
10626 /* Don't implicitly search the current directory here.
10627 If the user wants to search "." to handle this case,
10628 it must be added to debug-file-directory. */
10629 return try_open_dwop_file (lbasename (file_name), 1 /*is_dwp*/,
10630 0 /*search_cwd*/);
10631 }
10632
10633 return NULL;
ab5088bf
DE
10634}
10635
80626a55
DE
10636/* Initialize the use of the DWP file for the current objfile.
10637 By convention the name of the DWP file is ${objfile}.dwp.
10638 The result is NULL if it can't be found. */
a766d390 10639
80626a55 10640static struct dwp_file *
ab5088bf 10641open_and_init_dwp_file (void)
80626a55
DE
10642{
10643 struct objfile *objfile = dwarf2_per_objfile->objfile;
10644 struct dwp_file *dwp_file;
10645 char *dwp_name;
10646 bfd *dbfd;
10647 struct cleanup *cleanups;
10648
82bf32bc
JK
10649 /* Try to find first .dwp for the binary file before any symbolic links
10650 resolving. */
10651 dwp_name = xstrprintf ("%s.dwp", objfile->original_name);
80626a55
DE
10652 cleanups = make_cleanup (xfree, dwp_name);
10653
ab5088bf 10654 dbfd = open_dwp_file (dwp_name);
82bf32bc
JK
10655 if (dbfd == NULL
10656 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
10657 {
10658 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
10659 dwp_name = xstrprintf ("%s.dwp", objfile_name (objfile));
10660 make_cleanup (xfree, dwp_name);
10661 dbfd = open_dwp_file (dwp_name);
10662 }
10663
80626a55
DE
10664 if (dbfd == NULL)
10665 {
10666 if (dwarf2_read_debug)
10667 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name);
10668 do_cleanups (cleanups);
10669 return NULL;
3019eac3 10670 }
80626a55 10671 dwp_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_file);
93417882 10672 dwp_file->name = bfd_get_filename (dbfd);
80626a55
DE
10673 dwp_file->dbfd = dbfd;
10674 do_cleanups (cleanups);
c906108c 10675
80626a55
DE
10676 /* +1: section 0 is unused */
10677 dwp_file->num_sections = bfd_count_sections (dbfd) + 1;
10678 dwp_file->elf_sections =
10679 OBSTACK_CALLOC (&objfile->objfile_obstack,
10680 dwp_file->num_sections, asection *);
10681
73869dc2 10682 bfd_map_over_sections (dbfd, dwarf2_locate_common_dwp_sections, dwp_file);
80626a55
DE
10683
10684 dwp_file->cus = create_dwp_hash_table (dwp_file, 0);
10685
10686 dwp_file->tus = create_dwp_hash_table (dwp_file, 1);
10687
73869dc2
DE
10688 /* The DWP file version is stored in the hash table. Oh well. */
10689 if (dwp_file->cus->version != dwp_file->tus->version)
10690 {
10691 /* Technically speaking, we should try to limp along, but this is
fbcbc3fd 10692 pretty bizarre. We use pulongest here because that's the established
4d65956b 10693 portability solution (e.g, we cannot use %u for uint32_t). */
fbcbc3fd
DE
10694 error (_("Dwarf Error: DWP file CU version %s doesn't match"
10695 " TU version %s [in DWP file %s]"),
10696 pulongest (dwp_file->cus->version),
10697 pulongest (dwp_file->tus->version), dwp_name);
73869dc2
DE
10698 }
10699 dwp_file->version = dwp_file->cus->version;
10700
10701 if (dwp_file->version == 2)
10702 bfd_map_over_sections (dbfd, dwarf2_locate_v2_dwp_sections, dwp_file);
10703
19ac8c2e
DE
10704 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table (objfile);
10705 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table (objfile);
80626a55 10706
80626a55
DE
10707 if (dwarf2_read_debug)
10708 {
10709 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
10710 fprintf_unfiltered (gdb_stdlog,
21aa081e
PA
10711 " %s CUs, %s TUs\n",
10712 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
10713 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
80626a55
DE
10714 }
10715
10716 return dwp_file;
3019eac3 10717}
c906108c 10718
ab5088bf
DE
10719/* Wrapper around open_and_init_dwp_file, only open it once. */
10720
10721static struct dwp_file *
10722get_dwp_file (void)
10723{
10724 if (! dwarf2_per_objfile->dwp_checked)
10725 {
10726 dwarf2_per_objfile->dwp_file = open_and_init_dwp_file ();
10727 dwarf2_per_objfile->dwp_checked = 1;
10728 }
10729 return dwarf2_per_objfile->dwp_file;
10730}
10731
80626a55
DE
10732/* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
10733 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
10734 or in the DWP file for the objfile, referenced by THIS_UNIT.
3019eac3 10735 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
80626a55
DE
10736 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
10737
10738 This is called, for example, when wanting to read a variable with a
10739 complex location. Therefore we don't want to do file i/o for every call.
10740 Therefore we don't want to look for a DWO file on every call.
10741 Therefore we first see if we've already seen SIGNATURE in a DWP file,
10742 then we check if we've already seen DWO_NAME, and only THEN do we check
10743 for a DWO file.
10744
1c658ad5 10745 The result is a pointer to the dwo_unit object or NULL if we didn't find it
80626a55 10746 (dwo_id mismatch or couldn't find the DWO/DWP file). */
debd256d 10747
3019eac3 10748static struct dwo_unit *
80626a55
DE
10749lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
10750 const char *dwo_name, const char *comp_dir,
10751 ULONGEST signature, int is_debug_types)
3019eac3
DE
10752{
10753 struct objfile *objfile = dwarf2_per_objfile->objfile;
80626a55
DE
10754 const char *kind = is_debug_types ? "TU" : "CU";
10755 void **dwo_file_slot;
3019eac3 10756 struct dwo_file *dwo_file;
80626a55 10757 struct dwp_file *dwp_file;
cb1df416 10758
6a506a2d
DE
10759 /* First see if there's a DWP file.
10760 If we have a DWP file but didn't find the DWO inside it, don't
10761 look for the original DWO file. It makes gdb behave differently
10762 depending on whether one is debugging in the build tree. */
cf2c3c16 10763
ab5088bf 10764 dwp_file = get_dwp_file ();
80626a55 10765 if (dwp_file != NULL)
cf2c3c16 10766 {
80626a55
DE
10767 const struct dwp_hash_table *dwp_htab =
10768 is_debug_types ? dwp_file->tus : dwp_file->cus;
10769
10770 if (dwp_htab != NULL)
10771 {
10772 struct dwo_unit *dwo_cutu =
57d63ce2
DE
10773 lookup_dwo_unit_in_dwp (dwp_file, comp_dir,
10774 signature, is_debug_types);
80626a55
DE
10775
10776 if (dwo_cutu != NULL)
10777 {
10778 if (dwarf2_read_debug)
10779 {
10780 fprintf_unfiltered (gdb_stdlog,
10781 "Virtual DWO %s %s found: @%s\n",
10782 kind, hex_string (signature),
10783 host_address_to_string (dwo_cutu));
10784 }
10785 return dwo_cutu;
10786 }
10787 }
10788 }
6a506a2d 10789 else
80626a55 10790 {
6a506a2d 10791 /* No DWP file, look for the DWO file. */
80626a55 10792
6a506a2d
DE
10793 dwo_file_slot = lookup_dwo_file_slot (dwo_name, comp_dir);
10794 if (*dwo_file_slot == NULL)
80626a55 10795 {
6a506a2d
DE
10796 /* Read in the file and build a table of the CUs/TUs it contains. */
10797 *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
19c3d4c9 10798 }
6a506a2d
DE
10799 /* NOTE: This will be NULL if unable to open the file. */
10800 dwo_file = *dwo_file_slot;
3019eac3 10801
6a506a2d 10802 if (dwo_file != NULL)
19c3d4c9 10803 {
6a506a2d
DE
10804 struct dwo_unit *dwo_cutu = NULL;
10805
10806 if (is_debug_types && dwo_file->tus)
10807 {
10808 struct dwo_unit find_dwo_cutu;
10809
10810 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
10811 find_dwo_cutu.signature = signature;
10812 dwo_cutu = htab_find (dwo_file->tus, &find_dwo_cutu);
10813 }
10814 else if (!is_debug_types && dwo_file->cu)
80626a55 10815 {
6a506a2d
DE
10816 if (signature == dwo_file->cu->signature)
10817 dwo_cutu = dwo_file->cu;
10818 }
10819
10820 if (dwo_cutu != NULL)
10821 {
10822 if (dwarf2_read_debug)
10823 {
10824 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
10825 kind, dwo_name, hex_string (signature),
10826 host_address_to_string (dwo_cutu));
10827 }
10828 return dwo_cutu;
80626a55
DE
10829 }
10830 }
2e276125 10831 }
9cdd5dbd 10832
80626a55
DE
10833 /* We didn't find it. This could mean a dwo_id mismatch, or
10834 someone deleted the DWO/DWP file, or the search path isn't set up
10835 correctly to find the file. */
10836
10837 if (dwarf2_read_debug)
10838 {
10839 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
10840 kind, dwo_name, hex_string (signature));
10841 }
3019eac3 10842
6656a72d
DE
10843 /* This is a warning and not a complaint because it can be caused by
10844 pilot error (e.g., user accidentally deleting the DWO). */
43942612
DE
10845 {
10846 /* Print the name of the DWP file if we looked there, helps the user
10847 better diagnose the problem. */
10848 char *dwp_text = NULL;
10849 struct cleanup *cleanups;
10850
10851 if (dwp_file != NULL)
10852 dwp_text = xstrprintf (" [in DWP file %s]", lbasename (dwp_file->name));
10853 cleanups = make_cleanup (xfree, dwp_text);
10854
10855 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset 0x%x"
10856 " [in module %s]"),
10857 kind, dwo_name, hex_string (signature),
10858 dwp_text != NULL ? dwp_text : "",
10859 this_unit->is_debug_types ? "TU" : "CU",
10860 this_unit->offset.sect_off, objfile_name (objfile));
10861
10862 do_cleanups (cleanups);
10863 }
3019eac3 10864 return NULL;
5fb290d7
DJ
10865}
10866
80626a55
DE
10867/* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
10868 See lookup_dwo_cutu_unit for details. */
10869
10870static struct dwo_unit *
10871lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
10872 const char *dwo_name, const char *comp_dir,
10873 ULONGEST signature)
10874{
10875 return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
10876}
10877
10878/* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
10879 See lookup_dwo_cutu_unit for details. */
10880
10881static struct dwo_unit *
10882lookup_dwo_type_unit (struct signatured_type *this_tu,
10883 const char *dwo_name, const char *comp_dir)
10884{
10885 return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
10886}
10887
89e63ee4
DE
10888/* Traversal function for queue_and_load_all_dwo_tus. */
10889
10890static int
10891queue_and_load_dwo_tu (void **slot, void *info)
10892{
10893 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
10894 struct dwarf2_per_cu_data *per_cu = (struct dwarf2_per_cu_data *) info;
10895 ULONGEST signature = dwo_unit->signature;
10896 struct signatured_type *sig_type =
10897 lookup_dwo_signatured_type (per_cu->cu, signature);
10898
10899 if (sig_type != NULL)
10900 {
10901 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
10902
10903 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
10904 a real dependency of PER_CU on SIG_TYPE. That is detected later
10905 while processing PER_CU. */
10906 if (maybe_queue_comp_unit (NULL, sig_cu, per_cu->cu->language))
10907 load_full_type_unit (sig_cu);
10908 VEC_safe_push (dwarf2_per_cu_ptr, per_cu->imported_symtabs, sig_cu);
10909 }
10910
10911 return 1;
10912}
10913
10914/* Queue all TUs contained in the DWO of PER_CU to be read in.
10915 The DWO may have the only definition of the type, though it may not be
10916 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
10917 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
10918
10919static void
10920queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
10921{
10922 struct dwo_unit *dwo_unit;
10923 struct dwo_file *dwo_file;
10924
10925 gdb_assert (!per_cu->is_debug_types);
10926 gdb_assert (get_dwp_file () == NULL);
10927 gdb_assert (per_cu->cu != NULL);
10928
10929 dwo_unit = per_cu->cu->dwo_unit;
10930 gdb_assert (dwo_unit != NULL);
10931
10932 dwo_file = dwo_unit->dwo_file;
10933 if (dwo_file->tus != NULL)
10934 htab_traverse_noresize (dwo_file->tus, queue_and_load_dwo_tu, per_cu);
10935}
10936
3019eac3
DE
10937/* Free all resources associated with DWO_FILE.
10938 Close the DWO file and munmap the sections.
10939 All memory should be on the objfile obstack. */
348e048f
DE
10940
10941static void
3019eac3 10942free_dwo_file (struct dwo_file *dwo_file, struct objfile *objfile)
348e048f 10943{
3019eac3
DE
10944 int ix;
10945 struct dwarf2_section_info *section;
348e048f 10946
5c6fa7ab 10947 /* Note: dbfd is NULL for virtual DWO files. */
80626a55 10948 gdb_bfd_unref (dwo_file->dbfd);
348e048f 10949
3019eac3
DE
10950 VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
10951}
348e048f 10952
3019eac3 10953/* Wrapper for free_dwo_file for use in cleanups. */
348e048f 10954
3019eac3
DE
10955static void
10956free_dwo_file_cleanup (void *arg)
10957{
10958 struct dwo_file *dwo_file = (struct dwo_file *) arg;
10959 struct objfile *objfile = dwarf2_per_objfile->objfile;
348e048f 10960
3019eac3
DE
10961 free_dwo_file (dwo_file, objfile);
10962}
348e048f 10963
3019eac3 10964/* Traversal function for free_dwo_files. */
2ab95328 10965
3019eac3
DE
10966static int
10967free_dwo_file_from_slot (void **slot, void *info)
10968{
10969 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
10970 struct objfile *objfile = (struct objfile *) info;
348e048f 10971
3019eac3 10972 free_dwo_file (dwo_file, objfile);
348e048f 10973
3019eac3
DE
10974 return 1;
10975}
348e048f 10976
3019eac3 10977/* Free all resources associated with DWO_FILES. */
348e048f 10978
3019eac3
DE
10979static void
10980free_dwo_files (htab_t dwo_files, struct objfile *objfile)
10981{
10982 htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
348e048f 10983}
3019eac3
DE
10984\f
10985/* Read in various DIEs. */
348e048f 10986
d389af10
JK
10987/* qsort helper for inherit_abstract_dies. */
10988
10989static int
10990unsigned_int_compar (const void *ap, const void *bp)
10991{
10992 unsigned int a = *(unsigned int *) ap;
10993 unsigned int b = *(unsigned int *) bp;
10994
10995 return (a > b) - (b > a);
10996}
10997
10998/* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3e43a32a
MS
10999 Inherit only the children of the DW_AT_abstract_origin DIE not being
11000 already referenced by DW_AT_abstract_origin from the children of the
11001 current DIE. */
d389af10
JK
11002
11003static void
11004inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
11005{
11006 struct die_info *child_die;
11007 unsigned die_children_count;
11008 /* CU offsets which were referenced by children of the current DIE. */
b64f50a1
JK
11009 sect_offset *offsets;
11010 sect_offset *offsets_end, *offsetp;
d389af10
JK
11011 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
11012 struct die_info *origin_die;
11013 /* Iterator of the ORIGIN_DIE children. */
11014 struct die_info *origin_child_die;
11015 struct cleanup *cleanups;
11016 struct attribute *attr;
cd02d79d
PA
11017 struct dwarf2_cu *origin_cu;
11018 struct pending **origin_previous_list_in_scope;
d389af10
JK
11019
11020 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
11021 if (!attr)
11022 return;
11023
cd02d79d
PA
11024 /* Note that following die references may follow to a die in a
11025 different cu. */
11026
11027 origin_cu = cu;
11028 origin_die = follow_die_ref (die, attr, &origin_cu);
11029
11030 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
11031 symbols in. */
11032 origin_previous_list_in_scope = origin_cu->list_in_scope;
11033 origin_cu->list_in_scope = cu->list_in_scope;
11034
edb3359d
DJ
11035 if (die->tag != origin_die->tag
11036 && !(die->tag == DW_TAG_inlined_subroutine
11037 && origin_die->tag == DW_TAG_subprogram))
d389af10
JK
11038 complaint (&symfile_complaints,
11039 _("DIE 0x%x and its abstract origin 0x%x have different tags"),
b64f50a1 11040 die->offset.sect_off, origin_die->offset.sect_off);
d389af10
JK
11041
11042 child_die = die->child;
11043 die_children_count = 0;
11044 while (child_die && child_die->tag)
11045 {
11046 child_die = sibling_die (child_die);
11047 die_children_count++;
11048 }
11049 offsets = xmalloc (sizeof (*offsets) * die_children_count);
11050 cleanups = make_cleanup (xfree, offsets);
11051
11052 offsets_end = offsets;
11053 child_die = die->child;
11054 while (child_die && child_die->tag)
11055 {
c38f313d
DJ
11056 /* For each CHILD_DIE, find the corresponding child of
11057 ORIGIN_DIE. If there is more than one layer of
11058 DW_AT_abstract_origin, follow them all; there shouldn't be,
11059 but GCC versions at least through 4.4 generate this (GCC PR
11060 40573). */
11061 struct die_info *child_origin_die = child_die;
cd02d79d 11062 struct dwarf2_cu *child_origin_cu = cu;
9a619af0 11063
c38f313d
DJ
11064 while (1)
11065 {
cd02d79d
PA
11066 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
11067 child_origin_cu);
c38f313d
DJ
11068 if (attr == NULL)
11069 break;
cd02d79d
PA
11070 child_origin_die = follow_die_ref (child_origin_die, attr,
11071 &child_origin_cu);
c38f313d
DJ
11072 }
11073
d389af10
JK
11074 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
11075 counterpart may exist. */
c38f313d 11076 if (child_origin_die != child_die)
d389af10 11077 {
edb3359d
DJ
11078 if (child_die->tag != child_origin_die->tag
11079 && !(child_die->tag == DW_TAG_inlined_subroutine
11080 && child_origin_die->tag == DW_TAG_subprogram))
d389af10
JK
11081 complaint (&symfile_complaints,
11082 _("Child DIE 0x%x and its abstract origin 0x%x have "
b64f50a1
JK
11083 "different tags"), child_die->offset.sect_off,
11084 child_origin_die->offset.sect_off);
c38f313d
DJ
11085 if (child_origin_die->parent != origin_die)
11086 complaint (&symfile_complaints,
11087 _("Child DIE 0x%x and its abstract origin 0x%x have "
b64f50a1
JK
11088 "different parents"), child_die->offset.sect_off,
11089 child_origin_die->offset.sect_off);
c38f313d
DJ
11090 else
11091 *offsets_end++ = child_origin_die->offset;
d389af10
JK
11092 }
11093 child_die = sibling_die (child_die);
11094 }
11095 qsort (offsets, offsets_end - offsets, sizeof (*offsets),
11096 unsigned_int_compar);
11097 for (offsetp = offsets + 1; offsetp < offsets_end; offsetp++)
b64f50a1 11098 if (offsetp[-1].sect_off == offsetp->sect_off)
3e43a32a
MS
11099 complaint (&symfile_complaints,
11100 _("Multiple children of DIE 0x%x refer "
11101 "to DIE 0x%x as their abstract origin"),
b64f50a1 11102 die->offset.sect_off, offsetp->sect_off);
d389af10
JK
11103
11104 offsetp = offsets;
11105 origin_child_die = origin_die->child;
11106 while (origin_child_die && origin_child_die->tag)
11107 {
11108 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
b64f50a1
JK
11109 while (offsetp < offsets_end
11110 && offsetp->sect_off < origin_child_die->offset.sect_off)
d389af10 11111 offsetp++;
b64f50a1
JK
11112 if (offsetp >= offsets_end
11113 || offsetp->sect_off > origin_child_die->offset.sect_off)
d389af10 11114 {
adde2bff
DE
11115 /* Found that ORIGIN_CHILD_DIE is really not referenced.
11116 Check whether we're already processing ORIGIN_CHILD_DIE.
11117 This can happen with mutually referenced abstract_origins.
11118 PR 16581. */
11119 if (!origin_child_die->in_process)
11120 process_die (origin_child_die, origin_cu);
d389af10
JK
11121 }
11122 origin_child_die = sibling_die (origin_child_die);
11123 }
cd02d79d 11124 origin_cu->list_in_scope = origin_previous_list_in_scope;
d389af10
JK
11125
11126 do_cleanups (cleanups);
11127}
11128
c906108c 11129static void
e7c27a73 11130read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 11131{
e7c27a73 11132 struct objfile *objfile = cu->objfile;
52f0bd74 11133 struct context_stack *new;
c906108c
SS
11134 CORE_ADDR lowpc;
11135 CORE_ADDR highpc;
11136 struct die_info *child_die;
edb3359d 11137 struct attribute *attr, *call_line, *call_file;
15d034d0 11138 const char *name;
e142c38c 11139 CORE_ADDR baseaddr;
801e3a5b 11140 struct block *block;
edb3359d 11141 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
34eaf542
TT
11142 VEC (symbolp) *template_args = NULL;
11143 struct template_symbol *templ_func = NULL;
edb3359d
DJ
11144
11145 if (inlined_func)
11146 {
11147 /* If we do not have call site information, we can't show the
11148 caller of this inlined function. That's too confusing, so
11149 only use the scope for local variables. */
11150 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
11151 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
11152 if (call_line == NULL || call_file == NULL)
11153 {
11154 read_lexical_block_scope (die, cu);
11155 return;
11156 }
11157 }
c906108c 11158
e142c38c
DJ
11159 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11160
94af9270 11161 name = dwarf2_name (die, cu);
c906108c 11162
e8d05480
JB
11163 /* Ignore functions with missing or empty names. These are actually
11164 illegal according to the DWARF standard. */
11165 if (name == NULL)
11166 {
11167 complaint (&symfile_complaints,
b64f50a1
JK
11168 _("missing name for subprogram DIE at %d"),
11169 die->offset.sect_off);
e8d05480
JB
11170 return;
11171 }
11172
11173 /* Ignore functions with missing or invalid low and high pc attributes. */
11174 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
11175 {
ae4d0c03
PM
11176 attr = dwarf2_attr (die, DW_AT_external, cu);
11177 if (!attr || !DW_UNSND (attr))
11178 complaint (&symfile_complaints,
3e43a32a
MS
11179 _("cannot get low and high bounds "
11180 "for subprogram DIE at %d"),
b64f50a1 11181 die->offset.sect_off);
e8d05480
JB
11182 return;
11183 }
c906108c
SS
11184
11185 lowpc += baseaddr;
11186 highpc += baseaddr;
11187
34eaf542
TT
11188 /* If we have any template arguments, then we must allocate a
11189 different sort of symbol. */
11190 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
11191 {
11192 if (child_die->tag == DW_TAG_template_type_param
11193 || child_die->tag == DW_TAG_template_value_param)
11194 {
e623cf5d 11195 templ_func = allocate_template_symbol (objfile);
34eaf542
TT
11196 templ_func->base.is_cplus_template_function = 1;
11197 break;
11198 }
11199 }
11200
c906108c 11201 new = push_context (0, lowpc);
34eaf542
TT
11202 new->name = new_symbol_full (die, read_type_die (die, cu), cu,
11203 (struct symbol *) templ_func);
4c2df51b 11204
4cecd739
DJ
11205 /* If there is a location expression for DW_AT_frame_base, record
11206 it. */
e142c38c 11207 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
4c2df51b 11208 if (attr)
f1e6e072 11209 dwarf2_symbol_mark_computed (attr, new->name, cu, 1);
4c2df51b 11210
e142c38c 11211 cu->list_in_scope = &local_symbols;
c906108c 11212
639d11d3 11213 if (die->child != NULL)
c906108c 11214 {
639d11d3 11215 child_die = die->child;
c906108c
SS
11216 while (child_die && child_die->tag)
11217 {
34eaf542
TT
11218 if (child_die->tag == DW_TAG_template_type_param
11219 || child_die->tag == DW_TAG_template_value_param)
11220 {
11221 struct symbol *arg = new_symbol (child_die, NULL, cu);
11222
f1078f66
DJ
11223 if (arg != NULL)
11224 VEC_safe_push (symbolp, template_args, arg);
34eaf542
TT
11225 }
11226 else
11227 process_die (child_die, cu);
c906108c
SS
11228 child_die = sibling_die (child_die);
11229 }
11230 }
11231
d389af10
JK
11232 inherit_abstract_dies (die, cu);
11233
4a811a97
UW
11234 /* If we have a DW_AT_specification, we might need to import using
11235 directives from the context of the specification DIE. See the
11236 comment in determine_prefix. */
11237 if (cu->language == language_cplus
11238 && dwarf2_attr (die, DW_AT_specification, cu))
11239 {
11240 struct dwarf2_cu *spec_cu = cu;
11241 struct die_info *spec_die = die_specification (die, &spec_cu);
11242
11243 while (spec_die)
11244 {
11245 child_die = spec_die->child;
11246 while (child_die && child_die->tag)
11247 {
11248 if (child_die->tag == DW_TAG_imported_module)
11249 process_die (child_die, spec_cu);
11250 child_die = sibling_die (child_die);
11251 }
11252
11253 /* In some cases, GCC generates specification DIEs that
11254 themselves contain DW_AT_specification attributes. */
11255 spec_die = die_specification (spec_die, &spec_cu);
11256 }
11257 }
11258
c906108c
SS
11259 new = pop_context ();
11260 /* Make a block for the local symbols within. */
801e3a5b
JB
11261 block = finish_block (new->name, &local_symbols, new->old_blocks,
11262 lowpc, highpc, objfile);
11263
df8a16a1 11264 /* For C++, set the block's scope. */
195a3f6c 11265 if ((cu->language == language_cplus || cu->language == language_fortran)
4d4ec4e5 11266 && cu->processing_has_namespace_info)
195a3f6c
TT
11267 block_set_scope (block, determine_prefix (die, cu),
11268 &objfile->objfile_obstack);
df8a16a1 11269
801e3a5b
JB
11270 /* If we have address ranges, record them. */
11271 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6e70227d 11272
34eaf542
TT
11273 /* Attach template arguments to function. */
11274 if (! VEC_empty (symbolp, template_args))
11275 {
11276 gdb_assert (templ_func != NULL);
11277
11278 templ_func->n_template_arguments = VEC_length (symbolp, template_args);
11279 templ_func->template_arguments
11280 = obstack_alloc (&objfile->objfile_obstack,
11281 (templ_func->n_template_arguments
11282 * sizeof (struct symbol *)));
11283 memcpy (templ_func->template_arguments,
11284 VEC_address (symbolp, template_args),
11285 (templ_func->n_template_arguments * sizeof (struct symbol *)));
11286 VEC_free (symbolp, template_args);
11287 }
11288
208d8187
JB
11289 /* In C++, we can have functions nested inside functions (e.g., when
11290 a function declares a class that has methods). This means that
11291 when we finish processing a function scope, we may need to go
11292 back to building a containing block's symbol lists. */
11293 local_symbols = new->locals;
27aa8d6a 11294 using_directives = new->using_directives;
208d8187 11295
921e78cf
JB
11296 /* If we've finished processing a top-level function, subsequent
11297 symbols go in the file symbol list. */
11298 if (outermost_context_p ())
e142c38c 11299 cu->list_in_scope = &file_symbols;
c906108c
SS
11300}
11301
11302/* Process all the DIES contained within a lexical block scope. Start
11303 a new scope, process the dies, and then close the scope. */
11304
11305static void
e7c27a73 11306read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 11307{
e7c27a73 11308 struct objfile *objfile = cu->objfile;
52f0bd74 11309 struct context_stack *new;
c906108c
SS
11310 CORE_ADDR lowpc, highpc;
11311 struct die_info *child_die;
e142c38c
DJ
11312 CORE_ADDR baseaddr;
11313
11314 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
11315
11316 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
11317 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
11318 as multiple lexical blocks? Handling children in a sane way would
6e70227d 11319 be nasty. Might be easier to properly extend generic blocks to
af34e669 11320 describe ranges. */
d85a05f0 11321 if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
c906108c
SS
11322 return;
11323 lowpc += baseaddr;
11324 highpc += baseaddr;
11325
11326 push_context (0, lowpc);
639d11d3 11327 if (die->child != NULL)
c906108c 11328 {
639d11d3 11329 child_die = die->child;
c906108c
SS
11330 while (child_die && child_die->tag)
11331 {
e7c27a73 11332 process_die (child_die, cu);
c906108c
SS
11333 child_die = sibling_die (child_die);
11334 }
11335 }
11336 new = pop_context ();
11337
8540c487 11338 if (local_symbols != NULL || using_directives != NULL)
c906108c 11339 {
801e3a5b
JB
11340 struct block *block
11341 = finish_block (0, &local_symbols, new->old_blocks, new->start_addr,
11342 highpc, objfile);
11343
11344 /* Note that recording ranges after traversing children, as we
11345 do here, means that recording a parent's ranges entails
11346 walking across all its children's ranges as they appear in
11347 the address map, which is quadratic behavior.
11348
11349 It would be nicer to record the parent's ranges before
11350 traversing its children, simply overriding whatever you find
11351 there. But since we don't even decide whether to create a
11352 block until after we've traversed its children, that's hard
11353 to do. */
11354 dwarf2_record_block_ranges (die, block, baseaddr, cu);
c906108c
SS
11355 }
11356 local_symbols = new->locals;
27aa8d6a 11357 using_directives = new->using_directives;
c906108c
SS
11358}
11359
96408a79
SA
11360/* Read in DW_TAG_GNU_call_site and insert it to CU->call_site_htab. */
11361
11362static void
11363read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
11364{
11365 struct objfile *objfile = cu->objfile;
11366 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11367 CORE_ADDR pc, baseaddr;
11368 struct attribute *attr;
11369 struct call_site *call_site, call_site_local;
11370 void **slot;
11371 int nparams;
11372 struct die_info *child_die;
11373
11374 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11375
11376 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
11377 if (!attr)
11378 {
11379 complaint (&symfile_complaints,
11380 _("missing DW_AT_low_pc for DW_TAG_GNU_call_site "
11381 "DIE 0x%x [in module %s]"),
4262abfb 11382 die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11383 return;
11384 }
31aa7e4e 11385 pc = attr_value_as_address (attr) + baseaddr;
96408a79
SA
11386
11387 if (cu->call_site_htab == NULL)
11388 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
11389 NULL, &objfile->objfile_obstack,
11390 hashtab_obstack_allocate, NULL);
11391 call_site_local.pc = pc;
11392 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
11393 if (*slot != NULL)
11394 {
11395 complaint (&symfile_complaints,
11396 _("Duplicate PC %s for DW_TAG_GNU_call_site "
11397 "DIE 0x%x [in module %s]"),
4262abfb
JK
11398 paddress (gdbarch, pc), die->offset.sect_off,
11399 objfile_name (objfile));
96408a79
SA
11400 return;
11401 }
11402
11403 /* Count parameters at the caller. */
11404
11405 nparams = 0;
11406 for (child_die = die->child; child_die && child_die->tag;
11407 child_die = sibling_die (child_die))
11408 {
11409 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
11410 {
11411 complaint (&symfile_complaints,
11412 _("Tag %d is not DW_TAG_GNU_call_site_parameter in "
11413 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
4262abfb
JK
11414 child_die->tag, child_die->offset.sect_off,
11415 objfile_name (objfile));
96408a79
SA
11416 continue;
11417 }
11418
11419 nparams++;
11420 }
11421
11422 call_site = obstack_alloc (&objfile->objfile_obstack,
11423 (sizeof (*call_site)
11424 + (sizeof (*call_site->parameter)
11425 * (nparams - 1))));
11426 *slot = call_site;
11427 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
11428 call_site->pc = pc;
11429
11430 if (dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
11431 {
11432 struct die_info *func_die;
11433
11434 /* Skip also over DW_TAG_inlined_subroutine. */
11435 for (func_die = die->parent;
11436 func_die && func_die->tag != DW_TAG_subprogram
11437 && func_die->tag != DW_TAG_subroutine_type;
11438 func_die = func_die->parent);
11439
11440 /* DW_AT_GNU_all_call_sites is a superset
11441 of DW_AT_GNU_all_tail_call_sites. */
11442 if (func_die
11443 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
11444 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
11445 {
11446 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
11447 not complete. But keep CALL_SITE for look ups via call_site_htab,
11448 both the initial caller containing the real return address PC and
11449 the final callee containing the current PC of a chain of tail
11450 calls do not need to have the tail call list complete. But any
11451 function candidate for a virtual tail call frame searched via
11452 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
11453 determined unambiguously. */
11454 }
11455 else
11456 {
11457 struct type *func_type = NULL;
11458
11459 if (func_die)
11460 func_type = get_die_type (func_die, cu);
11461 if (func_type != NULL)
11462 {
11463 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
11464
11465 /* Enlist this call site to the function. */
11466 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
11467 TYPE_TAIL_CALL_LIST (func_type) = call_site;
11468 }
11469 else
11470 complaint (&symfile_complaints,
11471 _("Cannot find function owning DW_TAG_GNU_call_site "
11472 "DIE 0x%x [in module %s]"),
4262abfb 11473 die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11474 }
11475 }
11476
11477 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
11478 if (attr == NULL)
11479 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
11480 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
11481 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
11482 /* Keep NULL DWARF_BLOCK. */;
11483 else if (attr_form_is_block (attr))
11484 {
11485 struct dwarf2_locexpr_baton *dlbaton;
11486
11487 dlbaton = obstack_alloc (&objfile->objfile_obstack, sizeof (*dlbaton));
11488 dlbaton->data = DW_BLOCK (attr)->data;
11489 dlbaton->size = DW_BLOCK (attr)->size;
11490 dlbaton->per_cu = cu->per_cu;
11491
11492 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
11493 }
7771576e 11494 else if (attr_form_is_ref (attr))
96408a79 11495 {
96408a79
SA
11496 struct dwarf2_cu *target_cu = cu;
11497 struct die_info *target_die;
11498
ac9ec31b 11499 target_die = follow_die_ref (die, attr, &target_cu);
96408a79
SA
11500 gdb_assert (target_cu->objfile == objfile);
11501 if (die_is_declaration (target_die, target_cu))
11502 {
9112db09
JK
11503 const char *target_physname = NULL;
11504 struct attribute *target_attr;
11505
11506 /* Prefer the mangled name; otherwise compute the demangled one. */
11507 target_attr = dwarf2_attr (target_die, DW_AT_linkage_name, target_cu);
11508 if (target_attr == NULL)
11509 target_attr = dwarf2_attr (target_die, DW_AT_MIPS_linkage_name,
11510 target_cu);
11511 if (target_attr != NULL && DW_STRING (target_attr) != NULL)
11512 target_physname = DW_STRING (target_attr);
11513 else
11514 target_physname = dwarf2_physname (NULL, target_die, target_cu);
96408a79
SA
11515 if (target_physname == NULL)
11516 complaint (&symfile_complaints,
11517 _("DW_AT_GNU_call_site_target target DIE has invalid "
11518 "physname, for referencing DIE 0x%x [in module %s]"),
4262abfb 11519 die->offset.sect_off, objfile_name (objfile));
96408a79 11520 else
7d455152 11521 SET_FIELD_PHYSNAME (call_site->target, target_physname);
96408a79
SA
11522 }
11523 else
11524 {
11525 CORE_ADDR lowpc;
11526
11527 /* DW_AT_entry_pc should be preferred. */
11528 if (!dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL))
11529 complaint (&symfile_complaints,
11530 _("DW_AT_GNU_call_site_target target DIE has invalid "
11531 "low pc, for referencing DIE 0x%x [in module %s]"),
4262abfb 11532 die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11533 else
11534 SET_FIELD_PHYSADDR (call_site->target, lowpc + baseaddr);
11535 }
11536 }
11537 else
11538 complaint (&symfile_complaints,
11539 _("DW_TAG_GNU_call_site DW_AT_GNU_call_site_target is neither "
11540 "block nor reference, for DIE 0x%x [in module %s]"),
4262abfb 11541 die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11542
11543 call_site->per_cu = cu->per_cu;
11544
11545 for (child_die = die->child;
11546 child_die && child_die->tag;
11547 child_die = sibling_die (child_die))
11548 {
96408a79 11549 struct call_site_parameter *parameter;
1788b2d3 11550 struct attribute *loc, *origin;
96408a79
SA
11551
11552 if (child_die->tag != DW_TAG_GNU_call_site_parameter)
11553 {
11554 /* Already printed the complaint above. */
11555 continue;
11556 }
11557
11558 gdb_assert (call_site->parameter_count < nparams);
11559 parameter = &call_site->parameter[call_site->parameter_count];
11560
1788b2d3
JK
11561 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
11562 specifies DW_TAG_formal_parameter. Value of the data assumed for the
11563 register is contained in DW_AT_GNU_call_site_value. */
96408a79 11564
24c5c679 11565 loc = dwarf2_attr (child_die, DW_AT_location, cu);
1788b2d3 11566 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
7771576e 11567 if (loc == NULL && origin != NULL && attr_form_is_ref (origin))
1788b2d3
JK
11568 {
11569 sect_offset offset;
11570
11571 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
11572 offset = dwarf2_get_ref_die_offset (origin);
d76b7dbc
JK
11573 if (!offset_in_cu_p (&cu->header, offset))
11574 {
11575 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
11576 binding can be done only inside one CU. Such referenced DIE
11577 therefore cannot be even moved to DW_TAG_partial_unit. */
11578 complaint (&symfile_complaints,
11579 _("DW_AT_abstract_origin offset is not in CU for "
11580 "DW_TAG_GNU_call_site child DIE 0x%x "
11581 "[in module %s]"),
4262abfb 11582 child_die->offset.sect_off, objfile_name (objfile));
d76b7dbc
JK
11583 continue;
11584 }
1788b2d3
JK
11585 parameter->u.param_offset.cu_off = (offset.sect_off
11586 - cu->header.offset.sect_off);
11587 }
11588 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
96408a79
SA
11589 {
11590 complaint (&symfile_complaints,
11591 _("No DW_FORM_block* DW_AT_location for "
11592 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
4262abfb 11593 child_die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11594 continue;
11595 }
24c5c679 11596 else
96408a79 11597 {
24c5c679
JK
11598 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
11599 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
11600 if (parameter->u.dwarf_reg != -1)
11601 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
11602 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
11603 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
11604 &parameter->u.fb_offset))
11605 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
11606 else
11607 {
11608 complaint (&symfile_complaints,
11609 _("Only single DW_OP_reg or DW_OP_fbreg is supported "
11610 "for DW_FORM_block* DW_AT_location is supported for "
11611 "DW_TAG_GNU_call_site child DIE 0x%x "
11612 "[in module %s]"),
4262abfb 11613 child_die->offset.sect_off, objfile_name (objfile));
24c5c679
JK
11614 continue;
11615 }
96408a79
SA
11616 }
11617
11618 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
11619 if (!attr_form_is_block (attr))
11620 {
11621 complaint (&symfile_complaints,
11622 _("No DW_FORM_block* DW_AT_GNU_call_site_value for "
11623 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
4262abfb 11624 child_die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11625 continue;
11626 }
11627 parameter->value = DW_BLOCK (attr)->data;
11628 parameter->value_size = DW_BLOCK (attr)->size;
11629
11630 /* Parameters are not pre-cleared by memset above. */
11631 parameter->data_value = NULL;
11632 parameter->data_value_size = 0;
11633 call_site->parameter_count++;
11634
11635 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
11636 if (attr)
11637 {
11638 if (!attr_form_is_block (attr))
11639 complaint (&symfile_complaints,
11640 _("No DW_FORM_block* DW_AT_GNU_call_site_data_value for "
11641 "DW_TAG_GNU_call_site child DIE 0x%x [in module %s]"),
4262abfb 11642 child_die->offset.sect_off, objfile_name (objfile));
96408a79
SA
11643 else
11644 {
11645 parameter->data_value = DW_BLOCK (attr)->data;
11646 parameter->data_value_size = DW_BLOCK (attr)->size;
11647 }
11648 }
11649 }
11650}
11651
43039443 11652/* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
ff013f42
JK
11653 Return 1 if the attributes are present and valid, otherwise, return 0.
11654 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
43039443
JK
11655
11656static int
11657dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
ff013f42
JK
11658 CORE_ADDR *high_return, struct dwarf2_cu *cu,
11659 struct partial_symtab *ranges_pst)
43039443
JK
11660{
11661 struct objfile *objfile = cu->objfile;
11662 struct comp_unit_head *cu_header = &cu->header;
11663 bfd *obfd = objfile->obfd;
11664 unsigned int addr_size = cu_header->addr_size;
11665 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
11666 /* Base address selection entry. */
11667 CORE_ADDR base;
11668 int found_base;
11669 unsigned int dummy;
d521ce57 11670 const gdb_byte *buffer;
43039443
JK
11671 CORE_ADDR marker;
11672 int low_set;
11673 CORE_ADDR low = 0;
11674 CORE_ADDR high = 0;
ff013f42 11675 CORE_ADDR baseaddr;
43039443 11676
d00adf39
DE
11677 found_base = cu->base_known;
11678 base = cu->base_address;
43039443 11679
be391dca 11680 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
dce234bc 11681 if (offset >= dwarf2_per_objfile->ranges.size)
43039443
JK
11682 {
11683 complaint (&symfile_complaints,
11684 _("Offset %d out of bounds for DW_AT_ranges attribute"),
11685 offset);
11686 return 0;
11687 }
dce234bc 11688 buffer = dwarf2_per_objfile->ranges.buffer + offset;
43039443
JK
11689
11690 /* Read in the largest possible address. */
11691 marker = read_address (obfd, buffer, cu, &dummy);
11692 if ((marker & mask) == mask)
11693 {
11694 /* If we found the largest possible address, then
11695 read the base address. */
11696 base = read_address (obfd, buffer + addr_size, cu, &dummy);
11697 buffer += 2 * addr_size;
11698 offset += 2 * addr_size;
11699 found_base = 1;
11700 }
11701
11702 low_set = 0;
11703
e7030f15 11704 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
ff013f42 11705
43039443
JK
11706 while (1)
11707 {
11708 CORE_ADDR range_beginning, range_end;
11709
11710 range_beginning = read_address (obfd, buffer, cu, &dummy);
11711 buffer += addr_size;
11712 range_end = read_address (obfd, buffer, cu, &dummy);
11713 buffer += addr_size;
11714 offset += 2 * addr_size;
11715
11716 /* An end of list marker is a pair of zero addresses. */
11717 if (range_beginning == 0 && range_end == 0)
11718 /* Found the end of list entry. */
11719 break;
11720
11721 /* Each base address selection entry is a pair of 2 values.
11722 The first is the largest possible address, the second is
11723 the base address. Check for a base address here. */
11724 if ((range_beginning & mask) == mask)
11725 {
11726 /* If we found the largest possible address, then
11727 read the base address. */
11728 base = read_address (obfd, buffer + addr_size, cu, &dummy);
11729 found_base = 1;
11730 continue;
11731 }
11732
11733 if (!found_base)
11734 {
11735 /* We have no valid base address for the ranges
11736 data. */
11737 complaint (&symfile_complaints,
11738 _("Invalid .debug_ranges data (no base address)"));
11739 return 0;
11740 }
11741
9277c30c
UW
11742 if (range_beginning > range_end)
11743 {
11744 /* Inverted range entries are invalid. */
11745 complaint (&symfile_complaints,
11746 _("Invalid .debug_ranges data (inverted range)"));
11747 return 0;
11748 }
11749
11750 /* Empty range entries have no effect. */
11751 if (range_beginning == range_end)
11752 continue;
11753
43039443
JK
11754 range_beginning += base;
11755 range_end += base;
11756
01093045
DE
11757 /* A not-uncommon case of bad debug info.
11758 Don't pollute the addrmap with bad data. */
11759 if (range_beginning + baseaddr == 0
11760 && !dwarf2_per_objfile->has_section_at_zero)
11761 {
11762 complaint (&symfile_complaints,
11763 _(".debug_ranges entry has start address of zero"
4262abfb 11764 " [in module %s]"), objfile_name (objfile));
01093045
DE
11765 continue;
11766 }
11767
9277c30c 11768 if (ranges_pst != NULL)
ff013f42 11769 addrmap_set_empty (objfile->psymtabs_addrmap,
3e43a32a
MS
11770 range_beginning + baseaddr,
11771 range_end - 1 + baseaddr,
ff013f42
JK
11772 ranges_pst);
11773
43039443
JK
11774 /* FIXME: This is recording everything as a low-high
11775 segment of consecutive addresses. We should have a
11776 data structure for discontiguous block ranges
11777 instead. */
11778 if (! low_set)
11779 {
11780 low = range_beginning;
11781 high = range_end;
11782 low_set = 1;
11783 }
11784 else
11785 {
11786 if (range_beginning < low)
11787 low = range_beginning;
11788 if (range_end > high)
11789 high = range_end;
11790 }
11791 }
11792
11793 if (! low_set)
11794 /* If the first entry is an end-of-list marker, the range
11795 describes an empty scope, i.e. no instructions. */
11796 return 0;
11797
11798 if (low_return)
11799 *low_return = low;
11800 if (high_return)
11801 *high_return = high;
11802 return 1;
11803}
11804
af34e669
DJ
11805/* Get low and high pc attributes from a die. Return 1 if the attributes
11806 are present and valid, otherwise, return 0. Return -1 if the range is
11807 discontinuous, i.e. derived from DW_AT_ranges information. */
380bca97 11808
c906108c 11809static int
af34e669 11810dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
d85a05f0
DJ
11811 CORE_ADDR *highpc, struct dwarf2_cu *cu,
11812 struct partial_symtab *pst)
c906108c
SS
11813{
11814 struct attribute *attr;
91da1414 11815 struct attribute *attr_high;
af34e669
DJ
11816 CORE_ADDR low = 0;
11817 CORE_ADDR high = 0;
11818 int ret = 0;
c906108c 11819
91da1414
MW
11820 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
11821 if (attr_high)
af34e669 11822 {
e142c38c 11823 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
af34e669 11824 if (attr)
91da1414 11825 {
31aa7e4e
JB
11826 low = attr_value_as_address (attr);
11827 high = attr_value_as_address (attr_high);
11828 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
11829 high += low;
91da1414 11830 }
af34e669
DJ
11831 else
11832 /* Found high w/o low attribute. */
11833 return 0;
11834
11835 /* Found consecutive range of addresses. */
11836 ret = 1;
11837 }
c906108c 11838 else
af34e669 11839 {
e142c38c 11840 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
11841 if (attr != NULL)
11842 {
ab435259
DE
11843 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
11844 We take advantage of the fact that DW_AT_ranges does not appear
11845 in DW_TAG_compile_unit of DWO files. */
11846 int need_ranges_base = die->tag != DW_TAG_compile_unit;
11847 unsigned int ranges_offset = (DW_UNSND (attr)
11848 + (need_ranges_base
11849 ? cu->ranges_base
11850 : 0));
2e3cf129 11851
af34e669 11852 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 11853 .debug_ranges section. */
2e3cf129 11854 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
af34e669 11855 return 0;
43039443 11856 /* Found discontinuous range of addresses. */
af34e669
DJ
11857 ret = -1;
11858 }
11859 }
c906108c 11860
9373cf26
JK
11861 /* read_partial_die has also the strict LOW < HIGH requirement. */
11862 if (high <= low)
c906108c
SS
11863 return 0;
11864
11865 /* When using the GNU linker, .gnu.linkonce. sections are used to
11866 eliminate duplicate copies of functions and vtables and such.
11867 The linker will arbitrarily choose one and discard the others.
11868 The AT_*_pc values for such functions refer to local labels in
11869 these sections. If the section from that file was discarded, the
11870 labels are not in the output, so the relocs get a value of 0.
11871 If this is a discarded function, mark the pc bounds as invalid,
11872 so that GDB will ignore it. */
72dca2f5 11873 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
c906108c
SS
11874 return 0;
11875
11876 *lowpc = low;
96408a79
SA
11877 if (highpc)
11878 *highpc = high;
af34e669 11879 return ret;
c906108c
SS
11880}
11881
b084d499
JB
11882/* Assuming that DIE represents a subprogram DIE or a lexical block, get
11883 its low and high PC addresses. Do nothing if these addresses could not
11884 be determined. Otherwise, set LOWPC to the low address if it is smaller,
11885 and HIGHPC to the high address if greater than HIGHPC. */
11886
11887static void
11888dwarf2_get_subprogram_pc_bounds (struct die_info *die,
11889 CORE_ADDR *lowpc, CORE_ADDR *highpc,
11890 struct dwarf2_cu *cu)
11891{
11892 CORE_ADDR low, high;
11893 struct die_info *child = die->child;
11894
d85a05f0 11895 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL))
b084d499
JB
11896 {
11897 *lowpc = min (*lowpc, low);
11898 *highpc = max (*highpc, high);
11899 }
11900
11901 /* If the language does not allow nested subprograms (either inside
11902 subprograms or lexical blocks), we're done. */
11903 if (cu->language != language_ada)
11904 return;
6e70227d 11905
b084d499
JB
11906 /* Check all the children of the given DIE. If it contains nested
11907 subprograms, then check their pc bounds. Likewise, we need to
11908 check lexical blocks as well, as they may also contain subprogram
11909 definitions. */
11910 while (child && child->tag)
11911 {
11912 if (child->tag == DW_TAG_subprogram
11913 || child->tag == DW_TAG_lexical_block)
11914 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
11915 child = sibling_die (child);
11916 }
11917}
11918
fae299cd
DC
11919/* Get the low and high pc's represented by the scope DIE, and store
11920 them in *LOWPC and *HIGHPC. If the correct values can't be
11921 determined, set *LOWPC to -1 and *HIGHPC to 0. */
11922
11923static void
11924get_scope_pc_bounds (struct die_info *die,
11925 CORE_ADDR *lowpc, CORE_ADDR *highpc,
11926 struct dwarf2_cu *cu)
11927{
11928 CORE_ADDR best_low = (CORE_ADDR) -1;
11929 CORE_ADDR best_high = (CORE_ADDR) 0;
11930 CORE_ADDR current_low, current_high;
11931
d85a05f0 11932 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL))
fae299cd
DC
11933 {
11934 best_low = current_low;
11935 best_high = current_high;
11936 }
11937 else
11938 {
11939 struct die_info *child = die->child;
11940
11941 while (child && child->tag)
11942 {
11943 switch (child->tag) {
11944 case DW_TAG_subprogram:
b084d499 11945 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
fae299cd
DC
11946 break;
11947 case DW_TAG_namespace:
f55ee35c 11948 case DW_TAG_module:
fae299cd
DC
11949 /* FIXME: carlton/2004-01-16: Should we do this for
11950 DW_TAG_class_type/DW_TAG_structure_type, too? I think
11951 that current GCC's always emit the DIEs corresponding
11952 to definitions of methods of classes as children of a
11953 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
11954 the DIEs giving the declarations, which could be
11955 anywhere). But I don't see any reason why the
11956 standards says that they have to be there. */
11957 get_scope_pc_bounds (child, &current_low, &current_high, cu);
11958
11959 if (current_low != ((CORE_ADDR) -1))
11960 {
11961 best_low = min (best_low, current_low);
11962 best_high = max (best_high, current_high);
11963 }
11964 break;
11965 default:
0963b4bd 11966 /* Ignore. */
fae299cd
DC
11967 break;
11968 }
11969
11970 child = sibling_die (child);
11971 }
11972 }
11973
11974 *lowpc = best_low;
11975 *highpc = best_high;
11976}
11977
801e3a5b
JB
11978/* Record the address ranges for BLOCK, offset by BASEADDR, as given
11979 in DIE. */
380bca97 11980
801e3a5b
JB
11981static void
11982dwarf2_record_block_ranges (struct die_info *die, struct block *block,
11983 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
11984{
bb5ed363 11985 struct objfile *objfile = cu->objfile;
801e3a5b 11986 struct attribute *attr;
91da1414 11987 struct attribute *attr_high;
801e3a5b 11988
91da1414
MW
11989 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
11990 if (attr_high)
801e3a5b 11991 {
801e3a5b
JB
11992 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
11993 if (attr)
11994 {
31aa7e4e
JB
11995 CORE_ADDR low = attr_value_as_address (attr);
11996 CORE_ADDR high = attr_value_as_address (attr_high);
11997
11998 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
11999 high += low;
9a619af0 12000
801e3a5b
JB
12001 record_block_range (block, baseaddr + low, baseaddr + high - 1);
12002 }
12003 }
12004
12005 attr = dwarf2_attr (die, DW_AT_ranges, cu);
12006 if (attr)
12007 {
bb5ed363 12008 bfd *obfd = objfile->obfd;
ab435259
DE
12009 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
12010 We take advantage of the fact that DW_AT_ranges does not appear
12011 in DW_TAG_compile_unit of DWO files. */
12012 int need_ranges_base = die->tag != DW_TAG_compile_unit;
801e3a5b
JB
12013
12014 /* The value of the DW_AT_ranges attribute is the offset of the
12015 address range list in the .debug_ranges section. */
ab435259
DE
12016 unsigned long offset = (DW_UNSND (attr)
12017 + (need_ranges_base ? cu->ranges_base : 0));
d62bfeaf 12018 const gdb_byte *buffer;
801e3a5b
JB
12019
12020 /* For some target architectures, but not others, the
12021 read_address function sign-extends the addresses it returns.
12022 To recognize base address selection entries, we need a
12023 mask. */
12024 unsigned int addr_size = cu->header.addr_size;
12025 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
12026
12027 /* The base address, to which the next pair is relative. Note
12028 that this 'base' is a DWARF concept: most entries in a range
12029 list are relative, to reduce the number of relocs against the
12030 debugging information. This is separate from this function's
12031 'baseaddr' argument, which GDB uses to relocate debugging
12032 information from a shared library based on the address at
12033 which the library was loaded. */
d00adf39
DE
12034 CORE_ADDR base = cu->base_address;
12035 int base_known = cu->base_known;
801e3a5b 12036
d62bfeaf 12037 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
dce234bc 12038 if (offset >= dwarf2_per_objfile->ranges.size)
801e3a5b
JB
12039 {
12040 complaint (&symfile_complaints,
12041 _("Offset %lu out of bounds for DW_AT_ranges attribute"),
12042 offset);
12043 return;
12044 }
d62bfeaf 12045 buffer = dwarf2_per_objfile->ranges.buffer + offset;
801e3a5b
JB
12046
12047 for (;;)
12048 {
12049 unsigned int bytes_read;
12050 CORE_ADDR start, end;
12051
12052 start = read_address (obfd, buffer, cu, &bytes_read);
12053 buffer += bytes_read;
12054 end = read_address (obfd, buffer, cu, &bytes_read);
12055 buffer += bytes_read;
12056
12057 /* Did we find the end of the range list? */
12058 if (start == 0 && end == 0)
12059 break;
12060
12061 /* Did we find a base address selection entry? */
12062 else if ((start & base_select_mask) == base_select_mask)
12063 {
12064 base = end;
12065 base_known = 1;
12066 }
12067
12068 /* We found an ordinary address range. */
12069 else
12070 {
12071 if (!base_known)
12072 {
12073 complaint (&symfile_complaints,
3e43a32a
MS
12074 _("Invalid .debug_ranges data "
12075 "(no base address)"));
801e3a5b
JB
12076 return;
12077 }
12078
9277c30c
UW
12079 if (start > end)
12080 {
12081 /* Inverted range entries are invalid. */
12082 complaint (&symfile_complaints,
12083 _("Invalid .debug_ranges data "
12084 "(inverted range)"));
12085 return;
12086 }
12087
12088 /* Empty range entries have no effect. */
12089 if (start == end)
12090 continue;
12091
01093045
DE
12092 start += base + baseaddr;
12093 end += base + baseaddr;
12094
12095 /* A not-uncommon case of bad debug info.
12096 Don't pollute the addrmap with bad data. */
12097 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
12098 {
12099 complaint (&symfile_complaints,
12100 _(".debug_ranges entry has start address of zero"
4262abfb 12101 " [in module %s]"), objfile_name (objfile));
01093045
DE
12102 continue;
12103 }
12104
12105 record_block_range (block, start, end - 1);
801e3a5b
JB
12106 }
12107 }
12108 }
12109}
12110
685b1105
JK
12111/* Check whether the producer field indicates either of GCC < 4.6, or the
12112 Intel C/C++ compiler, and cache the result in CU. */
60d5a603 12113
685b1105
JK
12114static void
12115check_producer (struct dwarf2_cu *cu)
60d5a603
JK
12116{
12117 const char *cs;
12118 int major, minor, release;
12119
12120 if (cu->producer == NULL)
12121 {
12122 /* For unknown compilers expect their behavior is DWARF version
12123 compliant.
12124
12125 GCC started to support .debug_types sections by -gdwarf-4 since
12126 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
12127 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
12128 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
12129 interpreted incorrectly by GDB now - GCC PR debug/48229. */
60d5a603 12130 }
685b1105 12131 else if (strncmp (cu->producer, "GNU ", strlen ("GNU ")) == 0)
60d5a603 12132 {
685b1105
JK
12133 /* Skip any identifier after "GNU " - such as "C++" or "Java". */
12134
ba919b58
TT
12135 cs = &cu->producer[strlen ("GNU ")];
12136 while (*cs && !isdigit (*cs))
12137 cs++;
12138 if (sscanf (cs, "%d.%d.%d", &major, &minor, &release) != 3)
12139 {
12140 /* Not recognized as GCC. */
12141 }
12142 else
1b80a9fa
JK
12143 {
12144 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
12145 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
12146 }
685b1105
JK
12147 }
12148 else if (strncmp (cu->producer, "Intel(R) C", strlen ("Intel(R) C")) == 0)
12149 cu->producer_is_icc = 1;
12150 else
12151 {
12152 /* For other non-GCC compilers, expect their behavior is DWARF version
12153 compliant. */
60d5a603
JK
12154 }
12155
ba919b58 12156 cu->checked_producer = 1;
685b1105 12157}
ba919b58 12158
685b1105
JK
12159/* Check for GCC PR debug/45124 fix which is not present in any G++ version up
12160 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
12161 during 4.6.0 experimental. */
12162
12163static int
12164producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
12165{
12166 if (!cu->checked_producer)
12167 check_producer (cu);
12168
12169 return cu->producer_is_gxx_lt_4_6;
60d5a603
JK
12170}
12171
12172/* Return the default accessibility type if it is not overriden by
12173 DW_AT_accessibility. */
12174
12175static enum dwarf_access_attribute
12176dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
12177{
12178 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
12179 {
12180 /* The default DWARF 2 accessibility for members is public, the default
12181 accessibility for inheritance is private. */
12182
12183 if (die->tag != DW_TAG_inheritance)
12184 return DW_ACCESS_public;
12185 else
12186 return DW_ACCESS_private;
12187 }
12188 else
12189 {
12190 /* DWARF 3+ defines the default accessibility a different way. The same
12191 rules apply now for DW_TAG_inheritance as for the members and it only
12192 depends on the container kind. */
12193
12194 if (die->parent->tag == DW_TAG_class_type)
12195 return DW_ACCESS_private;
12196 else
12197 return DW_ACCESS_public;
12198 }
12199}
12200
74ac6d43
TT
12201/* Look for DW_AT_data_member_location. Set *OFFSET to the byte
12202 offset. If the attribute was not found return 0, otherwise return
12203 1. If it was found but could not properly be handled, set *OFFSET
12204 to 0. */
12205
12206static int
12207handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
12208 LONGEST *offset)
12209{
12210 struct attribute *attr;
12211
12212 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
12213 if (attr != NULL)
12214 {
12215 *offset = 0;
12216
12217 /* Note that we do not check for a section offset first here.
12218 This is because DW_AT_data_member_location is new in DWARF 4,
12219 so if we see it, we can assume that a constant form is really
12220 a constant and not a section offset. */
12221 if (attr_form_is_constant (attr))
12222 *offset = dwarf2_get_attr_constant_value (attr, 0);
12223 else if (attr_form_is_section_offset (attr))
12224 dwarf2_complex_location_expr_complaint ();
12225 else if (attr_form_is_block (attr))
12226 *offset = decode_locdesc (DW_BLOCK (attr), cu);
12227 else
12228 dwarf2_complex_location_expr_complaint ();
12229
12230 return 1;
12231 }
12232
12233 return 0;
12234}
12235
c906108c
SS
12236/* Add an aggregate field to the field list. */
12237
12238static void
107d2387 12239dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73 12240 struct dwarf2_cu *cu)
6e70227d 12241{
e7c27a73 12242 struct objfile *objfile = cu->objfile;
5e2b427d 12243 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
12244 struct nextfield *new_field;
12245 struct attribute *attr;
12246 struct field *fp;
15d034d0 12247 const char *fieldname = "";
c906108c
SS
12248
12249 /* Allocate a new field list entry and link it in. */
12250 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield));
b8c9b27d 12251 make_cleanup (xfree, new_field);
c906108c 12252 memset (new_field, 0, sizeof (struct nextfield));
7d0ccb61
DJ
12253
12254 if (die->tag == DW_TAG_inheritance)
12255 {
12256 new_field->next = fip->baseclasses;
12257 fip->baseclasses = new_field;
12258 }
12259 else
12260 {
12261 new_field->next = fip->fields;
12262 fip->fields = new_field;
12263 }
c906108c
SS
12264 fip->nfields++;
12265
e142c38c 12266 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c
SS
12267 if (attr)
12268 new_field->accessibility = DW_UNSND (attr);
60d5a603
JK
12269 else
12270 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
c906108c
SS
12271 if (new_field->accessibility != DW_ACCESS_public)
12272 fip->non_public_fields = 1;
60d5a603 12273
e142c38c 12274 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
c906108c
SS
12275 if (attr)
12276 new_field->virtuality = DW_UNSND (attr);
60d5a603
JK
12277 else
12278 new_field->virtuality = DW_VIRTUALITY_none;
c906108c
SS
12279
12280 fp = &new_field->field;
a9a9bd0f 12281
e142c38c 12282 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 12283 {
74ac6d43
TT
12284 LONGEST offset;
12285
a9a9bd0f 12286 /* Data member other than a C++ static data member. */
6e70227d 12287
c906108c 12288 /* Get type of field. */
e7c27a73 12289 fp->type = die_type (die, cu);
c906108c 12290
d6a843b5 12291 SET_FIELD_BITPOS (*fp, 0);
01ad7f36 12292
c906108c 12293 /* Get bit size of field (zero if none). */
e142c38c 12294 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
c906108c
SS
12295 if (attr)
12296 {
12297 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
12298 }
12299 else
12300 {
12301 FIELD_BITSIZE (*fp) = 0;
12302 }
12303
12304 /* Get bit offset of field. */
74ac6d43
TT
12305 if (handle_data_member_location (die, cu, &offset))
12306 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
e142c38c 12307 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
c906108c
SS
12308 if (attr)
12309 {
5e2b427d 12310 if (gdbarch_bits_big_endian (gdbarch))
c906108c
SS
12311 {
12312 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
12313 additional bit offset from the MSB of the containing
12314 anonymous object to the MSB of the field. We don't
12315 have to do anything special since we don't need to
12316 know the size of the anonymous object. */
f41f5e61 12317 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
c906108c
SS
12318 }
12319 else
12320 {
12321 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
12322 MSB of the anonymous object, subtract off the number of
12323 bits from the MSB of the field to the MSB of the
12324 object, and then subtract off the number of bits of
12325 the field itself. The result is the bit offset of
12326 the LSB of the field. */
c906108c
SS
12327 int anonymous_size;
12328 int bit_offset = DW_UNSND (attr);
12329
e142c38c 12330 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
12331 if (attr)
12332 {
12333 /* The size of the anonymous object containing
12334 the bit field is explicit, so use the
12335 indicated size (in bytes). */
12336 anonymous_size = DW_UNSND (attr);
12337 }
12338 else
12339 {
12340 /* The size of the anonymous object containing
12341 the bit field must be inferred from the type
12342 attribute of the data member containing the
12343 bit field. */
12344 anonymous_size = TYPE_LENGTH (fp->type);
12345 }
f41f5e61
PA
12346 SET_FIELD_BITPOS (*fp,
12347 (FIELD_BITPOS (*fp)
12348 + anonymous_size * bits_per_byte
12349 - bit_offset - FIELD_BITSIZE (*fp)));
c906108c
SS
12350 }
12351 }
12352
12353 /* Get name of field. */
39cbfefa
DJ
12354 fieldname = dwarf2_name (die, cu);
12355 if (fieldname == NULL)
12356 fieldname = "";
d8151005
DJ
12357
12358 /* The name is already allocated along with this objfile, so we don't
12359 need to duplicate it for the type. */
12360 fp->name = fieldname;
c906108c
SS
12361
12362 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 12363 pointer or virtual base class pointer) to private. */
e142c38c 12364 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c 12365 {
d48cc9dd 12366 FIELD_ARTIFICIAL (*fp) = 1;
c906108c
SS
12367 new_field->accessibility = DW_ACCESS_private;
12368 fip->non_public_fields = 1;
12369 }
12370 }
a9a9bd0f 12371 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 12372 {
a9a9bd0f
DC
12373 /* C++ static member. */
12374
12375 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
12376 is a declaration, but all versions of G++ as of this writing
12377 (so through at least 3.2.1) incorrectly generate
12378 DW_TAG_variable tags. */
6e70227d 12379
ff355380 12380 const char *physname;
c906108c 12381
a9a9bd0f 12382 /* Get name of field. */
39cbfefa
DJ
12383 fieldname = dwarf2_name (die, cu);
12384 if (fieldname == NULL)
c906108c
SS
12385 return;
12386
254e6b9e 12387 attr = dwarf2_attr (die, DW_AT_const_value, cu);
3863f96c
DE
12388 if (attr
12389 /* Only create a symbol if this is an external value.
12390 new_symbol checks this and puts the value in the global symbol
12391 table, which we want. If it is not external, new_symbol
12392 will try to put the value in cu->list_in_scope which is wrong. */
12393 && dwarf2_flag_true_p (die, DW_AT_external, cu))
254e6b9e
DE
12394 {
12395 /* A static const member, not much different than an enum as far as
12396 we're concerned, except that we can support more types. */
12397 new_symbol (die, NULL, cu);
12398 }
12399
2df3850c 12400 /* Get physical name. */
ff355380 12401 physname = dwarf2_physname (fieldname, die, cu);
c906108c 12402
d8151005
DJ
12403 /* The name is already allocated along with this objfile, so we don't
12404 need to duplicate it for the type. */
12405 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 12406 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 12407 FIELD_NAME (*fp) = fieldname;
c906108c
SS
12408 }
12409 else if (die->tag == DW_TAG_inheritance)
12410 {
74ac6d43 12411 LONGEST offset;
d4b96c9a 12412
74ac6d43
TT
12413 /* C++ base class field. */
12414 if (handle_data_member_location (die, cu, &offset))
12415 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
c906108c 12416 FIELD_BITSIZE (*fp) = 0;
e7c27a73 12417 FIELD_TYPE (*fp) = die_type (die, cu);
c906108c
SS
12418 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
12419 fip->nbaseclasses++;
12420 }
12421}
12422
98751a41
JK
12423/* Add a typedef defined in the scope of the FIP's class. */
12424
12425static void
12426dwarf2_add_typedef (struct field_info *fip, struct die_info *die,
12427 struct dwarf2_cu *cu)
6e70227d 12428{
98751a41 12429 struct objfile *objfile = cu->objfile;
98751a41
JK
12430 struct typedef_field_list *new_field;
12431 struct attribute *attr;
12432 struct typedef_field *fp;
12433 char *fieldname = "";
12434
12435 /* Allocate a new field list entry and link it in. */
12436 new_field = xzalloc (sizeof (*new_field));
12437 make_cleanup (xfree, new_field);
12438
12439 gdb_assert (die->tag == DW_TAG_typedef);
12440
12441 fp = &new_field->field;
12442
12443 /* Get name of field. */
12444 fp->name = dwarf2_name (die, cu);
12445 if (fp->name == NULL)
12446 return;
12447
12448 fp->type = read_type_die (die, cu);
12449
12450 new_field->next = fip->typedef_field_list;
12451 fip->typedef_field_list = new_field;
12452 fip->typedef_field_list_count++;
12453}
12454
c906108c
SS
12455/* Create the vector of fields, and attach it to the type. */
12456
12457static void
fba45db2 12458dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 12459 struct dwarf2_cu *cu)
c906108c
SS
12460{
12461 int nfields = fip->nfields;
12462
12463 /* Record the field count, allocate space for the array of fields,
12464 and create blank accessibility bitfields if necessary. */
12465 TYPE_NFIELDS (type) = nfields;
12466 TYPE_FIELDS (type) = (struct field *)
12467 TYPE_ALLOC (type, sizeof (struct field) * nfields);
12468 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
12469
b4ba55a1 12470 if (fip->non_public_fields && cu->language != language_ada)
c906108c
SS
12471 {
12472 ALLOCATE_CPLUS_STRUCT_TYPE (type);
12473
12474 TYPE_FIELD_PRIVATE_BITS (type) =
12475 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12476 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
12477
12478 TYPE_FIELD_PROTECTED_BITS (type) =
12479 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12480 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
12481
774b6a14
TT
12482 TYPE_FIELD_IGNORE_BITS (type) =
12483 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
12484 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
c906108c
SS
12485 }
12486
12487 /* If the type has baseclasses, allocate and clear a bit vector for
12488 TYPE_FIELD_VIRTUAL_BITS. */
b4ba55a1 12489 if (fip->nbaseclasses && cu->language != language_ada)
c906108c
SS
12490 {
12491 int num_bytes = B_BYTES (fip->nbaseclasses);
fe1b8b76 12492 unsigned char *pointer;
c906108c
SS
12493
12494 ALLOCATE_CPLUS_STRUCT_TYPE (type);
fe1b8b76
JB
12495 pointer = TYPE_ALLOC (type, num_bytes);
12496 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
c906108c
SS
12497 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses);
12498 TYPE_N_BASECLASSES (type) = fip->nbaseclasses;
12499 }
12500
3e43a32a
MS
12501 /* Copy the saved-up fields into the field vector. Start from the head of
12502 the list, adding to the tail of the field array, so that they end up in
12503 the same order in the array in which they were added to the list. */
c906108c
SS
12504 while (nfields-- > 0)
12505 {
7d0ccb61
DJ
12506 struct nextfield *fieldp;
12507
12508 if (fip->fields)
12509 {
12510 fieldp = fip->fields;
12511 fip->fields = fieldp->next;
12512 }
12513 else
12514 {
12515 fieldp = fip->baseclasses;
12516 fip->baseclasses = fieldp->next;
12517 }
12518
12519 TYPE_FIELD (type, nfields) = fieldp->field;
12520 switch (fieldp->accessibility)
c906108c 12521 {
c5aa993b 12522 case DW_ACCESS_private:
b4ba55a1
JB
12523 if (cu->language != language_ada)
12524 SET_TYPE_FIELD_PRIVATE (type, nfields);
c5aa993b 12525 break;
c906108c 12526
c5aa993b 12527 case DW_ACCESS_protected:
b4ba55a1
JB
12528 if (cu->language != language_ada)
12529 SET_TYPE_FIELD_PROTECTED (type, nfields);
c5aa993b 12530 break;
c906108c 12531
c5aa993b
JM
12532 case DW_ACCESS_public:
12533 break;
c906108c 12534
c5aa993b
JM
12535 default:
12536 /* Unknown accessibility. Complain and treat it as public. */
12537 {
e2e0b3e5 12538 complaint (&symfile_complaints, _("unsupported accessibility %d"),
7d0ccb61 12539 fieldp->accessibility);
c5aa993b
JM
12540 }
12541 break;
c906108c
SS
12542 }
12543 if (nfields < fip->nbaseclasses)
12544 {
7d0ccb61 12545 switch (fieldp->virtuality)
c906108c 12546 {
c5aa993b
JM
12547 case DW_VIRTUALITY_virtual:
12548 case DW_VIRTUALITY_pure_virtual:
b4ba55a1 12549 if (cu->language == language_ada)
a73c6dcd 12550 error (_("unexpected virtuality in component of Ada type"));
c5aa993b
JM
12551 SET_TYPE_FIELD_VIRTUAL (type, nfields);
12552 break;
c906108c
SS
12553 }
12554 }
c906108c
SS
12555 }
12556}
12557
7d27a96d
TT
12558/* Return true if this member function is a constructor, false
12559 otherwise. */
12560
12561static int
12562dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
12563{
12564 const char *fieldname;
12565 const char *typename;
12566 int len;
12567
12568 if (die->parent == NULL)
12569 return 0;
12570
12571 if (die->parent->tag != DW_TAG_structure_type
12572 && die->parent->tag != DW_TAG_union_type
12573 && die->parent->tag != DW_TAG_class_type)
12574 return 0;
12575
12576 fieldname = dwarf2_name (die, cu);
12577 typename = dwarf2_name (die->parent, cu);
12578 if (fieldname == NULL || typename == NULL)
12579 return 0;
12580
12581 len = strlen (fieldname);
12582 return (strncmp (fieldname, typename, len) == 0
12583 && (typename[len] == '\0' || typename[len] == '<'));
12584}
12585
c906108c
SS
12586/* Add a member function to the proper fieldlist. */
12587
12588static void
107d2387 12589dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 12590 struct type *type, struct dwarf2_cu *cu)
c906108c 12591{
e7c27a73 12592 struct objfile *objfile = cu->objfile;
c906108c
SS
12593 struct attribute *attr;
12594 struct fnfieldlist *flp;
12595 int i;
12596 struct fn_field *fnp;
15d034d0 12597 const char *fieldname;
c906108c 12598 struct nextfnfield *new_fnfield;
f792889a 12599 struct type *this_type;
60d5a603 12600 enum dwarf_access_attribute accessibility;
c906108c 12601
b4ba55a1 12602 if (cu->language == language_ada)
a73c6dcd 12603 error (_("unexpected member function in Ada type"));
b4ba55a1 12604
2df3850c 12605 /* Get name of member function. */
39cbfefa
DJ
12606 fieldname = dwarf2_name (die, cu);
12607 if (fieldname == NULL)
2df3850c 12608 return;
c906108c 12609
c906108c
SS
12610 /* Look up member function name in fieldlist. */
12611 for (i = 0; i < fip->nfnfields; i++)
12612 {
27bfe10e 12613 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
c906108c
SS
12614 break;
12615 }
12616
12617 /* Create new list element if necessary. */
12618 if (i < fip->nfnfields)
12619 flp = &fip->fnfieldlists[i];
12620 else
12621 {
12622 if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0)
12623 {
12624 fip->fnfieldlists = (struct fnfieldlist *)
12625 xrealloc (fip->fnfieldlists,
12626 (fip->nfnfields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 12627 * sizeof (struct fnfieldlist));
c906108c 12628 if (fip->nfnfields == 0)
c13c43fd 12629 make_cleanup (free_current_contents, &fip->fnfieldlists);
c906108c
SS
12630 }
12631 flp = &fip->fnfieldlists[fip->nfnfields];
12632 flp->name = fieldname;
12633 flp->length = 0;
12634 flp->head = NULL;
3da10d80 12635 i = fip->nfnfields++;
c906108c
SS
12636 }
12637
12638 /* Create a new member function field and chain it to the field list
0963b4bd 12639 entry. */
c906108c 12640 new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield));
b8c9b27d 12641 make_cleanup (xfree, new_fnfield);
c906108c
SS
12642 memset (new_fnfield, 0, sizeof (struct nextfnfield));
12643 new_fnfield->next = flp->head;
12644 flp->head = new_fnfield;
12645 flp->length++;
12646
12647 /* Fill in the member function field info. */
12648 fnp = &new_fnfield->fnfield;
3da10d80
KS
12649
12650 /* Delay processing of the physname until later. */
12651 if (cu->language == language_cplus || cu->language == language_java)
12652 {
12653 add_to_method_list (type, i, flp->length - 1, fieldname,
12654 die, cu);
12655 }
12656 else
12657 {
1d06ead6 12658 const char *physname = dwarf2_physname (fieldname, die, cu);
3da10d80
KS
12659 fnp->physname = physname ? physname : "";
12660 }
12661
c906108c 12662 fnp->type = alloc_type (objfile);
f792889a
DJ
12663 this_type = read_type_die (die, cu);
12664 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
c906108c 12665 {
f792889a 12666 int nparams = TYPE_NFIELDS (this_type);
c906108c 12667
f792889a 12668 /* TYPE is the domain of this method, and THIS_TYPE is the type
e26fb1d7
DC
12669 of the method itself (TYPE_CODE_METHOD). */
12670 smash_to_method_type (fnp->type, type,
f792889a
DJ
12671 TYPE_TARGET_TYPE (this_type),
12672 TYPE_FIELDS (this_type),
12673 TYPE_NFIELDS (this_type),
12674 TYPE_VARARGS (this_type));
c906108c
SS
12675
12676 /* Handle static member functions.
c5aa993b 12677 Dwarf2 has no clean way to discern C++ static and non-static
0963b4bd
MS
12678 member functions. G++ helps GDB by marking the first
12679 parameter for non-static member functions (which is the this
12680 pointer) as artificial. We obtain this information from
12681 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
f792889a 12682 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
c906108c
SS
12683 fnp->voffset = VOFFSET_STATIC;
12684 }
12685 else
e2e0b3e5 12686 complaint (&symfile_complaints, _("member function type missing for '%s'"),
3da10d80 12687 dwarf2_full_name (fieldname, die, cu));
c906108c
SS
12688
12689 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 12690 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 12691 fnp->fcontext = die_containing_type (die, cu);
c906108c 12692
3e43a32a
MS
12693 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
12694 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
c906108c
SS
12695
12696 /* Get accessibility. */
e142c38c 12697 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
c906108c 12698 if (attr)
60d5a603
JK
12699 accessibility = DW_UNSND (attr);
12700 else
12701 accessibility = dwarf2_default_access_attribute (die, cu);
12702 switch (accessibility)
c906108c 12703 {
60d5a603
JK
12704 case DW_ACCESS_private:
12705 fnp->is_private = 1;
12706 break;
12707 case DW_ACCESS_protected:
12708 fnp->is_protected = 1;
12709 break;
c906108c
SS
12710 }
12711
b02dede2 12712 /* Check for artificial methods. */
e142c38c 12713 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
12714 if (attr && DW_UNSND (attr) != 0)
12715 fnp->is_artificial = 1;
12716
7d27a96d
TT
12717 fnp->is_constructor = dwarf2_is_constructor (die, cu);
12718
0d564a31 12719 /* Get index in virtual function table if it is a virtual member
aec5aa8b
TT
12720 function. For older versions of GCC, this is an offset in the
12721 appropriate virtual table, as specified by DW_AT_containing_type.
12722 For everyone else, it is an expression to be evaluated relative
0d564a31
DJ
12723 to the object address. */
12724
e142c38c 12725 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
aec5aa8b 12726 if (attr)
8e19ed76 12727 {
aec5aa8b 12728 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
8e19ed76 12729 {
aec5aa8b
TT
12730 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
12731 {
12732 /* Old-style GCC. */
12733 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
12734 }
12735 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
12736 || (DW_BLOCK (attr)->size > 1
12737 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
12738 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
12739 {
12740 struct dwarf_block blk;
12741 int offset;
12742
12743 offset = (DW_BLOCK (attr)->data[0] == DW_OP_deref
12744 ? 1 : 2);
12745 blk.size = DW_BLOCK (attr)->size - offset;
12746 blk.data = DW_BLOCK (attr)->data + offset;
12747 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
12748 if ((fnp->voffset % cu->header.addr_size) != 0)
12749 dwarf2_complex_location_expr_complaint ();
12750 else
12751 fnp->voffset /= cu->header.addr_size;
12752 fnp->voffset += 2;
12753 }
12754 else
12755 dwarf2_complex_location_expr_complaint ();
12756
12757 if (!fnp->fcontext)
12758 fnp->fcontext = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
12759 }
3690dd37 12760 else if (attr_form_is_section_offset (attr))
8e19ed76 12761 {
4d3c2250 12762 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
12763 }
12764 else
12765 {
4d3c2250
KB
12766 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
12767 fieldname);
8e19ed76 12768 }
0d564a31 12769 }
d48cc9dd
DJ
12770 else
12771 {
12772 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
12773 if (attr && DW_UNSND (attr))
12774 {
12775 /* GCC does this, as of 2008-08-25; PR debug/37237. */
12776 complaint (&symfile_complaints,
3e43a32a
MS
12777 _("Member function \"%s\" (offset %d) is virtual "
12778 "but the vtable offset is not specified"),
b64f50a1 12779 fieldname, die->offset.sect_off);
9655fd1a 12780 ALLOCATE_CPLUS_STRUCT_TYPE (type);
d48cc9dd
DJ
12781 TYPE_CPLUS_DYNAMIC (type) = 1;
12782 }
12783 }
c906108c
SS
12784}
12785
12786/* Create the vector of member function fields, and attach it to the type. */
12787
12788static void
fba45db2 12789dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 12790 struct dwarf2_cu *cu)
c906108c
SS
12791{
12792 struct fnfieldlist *flp;
c906108c
SS
12793 int i;
12794
b4ba55a1 12795 if (cu->language == language_ada)
a73c6dcd 12796 error (_("unexpected member functions in Ada type"));
b4ba55a1 12797
c906108c
SS
12798 ALLOCATE_CPLUS_STRUCT_TYPE (type);
12799 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
12800 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields);
12801
12802 for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++)
12803 {
12804 struct nextfnfield *nfp = flp->head;
12805 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
12806 int k;
12807
12808 TYPE_FN_FIELDLIST_NAME (type, i) = flp->name;
12809 TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length;
12810 fn_flp->fn_fields = (struct fn_field *)
12811 TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length);
12812 for (k = flp->length; (k--, nfp); nfp = nfp->next)
c5aa993b 12813 fn_flp->fn_fields[k] = nfp->fnfield;
c906108c
SS
12814 }
12815
12816 TYPE_NFN_FIELDS (type) = fip->nfnfields;
c906108c
SS
12817}
12818
1168df01
JB
12819/* Returns non-zero if NAME is the name of a vtable member in CU's
12820 language, zero otherwise. */
12821static int
12822is_vtable_name (const char *name, struct dwarf2_cu *cu)
12823{
12824 static const char vptr[] = "_vptr";
987504bb 12825 static const char vtable[] = "vtable";
1168df01 12826
987504bb
JJ
12827 /* Look for the C++ and Java forms of the vtable. */
12828 if ((cu->language == language_java
12829 && strncmp (name, vtable, sizeof (vtable) - 1) == 0)
12830 || (strncmp (name, vptr, sizeof (vptr) - 1) == 0
12831 && is_cplus_marker (name[sizeof (vptr) - 1])))
1168df01
JB
12832 return 1;
12833
12834 return 0;
12835}
12836
c0dd20ea 12837/* GCC outputs unnamed structures that are really pointers to member
0b92b5bb
TT
12838 functions, with the ABI-specified layout. If TYPE describes
12839 such a structure, smash it into a member function type.
61049d3b
DJ
12840
12841 GCC shouldn't do this; it should just output pointer to member DIEs.
12842 This is GCC PR debug/28767. */
c0dd20ea 12843
0b92b5bb
TT
12844static void
12845quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
c0dd20ea 12846{
0b92b5bb 12847 struct type *pfn_type, *domain_type, *new_type;
c0dd20ea
DJ
12848
12849 /* Check for a structure with no name and two children. */
0b92b5bb
TT
12850 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
12851 return;
c0dd20ea
DJ
12852
12853 /* Check for __pfn and __delta members. */
0b92b5bb
TT
12854 if (TYPE_FIELD_NAME (type, 0) == NULL
12855 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
12856 || TYPE_FIELD_NAME (type, 1) == NULL
12857 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
12858 return;
c0dd20ea
DJ
12859
12860 /* Find the type of the method. */
0b92b5bb 12861 pfn_type = TYPE_FIELD_TYPE (type, 0);
c0dd20ea
DJ
12862 if (pfn_type == NULL
12863 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
12864 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
0b92b5bb 12865 return;
c0dd20ea
DJ
12866
12867 /* Look for the "this" argument. */
12868 pfn_type = TYPE_TARGET_TYPE (pfn_type);
12869 if (TYPE_NFIELDS (pfn_type) == 0
0b92b5bb 12870 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
c0dd20ea 12871 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
0b92b5bb 12872 return;
c0dd20ea
DJ
12873
12874 domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
0b92b5bb
TT
12875 new_type = alloc_type (objfile);
12876 smash_to_method_type (new_type, domain_type, TYPE_TARGET_TYPE (pfn_type),
c0dd20ea
DJ
12877 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
12878 TYPE_VARARGS (pfn_type));
0b92b5bb 12879 smash_to_methodptr_type (type, new_type);
c0dd20ea 12880}
1168df01 12881
685b1105
JK
12882/* Return non-zero if the CU's PRODUCER string matches the Intel C/C++ compiler
12883 (icc). */
12884
12885static int
12886producer_is_icc (struct dwarf2_cu *cu)
12887{
12888 if (!cu->checked_producer)
12889 check_producer (cu);
12890
12891 return cu->producer_is_icc;
12892}
12893
c906108c 12894/* Called when we find the DIE that starts a structure or union scope
c767944b
DJ
12895 (definition) to create a type for the structure or union. Fill in
12896 the type's name and general properties; the members will not be
83655187
DE
12897 processed until process_structure_scope. A symbol table entry for
12898 the type will also not be done until process_structure_scope (assuming
12899 the type has a name).
c906108c 12900
c767944b
DJ
12901 NOTE: we need to call these functions regardless of whether or not the
12902 DIE has a DW_AT_name attribute, since it might be an anonymous
c906108c 12903 structure or union. This gets the type entered into our set of
83655187 12904 user defined types. */
c906108c 12905
f792889a 12906static struct type *
134d01f1 12907read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 12908{
e7c27a73 12909 struct objfile *objfile = cu->objfile;
c906108c
SS
12910 struct type *type;
12911 struct attribute *attr;
15d034d0 12912 const char *name;
c906108c 12913
348e048f
DE
12914 /* If the definition of this type lives in .debug_types, read that type.
12915 Don't follow DW_AT_specification though, that will take us back up
12916 the chain and we want to go down. */
45e58e77 12917 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
12918 if (attr)
12919 {
ac9ec31b 12920 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 12921
ac9ec31b 12922 /* The type's CU may not be the same as CU.
02142a6c 12923 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
12924 return set_die_type (die, type, cu);
12925 }
12926
c0dd20ea 12927 type = alloc_type (objfile);
c906108c 12928 INIT_CPLUS_SPECIFIC (type);
93311388 12929
39cbfefa
DJ
12930 name = dwarf2_name (die, cu);
12931 if (name != NULL)
c906108c 12932 {
987504bb
JJ
12933 if (cu->language == language_cplus
12934 || cu->language == language_java)
63d06c5c 12935 {
15d034d0 12936 const char *full_name = dwarf2_full_name (name, die, cu);
3da10d80
KS
12937
12938 /* dwarf2_full_name might have already finished building the DIE's
12939 type. If so, there is no need to continue. */
12940 if (get_die_type (die, cu) != NULL)
12941 return get_die_type (die, cu);
12942
12943 TYPE_TAG_NAME (type) = full_name;
94af9270
KS
12944 if (die->tag == DW_TAG_structure_type
12945 || die->tag == DW_TAG_class_type)
12946 TYPE_NAME (type) = TYPE_TAG_NAME (type);
63d06c5c
DC
12947 }
12948 else
12949 {
d8151005
DJ
12950 /* The name is already allocated along with this objfile, so
12951 we don't need to duplicate it for the type. */
7d455152 12952 TYPE_TAG_NAME (type) = name;
94af9270
KS
12953 if (die->tag == DW_TAG_class_type)
12954 TYPE_NAME (type) = TYPE_TAG_NAME (type);
63d06c5c 12955 }
c906108c
SS
12956 }
12957
12958 if (die->tag == DW_TAG_structure_type)
12959 {
12960 TYPE_CODE (type) = TYPE_CODE_STRUCT;
12961 }
12962 else if (die->tag == DW_TAG_union_type)
12963 {
12964 TYPE_CODE (type) = TYPE_CODE_UNION;
12965 }
12966 else
12967 {
c906108c
SS
12968 TYPE_CODE (type) = TYPE_CODE_CLASS;
12969 }
12970
0cc2414c
TT
12971 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
12972 TYPE_DECLARED_CLASS (type) = 1;
12973
e142c38c 12974 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
12975 if (attr)
12976 {
12977 TYPE_LENGTH (type) = DW_UNSND (attr);
12978 }
12979 else
12980 {
12981 TYPE_LENGTH (type) = 0;
12982 }
12983
422b1cb0 12984 if (producer_is_icc (cu) && (TYPE_LENGTH (type) == 0))
685b1105
JK
12985 {
12986 /* ICC does not output the required DW_AT_declaration
12987 on incomplete types, but gives them a size of zero. */
422b1cb0 12988 TYPE_STUB (type) = 1;
685b1105
JK
12989 }
12990 else
12991 TYPE_STUB_SUPPORTED (type) = 1;
12992
dc718098 12993 if (die_is_declaration (die, cu))
876cecd0 12994 TYPE_STUB (type) = 1;
a6c727b2
DJ
12995 else if (attr == NULL && die->child == NULL
12996 && producer_is_realview (cu->producer))
12997 /* RealView does not output the required DW_AT_declaration
12998 on incomplete types. */
12999 TYPE_STUB (type) = 1;
dc718098 13000
c906108c
SS
13001 /* We need to add the type field to the die immediately so we don't
13002 infinitely recurse when dealing with pointers to the structure
0963b4bd 13003 type within the structure itself. */
1c379e20 13004 set_die_type (die, type, cu);
c906108c 13005
7e314c57
JK
13006 /* set_die_type should be already done. */
13007 set_descriptive_type (type, die, cu);
13008
c767944b
DJ
13009 return type;
13010}
13011
13012/* Finish creating a structure or union type, including filling in
13013 its members and creating a symbol for it. */
13014
13015static void
13016process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
13017{
13018 struct objfile *objfile = cu->objfile;
13019 struct die_info *child_die = die->child;
13020 struct type *type;
13021
13022 type = get_die_type (die, cu);
13023 if (type == NULL)
13024 type = read_structure_type (die, cu);
13025
e142c38c 13026 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
13027 {
13028 struct field_info fi;
13029 struct die_info *child_die;
34eaf542 13030 VEC (symbolp) *template_args = NULL;
c767944b 13031 struct cleanup *back_to = make_cleanup (null_cleanup, 0);
c906108c
SS
13032
13033 memset (&fi, 0, sizeof (struct field_info));
13034
639d11d3 13035 child_die = die->child;
c906108c
SS
13036
13037 while (child_die && child_die->tag)
13038 {
a9a9bd0f
DC
13039 if (child_die->tag == DW_TAG_member
13040 || child_die->tag == DW_TAG_variable)
c906108c 13041 {
a9a9bd0f
DC
13042 /* NOTE: carlton/2002-11-05: A C++ static data member
13043 should be a DW_TAG_member that is a declaration, but
13044 all versions of G++ as of this writing (so through at
13045 least 3.2.1) incorrectly generate DW_TAG_variable
13046 tags for them instead. */
e7c27a73 13047 dwarf2_add_field (&fi, child_die, cu);
c906108c 13048 }
8713b1b1 13049 else if (child_die->tag == DW_TAG_subprogram)
c906108c 13050 {
0963b4bd 13051 /* C++ member function. */
e7c27a73 13052 dwarf2_add_member_fn (&fi, child_die, type, cu);
c906108c
SS
13053 }
13054 else if (child_die->tag == DW_TAG_inheritance)
13055 {
13056 /* C++ base class field. */
e7c27a73 13057 dwarf2_add_field (&fi, child_die, cu);
c906108c 13058 }
98751a41
JK
13059 else if (child_die->tag == DW_TAG_typedef)
13060 dwarf2_add_typedef (&fi, child_die, cu);
34eaf542
TT
13061 else if (child_die->tag == DW_TAG_template_type_param
13062 || child_die->tag == DW_TAG_template_value_param)
13063 {
13064 struct symbol *arg = new_symbol (child_die, NULL, cu);
13065
f1078f66
DJ
13066 if (arg != NULL)
13067 VEC_safe_push (symbolp, template_args, arg);
34eaf542
TT
13068 }
13069
c906108c
SS
13070 child_die = sibling_die (child_die);
13071 }
13072
34eaf542
TT
13073 /* Attach template arguments to type. */
13074 if (! VEC_empty (symbolp, template_args))
13075 {
13076 ALLOCATE_CPLUS_STRUCT_TYPE (type);
13077 TYPE_N_TEMPLATE_ARGUMENTS (type)
13078 = VEC_length (symbolp, template_args);
13079 TYPE_TEMPLATE_ARGUMENTS (type)
13080 = obstack_alloc (&objfile->objfile_obstack,
13081 (TYPE_N_TEMPLATE_ARGUMENTS (type)
13082 * sizeof (struct symbol *)));
13083 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
13084 VEC_address (symbolp, template_args),
13085 (TYPE_N_TEMPLATE_ARGUMENTS (type)
13086 * sizeof (struct symbol *)));
13087 VEC_free (symbolp, template_args);
13088 }
13089
c906108c
SS
13090 /* Attach fields and member functions to the type. */
13091 if (fi.nfields)
e7c27a73 13092 dwarf2_attach_fields_to_type (&fi, type, cu);
c906108c
SS
13093 if (fi.nfnfields)
13094 {
e7c27a73 13095 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 13096
c5aa993b 13097 /* Get the type which refers to the base class (possibly this
c906108c 13098 class itself) which contains the vtable pointer for the current
0d564a31
DJ
13099 class from the DW_AT_containing_type attribute. This use of
13100 DW_AT_containing_type is a GNU extension. */
c906108c 13101
e142c38c 13102 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 13103 {
e7c27a73 13104 struct type *t = die_containing_type (die, cu);
c906108c
SS
13105
13106 TYPE_VPTR_BASETYPE (type) = t;
13107 if (type == t)
13108 {
c906108c
SS
13109 int i;
13110
13111 /* Our own class provides vtbl ptr. */
13112 for (i = TYPE_NFIELDS (t) - 1;
13113 i >= TYPE_N_BASECLASSES (t);
13114 --i)
13115 {
0d5cff50 13116 const char *fieldname = TYPE_FIELD_NAME (t, i);
c906108c 13117
1168df01 13118 if (is_vtable_name (fieldname, cu))
c906108c
SS
13119 {
13120 TYPE_VPTR_FIELDNO (type) = i;
13121 break;
13122 }
13123 }
13124
13125 /* Complain if virtual function table field not found. */
13126 if (i < TYPE_N_BASECLASSES (t))
4d3c2250 13127 complaint (&symfile_complaints,
3e43a32a
MS
13128 _("virtual function table pointer "
13129 "not found when defining class '%s'"),
4d3c2250
KB
13130 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
13131 "");
c906108c
SS
13132 }
13133 else
13134 {
13135 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
13136 }
13137 }
f6235d4c
EZ
13138 else if (cu->producer
13139 && strncmp (cu->producer,
13140 "IBM(R) XL C/C++ Advanced Edition", 32) == 0)
13141 {
13142 /* The IBM XLC compiler does not provide direct indication
13143 of the containing type, but the vtable pointer is
13144 always named __vfp. */
13145
13146 int i;
13147
13148 for (i = TYPE_NFIELDS (type) - 1;
13149 i >= TYPE_N_BASECLASSES (type);
13150 --i)
13151 {
13152 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
13153 {
13154 TYPE_VPTR_FIELDNO (type) = i;
13155 TYPE_VPTR_BASETYPE (type) = type;
13156 break;
13157 }
13158 }
13159 }
c906108c 13160 }
98751a41
JK
13161
13162 /* Copy fi.typedef_field_list linked list elements content into the
13163 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
13164 if (fi.typedef_field_list)
13165 {
13166 int i = fi.typedef_field_list_count;
13167
a0d7a4ff 13168 ALLOCATE_CPLUS_STRUCT_TYPE (type);
98751a41
JK
13169 TYPE_TYPEDEF_FIELD_ARRAY (type)
13170 = TYPE_ALLOC (type, sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * i);
13171 TYPE_TYPEDEF_FIELD_COUNT (type) = i;
13172
13173 /* Reverse the list order to keep the debug info elements order. */
13174 while (--i >= 0)
13175 {
13176 struct typedef_field *dest, *src;
6e70227d 13177
98751a41
JK
13178 dest = &TYPE_TYPEDEF_FIELD (type, i);
13179 src = &fi.typedef_field_list->field;
13180 fi.typedef_field_list = fi.typedef_field_list->next;
13181 *dest = *src;
13182 }
13183 }
c767944b
DJ
13184
13185 do_cleanups (back_to);
eb2a6f42
TT
13186
13187 if (HAVE_CPLUS_STRUCT (type))
13188 TYPE_CPLUS_REALLY_JAVA (type) = cu->language == language_java;
c906108c 13189 }
63d06c5c 13190
bb5ed363 13191 quirk_gcc_member_function_pointer (type, objfile);
0b92b5bb 13192
90aeadfc
DC
13193 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
13194 snapshots) has been known to create a die giving a declaration
13195 for a class that has, as a child, a die giving a definition for a
13196 nested class. So we have to process our children even if the
13197 current die is a declaration. Normally, of course, a declaration
13198 won't have any children at all. */
134d01f1 13199
90aeadfc
DC
13200 while (child_die != NULL && child_die->tag)
13201 {
13202 if (child_die->tag == DW_TAG_member
13203 || child_die->tag == DW_TAG_variable
34eaf542
TT
13204 || child_die->tag == DW_TAG_inheritance
13205 || child_die->tag == DW_TAG_template_value_param
13206 || child_die->tag == DW_TAG_template_type_param)
134d01f1 13207 {
90aeadfc 13208 /* Do nothing. */
134d01f1 13209 }
90aeadfc
DC
13210 else
13211 process_die (child_die, cu);
134d01f1 13212
90aeadfc 13213 child_die = sibling_die (child_die);
134d01f1
DJ
13214 }
13215
fa4028e9
JB
13216 /* Do not consider external references. According to the DWARF standard,
13217 these DIEs are identified by the fact that they have no byte_size
13218 attribute, and a declaration attribute. */
13219 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
13220 || !die_is_declaration (die, cu))
c767944b 13221 new_symbol (die, type, cu);
134d01f1
DJ
13222}
13223
55426c9d
JB
13224/* Assuming DIE is an enumeration type, and TYPE is its associated type,
13225 update TYPE using some information only available in DIE's children. */
13226
13227static void
13228update_enumeration_type_from_children (struct die_info *die,
13229 struct type *type,
13230 struct dwarf2_cu *cu)
13231{
13232 struct obstack obstack;
13233 struct die_info *child_die = die->child;
13234 int unsigned_enum = 1;
13235 int flag_enum = 1;
13236 ULONGEST mask = 0;
13237 struct cleanup *old_chain;
13238
13239 obstack_init (&obstack);
13240 old_chain = make_cleanup_obstack_free (&obstack);
13241
13242 while (child_die != NULL && child_die->tag)
13243 {
13244 struct attribute *attr;
13245 LONGEST value;
13246 const gdb_byte *bytes;
13247 struct dwarf2_locexpr_baton *baton;
13248 const char *name;
13249 if (child_die->tag != DW_TAG_enumerator)
13250 continue;
13251
13252 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
13253 if (attr == NULL)
13254 continue;
13255
13256 name = dwarf2_name (child_die, cu);
13257 if (name == NULL)
13258 name = "<anonymous enumerator>";
13259
13260 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
13261 &value, &bytes, &baton);
13262 if (value < 0)
13263 {
13264 unsigned_enum = 0;
13265 flag_enum = 0;
13266 }
13267 else if ((mask & value) != 0)
13268 flag_enum = 0;
13269 else
13270 mask |= value;
13271
13272 /* If we already know that the enum type is neither unsigned, nor
13273 a flag type, no need to look at the rest of the enumerates. */
13274 if (!unsigned_enum && !flag_enum)
13275 break;
13276 child_die = sibling_die (child_die);
13277 }
13278
13279 if (unsigned_enum)
13280 TYPE_UNSIGNED (type) = 1;
13281 if (flag_enum)
13282 TYPE_FLAG_ENUM (type) = 1;
13283
13284 do_cleanups (old_chain);
13285}
13286
134d01f1
DJ
13287/* Given a DW_AT_enumeration_type die, set its type. We do not
13288 complete the type's fields yet, or create any symbols. */
c906108c 13289
f792889a 13290static struct type *
134d01f1 13291read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13292{
e7c27a73 13293 struct objfile *objfile = cu->objfile;
c906108c 13294 struct type *type;
c906108c 13295 struct attribute *attr;
0114d602 13296 const char *name;
134d01f1 13297
348e048f
DE
13298 /* If the definition of this type lives in .debug_types, read that type.
13299 Don't follow DW_AT_specification though, that will take us back up
13300 the chain and we want to go down. */
45e58e77 13301 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
348e048f
DE
13302 if (attr)
13303 {
ac9ec31b 13304 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 13305
ac9ec31b 13306 /* The type's CU may not be the same as CU.
02142a6c 13307 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
13308 return set_die_type (die, type, cu);
13309 }
13310
c906108c
SS
13311 type = alloc_type (objfile);
13312
13313 TYPE_CODE (type) = TYPE_CODE_ENUM;
94af9270 13314 name = dwarf2_full_name (NULL, die, cu);
39cbfefa 13315 if (name != NULL)
7d455152 13316 TYPE_TAG_NAME (type) = name;
c906108c 13317
0626fc76
TT
13318 attr = dwarf2_attr (die, DW_AT_type, cu);
13319 if (attr != NULL)
13320 {
13321 struct type *underlying_type = die_type (die, cu);
13322
13323 TYPE_TARGET_TYPE (type) = underlying_type;
13324 }
13325
e142c38c 13326 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
13327 if (attr)
13328 {
13329 TYPE_LENGTH (type) = DW_UNSND (attr);
13330 }
13331 else
13332 {
13333 TYPE_LENGTH (type) = 0;
13334 }
13335
137033e9
JB
13336 /* The enumeration DIE can be incomplete. In Ada, any type can be
13337 declared as private in the package spec, and then defined only
13338 inside the package body. Such types are known as Taft Amendment
13339 Types. When another package uses such a type, an incomplete DIE
13340 may be generated by the compiler. */
02eb380e 13341 if (die_is_declaration (die, cu))
876cecd0 13342 TYPE_STUB (type) = 1;
02eb380e 13343
0626fc76
TT
13344 /* Finish the creation of this type by using the enum's children.
13345 We must call this even when the underlying type has been provided
13346 so that we can determine if we're looking at a "flag" enum. */
55426c9d
JB
13347 update_enumeration_type_from_children (die, type, cu);
13348
0626fc76
TT
13349 /* If this type has an underlying type that is not a stub, then we
13350 may use its attributes. We always use the "unsigned" attribute
13351 in this situation, because ordinarily we guess whether the type
13352 is unsigned -- but the guess can be wrong and the underlying type
13353 can tell us the reality. However, we defer to a local size
13354 attribute if one exists, because this lets the compiler override
13355 the underlying type if needed. */
13356 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
13357 {
13358 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TYPE_TARGET_TYPE (type));
13359 if (TYPE_LENGTH (type) == 0)
13360 TYPE_LENGTH (type) = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
13361 }
13362
3d567982
TT
13363 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
13364
f792889a 13365 return set_die_type (die, type, cu);
134d01f1
DJ
13366}
13367
13368/* Given a pointer to a die which begins an enumeration, process all
13369 the dies that define the members of the enumeration, and create the
13370 symbol for the enumeration type.
13371
13372 NOTE: We reverse the order of the element list. */
13373
13374static void
13375process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
13376{
f792889a 13377 struct type *this_type;
134d01f1 13378
f792889a
DJ
13379 this_type = get_die_type (die, cu);
13380 if (this_type == NULL)
13381 this_type = read_enumeration_type (die, cu);
9dc481d3 13382
639d11d3 13383 if (die->child != NULL)
c906108c 13384 {
9dc481d3
DE
13385 struct die_info *child_die;
13386 struct symbol *sym;
13387 struct field *fields = NULL;
13388 int num_fields = 0;
15d034d0 13389 const char *name;
9dc481d3 13390
639d11d3 13391 child_die = die->child;
c906108c
SS
13392 while (child_die && child_die->tag)
13393 {
13394 if (child_die->tag != DW_TAG_enumerator)
13395 {
e7c27a73 13396 process_die (child_die, cu);
c906108c
SS
13397 }
13398 else
13399 {
39cbfefa
DJ
13400 name = dwarf2_name (child_die, cu);
13401 if (name)
c906108c 13402 {
f792889a 13403 sym = new_symbol (child_die, this_type, cu);
c906108c
SS
13404
13405 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
13406 {
13407 fields = (struct field *)
13408 xrealloc (fields,
13409 (num_fields + DW_FIELD_ALLOC_CHUNK)
c5aa993b 13410 * sizeof (struct field));
c906108c
SS
13411 }
13412
3567439c 13413 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
c906108c 13414 FIELD_TYPE (fields[num_fields]) = NULL;
14e75d8e 13415 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
c906108c
SS
13416 FIELD_BITSIZE (fields[num_fields]) = 0;
13417
13418 num_fields++;
13419 }
13420 }
13421
13422 child_die = sibling_die (child_die);
13423 }
13424
13425 if (num_fields)
13426 {
f792889a
DJ
13427 TYPE_NFIELDS (this_type) = num_fields;
13428 TYPE_FIELDS (this_type) = (struct field *)
13429 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
13430 memcpy (TYPE_FIELDS (this_type), fields,
c906108c 13431 sizeof (struct field) * num_fields);
b8c9b27d 13432 xfree (fields);
c906108c 13433 }
c906108c 13434 }
134d01f1 13435
6c83ed52
TT
13436 /* If we are reading an enum from a .debug_types unit, and the enum
13437 is a declaration, and the enum is not the signatured type in the
13438 unit, then we do not want to add a symbol for it. Adding a
13439 symbol would in some cases obscure the true definition of the
13440 enum, giving users an incomplete type when the definition is
13441 actually available. Note that we do not want to do this for all
13442 enums which are just declarations, because C++0x allows forward
13443 enum declarations. */
3019eac3 13444 if (cu->per_cu->is_debug_types
6c83ed52
TT
13445 && die_is_declaration (die, cu))
13446 {
52dc124a 13447 struct signatured_type *sig_type;
6c83ed52 13448
c0f78cd4 13449 sig_type = (struct signatured_type *) cu->per_cu;
3019eac3
DE
13450 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
13451 if (sig_type->type_offset_in_section.sect_off != die->offset.sect_off)
6c83ed52
TT
13452 return;
13453 }
13454
f792889a 13455 new_symbol (die, this_type, cu);
c906108c
SS
13456}
13457
13458/* Extract all information from a DW_TAG_array_type DIE and put it in
13459 the DIE's type field. For now, this only handles one dimensional
13460 arrays. */
13461
f792889a 13462static struct type *
e7c27a73 13463read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13464{
e7c27a73 13465 struct objfile *objfile = cu->objfile;
c906108c 13466 struct die_info *child_die;
7e314c57 13467 struct type *type;
c906108c
SS
13468 struct type *element_type, *range_type, *index_type;
13469 struct type **range_types = NULL;
13470 struct attribute *attr;
13471 int ndim = 0;
13472 struct cleanup *back_to;
15d034d0 13473 const char *name;
dc53a7ad 13474 unsigned int bit_stride = 0;
c906108c 13475
e7c27a73 13476 element_type = die_type (die, cu);
c906108c 13477
7e314c57
JK
13478 /* The die_type call above may have already set the type for this DIE. */
13479 type = get_die_type (die, cu);
13480 if (type)
13481 return type;
13482
dc53a7ad
JB
13483 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
13484 if (attr != NULL)
13485 bit_stride = DW_UNSND (attr) * 8;
13486
13487 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
13488 if (attr != NULL)
13489 bit_stride = DW_UNSND (attr);
13490
c906108c
SS
13491 /* Irix 6.2 native cc creates array types without children for
13492 arrays with unspecified length. */
639d11d3 13493 if (die->child == NULL)
c906108c 13494 {
46bf5051 13495 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 13496 range_type = create_static_range_type (NULL, index_type, 0, -1);
dc53a7ad
JB
13497 type = create_array_type_with_stride (NULL, element_type, range_type,
13498 bit_stride);
f792889a 13499 return set_die_type (die, type, cu);
c906108c
SS
13500 }
13501
13502 back_to = make_cleanup (null_cleanup, NULL);
639d11d3 13503 child_die = die->child;
c906108c
SS
13504 while (child_die && child_die->tag)
13505 {
13506 if (child_die->tag == DW_TAG_subrange_type)
13507 {
f792889a 13508 struct type *child_type = read_type_die (child_die, cu);
9a619af0 13509
f792889a 13510 if (child_type != NULL)
a02abb62 13511 {
0963b4bd
MS
13512 /* The range type was succesfully read. Save it for the
13513 array type creation. */
a02abb62
JB
13514 if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0)
13515 {
13516 range_types = (struct type **)
13517 xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK)
13518 * sizeof (struct type *));
13519 if (ndim == 0)
13520 make_cleanup (free_current_contents, &range_types);
13521 }
f792889a 13522 range_types[ndim++] = child_type;
a02abb62 13523 }
c906108c
SS
13524 }
13525 child_die = sibling_die (child_die);
13526 }
13527
13528 /* Dwarf2 dimensions are output from left to right, create the
13529 necessary array types in backwards order. */
7ca2d3a3 13530
c906108c 13531 type = element_type;
7ca2d3a3
DL
13532
13533 if (read_array_order (die, cu) == DW_ORD_col_major)
13534 {
13535 int i = 0;
9a619af0 13536
7ca2d3a3 13537 while (i < ndim)
dc53a7ad
JB
13538 type = create_array_type_with_stride (NULL, type, range_types[i++],
13539 bit_stride);
7ca2d3a3
DL
13540 }
13541 else
13542 {
13543 while (ndim-- > 0)
dc53a7ad
JB
13544 type = create_array_type_with_stride (NULL, type, range_types[ndim],
13545 bit_stride);
7ca2d3a3 13546 }
c906108c 13547
f5f8a009
EZ
13548 /* Understand Dwarf2 support for vector types (like they occur on
13549 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
13550 array type. This is not part of the Dwarf2/3 standard yet, but a
13551 custom vendor extension. The main difference between a regular
13552 array and the vector variant is that vectors are passed by value
13553 to functions. */
e142c38c 13554 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
f5f8a009 13555 if (attr)
ea37ba09 13556 make_vector_type (type);
f5f8a009 13557
dbc98a8b
KW
13558 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
13559 implementation may choose to implement triple vectors using this
13560 attribute. */
13561 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
13562 if (attr)
13563 {
13564 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
13565 TYPE_LENGTH (type) = DW_UNSND (attr);
13566 else
3e43a32a
MS
13567 complaint (&symfile_complaints,
13568 _("DW_AT_byte_size for array type smaller "
13569 "than the total size of elements"));
dbc98a8b
KW
13570 }
13571
39cbfefa
DJ
13572 name = dwarf2_name (die, cu);
13573 if (name)
13574 TYPE_NAME (type) = name;
6e70227d 13575
0963b4bd 13576 /* Install the type in the die. */
7e314c57
JK
13577 set_die_type (die, type, cu);
13578
13579 /* set_die_type should be already done. */
b4ba55a1
JB
13580 set_descriptive_type (type, die, cu);
13581
c906108c
SS
13582 do_cleanups (back_to);
13583
7e314c57 13584 return type;
c906108c
SS
13585}
13586
7ca2d3a3 13587static enum dwarf_array_dim_ordering
6e70227d 13588read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7ca2d3a3
DL
13589{
13590 struct attribute *attr;
13591
13592 attr = dwarf2_attr (die, DW_AT_ordering, cu);
13593
13594 if (attr) return DW_SND (attr);
13595
0963b4bd
MS
13596 /* GNU F77 is a special case, as at 08/2004 array type info is the
13597 opposite order to the dwarf2 specification, but data is still
13598 laid out as per normal fortran.
7ca2d3a3 13599
0963b4bd
MS
13600 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
13601 version checking. */
7ca2d3a3 13602
905e0470
PM
13603 if (cu->language == language_fortran
13604 && cu->producer && strstr (cu->producer, "GNU F77"))
7ca2d3a3
DL
13605 {
13606 return DW_ORD_row_major;
13607 }
13608
6e70227d 13609 switch (cu->language_defn->la_array_ordering)
7ca2d3a3
DL
13610 {
13611 case array_column_major:
13612 return DW_ORD_col_major;
13613 case array_row_major:
13614 default:
13615 return DW_ORD_row_major;
13616 };
13617}
13618
72019c9c 13619/* Extract all information from a DW_TAG_set_type DIE and put it in
0963b4bd 13620 the DIE's type field. */
72019c9c 13621
f792889a 13622static struct type *
72019c9c
GM
13623read_set_type (struct die_info *die, struct dwarf2_cu *cu)
13624{
7e314c57
JK
13625 struct type *domain_type, *set_type;
13626 struct attribute *attr;
f792889a 13627
7e314c57
JK
13628 domain_type = die_type (die, cu);
13629
13630 /* The die_type call above may have already set the type for this DIE. */
13631 set_type = get_die_type (die, cu);
13632 if (set_type)
13633 return set_type;
13634
13635 set_type = create_set_type (NULL, domain_type);
13636
13637 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
d09039dd
PM
13638 if (attr)
13639 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7e314c57 13640
f792889a 13641 return set_die_type (die, set_type, cu);
72019c9c 13642}
7ca2d3a3 13643
0971de02
TT
13644/* A helper for read_common_block that creates a locexpr baton.
13645 SYM is the symbol which we are marking as computed.
13646 COMMON_DIE is the DIE for the common block.
13647 COMMON_LOC is the location expression attribute for the common
13648 block itself.
13649 MEMBER_LOC is the location expression attribute for the particular
13650 member of the common block that we are processing.
13651 CU is the CU from which the above come. */
13652
13653static void
13654mark_common_block_symbol_computed (struct symbol *sym,
13655 struct die_info *common_die,
13656 struct attribute *common_loc,
13657 struct attribute *member_loc,
13658 struct dwarf2_cu *cu)
13659{
13660 struct objfile *objfile = dwarf2_per_objfile->objfile;
13661 struct dwarf2_locexpr_baton *baton;
13662 gdb_byte *ptr;
13663 unsigned int cu_off;
13664 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
13665 LONGEST offset = 0;
13666
13667 gdb_assert (common_loc && member_loc);
13668 gdb_assert (attr_form_is_block (common_loc));
13669 gdb_assert (attr_form_is_block (member_loc)
13670 || attr_form_is_constant (member_loc));
13671
13672 baton = obstack_alloc (&objfile->objfile_obstack,
13673 sizeof (struct dwarf2_locexpr_baton));
13674 baton->per_cu = cu->per_cu;
13675 gdb_assert (baton->per_cu);
13676
13677 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
13678
13679 if (attr_form_is_constant (member_loc))
13680 {
13681 offset = dwarf2_get_attr_constant_value (member_loc, 0);
13682 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
13683 }
13684 else
13685 baton->size += DW_BLOCK (member_loc)->size;
13686
13687 ptr = obstack_alloc (&objfile->objfile_obstack, baton->size);
13688 baton->data = ptr;
13689
13690 *ptr++ = DW_OP_call4;
13691 cu_off = common_die->offset.sect_off - cu->per_cu->offset.sect_off;
13692 store_unsigned_integer (ptr, 4, byte_order, cu_off);
13693 ptr += 4;
13694
13695 if (attr_form_is_constant (member_loc))
13696 {
13697 *ptr++ = DW_OP_addr;
13698 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
13699 ptr += cu->header.addr_size;
13700 }
13701 else
13702 {
13703 /* We have to copy the data here, because DW_OP_call4 will only
13704 use a DW_AT_location attribute. */
13705 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
13706 ptr += DW_BLOCK (member_loc)->size;
13707 }
13708
13709 *ptr++ = DW_OP_plus;
13710 gdb_assert (ptr - baton->data == baton->size);
13711
0971de02 13712 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 13713 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
0971de02
TT
13714}
13715
4357ac6c
TT
13716/* Create appropriate locally-scoped variables for all the
13717 DW_TAG_common_block entries. Also create a struct common_block
13718 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
13719 is used to sepate the common blocks name namespace from regular
13720 variable names. */
c906108c
SS
13721
13722static void
e7c27a73 13723read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13724{
0971de02
TT
13725 struct attribute *attr;
13726
13727 attr = dwarf2_attr (die, DW_AT_location, cu);
13728 if (attr)
13729 {
13730 /* Support the .debug_loc offsets. */
13731 if (attr_form_is_block (attr))
13732 {
13733 /* Ok. */
13734 }
13735 else if (attr_form_is_section_offset (attr))
13736 {
13737 dwarf2_complex_location_expr_complaint ();
13738 attr = NULL;
13739 }
13740 else
13741 {
13742 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
13743 "common block member");
13744 attr = NULL;
13745 }
13746 }
13747
639d11d3 13748 if (die->child != NULL)
c906108c 13749 {
4357ac6c
TT
13750 struct objfile *objfile = cu->objfile;
13751 struct die_info *child_die;
13752 size_t n_entries = 0, size;
13753 struct common_block *common_block;
13754 struct symbol *sym;
74ac6d43 13755
4357ac6c
TT
13756 for (child_die = die->child;
13757 child_die && child_die->tag;
13758 child_die = sibling_die (child_die))
13759 ++n_entries;
13760
13761 size = (sizeof (struct common_block)
13762 + (n_entries - 1) * sizeof (struct symbol *));
13763 common_block = obstack_alloc (&objfile->objfile_obstack, size);
13764 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
13765 common_block->n_entries = 0;
13766
13767 for (child_die = die->child;
13768 child_die && child_die->tag;
13769 child_die = sibling_die (child_die))
13770 {
13771 /* Create the symbol in the DW_TAG_common_block block in the current
13772 symbol scope. */
e7c27a73 13773 sym = new_symbol (child_die, NULL, cu);
0971de02
TT
13774 if (sym != NULL)
13775 {
13776 struct attribute *member_loc;
13777
13778 common_block->contents[common_block->n_entries++] = sym;
13779
13780 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
13781 cu);
13782 if (member_loc)
13783 {
13784 /* GDB has handled this for a long time, but it is
13785 not specified by DWARF. It seems to have been
13786 emitted by gfortran at least as recently as:
13787 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
13788 complaint (&symfile_complaints,
13789 _("Variable in common block has "
13790 "DW_AT_data_member_location "
13791 "- DIE at 0x%x [in module %s]"),
4262abfb
JK
13792 child_die->offset.sect_off,
13793 objfile_name (cu->objfile));
0971de02
TT
13794
13795 if (attr_form_is_section_offset (member_loc))
13796 dwarf2_complex_location_expr_complaint ();
13797 else if (attr_form_is_constant (member_loc)
13798 || attr_form_is_block (member_loc))
13799 {
13800 if (attr)
13801 mark_common_block_symbol_computed (sym, die, attr,
13802 member_loc, cu);
13803 }
13804 else
13805 dwarf2_complex_location_expr_complaint ();
13806 }
13807 }
c906108c 13808 }
4357ac6c
TT
13809
13810 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
13811 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
c906108c
SS
13812 }
13813}
13814
0114d602 13815/* Create a type for a C++ namespace. */
d9fa45fe 13816
0114d602
DJ
13817static struct type *
13818read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 13819{
e7c27a73 13820 struct objfile *objfile = cu->objfile;
0114d602 13821 const char *previous_prefix, *name;
9219021c 13822 int is_anonymous;
0114d602
DJ
13823 struct type *type;
13824
13825 /* For extensions, reuse the type of the original namespace. */
13826 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
13827 {
13828 struct die_info *ext_die;
13829 struct dwarf2_cu *ext_cu = cu;
9a619af0 13830
0114d602
DJ
13831 ext_die = dwarf2_extension (die, &ext_cu);
13832 type = read_type_die (ext_die, ext_cu);
9dc481d3
DE
13833
13834 /* EXT_CU may not be the same as CU.
02142a6c 13835 Ensure TYPE is recorded with CU in die_type_hash. */
0114d602
DJ
13836 return set_die_type (die, type, cu);
13837 }
9219021c 13838
e142c38c 13839 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
13840
13841 /* Now build the name of the current namespace. */
13842
0114d602
DJ
13843 previous_prefix = determine_prefix (die, cu);
13844 if (previous_prefix[0] != '\0')
13845 name = typename_concat (&objfile->objfile_obstack,
f55ee35c 13846 previous_prefix, name, 0, cu);
0114d602
DJ
13847
13848 /* Create the type. */
13849 type = init_type (TYPE_CODE_NAMESPACE, 0, 0, NULL,
13850 objfile);
abee88f2 13851 TYPE_NAME (type) = name;
0114d602
DJ
13852 TYPE_TAG_NAME (type) = TYPE_NAME (type);
13853
60531b24 13854 return set_die_type (die, type, cu);
0114d602
DJ
13855}
13856
13857/* Read a C++ namespace. */
13858
13859static void
13860read_namespace (struct die_info *die, struct dwarf2_cu *cu)
13861{
13862 struct objfile *objfile = cu->objfile;
0114d602 13863 int is_anonymous;
9219021c 13864
5c4e30ca
DC
13865 /* Add a symbol associated to this if we haven't seen the namespace
13866 before. Also, add a using directive if it's an anonymous
13867 namespace. */
9219021c 13868
f2f0e013 13869 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5c4e30ca
DC
13870 {
13871 struct type *type;
13872
0114d602 13873 type = read_type_die (die, cu);
e7c27a73 13874 new_symbol (die, type, cu);
5c4e30ca 13875
e8e80198 13876 namespace_name (die, &is_anonymous, cu);
5c4e30ca 13877 if (is_anonymous)
0114d602
DJ
13878 {
13879 const char *previous_prefix = determine_prefix (die, cu);
9a619af0 13880
c0cc3a76 13881 cp_add_using_directive (previous_prefix, TYPE_NAME (type), NULL,
12aaed36 13882 NULL, NULL, 0, &objfile->objfile_obstack);
0114d602 13883 }
5c4e30ca 13884 }
9219021c 13885
639d11d3 13886 if (die->child != NULL)
d9fa45fe 13887 {
639d11d3 13888 struct die_info *child_die = die->child;
6e70227d 13889
d9fa45fe
DC
13890 while (child_die && child_die->tag)
13891 {
e7c27a73 13892 process_die (child_die, cu);
d9fa45fe
DC
13893 child_die = sibling_die (child_die);
13894 }
13895 }
38d518c9
EZ
13896}
13897
f55ee35c
JK
13898/* Read a Fortran module as type. This DIE can be only a declaration used for
13899 imported module. Still we need that type as local Fortran "use ... only"
13900 declaration imports depend on the created type in determine_prefix. */
13901
13902static struct type *
13903read_module_type (struct die_info *die, struct dwarf2_cu *cu)
13904{
13905 struct objfile *objfile = cu->objfile;
15d034d0 13906 const char *module_name;
f55ee35c
JK
13907 struct type *type;
13908
13909 module_name = dwarf2_name (die, cu);
13910 if (!module_name)
3e43a32a
MS
13911 complaint (&symfile_complaints,
13912 _("DW_TAG_module has no name, offset 0x%x"),
b64f50a1 13913 die->offset.sect_off);
f55ee35c
JK
13914 type = init_type (TYPE_CODE_MODULE, 0, 0, module_name, objfile);
13915
13916 /* determine_prefix uses TYPE_TAG_NAME. */
13917 TYPE_TAG_NAME (type) = TYPE_NAME (type);
13918
13919 return set_die_type (die, type, cu);
13920}
13921
5d7cb8df
JK
13922/* Read a Fortran module. */
13923
13924static void
13925read_module (struct die_info *die, struct dwarf2_cu *cu)
13926{
13927 struct die_info *child_die = die->child;
530e8392
KB
13928 struct type *type;
13929
13930 type = read_type_die (die, cu);
13931 new_symbol (die, type, cu);
5d7cb8df 13932
5d7cb8df
JK
13933 while (child_die && child_die->tag)
13934 {
13935 process_die (child_die, cu);
13936 child_die = sibling_die (child_die);
13937 }
13938}
13939
38d518c9
EZ
13940/* Return the name of the namespace represented by DIE. Set
13941 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
13942 namespace. */
13943
13944static const char *
e142c38c 13945namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
13946{
13947 struct die_info *current_die;
13948 const char *name = NULL;
13949
13950 /* Loop through the extensions until we find a name. */
13951
13952 for (current_die = die;
13953 current_die != NULL;
f2f0e013 13954 current_die = dwarf2_extension (die, &cu))
38d518c9 13955 {
e142c38c 13956 name = dwarf2_name (current_die, cu);
38d518c9
EZ
13957 if (name != NULL)
13958 break;
13959 }
13960
13961 /* Is it an anonymous namespace? */
13962
13963 *is_anonymous = (name == NULL);
13964 if (*is_anonymous)
2b1dbab0 13965 name = CP_ANONYMOUS_NAMESPACE_STR;
38d518c9
EZ
13966
13967 return name;
d9fa45fe
DC
13968}
13969
c906108c
SS
13970/* Extract all information from a DW_TAG_pointer_type DIE and add to
13971 the user defined type vector. */
13972
f792889a 13973static struct type *
e7c27a73 13974read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13975{
5e2b427d 13976 struct gdbarch *gdbarch = get_objfile_arch (cu->objfile);
e7c27a73 13977 struct comp_unit_head *cu_header = &cu->header;
c906108c 13978 struct type *type;
8b2dbe47
KB
13979 struct attribute *attr_byte_size;
13980 struct attribute *attr_address_class;
13981 int byte_size, addr_class;
7e314c57
JK
13982 struct type *target_type;
13983
13984 target_type = die_type (die, cu);
c906108c 13985
7e314c57
JK
13986 /* The die_type call above may have already set the type for this DIE. */
13987 type = get_die_type (die, cu);
13988 if (type)
13989 return type;
13990
13991 type = lookup_pointer_type (target_type);
8b2dbe47 13992
e142c38c 13993 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
13994 if (attr_byte_size)
13995 byte_size = DW_UNSND (attr_byte_size);
c906108c 13996 else
8b2dbe47
KB
13997 byte_size = cu_header->addr_size;
13998
e142c38c 13999 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
14000 if (attr_address_class)
14001 addr_class = DW_UNSND (attr_address_class);
14002 else
14003 addr_class = DW_ADDR_none;
14004
14005 /* If the pointer size or address class is different than the
14006 default, create a type variant marked as such and set the
14007 length accordingly. */
14008 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
c906108c 14009 {
5e2b427d 14010 if (gdbarch_address_class_type_flags_p (gdbarch))
8b2dbe47
KB
14011 {
14012 int type_flags;
14013
849957d9 14014 type_flags = gdbarch_address_class_type_flags
5e2b427d 14015 (gdbarch, byte_size, addr_class);
876cecd0
TT
14016 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
14017 == 0);
8b2dbe47
KB
14018 type = make_type_with_address_space (type, type_flags);
14019 }
14020 else if (TYPE_LENGTH (type) != byte_size)
14021 {
3e43a32a
MS
14022 complaint (&symfile_complaints,
14023 _("invalid pointer size %d"), byte_size);
8b2dbe47 14024 }
6e70227d 14025 else
9a619af0
MS
14026 {
14027 /* Should we also complain about unhandled address classes? */
14028 }
c906108c 14029 }
8b2dbe47
KB
14030
14031 TYPE_LENGTH (type) = byte_size;
f792889a 14032 return set_die_type (die, type, cu);
c906108c
SS
14033}
14034
14035/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
14036 the user defined type vector. */
14037
f792889a 14038static struct type *
e7c27a73 14039read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
14040{
14041 struct type *type;
14042 struct type *to_type;
14043 struct type *domain;
14044
e7c27a73
DJ
14045 to_type = die_type (die, cu);
14046 domain = die_containing_type (die, cu);
0d5de010 14047
7e314c57
JK
14048 /* The calls above may have already set the type for this DIE. */
14049 type = get_die_type (die, cu);
14050 if (type)
14051 return type;
14052
0d5de010
DJ
14053 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
14054 type = lookup_methodptr_type (to_type);
7078baeb
TT
14055 else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
14056 {
14057 struct type *new_type = alloc_type (cu->objfile);
14058
14059 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
14060 TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
14061 TYPE_VARARGS (to_type));
14062 type = lookup_methodptr_type (new_type);
14063 }
0d5de010
DJ
14064 else
14065 type = lookup_memberptr_type (to_type, domain);
c906108c 14066
f792889a 14067 return set_die_type (die, type, cu);
c906108c
SS
14068}
14069
14070/* Extract all information from a DW_TAG_reference_type DIE and add to
14071 the user defined type vector. */
14072
f792889a 14073static struct type *
e7c27a73 14074read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14075{
e7c27a73 14076 struct comp_unit_head *cu_header = &cu->header;
7e314c57 14077 struct type *type, *target_type;
c906108c
SS
14078 struct attribute *attr;
14079
7e314c57
JK
14080 target_type = die_type (die, cu);
14081
14082 /* The die_type call above may have already set the type for this DIE. */
14083 type = get_die_type (die, cu);
14084 if (type)
14085 return type;
14086
14087 type = lookup_reference_type (target_type);
e142c38c 14088 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
14089 if (attr)
14090 {
14091 TYPE_LENGTH (type) = DW_UNSND (attr);
14092 }
14093 else
14094 {
107d2387 14095 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 14096 }
f792889a 14097 return set_die_type (die, type, cu);
c906108c
SS
14098}
14099
cf363f18
MW
14100/* Add the given cv-qualifiers to the element type of the array. GCC
14101 outputs DWARF type qualifiers that apply to an array, not the
14102 element type. But GDB relies on the array element type to carry
14103 the cv-qualifiers. This mimics section 6.7.3 of the C99
14104 specification. */
14105
14106static struct type *
14107add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
14108 struct type *base_type, int cnst, int voltl)
14109{
14110 struct type *el_type, *inner_array;
14111
14112 base_type = copy_type (base_type);
14113 inner_array = base_type;
14114
14115 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
14116 {
14117 TYPE_TARGET_TYPE (inner_array) =
14118 copy_type (TYPE_TARGET_TYPE (inner_array));
14119 inner_array = TYPE_TARGET_TYPE (inner_array);
14120 }
14121
14122 el_type = TYPE_TARGET_TYPE (inner_array);
14123 cnst |= TYPE_CONST (el_type);
14124 voltl |= TYPE_VOLATILE (el_type);
14125 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
14126
14127 return set_die_type (die, base_type, cu);
14128}
14129
f792889a 14130static struct type *
e7c27a73 14131read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14132{
f792889a 14133 struct type *base_type, *cv_type;
c906108c 14134
e7c27a73 14135 base_type = die_type (die, cu);
7e314c57
JK
14136
14137 /* The die_type call above may have already set the type for this DIE. */
14138 cv_type = get_die_type (die, cu);
14139 if (cv_type)
14140 return cv_type;
14141
2f608a3a
KW
14142 /* In case the const qualifier is applied to an array type, the element type
14143 is so qualified, not the array type (section 6.7.3 of C99). */
14144 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
cf363f18 14145 return add_array_cv_type (die, cu, base_type, 1, 0);
2f608a3a 14146
f792889a
DJ
14147 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
14148 return set_die_type (die, cv_type, cu);
c906108c
SS
14149}
14150
f792889a 14151static struct type *
e7c27a73 14152read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14153{
f792889a 14154 struct type *base_type, *cv_type;
c906108c 14155
e7c27a73 14156 base_type = die_type (die, cu);
7e314c57
JK
14157
14158 /* The die_type call above may have already set the type for this DIE. */
14159 cv_type = get_die_type (die, cu);
14160 if (cv_type)
14161 return cv_type;
14162
cf363f18
MW
14163 /* In case the volatile qualifier is applied to an array type, the
14164 element type is so qualified, not the array type (section 6.7.3
14165 of C99). */
14166 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
14167 return add_array_cv_type (die, cu, base_type, 0, 1);
14168
f792889a
DJ
14169 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
14170 return set_die_type (die, cv_type, cu);
c906108c
SS
14171}
14172
06d66ee9
TT
14173/* Handle DW_TAG_restrict_type. */
14174
14175static struct type *
14176read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
14177{
14178 struct type *base_type, *cv_type;
14179
14180 base_type = die_type (die, cu);
14181
14182 /* The die_type call above may have already set the type for this DIE. */
14183 cv_type = get_die_type (die, cu);
14184 if (cv_type)
14185 return cv_type;
14186
14187 cv_type = make_restrict_type (base_type);
14188 return set_die_type (die, cv_type, cu);
14189}
14190
c906108c
SS
14191/* Extract all information from a DW_TAG_string_type DIE and add to
14192 the user defined type vector. It isn't really a user defined type,
14193 but it behaves like one, with other DIE's using an AT_user_def_type
14194 attribute to reference it. */
14195
f792889a 14196static struct type *
e7c27a73 14197read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14198{
e7c27a73 14199 struct objfile *objfile = cu->objfile;
3b7538c0 14200 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
14201 struct type *type, *range_type, *index_type, *char_type;
14202 struct attribute *attr;
14203 unsigned int length;
14204
e142c38c 14205 attr = dwarf2_attr (die, DW_AT_string_length, cu);
c906108c
SS
14206 if (attr)
14207 {
14208 length = DW_UNSND (attr);
14209 }
14210 else
14211 {
0963b4bd 14212 /* Check for the DW_AT_byte_size attribute. */
e142c38c 14213 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
b21b22e0
PS
14214 if (attr)
14215 {
14216 length = DW_UNSND (attr);
14217 }
14218 else
14219 {
14220 length = 1;
14221 }
c906108c 14222 }
6ccb9162 14223
46bf5051 14224 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 14225 range_type = create_static_range_type (NULL, index_type, 1, length);
3b7538c0
UW
14226 char_type = language_string_char_type (cu->language_defn, gdbarch);
14227 type = create_string_type (NULL, char_type, range_type);
6ccb9162 14228
f792889a 14229 return set_die_type (die, type, cu);
c906108c
SS
14230}
14231
4d804846
JB
14232/* Assuming that DIE corresponds to a function, returns nonzero
14233 if the function is prototyped. */
14234
14235static int
14236prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
14237{
14238 struct attribute *attr;
14239
14240 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
14241 if (attr && (DW_UNSND (attr) != 0))
14242 return 1;
14243
14244 /* The DWARF standard implies that the DW_AT_prototyped attribute
14245 is only meaninful for C, but the concept also extends to other
14246 languages that allow unprototyped functions (Eg: Objective C).
14247 For all other languages, assume that functions are always
14248 prototyped. */
14249 if (cu->language != language_c
14250 && cu->language != language_objc
14251 && cu->language != language_opencl)
14252 return 1;
14253
14254 /* RealView does not emit DW_AT_prototyped. We can not distinguish
14255 prototyped and unprototyped functions; default to prototyped,
14256 since that is more common in modern code (and RealView warns
14257 about unprototyped functions). */
14258 if (producer_is_realview (cu->producer))
14259 return 1;
14260
14261 return 0;
14262}
14263
c906108c
SS
14264/* Handle DIES due to C code like:
14265
14266 struct foo
c5aa993b
JM
14267 {
14268 int (*funcp)(int a, long l);
14269 int b;
14270 };
c906108c 14271
0963b4bd 14272 ('funcp' generates a DW_TAG_subroutine_type DIE). */
c906108c 14273
f792889a 14274static struct type *
e7c27a73 14275read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14276{
bb5ed363 14277 struct objfile *objfile = cu->objfile;
0963b4bd
MS
14278 struct type *type; /* Type that this function returns. */
14279 struct type *ftype; /* Function that returns above type. */
c906108c
SS
14280 struct attribute *attr;
14281
e7c27a73 14282 type = die_type (die, cu);
7e314c57
JK
14283
14284 /* The die_type call above may have already set the type for this DIE. */
14285 ftype = get_die_type (die, cu);
14286 if (ftype)
14287 return ftype;
14288
0c8b41f1 14289 ftype = lookup_function_type (type);
c906108c 14290
4d804846 14291 if (prototyped_function_p (die, cu))
a6c727b2 14292 TYPE_PROTOTYPED (ftype) = 1;
c906108c 14293
c055b101
CV
14294 /* Store the calling convention in the type if it's available in
14295 the subroutine die. Otherwise set the calling convention to
14296 the default value DW_CC_normal. */
14297 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
54fcddd0
UW
14298 if (attr)
14299 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
14300 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
14301 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
14302 else
14303 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
76c10ea2
GM
14304
14305 /* We need to add the subroutine type to the die immediately so
14306 we don't infinitely recurse when dealing with parameters
0963b4bd 14307 declared as the same subroutine type. */
76c10ea2 14308 set_die_type (die, ftype, cu);
6e70227d 14309
639d11d3 14310 if (die->child != NULL)
c906108c 14311 {
bb5ed363 14312 struct type *void_type = objfile_type (objfile)->builtin_void;
c906108c 14313 struct die_info *child_die;
8072405b 14314 int nparams, iparams;
c906108c
SS
14315
14316 /* Count the number of parameters.
14317 FIXME: GDB currently ignores vararg functions, but knows about
14318 vararg member functions. */
8072405b 14319 nparams = 0;
639d11d3 14320 child_die = die->child;
c906108c
SS
14321 while (child_die && child_die->tag)
14322 {
14323 if (child_die->tag == DW_TAG_formal_parameter)
14324 nparams++;
14325 else if (child_die->tag == DW_TAG_unspecified_parameters)
876cecd0 14326 TYPE_VARARGS (ftype) = 1;
c906108c
SS
14327 child_die = sibling_die (child_die);
14328 }
14329
14330 /* Allocate storage for parameters and fill them in. */
14331 TYPE_NFIELDS (ftype) = nparams;
14332 TYPE_FIELDS (ftype) = (struct field *)
ae5a43e0 14333 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
c906108c 14334
8072405b
JK
14335 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
14336 even if we error out during the parameters reading below. */
14337 for (iparams = 0; iparams < nparams; iparams++)
14338 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
14339
14340 iparams = 0;
639d11d3 14341 child_die = die->child;
c906108c
SS
14342 while (child_die && child_die->tag)
14343 {
14344 if (child_die->tag == DW_TAG_formal_parameter)
14345 {
3ce3b1ba
PA
14346 struct type *arg_type;
14347
14348 /* DWARF version 2 has no clean way to discern C++
14349 static and non-static member functions. G++ helps
14350 GDB by marking the first parameter for non-static
14351 member functions (which is the this pointer) as
14352 artificial. We pass this information to
14353 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
14354
14355 DWARF version 3 added DW_AT_object_pointer, which GCC
14356 4.5 does not yet generate. */
e142c38c 14357 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
c906108c
SS
14358 if (attr)
14359 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
14360 else
418835cc
KS
14361 {
14362 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
14363
14364 /* GCC/43521: In java, the formal parameter
14365 "this" is sometimes not marked with DW_AT_artificial. */
14366 if (cu->language == language_java)
14367 {
14368 const char *name = dwarf2_name (child_die, cu);
9a619af0 14369
418835cc
KS
14370 if (name && !strcmp (name, "this"))
14371 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 1;
14372 }
14373 }
3ce3b1ba
PA
14374 arg_type = die_type (child_die, cu);
14375
14376 /* RealView does not mark THIS as const, which the testsuite
14377 expects. GCC marks THIS as const in method definitions,
14378 but not in the class specifications (GCC PR 43053). */
14379 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
14380 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
14381 {
14382 int is_this = 0;
14383 struct dwarf2_cu *arg_cu = cu;
14384 const char *name = dwarf2_name (child_die, cu);
14385
14386 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
14387 if (attr)
14388 {
14389 /* If the compiler emits this, use it. */
14390 if (follow_die_ref (die, attr, &arg_cu) == child_die)
14391 is_this = 1;
14392 }
14393 else if (name && strcmp (name, "this") == 0)
14394 /* Function definitions will have the argument names. */
14395 is_this = 1;
14396 else if (name == NULL && iparams == 0)
14397 /* Declarations may not have the names, so like
14398 elsewhere in GDB, assume an artificial first
14399 argument is "this". */
14400 is_this = 1;
14401
14402 if (is_this)
14403 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
14404 arg_type, 0);
14405 }
14406
14407 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
c906108c
SS
14408 iparams++;
14409 }
14410 child_die = sibling_die (child_die);
14411 }
14412 }
14413
76c10ea2 14414 return ftype;
c906108c
SS
14415}
14416
f792889a 14417static struct type *
e7c27a73 14418read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14419{
e7c27a73 14420 struct objfile *objfile = cu->objfile;
0114d602 14421 const char *name = NULL;
3c8e0968 14422 struct type *this_type, *target_type;
c906108c 14423
94af9270 14424 name = dwarf2_full_name (NULL, die, cu);
f792889a 14425 this_type = init_type (TYPE_CODE_TYPEDEF, 0,
0114d602 14426 TYPE_FLAG_TARGET_STUB, NULL, objfile);
abee88f2 14427 TYPE_NAME (this_type) = name;
f792889a 14428 set_die_type (die, this_type, cu);
3c8e0968
DE
14429 target_type = die_type (die, cu);
14430 if (target_type != this_type)
14431 TYPE_TARGET_TYPE (this_type) = target_type;
14432 else
14433 {
14434 /* Self-referential typedefs are, it seems, not allowed by the DWARF
14435 spec and cause infinite loops in GDB. */
14436 complaint (&symfile_complaints,
14437 _("Self-referential DW_TAG_typedef "
14438 "- DIE at 0x%x [in module %s]"),
4262abfb 14439 die->offset.sect_off, objfile_name (objfile));
3c8e0968
DE
14440 TYPE_TARGET_TYPE (this_type) = NULL;
14441 }
f792889a 14442 return this_type;
c906108c
SS
14443}
14444
14445/* Find a representation of a given base type and install
14446 it in the TYPE field of the die. */
14447
f792889a 14448static struct type *
e7c27a73 14449read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 14450{
e7c27a73 14451 struct objfile *objfile = cu->objfile;
c906108c
SS
14452 struct type *type;
14453 struct attribute *attr;
14454 int encoding = 0, size = 0;
15d034d0 14455 const char *name;
6ccb9162
UW
14456 enum type_code code = TYPE_CODE_INT;
14457 int type_flags = 0;
14458 struct type *target_type = NULL;
c906108c 14459
e142c38c 14460 attr = dwarf2_attr (die, DW_AT_encoding, cu);
c906108c
SS
14461 if (attr)
14462 {
14463 encoding = DW_UNSND (attr);
14464 }
e142c38c 14465 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
c906108c
SS
14466 if (attr)
14467 {
14468 size = DW_UNSND (attr);
14469 }
39cbfefa 14470 name = dwarf2_name (die, cu);
6ccb9162 14471 if (!name)
c906108c 14472 {
6ccb9162
UW
14473 complaint (&symfile_complaints,
14474 _("DW_AT_name missing from DW_TAG_base_type"));
c906108c 14475 }
6ccb9162
UW
14476
14477 switch (encoding)
c906108c 14478 {
6ccb9162
UW
14479 case DW_ATE_address:
14480 /* Turn DW_ATE_address into a void * pointer. */
14481 code = TYPE_CODE_PTR;
14482 type_flags |= TYPE_FLAG_UNSIGNED;
14483 target_type = init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
14484 break;
14485 case DW_ATE_boolean:
14486 code = TYPE_CODE_BOOL;
14487 type_flags |= TYPE_FLAG_UNSIGNED;
14488 break;
14489 case DW_ATE_complex_float:
14490 code = TYPE_CODE_COMPLEX;
14491 target_type = init_type (TYPE_CODE_FLT, size / 2, 0, NULL, objfile);
14492 break;
14493 case DW_ATE_decimal_float:
14494 code = TYPE_CODE_DECFLOAT;
14495 break;
14496 case DW_ATE_float:
14497 code = TYPE_CODE_FLT;
14498 break;
14499 case DW_ATE_signed:
14500 break;
14501 case DW_ATE_unsigned:
14502 type_flags |= TYPE_FLAG_UNSIGNED;
3b2b8fea
TT
14503 if (cu->language == language_fortran
14504 && name
14505 && strncmp (name, "character(", sizeof ("character(") - 1) == 0)
14506 code = TYPE_CODE_CHAR;
6ccb9162
UW
14507 break;
14508 case DW_ATE_signed_char:
6e70227d 14509 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
14510 || cu->language == language_pascal
14511 || cu->language == language_fortran)
6ccb9162
UW
14512 code = TYPE_CODE_CHAR;
14513 break;
14514 case DW_ATE_unsigned_char:
868a0084 14515 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
14516 || cu->language == language_pascal
14517 || cu->language == language_fortran)
6ccb9162
UW
14518 code = TYPE_CODE_CHAR;
14519 type_flags |= TYPE_FLAG_UNSIGNED;
14520 break;
75079b2b
TT
14521 case DW_ATE_UTF:
14522 /* We just treat this as an integer and then recognize the
14523 type by name elsewhere. */
14524 break;
14525
6ccb9162
UW
14526 default:
14527 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
14528 dwarf_type_encoding_name (encoding));
14529 break;
c906108c 14530 }
6ccb9162 14531
0114d602
DJ
14532 type = init_type (code, size, type_flags, NULL, objfile);
14533 TYPE_NAME (type) = name;
6ccb9162
UW
14534 TYPE_TARGET_TYPE (type) = target_type;
14535
0114d602 14536 if (name && strcmp (name, "char") == 0)
876cecd0 14537 TYPE_NOSIGN (type) = 1;
0114d602 14538
f792889a 14539 return set_die_type (die, type, cu);
c906108c
SS
14540}
14541
80180f79
SA
14542/* Parse dwarf attribute if it's a block, reference or constant and put the
14543 resulting value of the attribute into struct bound_prop.
14544 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
14545
14546static int
14547attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
14548 struct dwarf2_cu *cu, struct dynamic_prop *prop)
14549{
14550 struct dwarf2_property_baton *baton;
14551 struct obstack *obstack = &cu->objfile->objfile_obstack;
14552
14553 if (attr == NULL || prop == NULL)
14554 return 0;
14555
14556 if (attr_form_is_block (attr))
14557 {
14558 baton = obstack_alloc (obstack, sizeof (*baton));
14559 baton->referenced_type = NULL;
14560 baton->locexpr.per_cu = cu->per_cu;
14561 baton->locexpr.size = DW_BLOCK (attr)->size;
14562 baton->locexpr.data = DW_BLOCK (attr)->data;
14563 prop->data.baton = baton;
14564 prop->kind = PROP_LOCEXPR;
14565 gdb_assert (prop->data.baton != NULL);
14566 }
14567 else if (attr_form_is_ref (attr))
14568 {
14569 struct dwarf2_cu *target_cu = cu;
14570 struct die_info *target_die;
14571 struct attribute *target_attr;
14572
14573 target_die = follow_die_ref (die, attr, &target_cu);
14574 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
14575 if (target_attr == NULL)
14576 return 0;
14577
14578 if (attr_form_is_section_offset (target_attr))
14579 {
14580 baton = obstack_alloc (obstack, sizeof (*baton));
14581 baton->referenced_type = die_type (target_die, target_cu);
14582 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
14583 prop->data.baton = baton;
14584 prop->kind = PROP_LOCLIST;
14585 gdb_assert (prop->data.baton != NULL);
14586 }
14587 else if (attr_form_is_block (target_attr))
14588 {
14589 baton = obstack_alloc (obstack, sizeof (*baton));
14590 baton->referenced_type = die_type (target_die, target_cu);
14591 baton->locexpr.per_cu = cu->per_cu;
14592 baton->locexpr.size = DW_BLOCK (target_attr)->size;
14593 baton->locexpr.data = DW_BLOCK (target_attr)->data;
14594 prop->data.baton = baton;
14595 prop->kind = PROP_LOCEXPR;
14596 gdb_assert (prop->data.baton != NULL);
14597 }
14598 else
14599 {
14600 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
14601 "dynamic property");
14602 return 0;
14603 }
14604 }
14605 else if (attr_form_is_constant (attr))
14606 {
14607 prop->data.const_val = dwarf2_get_attr_constant_value (attr, 0);
14608 prop->kind = PROP_CONST;
14609 }
14610 else
14611 {
14612 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
14613 dwarf2_name (die, cu));
14614 return 0;
14615 }
14616
14617 return 1;
14618}
14619
a02abb62
JB
14620/* Read the given DW_AT_subrange DIE. */
14621
f792889a 14622static struct type *
a02abb62
JB
14623read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
14624{
4c9ad8c2 14625 struct type *base_type, *orig_base_type;
a02abb62
JB
14626 struct type *range_type;
14627 struct attribute *attr;
729efb13 14628 struct dynamic_prop low, high;
4fae6e18 14629 int low_default_is_valid;
c451ebe5 14630 int high_bound_is_count = 0;
15d034d0 14631 const char *name;
43bbcdc2 14632 LONGEST negative_mask;
e77813c8 14633
4c9ad8c2
TT
14634 orig_base_type = die_type (die, cu);
14635 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
14636 whereas the real type might be. So, we use ORIG_BASE_TYPE when
14637 creating the range type, but we use the result of check_typedef
14638 when examining properties of the type. */
14639 base_type = check_typedef (orig_base_type);
a02abb62 14640
7e314c57
JK
14641 /* The die_type call above may have already set the type for this DIE. */
14642 range_type = get_die_type (die, cu);
14643 if (range_type)
14644 return range_type;
14645
729efb13
SA
14646 low.kind = PROP_CONST;
14647 high.kind = PROP_CONST;
14648 high.data.const_val = 0;
14649
4fae6e18
JK
14650 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
14651 omitting DW_AT_lower_bound. */
14652 switch (cu->language)
6e70227d 14653 {
4fae6e18
JK
14654 case language_c:
14655 case language_cplus:
729efb13 14656 low.data.const_val = 0;
4fae6e18
JK
14657 low_default_is_valid = 1;
14658 break;
14659 case language_fortran:
729efb13 14660 low.data.const_val = 1;
4fae6e18
JK
14661 low_default_is_valid = 1;
14662 break;
14663 case language_d:
14664 case language_java:
14665 case language_objc:
729efb13 14666 low.data.const_val = 0;
4fae6e18
JK
14667 low_default_is_valid = (cu->header.version >= 4);
14668 break;
14669 case language_ada:
14670 case language_m2:
14671 case language_pascal:
729efb13 14672 low.data.const_val = 1;
4fae6e18
JK
14673 low_default_is_valid = (cu->header.version >= 4);
14674 break;
14675 default:
729efb13 14676 low.data.const_val = 0;
4fae6e18
JK
14677 low_default_is_valid = 0;
14678 break;
a02abb62
JB
14679 }
14680
e142c38c 14681 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
a02abb62 14682 if (attr)
11c1ba78 14683 attr_to_dynamic_prop (attr, die, cu, &low);
4fae6e18
JK
14684 else if (!low_default_is_valid)
14685 complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
14686 "- DIE at 0x%x [in module %s]"),
4262abfb 14687 die->offset.sect_off, objfile_name (cu->objfile));
a02abb62 14688
e142c38c 14689 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
80180f79 14690 if (!attr_to_dynamic_prop (attr, die, cu, &high))
e77813c8
PM
14691 {
14692 attr = dwarf2_attr (die, DW_AT_count, cu);
c451ebe5 14693 if (attr_to_dynamic_prop (attr, die, cu, &high))
6b662e19 14694 {
c451ebe5
SA
14695 /* If bounds are constant do the final calculation here. */
14696 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
14697 high.data.const_val = low.data.const_val + high.data.const_val - 1;
14698 else
14699 high_bound_is_count = 1;
c2ff108b 14700 }
e77813c8
PM
14701 }
14702
14703 /* Dwarf-2 specifications explicitly allows to create subrange types
14704 without specifying a base type.
14705 In that case, the base type must be set to the type of
14706 the lower bound, upper bound or count, in that order, if any of these
14707 three attributes references an object that has a type.
14708 If no base type is found, the Dwarf-2 specifications say that
14709 a signed integer type of size equal to the size of an address should
14710 be used.
14711 For the following C code: `extern char gdb_int [];'
14712 GCC produces an empty range DIE.
14713 FIXME: muller/2010-05-28: Possible references to object for low bound,
0963b4bd 14714 high bound or count are not yet handled by this code. */
e77813c8
PM
14715 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
14716 {
14717 struct objfile *objfile = cu->objfile;
14718 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14719 int addr_size = gdbarch_addr_bit (gdbarch) /8;
14720 struct type *int_type = objfile_type (objfile)->builtin_int;
14721
14722 /* Test "int", "long int", and "long long int" objfile types,
14723 and select the first one having a size above or equal to the
14724 architecture address size. */
14725 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
14726 base_type = int_type;
14727 else
14728 {
14729 int_type = objfile_type (objfile)->builtin_long;
14730 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
14731 base_type = int_type;
14732 else
14733 {
14734 int_type = objfile_type (objfile)->builtin_long_long;
14735 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
14736 base_type = int_type;
14737 }
14738 }
14739 }
a02abb62 14740
dbb9c2b1
JB
14741 /* Normally, the DWARF producers are expected to use a signed
14742 constant form (Eg. DW_FORM_sdata) to express negative bounds.
14743 But this is unfortunately not always the case, as witnessed
14744 with GCC, for instance, where the ambiguous DW_FORM_dataN form
14745 is used instead. To work around that ambiguity, we treat
14746 the bounds as signed, and thus sign-extend their values, when
14747 the base type is signed. */
6e70227d 14748 negative_mask =
43bbcdc2 14749 (LONGEST) -1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1);
729efb13
SA
14750 if (low.kind == PROP_CONST
14751 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
14752 low.data.const_val |= negative_mask;
14753 if (high.kind == PROP_CONST
14754 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
14755 high.data.const_val |= negative_mask;
43bbcdc2 14756
729efb13 14757 range_type = create_range_type (NULL, orig_base_type, &low, &high);
a02abb62 14758
c451ebe5
SA
14759 if (high_bound_is_count)
14760 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
14761
c2ff108b
JK
14762 /* Ada expects an empty array on no boundary attributes. */
14763 if (attr == NULL && cu->language != language_ada)
729efb13 14764 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
c2ff108b 14765
39cbfefa
DJ
14766 name = dwarf2_name (die, cu);
14767 if (name)
14768 TYPE_NAME (range_type) = name;
6e70227d 14769
e142c38c 14770 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
a02abb62
JB
14771 if (attr)
14772 TYPE_LENGTH (range_type) = DW_UNSND (attr);
14773
7e314c57
JK
14774 set_die_type (die, range_type, cu);
14775
14776 /* set_die_type should be already done. */
b4ba55a1
JB
14777 set_descriptive_type (range_type, die, cu);
14778
7e314c57 14779 return range_type;
a02abb62 14780}
6e70227d 14781
f792889a 14782static struct type *
81a17f79
JB
14783read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
14784{
14785 struct type *type;
81a17f79 14786
81a17f79
JB
14787 /* For now, we only support the C meaning of an unspecified type: void. */
14788
0114d602
DJ
14789 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, cu->objfile);
14790 TYPE_NAME (type) = dwarf2_name (die, cu);
81a17f79 14791
f792889a 14792 return set_die_type (die, type, cu);
81a17f79 14793}
a02abb62 14794
639d11d3
DC
14795/* Read a single die and all its descendents. Set the die's sibling
14796 field to NULL; set other fields in the die correctly, and set all
14797 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
14798 location of the info_ptr after reading all of those dies. PARENT
14799 is the parent of the die in question. */
14800
14801static struct die_info *
dee91e82 14802read_die_and_children (const struct die_reader_specs *reader,
d521ce57
TT
14803 const gdb_byte *info_ptr,
14804 const gdb_byte **new_info_ptr,
dee91e82 14805 struct die_info *parent)
639d11d3
DC
14806{
14807 struct die_info *die;
d521ce57 14808 const gdb_byte *cur_ptr;
639d11d3
DC
14809 int has_children;
14810
bf6af496 14811 cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
1d325ec1
DJ
14812 if (die == NULL)
14813 {
14814 *new_info_ptr = cur_ptr;
14815 return NULL;
14816 }
93311388 14817 store_in_ref_table (die, reader->cu);
639d11d3
DC
14818
14819 if (has_children)
bf6af496 14820 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
639d11d3
DC
14821 else
14822 {
14823 die->child = NULL;
14824 *new_info_ptr = cur_ptr;
14825 }
14826
14827 die->sibling = NULL;
14828 die->parent = parent;
14829 return die;
14830}
14831
14832/* Read a die, all of its descendents, and all of its siblings; set
14833 all of the fields of all of the dies correctly. Arguments are as
14834 in read_die_and_children. */
14835
14836static struct die_info *
bf6af496 14837read_die_and_siblings_1 (const struct die_reader_specs *reader,
d521ce57
TT
14838 const gdb_byte *info_ptr,
14839 const gdb_byte **new_info_ptr,
bf6af496 14840 struct die_info *parent)
639d11d3
DC
14841{
14842 struct die_info *first_die, *last_sibling;
d521ce57 14843 const gdb_byte *cur_ptr;
639d11d3 14844
c906108c 14845 cur_ptr = info_ptr;
639d11d3
DC
14846 first_die = last_sibling = NULL;
14847
14848 while (1)
c906108c 14849 {
639d11d3 14850 struct die_info *die
dee91e82 14851 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
639d11d3 14852
1d325ec1 14853 if (die == NULL)
c906108c 14854 {
639d11d3
DC
14855 *new_info_ptr = cur_ptr;
14856 return first_die;
c906108c 14857 }
1d325ec1
DJ
14858
14859 if (!first_die)
14860 first_die = die;
c906108c 14861 else
1d325ec1
DJ
14862 last_sibling->sibling = die;
14863
14864 last_sibling = die;
c906108c 14865 }
c906108c
SS
14866}
14867
bf6af496
DE
14868/* Read a die, all of its descendents, and all of its siblings; set
14869 all of the fields of all of the dies correctly. Arguments are as
14870 in read_die_and_children.
14871 This the main entry point for reading a DIE and all its children. */
14872
14873static struct die_info *
14874read_die_and_siblings (const struct die_reader_specs *reader,
d521ce57
TT
14875 const gdb_byte *info_ptr,
14876 const gdb_byte **new_info_ptr,
bf6af496
DE
14877 struct die_info *parent)
14878{
14879 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
14880 new_info_ptr, parent);
14881
14882 if (dwarf2_die_debug)
14883 {
14884 fprintf_unfiltered (gdb_stdlog,
14885 "Read die from %s@0x%x of %s:\n",
a32a8923 14886 get_section_name (reader->die_section),
bf6af496
DE
14887 (unsigned) (info_ptr - reader->die_section->buffer),
14888 bfd_get_filename (reader->abfd));
14889 dump_die (die, dwarf2_die_debug);
14890 }
14891
14892 return die;
14893}
14894
3019eac3
DE
14895/* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
14896 attributes.
14897 The caller is responsible for filling in the extra attributes
14898 and updating (*DIEP)->num_attrs.
14899 Set DIEP to point to a newly allocated die with its information,
14900 except for its child, sibling, and parent fields.
14901 Set HAS_CHILDREN to tell whether the die has children or not. */
93311388 14902
d521ce57 14903static const gdb_byte *
3019eac3 14904read_full_die_1 (const struct die_reader_specs *reader,
d521ce57 14905 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3 14906 int *has_children, int num_extra_attrs)
93311388 14907{
b64f50a1
JK
14908 unsigned int abbrev_number, bytes_read, i;
14909 sect_offset offset;
93311388
DE
14910 struct abbrev_info *abbrev;
14911 struct die_info *die;
14912 struct dwarf2_cu *cu = reader->cu;
14913 bfd *abfd = reader->abfd;
14914
b64f50a1 14915 offset.sect_off = info_ptr - reader->buffer;
93311388
DE
14916 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
14917 info_ptr += bytes_read;
14918 if (!abbrev_number)
14919 {
14920 *diep = NULL;
14921 *has_children = 0;
14922 return info_ptr;
14923 }
14924
433df2d4 14925 abbrev = abbrev_table_lookup_abbrev (cu->abbrev_table, abbrev_number);
93311388 14926 if (!abbrev)
348e048f
DE
14927 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
14928 abbrev_number,
14929 bfd_get_filename (abfd));
14930
3019eac3 14931 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
93311388
DE
14932 die->offset = offset;
14933 die->tag = abbrev->tag;
14934 die->abbrev = abbrev_number;
14935
3019eac3
DE
14936 /* Make the result usable.
14937 The caller needs to update num_attrs after adding the extra
14938 attributes. */
93311388
DE
14939 die->num_attrs = abbrev->num_attrs;
14940
14941 for (i = 0; i < abbrev->num_attrs; ++i)
dee91e82
DE
14942 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
14943 info_ptr);
93311388
DE
14944
14945 *diep = die;
14946 *has_children = abbrev->has_children;
14947 return info_ptr;
14948}
14949
3019eac3
DE
14950/* Read a die and all its attributes.
14951 Set DIEP to point to a newly allocated die with its information,
14952 except for its child, sibling, and parent fields.
14953 Set HAS_CHILDREN to tell whether the die has children or not. */
14954
d521ce57 14955static const gdb_byte *
3019eac3 14956read_full_die (const struct die_reader_specs *reader,
d521ce57 14957 struct die_info **diep, const gdb_byte *info_ptr,
3019eac3
DE
14958 int *has_children)
14959{
d521ce57 14960 const gdb_byte *result;
bf6af496
DE
14961
14962 result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
14963
14964 if (dwarf2_die_debug)
14965 {
14966 fprintf_unfiltered (gdb_stdlog,
14967 "Read die from %s@0x%x of %s:\n",
a32a8923 14968 get_section_name (reader->die_section),
bf6af496
DE
14969 (unsigned) (info_ptr - reader->die_section->buffer),
14970 bfd_get_filename (reader->abfd));
14971 dump_die (*diep, dwarf2_die_debug);
14972 }
14973
14974 return result;
3019eac3 14975}
433df2d4
DE
14976\f
14977/* Abbreviation tables.
3019eac3 14978
433df2d4 14979 In DWARF version 2, the description of the debugging information is
c906108c
SS
14980 stored in a separate .debug_abbrev section. Before we read any
14981 dies from a section we read in all abbreviations and install them
433df2d4
DE
14982 in a hash table. */
14983
14984/* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
14985
14986static struct abbrev_info *
14987abbrev_table_alloc_abbrev (struct abbrev_table *abbrev_table)
14988{
14989 struct abbrev_info *abbrev;
14990
14991 abbrev = (struct abbrev_info *)
14992 obstack_alloc (&abbrev_table->abbrev_obstack, sizeof (struct abbrev_info));
14993 memset (abbrev, 0, sizeof (struct abbrev_info));
14994 return abbrev;
14995}
14996
14997/* Add an abbreviation to the table. */
c906108c
SS
14998
14999static void
433df2d4
DE
15000abbrev_table_add_abbrev (struct abbrev_table *abbrev_table,
15001 unsigned int abbrev_number,
15002 struct abbrev_info *abbrev)
15003{
15004 unsigned int hash_number;
15005
15006 hash_number = abbrev_number % ABBREV_HASH_SIZE;
15007 abbrev->next = abbrev_table->abbrevs[hash_number];
15008 abbrev_table->abbrevs[hash_number] = abbrev;
15009}
dee91e82 15010
433df2d4
DE
15011/* Look up an abbrev in the table.
15012 Returns NULL if the abbrev is not found. */
15013
15014static struct abbrev_info *
15015abbrev_table_lookup_abbrev (const struct abbrev_table *abbrev_table,
15016 unsigned int abbrev_number)
c906108c 15017{
433df2d4
DE
15018 unsigned int hash_number;
15019 struct abbrev_info *abbrev;
15020
15021 hash_number = abbrev_number % ABBREV_HASH_SIZE;
15022 abbrev = abbrev_table->abbrevs[hash_number];
15023
15024 while (abbrev)
15025 {
15026 if (abbrev->number == abbrev_number)
15027 return abbrev;
15028 abbrev = abbrev->next;
15029 }
15030 return NULL;
15031}
15032
15033/* Read in an abbrev table. */
15034
15035static struct abbrev_table *
15036abbrev_table_read_table (struct dwarf2_section_info *section,
15037 sect_offset offset)
15038{
15039 struct objfile *objfile = dwarf2_per_objfile->objfile;
a32a8923 15040 bfd *abfd = get_section_bfd_owner (section);
433df2d4 15041 struct abbrev_table *abbrev_table;
d521ce57 15042 const gdb_byte *abbrev_ptr;
c906108c
SS
15043 struct abbrev_info *cur_abbrev;
15044 unsigned int abbrev_number, bytes_read, abbrev_name;
433df2d4 15045 unsigned int abbrev_form;
f3dd6933
DJ
15046 struct attr_abbrev *cur_attrs;
15047 unsigned int allocated_attrs;
c906108c 15048
70ba0933 15049 abbrev_table = XNEW (struct abbrev_table);
f4dc4d17 15050 abbrev_table->offset = offset;
433df2d4
DE
15051 obstack_init (&abbrev_table->abbrev_obstack);
15052 abbrev_table->abbrevs = obstack_alloc (&abbrev_table->abbrev_obstack,
15053 (ABBREV_HASH_SIZE
15054 * sizeof (struct abbrev_info *)));
15055 memset (abbrev_table->abbrevs, 0,
15056 ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
c906108c 15057
433df2d4
DE
15058 dwarf2_read_section (objfile, section);
15059 abbrev_ptr = section->buffer + offset.sect_off;
c906108c
SS
15060 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15061 abbrev_ptr += bytes_read;
15062
f3dd6933
DJ
15063 allocated_attrs = ATTR_ALLOC_CHUNK;
15064 cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev));
6e70227d 15065
0963b4bd 15066 /* Loop until we reach an abbrev number of 0. */
c906108c
SS
15067 while (abbrev_number)
15068 {
433df2d4 15069 cur_abbrev = abbrev_table_alloc_abbrev (abbrev_table);
c906108c
SS
15070
15071 /* read in abbrev header */
15072 cur_abbrev->number = abbrev_number;
15073 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15074 abbrev_ptr += bytes_read;
15075 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
15076 abbrev_ptr += 1;
15077
15078 /* now read in declarations */
15079 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15080 abbrev_ptr += bytes_read;
15081 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15082 abbrev_ptr += bytes_read;
15083 while (abbrev_name)
15084 {
f3dd6933 15085 if (cur_abbrev->num_attrs == allocated_attrs)
c906108c 15086 {
f3dd6933
DJ
15087 allocated_attrs += ATTR_ALLOC_CHUNK;
15088 cur_attrs
15089 = xrealloc (cur_attrs, (allocated_attrs
15090 * sizeof (struct attr_abbrev)));
c906108c 15091 }
ae038cb0 15092
f3dd6933
DJ
15093 cur_attrs[cur_abbrev->num_attrs].name = abbrev_name;
15094 cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form;
c906108c
SS
15095 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15096 abbrev_ptr += bytes_read;
15097 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15098 abbrev_ptr += bytes_read;
15099 }
15100
433df2d4 15101 cur_abbrev->attrs = obstack_alloc (&abbrev_table->abbrev_obstack,
f3dd6933
DJ
15102 (cur_abbrev->num_attrs
15103 * sizeof (struct attr_abbrev)));
15104 memcpy (cur_abbrev->attrs, cur_attrs,
15105 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
15106
433df2d4 15107 abbrev_table_add_abbrev (abbrev_table, abbrev_number, cur_abbrev);
c906108c
SS
15108
15109 /* Get next abbreviation.
15110 Under Irix6 the abbreviations for a compilation unit are not
c5aa993b
JM
15111 always properly terminated with an abbrev number of 0.
15112 Exit loop if we encounter an abbreviation which we have
15113 already read (which means we are about to read the abbreviations
15114 for the next compile unit) or if the end of the abbreviation
15115 table is reached. */
433df2d4 15116 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
c906108c
SS
15117 break;
15118 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
15119 abbrev_ptr += bytes_read;
433df2d4 15120 if (abbrev_table_lookup_abbrev (abbrev_table, abbrev_number) != NULL)
c906108c
SS
15121 break;
15122 }
f3dd6933
DJ
15123
15124 xfree (cur_attrs);
433df2d4 15125 return abbrev_table;
c906108c
SS
15126}
15127
433df2d4 15128/* Free the resources held by ABBREV_TABLE. */
c906108c 15129
c906108c 15130static void
433df2d4 15131abbrev_table_free (struct abbrev_table *abbrev_table)
c906108c 15132{
433df2d4
DE
15133 obstack_free (&abbrev_table->abbrev_obstack, NULL);
15134 xfree (abbrev_table);
c906108c
SS
15135}
15136
f4dc4d17
DE
15137/* Same as abbrev_table_free but as a cleanup.
15138 We pass in a pointer to the pointer to the table so that we can
15139 set the pointer to NULL when we're done. It also simplifies
73051182 15140 build_type_psymtabs_1. */
f4dc4d17
DE
15141
15142static void
15143abbrev_table_free_cleanup (void *table_ptr)
15144{
15145 struct abbrev_table **abbrev_table_ptr = table_ptr;
15146
15147 if (*abbrev_table_ptr != NULL)
15148 abbrev_table_free (*abbrev_table_ptr);
15149 *abbrev_table_ptr = NULL;
15150}
15151
433df2d4
DE
15152/* Read the abbrev table for CU from ABBREV_SECTION. */
15153
15154static void
15155dwarf2_read_abbrevs (struct dwarf2_cu *cu,
15156 struct dwarf2_section_info *abbrev_section)
c906108c 15157{
433df2d4
DE
15158 cu->abbrev_table =
15159 abbrev_table_read_table (abbrev_section, cu->header.abbrev_offset);
15160}
c906108c 15161
433df2d4 15162/* Release the memory used by the abbrev table for a compilation unit. */
c906108c 15163
433df2d4
DE
15164static void
15165dwarf2_free_abbrev_table (void *ptr_to_cu)
15166{
15167 struct dwarf2_cu *cu = ptr_to_cu;
c906108c 15168
a2ce51a0
DE
15169 if (cu->abbrev_table != NULL)
15170 abbrev_table_free (cu->abbrev_table);
433df2d4
DE
15171 /* Set this to NULL so that we SEGV if we try to read it later,
15172 and also because free_comp_unit verifies this is NULL. */
15173 cu->abbrev_table = NULL;
15174}
15175\f
72bf9492
DJ
15176/* Returns nonzero if TAG represents a type that we might generate a partial
15177 symbol for. */
15178
15179static int
15180is_type_tag_for_partial (int tag)
15181{
15182 switch (tag)
15183 {
15184#if 0
15185 /* Some types that would be reasonable to generate partial symbols for,
15186 that we don't at present. */
15187 case DW_TAG_array_type:
15188 case DW_TAG_file_type:
15189 case DW_TAG_ptr_to_member_type:
15190 case DW_TAG_set_type:
15191 case DW_TAG_string_type:
15192 case DW_TAG_subroutine_type:
15193#endif
15194 case DW_TAG_base_type:
15195 case DW_TAG_class_type:
680b30c7 15196 case DW_TAG_interface_type:
72bf9492
DJ
15197 case DW_TAG_enumeration_type:
15198 case DW_TAG_structure_type:
15199 case DW_TAG_subrange_type:
15200 case DW_TAG_typedef:
15201 case DW_TAG_union_type:
15202 return 1;
15203 default:
15204 return 0;
15205 }
15206}
15207
15208/* Load all DIEs that are interesting for partial symbols into memory. */
15209
15210static struct partial_die_info *
dee91e82 15211load_partial_dies (const struct die_reader_specs *reader,
d521ce57 15212 const gdb_byte *info_ptr, int building_psymtab)
72bf9492 15213{
dee91e82 15214 struct dwarf2_cu *cu = reader->cu;
bb5ed363 15215 struct objfile *objfile = cu->objfile;
72bf9492
DJ
15216 struct partial_die_info *part_die;
15217 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
15218 struct abbrev_info *abbrev;
15219 unsigned int bytes_read;
5afb4e99 15220 unsigned int load_all = 0;
72bf9492
DJ
15221 int nesting_level = 1;
15222
15223 parent_die = NULL;
15224 last_die = NULL;
15225
7adf1e79
DE
15226 gdb_assert (cu->per_cu != NULL);
15227 if (cu->per_cu->load_all_dies)
5afb4e99
DJ
15228 load_all = 1;
15229
72bf9492
DJ
15230 cu->partial_dies
15231 = htab_create_alloc_ex (cu->header.length / 12,
15232 partial_die_hash,
15233 partial_die_eq,
15234 NULL,
15235 &cu->comp_unit_obstack,
15236 hashtab_obstack_allocate,
15237 dummy_obstack_deallocate);
15238
15239 part_die = obstack_alloc (&cu->comp_unit_obstack,
15240 sizeof (struct partial_die_info));
15241
15242 while (1)
15243 {
15244 abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu);
15245
15246 /* A NULL abbrev means the end of a series of children. */
15247 if (abbrev == NULL)
15248 {
15249 if (--nesting_level == 0)
15250 {
15251 /* PART_DIE was probably the last thing allocated on the
15252 comp_unit_obstack, so we could call obstack_free
15253 here. We don't do that because the waste is small,
15254 and will be cleaned up when we're done with this
15255 compilation unit. This way, we're also more robust
15256 against other users of the comp_unit_obstack. */
15257 return first_die;
15258 }
15259 info_ptr += bytes_read;
15260 last_die = parent_die;
15261 parent_die = parent_die->die_parent;
15262 continue;
15263 }
15264
98bfdba5
PA
15265 /* Check for template arguments. We never save these; if
15266 they're seen, we just mark the parent, and go on our way. */
15267 if (parent_die != NULL
15268 && cu->language == language_cplus
15269 && (abbrev->tag == DW_TAG_template_type_param
15270 || abbrev->tag == DW_TAG_template_value_param))
15271 {
15272 parent_die->has_template_arguments = 1;
15273
15274 if (!load_all)
15275 {
15276 /* We don't need a partial DIE for the template argument. */
dee91e82 15277 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
15278 continue;
15279 }
15280 }
15281
0d99eb77 15282 /* We only recurse into c++ subprograms looking for template arguments.
98bfdba5
PA
15283 Skip their other children. */
15284 if (!load_all
15285 && cu->language == language_cplus
15286 && parent_die != NULL
15287 && parent_die->tag == DW_TAG_subprogram)
15288 {
dee91e82 15289 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
15290 continue;
15291 }
15292
5afb4e99
DJ
15293 /* Check whether this DIE is interesting enough to save. Normally
15294 we would not be interested in members here, but there may be
15295 later variables referencing them via DW_AT_specification (for
15296 static members). */
15297 if (!load_all
15298 && !is_type_tag_for_partial (abbrev->tag)
72929c62 15299 && abbrev->tag != DW_TAG_constant
72bf9492
DJ
15300 && abbrev->tag != DW_TAG_enumerator
15301 && abbrev->tag != DW_TAG_subprogram
bc30ff58 15302 && abbrev->tag != DW_TAG_lexical_block
72bf9492 15303 && abbrev->tag != DW_TAG_variable
5afb4e99 15304 && abbrev->tag != DW_TAG_namespace
f55ee35c 15305 && abbrev->tag != DW_TAG_module
95554aad 15306 && abbrev->tag != DW_TAG_member
74921315
KS
15307 && abbrev->tag != DW_TAG_imported_unit
15308 && abbrev->tag != DW_TAG_imported_declaration)
72bf9492
DJ
15309 {
15310 /* Otherwise we skip to the next sibling, if any. */
dee91e82 15311 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
72bf9492
DJ
15312 continue;
15313 }
15314
dee91e82
DE
15315 info_ptr = read_partial_die (reader, part_die, abbrev, bytes_read,
15316 info_ptr);
72bf9492
DJ
15317
15318 /* This two-pass algorithm for processing partial symbols has a
15319 high cost in cache pressure. Thus, handle some simple cases
15320 here which cover the majority of C partial symbols. DIEs
15321 which neither have specification tags in them, nor could have
15322 specification tags elsewhere pointing at them, can simply be
15323 processed and discarded.
15324
15325 This segment is also optional; scan_partial_symbols and
15326 add_partial_symbol will handle these DIEs if we chain
15327 them in normally. When compilers which do not emit large
15328 quantities of duplicate debug information are more common,
15329 this code can probably be removed. */
15330
15331 /* Any complete simple types at the top level (pretty much all
15332 of them, for a language without namespaces), can be processed
15333 directly. */
15334 if (parent_die == NULL
15335 && part_die->has_specification == 0
15336 && part_die->is_declaration == 0
d8228535 15337 && ((part_die->tag == DW_TAG_typedef && !part_die->has_children)
72bf9492
DJ
15338 || part_die->tag == DW_TAG_base_type
15339 || part_die->tag == DW_TAG_subrange_type))
15340 {
15341 if (building_psymtab && part_die->name != NULL)
04a679b8 15342 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
72bf9492 15343 VAR_DOMAIN, LOC_TYPEDEF,
bb5ed363
DE
15344 &objfile->static_psymbols,
15345 0, (CORE_ADDR) 0, cu->language, objfile);
dee91e82 15346 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
72bf9492
DJ
15347 continue;
15348 }
15349
d8228535
JK
15350 /* The exception for DW_TAG_typedef with has_children above is
15351 a workaround of GCC PR debug/47510. In the case of this complaint
15352 type_name_no_tag_or_error will error on such types later.
15353
15354 GDB skipped children of DW_TAG_typedef by the shortcut above and then
15355 it could not find the child DIEs referenced later, this is checked
15356 above. In correct DWARF DW_TAG_typedef should have no children. */
15357
15358 if (part_die->tag == DW_TAG_typedef && part_die->has_children)
15359 complaint (&symfile_complaints,
15360 _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
15361 "- DIE at 0x%x [in module %s]"),
4262abfb 15362 part_die->offset.sect_off, objfile_name (objfile));
d8228535 15363
72bf9492
DJ
15364 /* If we're at the second level, and we're an enumerator, and
15365 our parent has no specification (meaning possibly lives in a
15366 namespace elsewhere), then we can add the partial symbol now
15367 instead of queueing it. */
15368 if (part_die->tag == DW_TAG_enumerator
15369 && parent_die != NULL
15370 && parent_die->die_parent == NULL
15371 && parent_die->tag == DW_TAG_enumeration_type
15372 && parent_die->has_specification == 0)
15373 {
15374 if (part_die->name == NULL)
3e43a32a
MS
15375 complaint (&symfile_complaints,
15376 _("malformed enumerator DIE ignored"));
72bf9492 15377 else if (building_psymtab)
04a679b8 15378 add_psymbol_to_list (part_die->name, strlen (part_die->name), 0,
72bf9492 15379 VAR_DOMAIN, LOC_CONST,
987504bb
JJ
15380 (cu->language == language_cplus
15381 || cu->language == language_java)
bb5ed363
DE
15382 ? &objfile->global_psymbols
15383 : &objfile->static_psymbols,
15384 0, (CORE_ADDR) 0, cu->language, objfile);
72bf9492 15385
dee91e82 15386 info_ptr = locate_pdi_sibling (reader, part_die, info_ptr);
72bf9492
DJ
15387 continue;
15388 }
15389
15390 /* We'll save this DIE so link it in. */
15391 part_die->die_parent = parent_die;
15392 part_die->die_sibling = NULL;
15393 part_die->die_child = NULL;
15394
15395 if (last_die && last_die == parent_die)
15396 last_die->die_child = part_die;
15397 else if (last_die)
15398 last_die->die_sibling = part_die;
15399
15400 last_die = part_die;
15401
15402 if (first_die == NULL)
15403 first_die = part_die;
15404
15405 /* Maybe add the DIE to the hash table. Not all DIEs that we
15406 find interesting need to be in the hash table, because we
15407 also have the parent/sibling/child chains; only those that we
15408 might refer to by offset later during partial symbol reading.
15409
15410 For now this means things that might have be the target of a
15411 DW_AT_specification, DW_AT_abstract_origin, or
15412 DW_AT_extension. DW_AT_extension will refer only to
15413 namespaces; DW_AT_abstract_origin refers to functions (and
15414 many things under the function DIE, but we do not recurse
15415 into function DIEs during partial symbol reading) and
15416 possibly variables as well; DW_AT_specification refers to
15417 declarations. Declarations ought to have the DW_AT_declaration
15418 flag. It happens that GCC forgets to put it in sometimes, but
15419 only for functions, not for types.
15420
15421 Adding more things than necessary to the hash table is harmless
15422 except for the performance cost. Adding too few will result in
5afb4e99
DJ
15423 wasted time in find_partial_die, when we reread the compilation
15424 unit with load_all_dies set. */
72bf9492 15425
5afb4e99 15426 if (load_all
72929c62 15427 || abbrev->tag == DW_TAG_constant
5afb4e99 15428 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
15429 || abbrev->tag == DW_TAG_variable
15430 || abbrev->tag == DW_TAG_namespace
15431 || part_die->is_declaration)
15432 {
15433 void **slot;
15434
15435 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
b64f50a1 15436 part_die->offset.sect_off, INSERT);
72bf9492
DJ
15437 *slot = part_die;
15438 }
15439
15440 part_die = obstack_alloc (&cu->comp_unit_obstack,
15441 sizeof (struct partial_die_info));
15442
15443 /* For some DIEs we want to follow their children (if any). For C
bc30ff58 15444 we have no reason to follow the children of structures; for other
98bfdba5
PA
15445 languages we have to, so that we can get at method physnames
15446 to infer fully qualified class names, for DW_AT_specification,
15447 and for C++ template arguments. For C++, we also look one level
15448 inside functions to find template arguments (if the name of the
15449 function does not already contain the template arguments).
bc30ff58
JB
15450
15451 For Ada, we need to scan the children of subprograms and lexical
15452 blocks as well because Ada allows the definition of nested
15453 entities that could be interesting for the debugger, such as
15454 nested subprograms for instance. */
72bf9492 15455 if (last_die->has_children
5afb4e99
DJ
15456 && (load_all
15457 || last_die->tag == DW_TAG_namespace
f55ee35c 15458 || last_die->tag == DW_TAG_module
72bf9492 15459 || last_die->tag == DW_TAG_enumeration_type
98bfdba5
PA
15460 || (cu->language == language_cplus
15461 && last_die->tag == DW_TAG_subprogram
15462 && (last_die->name == NULL
15463 || strchr (last_die->name, '<') == NULL))
72bf9492
DJ
15464 || (cu->language != language_c
15465 && (last_die->tag == DW_TAG_class_type
680b30c7 15466 || last_die->tag == DW_TAG_interface_type
72bf9492 15467 || last_die->tag == DW_TAG_structure_type
bc30ff58
JB
15468 || last_die->tag == DW_TAG_union_type))
15469 || (cu->language == language_ada
15470 && (last_die->tag == DW_TAG_subprogram
15471 || last_die->tag == DW_TAG_lexical_block))))
72bf9492
DJ
15472 {
15473 nesting_level++;
15474 parent_die = last_die;
15475 continue;
15476 }
15477
15478 /* Otherwise we skip to the next sibling, if any. */
dee91e82 15479 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
72bf9492
DJ
15480
15481 /* Back to the top, do it again. */
15482 }
15483}
15484
c906108c
SS
15485/* Read a minimal amount of information into the minimal die structure. */
15486
d521ce57 15487static const gdb_byte *
dee91e82
DE
15488read_partial_die (const struct die_reader_specs *reader,
15489 struct partial_die_info *part_die,
15490 struct abbrev_info *abbrev, unsigned int abbrev_len,
d521ce57 15491 const gdb_byte *info_ptr)
c906108c 15492{
dee91e82 15493 struct dwarf2_cu *cu = reader->cu;
bb5ed363 15494 struct objfile *objfile = cu->objfile;
d521ce57 15495 const gdb_byte *buffer = reader->buffer;
fa238c03 15496 unsigned int i;
c906108c 15497 struct attribute attr;
c5aa993b 15498 int has_low_pc_attr = 0;
c906108c 15499 int has_high_pc_attr = 0;
91da1414 15500 int high_pc_relative = 0;
c906108c 15501
72bf9492 15502 memset (part_die, 0, sizeof (struct partial_die_info));
c906108c 15503
b64f50a1 15504 part_die->offset.sect_off = info_ptr - buffer;
72bf9492
DJ
15505
15506 info_ptr += abbrev_len;
15507
15508 if (abbrev == NULL)
15509 return info_ptr;
15510
c906108c
SS
15511 part_die->tag = abbrev->tag;
15512 part_die->has_children = abbrev->has_children;
c906108c
SS
15513
15514 for (i = 0; i < abbrev->num_attrs; ++i)
15515 {
dee91e82 15516 info_ptr = read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
c906108c
SS
15517
15518 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 15519 partial symbol table. */
c906108c
SS
15520 switch (attr.name)
15521 {
15522 case DW_AT_name:
71c25dea
TT
15523 switch (part_die->tag)
15524 {
15525 case DW_TAG_compile_unit:
95554aad 15526 case DW_TAG_partial_unit:
348e048f 15527 case DW_TAG_type_unit:
71c25dea
TT
15528 /* Compilation units have a DW_AT_name that is a filename, not
15529 a source language identifier. */
15530 case DW_TAG_enumeration_type:
15531 case DW_TAG_enumerator:
15532 /* These tags always have simple identifiers already; no need
15533 to canonicalize them. */
15534 part_die->name = DW_STRING (&attr);
15535 break;
15536 default:
15537 part_die->name
15538 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
34a68019 15539 &objfile->per_bfd->storage_obstack);
71c25dea
TT
15540 break;
15541 }
c906108c 15542 break;
31ef98ae 15543 case DW_AT_linkage_name:
c906108c 15544 case DW_AT_MIPS_linkage_name:
31ef98ae
TT
15545 /* Note that both forms of linkage name might appear. We
15546 assume they will be the same, and we only store the last
15547 one we see. */
94af9270
KS
15548 if (cu->language == language_ada)
15549 part_die->name = DW_STRING (&attr);
abc72ce4 15550 part_die->linkage_name = DW_STRING (&attr);
c906108c
SS
15551 break;
15552 case DW_AT_low_pc:
15553 has_low_pc_attr = 1;
31aa7e4e 15554 part_die->lowpc = attr_value_as_address (&attr);
c906108c
SS
15555 break;
15556 case DW_AT_high_pc:
15557 has_high_pc_attr = 1;
31aa7e4e
JB
15558 part_die->highpc = attr_value_as_address (&attr);
15559 if (cu->header.version >= 4 && attr_form_is_constant (&attr))
15560 high_pc_relative = 1;
c906108c
SS
15561 break;
15562 case DW_AT_location:
0963b4bd 15563 /* Support the .debug_loc offsets. */
8e19ed76
PS
15564 if (attr_form_is_block (&attr))
15565 {
95554aad 15566 part_die->d.locdesc = DW_BLOCK (&attr);
8e19ed76 15567 }
3690dd37 15568 else if (attr_form_is_section_offset (&attr))
8e19ed76 15569 {
4d3c2250 15570 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
15571 }
15572 else
15573 {
4d3c2250
KB
15574 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
15575 "partial symbol information");
8e19ed76 15576 }
c906108c 15577 break;
c906108c
SS
15578 case DW_AT_external:
15579 part_die->is_external = DW_UNSND (&attr);
15580 break;
15581 case DW_AT_declaration:
15582 part_die->is_declaration = DW_UNSND (&attr);
15583 break;
15584 case DW_AT_type:
15585 part_die->has_type = 1;
15586 break;
15587 case DW_AT_abstract_origin:
15588 case DW_AT_specification:
72bf9492
DJ
15589 case DW_AT_extension:
15590 part_die->has_specification = 1;
c764a876 15591 part_die->spec_offset = dwarf2_get_ref_die_offset (&attr);
36586728
TT
15592 part_die->spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
15593 || cu->per_cu->is_dwz);
c906108c
SS
15594 break;
15595 case DW_AT_sibling:
15596 /* Ignore absolute siblings, they might point outside of
15597 the current compile unit. */
15598 if (attr.form == DW_FORM_ref_addr)
3e43a32a
MS
15599 complaint (&symfile_complaints,
15600 _("ignoring absolute DW_AT_sibling"));
c906108c 15601 else
b9502d3f
WN
15602 {
15603 unsigned int off = dwarf2_get_ref_die_offset (&attr).sect_off;
15604 const gdb_byte *sibling_ptr = buffer + off;
15605
15606 if (sibling_ptr < info_ptr)
15607 complaint (&symfile_complaints,
15608 _("DW_AT_sibling points backwards"));
22869d73
KS
15609 else if (sibling_ptr > reader->buffer_end)
15610 dwarf2_section_buffer_overflow_complaint (reader->die_section);
b9502d3f
WN
15611 else
15612 part_die->sibling = sibling_ptr;
15613 }
c906108c 15614 break;
fa4028e9
JB
15615 case DW_AT_byte_size:
15616 part_die->has_byte_size = 1;
15617 break;
68511cec
CES
15618 case DW_AT_calling_convention:
15619 /* DWARF doesn't provide a way to identify a program's source-level
15620 entry point. DW_AT_calling_convention attributes are only meant
15621 to describe functions' calling conventions.
15622
15623 However, because it's a necessary piece of information in
15624 Fortran, and because DW_CC_program is the only piece of debugging
15625 information whose definition refers to a 'main program' at all,
15626 several compilers have begun marking Fortran main programs with
15627 DW_CC_program --- even when those functions use the standard
15628 calling conventions.
15629
15630 So until DWARF specifies a way to provide this information and
15631 compilers pick up the new representation, we'll support this
15632 practice. */
15633 if (DW_UNSND (&attr) == DW_CC_program
15634 && cu->language == language_fortran)
3d548a53 15635 set_objfile_main_name (objfile, part_die->name, language_fortran);
68511cec 15636 break;
481860b3
GB
15637 case DW_AT_inline:
15638 if (DW_UNSND (&attr) == DW_INL_inlined
15639 || DW_UNSND (&attr) == DW_INL_declared_inlined)
15640 part_die->may_be_inlined = 1;
15641 break;
95554aad
TT
15642
15643 case DW_AT_import:
15644 if (part_die->tag == DW_TAG_imported_unit)
36586728
TT
15645 {
15646 part_die->d.offset = dwarf2_get_ref_die_offset (&attr);
15647 part_die->is_dwz = (attr.form == DW_FORM_GNU_ref_alt
15648 || cu->per_cu->is_dwz);
15649 }
95554aad
TT
15650 break;
15651
c906108c
SS
15652 default:
15653 break;
15654 }
15655 }
15656
91da1414
MW
15657 if (high_pc_relative)
15658 part_die->highpc += part_die->lowpc;
15659
9373cf26
JK
15660 if (has_low_pc_attr && has_high_pc_attr)
15661 {
15662 /* When using the GNU linker, .gnu.linkonce. sections are used to
15663 eliminate duplicate copies of functions and vtables and such.
15664 The linker will arbitrarily choose one and discard the others.
15665 The AT_*_pc values for such functions refer to local labels in
15666 these sections. If the section from that file was discarded, the
15667 labels are not in the output, so the relocs get a value of 0.
15668 If this is a discarded function, mark the pc bounds as invalid,
15669 so that GDB will ignore it. */
15670 if (part_die->lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
15671 {
bb5ed363 15672 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26
JK
15673
15674 complaint (&symfile_complaints,
15675 _("DW_AT_low_pc %s is zero "
15676 "for DIE at 0x%x [in module %s]"),
15677 paddress (gdbarch, part_die->lowpc),
4262abfb 15678 part_die->offset.sect_off, objfile_name (objfile));
9373cf26
JK
15679 }
15680 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
15681 else if (part_die->lowpc >= part_die->highpc)
15682 {
bb5ed363 15683 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9373cf26
JK
15684
15685 complaint (&symfile_complaints,
15686 _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
15687 "for DIE at 0x%x [in module %s]"),
15688 paddress (gdbarch, part_die->lowpc),
15689 paddress (gdbarch, part_die->highpc),
4262abfb 15690 part_die->offset.sect_off, objfile_name (objfile));
9373cf26
JK
15691 }
15692 else
15693 part_die->has_pc_info = 1;
15694 }
85cbf3d3 15695
c906108c
SS
15696 return info_ptr;
15697}
15698
72bf9492
DJ
15699/* Find a cached partial DIE at OFFSET in CU. */
15700
15701static struct partial_die_info *
b64f50a1 15702find_partial_die_in_comp_unit (sect_offset offset, struct dwarf2_cu *cu)
72bf9492
DJ
15703{
15704 struct partial_die_info *lookup_die = NULL;
15705 struct partial_die_info part_die;
15706
15707 part_die.offset = offset;
b64f50a1
JK
15708 lookup_die = htab_find_with_hash (cu->partial_dies, &part_die,
15709 offset.sect_off);
72bf9492 15710
72bf9492
DJ
15711 return lookup_die;
15712}
15713
348e048f
DE
15714/* Find a partial DIE at OFFSET, which may or may not be in CU,
15715 except in the case of .debug_types DIEs which do not reference
15716 outside their CU (they do however referencing other types via
55f1336d 15717 DW_FORM_ref_sig8). */
72bf9492
DJ
15718
15719static struct partial_die_info *
36586728 15720find_partial_die (sect_offset offset, int offset_in_dwz, struct dwarf2_cu *cu)
72bf9492 15721{
bb5ed363 15722 struct objfile *objfile = cu->objfile;
5afb4e99
DJ
15723 struct dwarf2_per_cu_data *per_cu = NULL;
15724 struct partial_die_info *pd = NULL;
72bf9492 15725
36586728
TT
15726 if (offset_in_dwz == cu->per_cu->is_dwz
15727 && offset_in_cu_p (&cu->header, offset))
5afb4e99
DJ
15728 {
15729 pd = find_partial_die_in_comp_unit (offset, cu);
15730 if (pd != NULL)
15731 return pd;
0d99eb77
DE
15732 /* We missed recording what we needed.
15733 Load all dies and try again. */
15734 per_cu = cu->per_cu;
5afb4e99 15735 }
0d99eb77
DE
15736 else
15737 {
15738 /* TUs don't reference other CUs/TUs (except via type signatures). */
3019eac3 15739 if (cu->per_cu->is_debug_types)
0d99eb77
DE
15740 {
15741 error (_("Dwarf Error: Type Unit at offset 0x%lx contains"
15742 " external reference to offset 0x%lx [in module %s].\n"),
15743 (long) cu->header.offset.sect_off, (long) offset.sect_off,
15744 bfd_get_filename (objfile->obfd));
15745 }
36586728
TT
15746 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
15747 objfile);
72bf9492 15748
0d99eb77
DE
15749 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
15750 load_partial_comp_unit (per_cu);
ae038cb0 15751
0d99eb77
DE
15752 per_cu->cu->last_used = 0;
15753 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
15754 }
5afb4e99 15755
dee91e82
DE
15756 /* If we didn't find it, and not all dies have been loaded,
15757 load them all and try again. */
15758
5afb4e99
DJ
15759 if (pd == NULL && per_cu->load_all_dies == 0)
15760 {
5afb4e99 15761 per_cu->load_all_dies = 1;
fd820528
DE
15762
15763 /* This is nasty. When we reread the DIEs, somewhere up the call chain
15764 THIS_CU->cu may already be in use. So we can't just free it and
15765 replace its DIEs with the ones we read in. Instead, we leave those
15766 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
15767 and clobber THIS_CU->cu->partial_dies with the hash table for the new
15768 set. */
dee91e82 15769 load_partial_comp_unit (per_cu);
5afb4e99
DJ
15770
15771 pd = find_partial_die_in_comp_unit (offset, per_cu->cu);
15772 }
15773
15774 if (pd == NULL)
15775 internal_error (__FILE__, __LINE__,
3e43a32a
MS
15776 _("could not find partial DIE 0x%x "
15777 "in cache [from module %s]\n"),
b64f50a1 15778 offset.sect_off, bfd_get_filename (objfile->obfd));
5afb4e99 15779 return pd;
72bf9492
DJ
15780}
15781
abc72ce4
DE
15782/* See if we can figure out if the class lives in a namespace. We do
15783 this by looking for a member function; its demangled name will
15784 contain namespace info, if there is any. */
15785
15786static void
15787guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
15788 struct dwarf2_cu *cu)
15789{
15790 /* NOTE: carlton/2003-10-07: Getting the info this way changes
15791 what template types look like, because the demangler
15792 frequently doesn't give the same name as the debug info. We
15793 could fix this by only using the demangled name to get the
15794 prefix (but see comment in read_structure_type). */
15795
15796 struct partial_die_info *real_pdi;
15797 struct partial_die_info *child_pdi;
15798
15799 /* If this DIE (this DIE's specification, if any) has a parent, then
15800 we should not do this. We'll prepend the parent's fully qualified
15801 name when we create the partial symbol. */
15802
15803 real_pdi = struct_pdi;
15804 while (real_pdi->has_specification)
36586728
TT
15805 real_pdi = find_partial_die (real_pdi->spec_offset,
15806 real_pdi->spec_is_dwz, cu);
abc72ce4
DE
15807
15808 if (real_pdi->die_parent != NULL)
15809 return;
15810
15811 for (child_pdi = struct_pdi->die_child;
15812 child_pdi != NULL;
15813 child_pdi = child_pdi->die_sibling)
15814 {
15815 if (child_pdi->tag == DW_TAG_subprogram
15816 && child_pdi->linkage_name != NULL)
15817 {
15818 char *actual_class_name
15819 = language_class_name_from_physname (cu->language_defn,
15820 child_pdi->linkage_name);
15821 if (actual_class_name != NULL)
15822 {
15823 struct_pdi->name
34a68019 15824 = obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
10f0c4bb
TT
15825 actual_class_name,
15826 strlen (actual_class_name));
abc72ce4
DE
15827 xfree (actual_class_name);
15828 }
15829 break;
15830 }
15831 }
15832}
15833
72bf9492
DJ
15834/* Adjust PART_DIE before generating a symbol for it. This function
15835 may set the is_external flag or change the DIE's name. */
15836
15837static void
15838fixup_partial_die (struct partial_die_info *part_die,
15839 struct dwarf2_cu *cu)
15840{
abc72ce4
DE
15841 /* Once we've fixed up a die, there's no point in doing so again.
15842 This also avoids a memory leak if we were to call
15843 guess_partial_die_structure_name multiple times. */
15844 if (part_die->fixup_called)
15845 return;
15846
72bf9492
DJ
15847 /* If we found a reference attribute and the DIE has no name, try
15848 to find a name in the referred to DIE. */
15849
15850 if (part_die->name == NULL && part_die->has_specification)
15851 {
15852 struct partial_die_info *spec_die;
72bf9492 15853
36586728
TT
15854 spec_die = find_partial_die (part_die->spec_offset,
15855 part_die->spec_is_dwz, cu);
72bf9492 15856
10b3939b 15857 fixup_partial_die (spec_die, cu);
72bf9492
DJ
15858
15859 if (spec_die->name)
15860 {
15861 part_die->name = spec_die->name;
15862
15863 /* Copy DW_AT_external attribute if it is set. */
15864 if (spec_die->is_external)
15865 part_die->is_external = spec_die->is_external;
15866 }
15867 }
15868
15869 /* Set default names for some unnamed DIEs. */
72bf9492
DJ
15870
15871 if (part_die->name == NULL && part_die->tag == DW_TAG_namespace)
2b1dbab0 15872 part_die->name = CP_ANONYMOUS_NAMESPACE_STR;
72bf9492 15873
abc72ce4
DE
15874 /* If there is no parent die to provide a namespace, and there are
15875 children, see if we can determine the namespace from their linkage
122d1940 15876 name. */
abc72ce4 15877 if (cu->language == language_cplus
8b70b953 15878 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
abc72ce4
DE
15879 && part_die->die_parent == NULL
15880 && part_die->has_children
15881 && (part_die->tag == DW_TAG_class_type
15882 || part_die->tag == DW_TAG_structure_type
15883 || part_die->tag == DW_TAG_union_type))
15884 guess_partial_die_structure_name (part_die, cu);
15885
53832f31
TT
15886 /* GCC might emit a nameless struct or union that has a linkage
15887 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
15888 if (part_die->name == NULL
96408a79
SA
15889 && (part_die->tag == DW_TAG_class_type
15890 || part_die->tag == DW_TAG_interface_type
15891 || part_die->tag == DW_TAG_structure_type
15892 || part_die->tag == DW_TAG_union_type)
53832f31
TT
15893 && part_die->linkage_name != NULL)
15894 {
15895 char *demangled;
15896
8de20a37 15897 demangled = gdb_demangle (part_die->linkage_name, DMGL_TYPES);
53832f31
TT
15898 if (demangled)
15899 {
96408a79
SA
15900 const char *base;
15901
15902 /* Strip any leading namespaces/classes, keep only the base name.
15903 DW_AT_name for named DIEs does not contain the prefixes. */
15904 base = strrchr (demangled, ':');
15905 if (base && base > demangled && base[-1] == ':')
15906 base++;
15907 else
15908 base = demangled;
15909
34a68019
TT
15910 part_die->name
15911 = obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
15912 base, strlen (base));
53832f31
TT
15913 xfree (demangled);
15914 }
15915 }
15916
abc72ce4 15917 part_die->fixup_called = 1;
72bf9492
DJ
15918}
15919
a8329558 15920/* Read an attribute value described by an attribute form. */
c906108c 15921
d521ce57 15922static const gdb_byte *
dee91e82
DE
15923read_attribute_value (const struct die_reader_specs *reader,
15924 struct attribute *attr, unsigned form,
d521ce57 15925 const gdb_byte *info_ptr)
c906108c 15926{
dee91e82
DE
15927 struct dwarf2_cu *cu = reader->cu;
15928 bfd *abfd = reader->abfd;
e7c27a73 15929 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
15930 unsigned int bytes_read;
15931 struct dwarf_block *blk;
15932
a8329558
KW
15933 attr->form = form;
15934 switch (form)
c906108c 15935 {
c906108c 15936 case DW_FORM_ref_addr:
ae411497 15937 if (cu->header.version == 2)
4568ecf9 15938 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
ae411497 15939 else
4568ecf9
DE
15940 DW_UNSND (attr) = read_offset (abfd, info_ptr,
15941 &cu->header, &bytes_read);
ae411497
TT
15942 info_ptr += bytes_read;
15943 break;
36586728
TT
15944 case DW_FORM_GNU_ref_alt:
15945 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
15946 info_ptr += bytes_read;
15947 break;
ae411497 15948 case DW_FORM_addr:
e7c27a73 15949 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
107d2387 15950 info_ptr += bytes_read;
c906108c
SS
15951 break;
15952 case DW_FORM_block2:
7b5a2f43 15953 blk = dwarf_alloc_block (cu);
c906108c
SS
15954 blk->size = read_2_bytes (abfd, info_ptr);
15955 info_ptr += 2;
15956 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
15957 info_ptr += blk->size;
15958 DW_BLOCK (attr) = blk;
15959 break;
15960 case DW_FORM_block4:
7b5a2f43 15961 blk = dwarf_alloc_block (cu);
c906108c
SS
15962 blk->size = read_4_bytes (abfd, info_ptr);
15963 info_ptr += 4;
15964 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
15965 info_ptr += blk->size;
15966 DW_BLOCK (attr) = blk;
15967 break;
15968 case DW_FORM_data2:
15969 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
15970 info_ptr += 2;
15971 break;
15972 case DW_FORM_data4:
15973 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
15974 info_ptr += 4;
15975 break;
15976 case DW_FORM_data8:
15977 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
15978 info_ptr += 8;
15979 break;
2dc7f7b3
TT
15980 case DW_FORM_sec_offset:
15981 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
15982 info_ptr += bytes_read;
15983 break;
c906108c 15984 case DW_FORM_string:
9b1c24c8 15985 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
8285870a 15986 DW_STRING_IS_CANONICAL (attr) = 0;
c906108c
SS
15987 info_ptr += bytes_read;
15988 break;
4bdf3d34 15989 case DW_FORM_strp:
36586728
TT
15990 if (!cu->per_cu->is_dwz)
15991 {
15992 DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header,
15993 &bytes_read);
15994 DW_STRING_IS_CANONICAL (attr) = 0;
15995 info_ptr += bytes_read;
15996 break;
15997 }
15998 /* FALLTHROUGH */
15999 case DW_FORM_GNU_strp_alt:
16000 {
16001 struct dwz_file *dwz = dwarf2_get_dwz_file ();
16002 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
16003 &bytes_read);
16004
16005 DW_STRING (attr) = read_indirect_string_from_dwz (dwz, str_offset);
16006 DW_STRING_IS_CANONICAL (attr) = 0;
16007 info_ptr += bytes_read;
16008 }
4bdf3d34 16009 break;
2dc7f7b3 16010 case DW_FORM_exprloc:
c906108c 16011 case DW_FORM_block:
7b5a2f43 16012 blk = dwarf_alloc_block (cu);
c906108c
SS
16013 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16014 info_ptr += bytes_read;
16015 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16016 info_ptr += blk->size;
16017 DW_BLOCK (attr) = blk;
16018 break;
16019 case DW_FORM_block1:
7b5a2f43 16020 blk = dwarf_alloc_block (cu);
c906108c
SS
16021 blk->size = read_1_byte (abfd, info_ptr);
16022 info_ptr += 1;
16023 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
16024 info_ptr += blk->size;
16025 DW_BLOCK (attr) = blk;
16026 break;
16027 case DW_FORM_data1:
16028 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
16029 info_ptr += 1;
16030 break;
16031 case DW_FORM_flag:
16032 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
16033 info_ptr += 1;
16034 break;
2dc7f7b3
TT
16035 case DW_FORM_flag_present:
16036 DW_UNSND (attr) = 1;
16037 break;
c906108c
SS
16038 case DW_FORM_sdata:
16039 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
16040 info_ptr += bytes_read;
16041 break;
16042 case DW_FORM_udata:
16043 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16044 info_ptr += bytes_read;
16045 break;
16046 case DW_FORM_ref1:
4568ecf9
DE
16047 DW_UNSND (attr) = (cu->header.offset.sect_off
16048 + read_1_byte (abfd, info_ptr));
c906108c
SS
16049 info_ptr += 1;
16050 break;
16051 case DW_FORM_ref2:
4568ecf9
DE
16052 DW_UNSND (attr) = (cu->header.offset.sect_off
16053 + read_2_bytes (abfd, info_ptr));
c906108c
SS
16054 info_ptr += 2;
16055 break;
16056 case DW_FORM_ref4:
4568ecf9
DE
16057 DW_UNSND (attr) = (cu->header.offset.sect_off
16058 + read_4_bytes (abfd, info_ptr));
c906108c
SS
16059 info_ptr += 4;
16060 break;
613e1657 16061 case DW_FORM_ref8:
4568ecf9
DE
16062 DW_UNSND (attr) = (cu->header.offset.sect_off
16063 + read_8_bytes (abfd, info_ptr));
613e1657
KB
16064 info_ptr += 8;
16065 break;
55f1336d 16066 case DW_FORM_ref_sig8:
ac9ec31b 16067 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
348e048f
DE
16068 info_ptr += 8;
16069 break;
c906108c 16070 case DW_FORM_ref_udata:
4568ecf9
DE
16071 DW_UNSND (attr) = (cu->header.offset.sect_off
16072 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
16073 info_ptr += bytes_read;
16074 break;
c906108c 16075 case DW_FORM_indirect:
a8329558
KW
16076 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16077 info_ptr += bytes_read;
dee91e82 16078 info_ptr = read_attribute_value (reader, attr, form, info_ptr);
a8329558 16079 break;
3019eac3
DE
16080 case DW_FORM_GNU_addr_index:
16081 if (reader->dwo_file == NULL)
16082 {
16083 /* For now flag a hard error.
16084 Later we can turn this into a complaint. */
16085 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
16086 dwarf_form_name (form),
16087 bfd_get_filename (abfd));
16088 }
16089 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
16090 info_ptr += bytes_read;
16091 break;
16092 case DW_FORM_GNU_str_index:
16093 if (reader->dwo_file == NULL)
16094 {
16095 /* For now flag a hard error.
16096 Later we can turn this into a complaint if warranted. */
16097 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
16098 dwarf_form_name (form),
16099 bfd_get_filename (abfd));
16100 }
16101 {
16102 ULONGEST str_index =
16103 read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
16104
342587c4 16105 DW_STRING (attr) = read_str_index (reader, str_index);
3019eac3
DE
16106 DW_STRING_IS_CANONICAL (attr) = 0;
16107 info_ptr += bytes_read;
16108 }
16109 break;
c906108c 16110 default:
8a3fe4f8 16111 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
16112 dwarf_form_name (form),
16113 bfd_get_filename (abfd));
c906108c 16114 }
28e94949 16115
36586728 16116 /* Super hack. */
7771576e 16117 if (cu->per_cu->is_dwz && attr_form_is_ref (attr))
36586728
TT
16118 attr->form = DW_FORM_GNU_ref_alt;
16119
28e94949
JB
16120 /* We have seen instances where the compiler tried to emit a byte
16121 size attribute of -1 which ended up being encoded as an unsigned
16122 0xffffffff. Although 0xffffffff is technically a valid size value,
16123 an object of this size seems pretty unlikely so we can relatively
16124 safely treat these cases as if the size attribute was invalid and
16125 treat them as zero by default. */
16126 if (attr->name == DW_AT_byte_size
16127 && form == DW_FORM_data4
16128 && DW_UNSND (attr) >= 0xffffffff)
01c66ae6
JB
16129 {
16130 complaint
16131 (&symfile_complaints,
43bbcdc2
PH
16132 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
16133 hex_string (DW_UNSND (attr)));
01c66ae6
JB
16134 DW_UNSND (attr) = 0;
16135 }
28e94949 16136
c906108c
SS
16137 return info_ptr;
16138}
16139
a8329558
KW
16140/* Read an attribute described by an abbreviated attribute. */
16141
d521ce57 16142static const gdb_byte *
dee91e82
DE
16143read_attribute (const struct die_reader_specs *reader,
16144 struct attribute *attr, struct attr_abbrev *abbrev,
d521ce57 16145 const gdb_byte *info_ptr)
a8329558
KW
16146{
16147 attr->name = abbrev->name;
dee91e82 16148 return read_attribute_value (reader, attr, abbrev->form, info_ptr);
a8329558
KW
16149}
16150
0963b4bd 16151/* Read dwarf information from a buffer. */
c906108c
SS
16152
16153static unsigned int
a1855c1d 16154read_1_byte (bfd *abfd, const gdb_byte *buf)
c906108c 16155{
fe1b8b76 16156 return bfd_get_8 (abfd, buf);
c906108c
SS
16157}
16158
16159static int
a1855c1d 16160read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
c906108c 16161{
fe1b8b76 16162 return bfd_get_signed_8 (abfd, buf);
c906108c
SS
16163}
16164
16165static unsigned int
a1855c1d 16166read_2_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 16167{
fe1b8b76 16168 return bfd_get_16 (abfd, buf);
c906108c
SS
16169}
16170
21ae7a4d 16171static int
a1855c1d 16172read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
16173{
16174 return bfd_get_signed_16 (abfd, buf);
16175}
16176
c906108c 16177static unsigned int
a1855c1d 16178read_4_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 16179{
fe1b8b76 16180 return bfd_get_32 (abfd, buf);
c906108c
SS
16181}
16182
21ae7a4d 16183static int
a1855c1d 16184read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
21ae7a4d
JK
16185{
16186 return bfd_get_signed_32 (abfd, buf);
16187}
16188
93311388 16189static ULONGEST
a1855c1d 16190read_8_bytes (bfd *abfd, const gdb_byte *buf)
c906108c 16191{
fe1b8b76 16192 return bfd_get_64 (abfd, buf);
c906108c
SS
16193}
16194
16195static CORE_ADDR
d521ce57 16196read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
891d2f0b 16197 unsigned int *bytes_read)
c906108c 16198{
e7c27a73 16199 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
16200 CORE_ADDR retval = 0;
16201
107d2387 16202 if (cu_header->signed_addr_p)
c906108c 16203 {
107d2387
AC
16204 switch (cu_header->addr_size)
16205 {
16206 case 2:
fe1b8b76 16207 retval = bfd_get_signed_16 (abfd, buf);
107d2387
AC
16208 break;
16209 case 4:
fe1b8b76 16210 retval = bfd_get_signed_32 (abfd, buf);
107d2387
AC
16211 break;
16212 case 8:
fe1b8b76 16213 retval = bfd_get_signed_64 (abfd, buf);
107d2387
AC
16214 break;
16215 default:
8e65ff28 16216 internal_error (__FILE__, __LINE__,
e2e0b3e5 16217 _("read_address: bad switch, signed [in module %s]"),
659b0389 16218 bfd_get_filename (abfd));
107d2387
AC
16219 }
16220 }
16221 else
16222 {
16223 switch (cu_header->addr_size)
16224 {
16225 case 2:
fe1b8b76 16226 retval = bfd_get_16 (abfd, buf);
107d2387
AC
16227 break;
16228 case 4:
fe1b8b76 16229 retval = bfd_get_32 (abfd, buf);
107d2387
AC
16230 break;
16231 case 8:
fe1b8b76 16232 retval = bfd_get_64 (abfd, buf);
107d2387
AC
16233 break;
16234 default:
8e65ff28 16235 internal_error (__FILE__, __LINE__,
a73c6dcd
MS
16236 _("read_address: bad switch, "
16237 "unsigned [in module %s]"),
659b0389 16238 bfd_get_filename (abfd));
107d2387 16239 }
c906108c 16240 }
64367e0a 16241
107d2387
AC
16242 *bytes_read = cu_header->addr_size;
16243 return retval;
c906108c
SS
16244}
16245
f7ef9339 16246/* Read the initial length from a section. The (draft) DWARF 3
613e1657
KB
16247 specification allows the initial length to take up either 4 bytes
16248 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
16249 bytes describe the length and all offsets will be 8 bytes in length
16250 instead of 4.
16251
f7ef9339
KB
16252 An older, non-standard 64-bit format is also handled by this
16253 function. The older format in question stores the initial length
16254 as an 8-byte quantity without an escape value. Lengths greater
16255 than 2^32 aren't very common which means that the initial 4 bytes
16256 is almost always zero. Since a length value of zero doesn't make
16257 sense for the 32-bit format, this initial zero can be considered to
16258 be an escape value which indicates the presence of the older 64-bit
16259 format. As written, the code can't detect (old format) lengths
917c78fc
MK
16260 greater than 4GB. If it becomes necessary to handle lengths
16261 somewhat larger than 4GB, we could allow other small values (such
16262 as the non-sensical values of 1, 2, and 3) to also be used as
16263 escape values indicating the presence of the old format.
f7ef9339 16264
917c78fc
MK
16265 The value returned via bytes_read should be used to increment the
16266 relevant pointer after calling read_initial_length().
c764a876 16267
613e1657
KB
16268 [ Note: read_initial_length() and read_offset() are based on the
16269 document entitled "DWARF Debugging Information Format", revision
f7ef9339 16270 3, draft 8, dated November 19, 2001. This document was obtained
613e1657
KB
16271 from:
16272
f7ef9339 16273 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
6e70227d 16274
613e1657
KB
16275 This document is only a draft and is subject to change. (So beware.)
16276
f7ef9339 16277 Details regarding the older, non-standard 64-bit format were
917c78fc
MK
16278 determined empirically by examining 64-bit ELF files produced by
16279 the SGI toolchain on an IRIX 6.5 machine.
f7ef9339
KB
16280
16281 - Kevin, July 16, 2002
613e1657
KB
16282 ] */
16283
16284static LONGEST
d521ce57 16285read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
613e1657 16286{
fe1b8b76 16287 LONGEST length = bfd_get_32 (abfd, buf);
613e1657 16288
dd373385 16289 if (length == 0xffffffff)
613e1657 16290 {
fe1b8b76 16291 length = bfd_get_64 (abfd, buf + 4);
613e1657 16292 *bytes_read = 12;
613e1657 16293 }
dd373385 16294 else if (length == 0)
f7ef9339 16295 {
dd373385 16296 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
fe1b8b76 16297 length = bfd_get_64 (abfd, buf);
f7ef9339 16298 *bytes_read = 8;
f7ef9339 16299 }
613e1657
KB
16300 else
16301 {
16302 *bytes_read = 4;
613e1657
KB
16303 }
16304
c764a876
DE
16305 return length;
16306}
dd373385 16307
c764a876
DE
16308/* Cover function for read_initial_length.
16309 Returns the length of the object at BUF, and stores the size of the
16310 initial length in *BYTES_READ and stores the size that offsets will be in
16311 *OFFSET_SIZE.
16312 If the initial length size is not equivalent to that specified in
16313 CU_HEADER then issue a complaint.
16314 This is useful when reading non-comp-unit headers. */
dd373385 16315
c764a876 16316static LONGEST
d521ce57 16317read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
c764a876
DE
16318 const struct comp_unit_head *cu_header,
16319 unsigned int *bytes_read,
16320 unsigned int *offset_size)
16321{
16322 LONGEST length = read_initial_length (abfd, buf, bytes_read);
16323
16324 gdb_assert (cu_header->initial_length_size == 4
16325 || cu_header->initial_length_size == 8
16326 || cu_header->initial_length_size == 12);
16327
16328 if (cu_header->initial_length_size != *bytes_read)
16329 complaint (&symfile_complaints,
16330 _("intermixed 32-bit and 64-bit DWARF sections"));
dd373385 16331
c764a876 16332 *offset_size = (*bytes_read == 4) ? 4 : 8;
dd373385 16333 return length;
613e1657
KB
16334}
16335
16336/* Read an offset from the data stream. The size of the offset is
917c78fc 16337 given by cu_header->offset_size. */
613e1657
KB
16338
16339static LONGEST
d521ce57
TT
16340read_offset (bfd *abfd, const gdb_byte *buf,
16341 const struct comp_unit_head *cu_header,
891d2f0b 16342 unsigned int *bytes_read)
c764a876
DE
16343{
16344 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
9a619af0 16345
c764a876
DE
16346 *bytes_read = cu_header->offset_size;
16347 return offset;
16348}
16349
16350/* Read an offset from the data stream. */
16351
16352static LONGEST
d521ce57 16353read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
613e1657
KB
16354{
16355 LONGEST retval = 0;
16356
c764a876 16357 switch (offset_size)
613e1657
KB
16358 {
16359 case 4:
fe1b8b76 16360 retval = bfd_get_32 (abfd, buf);
613e1657
KB
16361 break;
16362 case 8:
fe1b8b76 16363 retval = bfd_get_64 (abfd, buf);
613e1657
KB
16364 break;
16365 default:
8e65ff28 16366 internal_error (__FILE__, __LINE__,
c764a876 16367 _("read_offset_1: bad switch [in module %s]"),
659b0389 16368 bfd_get_filename (abfd));
613e1657
KB
16369 }
16370
917c78fc 16371 return retval;
613e1657
KB
16372}
16373
d521ce57
TT
16374static const gdb_byte *
16375read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
c906108c
SS
16376{
16377 /* If the size of a host char is 8 bits, we can return a pointer
16378 to the buffer, otherwise we have to copy the data to a buffer
16379 allocated on the temporary obstack. */
4bdf3d34 16380 gdb_assert (HOST_CHAR_BIT == 8);
c906108c 16381 return buf;
c906108c
SS
16382}
16383
d521ce57
TT
16384static const char *
16385read_direct_string (bfd *abfd, const gdb_byte *buf,
16386 unsigned int *bytes_read_ptr)
c906108c
SS
16387{
16388 /* If the size of a host char is 8 bits, we can return a pointer
16389 to the string, otherwise we have to copy the string to a buffer
16390 allocated on the temporary obstack. */
4bdf3d34 16391 gdb_assert (HOST_CHAR_BIT == 8);
c906108c
SS
16392 if (*buf == '\0')
16393 {
16394 *bytes_read_ptr = 1;
16395 return NULL;
16396 }
d521ce57
TT
16397 *bytes_read_ptr = strlen ((const char *) buf) + 1;
16398 return (const char *) buf;
4bdf3d34
JJ
16399}
16400
d521ce57 16401static const char *
cf2c3c16 16402read_indirect_string_at_offset (bfd *abfd, LONGEST str_offset)
4bdf3d34 16403{
be391dca 16404 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwarf2_per_objfile->str);
dce234bc 16405 if (dwarf2_per_objfile->str.buffer == NULL)
cf2c3c16
TT
16406 error (_("DW_FORM_strp used without .debug_str section [in module %s]"),
16407 bfd_get_filename (abfd));
dce234bc 16408 if (str_offset >= dwarf2_per_objfile->str.size)
cf2c3c16
TT
16409 error (_("DW_FORM_strp pointing outside of "
16410 ".debug_str section [in module %s]"),
16411 bfd_get_filename (abfd));
4bdf3d34 16412 gdb_assert (HOST_CHAR_BIT == 8);
dce234bc 16413 if (dwarf2_per_objfile->str.buffer[str_offset] == '\0')
4bdf3d34 16414 return NULL;
d521ce57 16415 return (const char *) (dwarf2_per_objfile->str.buffer + str_offset);
c906108c
SS
16416}
16417
36586728
TT
16418/* Read a string at offset STR_OFFSET in the .debug_str section from
16419 the .dwz file DWZ. Throw an error if the offset is too large. If
16420 the string consists of a single NUL byte, return NULL; otherwise
16421 return a pointer to the string. */
16422
d521ce57 16423static const char *
36586728
TT
16424read_indirect_string_from_dwz (struct dwz_file *dwz, LONGEST str_offset)
16425{
16426 dwarf2_read_section (dwarf2_per_objfile->objfile, &dwz->str);
16427
16428 if (dwz->str.buffer == NULL)
16429 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
16430 "section [in module %s]"),
16431 bfd_get_filename (dwz->dwz_bfd));
16432 if (str_offset >= dwz->str.size)
16433 error (_("DW_FORM_GNU_strp_alt pointing outside of "
16434 ".debug_str section [in module %s]"),
16435 bfd_get_filename (dwz->dwz_bfd));
16436 gdb_assert (HOST_CHAR_BIT == 8);
16437 if (dwz->str.buffer[str_offset] == '\0')
16438 return NULL;
d521ce57 16439 return (const char *) (dwz->str.buffer + str_offset);
36586728
TT
16440}
16441
d521ce57
TT
16442static const char *
16443read_indirect_string (bfd *abfd, const gdb_byte *buf,
cf2c3c16
TT
16444 const struct comp_unit_head *cu_header,
16445 unsigned int *bytes_read_ptr)
16446{
16447 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
16448
16449 return read_indirect_string_at_offset (abfd, str_offset);
16450}
16451
12df843f 16452static ULONGEST
d521ce57
TT
16453read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
16454 unsigned int *bytes_read_ptr)
c906108c 16455{
12df843f 16456 ULONGEST result;
ce5d95e1 16457 unsigned int num_read;
c906108c
SS
16458 int i, shift;
16459 unsigned char byte;
16460
16461 result = 0;
16462 shift = 0;
16463 num_read = 0;
16464 i = 0;
16465 while (1)
16466 {
fe1b8b76 16467 byte = bfd_get_8 (abfd, buf);
c906108c
SS
16468 buf++;
16469 num_read++;
12df843f 16470 result |= ((ULONGEST) (byte & 127) << shift);
c906108c
SS
16471 if ((byte & 128) == 0)
16472 {
16473 break;
16474 }
16475 shift += 7;
16476 }
16477 *bytes_read_ptr = num_read;
16478 return result;
16479}
16480
12df843f 16481static LONGEST
d521ce57
TT
16482read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
16483 unsigned int *bytes_read_ptr)
c906108c 16484{
12df843f 16485 LONGEST result;
77e0b926 16486 int i, shift, num_read;
c906108c
SS
16487 unsigned char byte;
16488
16489 result = 0;
16490 shift = 0;
c906108c
SS
16491 num_read = 0;
16492 i = 0;
16493 while (1)
16494 {
fe1b8b76 16495 byte = bfd_get_8 (abfd, buf);
c906108c
SS
16496 buf++;
16497 num_read++;
12df843f 16498 result |= ((LONGEST) (byte & 127) << shift);
c906108c
SS
16499 shift += 7;
16500 if ((byte & 128) == 0)
16501 {
16502 break;
16503 }
16504 }
77e0b926 16505 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
12df843f 16506 result |= -(((LONGEST) 1) << shift);
c906108c
SS
16507 *bytes_read_ptr = num_read;
16508 return result;
16509}
16510
3019eac3
DE
16511/* Given index ADDR_INDEX in .debug_addr, fetch the value.
16512 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
16513 ADDR_SIZE is the size of addresses from the CU header. */
16514
16515static CORE_ADDR
16516read_addr_index_1 (unsigned int addr_index, ULONGEST addr_base, int addr_size)
16517{
16518 struct objfile *objfile = dwarf2_per_objfile->objfile;
16519 bfd *abfd = objfile->obfd;
16520 const gdb_byte *info_ptr;
16521
16522 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
16523 if (dwarf2_per_objfile->addr.buffer == NULL)
16524 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
4262abfb 16525 objfile_name (objfile));
3019eac3
DE
16526 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
16527 error (_("DW_FORM_addr_index pointing outside of "
16528 ".debug_addr section [in module %s]"),
4262abfb 16529 objfile_name (objfile));
3019eac3
DE
16530 info_ptr = (dwarf2_per_objfile->addr.buffer
16531 + addr_base + addr_index * addr_size);
16532 if (addr_size == 4)
16533 return bfd_get_32 (abfd, info_ptr);
16534 else
16535 return bfd_get_64 (abfd, info_ptr);
16536}
16537
16538/* Given index ADDR_INDEX in .debug_addr, fetch the value. */
16539
16540static CORE_ADDR
16541read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
16542{
16543 return read_addr_index_1 (addr_index, cu->addr_base, cu->header.addr_size);
16544}
16545
16546/* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
16547
16548static CORE_ADDR
d521ce57 16549read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
3019eac3
DE
16550 unsigned int *bytes_read)
16551{
16552 bfd *abfd = cu->objfile->obfd;
16553 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
16554
16555 return read_addr_index (cu, addr_index);
16556}
16557
16558/* Data structure to pass results from dwarf2_read_addr_index_reader
16559 back to dwarf2_read_addr_index. */
16560
16561struct dwarf2_read_addr_index_data
16562{
16563 ULONGEST addr_base;
16564 int addr_size;
16565};
16566
16567/* die_reader_func for dwarf2_read_addr_index. */
16568
16569static void
16570dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
d521ce57 16571 const gdb_byte *info_ptr,
3019eac3
DE
16572 struct die_info *comp_unit_die,
16573 int has_children,
16574 void *data)
16575{
16576 struct dwarf2_cu *cu = reader->cu;
16577 struct dwarf2_read_addr_index_data *aidata =
16578 (struct dwarf2_read_addr_index_data *) data;
16579
16580 aidata->addr_base = cu->addr_base;
16581 aidata->addr_size = cu->header.addr_size;
16582}
16583
16584/* Given an index in .debug_addr, fetch the value.
16585 NOTE: This can be called during dwarf expression evaluation,
16586 long after the debug information has been read, and thus per_cu->cu
16587 may no longer exist. */
16588
16589CORE_ADDR
16590dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
16591 unsigned int addr_index)
16592{
16593 struct objfile *objfile = per_cu->objfile;
16594 struct dwarf2_cu *cu = per_cu->cu;
16595 ULONGEST addr_base;
16596 int addr_size;
16597
16598 /* This is intended to be called from outside this file. */
16599 dw2_setup (objfile);
16600
16601 /* We need addr_base and addr_size.
16602 If we don't have PER_CU->cu, we have to get it.
16603 Nasty, but the alternative is storing the needed info in PER_CU,
16604 which at this point doesn't seem justified: it's not clear how frequently
16605 it would get used and it would increase the size of every PER_CU.
16606 Entry points like dwarf2_per_cu_addr_size do a similar thing
16607 so we're not in uncharted territory here.
16608 Alas we need to be a bit more complicated as addr_base is contained
16609 in the DIE.
16610
16611 We don't need to read the entire CU(/TU).
16612 We just need the header and top level die.
a1b64ce1 16613
3019eac3 16614 IWBN to use the aging mechanism to let us lazily later discard the CU.
a1b64ce1 16615 For now we skip this optimization. */
3019eac3
DE
16616
16617 if (cu != NULL)
16618 {
16619 addr_base = cu->addr_base;
16620 addr_size = cu->header.addr_size;
16621 }
16622 else
16623 {
16624 struct dwarf2_read_addr_index_data aidata;
16625
a1b64ce1
DE
16626 /* Note: We can't use init_cutu_and_read_dies_simple here,
16627 we need addr_base. */
16628 init_cutu_and_read_dies (per_cu, NULL, 0, 0,
16629 dwarf2_read_addr_index_reader, &aidata);
3019eac3
DE
16630 addr_base = aidata.addr_base;
16631 addr_size = aidata.addr_size;
16632 }
16633
16634 return read_addr_index_1 (addr_index, addr_base, addr_size);
16635}
16636
57d63ce2
DE
16637/* Given a DW_FORM_GNU_str_index, fetch the string.
16638 This is only used by the Fission support. */
3019eac3 16639
d521ce57 16640static const char *
342587c4 16641read_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
3019eac3
DE
16642{
16643 struct objfile *objfile = dwarf2_per_objfile->objfile;
c5164cbc 16644 const char *objf_name = objfile_name (objfile);
3019eac3 16645 bfd *abfd = objfile->obfd;
342587c4 16646 struct dwarf2_cu *cu = reader->cu;
73869dc2
DE
16647 struct dwarf2_section_info *str_section = &reader->dwo_file->sections.str;
16648 struct dwarf2_section_info *str_offsets_section =
16649 &reader->dwo_file->sections.str_offsets;
d521ce57 16650 const gdb_byte *info_ptr;
3019eac3 16651 ULONGEST str_offset;
57d63ce2 16652 static const char form_name[] = "DW_FORM_GNU_str_index";
3019eac3 16653
73869dc2
DE
16654 dwarf2_read_section (objfile, str_section);
16655 dwarf2_read_section (objfile, str_offsets_section);
16656 if (str_section->buffer == NULL)
57d63ce2 16657 error (_("%s used without .debug_str.dwo section"
3019eac3 16658 " in CU at offset 0x%lx [in module %s]"),
c5164cbc 16659 form_name, (long) cu->header.offset.sect_off, objf_name);
73869dc2 16660 if (str_offsets_section->buffer == NULL)
57d63ce2 16661 error (_("%s used without .debug_str_offsets.dwo section"
3019eac3 16662 " in CU at offset 0x%lx [in module %s]"),
c5164cbc 16663 form_name, (long) cu->header.offset.sect_off, objf_name);
73869dc2 16664 if (str_index * cu->header.offset_size >= str_offsets_section->size)
57d63ce2 16665 error (_("%s pointing outside of .debug_str_offsets.dwo"
3019eac3 16666 " section in CU at offset 0x%lx [in module %s]"),
c5164cbc 16667 form_name, (long) cu->header.offset.sect_off, objf_name);
73869dc2 16668 info_ptr = (str_offsets_section->buffer
3019eac3
DE
16669 + str_index * cu->header.offset_size);
16670 if (cu->header.offset_size == 4)
16671 str_offset = bfd_get_32 (abfd, info_ptr);
16672 else
16673 str_offset = bfd_get_64 (abfd, info_ptr);
73869dc2 16674 if (str_offset >= str_section->size)
57d63ce2 16675 error (_("Offset from %s pointing outside of"
3019eac3 16676 " .debug_str.dwo section in CU at offset 0x%lx [in module %s]"),
c5164cbc 16677 form_name, (long) cu->header.offset.sect_off, objf_name);
73869dc2 16678 return (const char *) (str_section->buffer + str_offset);
3019eac3
DE
16679}
16680
3019eac3
DE
16681/* Return the length of an LEB128 number in BUF. */
16682
16683static int
16684leb128_size (const gdb_byte *buf)
16685{
16686 const gdb_byte *begin = buf;
16687 gdb_byte byte;
16688
16689 while (1)
16690 {
16691 byte = *buf++;
16692 if ((byte & 128) == 0)
16693 return buf - begin;
16694 }
16695}
16696
c906108c 16697static void
e142c38c 16698set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
16699{
16700 switch (lang)
16701 {
16702 case DW_LANG_C89:
76bee0cc 16703 case DW_LANG_C99:
c906108c 16704 case DW_LANG_C:
d1be3247 16705 case DW_LANG_UPC:
e142c38c 16706 cu->language = language_c;
c906108c
SS
16707 break;
16708 case DW_LANG_C_plus_plus:
e142c38c 16709 cu->language = language_cplus;
c906108c 16710 break;
6aecb9c2
JB
16711 case DW_LANG_D:
16712 cu->language = language_d;
16713 break;
c906108c
SS
16714 case DW_LANG_Fortran77:
16715 case DW_LANG_Fortran90:
b21b22e0 16716 case DW_LANG_Fortran95:
e142c38c 16717 cu->language = language_fortran;
c906108c 16718 break;
a766d390
DE
16719 case DW_LANG_Go:
16720 cu->language = language_go;
16721 break;
c906108c 16722 case DW_LANG_Mips_Assembler:
e142c38c 16723 cu->language = language_asm;
c906108c 16724 break;
bebd888e 16725 case DW_LANG_Java:
e142c38c 16726 cu->language = language_java;
bebd888e 16727 break;
c906108c 16728 case DW_LANG_Ada83:
8aaf0b47 16729 case DW_LANG_Ada95:
bc5f45f8
JB
16730 cu->language = language_ada;
16731 break;
72019c9c
GM
16732 case DW_LANG_Modula2:
16733 cu->language = language_m2;
16734 break;
fe8e67fd
PM
16735 case DW_LANG_Pascal83:
16736 cu->language = language_pascal;
16737 break;
22566fbd
DJ
16738 case DW_LANG_ObjC:
16739 cu->language = language_objc;
16740 break;
c906108c
SS
16741 case DW_LANG_Cobol74:
16742 case DW_LANG_Cobol85:
c906108c 16743 default:
e142c38c 16744 cu->language = language_minimal;
c906108c
SS
16745 break;
16746 }
e142c38c 16747 cu->language_defn = language_def (cu->language);
c906108c
SS
16748}
16749
16750/* Return the named attribute or NULL if not there. */
16751
16752static struct attribute *
e142c38c 16753dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c 16754{
a48e046c 16755 for (;;)
c906108c 16756 {
a48e046c
TT
16757 unsigned int i;
16758 struct attribute *spec = NULL;
16759
16760 for (i = 0; i < die->num_attrs; ++i)
16761 {
16762 if (die->attrs[i].name == name)
16763 return &die->attrs[i];
16764 if (die->attrs[i].name == DW_AT_specification
16765 || die->attrs[i].name == DW_AT_abstract_origin)
16766 spec = &die->attrs[i];
16767 }
16768
16769 if (!spec)
16770 break;
c906108c 16771
f2f0e013 16772 die = follow_die_ref (die, spec, &cu);
f2f0e013 16773 }
c5aa993b 16774
c906108c
SS
16775 return NULL;
16776}
16777
348e048f
DE
16778/* Return the named attribute or NULL if not there,
16779 but do not follow DW_AT_specification, etc.
16780 This is for use in contexts where we're reading .debug_types dies.
16781 Following DW_AT_specification, DW_AT_abstract_origin will take us
16782 back up the chain, and we want to go down. */
16783
16784static struct attribute *
45e58e77 16785dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
348e048f
DE
16786{
16787 unsigned int i;
16788
16789 for (i = 0; i < die->num_attrs; ++i)
16790 if (die->attrs[i].name == name)
16791 return &die->attrs[i];
16792
16793 return NULL;
16794}
16795
05cf31d1
JB
16796/* Return non-zero iff the attribute NAME is defined for the given DIE,
16797 and holds a non-zero value. This function should only be used for
2dc7f7b3 16798 DW_FORM_flag or DW_FORM_flag_present attributes. */
05cf31d1
JB
16799
16800static int
16801dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
16802{
16803 struct attribute *attr = dwarf2_attr (die, name, cu);
16804
16805 return (attr && DW_UNSND (attr));
16806}
16807
3ca72b44 16808static int
e142c38c 16809die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 16810{
05cf31d1
JB
16811 /* A DIE is a declaration if it has a DW_AT_declaration attribute
16812 which value is non-zero. However, we have to be careful with
16813 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
16814 (via dwarf2_flag_true_p) follows this attribute. So we may
16815 end up accidently finding a declaration attribute that belongs
16816 to a different DIE referenced by the specification attribute,
16817 even though the given DIE does not have a declaration attribute. */
16818 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
16819 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
16820}
16821
63d06c5c 16822/* Return the die giving the specification for DIE, if there is
f2f0e013 16823 one. *SPEC_CU is the CU containing DIE on input, and the CU
edb3359d
DJ
16824 containing the return value on output. If there is no
16825 specification, but there is an abstract origin, that is
16826 returned. */
63d06c5c
DC
16827
16828static struct die_info *
f2f0e013 16829die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
63d06c5c 16830{
f2f0e013
DJ
16831 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
16832 *spec_cu);
63d06c5c 16833
edb3359d
DJ
16834 if (spec_attr == NULL)
16835 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
16836
63d06c5c
DC
16837 if (spec_attr == NULL)
16838 return NULL;
16839 else
f2f0e013 16840 return follow_die_ref (die, spec_attr, spec_cu);
63d06c5c 16841}
c906108c 16842
debd256d 16843/* Free the line_header structure *LH, and any arrays and strings it
ae2de4f8
DE
16844 refers to.
16845 NOTE: This is also used as a "cleanup" function. */
16846
debd256d
JB
16847static void
16848free_line_header (struct line_header *lh)
16849{
16850 if (lh->standard_opcode_lengths)
a8bc7b56 16851 xfree (lh->standard_opcode_lengths);
debd256d
JB
16852
16853 /* Remember that all the lh->file_names[i].name pointers are
16854 pointers into debug_line_buffer, and don't need to be freed. */
16855 if (lh->file_names)
a8bc7b56 16856 xfree (lh->file_names);
debd256d
JB
16857
16858 /* Similarly for the include directory names. */
16859 if (lh->include_dirs)
a8bc7b56 16860 xfree (lh->include_dirs);
debd256d 16861
a8bc7b56 16862 xfree (lh);
debd256d
JB
16863}
16864
debd256d 16865/* Add an entry to LH's include directory table. */
ae2de4f8 16866
debd256d 16867static void
d521ce57 16868add_include_dir (struct line_header *lh, const char *include_dir)
c906108c 16869{
debd256d
JB
16870 /* Grow the array if necessary. */
16871 if (lh->include_dirs_size == 0)
c5aa993b 16872 {
debd256d
JB
16873 lh->include_dirs_size = 1; /* for testing */
16874 lh->include_dirs = xmalloc (lh->include_dirs_size
16875 * sizeof (*lh->include_dirs));
16876 }
16877 else if (lh->num_include_dirs >= lh->include_dirs_size)
16878 {
16879 lh->include_dirs_size *= 2;
16880 lh->include_dirs = xrealloc (lh->include_dirs,
16881 (lh->include_dirs_size
16882 * sizeof (*lh->include_dirs)));
c5aa993b 16883 }
c906108c 16884
debd256d
JB
16885 lh->include_dirs[lh->num_include_dirs++] = include_dir;
16886}
6e70227d 16887
debd256d 16888/* Add an entry to LH's file name table. */
ae2de4f8 16889
debd256d
JB
16890static void
16891add_file_name (struct line_header *lh,
d521ce57 16892 const char *name,
debd256d
JB
16893 unsigned int dir_index,
16894 unsigned int mod_time,
16895 unsigned int length)
16896{
16897 struct file_entry *fe;
16898
16899 /* Grow the array if necessary. */
16900 if (lh->file_names_size == 0)
16901 {
16902 lh->file_names_size = 1; /* for testing */
16903 lh->file_names = xmalloc (lh->file_names_size
16904 * sizeof (*lh->file_names));
16905 }
16906 else if (lh->num_file_names >= lh->file_names_size)
16907 {
16908 lh->file_names_size *= 2;
16909 lh->file_names = xrealloc (lh->file_names,
16910 (lh->file_names_size
16911 * sizeof (*lh->file_names)));
16912 }
16913
16914 fe = &lh->file_names[lh->num_file_names++];
16915 fe->name = name;
16916 fe->dir_index = dir_index;
16917 fe->mod_time = mod_time;
16918 fe->length = length;
aaa75496 16919 fe->included_p = 0;
cb1df416 16920 fe->symtab = NULL;
debd256d 16921}
6e70227d 16922
36586728
TT
16923/* A convenience function to find the proper .debug_line section for a
16924 CU. */
16925
16926static struct dwarf2_section_info *
16927get_debug_line_section (struct dwarf2_cu *cu)
16928{
16929 struct dwarf2_section_info *section;
16930
16931 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
16932 DWO file. */
16933 if (cu->dwo_unit && cu->per_cu->is_debug_types)
16934 section = &cu->dwo_unit->dwo_file->sections.line;
16935 else if (cu->per_cu->is_dwz)
16936 {
16937 struct dwz_file *dwz = dwarf2_get_dwz_file ();
16938
16939 section = &dwz->line;
16940 }
16941 else
16942 section = &dwarf2_per_objfile->line;
16943
16944 return section;
16945}
16946
debd256d 16947/* Read the statement program header starting at OFFSET in
3019eac3 16948 .debug_line, or .debug_line.dwo. Return a pointer
6502dd73 16949 to a struct line_header, allocated using xmalloc.
debd256d
JB
16950
16951 NOTE: the strings in the include directory and file name tables of
3019eac3
DE
16952 the returned object point into the dwarf line section buffer,
16953 and must not be freed. */
ae2de4f8 16954
debd256d 16955static struct line_header *
3019eac3 16956dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
debd256d
JB
16957{
16958 struct cleanup *back_to;
16959 struct line_header *lh;
d521ce57 16960 const gdb_byte *line_ptr;
c764a876 16961 unsigned int bytes_read, offset_size;
debd256d 16962 int i;
d521ce57 16963 const char *cur_dir, *cur_file;
3019eac3
DE
16964 struct dwarf2_section_info *section;
16965 bfd *abfd;
16966
36586728 16967 section = get_debug_line_section (cu);
3019eac3
DE
16968 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
16969 if (section->buffer == NULL)
debd256d 16970 {
3019eac3
DE
16971 if (cu->dwo_unit && cu->per_cu->is_debug_types)
16972 complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
16973 else
16974 complaint (&symfile_complaints, _("missing .debug_line section"));
debd256d
JB
16975 return 0;
16976 }
16977
fceca515
DE
16978 /* We can't do this until we know the section is non-empty.
16979 Only then do we know we have such a section. */
a32a8923 16980 abfd = get_section_bfd_owner (section);
fceca515 16981
a738430d
MK
16982 /* Make sure that at least there's room for the total_length field.
16983 That could be 12 bytes long, but we're just going to fudge that. */
3019eac3 16984 if (offset + 4 >= section->size)
debd256d 16985 {
4d3c2250 16986 dwarf2_statement_list_fits_in_line_number_section_complaint ();
debd256d
JB
16987 return 0;
16988 }
16989
16990 lh = xmalloc (sizeof (*lh));
16991 memset (lh, 0, sizeof (*lh));
16992 back_to = make_cleanup ((make_cleanup_ftype *) free_line_header,
16993 (void *) lh);
16994
3019eac3 16995 line_ptr = section->buffer + offset;
debd256d 16996
a738430d 16997 /* Read in the header. */
6e70227d 16998 lh->total_length =
c764a876
DE
16999 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
17000 &bytes_read, &offset_size);
debd256d 17001 line_ptr += bytes_read;
3019eac3 17002 if (line_ptr + lh->total_length > (section->buffer + section->size))
debd256d 17003 {
4d3c2250 17004 dwarf2_statement_list_fits_in_line_number_section_complaint ();
2f324bf6 17005 do_cleanups (back_to);
debd256d
JB
17006 return 0;
17007 }
17008 lh->statement_program_end = line_ptr + lh->total_length;
17009 lh->version = read_2_bytes (abfd, line_ptr);
17010 line_ptr += 2;
c764a876
DE
17011 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
17012 line_ptr += offset_size;
debd256d
JB
17013 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
17014 line_ptr += 1;
2dc7f7b3
TT
17015 if (lh->version >= 4)
17016 {
17017 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
17018 line_ptr += 1;
17019 }
17020 else
17021 lh->maximum_ops_per_instruction = 1;
17022
17023 if (lh->maximum_ops_per_instruction == 0)
17024 {
17025 lh->maximum_ops_per_instruction = 1;
17026 complaint (&symfile_complaints,
3e43a32a
MS
17027 _("invalid maximum_ops_per_instruction "
17028 "in `.debug_line' section"));
2dc7f7b3
TT
17029 }
17030
debd256d
JB
17031 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
17032 line_ptr += 1;
17033 lh->line_base = read_1_signed_byte (abfd, line_ptr);
17034 line_ptr += 1;
17035 lh->line_range = read_1_byte (abfd, line_ptr);
17036 line_ptr += 1;
17037 lh->opcode_base = read_1_byte (abfd, line_ptr);
17038 line_ptr += 1;
17039 lh->standard_opcode_lengths
fe1b8b76 17040 = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0]));
debd256d
JB
17041
17042 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
17043 for (i = 1; i < lh->opcode_base; ++i)
17044 {
17045 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
17046 line_ptr += 1;
17047 }
17048
a738430d 17049 /* Read directory table. */
9b1c24c8 17050 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
debd256d
JB
17051 {
17052 line_ptr += bytes_read;
17053 add_include_dir (lh, cur_dir);
17054 }
17055 line_ptr += bytes_read;
17056
a738430d 17057 /* Read file name table. */
9b1c24c8 17058 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
debd256d
JB
17059 {
17060 unsigned int dir_index, mod_time, length;
17061
17062 line_ptr += bytes_read;
17063 dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17064 line_ptr += bytes_read;
17065 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17066 line_ptr += bytes_read;
17067 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17068 line_ptr += bytes_read;
17069
17070 add_file_name (lh, cur_file, dir_index, mod_time, length);
17071 }
17072 line_ptr += bytes_read;
6e70227d 17073 lh->statement_program_start = line_ptr;
debd256d 17074
3019eac3 17075 if (line_ptr > (section->buffer + section->size))
4d3c2250 17076 complaint (&symfile_complaints,
3e43a32a
MS
17077 _("line number info header doesn't "
17078 "fit in `.debug_line' section"));
debd256d
JB
17079
17080 discard_cleanups (back_to);
17081 return lh;
17082}
c906108c 17083
c6da4cef
DE
17084/* Subroutine of dwarf_decode_lines to simplify it.
17085 Return the file name of the psymtab for included file FILE_INDEX
17086 in line header LH of PST.
17087 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
17088 If space for the result is malloc'd, it will be freed by a cleanup.
1ed59174
JK
17089 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename.
17090
17091 The function creates dangling cleanup registration. */
c6da4cef 17092
d521ce57 17093static const char *
c6da4cef
DE
17094psymtab_include_file_name (const struct line_header *lh, int file_index,
17095 const struct partial_symtab *pst,
17096 const char *comp_dir)
17097{
17098 const struct file_entry fe = lh->file_names [file_index];
d521ce57
TT
17099 const char *include_name = fe.name;
17100 const char *include_name_to_compare = include_name;
17101 const char *dir_name = NULL;
72b9f47f
TT
17102 const char *pst_filename;
17103 char *copied_name = NULL;
c6da4cef
DE
17104 int file_is_pst;
17105
17106 if (fe.dir_index)
17107 dir_name = lh->include_dirs[fe.dir_index - 1];
17108
17109 if (!IS_ABSOLUTE_PATH (include_name)
17110 && (dir_name != NULL || comp_dir != NULL))
17111 {
17112 /* Avoid creating a duplicate psymtab for PST.
17113 We do this by comparing INCLUDE_NAME and PST_FILENAME.
17114 Before we do the comparison, however, we need to account
17115 for DIR_NAME and COMP_DIR.
17116 First prepend dir_name (if non-NULL). If we still don't
17117 have an absolute path prepend comp_dir (if non-NULL).
17118 However, the directory we record in the include-file's
17119 psymtab does not contain COMP_DIR (to match the
17120 corresponding symtab(s)).
17121
17122 Example:
17123
17124 bash$ cd /tmp
17125 bash$ gcc -g ./hello.c
17126 include_name = "hello.c"
17127 dir_name = "."
17128 DW_AT_comp_dir = comp_dir = "/tmp"
5f52445b
YQ
17129 DW_AT_name = "./hello.c"
17130
17131 */
c6da4cef
DE
17132
17133 if (dir_name != NULL)
17134 {
d521ce57
TT
17135 char *tem = concat (dir_name, SLASH_STRING,
17136 include_name, (char *)NULL);
17137
17138 make_cleanup (xfree, tem);
17139 include_name = tem;
c6da4cef 17140 include_name_to_compare = include_name;
c6da4cef
DE
17141 }
17142 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
17143 {
d521ce57
TT
17144 char *tem = concat (comp_dir, SLASH_STRING,
17145 include_name, (char *)NULL);
17146
17147 make_cleanup (xfree, tem);
17148 include_name_to_compare = tem;
c6da4cef
DE
17149 }
17150 }
17151
17152 pst_filename = pst->filename;
17153 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
17154 {
72b9f47f
TT
17155 copied_name = concat (pst->dirname, SLASH_STRING,
17156 pst_filename, (char *)NULL);
17157 pst_filename = copied_name;
c6da4cef
DE
17158 }
17159
1e3fad37 17160 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
c6da4cef 17161
72b9f47f
TT
17162 if (copied_name != NULL)
17163 xfree (copied_name);
c6da4cef
DE
17164
17165 if (file_is_pst)
17166 return NULL;
17167 return include_name;
17168}
17169
c91513d8
PP
17170/* Ignore this record_line request. */
17171
17172static void
17173noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
17174{
17175 return;
17176}
17177
a05a36a5
DE
17178/* Return non-zero if we should add LINE to the line number table.
17179 LINE is the line to add, LAST_LINE is the last line that was added,
17180 LAST_SUBFILE is the subfile for LAST_LINE.
17181 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
17182 had a non-zero discriminator.
17183
17184 We have to be careful in the presence of discriminators.
17185 E.g., for this line:
17186
17187 for (i = 0; i < 100000; i++);
17188
17189 clang can emit four line number entries for that one line,
17190 each with a different discriminator.
17191 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
17192
17193 However, we want gdb to coalesce all four entries into one.
17194 Otherwise the user could stepi into the middle of the line and
17195 gdb would get confused about whether the pc really was in the
17196 middle of the line.
17197
17198 Things are further complicated by the fact that two consecutive
17199 line number entries for the same line is a heuristic used by gcc
17200 to denote the end of the prologue. So we can't just discard duplicate
17201 entries, we have to be selective about it. The heuristic we use is
17202 that we only collapse consecutive entries for the same line if at least
17203 one of those entries has a non-zero discriminator. PR 17276.
17204
17205 Note: Addresses in the line number state machine can never go backwards
17206 within one sequence, thus this coalescing is ok. */
17207
17208static int
17209dwarf_record_line_p (unsigned int line, unsigned int last_line,
17210 int line_has_non_zero_discriminator,
17211 struct subfile *last_subfile)
17212{
17213 if (current_subfile != last_subfile)
17214 return 1;
17215 if (line != last_line)
17216 return 1;
17217 /* Same line for the same file that we've seen already.
17218 As a last check, for pr 17276, only record the line if the line
17219 has never had a non-zero discriminator. */
17220 if (!line_has_non_zero_discriminator)
17221 return 1;
17222 return 0;
17223}
17224
252a6764
DE
17225/* Use P_RECORD_LINE to record line number LINE beginning at address ADDRESS
17226 in the line table of subfile SUBFILE. */
17227
17228static void
17229dwarf_record_line (struct gdbarch *gdbarch, struct subfile *subfile,
17230 unsigned int line, CORE_ADDR address,
17231 record_line_ftype p_record_line)
17232{
17233 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
17234
d5962de5 17235 (*p_record_line) (subfile, line, addr);
252a6764
DE
17236}
17237
17238/* Subroutine of dwarf_decode_lines_1 to simplify it.
17239 Mark the end of a set of line number records.
17240 The arguments are the same as for dwarf_record_line.
17241 If SUBFILE is NULL the request is ignored. */
17242
17243static void
17244dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
17245 CORE_ADDR address, record_line_ftype p_record_line)
17246{
17247 if (subfile != NULL)
17248 dwarf_record_line (gdbarch, subfile, 0, address, p_record_line);
17249}
17250
f3f5162e
DE
17251/* Subroutine of dwarf_decode_lines to simplify it.
17252 Process the line number information in LH. */
debd256d 17253
c906108c 17254static void
f3f5162e 17255dwarf_decode_lines_1 (struct line_header *lh, const char *comp_dir,
c3b7b696
YQ
17256 struct dwarf2_cu *cu, const int decode_for_pst_p,
17257 CORE_ADDR lowpc)
c906108c 17258{
d521ce57
TT
17259 const gdb_byte *line_ptr, *extended_end;
17260 const gdb_byte *line_end;
a8c50c1f 17261 unsigned int bytes_read, extended_len;
699ca60a 17262 unsigned char op_code, extended_op;
e142c38c
DJ
17263 CORE_ADDR baseaddr;
17264 struct objfile *objfile = cu->objfile;
f3f5162e 17265 bfd *abfd = objfile->obfd;
fbf65064 17266 struct gdbarch *gdbarch = get_objfile_arch (objfile);
f3f5162e 17267 struct subfile *last_subfile = NULL;
c91513d8
PP
17268 void (*p_record_line) (struct subfile *subfile, int line, CORE_ADDR pc)
17269 = record_line;
e142c38c
DJ
17270
17271 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 17272
debd256d
JB
17273 line_ptr = lh->statement_program_start;
17274 line_end = lh->statement_program_end;
c906108c
SS
17275
17276 /* Read the statement sequences until there's nothing left. */
17277 while (line_ptr < line_end)
17278 {
17279 /* state machine registers */
17280 CORE_ADDR address = 0;
17281 unsigned int file = 1;
17282 unsigned int line = 1;
debd256d 17283 int is_stmt = lh->default_is_stmt;
c906108c 17284 int end_sequence = 0;
2dc7f7b3 17285 unsigned char op_index = 0;
a05a36a5
DE
17286 unsigned int discriminator = 0;
17287 /* The last line number that was recorded, used to coalesce
17288 consecutive entries for the same line. This can happen, for
17289 example, when discriminators are present. PR 17276. */
17290 unsigned int last_line = 0;
17291 int line_has_non_zero_discriminator = 0;
c906108c 17292
aaa75496 17293 if (!decode_for_pst_p && lh->num_file_names >= file)
c906108c 17294 {
aaa75496 17295 /* Start a subfile for the current file of the state machine. */
debd256d
JB
17296 /* lh->include_dirs and lh->file_names are 0-based, but the
17297 directory and file name numbers in the statement program
17298 are 1-based. */
17299 struct file_entry *fe = &lh->file_names[file - 1];
d521ce57 17300 const char *dir = NULL;
a738430d 17301
debd256d
JB
17302 if (fe->dir_index)
17303 dir = lh->include_dirs[fe->dir_index - 1];
4f1520fb
FR
17304
17305 dwarf2_start_subfile (fe->name, dir, comp_dir);
c906108c
SS
17306 }
17307
a738430d 17308 /* Decode the table. */
c5aa993b 17309 while (!end_sequence)
c906108c
SS
17310 {
17311 op_code = read_1_byte (abfd, line_ptr);
17312 line_ptr += 1;
59205f5a
JB
17313 if (line_ptr > line_end)
17314 {
17315 dwarf2_debug_line_missing_end_sequence_complaint ();
17316 break;
17317 }
9aa1fe7e 17318
debd256d 17319 if (op_code >= lh->opcode_base)
6e70227d 17320 {
8e07a239 17321 /* Special opcode. */
699ca60a 17322 unsigned char adj_opcode;
a05a36a5 17323 int line_delta;
8e07a239 17324
debd256d 17325 adj_opcode = op_code - lh->opcode_base;
2dc7f7b3
TT
17326 address += (((op_index + (adj_opcode / lh->line_range))
17327 / lh->maximum_ops_per_instruction)
17328 * lh->minimum_instruction_length);
17329 op_index = ((op_index + (adj_opcode / lh->line_range))
17330 % lh->maximum_ops_per_instruction);
a05a36a5
DE
17331 line_delta = lh->line_base + (adj_opcode % lh->line_range);
17332 line += line_delta;
17333 if (line_delta != 0)
17334 line_has_non_zero_discriminator = discriminator != 0;
59205f5a 17335 if (lh->num_file_names < file || file == 0)
25e43795 17336 dwarf2_debug_line_missing_file_complaint ();
2dc7f7b3
TT
17337 /* For now we ignore lines not starting on an
17338 instruction boundary. */
17339 else if (op_index == 0)
25e43795
DJ
17340 {
17341 lh->file_names[file - 1].included_p = 1;
ca5f395d 17342 if (!decode_for_pst_p && is_stmt)
fbf65064
UW
17343 {
17344 if (last_subfile != current_subfile)
17345 {
252a6764
DE
17346 dwarf_finish_line (gdbarch, last_subfile,
17347 address, p_record_line);
fbf65064 17348 }
a05a36a5
DE
17349 if (dwarf_record_line_p (line, last_line,
17350 line_has_non_zero_discriminator,
17351 last_subfile))
17352 {
17353 dwarf_record_line (gdbarch, current_subfile,
17354 line, address, p_record_line);
17355 }
17356 last_subfile = current_subfile;
17357 last_line = line;
366da635 17358 }
25e43795 17359 }
a05a36a5 17360 discriminator = 0;
9aa1fe7e
GK
17361 }
17362 else switch (op_code)
c906108c
SS
17363 {
17364 case DW_LNS_extended_op:
3e43a32a
MS
17365 extended_len = read_unsigned_leb128 (abfd, line_ptr,
17366 &bytes_read);
473b7be6 17367 line_ptr += bytes_read;
a8c50c1f 17368 extended_end = line_ptr + extended_len;
c906108c
SS
17369 extended_op = read_1_byte (abfd, line_ptr);
17370 line_ptr += 1;
17371 switch (extended_op)
17372 {
17373 case DW_LNE_end_sequence:
c91513d8 17374 p_record_line = record_line;
c906108c 17375 end_sequence = 1;
c906108c
SS
17376 break;
17377 case DW_LNE_set_address:
e7c27a73 17378 address = read_address (abfd, line_ptr, cu, &bytes_read);
c91513d8 17379
c3b7b696
YQ
17380 /* If address < lowpc then it's not a usable value, it's
17381 outside the pc range of the CU. However, we restrict
17382 the test to only address values of zero to preserve
17383 GDB's previous behaviour which is to handle the specific
17384 case of a function being GC'd by the linker. */
17385 if (address == 0 && address < lowpc)
c91513d8
PP
17386 {
17387 /* This line table is for a function which has been
17388 GCd by the linker. Ignore it. PR gdb/12528 */
17389
17390 long line_offset
36586728 17391 = line_ptr - get_debug_line_section (cu)->buffer;
c91513d8
PP
17392
17393 complaint (&symfile_complaints,
17394 _(".debug_line address at offset 0x%lx is 0 "
17395 "[in module %s]"),
4262abfb 17396 line_offset, objfile_name (objfile));
c91513d8 17397 p_record_line = noop_record_line;
37780ee5
DE
17398 /* Note: p_record_line is left as noop_record_line
17399 until we see DW_LNE_end_sequence. */
c91513d8
PP
17400 }
17401
2dc7f7b3 17402 op_index = 0;
107d2387
AC
17403 line_ptr += bytes_read;
17404 address += baseaddr;
c906108c
SS
17405 break;
17406 case DW_LNE_define_file:
debd256d 17407 {
d521ce57 17408 const char *cur_file;
debd256d 17409 unsigned int dir_index, mod_time, length;
6e70227d 17410
3e43a32a
MS
17411 cur_file = read_direct_string (abfd, line_ptr,
17412 &bytes_read);
debd256d
JB
17413 line_ptr += bytes_read;
17414 dir_index =
17415 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17416 line_ptr += bytes_read;
17417 mod_time =
17418 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17419 line_ptr += bytes_read;
17420 length =
17421 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17422 line_ptr += bytes_read;
17423 add_file_name (lh, cur_file, dir_index, mod_time, length);
17424 }
c906108c 17425 break;
d0c6ba3d
CC
17426 case DW_LNE_set_discriminator:
17427 /* The discriminator is not interesting to the debugger;
a05a36a5
DE
17428 just ignore it. We still need to check its value though:
17429 if there are consecutive entries for the same
17430 (non-prologue) line we want to coalesce them.
17431 PR 17276. */
17432 discriminator = read_unsigned_leb128 (abfd, line_ptr,
17433 &bytes_read);
17434 line_has_non_zero_discriminator |= discriminator != 0;
17435 line_ptr += bytes_read;
d0c6ba3d 17436 break;
c906108c 17437 default:
4d3c2250 17438 complaint (&symfile_complaints,
e2e0b3e5 17439 _("mangled .debug_line section"));
debd256d 17440 return;
c906108c 17441 }
a8c50c1f
DJ
17442 /* Make sure that we parsed the extended op correctly. If e.g.
17443 we expected a different address size than the producer used,
17444 we may have read the wrong number of bytes. */
17445 if (line_ptr != extended_end)
17446 {
17447 complaint (&symfile_complaints,
17448 _("mangled .debug_line section"));
17449 return;
17450 }
c906108c
SS
17451 break;
17452 case DW_LNS_copy:
59205f5a 17453 if (lh->num_file_names < file || file == 0)
25e43795
DJ
17454 dwarf2_debug_line_missing_file_complaint ();
17455 else
366da635 17456 {
25e43795 17457 lh->file_names[file - 1].included_p = 1;
ca5f395d 17458 if (!decode_for_pst_p && is_stmt)
fbf65064
UW
17459 {
17460 if (last_subfile != current_subfile)
17461 {
252a6764
DE
17462 dwarf_finish_line (gdbarch, last_subfile,
17463 address, p_record_line);
fbf65064 17464 }
a05a36a5
DE
17465 if (dwarf_record_line_p (line, last_line,
17466 line_has_non_zero_discriminator,
17467 last_subfile))
17468 {
17469 dwarf_record_line (gdbarch, current_subfile,
17470 line, address, p_record_line);
17471 }
17472 last_subfile = current_subfile;
17473 last_line = line;
fbf65064 17474 }
366da635 17475 }
a05a36a5 17476 discriminator = 0;
c906108c
SS
17477 break;
17478 case DW_LNS_advance_pc:
2dc7f7b3
TT
17479 {
17480 CORE_ADDR adjust
17481 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17482
17483 address += (((op_index + adjust)
17484 / lh->maximum_ops_per_instruction)
17485 * lh->minimum_instruction_length);
17486 op_index = ((op_index + adjust)
17487 % lh->maximum_ops_per_instruction);
17488 line_ptr += bytes_read;
17489 }
c906108c
SS
17490 break;
17491 case DW_LNS_advance_line:
a05a36a5
DE
17492 {
17493 int line_delta
17494 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
17495
17496 line += line_delta;
17497 if (line_delta != 0)
17498 line_has_non_zero_discriminator = discriminator != 0;
17499 line_ptr += bytes_read;
17500 }
c906108c
SS
17501 break;
17502 case DW_LNS_set_file:
debd256d 17503 {
a738430d
MK
17504 /* The arrays lh->include_dirs and lh->file_names are
17505 0-based, but the directory and file name numbers in
17506 the statement program are 1-based. */
debd256d 17507 struct file_entry *fe;
d521ce57 17508 const char *dir = NULL;
a738430d 17509
debd256d
JB
17510 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17511 line_ptr += bytes_read;
59205f5a 17512 if (lh->num_file_names < file || file == 0)
25e43795
DJ
17513 dwarf2_debug_line_missing_file_complaint ();
17514 else
17515 {
17516 fe = &lh->file_names[file - 1];
17517 if (fe->dir_index)
17518 dir = lh->include_dirs[fe->dir_index - 1];
17519 if (!decode_for_pst_p)
17520 {
17521 last_subfile = current_subfile;
a05a36a5 17522 line_has_non_zero_discriminator = discriminator != 0;
25e43795
DJ
17523 dwarf2_start_subfile (fe->name, dir, comp_dir);
17524 }
17525 }
debd256d 17526 }
c906108c
SS
17527 break;
17528 case DW_LNS_set_column:
0ad93d4f 17529 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
c906108c
SS
17530 line_ptr += bytes_read;
17531 break;
17532 case DW_LNS_negate_stmt:
17533 is_stmt = (!is_stmt);
17534 break;
17535 case DW_LNS_set_basic_block:
c906108c 17536 break;
c2c6d25f
JM
17537 /* Add to the address register of the state machine the
17538 address increment value corresponding to special opcode
a738430d
MK
17539 255. I.e., this value is scaled by the minimum
17540 instruction length since special opcode 255 would have
b021a221 17541 scaled the increment. */
c906108c 17542 case DW_LNS_const_add_pc:
2dc7f7b3
TT
17543 {
17544 CORE_ADDR adjust = (255 - lh->opcode_base) / lh->line_range;
17545
17546 address += (((op_index + adjust)
17547 / lh->maximum_ops_per_instruction)
17548 * lh->minimum_instruction_length);
17549 op_index = ((op_index + adjust)
17550 % lh->maximum_ops_per_instruction);
17551 }
c906108c
SS
17552 break;
17553 case DW_LNS_fixed_advance_pc:
17554 address += read_2_bytes (abfd, line_ptr);
2dc7f7b3 17555 op_index = 0;
c906108c
SS
17556 line_ptr += 2;
17557 break;
9aa1fe7e 17558 default:
a738430d
MK
17559 {
17560 /* Unknown standard opcode, ignore it. */
9aa1fe7e 17561 int i;
a738430d 17562
debd256d 17563 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
17564 {
17565 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
17566 line_ptr += bytes_read;
17567 }
17568 }
c906108c
SS
17569 }
17570 }
59205f5a
JB
17571 if (lh->num_file_names < file || file == 0)
17572 dwarf2_debug_line_missing_file_complaint ();
17573 else
17574 {
17575 lh->file_names[file - 1].included_p = 1;
17576 if (!decode_for_pst_p)
fbf65064 17577 {
252a6764
DE
17578 dwarf_finish_line (gdbarch, current_subfile, address,
17579 p_record_line);
fbf65064 17580 }
59205f5a 17581 }
c906108c 17582 }
f3f5162e
DE
17583}
17584
17585/* Decode the Line Number Program (LNP) for the given line_header
17586 structure and CU. The actual information extracted and the type
17587 of structures created from the LNP depends on the value of PST.
17588
17589 1. If PST is NULL, then this procedure uses the data from the program
17590 to create all necessary symbol tables, and their linetables.
17591
17592 2. If PST is not NULL, this procedure reads the program to determine
17593 the list of files included by the unit represented by PST, and
17594 builds all the associated partial symbol tables.
17595
17596 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
17597 It is used for relative paths in the line table.
17598 NOTE: When processing partial symtabs (pst != NULL),
17599 comp_dir == pst->dirname.
17600
17601 NOTE: It is important that psymtabs have the same file name (via strcmp)
17602 as the corresponding symtab. Since COMP_DIR is not used in the name of the
17603 symtab we don't use it in the name of the psymtabs we create.
17604 E.g. expand_line_sal requires this when finding psymtabs to expand.
c3b7b696
YQ
17605 A good testcase for this is mb-inline.exp.
17606
17607 LOWPC is the lowest address in CU (or 0 if not known). */
f3f5162e
DE
17608
17609static void
17610dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
c3b7b696
YQ
17611 struct dwarf2_cu *cu, struct partial_symtab *pst,
17612 CORE_ADDR lowpc)
f3f5162e
DE
17613{
17614 struct objfile *objfile = cu->objfile;
17615 const int decode_for_pst_p = (pst != NULL);
17616 struct subfile *first_subfile = current_subfile;
17617
c3b7b696 17618 dwarf_decode_lines_1 (lh, comp_dir, cu, decode_for_pst_p, lowpc);
aaa75496
JB
17619
17620 if (decode_for_pst_p)
17621 {
17622 int file_index;
17623
17624 /* Now that we're done scanning the Line Header Program, we can
17625 create the psymtab of each included file. */
17626 for (file_index = 0; file_index < lh->num_file_names; file_index++)
17627 if (lh->file_names[file_index].included_p == 1)
17628 {
d521ce57 17629 const char *include_name =
c6da4cef
DE
17630 psymtab_include_file_name (lh, file_index, pst, comp_dir);
17631 if (include_name != NULL)
aaa75496
JB
17632 dwarf2_create_include_psymtab (include_name, pst, objfile);
17633 }
17634 }
cb1df416
DJ
17635 else
17636 {
17637 /* Make sure a symtab is created for every file, even files
17638 which contain only variables (i.e. no code with associated
17639 line numbers). */
cb1df416 17640 int i;
cb1df416
DJ
17641
17642 for (i = 0; i < lh->num_file_names; i++)
17643 {
d521ce57 17644 const char *dir = NULL;
f3f5162e 17645 struct file_entry *fe;
9a619af0 17646
cb1df416
DJ
17647 fe = &lh->file_names[i];
17648 if (fe->dir_index)
17649 dir = lh->include_dirs[fe->dir_index - 1];
17650 dwarf2_start_subfile (fe->name, dir, comp_dir);
17651
17652 /* Skip the main file; we don't need it, and it must be
17653 allocated last, so that it will show up before the
17654 non-primary symtabs in the objfile's symtab list. */
17655 if (current_subfile == first_subfile)
17656 continue;
17657
17658 if (current_subfile->symtab == NULL)
17659 current_subfile->symtab = allocate_symtab (current_subfile->name,
bb5ed363 17660 objfile);
cb1df416
DJ
17661 fe->symtab = current_subfile->symtab;
17662 }
17663 }
c906108c
SS
17664}
17665
17666/* Start a subfile for DWARF. FILENAME is the name of the file and
17667 DIRNAME the name of the source directory which contains FILENAME
4f1520fb
FR
17668 or NULL if not known. COMP_DIR is the compilation directory for the
17669 linetable's compilation unit or NULL if not known.
c906108c
SS
17670 This routine tries to keep line numbers from identical absolute and
17671 relative file names in a common subfile.
17672
17673 Using the `list' example from the GDB testsuite, which resides in
17674 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
17675 of /srcdir/list0.c yields the following debugging information for list0.c:
17676
c5aa993b
JM
17677 DW_AT_name: /srcdir/list0.c
17678 DW_AT_comp_dir: /compdir
357e46e7 17679 files.files[0].name: list0.h
c5aa993b 17680 files.files[0].dir: /srcdir
357e46e7 17681 files.files[1].name: list0.c
c5aa993b 17682 files.files[1].dir: /srcdir
c906108c
SS
17683
17684 The line number information for list0.c has to end up in a single
4f1520fb
FR
17685 subfile, so that `break /srcdir/list0.c:1' works as expected.
17686 start_subfile will ensure that this happens provided that we pass the
17687 concatenation of files.files[1].dir and files.files[1].name as the
17688 subfile's name. */
c906108c
SS
17689
17690static void
d521ce57 17691dwarf2_start_subfile (const char *filename, const char *dirname,
3e43a32a 17692 const char *comp_dir)
c906108c 17693{
d521ce57 17694 char *copy = NULL;
4f1520fb
FR
17695
17696 /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir).
17697 `start_symtab' will always pass the contents of DW_AT_comp_dir as
17698 second argument to start_subfile. To be consistent, we do the
17699 same here. In order not to lose the line information directory,
17700 we concatenate it to the filename when it makes sense.
17701 Note that the Dwarf3 standard says (speaking of filenames in line
17702 information): ``The directory index is ignored for file names
17703 that represent full path names''. Thus ignoring dirname in the
17704 `else' branch below isn't an issue. */
c906108c 17705
d5166ae1 17706 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
d521ce57
TT
17707 {
17708 copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
17709 filename = copy;
17710 }
c906108c 17711
d521ce57 17712 start_subfile (filename, comp_dir);
4f1520fb 17713
d521ce57
TT
17714 if (copy != NULL)
17715 xfree (copy);
c906108c
SS
17716}
17717
f4dc4d17
DE
17718/* Start a symtab for DWARF.
17719 NAME, COMP_DIR, LOW_PC are passed to start_symtab. */
17720
17721static void
17722dwarf2_start_symtab (struct dwarf2_cu *cu,
15d034d0 17723 const char *name, const char *comp_dir, CORE_ADDR low_pc)
f4dc4d17
DE
17724{
17725 start_symtab (name, comp_dir, low_pc);
17726 record_debugformat ("DWARF 2");
17727 record_producer (cu->producer);
17728
17729 /* We assume that we're processing GCC output. */
17730 processing_gcc_compilation = 2;
17731
4d4ec4e5 17732 cu->processing_has_namespace_info = 0;
f4dc4d17
DE
17733}
17734
4c2df51b
DJ
17735static void
17736var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 17737 struct dwarf2_cu *cu)
4c2df51b 17738{
e7c27a73
DJ
17739 struct objfile *objfile = cu->objfile;
17740 struct comp_unit_head *cu_header = &cu->header;
17741
4c2df51b
DJ
17742 /* NOTE drow/2003-01-30: There used to be a comment and some special
17743 code here to turn a symbol with DW_AT_external and a
17744 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
17745 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
17746 with some versions of binutils) where shared libraries could have
17747 relocations against symbols in their debug information - the
17748 minimal symbol would have the right address, but the debug info
17749 would not. It's no longer necessary, because we will explicitly
17750 apply relocations when we read in the debug information now. */
17751
17752 /* A DW_AT_location attribute with no contents indicates that a
17753 variable has been optimized away. */
17754 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
17755 {
f1e6e072 17756 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
4c2df51b
DJ
17757 return;
17758 }
17759
17760 /* Handle one degenerate form of location expression specially, to
17761 preserve GDB's previous behavior when section offsets are
3019eac3
DE
17762 specified. If this is just a DW_OP_addr or DW_OP_GNU_addr_index
17763 then mark this symbol as LOC_STATIC. */
4c2df51b
DJ
17764
17765 if (attr_form_is_block (attr)
3019eac3
DE
17766 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
17767 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
17768 || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
17769 && (DW_BLOCK (attr)->size
17770 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
4c2df51b 17771 {
891d2f0b 17772 unsigned int dummy;
4c2df51b 17773
3019eac3
DE
17774 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
17775 SYMBOL_VALUE_ADDRESS (sym) =
17776 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
17777 else
17778 SYMBOL_VALUE_ADDRESS (sym) =
17779 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
f1e6e072 17780 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
4c2df51b
DJ
17781 fixup_symbol_section (sym, objfile);
17782 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
17783 SYMBOL_SECTION (sym));
4c2df51b
DJ
17784 return;
17785 }
17786
17787 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
17788 expression evaluator, and use LOC_COMPUTED only when necessary
17789 (i.e. when the value of a register or memory location is
17790 referenced, or a thread-local block, etc.). Then again, it might
17791 not be worthwhile. I'm assuming that it isn't unless performance
17792 or memory numbers show me otherwise. */
17793
f1e6e072 17794 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
8be455d7 17795
f1e6e072 17796 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
8be455d7 17797 cu->has_loclist = 1;
4c2df51b
DJ
17798}
17799
c906108c
SS
17800/* Given a pointer to a DWARF information entry, figure out if we need
17801 to make a symbol table entry for it, and if so, create a new entry
17802 and return a pointer to it.
17803 If TYPE is NULL, determine symbol type from the die, otherwise
34eaf542
TT
17804 used the passed type.
17805 If SPACE is not NULL, use it to hold the new symbol. If it is
17806 NULL, allocate a new symbol on the objfile's obstack. */
c906108c
SS
17807
17808static struct symbol *
34eaf542
TT
17809new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
17810 struct symbol *space)
c906108c 17811{
e7c27a73 17812 struct objfile *objfile = cu->objfile;
c906108c 17813 struct symbol *sym = NULL;
15d034d0 17814 const char *name;
c906108c
SS
17815 struct attribute *attr = NULL;
17816 struct attribute *attr2 = NULL;
e142c38c 17817 CORE_ADDR baseaddr;
e37fd15a
SW
17818 struct pending **list_to_add = NULL;
17819
edb3359d 17820 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
e142c38c
DJ
17821
17822 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c 17823
94af9270 17824 name = dwarf2_name (die, cu);
c906108c
SS
17825 if (name)
17826 {
94af9270 17827 const char *linkagename;
34eaf542 17828 int suppress_add = 0;
94af9270 17829
34eaf542
TT
17830 if (space)
17831 sym = space;
17832 else
e623cf5d 17833 sym = allocate_symbol (objfile);
c906108c 17834 OBJSTAT (objfile, n_syms++);
2de7ced7
DJ
17835
17836 /* Cache this symbol's name and the name's demangled form (if any). */
f85f34ed 17837 SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
94af9270
KS
17838 linkagename = dwarf2_physname (name, die, cu);
17839 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
c906108c 17840
f55ee35c
JK
17841 /* Fortran does not have mangling standard and the mangling does differ
17842 between gfortran, iFort etc. */
17843 if (cu->language == language_fortran
b250c185 17844 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
29df156d 17845 symbol_set_demangled_name (&(sym->ginfo),
cfc594ee 17846 dwarf2_full_name (name, die, cu),
29df156d 17847 NULL);
f55ee35c 17848
c906108c 17849 /* Default assumptions.
c5aa993b 17850 Use the passed type or decode it from the die. */
176620f1 17851 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
f1e6e072 17852 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
17853 if (type != NULL)
17854 SYMBOL_TYPE (sym) = type;
17855 else
e7c27a73 17856 SYMBOL_TYPE (sym) = die_type (die, cu);
edb3359d
DJ
17857 attr = dwarf2_attr (die,
17858 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
17859 cu);
c906108c
SS
17860 if (attr)
17861 {
17862 SYMBOL_LINE (sym) = DW_UNSND (attr);
17863 }
cb1df416 17864
edb3359d
DJ
17865 attr = dwarf2_attr (die,
17866 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
17867 cu);
cb1df416
DJ
17868 if (attr)
17869 {
17870 int file_index = DW_UNSND (attr);
9a619af0 17871
cb1df416
DJ
17872 if (cu->line_header == NULL
17873 || file_index > cu->line_header->num_file_names)
17874 complaint (&symfile_complaints,
17875 _("file index out of range"));
1c3d648d 17876 else if (file_index > 0)
cb1df416
DJ
17877 {
17878 struct file_entry *fe;
9a619af0 17879
cb1df416
DJ
17880 fe = &cu->line_header->file_names[file_index - 1];
17881 SYMBOL_SYMTAB (sym) = fe->symtab;
17882 }
17883 }
17884
c906108c
SS
17885 switch (die->tag)
17886 {
17887 case DW_TAG_label:
e142c38c 17888 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
c906108c 17889 if (attr)
31aa7e4e
JB
17890 SYMBOL_VALUE_ADDRESS (sym)
17891 = attr_value_as_address (attr) + baseaddr;
0f5238ed
TT
17892 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
17893 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
f1e6e072 17894 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
0f5238ed 17895 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
17896 break;
17897 case DW_TAG_subprogram:
17898 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
17899 finish_block. */
f1e6e072 17900 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
e142c38c 17901 attr2 = dwarf2_attr (die, DW_AT_external, cu);
2cfa0c8d
JB
17902 if ((attr2 && (DW_UNSND (attr2) != 0))
17903 || cu->language == language_ada)
c906108c 17904 {
2cfa0c8d
JB
17905 /* Subprograms marked external are stored as a global symbol.
17906 Ada subprograms, whether marked external or not, are always
17907 stored as a global symbol, because we want to be able to
17908 access them globally. For instance, we want to be able
17909 to break on a nested subprogram without having to
17910 specify the context. */
e37fd15a 17911 list_to_add = &global_symbols;
c906108c
SS
17912 }
17913 else
17914 {
e37fd15a 17915 list_to_add = cu->list_in_scope;
c906108c
SS
17916 }
17917 break;
edb3359d
DJ
17918 case DW_TAG_inlined_subroutine:
17919 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
17920 finish_block. */
f1e6e072 17921 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
edb3359d 17922 SYMBOL_INLINED (sym) = 1;
481860b3 17923 list_to_add = cu->list_in_scope;
edb3359d 17924 break;
34eaf542
TT
17925 case DW_TAG_template_value_param:
17926 suppress_add = 1;
17927 /* Fall through. */
72929c62 17928 case DW_TAG_constant:
c906108c 17929 case DW_TAG_variable:
254e6b9e 17930 case DW_TAG_member:
0963b4bd
MS
17931 /* Compilation with minimal debug info may result in
17932 variables with missing type entries. Change the
17933 misleading `void' type to something sensible. */
c906108c 17934 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
64c50499 17935 SYMBOL_TYPE (sym)
46bf5051 17936 = objfile_type (objfile)->nodebug_data_symbol;
64c50499 17937
e142c38c 17938 attr = dwarf2_attr (die, DW_AT_const_value, cu);
254e6b9e
DE
17939 /* In the case of DW_TAG_member, we should only be called for
17940 static const members. */
17941 if (die->tag == DW_TAG_member)
17942 {
3863f96c
DE
17943 /* dwarf2_add_field uses die_is_declaration,
17944 so we do the same. */
254e6b9e
DE
17945 gdb_assert (die_is_declaration (die, cu));
17946 gdb_assert (attr);
17947 }
c906108c
SS
17948 if (attr)
17949 {
e7c27a73 17950 dwarf2_const_value (attr, sym, cu);
e142c38c 17951 attr2 = dwarf2_attr (die, DW_AT_external, cu);
e37fd15a 17952 if (!suppress_add)
34eaf542
TT
17953 {
17954 if (attr2 && (DW_UNSND (attr2) != 0))
e37fd15a 17955 list_to_add = &global_symbols;
34eaf542 17956 else
e37fd15a 17957 list_to_add = cu->list_in_scope;
34eaf542 17958 }
c906108c
SS
17959 break;
17960 }
e142c38c 17961 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
17962 if (attr)
17963 {
e7c27a73 17964 var_decode_location (attr, sym, cu);
e142c38c 17965 attr2 = dwarf2_attr (die, DW_AT_external, cu);
4357ac6c
TT
17966
17967 /* Fortran explicitly imports any global symbols to the local
17968 scope by DW_TAG_common_block. */
17969 if (cu->language == language_fortran && die->parent
17970 && die->parent->tag == DW_TAG_common_block)
17971 attr2 = NULL;
17972
caac4577
JG
17973 if (SYMBOL_CLASS (sym) == LOC_STATIC
17974 && SYMBOL_VALUE_ADDRESS (sym) == 0
17975 && !dwarf2_per_objfile->has_section_at_zero)
17976 {
17977 /* When a static variable is eliminated by the linker,
17978 the corresponding debug information is not stripped
17979 out, but the variable address is set to null;
17980 do not add such variables into symbol table. */
17981 }
17982 else if (attr2 && (DW_UNSND (attr2) != 0))
1c809c68 17983 {
f55ee35c
JK
17984 /* Workaround gfortran PR debug/40040 - it uses
17985 DW_AT_location for variables in -fPIC libraries which may
17986 get overriden by other libraries/executable and get
17987 a different address. Resolve it by the minimal symbol
17988 which may come from inferior's executable using copy
17989 relocation. Make this workaround only for gfortran as for
17990 other compilers GDB cannot guess the minimal symbol
17991 Fortran mangling kind. */
17992 if (cu->language == language_fortran && die->parent
17993 && die->parent->tag == DW_TAG_module
17994 && cu->producer
17995 && strncmp (cu->producer, "GNU Fortran ", 12) == 0)
f1e6e072 17996 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
f55ee35c 17997
1c809c68
TT
17998 /* A variable with DW_AT_external is never static,
17999 but it may be block-scoped. */
18000 list_to_add = (cu->list_in_scope == &file_symbols
18001 ? &global_symbols : cu->list_in_scope);
1c809c68 18002 }
c906108c 18003 else
e37fd15a 18004 list_to_add = cu->list_in_scope;
c906108c
SS
18005 }
18006 else
18007 {
18008 /* We do not know the address of this symbol.
c5aa993b
JM
18009 If it is an external symbol and we have type information
18010 for it, enter the symbol as a LOC_UNRESOLVED symbol.
18011 The address of the variable will then be determined from
18012 the minimal symbol table whenever the variable is
18013 referenced. */
e142c38c 18014 attr2 = dwarf2_attr (die, DW_AT_external, cu);
0971de02
TT
18015
18016 /* Fortran explicitly imports any global symbols to the local
18017 scope by DW_TAG_common_block. */
18018 if (cu->language == language_fortran && die->parent
18019 && die->parent->tag == DW_TAG_common_block)
18020 {
18021 /* SYMBOL_CLASS doesn't matter here because
18022 read_common_block is going to reset it. */
18023 if (!suppress_add)
18024 list_to_add = cu->list_in_scope;
18025 }
18026 else if (attr2 && (DW_UNSND (attr2) != 0)
18027 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c 18028 {
0fe7935b
DJ
18029 /* A variable with DW_AT_external is never static, but it
18030 may be block-scoped. */
18031 list_to_add = (cu->list_in_scope == &file_symbols
18032 ? &global_symbols : cu->list_in_scope);
18033
f1e6e072 18034 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
c906108c 18035 }
442ddf59
JK
18036 else if (!die_is_declaration (die, cu))
18037 {
18038 /* Use the default LOC_OPTIMIZED_OUT class. */
18039 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
e37fd15a
SW
18040 if (!suppress_add)
18041 list_to_add = cu->list_in_scope;
442ddf59 18042 }
c906108c
SS
18043 }
18044 break;
18045 case DW_TAG_formal_parameter:
edb3359d
DJ
18046 /* If we are inside a function, mark this as an argument. If
18047 not, we might be looking at an argument to an inlined function
18048 when we do not have enough information to show inlined frames;
18049 pretend it's a local variable in that case so that the user can
18050 still see it. */
18051 if (context_stack_depth > 0
18052 && context_stack[context_stack_depth - 1].name != NULL)
18053 SYMBOL_IS_ARGUMENT (sym) = 1;
e142c38c 18054 attr = dwarf2_attr (die, DW_AT_location, cu);
c906108c
SS
18055 if (attr)
18056 {
e7c27a73 18057 var_decode_location (attr, sym, cu);
c906108c 18058 }
e142c38c 18059 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
18060 if (attr)
18061 {
e7c27a73 18062 dwarf2_const_value (attr, sym, cu);
c906108c 18063 }
f346a30d 18064
e37fd15a 18065 list_to_add = cu->list_in_scope;
c906108c
SS
18066 break;
18067 case DW_TAG_unspecified_parameters:
18068 /* From varargs functions; gdb doesn't seem to have any
18069 interest in this information, so just ignore it for now.
18070 (FIXME?) */
18071 break;
34eaf542
TT
18072 case DW_TAG_template_type_param:
18073 suppress_add = 1;
18074 /* Fall through. */
c906108c 18075 case DW_TAG_class_type:
680b30c7 18076 case DW_TAG_interface_type:
c906108c
SS
18077 case DW_TAG_structure_type:
18078 case DW_TAG_union_type:
72019c9c 18079 case DW_TAG_set_type:
c906108c 18080 case DW_TAG_enumeration_type:
f1e6e072 18081 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 18082 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 18083
63d06c5c 18084 {
987504bb 18085 /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't
63d06c5c
DC
18086 really ever be static objects: otherwise, if you try
18087 to, say, break of a class's method and you're in a file
18088 which doesn't mention that class, it won't work unless
18089 the check for all static symbols in lookup_symbol_aux
18090 saves you. See the OtherFileClass tests in
18091 gdb.c++/namespace.exp. */
18092
e37fd15a 18093 if (!suppress_add)
34eaf542 18094 {
34eaf542
TT
18095 list_to_add = (cu->list_in_scope == &file_symbols
18096 && (cu->language == language_cplus
18097 || cu->language == language_java)
18098 ? &global_symbols : cu->list_in_scope);
63d06c5c 18099
64382290
TT
18100 /* The semantics of C++ state that "struct foo {
18101 ... }" also defines a typedef for "foo". A Java
18102 class declaration also defines a typedef for the
18103 class. */
18104 if (cu->language == language_cplus
18105 || cu->language == language_java
18106 || cu->language == language_ada)
18107 {
18108 /* The symbol's name is already allocated along
18109 with this objfile, so we don't need to
18110 duplicate it for the type. */
18111 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
18112 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
18113 }
63d06c5c
DC
18114 }
18115 }
c906108c
SS
18116 break;
18117 case DW_TAG_typedef:
f1e6e072 18118 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
63d06c5c 18119 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 18120 list_to_add = cu->list_in_scope;
63d06c5c 18121 break;
c906108c 18122 case DW_TAG_base_type:
a02abb62 18123 case DW_TAG_subrange_type:
f1e6e072 18124 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 18125 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 18126 list_to_add = cu->list_in_scope;
c906108c
SS
18127 break;
18128 case DW_TAG_enumerator:
e142c38c 18129 attr = dwarf2_attr (die, DW_AT_const_value, cu);
c906108c
SS
18130 if (attr)
18131 {
e7c27a73 18132 dwarf2_const_value (attr, sym, cu);
c906108c 18133 }
63d06c5c
DC
18134 {
18135 /* NOTE: carlton/2003-11-10: See comment above in the
18136 DW_TAG_class_type, etc. block. */
18137
e142c38c 18138 list_to_add = (cu->list_in_scope == &file_symbols
987504bb
JJ
18139 && (cu->language == language_cplus
18140 || cu->language == language_java)
e142c38c 18141 ? &global_symbols : cu->list_in_scope);
63d06c5c 18142 }
c906108c 18143 break;
74921315 18144 case DW_TAG_imported_declaration:
5c4e30ca 18145 case DW_TAG_namespace:
f1e6e072 18146 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
e37fd15a 18147 list_to_add = &global_symbols;
5c4e30ca 18148 break;
530e8392
KB
18149 case DW_TAG_module:
18150 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
18151 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
18152 list_to_add = &global_symbols;
18153 break;
4357ac6c 18154 case DW_TAG_common_block:
f1e6e072 18155 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
4357ac6c
TT
18156 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
18157 add_symbol_to_list (sym, cu->list_in_scope);
18158 break;
c906108c
SS
18159 default:
18160 /* Not a tag we recognize. Hopefully we aren't processing
18161 trash data, but since we must specifically ignore things
18162 we don't recognize, there is nothing else we should do at
0963b4bd 18163 this point. */
e2e0b3e5 18164 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
4d3c2250 18165 dwarf_tag_name (die->tag));
c906108c
SS
18166 break;
18167 }
df8a16a1 18168
e37fd15a
SW
18169 if (suppress_add)
18170 {
18171 sym->hash_next = objfile->template_symbols;
18172 objfile->template_symbols = sym;
18173 list_to_add = NULL;
18174 }
18175
18176 if (list_to_add != NULL)
18177 add_symbol_to_list (sym, list_to_add);
18178
df8a16a1
DJ
18179 /* For the benefit of old versions of GCC, check for anonymous
18180 namespaces based on the demangled name. */
4d4ec4e5 18181 if (!cu->processing_has_namespace_info
94af9270 18182 && cu->language == language_cplus)
a10964d1 18183 cp_scan_for_anonymous_namespaces (sym, objfile);
c906108c
SS
18184 }
18185 return (sym);
18186}
18187
34eaf542
TT
18188/* A wrapper for new_symbol_full that always allocates a new symbol. */
18189
18190static struct symbol *
18191new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
18192{
18193 return new_symbol_full (die, type, cu, NULL);
18194}
18195
98bfdba5
PA
18196/* Given an attr with a DW_FORM_dataN value in host byte order,
18197 zero-extend it as appropriate for the symbol's type. The DWARF
18198 standard (v4) is not entirely clear about the meaning of using
18199 DW_FORM_dataN for a constant with a signed type, where the type is
18200 wider than the data. The conclusion of a discussion on the DWARF
18201 list was that this is unspecified. We choose to always zero-extend
18202 because that is the interpretation long in use by GCC. */
c906108c 18203
98bfdba5 18204static gdb_byte *
ff39bb5e 18205dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
12df843f 18206 struct dwarf2_cu *cu, LONGEST *value, int bits)
c906108c 18207{
e7c27a73 18208 struct objfile *objfile = cu->objfile;
e17a4113
UW
18209 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
18210 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
98bfdba5
PA
18211 LONGEST l = DW_UNSND (attr);
18212
18213 if (bits < sizeof (*value) * 8)
18214 {
18215 l &= ((LONGEST) 1 << bits) - 1;
18216 *value = l;
18217 }
18218 else if (bits == sizeof (*value) * 8)
18219 *value = l;
18220 else
18221 {
18222 gdb_byte *bytes = obstack_alloc (obstack, bits / 8);
18223 store_unsigned_integer (bytes, bits / 8, byte_order, l);
18224 return bytes;
18225 }
18226
18227 return NULL;
18228}
18229
18230/* Read a constant value from an attribute. Either set *VALUE, or if
18231 the value does not fit in *VALUE, set *BYTES - either already
18232 allocated on the objfile obstack, or newly allocated on OBSTACK,
18233 or, set *BATON, if we translated the constant to a location
18234 expression. */
18235
18236static void
ff39bb5e 18237dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
98bfdba5
PA
18238 const char *name, struct obstack *obstack,
18239 struct dwarf2_cu *cu,
d521ce57 18240 LONGEST *value, const gdb_byte **bytes,
98bfdba5
PA
18241 struct dwarf2_locexpr_baton **baton)
18242{
18243 struct objfile *objfile = cu->objfile;
18244 struct comp_unit_head *cu_header = &cu->header;
c906108c 18245 struct dwarf_block *blk;
98bfdba5
PA
18246 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
18247 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
18248
18249 *value = 0;
18250 *bytes = NULL;
18251 *baton = NULL;
c906108c
SS
18252
18253 switch (attr->form)
18254 {
18255 case DW_FORM_addr:
3019eac3 18256 case DW_FORM_GNU_addr_index:
ac56253d 18257 {
ac56253d
TT
18258 gdb_byte *data;
18259
98bfdba5
PA
18260 if (TYPE_LENGTH (type) != cu_header->addr_size)
18261 dwarf2_const_value_length_mismatch_complaint (name,
ac56253d 18262 cu_header->addr_size,
98bfdba5 18263 TYPE_LENGTH (type));
ac56253d
TT
18264 /* Symbols of this form are reasonably rare, so we just
18265 piggyback on the existing location code rather than writing
18266 a new implementation of symbol_computed_ops. */
7919a973 18267 *baton = obstack_alloc (obstack, sizeof (struct dwarf2_locexpr_baton));
98bfdba5
PA
18268 (*baton)->per_cu = cu->per_cu;
18269 gdb_assert ((*baton)->per_cu);
ac56253d 18270
98bfdba5 18271 (*baton)->size = 2 + cu_header->addr_size;
7919a973 18272 data = obstack_alloc (obstack, (*baton)->size);
98bfdba5 18273 (*baton)->data = data;
ac56253d
TT
18274
18275 data[0] = DW_OP_addr;
18276 store_unsigned_integer (&data[1], cu_header->addr_size,
18277 byte_order, DW_ADDR (attr));
18278 data[cu_header->addr_size + 1] = DW_OP_stack_value;
ac56253d 18279 }
c906108c 18280 break;
4ac36638 18281 case DW_FORM_string:
93b5768b 18282 case DW_FORM_strp:
3019eac3 18283 case DW_FORM_GNU_str_index:
36586728 18284 case DW_FORM_GNU_strp_alt:
98bfdba5
PA
18285 /* DW_STRING is already allocated on the objfile obstack, point
18286 directly to it. */
d521ce57 18287 *bytes = (const gdb_byte *) DW_STRING (attr);
93b5768b 18288 break;
c906108c
SS
18289 case DW_FORM_block1:
18290 case DW_FORM_block2:
18291 case DW_FORM_block4:
18292 case DW_FORM_block:
2dc7f7b3 18293 case DW_FORM_exprloc:
c906108c 18294 blk = DW_BLOCK (attr);
98bfdba5
PA
18295 if (TYPE_LENGTH (type) != blk->size)
18296 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
18297 TYPE_LENGTH (type));
18298 *bytes = blk->data;
c906108c 18299 break;
2df3850c
JM
18300
18301 /* The DW_AT_const_value attributes are supposed to carry the
18302 symbol's value "represented as it would be on the target
18303 architecture." By the time we get here, it's already been
18304 converted to host endianness, so we just need to sign- or
18305 zero-extend it as appropriate. */
18306 case DW_FORM_data1:
3aef2284 18307 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
2df3850c 18308 break;
c906108c 18309 case DW_FORM_data2:
3aef2284 18310 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
2df3850c 18311 break;
c906108c 18312 case DW_FORM_data4:
3aef2284 18313 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
2df3850c 18314 break;
c906108c 18315 case DW_FORM_data8:
3aef2284 18316 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
2df3850c
JM
18317 break;
18318
c906108c 18319 case DW_FORM_sdata:
98bfdba5 18320 *value = DW_SND (attr);
2df3850c
JM
18321 break;
18322
c906108c 18323 case DW_FORM_udata:
98bfdba5 18324 *value = DW_UNSND (attr);
c906108c 18325 break;
2df3850c 18326
c906108c 18327 default:
4d3c2250 18328 complaint (&symfile_complaints,
e2e0b3e5 18329 _("unsupported const value attribute form: '%s'"),
4d3c2250 18330 dwarf_form_name (attr->form));
98bfdba5 18331 *value = 0;
c906108c
SS
18332 break;
18333 }
18334}
18335
2df3850c 18336
98bfdba5
PA
18337/* Copy constant value from an attribute to a symbol. */
18338
2df3850c 18339static void
ff39bb5e 18340dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
98bfdba5 18341 struct dwarf2_cu *cu)
2df3850c 18342{
98bfdba5
PA
18343 struct objfile *objfile = cu->objfile;
18344 struct comp_unit_head *cu_header = &cu->header;
12df843f 18345 LONGEST value;
d521ce57 18346 const gdb_byte *bytes;
98bfdba5 18347 struct dwarf2_locexpr_baton *baton;
2df3850c 18348
98bfdba5
PA
18349 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
18350 SYMBOL_PRINT_NAME (sym),
18351 &objfile->objfile_obstack, cu,
18352 &value, &bytes, &baton);
2df3850c 18353
98bfdba5
PA
18354 if (baton != NULL)
18355 {
98bfdba5 18356 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 18357 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
98bfdba5
PA
18358 }
18359 else if (bytes != NULL)
18360 {
18361 SYMBOL_VALUE_BYTES (sym) = bytes;
f1e6e072 18362 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
98bfdba5
PA
18363 }
18364 else
18365 {
18366 SYMBOL_VALUE (sym) = value;
f1e6e072 18367 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
98bfdba5 18368 }
2df3850c
JM
18369}
18370
c906108c
SS
18371/* Return the type of the die in question using its DW_AT_type attribute. */
18372
18373static struct type *
e7c27a73 18374die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 18375{
c906108c 18376 struct attribute *type_attr;
c906108c 18377
e142c38c 18378 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
18379 if (!type_attr)
18380 {
18381 /* A missing DW_AT_type represents a void type. */
46bf5051 18382 return objfile_type (cu->objfile)->builtin_void;
c906108c 18383 }
348e048f 18384
673bfd45 18385 return lookup_die_type (die, type_attr, cu);
c906108c
SS
18386}
18387
b4ba55a1
JB
18388/* True iff CU's producer generates GNAT Ada auxiliary information
18389 that allows to find parallel types through that information instead
18390 of having to do expensive parallel lookups by type name. */
18391
18392static int
18393need_gnat_info (struct dwarf2_cu *cu)
18394{
18395 /* FIXME: brobecker/2010-10-12: As of now, only the AdaCore version
18396 of GNAT produces this auxiliary information, without any indication
18397 that it is produced. Part of enhancing the FSF version of GNAT
18398 to produce that information will be to put in place an indicator
18399 that we can use in order to determine whether the descriptive type
18400 info is available or not. One suggestion that has been made is
18401 to use a new attribute, attached to the CU die. For now, assume
18402 that the descriptive type info is not available. */
18403 return 0;
18404}
18405
b4ba55a1
JB
18406/* Return the auxiliary type of the die in question using its
18407 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
18408 attribute is not present. */
18409
18410static struct type *
18411die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
18412{
b4ba55a1 18413 struct attribute *type_attr;
b4ba55a1
JB
18414
18415 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
18416 if (!type_attr)
18417 return NULL;
18418
673bfd45 18419 return lookup_die_type (die, type_attr, cu);
b4ba55a1
JB
18420}
18421
18422/* If DIE has a descriptive_type attribute, then set the TYPE's
18423 descriptive type accordingly. */
18424
18425static void
18426set_descriptive_type (struct type *type, struct die_info *die,
18427 struct dwarf2_cu *cu)
18428{
18429 struct type *descriptive_type = die_descriptive_type (die, cu);
18430
18431 if (descriptive_type)
18432 {
18433 ALLOCATE_GNAT_AUX_TYPE (type);
18434 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
18435 }
18436}
18437
c906108c
SS
18438/* Return the containing type of the die in question using its
18439 DW_AT_containing_type attribute. */
18440
18441static struct type *
e7c27a73 18442die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 18443{
c906108c 18444 struct attribute *type_attr;
c906108c 18445
e142c38c 18446 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
33ac96f0
JK
18447 if (!type_attr)
18448 error (_("Dwarf Error: Problem turning containing type into gdb type "
4262abfb 18449 "[in module %s]"), objfile_name (cu->objfile));
33ac96f0 18450
673bfd45 18451 return lookup_die_type (die, type_attr, cu);
c906108c
SS
18452}
18453
ac9ec31b
DE
18454/* Return an error marker type to use for the ill formed type in DIE/CU. */
18455
18456static struct type *
18457build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
18458{
18459 struct objfile *objfile = dwarf2_per_objfile->objfile;
18460 char *message, *saved;
18461
18462 message = xstrprintf (_("<unknown type in %s, CU 0x%x, DIE 0x%x>"),
4262abfb 18463 objfile_name (objfile),
ac9ec31b
DE
18464 cu->header.offset.sect_off,
18465 die->offset.sect_off);
18466 saved = obstack_copy0 (&objfile->objfile_obstack,
18467 message, strlen (message));
18468 xfree (message);
18469
18470 return init_type (TYPE_CODE_ERROR, 0, 0, saved, objfile);
18471}
18472
673bfd45 18473/* Look up the type of DIE in CU using its type attribute ATTR.
ac9ec31b
DE
18474 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
18475 DW_AT_containing_type.
673bfd45
DE
18476 If there is no type substitute an error marker. */
18477
c906108c 18478static struct type *
ff39bb5e 18479lookup_die_type (struct die_info *die, const struct attribute *attr,
673bfd45 18480 struct dwarf2_cu *cu)
c906108c 18481{
bb5ed363 18482 struct objfile *objfile = cu->objfile;
f792889a
DJ
18483 struct type *this_type;
18484
ac9ec31b
DE
18485 gdb_assert (attr->name == DW_AT_type
18486 || attr->name == DW_AT_GNAT_descriptive_type
18487 || attr->name == DW_AT_containing_type);
18488
673bfd45
DE
18489 /* First see if we have it cached. */
18490
36586728
TT
18491 if (attr->form == DW_FORM_GNU_ref_alt)
18492 {
18493 struct dwarf2_per_cu_data *per_cu;
18494 sect_offset offset = dwarf2_get_ref_die_offset (attr);
18495
18496 per_cu = dwarf2_find_containing_comp_unit (offset, 1, cu->objfile);
18497 this_type = get_die_type_at_offset (offset, per_cu);
18498 }
7771576e 18499 else if (attr_form_is_ref (attr))
673bfd45 18500 {
b64f50a1 18501 sect_offset offset = dwarf2_get_ref_die_offset (attr);
673bfd45
DE
18502
18503 this_type = get_die_type_at_offset (offset, cu->per_cu);
18504 }
55f1336d 18505 else if (attr->form == DW_FORM_ref_sig8)
673bfd45 18506 {
ac9ec31b 18507 ULONGEST signature = DW_SIGNATURE (attr);
673bfd45 18508
ac9ec31b 18509 return get_signatured_type (die, signature, cu);
673bfd45
DE
18510 }
18511 else
18512 {
ac9ec31b
DE
18513 complaint (&symfile_complaints,
18514 _("Dwarf Error: Bad type attribute %s in DIE"
18515 " at 0x%x [in module %s]"),
18516 dwarf_attr_name (attr->name), die->offset.sect_off,
4262abfb 18517 objfile_name (objfile));
ac9ec31b 18518 return build_error_marker_type (cu, die);
673bfd45
DE
18519 }
18520
18521 /* If not cached we need to read it in. */
18522
18523 if (this_type == NULL)
18524 {
ac9ec31b 18525 struct die_info *type_die = NULL;
673bfd45
DE
18526 struct dwarf2_cu *type_cu = cu;
18527
7771576e 18528 if (attr_form_is_ref (attr))
ac9ec31b
DE
18529 type_die = follow_die_ref (die, attr, &type_cu);
18530 if (type_die == NULL)
18531 return build_error_marker_type (cu, die);
18532 /* If we find the type now, it's probably because the type came
3019eac3
DE
18533 from an inter-CU reference and the type's CU got expanded before
18534 ours. */
ac9ec31b 18535 this_type = read_type_die (type_die, type_cu);
673bfd45
DE
18536 }
18537
18538 /* If we still don't have a type use an error marker. */
18539
18540 if (this_type == NULL)
ac9ec31b 18541 return build_error_marker_type (cu, die);
673bfd45 18542
f792889a 18543 return this_type;
c906108c
SS
18544}
18545
673bfd45
DE
18546/* Return the type in DIE, CU.
18547 Returns NULL for invalid types.
18548
02142a6c 18549 This first does a lookup in die_type_hash,
673bfd45
DE
18550 and only reads the die in if necessary.
18551
18552 NOTE: This can be called when reading in partial or full symbols. */
18553
f792889a 18554static struct type *
e7c27a73 18555read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 18556{
f792889a
DJ
18557 struct type *this_type;
18558
18559 this_type = get_die_type (die, cu);
18560 if (this_type)
18561 return this_type;
18562
673bfd45
DE
18563 return read_type_die_1 (die, cu);
18564}
18565
18566/* Read the type in DIE, CU.
18567 Returns NULL for invalid types. */
18568
18569static struct type *
18570read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
18571{
18572 struct type *this_type = NULL;
18573
c906108c
SS
18574 switch (die->tag)
18575 {
18576 case DW_TAG_class_type:
680b30c7 18577 case DW_TAG_interface_type:
c906108c
SS
18578 case DW_TAG_structure_type:
18579 case DW_TAG_union_type:
f792889a 18580 this_type = read_structure_type (die, cu);
c906108c
SS
18581 break;
18582 case DW_TAG_enumeration_type:
f792889a 18583 this_type = read_enumeration_type (die, cu);
c906108c
SS
18584 break;
18585 case DW_TAG_subprogram:
18586 case DW_TAG_subroutine_type:
edb3359d 18587 case DW_TAG_inlined_subroutine:
f792889a 18588 this_type = read_subroutine_type (die, cu);
c906108c
SS
18589 break;
18590 case DW_TAG_array_type:
f792889a 18591 this_type = read_array_type (die, cu);
c906108c 18592 break;
72019c9c 18593 case DW_TAG_set_type:
f792889a 18594 this_type = read_set_type (die, cu);
72019c9c 18595 break;
c906108c 18596 case DW_TAG_pointer_type:
f792889a 18597 this_type = read_tag_pointer_type (die, cu);
c906108c
SS
18598 break;
18599 case DW_TAG_ptr_to_member_type:
f792889a 18600 this_type = read_tag_ptr_to_member_type (die, cu);
c906108c
SS
18601 break;
18602 case DW_TAG_reference_type:
f792889a 18603 this_type = read_tag_reference_type (die, cu);
c906108c
SS
18604 break;
18605 case DW_TAG_const_type:
f792889a 18606 this_type = read_tag_const_type (die, cu);
c906108c
SS
18607 break;
18608 case DW_TAG_volatile_type:
f792889a 18609 this_type = read_tag_volatile_type (die, cu);
c906108c 18610 break;
06d66ee9
TT
18611 case DW_TAG_restrict_type:
18612 this_type = read_tag_restrict_type (die, cu);
18613 break;
c906108c 18614 case DW_TAG_string_type:
f792889a 18615 this_type = read_tag_string_type (die, cu);
c906108c
SS
18616 break;
18617 case DW_TAG_typedef:
f792889a 18618 this_type = read_typedef (die, cu);
c906108c 18619 break;
a02abb62 18620 case DW_TAG_subrange_type:
f792889a 18621 this_type = read_subrange_type (die, cu);
a02abb62 18622 break;
c906108c 18623 case DW_TAG_base_type:
f792889a 18624 this_type = read_base_type (die, cu);
c906108c 18625 break;
81a17f79 18626 case DW_TAG_unspecified_type:
f792889a 18627 this_type = read_unspecified_type (die, cu);
81a17f79 18628 break;
0114d602
DJ
18629 case DW_TAG_namespace:
18630 this_type = read_namespace_type (die, cu);
18631 break;
f55ee35c
JK
18632 case DW_TAG_module:
18633 this_type = read_module_type (die, cu);
18634 break;
c906108c 18635 default:
3e43a32a
MS
18636 complaint (&symfile_complaints,
18637 _("unexpected tag in read_type_die: '%s'"),
4d3c2250 18638 dwarf_tag_name (die->tag));
c906108c
SS
18639 break;
18640 }
63d06c5c 18641
f792889a 18642 return this_type;
63d06c5c
DC
18643}
18644
abc72ce4
DE
18645/* See if we can figure out if the class lives in a namespace. We do
18646 this by looking for a member function; its demangled name will
18647 contain namespace info, if there is any.
18648 Return the computed name or NULL.
18649 Space for the result is allocated on the objfile's obstack.
18650 This is the full-die version of guess_partial_die_structure_name.
18651 In this case we know DIE has no useful parent. */
18652
18653static char *
18654guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
18655{
18656 struct die_info *spec_die;
18657 struct dwarf2_cu *spec_cu;
18658 struct die_info *child;
18659
18660 spec_cu = cu;
18661 spec_die = die_specification (die, &spec_cu);
18662 if (spec_die != NULL)
18663 {
18664 die = spec_die;
18665 cu = spec_cu;
18666 }
18667
18668 for (child = die->child;
18669 child != NULL;
18670 child = child->sibling)
18671 {
18672 if (child->tag == DW_TAG_subprogram)
18673 {
18674 struct attribute *attr;
18675
18676 attr = dwarf2_attr (child, DW_AT_linkage_name, cu);
18677 if (attr == NULL)
18678 attr = dwarf2_attr (child, DW_AT_MIPS_linkage_name, cu);
18679 if (attr != NULL)
18680 {
18681 char *actual_name
18682 = language_class_name_from_physname (cu->language_defn,
18683 DW_STRING (attr));
18684 char *name = NULL;
18685
18686 if (actual_name != NULL)
18687 {
15d034d0 18688 const char *die_name = dwarf2_name (die, cu);
abc72ce4
DE
18689
18690 if (die_name != NULL
18691 && strcmp (die_name, actual_name) != 0)
18692 {
18693 /* Strip off the class name from the full name.
18694 We want the prefix. */
18695 int die_name_len = strlen (die_name);
18696 int actual_name_len = strlen (actual_name);
18697
18698 /* Test for '::' as a sanity check. */
18699 if (actual_name_len > die_name_len + 2
3e43a32a
MS
18700 && actual_name[actual_name_len
18701 - die_name_len - 1] == ':')
abc72ce4 18702 name =
34a68019 18703 obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
10f0c4bb
TT
18704 actual_name,
18705 actual_name_len - die_name_len - 2);
abc72ce4
DE
18706 }
18707 }
18708 xfree (actual_name);
18709 return name;
18710 }
18711 }
18712 }
18713
18714 return NULL;
18715}
18716
96408a79
SA
18717/* GCC might emit a nameless typedef that has a linkage name. Determine the
18718 prefix part in such case. See
18719 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
18720
18721static char *
18722anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
18723{
18724 struct attribute *attr;
18725 char *base;
18726
18727 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
18728 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
18729 return NULL;
18730
18731 attr = dwarf2_attr (die, DW_AT_name, cu);
18732 if (attr != NULL && DW_STRING (attr) != NULL)
18733 return NULL;
18734
18735 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
18736 if (attr == NULL)
18737 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
18738 if (attr == NULL || DW_STRING (attr) == NULL)
18739 return NULL;
18740
18741 /* dwarf2_name had to be already called. */
18742 gdb_assert (DW_STRING_IS_CANONICAL (attr));
18743
18744 /* Strip the base name, keep any leading namespaces/classes. */
18745 base = strrchr (DW_STRING (attr), ':');
18746 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
18747 return "";
18748
34a68019 18749 return obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
10f0c4bb 18750 DW_STRING (attr), &base[-1] - DW_STRING (attr));
96408a79
SA
18751}
18752
fdde2d81 18753/* Return the name of the namespace/class that DIE is defined within,
0114d602 18754 or "" if we can't tell. The caller should not xfree the result.
fdde2d81 18755
0114d602
DJ
18756 For example, if we're within the method foo() in the following
18757 code:
18758
18759 namespace N {
18760 class C {
18761 void foo () {
18762 }
18763 };
18764 }
18765
18766 then determine_prefix on foo's die will return "N::C". */
fdde2d81 18767
0d5cff50 18768static const char *
e142c38c 18769determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 18770{
0114d602
DJ
18771 struct die_info *parent, *spec_die;
18772 struct dwarf2_cu *spec_cu;
18773 struct type *parent_type;
96408a79 18774 char *retval;
63d06c5c 18775
f55ee35c
JK
18776 if (cu->language != language_cplus && cu->language != language_java
18777 && cu->language != language_fortran)
0114d602
DJ
18778 return "";
18779
96408a79
SA
18780 retval = anonymous_struct_prefix (die, cu);
18781 if (retval)
18782 return retval;
18783
0114d602
DJ
18784 /* We have to be careful in the presence of DW_AT_specification.
18785 For example, with GCC 3.4, given the code
18786
18787 namespace N {
18788 void foo() {
18789 // Definition of N::foo.
18790 }
18791 }
18792
18793 then we'll have a tree of DIEs like this:
18794
18795 1: DW_TAG_compile_unit
18796 2: DW_TAG_namespace // N
18797 3: DW_TAG_subprogram // declaration of N::foo
18798 4: DW_TAG_subprogram // definition of N::foo
18799 DW_AT_specification // refers to die #3
18800
18801 Thus, when processing die #4, we have to pretend that we're in
18802 the context of its DW_AT_specification, namely the contex of die
18803 #3. */
18804 spec_cu = cu;
18805 spec_die = die_specification (die, &spec_cu);
18806 if (spec_die == NULL)
18807 parent = die->parent;
18808 else
63d06c5c 18809 {
0114d602
DJ
18810 parent = spec_die->parent;
18811 cu = spec_cu;
63d06c5c 18812 }
0114d602
DJ
18813
18814 if (parent == NULL)
18815 return "";
98bfdba5
PA
18816 else if (parent->building_fullname)
18817 {
18818 const char *name;
18819 const char *parent_name;
18820
18821 /* It has been seen on RealView 2.2 built binaries,
18822 DW_TAG_template_type_param types actually _defined_ as
18823 children of the parent class:
18824
18825 enum E {};
18826 template class <class Enum> Class{};
18827 Class<enum E> class_e;
18828
18829 1: DW_TAG_class_type (Class)
18830 2: DW_TAG_enumeration_type (E)
18831 3: DW_TAG_enumerator (enum1:0)
18832 3: DW_TAG_enumerator (enum2:1)
18833 ...
18834 2: DW_TAG_template_type_param
18835 DW_AT_type DW_FORM_ref_udata (E)
18836
18837 Besides being broken debug info, it can put GDB into an
18838 infinite loop. Consider:
18839
18840 When we're building the full name for Class<E>, we'll start
18841 at Class, and go look over its template type parameters,
18842 finding E. We'll then try to build the full name of E, and
18843 reach here. We're now trying to build the full name of E,
18844 and look over the parent DIE for containing scope. In the
18845 broken case, if we followed the parent DIE of E, we'd again
18846 find Class, and once again go look at its template type
18847 arguments, etc., etc. Simply don't consider such parent die
18848 as source-level parent of this die (it can't be, the language
18849 doesn't allow it), and break the loop here. */
18850 name = dwarf2_name (die, cu);
18851 parent_name = dwarf2_name (parent, cu);
18852 complaint (&symfile_complaints,
18853 _("template param type '%s' defined within parent '%s'"),
18854 name ? name : "<unknown>",
18855 parent_name ? parent_name : "<unknown>");
18856 return "";
18857 }
63d06c5c 18858 else
0114d602
DJ
18859 switch (parent->tag)
18860 {
63d06c5c 18861 case DW_TAG_namespace:
0114d602 18862 parent_type = read_type_die (parent, cu);
acebe513
UW
18863 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
18864 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
18865 Work around this problem here. */
18866 if (cu->language == language_cplus
18867 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
18868 return "";
0114d602
DJ
18869 /* We give a name to even anonymous namespaces. */
18870 return TYPE_TAG_NAME (parent_type);
63d06c5c 18871 case DW_TAG_class_type:
680b30c7 18872 case DW_TAG_interface_type:
63d06c5c 18873 case DW_TAG_structure_type:
0114d602 18874 case DW_TAG_union_type:
f55ee35c 18875 case DW_TAG_module:
0114d602
DJ
18876 parent_type = read_type_die (parent, cu);
18877 if (TYPE_TAG_NAME (parent_type) != NULL)
18878 return TYPE_TAG_NAME (parent_type);
18879 else
18880 /* An anonymous structure is only allowed non-static data
18881 members; no typedefs, no member functions, et cetera.
18882 So it does not need a prefix. */
18883 return "";
abc72ce4 18884 case DW_TAG_compile_unit:
95554aad 18885 case DW_TAG_partial_unit:
abc72ce4
DE
18886 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
18887 if (cu->language == language_cplus
8b70b953 18888 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
abc72ce4
DE
18889 && die->child != NULL
18890 && (die->tag == DW_TAG_class_type
18891 || die->tag == DW_TAG_structure_type
18892 || die->tag == DW_TAG_union_type))
18893 {
18894 char *name = guess_full_die_structure_name (die, cu);
18895 if (name != NULL)
18896 return name;
18897 }
18898 return "";
3d567982
TT
18899 case DW_TAG_enumeration_type:
18900 parent_type = read_type_die (parent, cu);
18901 if (TYPE_DECLARED_CLASS (parent_type))
18902 {
18903 if (TYPE_TAG_NAME (parent_type) != NULL)
18904 return TYPE_TAG_NAME (parent_type);
18905 return "";
18906 }
18907 /* Fall through. */
63d06c5c 18908 default:
8176b9b8 18909 return determine_prefix (parent, cu);
63d06c5c 18910 }
63d06c5c
DC
18911}
18912
3e43a32a
MS
18913/* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
18914 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
18915 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
18916 an obconcat, otherwise allocate storage for the result. The CU argument is
18917 used to determine the language and hence, the appropriate separator. */
987504bb 18918
f55ee35c 18919#define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
63d06c5c
DC
18920
18921static char *
f55ee35c
JK
18922typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
18923 int physname, struct dwarf2_cu *cu)
63d06c5c 18924{
f55ee35c 18925 const char *lead = "";
5c315b68 18926 const char *sep;
63d06c5c 18927
3e43a32a
MS
18928 if (suffix == NULL || suffix[0] == '\0'
18929 || prefix == NULL || prefix[0] == '\0')
987504bb
JJ
18930 sep = "";
18931 else if (cu->language == language_java)
18932 sep = ".";
f55ee35c
JK
18933 else if (cu->language == language_fortran && physname)
18934 {
18935 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
18936 DW_AT_MIPS_linkage_name is preferred and used instead. */
18937
18938 lead = "__";
18939 sep = "_MOD_";
18940 }
987504bb
JJ
18941 else
18942 sep = "::";
63d06c5c 18943
6dd47d34
DE
18944 if (prefix == NULL)
18945 prefix = "";
18946 if (suffix == NULL)
18947 suffix = "";
18948
987504bb
JJ
18949 if (obs == NULL)
18950 {
3e43a32a
MS
18951 char *retval
18952 = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1);
9a619af0 18953
f55ee35c
JK
18954 strcpy (retval, lead);
18955 strcat (retval, prefix);
6dd47d34
DE
18956 strcat (retval, sep);
18957 strcat (retval, suffix);
63d06c5c
DC
18958 return retval;
18959 }
987504bb
JJ
18960 else
18961 {
18962 /* We have an obstack. */
f55ee35c 18963 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
987504bb 18964 }
63d06c5c
DC
18965}
18966
c906108c
SS
18967/* Return sibling of die, NULL if no sibling. */
18968
f9aca02d 18969static struct die_info *
fba45db2 18970sibling_die (struct die_info *die)
c906108c 18971{
639d11d3 18972 return die->sibling;
c906108c
SS
18973}
18974
71c25dea
TT
18975/* Get name of a die, return NULL if not found. */
18976
15d034d0
TT
18977static const char *
18978dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
71c25dea
TT
18979 struct obstack *obstack)
18980{
18981 if (name && cu->language == language_cplus)
18982 {
18983 char *canon_name = cp_canonicalize_string (name);
18984
18985 if (canon_name != NULL)
18986 {
18987 if (strcmp (canon_name, name) != 0)
10f0c4bb 18988 name = obstack_copy0 (obstack, canon_name, strlen (canon_name));
71c25dea
TT
18989 xfree (canon_name);
18990 }
18991 }
18992
18993 return name;
c906108c
SS
18994}
18995
9219021c
DC
18996/* Get name of a die, return NULL if not found. */
18997
15d034d0 18998static const char *
e142c38c 18999dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
19000{
19001 struct attribute *attr;
19002
e142c38c 19003 attr = dwarf2_attr (die, DW_AT_name, cu);
53832f31
TT
19004 if ((!attr || !DW_STRING (attr))
19005 && die->tag != DW_TAG_class_type
19006 && die->tag != DW_TAG_interface_type
19007 && die->tag != DW_TAG_structure_type
19008 && die->tag != DW_TAG_union_type)
71c25dea
TT
19009 return NULL;
19010
19011 switch (die->tag)
19012 {
19013 case DW_TAG_compile_unit:
95554aad 19014 case DW_TAG_partial_unit:
71c25dea
TT
19015 /* Compilation units have a DW_AT_name that is a filename, not
19016 a source language identifier. */
19017 case DW_TAG_enumeration_type:
19018 case DW_TAG_enumerator:
19019 /* These tags always have simple identifiers already; no need
19020 to canonicalize them. */
19021 return DW_STRING (attr);
907af001 19022
418835cc
KS
19023 case DW_TAG_subprogram:
19024 /* Java constructors will all be named "<init>", so return
19025 the class name when we see this special case. */
19026 if (cu->language == language_java
19027 && DW_STRING (attr) != NULL
19028 && strcmp (DW_STRING (attr), "<init>") == 0)
19029 {
19030 struct dwarf2_cu *spec_cu = cu;
19031 struct die_info *spec_die;
19032
19033 /* GCJ will output '<init>' for Java constructor names.
19034 For this special case, return the name of the parent class. */
19035
cdc07690 19036 /* GCJ may output subprogram DIEs with AT_specification set.
418835cc
KS
19037 If so, use the name of the specified DIE. */
19038 spec_die = die_specification (die, &spec_cu);
19039 if (spec_die != NULL)
19040 return dwarf2_name (spec_die, spec_cu);
19041
19042 do
19043 {
19044 die = die->parent;
19045 if (die->tag == DW_TAG_class_type)
19046 return dwarf2_name (die, cu);
19047 }
95554aad
TT
19048 while (die->tag != DW_TAG_compile_unit
19049 && die->tag != DW_TAG_partial_unit);
418835cc 19050 }
907af001
UW
19051 break;
19052
19053 case DW_TAG_class_type:
19054 case DW_TAG_interface_type:
19055 case DW_TAG_structure_type:
19056 case DW_TAG_union_type:
19057 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
19058 structures or unions. These were of the form "._%d" in GCC 4.1,
19059 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
19060 and GCC 4.4. We work around this problem by ignoring these. */
53832f31
TT
19061 if (attr && DW_STRING (attr)
19062 && (strncmp (DW_STRING (attr), "._", 2) == 0
19063 || strncmp (DW_STRING (attr), "<anonymous", 10) == 0))
907af001 19064 return NULL;
53832f31
TT
19065
19066 /* GCC might emit a nameless typedef that has a linkage name. See
19067 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
19068 if (!attr || DW_STRING (attr) == NULL)
19069 {
df5c6c50 19070 char *demangled = NULL;
53832f31
TT
19071
19072 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
19073 if (attr == NULL)
19074 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
19075
19076 if (attr == NULL || DW_STRING (attr) == NULL)
19077 return NULL;
19078
df5c6c50
JK
19079 /* Avoid demangling DW_STRING (attr) the second time on a second
19080 call for the same DIE. */
19081 if (!DW_STRING_IS_CANONICAL (attr))
8de20a37 19082 demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
53832f31
TT
19083
19084 if (demangled)
19085 {
96408a79
SA
19086 char *base;
19087
53832f31 19088 /* FIXME: we already did this for the partial symbol... */
34a68019
TT
19089 DW_STRING (attr)
19090 = obstack_copy0 (&cu->objfile->per_bfd->storage_obstack,
19091 demangled, strlen (demangled));
53832f31
TT
19092 DW_STRING_IS_CANONICAL (attr) = 1;
19093 xfree (demangled);
96408a79
SA
19094
19095 /* Strip any leading namespaces/classes, keep only the base name.
19096 DW_AT_name for named DIEs does not contain the prefixes. */
19097 base = strrchr (DW_STRING (attr), ':');
19098 if (base && base > DW_STRING (attr) && base[-1] == ':')
19099 return &base[1];
19100 else
19101 return DW_STRING (attr);
53832f31
TT
19102 }
19103 }
907af001
UW
19104 break;
19105
71c25dea 19106 default:
907af001
UW
19107 break;
19108 }
19109
19110 if (!DW_STRING_IS_CANONICAL (attr))
19111 {
19112 DW_STRING (attr)
19113 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
34a68019 19114 &cu->objfile->per_bfd->storage_obstack);
907af001 19115 DW_STRING_IS_CANONICAL (attr) = 1;
71c25dea 19116 }
907af001 19117 return DW_STRING (attr);
9219021c
DC
19118}
19119
19120/* Return the die that this die in an extension of, or NULL if there
f2f0e013
DJ
19121 is none. *EXT_CU is the CU containing DIE on input, and the CU
19122 containing the return value on output. */
9219021c
DC
19123
19124static struct die_info *
f2f0e013 19125dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9219021c
DC
19126{
19127 struct attribute *attr;
9219021c 19128
f2f0e013 19129 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9219021c
DC
19130 if (attr == NULL)
19131 return NULL;
19132
f2f0e013 19133 return follow_die_ref (die, attr, ext_cu);
9219021c
DC
19134}
19135
c906108c
SS
19136/* Convert a DIE tag into its string name. */
19137
f39c6ffd 19138static const char *
aa1ee363 19139dwarf_tag_name (unsigned tag)
c906108c 19140{
f39c6ffd
TT
19141 const char *name = get_DW_TAG_name (tag);
19142
19143 if (name == NULL)
19144 return "DW_TAG_<unknown>";
19145
19146 return name;
c906108c
SS
19147}
19148
19149/* Convert a DWARF attribute code into its string name. */
19150
f39c6ffd 19151static const char *
aa1ee363 19152dwarf_attr_name (unsigned attr)
c906108c 19153{
f39c6ffd
TT
19154 const char *name;
19155
c764a876 19156#ifdef MIPS /* collides with DW_AT_HP_block_index */
f39c6ffd
TT
19157 if (attr == DW_AT_MIPS_fde)
19158 return "DW_AT_MIPS_fde";
19159#else
19160 if (attr == DW_AT_HP_block_index)
19161 return "DW_AT_HP_block_index";
c764a876 19162#endif
f39c6ffd
TT
19163
19164 name = get_DW_AT_name (attr);
19165
19166 if (name == NULL)
19167 return "DW_AT_<unknown>";
19168
19169 return name;
c906108c
SS
19170}
19171
19172/* Convert a DWARF value form code into its string name. */
19173
f39c6ffd 19174static const char *
aa1ee363 19175dwarf_form_name (unsigned form)
c906108c 19176{
f39c6ffd
TT
19177 const char *name = get_DW_FORM_name (form);
19178
19179 if (name == NULL)
19180 return "DW_FORM_<unknown>";
19181
19182 return name;
c906108c
SS
19183}
19184
19185static char *
fba45db2 19186dwarf_bool_name (unsigned mybool)
c906108c
SS
19187{
19188 if (mybool)
19189 return "TRUE";
19190 else
19191 return "FALSE";
19192}
19193
19194/* Convert a DWARF type code into its string name. */
19195
f39c6ffd 19196static const char *
aa1ee363 19197dwarf_type_encoding_name (unsigned enc)
c906108c 19198{
f39c6ffd 19199 const char *name = get_DW_ATE_name (enc);
c906108c 19200
f39c6ffd
TT
19201 if (name == NULL)
19202 return "DW_ATE_<unknown>";
c906108c 19203
f39c6ffd 19204 return name;
c906108c 19205}
c906108c 19206
f9aca02d 19207static void
d97bc12b 19208dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
c906108c
SS
19209{
19210 unsigned int i;
19211
d97bc12b
DE
19212 print_spaces (indent, f);
19213 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset 0x%x)\n",
b64f50a1 19214 dwarf_tag_name (die->tag), die->abbrev, die->offset.sect_off);
d97bc12b
DE
19215
19216 if (die->parent != NULL)
19217 {
19218 print_spaces (indent, f);
19219 fprintf_unfiltered (f, " parent at offset: 0x%x\n",
b64f50a1 19220 die->parent->offset.sect_off);
d97bc12b
DE
19221 }
19222
19223 print_spaces (indent, f);
19224 fprintf_unfiltered (f, " has children: %s\n",
639d11d3 19225 dwarf_bool_name (die->child != NULL));
c906108c 19226
d97bc12b
DE
19227 print_spaces (indent, f);
19228 fprintf_unfiltered (f, " attributes:\n");
19229
c906108c
SS
19230 for (i = 0; i < die->num_attrs; ++i)
19231 {
d97bc12b
DE
19232 print_spaces (indent, f);
19233 fprintf_unfiltered (f, " %s (%s) ",
c906108c
SS
19234 dwarf_attr_name (die->attrs[i].name),
19235 dwarf_form_name (die->attrs[i].form));
d97bc12b 19236
c906108c
SS
19237 switch (die->attrs[i].form)
19238 {
c906108c 19239 case DW_FORM_addr:
3019eac3 19240 case DW_FORM_GNU_addr_index:
d97bc12b 19241 fprintf_unfiltered (f, "address: ");
5af949e3 19242 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
c906108c
SS
19243 break;
19244 case DW_FORM_block2:
19245 case DW_FORM_block4:
19246 case DW_FORM_block:
19247 case DW_FORM_block1:
56eb65bd
SP
19248 fprintf_unfiltered (f, "block: size %s",
19249 pulongest (DW_BLOCK (&die->attrs[i])->size));
c906108c 19250 break;
2dc7f7b3 19251 case DW_FORM_exprloc:
56eb65bd
SP
19252 fprintf_unfiltered (f, "expression: size %s",
19253 pulongest (DW_BLOCK (&die->attrs[i])->size));
2dc7f7b3 19254 break;
4568ecf9
DE
19255 case DW_FORM_ref_addr:
19256 fprintf_unfiltered (f, "ref address: ");
19257 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
19258 break;
36586728
TT
19259 case DW_FORM_GNU_ref_alt:
19260 fprintf_unfiltered (f, "alt ref address: ");
19261 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
19262 break;
10b3939b
DJ
19263 case DW_FORM_ref1:
19264 case DW_FORM_ref2:
19265 case DW_FORM_ref4:
4568ecf9
DE
19266 case DW_FORM_ref8:
19267 case DW_FORM_ref_udata:
d97bc12b 19268 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
4568ecf9 19269 (long) (DW_UNSND (&die->attrs[i])));
10b3939b 19270 break;
c906108c
SS
19271 case DW_FORM_data1:
19272 case DW_FORM_data2:
19273 case DW_FORM_data4:
ce5d95e1 19274 case DW_FORM_data8:
c906108c
SS
19275 case DW_FORM_udata:
19276 case DW_FORM_sdata:
43bbcdc2
PH
19277 fprintf_unfiltered (f, "constant: %s",
19278 pulongest (DW_UNSND (&die->attrs[i])));
c906108c 19279 break;
2dc7f7b3
TT
19280 case DW_FORM_sec_offset:
19281 fprintf_unfiltered (f, "section offset: %s",
19282 pulongest (DW_UNSND (&die->attrs[i])));
19283 break;
55f1336d 19284 case DW_FORM_ref_sig8:
ac9ec31b
DE
19285 fprintf_unfiltered (f, "signature: %s",
19286 hex_string (DW_SIGNATURE (&die->attrs[i])));
348e048f 19287 break;
c906108c 19288 case DW_FORM_string:
4bdf3d34 19289 case DW_FORM_strp:
3019eac3 19290 case DW_FORM_GNU_str_index:
36586728 19291 case DW_FORM_GNU_strp_alt:
8285870a 19292 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
c906108c 19293 DW_STRING (&die->attrs[i])
8285870a
JK
19294 ? DW_STRING (&die->attrs[i]) : "",
19295 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
c906108c
SS
19296 break;
19297 case DW_FORM_flag:
19298 if (DW_UNSND (&die->attrs[i]))
d97bc12b 19299 fprintf_unfiltered (f, "flag: TRUE");
c906108c 19300 else
d97bc12b 19301 fprintf_unfiltered (f, "flag: FALSE");
c906108c 19302 break;
2dc7f7b3
TT
19303 case DW_FORM_flag_present:
19304 fprintf_unfiltered (f, "flag: TRUE");
19305 break;
a8329558 19306 case DW_FORM_indirect:
0963b4bd
MS
19307 /* The reader will have reduced the indirect form to
19308 the "base form" so this form should not occur. */
3e43a32a
MS
19309 fprintf_unfiltered (f,
19310 "unexpected attribute form: DW_FORM_indirect");
a8329558 19311 break;
c906108c 19312 default:
d97bc12b 19313 fprintf_unfiltered (f, "unsupported attribute form: %d.",
c5aa993b 19314 die->attrs[i].form);
d97bc12b 19315 break;
c906108c 19316 }
d97bc12b 19317 fprintf_unfiltered (f, "\n");
c906108c
SS
19318 }
19319}
19320
f9aca02d 19321static void
d97bc12b 19322dump_die_for_error (struct die_info *die)
c906108c 19323{
d97bc12b
DE
19324 dump_die_shallow (gdb_stderr, 0, die);
19325}
19326
19327static void
19328dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
19329{
19330 int indent = level * 4;
19331
19332 gdb_assert (die != NULL);
19333
19334 if (level >= max_level)
19335 return;
19336
19337 dump_die_shallow (f, indent, die);
19338
19339 if (die->child != NULL)
c906108c 19340 {
d97bc12b
DE
19341 print_spaces (indent, f);
19342 fprintf_unfiltered (f, " Children:");
19343 if (level + 1 < max_level)
19344 {
19345 fprintf_unfiltered (f, "\n");
19346 dump_die_1 (f, level + 1, max_level, die->child);
19347 }
19348 else
19349 {
3e43a32a
MS
19350 fprintf_unfiltered (f,
19351 " [not printed, max nesting level reached]\n");
d97bc12b
DE
19352 }
19353 }
19354
19355 if (die->sibling != NULL && level > 0)
19356 {
19357 dump_die_1 (f, level, max_level, die->sibling);
c906108c
SS
19358 }
19359}
19360
d97bc12b
DE
19361/* This is called from the pdie macro in gdbinit.in.
19362 It's not static so gcc will keep a copy callable from gdb. */
19363
19364void
19365dump_die (struct die_info *die, int max_level)
19366{
19367 dump_die_1 (gdb_stdlog, 0, max_level, die);
19368}
19369
f9aca02d 19370static void
51545339 19371store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
c906108c 19372{
51545339 19373 void **slot;
c906108c 19374
b64f50a1
JK
19375 slot = htab_find_slot_with_hash (cu->die_hash, die, die->offset.sect_off,
19376 INSERT);
51545339
DJ
19377
19378 *slot = die;
c906108c
SS
19379}
19380
b64f50a1
JK
19381/* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
19382 required kind. */
19383
19384static sect_offset
ff39bb5e 19385dwarf2_get_ref_die_offset (const struct attribute *attr)
93311388 19386{
4568ecf9 19387 sect_offset retval = { DW_UNSND (attr) };
b64f50a1 19388
7771576e 19389 if (attr_form_is_ref (attr))
b64f50a1 19390 return retval;
93311388 19391
b64f50a1 19392 retval.sect_off = 0;
93311388
DE
19393 complaint (&symfile_complaints,
19394 _("unsupported die ref attribute form: '%s'"),
19395 dwarf_form_name (attr->form));
b64f50a1 19396 return retval;
c906108c
SS
19397}
19398
43bbcdc2
PH
19399/* Return the constant value held by ATTR. Return DEFAULT_VALUE if
19400 * the value held by the attribute is not constant. */
a02abb62 19401
43bbcdc2 19402static LONGEST
ff39bb5e 19403dwarf2_get_attr_constant_value (const struct attribute *attr, int default_value)
a02abb62
JB
19404{
19405 if (attr->form == DW_FORM_sdata)
19406 return DW_SND (attr);
19407 else if (attr->form == DW_FORM_udata
19408 || attr->form == DW_FORM_data1
19409 || attr->form == DW_FORM_data2
19410 || attr->form == DW_FORM_data4
19411 || attr->form == DW_FORM_data8)
19412 return DW_UNSND (attr);
19413 else
19414 {
3e43a32a
MS
19415 complaint (&symfile_complaints,
19416 _("Attribute value is not a constant (%s)"),
a02abb62
JB
19417 dwarf_form_name (attr->form));
19418 return default_value;
19419 }
19420}
19421
348e048f
DE
19422/* Follow reference or signature attribute ATTR of SRC_DIE.
19423 On entry *REF_CU is the CU of SRC_DIE.
19424 On exit *REF_CU is the CU of the result. */
19425
19426static struct die_info *
ff39bb5e 19427follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
348e048f
DE
19428 struct dwarf2_cu **ref_cu)
19429{
19430 struct die_info *die;
19431
7771576e 19432 if (attr_form_is_ref (attr))
348e048f 19433 die = follow_die_ref (src_die, attr, ref_cu);
55f1336d 19434 else if (attr->form == DW_FORM_ref_sig8)
348e048f
DE
19435 die = follow_die_sig (src_die, attr, ref_cu);
19436 else
19437 {
19438 dump_die_for_error (src_die);
19439 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
4262abfb 19440 objfile_name ((*ref_cu)->objfile));
348e048f
DE
19441 }
19442
19443 return die;
03dd20cc
DJ
19444}
19445
5c631832 19446/* Follow reference OFFSET.
673bfd45
DE
19447 On entry *REF_CU is the CU of the source die referencing OFFSET.
19448 On exit *REF_CU is the CU of the result.
19449 Returns NULL if OFFSET is invalid. */
f504f079 19450
f9aca02d 19451static struct die_info *
36586728
TT
19452follow_die_offset (sect_offset offset, int offset_in_dwz,
19453 struct dwarf2_cu **ref_cu)
c906108c 19454{
10b3939b 19455 struct die_info temp_die;
f2f0e013 19456 struct dwarf2_cu *target_cu, *cu = *ref_cu;
10b3939b 19457
348e048f
DE
19458 gdb_assert (cu->per_cu != NULL);
19459
98bfdba5
PA
19460 target_cu = cu;
19461
3019eac3 19462 if (cu->per_cu->is_debug_types)
348e048f
DE
19463 {
19464 /* .debug_types CUs cannot reference anything outside their CU.
19465 If they need to, they have to reference a signatured type via
55f1336d 19466 DW_FORM_ref_sig8. */
348e048f 19467 if (! offset_in_cu_p (&cu->header, offset))
5c631832 19468 return NULL;
348e048f 19469 }
36586728
TT
19470 else if (offset_in_dwz != cu->per_cu->is_dwz
19471 || ! offset_in_cu_p (&cu->header, offset))
10b3939b
DJ
19472 {
19473 struct dwarf2_per_cu_data *per_cu;
9a619af0 19474
36586728
TT
19475 per_cu = dwarf2_find_containing_comp_unit (offset, offset_in_dwz,
19476 cu->objfile);
03dd20cc
DJ
19477
19478 /* If necessary, add it to the queue and load its DIEs. */
95554aad
TT
19479 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
19480 load_full_comp_unit (per_cu, cu->language);
03dd20cc 19481
10b3939b
DJ
19482 target_cu = per_cu->cu;
19483 }
98bfdba5
PA
19484 else if (cu->dies == NULL)
19485 {
19486 /* We're loading full DIEs during partial symbol reading. */
19487 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
95554aad 19488 load_full_comp_unit (cu->per_cu, language_minimal);
98bfdba5 19489 }
c906108c 19490
f2f0e013 19491 *ref_cu = target_cu;
51545339 19492 temp_die.offset = offset;
b64f50a1 19493 return htab_find_with_hash (target_cu->die_hash, &temp_die, offset.sect_off);
5c631832 19494}
10b3939b 19495
5c631832
JK
19496/* Follow reference attribute ATTR of SRC_DIE.
19497 On entry *REF_CU is the CU of SRC_DIE.
19498 On exit *REF_CU is the CU of the result. */
19499
19500static struct die_info *
ff39bb5e 19501follow_die_ref (struct die_info *src_die, const struct attribute *attr,
5c631832
JK
19502 struct dwarf2_cu **ref_cu)
19503{
b64f50a1 19504 sect_offset offset = dwarf2_get_ref_die_offset (attr);
5c631832
JK
19505 struct dwarf2_cu *cu = *ref_cu;
19506 struct die_info *die;
19507
36586728
TT
19508 die = follow_die_offset (offset,
19509 (attr->form == DW_FORM_GNU_ref_alt
19510 || cu->per_cu->is_dwz),
19511 ref_cu);
5c631832
JK
19512 if (!die)
19513 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced from DIE "
19514 "at 0x%x [in module %s]"),
4262abfb
JK
19515 offset.sect_off, src_die->offset.sect_off,
19516 objfile_name (cu->objfile));
348e048f 19517
5c631832
JK
19518 return die;
19519}
19520
d83e736b
JK
19521/* Return DWARF block referenced by DW_AT_location of DIE at OFFSET at PER_CU.
19522 Returned value is intended for DW_OP_call*. Returned
19523 dwarf2_locexpr_baton->data has lifetime of PER_CU->OBJFILE. */
5c631832
JK
19524
19525struct dwarf2_locexpr_baton
8b9737bf
TT
19526dwarf2_fetch_die_loc_sect_off (sect_offset offset,
19527 struct dwarf2_per_cu_data *per_cu,
19528 CORE_ADDR (*get_frame_pc) (void *baton),
19529 void *baton)
5c631832 19530{
918dd910 19531 struct dwarf2_cu *cu;
5c631832
JK
19532 struct die_info *die;
19533 struct attribute *attr;
19534 struct dwarf2_locexpr_baton retval;
19535
8cf6f0b1
TT
19536 dw2_setup (per_cu->objfile);
19537
918dd910
JK
19538 if (per_cu->cu == NULL)
19539 load_cu (per_cu);
19540 cu = per_cu->cu;
19541
36586728 19542 die = follow_die_offset (offset, per_cu->is_dwz, &cu);
5c631832
JK
19543 if (!die)
19544 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
4262abfb 19545 offset.sect_off, objfile_name (per_cu->objfile));
5c631832
JK
19546
19547 attr = dwarf2_attr (die, DW_AT_location, cu);
19548 if (!attr)
19549 {
e103e986
JK
19550 /* DWARF: "If there is no such attribute, then there is no effect.".
19551 DATA is ignored if SIZE is 0. */
5c631832 19552
e103e986 19553 retval.data = NULL;
5c631832
JK
19554 retval.size = 0;
19555 }
8cf6f0b1
TT
19556 else if (attr_form_is_section_offset (attr))
19557 {
19558 struct dwarf2_loclist_baton loclist_baton;
19559 CORE_ADDR pc = (*get_frame_pc) (baton);
19560 size_t size;
19561
19562 fill_in_loclist_baton (cu, &loclist_baton, attr);
19563
19564 retval.data = dwarf2_find_location_expression (&loclist_baton,
19565 &size, pc);
19566 retval.size = size;
19567 }
5c631832
JK
19568 else
19569 {
19570 if (!attr_form_is_block (attr))
19571 error (_("Dwarf Error: DIE at 0x%x referenced in module %s "
19572 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
4262abfb 19573 offset.sect_off, objfile_name (per_cu->objfile));
5c631832
JK
19574
19575 retval.data = DW_BLOCK (attr)->data;
19576 retval.size = DW_BLOCK (attr)->size;
19577 }
19578 retval.per_cu = cu->per_cu;
918dd910 19579
918dd910
JK
19580 age_cached_comp_units ();
19581
5c631832 19582 return retval;
348e048f
DE
19583}
19584
8b9737bf
TT
19585/* Like dwarf2_fetch_die_loc_sect_off, but take a CU
19586 offset. */
19587
19588struct dwarf2_locexpr_baton
19589dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
19590 struct dwarf2_per_cu_data *per_cu,
19591 CORE_ADDR (*get_frame_pc) (void *baton),
19592 void *baton)
19593{
19594 sect_offset offset = { per_cu->offset.sect_off + offset_in_cu.cu_off };
19595
19596 return dwarf2_fetch_die_loc_sect_off (offset, per_cu, get_frame_pc, baton);
19597}
19598
b6807d98
TT
19599/* Write a constant of a given type as target-ordered bytes into
19600 OBSTACK. */
19601
19602static const gdb_byte *
19603write_constant_as_bytes (struct obstack *obstack,
19604 enum bfd_endian byte_order,
19605 struct type *type,
19606 ULONGEST value,
19607 LONGEST *len)
19608{
19609 gdb_byte *result;
19610
19611 *len = TYPE_LENGTH (type);
19612 result = obstack_alloc (obstack, *len);
19613 store_unsigned_integer (result, *len, byte_order, value);
19614
19615 return result;
19616}
19617
19618/* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
19619 pointer to the constant bytes and set LEN to the length of the
19620 data. If memory is needed, allocate it on OBSTACK. If the DIE
19621 does not have a DW_AT_const_value, return NULL. */
19622
19623const gdb_byte *
19624dwarf2_fetch_constant_bytes (sect_offset offset,
19625 struct dwarf2_per_cu_data *per_cu,
19626 struct obstack *obstack,
19627 LONGEST *len)
19628{
19629 struct dwarf2_cu *cu;
19630 struct die_info *die;
19631 struct attribute *attr;
19632 const gdb_byte *result = NULL;
19633 struct type *type;
19634 LONGEST value;
19635 enum bfd_endian byte_order;
19636
19637 dw2_setup (per_cu->objfile);
19638
19639 if (per_cu->cu == NULL)
19640 load_cu (per_cu);
19641 cu = per_cu->cu;
19642
19643 die = follow_die_offset (offset, per_cu->is_dwz, &cu);
19644 if (!die)
19645 error (_("Dwarf Error: Cannot find DIE at 0x%x referenced in module %s"),
4262abfb 19646 offset.sect_off, objfile_name (per_cu->objfile));
b6807d98
TT
19647
19648
19649 attr = dwarf2_attr (die, DW_AT_const_value, cu);
19650 if (attr == NULL)
19651 return NULL;
19652
19653 byte_order = (bfd_big_endian (per_cu->objfile->obfd)
19654 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
19655
19656 switch (attr->form)
19657 {
19658 case DW_FORM_addr:
19659 case DW_FORM_GNU_addr_index:
19660 {
19661 gdb_byte *tem;
19662
19663 *len = cu->header.addr_size;
19664 tem = obstack_alloc (obstack, *len);
19665 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
19666 result = tem;
19667 }
19668 break;
19669 case DW_FORM_string:
19670 case DW_FORM_strp:
19671 case DW_FORM_GNU_str_index:
19672 case DW_FORM_GNU_strp_alt:
19673 /* DW_STRING is already allocated on the objfile obstack, point
19674 directly to it. */
19675 result = (const gdb_byte *) DW_STRING (attr);
19676 *len = strlen (DW_STRING (attr));
19677 break;
19678 case DW_FORM_block1:
19679 case DW_FORM_block2:
19680 case DW_FORM_block4:
19681 case DW_FORM_block:
19682 case DW_FORM_exprloc:
19683 result = DW_BLOCK (attr)->data;
19684 *len = DW_BLOCK (attr)->size;
19685 break;
19686
19687 /* The DW_AT_const_value attributes are supposed to carry the
19688 symbol's value "represented as it would be on the target
19689 architecture." By the time we get here, it's already been
19690 converted to host endianness, so we just need to sign- or
19691 zero-extend it as appropriate. */
19692 case DW_FORM_data1:
19693 type = die_type (die, cu);
19694 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
19695 if (result == NULL)
19696 result = write_constant_as_bytes (obstack, byte_order,
19697 type, value, len);
19698 break;
19699 case DW_FORM_data2:
19700 type = die_type (die, cu);
19701 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
19702 if (result == NULL)
19703 result = write_constant_as_bytes (obstack, byte_order,
19704 type, value, len);
19705 break;
19706 case DW_FORM_data4:
19707 type = die_type (die, cu);
19708 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
19709 if (result == NULL)
19710 result = write_constant_as_bytes (obstack, byte_order,
19711 type, value, len);
19712 break;
19713 case DW_FORM_data8:
19714 type = die_type (die, cu);
19715 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
19716 if (result == NULL)
19717 result = write_constant_as_bytes (obstack, byte_order,
19718 type, value, len);
19719 break;
19720
19721 case DW_FORM_sdata:
19722 type = die_type (die, cu);
19723 result = write_constant_as_bytes (obstack, byte_order,
19724 type, DW_SND (attr), len);
19725 break;
19726
19727 case DW_FORM_udata:
19728 type = die_type (die, cu);
19729 result = write_constant_as_bytes (obstack, byte_order,
19730 type, DW_UNSND (attr), len);
19731 break;
19732
19733 default:
19734 complaint (&symfile_complaints,
19735 _("unsupported const value attribute form: '%s'"),
19736 dwarf_form_name (attr->form));
19737 break;
19738 }
19739
19740 return result;
19741}
19742
8a9b8146
TT
19743/* Return the type of the DIE at DIE_OFFSET in the CU named by
19744 PER_CU. */
19745
19746struct type *
b64f50a1 19747dwarf2_get_die_type (cu_offset die_offset,
8a9b8146
TT
19748 struct dwarf2_per_cu_data *per_cu)
19749{
b64f50a1
JK
19750 sect_offset die_offset_sect;
19751
8a9b8146 19752 dw2_setup (per_cu->objfile);
b64f50a1
JK
19753
19754 die_offset_sect.sect_off = per_cu->offset.sect_off + die_offset.cu_off;
19755 return get_die_type_at_offset (die_offset_sect, per_cu);
8a9b8146
TT
19756}
19757
ac9ec31b 19758/* Follow type unit SIG_TYPE referenced by SRC_DIE.
348e048f 19759 On entry *REF_CU is the CU of SRC_DIE.
ac9ec31b
DE
19760 On exit *REF_CU is the CU of the result.
19761 Returns NULL if the referenced DIE isn't found. */
348e048f
DE
19762
19763static struct die_info *
ac9ec31b
DE
19764follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
19765 struct dwarf2_cu **ref_cu)
348e048f
DE
19766{
19767 struct objfile *objfile = (*ref_cu)->objfile;
19768 struct die_info temp_die;
348e048f
DE
19769 struct dwarf2_cu *sig_cu;
19770 struct die_info *die;
19771
ac9ec31b
DE
19772 /* While it might be nice to assert sig_type->type == NULL here,
19773 we can get here for DW_AT_imported_declaration where we need
19774 the DIE not the type. */
348e048f
DE
19775
19776 /* If necessary, add it to the queue and load its DIEs. */
19777
95554aad 19778 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
a0f42c21 19779 read_signatured_type (sig_type);
348e048f 19780
348e048f 19781 sig_cu = sig_type->per_cu.cu;
69d751e3 19782 gdb_assert (sig_cu != NULL);
3019eac3
DE
19783 gdb_assert (sig_type->type_offset_in_section.sect_off != 0);
19784 temp_die.offset = sig_type->type_offset_in_section;
b64f50a1
JK
19785 die = htab_find_with_hash (sig_cu->die_hash, &temp_die,
19786 temp_die.offset.sect_off);
348e048f
DE
19787 if (die)
19788 {
796a7ff8
DE
19789 /* For .gdb_index version 7 keep track of included TUs.
19790 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
19791 if (dwarf2_per_objfile->index_table != NULL
19792 && dwarf2_per_objfile->index_table->version <= 7)
19793 {
19794 VEC_safe_push (dwarf2_per_cu_ptr,
19795 (*ref_cu)->per_cu->imported_symtabs,
19796 sig_cu->per_cu);
19797 }
19798
348e048f
DE
19799 *ref_cu = sig_cu;
19800 return die;
19801 }
19802
ac9ec31b
DE
19803 return NULL;
19804}
19805
19806/* Follow signatured type referenced by ATTR in SRC_DIE.
19807 On entry *REF_CU is the CU of SRC_DIE.
19808 On exit *REF_CU is the CU of the result.
19809 The result is the DIE of the type.
19810 If the referenced type cannot be found an error is thrown. */
19811
19812static struct die_info *
ff39bb5e 19813follow_die_sig (struct die_info *src_die, const struct attribute *attr,
ac9ec31b
DE
19814 struct dwarf2_cu **ref_cu)
19815{
19816 ULONGEST signature = DW_SIGNATURE (attr);
19817 struct signatured_type *sig_type;
19818 struct die_info *die;
19819
19820 gdb_assert (attr->form == DW_FORM_ref_sig8);
19821
a2ce51a0 19822 sig_type = lookup_signatured_type (*ref_cu, signature);
ac9ec31b
DE
19823 /* sig_type will be NULL if the signatured type is missing from
19824 the debug info. */
19825 if (sig_type == NULL)
19826 {
19827 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
19828 " from DIE at 0x%x [in module %s]"),
19829 hex_string (signature), src_die->offset.sect_off,
4262abfb 19830 objfile_name ((*ref_cu)->objfile));
ac9ec31b
DE
19831 }
19832
19833 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
19834 if (die == NULL)
19835 {
19836 dump_die_for_error (src_die);
19837 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
19838 " from DIE at 0x%x [in module %s]"),
19839 hex_string (signature), src_die->offset.sect_off,
4262abfb 19840 objfile_name ((*ref_cu)->objfile));
ac9ec31b
DE
19841 }
19842
19843 return die;
19844}
19845
19846/* Get the type specified by SIGNATURE referenced in DIE/CU,
19847 reading in and processing the type unit if necessary. */
19848
19849static struct type *
19850get_signatured_type (struct die_info *die, ULONGEST signature,
19851 struct dwarf2_cu *cu)
19852{
19853 struct signatured_type *sig_type;
19854 struct dwarf2_cu *type_cu;
19855 struct die_info *type_die;
19856 struct type *type;
19857
a2ce51a0 19858 sig_type = lookup_signatured_type (cu, signature);
ac9ec31b
DE
19859 /* sig_type will be NULL if the signatured type is missing from
19860 the debug info. */
19861 if (sig_type == NULL)
19862 {
19863 complaint (&symfile_complaints,
19864 _("Dwarf Error: Cannot find signatured DIE %s referenced"
19865 " from DIE at 0x%x [in module %s]"),
19866 hex_string (signature), die->offset.sect_off,
4262abfb 19867 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
19868 return build_error_marker_type (cu, die);
19869 }
19870
19871 /* If we already know the type we're done. */
19872 if (sig_type->type != NULL)
19873 return sig_type->type;
19874
19875 type_cu = cu;
19876 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
19877 if (type_die != NULL)
19878 {
19879 /* N.B. We need to call get_die_type to ensure only one type for this DIE
19880 is created. This is important, for example, because for c++ classes
19881 we need TYPE_NAME set which is only done by new_symbol. Blech. */
19882 type = read_type_die (type_die, type_cu);
19883 if (type == NULL)
19884 {
19885 complaint (&symfile_complaints,
19886 _("Dwarf Error: Cannot build signatured type %s"
19887 " referenced from DIE at 0x%x [in module %s]"),
19888 hex_string (signature), die->offset.sect_off,
4262abfb 19889 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
19890 type = build_error_marker_type (cu, die);
19891 }
19892 }
19893 else
19894 {
19895 complaint (&symfile_complaints,
19896 _("Dwarf Error: Problem reading signatured DIE %s referenced"
19897 " from DIE at 0x%x [in module %s]"),
19898 hex_string (signature), die->offset.sect_off,
4262abfb 19899 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
19900 type = build_error_marker_type (cu, die);
19901 }
19902 sig_type->type = type;
19903
19904 return type;
19905}
19906
19907/* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
19908 reading in and processing the type unit if necessary. */
19909
19910static struct type *
ff39bb5e 19911get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
b385a60d 19912 struct dwarf2_cu *cu) /* ARI: editCase function */
ac9ec31b
DE
19913{
19914 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
7771576e 19915 if (attr_form_is_ref (attr))
ac9ec31b
DE
19916 {
19917 struct dwarf2_cu *type_cu = cu;
19918 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
19919
19920 return read_type_die (type_die, type_cu);
19921 }
19922 else if (attr->form == DW_FORM_ref_sig8)
19923 {
19924 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
19925 }
19926 else
19927 {
19928 complaint (&symfile_complaints,
19929 _("Dwarf Error: DW_AT_signature has bad form %s in DIE"
19930 " at 0x%x [in module %s]"),
19931 dwarf_form_name (attr->form), die->offset.sect_off,
4262abfb 19932 objfile_name (dwarf2_per_objfile->objfile));
ac9ec31b
DE
19933 return build_error_marker_type (cu, die);
19934 }
348e048f
DE
19935}
19936
e5fe5e75 19937/* Load the DIEs associated with type unit PER_CU into memory. */
348e048f
DE
19938
19939static void
e5fe5e75 19940load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
348e048f 19941{
52dc124a 19942 struct signatured_type *sig_type;
348e048f 19943
f4dc4d17
DE
19944 /* Caller is responsible for ensuring type_unit_groups don't get here. */
19945 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
19946
6721b2ec
DE
19947 /* We have the per_cu, but we need the signatured_type.
19948 Fortunately this is an easy translation. */
19949 gdb_assert (per_cu->is_debug_types);
19950 sig_type = (struct signatured_type *) per_cu;
348e048f 19951
6721b2ec 19952 gdb_assert (per_cu->cu == NULL);
348e048f 19953
52dc124a 19954 read_signatured_type (sig_type);
348e048f 19955
6721b2ec 19956 gdb_assert (per_cu->cu != NULL);
348e048f
DE
19957}
19958
dee91e82
DE
19959/* die_reader_func for read_signatured_type.
19960 This is identical to load_full_comp_unit_reader,
19961 but is kept separate for now. */
348e048f
DE
19962
19963static void
dee91e82 19964read_signatured_type_reader (const struct die_reader_specs *reader,
d521ce57 19965 const gdb_byte *info_ptr,
dee91e82
DE
19966 struct die_info *comp_unit_die,
19967 int has_children,
19968 void *data)
348e048f 19969{
dee91e82 19970 struct dwarf2_cu *cu = reader->cu;
348e048f 19971
dee91e82
DE
19972 gdb_assert (cu->die_hash == NULL);
19973 cu->die_hash =
19974 htab_create_alloc_ex (cu->header.length / 12,
19975 die_hash,
19976 die_eq,
19977 NULL,
19978 &cu->comp_unit_obstack,
19979 hashtab_obstack_allocate,
19980 dummy_obstack_deallocate);
348e048f 19981
dee91e82
DE
19982 if (has_children)
19983 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
19984 &info_ptr, comp_unit_die);
19985 cu->dies = comp_unit_die;
19986 /* comp_unit_die is not stored in die_hash, no need. */
348e048f
DE
19987
19988 /* We try not to read any attributes in this function, because not
9cdd5dbd 19989 all CUs needed for references have been loaded yet, and symbol
348e048f 19990 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
19991 or we won't be able to build types correctly.
19992 Similarly, if we do not read the producer, we can not apply
19993 producer-specific interpretation. */
95554aad 19994 prepare_one_comp_unit (cu, cu->dies, language_minimal);
dee91e82 19995}
348e048f 19996
3019eac3
DE
19997/* Read in a signatured type and build its CU and DIEs.
19998 If the type is a stub for the real type in a DWO file,
19999 read in the real type from the DWO file as well. */
dee91e82
DE
20000
20001static void
20002read_signatured_type (struct signatured_type *sig_type)
20003{
20004 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
348e048f 20005
3019eac3 20006 gdb_assert (per_cu->is_debug_types);
dee91e82 20007 gdb_assert (per_cu->cu == NULL);
348e048f 20008
f4dc4d17
DE
20009 init_cutu_and_read_dies (per_cu, NULL, 0, 1,
20010 read_signatured_type_reader, NULL);
7ee85ab1 20011 sig_type->per_cu.tu_read = 1;
c906108c
SS
20012}
20013
c906108c
SS
20014/* Decode simple location descriptions.
20015 Given a pointer to a dwarf block that defines a location, compute
20016 the location and return the value.
20017
4cecd739
DJ
20018 NOTE drow/2003-11-18: This function is called in two situations
20019 now: for the address of static or global variables (partial symbols
20020 only) and for offsets into structures which are expected to be
20021 (more or less) constant. The partial symbol case should go away,
20022 and only the constant case should remain. That will let this
20023 function complain more accurately. A few special modes are allowed
20024 without complaint for global variables (for instance, global
20025 register values and thread-local values).
c906108c
SS
20026
20027 A location description containing no operations indicates that the
4cecd739 20028 object is optimized out. The return value is 0 for that case.
6b992462
DJ
20029 FIXME drow/2003-11-16: No callers check for this case any more; soon all
20030 callers will only want a very basic result and this can become a
21ae7a4d
JK
20031 complaint.
20032
20033 Note that stack[0] is unused except as a default error return. */
c906108c
SS
20034
20035static CORE_ADDR
e7c27a73 20036decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
c906108c 20037{
e7c27a73 20038 struct objfile *objfile = cu->objfile;
56eb65bd
SP
20039 size_t i;
20040 size_t size = blk->size;
d521ce57 20041 const gdb_byte *data = blk->data;
21ae7a4d
JK
20042 CORE_ADDR stack[64];
20043 int stacki;
20044 unsigned int bytes_read, unsnd;
20045 gdb_byte op;
c906108c 20046
21ae7a4d
JK
20047 i = 0;
20048 stacki = 0;
20049 stack[stacki] = 0;
20050 stack[++stacki] = 0;
20051
20052 while (i < size)
20053 {
20054 op = data[i++];
20055 switch (op)
20056 {
20057 case DW_OP_lit0:
20058 case DW_OP_lit1:
20059 case DW_OP_lit2:
20060 case DW_OP_lit3:
20061 case DW_OP_lit4:
20062 case DW_OP_lit5:
20063 case DW_OP_lit6:
20064 case DW_OP_lit7:
20065 case DW_OP_lit8:
20066 case DW_OP_lit9:
20067 case DW_OP_lit10:
20068 case DW_OP_lit11:
20069 case DW_OP_lit12:
20070 case DW_OP_lit13:
20071 case DW_OP_lit14:
20072 case DW_OP_lit15:
20073 case DW_OP_lit16:
20074 case DW_OP_lit17:
20075 case DW_OP_lit18:
20076 case DW_OP_lit19:
20077 case DW_OP_lit20:
20078 case DW_OP_lit21:
20079 case DW_OP_lit22:
20080 case DW_OP_lit23:
20081 case DW_OP_lit24:
20082 case DW_OP_lit25:
20083 case DW_OP_lit26:
20084 case DW_OP_lit27:
20085 case DW_OP_lit28:
20086 case DW_OP_lit29:
20087 case DW_OP_lit30:
20088 case DW_OP_lit31:
20089 stack[++stacki] = op - DW_OP_lit0;
20090 break;
f1bea926 20091
21ae7a4d
JK
20092 case DW_OP_reg0:
20093 case DW_OP_reg1:
20094 case DW_OP_reg2:
20095 case DW_OP_reg3:
20096 case DW_OP_reg4:
20097 case DW_OP_reg5:
20098 case DW_OP_reg6:
20099 case DW_OP_reg7:
20100 case DW_OP_reg8:
20101 case DW_OP_reg9:
20102 case DW_OP_reg10:
20103 case DW_OP_reg11:
20104 case DW_OP_reg12:
20105 case DW_OP_reg13:
20106 case DW_OP_reg14:
20107 case DW_OP_reg15:
20108 case DW_OP_reg16:
20109 case DW_OP_reg17:
20110 case DW_OP_reg18:
20111 case DW_OP_reg19:
20112 case DW_OP_reg20:
20113 case DW_OP_reg21:
20114 case DW_OP_reg22:
20115 case DW_OP_reg23:
20116 case DW_OP_reg24:
20117 case DW_OP_reg25:
20118 case DW_OP_reg26:
20119 case DW_OP_reg27:
20120 case DW_OP_reg28:
20121 case DW_OP_reg29:
20122 case DW_OP_reg30:
20123 case DW_OP_reg31:
20124 stack[++stacki] = op - DW_OP_reg0;
20125 if (i < size)
20126 dwarf2_complex_location_expr_complaint ();
20127 break;
c906108c 20128
21ae7a4d
JK
20129 case DW_OP_regx:
20130 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
20131 i += bytes_read;
20132 stack[++stacki] = unsnd;
20133 if (i < size)
20134 dwarf2_complex_location_expr_complaint ();
20135 break;
c906108c 20136
21ae7a4d
JK
20137 case DW_OP_addr:
20138 stack[++stacki] = read_address (objfile->obfd, &data[i],
20139 cu, &bytes_read);
20140 i += bytes_read;
20141 break;
d53d4ac5 20142
21ae7a4d
JK
20143 case DW_OP_const1u:
20144 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
20145 i += 1;
20146 break;
20147
20148 case DW_OP_const1s:
20149 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
20150 i += 1;
20151 break;
20152
20153 case DW_OP_const2u:
20154 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
20155 i += 2;
20156 break;
20157
20158 case DW_OP_const2s:
20159 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
20160 i += 2;
20161 break;
d53d4ac5 20162
21ae7a4d
JK
20163 case DW_OP_const4u:
20164 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
20165 i += 4;
20166 break;
20167
20168 case DW_OP_const4s:
20169 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
20170 i += 4;
20171 break;
20172
585861ea
JK
20173 case DW_OP_const8u:
20174 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
20175 i += 8;
20176 break;
20177
21ae7a4d
JK
20178 case DW_OP_constu:
20179 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
20180 &bytes_read);
20181 i += bytes_read;
20182 break;
20183
20184 case DW_OP_consts:
20185 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
20186 i += bytes_read;
20187 break;
20188
20189 case DW_OP_dup:
20190 stack[stacki + 1] = stack[stacki];
20191 stacki++;
20192 break;
20193
20194 case DW_OP_plus:
20195 stack[stacki - 1] += stack[stacki];
20196 stacki--;
20197 break;
20198
20199 case DW_OP_plus_uconst:
20200 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
20201 &bytes_read);
20202 i += bytes_read;
20203 break;
20204
20205 case DW_OP_minus:
20206 stack[stacki - 1] -= stack[stacki];
20207 stacki--;
20208 break;
20209
20210 case DW_OP_deref:
20211 /* If we're not the last op, then we definitely can't encode
20212 this using GDB's address_class enum. This is valid for partial
20213 global symbols, although the variable's address will be bogus
20214 in the psymtab. */
20215 if (i < size)
20216 dwarf2_complex_location_expr_complaint ();
20217 break;
20218
20219 case DW_OP_GNU_push_tls_address:
20220 /* The top of the stack has the offset from the beginning
20221 of the thread control block at which the variable is located. */
20222 /* Nothing should follow this operator, so the top of stack would
20223 be returned. */
20224 /* This is valid for partial global symbols, but the variable's
585861ea
JK
20225 address will be bogus in the psymtab. Make it always at least
20226 non-zero to not look as a variable garbage collected by linker
20227 which have DW_OP_addr 0. */
21ae7a4d
JK
20228 if (i < size)
20229 dwarf2_complex_location_expr_complaint ();
585861ea 20230 stack[stacki]++;
21ae7a4d
JK
20231 break;
20232
20233 case DW_OP_GNU_uninit:
20234 break;
20235
3019eac3 20236 case DW_OP_GNU_addr_index:
49f6c839 20237 case DW_OP_GNU_const_index:
3019eac3
DE
20238 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
20239 &bytes_read);
20240 i += bytes_read;
20241 break;
20242
21ae7a4d
JK
20243 default:
20244 {
f39c6ffd 20245 const char *name = get_DW_OP_name (op);
21ae7a4d
JK
20246
20247 if (name)
20248 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
20249 name);
20250 else
20251 complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
20252 op);
20253 }
20254
20255 return (stack[stacki]);
d53d4ac5 20256 }
3c6e0cb3 20257
21ae7a4d
JK
20258 /* Enforce maximum stack depth of SIZE-1 to avoid writing
20259 outside of the allocated space. Also enforce minimum>0. */
20260 if (stacki >= ARRAY_SIZE (stack) - 1)
20261 {
20262 complaint (&symfile_complaints,
20263 _("location description stack overflow"));
20264 return 0;
20265 }
20266
20267 if (stacki <= 0)
20268 {
20269 complaint (&symfile_complaints,
20270 _("location description stack underflow"));
20271 return 0;
20272 }
20273 }
20274 return (stack[stacki]);
c906108c
SS
20275}
20276
20277/* memory allocation interface */
20278
c906108c 20279static struct dwarf_block *
7b5a2f43 20280dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c
SS
20281{
20282 struct dwarf_block *blk;
20283
20284 blk = (struct dwarf_block *)
7b5a2f43 20285 obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block));
c906108c
SS
20286 return (blk);
20287}
20288
c906108c 20289static struct die_info *
b60c80d6 20290dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
c906108c
SS
20291{
20292 struct die_info *die;
b60c80d6
DJ
20293 size_t size = sizeof (struct die_info);
20294
20295 if (num_attrs > 1)
20296 size += (num_attrs - 1) * sizeof (struct attribute);
c906108c 20297
b60c80d6 20298 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
c906108c
SS
20299 memset (die, 0, sizeof (struct die_info));
20300 return (die);
20301}
2e276125
JB
20302
20303\f
20304/* Macro support. */
20305
233d95b5
JK
20306/* Return file name relative to the compilation directory of file number I in
20307 *LH's file name table. The result is allocated using xmalloc; the caller is
2e276125 20308 responsible for freeing it. */
233d95b5 20309
2e276125 20310static char *
233d95b5 20311file_file_name (int file, struct line_header *lh)
2e276125 20312{
6a83a1e6
EZ
20313 /* Is the file number a valid index into the line header's file name
20314 table? Remember that file numbers start with one, not zero. */
20315 if (1 <= file && file <= lh->num_file_names)
20316 {
20317 struct file_entry *fe = &lh->file_names[file - 1];
6e70227d 20318
233d95b5 20319 if (IS_ABSOLUTE_PATH (fe->name) || fe->dir_index == 0)
6a83a1e6 20320 return xstrdup (fe->name);
233d95b5
JK
20321 return concat (lh->include_dirs[fe->dir_index - 1], SLASH_STRING,
20322 fe->name, NULL);
6a83a1e6 20323 }
2e276125
JB
20324 else
20325 {
6a83a1e6
EZ
20326 /* The compiler produced a bogus file number. We can at least
20327 record the macro definitions made in the file, even if we
20328 won't be able to find the file by name. */
20329 char fake_name[80];
9a619af0 20330
8c042590
PM
20331 xsnprintf (fake_name, sizeof (fake_name),
20332 "<bad macro file number %d>", file);
2e276125 20333
6e70227d 20334 complaint (&symfile_complaints,
6a83a1e6
EZ
20335 _("bad file number in macro information (%d)"),
20336 file);
2e276125 20337
6a83a1e6 20338 return xstrdup (fake_name);
2e276125
JB
20339 }
20340}
20341
233d95b5
JK
20342/* Return the full name of file number I in *LH's file name table.
20343 Use COMP_DIR as the name of the current directory of the
20344 compilation. The result is allocated using xmalloc; the caller is
20345 responsible for freeing it. */
20346static char *
20347file_full_name (int file, struct line_header *lh, const char *comp_dir)
20348{
20349 /* Is the file number a valid index into the line header's file name
20350 table? Remember that file numbers start with one, not zero. */
20351 if (1 <= file && file <= lh->num_file_names)
20352 {
20353 char *relative = file_file_name (file, lh);
20354
20355 if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
20356 return relative;
20357 return reconcat (relative, comp_dir, SLASH_STRING, relative, NULL);
20358 }
20359 else
20360 return file_file_name (file, lh);
20361}
20362
2e276125
JB
20363
20364static struct macro_source_file *
20365macro_start_file (int file, int line,
20366 struct macro_source_file *current_file,
20367 const char *comp_dir,
20368 struct line_header *lh, struct objfile *objfile)
20369{
233d95b5
JK
20370 /* File name relative to the compilation directory of this source file. */
20371 char *file_name = file_file_name (file, lh);
2e276125 20372
2e276125 20373 if (! current_file)
abc9d0dc 20374 {
fc474241
DE
20375 /* Note: We don't create a macro table for this compilation unit
20376 at all until we actually get a filename. */
20377 struct macro_table *macro_table = get_macro_table (objfile, comp_dir);
20378
abc9d0dc
TT
20379 /* If we have no current file, then this must be the start_file
20380 directive for the compilation unit's main source file. */
fc474241
DE
20381 current_file = macro_set_main (macro_table, file_name);
20382 macro_define_special (macro_table);
abc9d0dc 20383 }
2e276125 20384 else
233d95b5 20385 current_file = macro_include (current_file, line, file_name);
2e276125 20386
233d95b5 20387 xfree (file_name);
6e70227d 20388
2e276125
JB
20389 return current_file;
20390}
20391
20392
20393/* Copy the LEN characters at BUF to a xmalloc'ed block of memory,
20394 followed by a null byte. */
20395static char *
20396copy_string (const char *buf, int len)
20397{
20398 char *s = xmalloc (len + 1);
9a619af0 20399
2e276125
JB
20400 memcpy (s, buf, len);
20401 s[len] = '\0';
2e276125
JB
20402 return s;
20403}
20404
20405
20406static const char *
20407consume_improper_spaces (const char *p, const char *body)
20408{
20409 if (*p == ' ')
20410 {
4d3c2250 20411 complaint (&symfile_complaints,
3e43a32a
MS
20412 _("macro definition contains spaces "
20413 "in formal argument list:\n`%s'"),
4d3c2250 20414 body);
2e276125
JB
20415
20416 while (*p == ' ')
20417 p++;
20418 }
20419
20420 return p;
20421}
20422
20423
20424static void
20425parse_macro_definition (struct macro_source_file *file, int line,
20426 const char *body)
20427{
20428 const char *p;
20429
20430 /* The body string takes one of two forms. For object-like macro
20431 definitions, it should be:
20432
20433 <macro name> " " <definition>
20434
20435 For function-like macro definitions, it should be:
20436
20437 <macro name> "() " <definition>
20438 or
20439 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
20440
20441 Spaces may appear only where explicitly indicated, and in the
20442 <definition>.
20443
20444 The Dwarf 2 spec says that an object-like macro's name is always
20445 followed by a space, but versions of GCC around March 2002 omit
6e70227d 20446 the space when the macro's definition is the empty string.
2e276125
JB
20447
20448 The Dwarf 2 spec says that there should be no spaces between the
20449 formal arguments in a function-like macro's formal argument list,
20450 but versions of GCC around March 2002 include spaces after the
20451 commas. */
20452
20453
20454 /* Find the extent of the macro name. The macro name is terminated
20455 by either a space or null character (for an object-like macro) or
20456 an opening paren (for a function-like macro). */
20457 for (p = body; *p; p++)
20458 if (*p == ' ' || *p == '(')
20459 break;
20460
20461 if (*p == ' ' || *p == '\0')
20462 {
20463 /* It's an object-like macro. */
20464 int name_len = p - body;
20465 char *name = copy_string (body, name_len);
20466 const char *replacement;
20467
20468 if (*p == ' ')
20469 replacement = body + name_len + 1;
20470 else
20471 {
4d3c2250 20472 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
20473 replacement = body + name_len;
20474 }
6e70227d 20475
2e276125
JB
20476 macro_define_object (file, line, name, replacement);
20477
20478 xfree (name);
20479 }
20480 else if (*p == '(')
20481 {
20482 /* It's a function-like macro. */
20483 char *name = copy_string (body, p - body);
20484 int argc = 0;
20485 int argv_size = 1;
20486 char **argv = xmalloc (argv_size * sizeof (*argv));
20487
20488 p++;
20489
20490 p = consume_improper_spaces (p, body);
20491
20492 /* Parse the formal argument list. */
20493 while (*p && *p != ')')
20494 {
20495 /* Find the extent of the current argument name. */
20496 const char *arg_start = p;
20497
20498 while (*p && *p != ',' && *p != ')' && *p != ' ')
20499 p++;
20500
20501 if (! *p || p == arg_start)
4d3c2250 20502 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
20503 else
20504 {
20505 /* Make sure argv has room for the new argument. */
20506 if (argc >= argv_size)
20507 {
20508 argv_size *= 2;
20509 argv = xrealloc (argv, argv_size * sizeof (*argv));
20510 }
20511
20512 argv[argc++] = copy_string (arg_start, p - arg_start);
20513 }
20514
20515 p = consume_improper_spaces (p, body);
20516
20517 /* Consume the comma, if present. */
20518 if (*p == ',')
20519 {
20520 p++;
20521
20522 p = consume_improper_spaces (p, body);
20523 }
20524 }
20525
20526 if (*p == ')')
20527 {
20528 p++;
20529
20530 if (*p == ' ')
20531 /* Perfectly formed definition, no complaints. */
20532 macro_define_function (file, line, name,
6e70227d 20533 argc, (const char **) argv,
2e276125
JB
20534 p + 1);
20535 else if (*p == '\0')
20536 {
20537 /* Complain, but do define it. */
4d3c2250 20538 dwarf2_macro_malformed_definition_complaint (body);
2e276125 20539 macro_define_function (file, line, name,
6e70227d 20540 argc, (const char **) argv,
2e276125
JB
20541 p);
20542 }
20543 else
20544 /* Just complain. */
4d3c2250 20545 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
20546 }
20547 else
20548 /* Just complain. */
4d3c2250 20549 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
20550
20551 xfree (name);
20552 {
20553 int i;
20554
20555 for (i = 0; i < argc; i++)
20556 xfree (argv[i]);
20557 }
20558 xfree (argv);
20559 }
20560 else
4d3c2250 20561 dwarf2_macro_malformed_definition_complaint (body);
2e276125
JB
20562}
20563
cf2c3c16
TT
20564/* Skip some bytes from BYTES according to the form given in FORM.
20565 Returns the new pointer. */
2e276125 20566
d521ce57
TT
20567static const gdb_byte *
20568skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
cf2c3c16
TT
20569 enum dwarf_form form,
20570 unsigned int offset_size,
20571 struct dwarf2_section_info *section)
2e276125 20572{
cf2c3c16 20573 unsigned int bytes_read;
2e276125 20574
cf2c3c16 20575 switch (form)
2e276125 20576 {
cf2c3c16
TT
20577 case DW_FORM_data1:
20578 case DW_FORM_flag:
20579 ++bytes;
20580 break;
20581
20582 case DW_FORM_data2:
20583 bytes += 2;
20584 break;
20585
20586 case DW_FORM_data4:
20587 bytes += 4;
20588 break;
20589
20590 case DW_FORM_data8:
20591 bytes += 8;
20592 break;
20593
20594 case DW_FORM_string:
20595 read_direct_string (abfd, bytes, &bytes_read);
20596 bytes += bytes_read;
20597 break;
20598
20599 case DW_FORM_sec_offset:
20600 case DW_FORM_strp:
36586728 20601 case DW_FORM_GNU_strp_alt:
cf2c3c16
TT
20602 bytes += offset_size;
20603 break;
20604
20605 case DW_FORM_block:
20606 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
20607 bytes += bytes_read;
20608 break;
20609
20610 case DW_FORM_block1:
20611 bytes += 1 + read_1_byte (abfd, bytes);
20612 break;
20613 case DW_FORM_block2:
20614 bytes += 2 + read_2_bytes (abfd, bytes);
20615 break;
20616 case DW_FORM_block4:
20617 bytes += 4 + read_4_bytes (abfd, bytes);
20618 break;
20619
20620 case DW_FORM_sdata:
20621 case DW_FORM_udata:
3019eac3
DE
20622 case DW_FORM_GNU_addr_index:
20623 case DW_FORM_GNU_str_index:
d521ce57 20624 bytes = gdb_skip_leb128 (bytes, buffer_end);
f664829e
DE
20625 if (bytes == NULL)
20626 {
20627 dwarf2_section_buffer_overflow_complaint (section);
20628 return NULL;
20629 }
cf2c3c16
TT
20630 break;
20631
20632 default:
20633 {
20634 complain:
20635 complaint (&symfile_complaints,
20636 _("invalid form 0x%x in `%s'"),
a32a8923 20637 form, get_section_name (section));
cf2c3c16
TT
20638 return NULL;
20639 }
2e276125
JB
20640 }
20641
cf2c3c16
TT
20642 return bytes;
20643}
757a13d0 20644
cf2c3c16
TT
20645/* A helper for dwarf_decode_macros that handles skipping an unknown
20646 opcode. Returns an updated pointer to the macro data buffer; or,
20647 on error, issues a complaint and returns NULL. */
757a13d0 20648
d521ce57 20649static const gdb_byte *
cf2c3c16 20650skip_unknown_opcode (unsigned int opcode,
d521ce57
TT
20651 const gdb_byte **opcode_definitions,
20652 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16
TT
20653 bfd *abfd,
20654 unsigned int offset_size,
20655 struct dwarf2_section_info *section)
20656{
20657 unsigned int bytes_read, i;
20658 unsigned long arg;
d521ce57 20659 const gdb_byte *defn;
2e276125 20660
cf2c3c16 20661 if (opcode_definitions[opcode] == NULL)
2e276125 20662 {
cf2c3c16
TT
20663 complaint (&symfile_complaints,
20664 _("unrecognized DW_MACFINO opcode 0x%x"),
20665 opcode);
20666 return NULL;
20667 }
2e276125 20668
cf2c3c16
TT
20669 defn = opcode_definitions[opcode];
20670 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
20671 defn += bytes_read;
2e276125 20672
cf2c3c16
TT
20673 for (i = 0; i < arg; ++i)
20674 {
f664829e
DE
20675 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end, defn[i], offset_size,
20676 section);
cf2c3c16
TT
20677 if (mac_ptr == NULL)
20678 {
20679 /* skip_form_bytes already issued the complaint. */
20680 return NULL;
20681 }
20682 }
757a13d0 20683
cf2c3c16
TT
20684 return mac_ptr;
20685}
757a13d0 20686
cf2c3c16
TT
20687/* A helper function which parses the header of a macro section.
20688 If the macro section is the extended (for now called "GNU") type,
20689 then this updates *OFFSET_SIZE. Returns a pointer to just after
20690 the header, or issues a complaint and returns NULL on error. */
757a13d0 20691
d521ce57
TT
20692static const gdb_byte *
20693dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
cf2c3c16 20694 bfd *abfd,
d521ce57 20695 const gdb_byte *mac_ptr,
cf2c3c16
TT
20696 unsigned int *offset_size,
20697 int section_is_gnu)
20698{
20699 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
757a13d0 20700
cf2c3c16
TT
20701 if (section_is_gnu)
20702 {
20703 unsigned int version, flags;
757a13d0 20704
cf2c3c16
TT
20705 version = read_2_bytes (abfd, mac_ptr);
20706 if (version != 4)
20707 {
20708 complaint (&symfile_complaints,
20709 _("unrecognized version `%d' in .debug_macro section"),
20710 version);
20711 return NULL;
20712 }
20713 mac_ptr += 2;
757a13d0 20714
cf2c3c16
TT
20715 flags = read_1_byte (abfd, mac_ptr);
20716 ++mac_ptr;
20717 *offset_size = (flags & 1) ? 8 : 4;
757a13d0 20718
cf2c3c16
TT
20719 if ((flags & 2) != 0)
20720 /* We don't need the line table offset. */
20721 mac_ptr += *offset_size;
757a13d0 20722
cf2c3c16
TT
20723 /* Vendor opcode descriptions. */
20724 if ((flags & 4) != 0)
20725 {
20726 unsigned int i, count;
757a13d0 20727
cf2c3c16
TT
20728 count = read_1_byte (abfd, mac_ptr);
20729 ++mac_ptr;
20730 for (i = 0; i < count; ++i)
20731 {
20732 unsigned int opcode, bytes_read;
20733 unsigned long arg;
20734
20735 opcode = read_1_byte (abfd, mac_ptr);
20736 ++mac_ptr;
20737 opcode_definitions[opcode] = mac_ptr;
20738 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
20739 mac_ptr += bytes_read;
20740 mac_ptr += arg;
20741 }
757a13d0 20742 }
cf2c3c16 20743 }
757a13d0 20744
cf2c3c16
TT
20745 return mac_ptr;
20746}
757a13d0 20747
cf2c3c16 20748/* A helper for dwarf_decode_macros that handles the GNU extensions,
8fc3fc34 20749 including DW_MACRO_GNU_transparent_include. */
cf2c3c16
TT
20750
20751static void
d521ce57
TT
20752dwarf_decode_macro_bytes (bfd *abfd,
20753 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
cf2c3c16 20754 struct macro_source_file *current_file,
15d034d0 20755 struct line_header *lh, const char *comp_dir,
cf2c3c16 20756 struct dwarf2_section_info *section,
36586728 20757 int section_is_gnu, int section_is_dwz,
cf2c3c16 20758 unsigned int offset_size,
8fc3fc34
TT
20759 struct objfile *objfile,
20760 htab_t include_hash)
cf2c3c16
TT
20761{
20762 enum dwarf_macro_record_type macinfo_type;
20763 int at_commandline;
d521ce57 20764 const gdb_byte *opcode_definitions[256];
757a13d0 20765
cf2c3c16
TT
20766 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
20767 &offset_size, section_is_gnu);
20768 if (mac_ptr == NULL)
20769 {
20770 /* We already issued a complaint. */
20771 return;
20772 }
757a13d0
JK
20773
20774 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
20775 GDB is still reading the definitions from command line. First
20776 DW_MACINFO_start_file will need to be ignored as it was already executed
20777 to create CURRENT_FILE for the main source holding also the command line
20778 definitions. On first met DW_MACINFO_start_file this flag is reset to
20779 normally execute all the remaining DW_MACINFO_start_file macinfos. */
20780
20781 at_commandline = 1;
20782
20783 do
20784 {
20785 /* Do we at least have room for a macinfo type byte? */
20786 if (mac_ptr >= mac_end)
20787 {
f664829e 20788 dwarf2_section_buffer_overflow_complaint (section);
757a13d0
JK
20789 break;
20790 }
20791
20792 macinfo_type = read_1_byte (abfd, mac_ptr);
20793 mac_ptr++;
20794
cf2c3c16
TT
20795 /* Note that we rely on the fact that the corresponding GNU and
20796 DWARF constants are the same. */
757a13d0
JK
20797 switch (macinfo_type)
20798 {
20799 /* A zero macinfo type indicates the end of the macro
20800 information. */
20801 case 0:
20802 break;
2e276125 20803
cf2c3c16
TT
20804 case DW_MACRO_GNU_define:
20805 case DW_MACRO_GNU_undef:
20806 case DW_MACRO_GNU_define_indirect:
20807 case DW_MACRO_GNU_undef_indirect:
36586728
TT
20808 case DW_MACRO_GNU_define_indirect_alt:
20809 case DW_MACRO_GNU_undef_indirect_alt:
2e276125 20810 {
891d2f0b 20811 unsigned int bytes_read;
2e276125 20812 int line;
d521ce57 20813 const char *body;
cf2c3c16 20814 int is_define;
2e276125 20815
cf2c3c16
TT
20816 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
20817 mac_ptr += bytes_read;
20818
20819 if (macinfo_type == DW_MACRO_GNU_define
20820 || macinfo_type == DW_MACRO_GNU_undef)
20821 {
20822 body = read_direct_string (abfd, mac_ptr, &bytes_read);
20823 mac_ptr += bytes_read;
20824 }
20825 else
20826 {
20827 LONGEST str_offset;
20828
20829 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
20830 mac_ptr += offset_size;
2e276125 20831
36586728 20832 if (macinfo_type == DW_MACRO_GNU_define_indirect_alt
f7a35f02
TT
20833 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt
20834 || section_is_dwz)
36586728
TT
20835 {
20836 struct dwz_file *dwz = dwarf2_get_dwz_file ();
20837
20838 body = read_indirect_string_from_dwz (dwz, str_offset);
20839 }
20840 else
20841 body = read_indirect_string_at_offset (abfd, str_offset);
cf2c3c16
TT
20842 }
20843
20844 is_define = (macinfo_type == DW_MACRO_GNU_define
36586728
TT
20845 || macinfo_type == DW_MACRO_GNU_define_indirect
20846 || macinfo_type == DW_MACRO_GNU_define_indirect_alt);
2e276125 20847 if (! current_file)
757a13d0
JK
20848 {
20849 /* DWARF violation as no main source is present. */
20850 complaint (&symfile_complaints,
20851 _("debug info with no main source gives macro %s "
20852 "on line %d: %s"),
cf2c3c16
TT
20853 is_define ? _("definition") : _("undefinition"),
20854 line, body);
757a13d0
JK
20855 break;
20856 }
3e43a32a
MS
20857 if ((line == 0 && !at_commandline)
20858 || (line != 0 && at_commandline))
4d3c2250 20859 complaint (&symfile_complaints,
757a13d0
JK
20860 _("debug info gives %s macro %s with %s line %d: %s"),
20861 at_commandline ? _("command-line") : _("in-file"),
cf2c3c16 20862 is_define ? _("definition") : _("undefinition"),
757a13d0
JK
20863 line == 0 ? _("zero") : _("non-zero"), line, body);
20864
cf2c3c16 20865 if (is_define)
757a13d0 20866 parse_macro_definition (current_file, line, body);
cf2c3c16
TT
20867 else
20868 {
20869 gdb_assert (macinfo_type == DW_MACRO_GNU_undef
36586728
TT
20870 || macinfo_type == DW_MACRO_GNU_undef_indirect
20871 || macinfo_type == DW_MACRO_GNU_undef_indirect_alt);
cf2c3c16
TT
20872 macro_undef (current_file, line, body);
20873 }
2e276125
JB
20874 }
20875 break;
20876
cf2c3c16 20877 case DW_MACRO_GNU_start_file:
2e276125 20878 {
891d2f0b 20879 unsigned int bytes_read;
2e276125
JB
20880 int line, file;
20881
20882 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
20883 mac_ptr += bytes_read;
20884 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
20885 mac_ptr += bytes_read;
20886
3e43a32a
MS
20887 if ((line == 0 && !at_commandline)
20888 || (line != 0 && at_commandline))
757a13d0
JK
20889 complaint (&symfile_complaints,
20890 _("debug info gives source %d included "
20891 "from %s at %s line %d"),
20892 file, at_commandline ? _("command-line") : _("file"),
20893 line == 0 ? _("zero") : _("non-zero"), line);
20894
20895 if (at_commandline)
20896 {
cf2c3c16
TT
20897 /* This DW_MACRO_GNU_start_file was executed in the
20898 pass one. */
757a13d0
JK
20899 at_commandline = 0;
20900 }
20901 else
20902 current_file = macro_start_file (file, line,
20903 current_file, comp_dir,
cf2c3c16 20904 lh, objfile);
2e276125
JB
20905 }
20906 break;
20907
cf2c3c16 20908 case DW_MACRO_GNU_end_file:
2e276125 20909 if (! current_file)
4d3c2250 20910 complaint (&symfile_complaints,
3e43a32a
MS
20911 _("macro debug info has an unmatched "
20912 "`close_file' directive"));
2e276125
JB
20913 else
20914 {
20915 current_file = current_file->included_by;
20916 if (! current_file)
20917 {
cf2c3c16 20918 enum dwarf_macro_record_type next_type;
2e276125
JB
20919
20920 /* GCC circa March 2002 doesn't produce the zero
20921 type byte marking the end of the compilation
20922 unit. Complain if it's not there, but exit no
20923 matter what. */
20924
20925 /* Do we at least have room for a macinfo type byte? */
20926 if (mac_ptr >= mac_end)
20927 {
f664829e 20928 dwarf2_section_buffer_overflow_complaint (section);
2e276125
JB
20929 return;
20930 }
20931
20932 /* We don't increment mac_ptr here, so this is just
20933 a look-ahead. */
20934 next_type = read_1_byte (abfd, mac_ptr);
20935 if (next_type != 0)
4d3c2250 20936 complaint (&symfile_complaints,
3e43a32a
MS
20937 _("no terminating 0-type entry for "
20938 "macros in `.debug_macinfo' section"));
2e276125
JB
20939
20940 return;
20941 }
20942 }
20943 break;
20944
cf2c3c16 20945 case DW_MACRO_GNU_transparent_include:
36586728 20946 case DW_MACRO_GNU_transparent_include_alt:
cf2c3c16
TT
20947 {
20948 LONGEST offset;
8fc3fc34 20949 void **slot;
a036ba48
TT
20950 bfd *include_bfd = abfd;
20951 struct dwarf2_section_info *include_section = section;
20952 struct dwarf2_section_info alt_section;
d521ce57 20953 const gdb_byte *include_mac_end = mac_end;
a036ba48 20954 int is_dwz = section_is_dwz;
d521ce57 20955 const gdb_byte *new_mac_ptr;
cf2c3c16
TT
20956
20957 offset = read_offset_1 (abfd, mac_ptr, offset_size);
20958 mac_ptr += offset_size;
20959
a036ba48
TT
20960 if (macinfo_type == DW_MACRO_GNU_transparent_include_alt)
20961 {
20962 struct dwz_file *dwz = dwarf2_get_dwz_file ();
20963
20964 dwarf2_read_section (dwarf2_per_objfile->objfile,
20965 &dwz->macro);
20966
a036ba48 20967 include_section = &dwz->macro;
a32a8923 20968 include_bfd = get_section_bfd_owner (include_section);
a036ba48
TT
20969 include_mac_end = dwz->macro.buffer + dwz->macro.size;
20970 is_dwz = 1;
20971 }
20972
20973 new_mac_ptr = include_section->buffer + offset;
20974 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
20975
8fc3fc34
TT
20976 if (*slot != NULL)
20977 {
20978 /* This has actually happened; see
20979 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
20980 complaint (&symfile_complaints,
20981 _("recursive DW_MACRO_GNU_transparent_include in "
20982 ".debug_macro section"));
20983 }
20984 else
20985 {
d521ce57 20986 *slot = (void *) new_mac_ptr;
36586728 20987
a036ba48 20988 dwarf_decode_macro_bytes (include_bfd, new_mac_ptr,
36586728 20989 include_mac_end, current_file,
8fc3fc34 20990 lh, comp_dir,
36586728 20991 section, section_is_gnu, is_dwz,
8fc3fc34
TT
20992 offset_size, objfile, include_hash);
20993
d521ce57 20994 htab_remove_elt (include_hash, (void *) new_mac_ptr);
8fc3fc34 20995 }
cf2c3c16
TT
20996 }
20997 break;
20998
2e276125 20999 case DW_MACINFO_vendor_ext:
cf2c3c16
TT
21000 if (!section_is_gnu)
21001 {
21002 unsigned int bytes_read;
21003 int constant;
2e276125 21004
cf2c3c16
TT
21005 constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21006 mac_ptr += bytes_read;
21007 read_direct_string (abfd, mac_ptr, &bytes_read);
21008 mac_ptr += bytes_read;
2e276125 21009
cf2c3c16
TT
21010 /* We don't recognize any vendor extensions. */
21011 break;
21012 }
21013 /* FALLTHROUGH */
21014
21015 default:
21016 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 21017 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
21018 section);
21019 if (mac_ptr == NULL)
21020 return;
21021 break;
2e276125 21022 }
757a13d0 21023 } while (macinfo_type != 0);
2e276125 21024}
8e19ed76 21025
cf2c3c16 21026static void
09262596 21027dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
15d034d0 21028 const char *comp_dir, int section_is_gnu)
cf2c3c16 21029{
bb5ed363 21030 struct objfile *objfile = dwarf2_per_objfile->objfile;
09262596
DE
21031 struct line_header *lh = cu->line_header;
21032 bfd *abfd;
d521ce57 21033 const gdb_byte *mac_ptr, *mac_end;
cf2c3c16
TT
21034 struct macro_source_file *current_file = 0;
21035 enum dwarf_macro_record_type macinfo_type;
21036 unsigned int offset_size = cu->header.offset_size;
d521ce57 21037 const gdb_byte *opcode_definitions[256];
8fc3fc34
TT
21038 struct cleanup *cleanup;
21039 htab_t include_hash;
21040 void **slot;
09262596
DE
21041 struct dwarf2_section_info *section;
21042 const char *section_name;
21043
21044 if (cu->dwo_unit != NULL)
21045 {
21046 if (section_is_gnu)
21047 {
21048 section = &cu->dwo_unit->dwo_file->sections.macro;
21049 section_name = ".debug_macro.dwo";
21050 }
21051 else
21052 {
21053 section = &cu->dwo_unit->dwo_file->sections.macinfo;
21054 section_name = ".debug_macinfo.dwo";
21055 }
21056 }
21057 else
21058 {
21059 if (section_is_gnu)
21060 {
21061 section = &dwarf2_per_objfile->macro;
21062 section_name = ".debug_macro";
21063 }
21064 else
21065 {
21066 section = &dwarf2_per_objfile->macinfo;
21067 section_name = ".debug_macinfo";
21068 }
21069 }
cf2c3c16 21070
bb5ed363 21071 dwarf2_read_section (objfile, section);
cf2c3c16
TT
21072 if (section->buffer == NULL)
21073 {
fceca515 21074 complaint (&symfile_complaints, _("missing %s section"), section_name);
cf2c3c16
TT
21075 return;
21076 }
a32a8923 21077 abfd = get_section_bfd_owner (section);
cf2c3c16
TT
21078
21079 /* First pass: Find the name of the base filename.
21080 This filename is needed in order to process all macros whose definition
21081 (or undefinition) comes from the command line. These macros are defined
21082 before the first DW_MACINFO_start_file entry, and yet still need to be
21083 associated to the base file.
21084
21085 To determine the base file name, we scan the macro definitions until we
21086 reach the first DW_MACINFO_start_file entry. We then initialize
21087 CURRENT_FILE accordingly so that any macro definition found before the
21088 first DW_MACINFO_start_file can still be associated to the base file. */
21089
21090 mac_ptr = section->buffer + offset;
21091 mac_end = section->buffer + section->size;
21092
21093 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
21094 &offset_size, section_is_gnu);
21095 if (mac_ptr == NULL)
21096 {
21097 /* We already issued a complaint. */
21098 return;
21099 }
21100
21101 do
21102 {
21103 /* Do we at least have room for a macinfo type byte? */
21104 if (mac_ptr >= mac_end)
21105 {
21106 /* Complaint is printed during the second pass as GDB will probably
21107 stop the first pass earlier upon finding
21108 DW_MACINFO_start_file. */
21109 break;
21110 }
21111
21112 macinfo_type = read_1_byte (abfd, mac_ptr);
21113 mac_ptr++;
21114
21115 /* Note that we rely on the fact that the corresponding GNU and
21116 DWARF constants are the same. */
21117 switch (macinfo_type)
21118 {
21119 /* A zero macinfo type indicates the end of the macro
21120 information. */
21121 case 0:
21122 break;
21123
21124 case DW_MACRO_GNU_define:
21125 case DW_MACRO_GNU_undef:
21126 /* Only skip the data by MAC_PTR. */
21127 {
21128 unsigned int bytes_read;
21129
21130 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21131 mac_ptr += bytes_read;
21132 read_direct_string (abfd, mac_ptr, &bytes_read);
21133 mac_ptr += bytes_read;
21134 }
21135 break;
21136
21137 case DW_MACRO_GNU_start_file:
21138 {
21139 unsigned int bytes_read;
21140 int line, file;
21141
21142 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21143 mac_ptr += bytes_read;
21144 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21145 mac_ptr += bytes_read;
21146
21147 current_file = macro_start_file (file, line, current_file,
bb5ed363 21148 comp_dir, lh, objfile);
cf2c3c16
TT
21149 }
21150 break;
21151
21152 case DW_MACRO_GNU_end_file:
21153 /* No data to skip by MAC_PTR. */
21154 break;
21155
21156 case DW_MACRO_GNU_define_indirect:
21157 case DW_MACRO_GNU_undef_indirect:
f7a35f02
TT
21158 case DW_MACRO_GNU_define_indirect_alt:
21159 case DW_MACRO_GNU_undef_indirect_alt:
cf2c3c16
TT
21160 {
21161 unsigned int bytes_read;
21162
21163 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21164 mac_ptr += bytes_read;
21165 mac_ptr += offset_size;
21166 }
21167 break;
21168
21169 case DW_MACRO_GNU_transparent_include:
f7a35f02 21170 case DW_MACRO_GNU_transparent_include_alt:
cf2c3c16
TT
21171 /* Note that, according to the spec, a transparent include
21172 chain cannot call DW_MACRO_GNU_start_file. So, we can just
21173 skip this opcode. */
21174 mac_ptr += offset_size;
21175 break;
21176
21177 case DW_MACINFO_vendor_ext:
21178 /* Only skip the data by MAC_PTR. */
21179 if (!section_is_gnu)
21180 {
21181 unsigned int bytes_read;
21182
21183 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
21184 mac_ptr += bytes_read;
21185 read_direct_string (abfd, mac_ptr, &bytes_read);
21186 mac_ptr += bytes_read;
21187 }
21188 /* FALLTHROUGH */
21189
21190 default:
21191 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
f664829e 21192 mac_ptr, mac_end, abfd, offset_size,
cf2c3c16
TT
21193 section);
21194 if (mac_ptr == NULL)
21195 return;
21196 break;
21197 }
21198 } while (macinfo_type != 0 && current_file == NULL);
21199
21200 /* Second pass: Process all entries.
21201
21202 Use the AT_COMMAND_LINE flag to determine whether we are still processing
21203 command-line macro definitions/undefinitions. This flag is unset when we
21204 reach the first DW_MACINFO_start_file entry. */
21205
8fc3fc34
TT
21206 include_hash = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
21207 NULL, xcalloc, xfree);
21208 cleanup = make_cleanup_htab_delete (include_hash);
21209 mac_ptr = section->buffer + offset;
21210 slot = htab_find_slot (include_hash, mac_ptr, INSERT);
d521ce57 21211 *slot = (void *) mac_ptr;
8fc3fc34 21212 dwarf_decode_macro_bytes (abfd, mac_ptr, mac_end,
36586728
TT
21213 current_file, lh, comp_dir, section,
21214 section_is_gnu, 0,
8fc3fc34
TT
21215 offset_size, objfile, include_hash);
21216 do_cleanups (cleanup);
cf2c3c16
TT
21217}
21218
8e19ed76 21219/* Check if the attribute's form is a DW_FORM_block*
0963b4bd 21220 if so return true else false. */
380bca97 21221
8e19ed76 21222static int
6e5a29e1 21223attr_form_is_block (const struct attribute *attr)
8e19ed76
PS
21224{
21225 return (attr == NULL ? 0 :
21226 attr->form == DW_FORM_block1
21227 || attr->form == DW_FORM_block2
21228 || attr->form == DW_FORM_block4
2dc7f7b3
TT
21229 || attr->form == DW_FORM_block
21230 || attr->form == DW_FORM_exprloc);
8e19ed76 21231}
4c2df51b 21232
c6a0999f
JB
21233/* Return non-zero if ATTR's value is a section offset --- classes
21234 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
21235 You may use DW_UNSND (attr) to retrieve such offsets.
21236
21237 Section 7.5.4, "Attribute Encodings", explains that no attribute
21238 may have a value that belongs to more than one of these classes; it
21239 would be ambiguous if we did, because we use the same forms for all
21240 of them. */
380bca97 21241
3690dd37 21242static int
6e5a29e1 21243attr_form_is_section_offset (const struct attribute *attr)
3690dd37
JB
21244{
21245 return (attr->form == DW_FORM_data4
2dc7f7b3
TT
21246 || attr->form == DW_FORM_data8
21247 || attr->form == DW_FORM_sec_offset);
3690dd37
JB
21248}
21249
3690dd37
JB
21250/* Return non-zero if ATTR's value falls in the 'constant' class, or
21251 zero otherwise. When this function returns true, you can apply
21252 dwarf2_get_attr_constant_value to it.
21253
21254 However, note that for some attributes you must check
21255 attr_form_is_section_offset before using this test. DW_FORM_data4
21256 and DW_FORM_data8 are members of both the constant class, and of
21257 the classes that contain offsets into other debug sections
21258 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
21259 that, if an attribute's can be either a constant or one of the
21260 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
21261 taken as section offsets, not constants. */
380bca97 21262
3690dd37 21263static int
6e5a29e1 21264attr_form_is_constant (const struct attribute *attr)
3690dd37
JB
21265{
21266 switch (attr->form)
21267 {
21268 case DW_FORM_sdata:
21269 case DW_FORM_udata:
21270 case DW_FORM_data1:
21271 case DW_FORM_data2:
21272 case DW_FORM_data4:
21273 case DW_FORM_data8:
21274 return 1;
21275 default:
21276 return 0;
21277 }
21278}
21279
7771576e
SA
21280
21281/* DW_ADDR is always stored already as sect_offset; despite for the forms
21282 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
21283
21284static int
6e5a29e1 21285attr_form_is_ref (const struct attribute *attr)
7771576e
SA
21286{
21287 switch (attr->form)
21288 {
21289 case DW_FORM_ref_addr:
21290 case DW_FORM_ref1:
21291 case DW_FORM_ref2:
21292 case DW_FORM_ref4:
21293 case DW_FORM_ref8:
21294 case DW_FORM_ref_udata:
21295 case DW_FORM_GNU_ref_alt:
21296 return 1;
21297 default:
21298 return 0;
21299 }
21300}
21301
3019eac3
DE
21302/* Return the .debug_loc section to use for CU.
21303 For DWO files use .debug_loc.dwo. */
21304
21305static struct dwarf2_section_info *
21306cu_debug_loc_section (struct dwarf2_cu *cu)
21307{
21308 if (cu->dwo_unit)
21309 return &cu->dwo_unit->dwo_file->sections.loc;
21310 return &dwarf2_per_objfile->loc;
21311}
21312
8cf6f0b1
TT
21313/* A helper function that fills in a dwarf2_loclist_baton. */
21314
21315static void
21316fill_in_loclist_baton (struct dwarf2_cu *cu,
21317 struct dwarf2_loclist_baton *baton,
ff39bb5e 21318 const struct attribute *attr)
8cf6f0b1 21319{
3019eac3
DE
21320 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
21321
21322 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
8cf6f0b1
TT
21323
21324 baton->per_cu = cu->per_cu;
21325 gdb_assert (baton->per_cu);
21326 /* We don't know how long the location list is, but make sure we
21327 don't run off the edge of the section. */
3019eac3
DE
21328 baton->size = section->size - DW_UNSND (attr);
21329 baton->data = section->buffer + DW_UNSND (attr);
8cf6f0b1 21330 baton->base_address = cu->base_address;
f664829e 21331 baton->from_dwo = cu->dwo_unit != NULL;
8cf6f0b1
TT
21332}
21333
4c2df51b 21334static void
ff39bb5e 21335dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
f1e6e072 21336 struct dwarf2_cu *cu, int is_block)
4c2df51b 21337{
bb5ed363 21338 struct objfile *objfile = dwarf2_per_objfile->objfile;
3019eac3 21339 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
bb5ed363 21340
3690dd37 21341 if (attr_form_is_section_offset (attr)
3019eac3 21342 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
99bcc461
DJ
21343 the section. If so, fall through to the complaint in the
21344 other branch. */
3019eac3 21345 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
4c2df51b 21346 {
0d53c4c4 21347 struct dwarf2_loclist_baton *baton;
4c2df51b 21348
bb5ed363 21349 baton = obstack_alloc (&objfile->objfile_obstack,
0d53c4c4 21350 sizeof (struct dwarf2_loclist_baton));
4c2df51b 21351
8cf6f0b1 21352 fill_in_loclist_baton (cu, baton, attr);
be391dca 21353
d00adf39 21354 if (cu->base_known == 0)
0d53c4c4 21355 complaint (&symfile_complaints,
3e43a32a
MS
21356 _("Location list used without "
21357 "specifying the CU base address."));
4c2df51b 21358
f1e6e072
TT
21359 SYMBOL_ACLASS_INDEX (sym) = (is_block
21360 ? dwarf2_loclist_block_index
21361 : dwarf2_loclist_index);
0d53c4c4
DJ
21362 SYMBOL_LOCATION_BATON (sym) = baton;
21363 }
21364 else
21365 {
21366 struct dwarf2_locexpr_baton *baton;
21367
bb5ed363 21368 baton = obstack_alloc (&objfile->objfile_obstack,
0d53c4c4 21369 sizeof (struct dwarf2_locexpr_baton));
ae0d2f24
UW
21370 baton->per_cu = cu->per_cu;
21371 gdb_assert (baton->per_cu);
0d53c4c4
DJ
21372
21373 if (attr_form_is_block (attr))
21374 {
21375 /* Note that we're just copying the block's data pointer
21376 here, not the actual data. We're still pointing into the
6502dd73
DJ
21377 info_buffer for SYM's objfile; right now we never release
21378 that buffer, but when we do clean up properly this may
21379 need to change. */
0d53c4c4
DJ
21380 baton->size = DW_BLOCK (attr)->size;
21381 baton->data = DW_BLOCK (attr)->data;
21382 }
21383 else
21384 {
21385 dwarf2_invalid_attrib_class_complaint ("location description",
21386 SYMBOL_NATURAL_NAME (sym));
21387 baton->size = 0;
0d53c4c4 21388 }
6e70227d 21389
f1e6e072
TT
21390 SYMBOL_ACLASS_INDEX (sym) = (is_block
21391 ? dwarf2_locexpr_block_index
21392 : dwarf2_locexpr_index);
0d53c4c4
DJ
21393 SYMBOL_LOCATION_BATON (sym) = baton;
21394 }
4c2df51b 21395}
6502dd73 21396
9aa1f1e3
TT
21397/* Return the OBJFILE associated with the compilation unit CU. If CU
21398 came from a separate debuginfo file, then the master objfile is
21399 returned. */
ae0d2f24
UW
21400
21401struct objfile *
21402dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
21403{
9291a0cd 21404 struct objfile *objfile = per_cu->objfile;
ae0d2f24
UW
21405
21406 /* Return the master objfile, so that we can report and look up the
21407 correct file containing this variable. */
21408 if (objfile->separate_debug_objfile_backlink)
21409 objfile = objfile->separate_debug_objfile_backlink;
21410
21411 return objfile;
21412}
21413
96408a79
SA
21414/* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
21415 (CU_HEADERP is unused in such case) or prepare a temporary copy at
21416 CU_HEADERP first. */
21417
21418static const struct comp_unit_head *
21419per_cu_header_read_in (struct comp_unit_head *cu_headerp,
21420 struct dwarf2_per_cu_data *per_cu)
21421{
d521ce57 21422 const gdb_byte *info_ptr;
96408a79
SA
21423
21424 if (per_cu->cu)
21425 return &per_cu->cu->header;
21426
8a0459fd 21427 info_ptr = per_cu->section->buffer + per_cu->offset.sect_off;
96408a79
SA
21428
21429 memset (cu_headerp, 0, sizeof (*cu_headerp));
0bc3a05c 21430 read_comp_unit_head (cu_headerp, info_ptr, per_cu->objfile->obfd);
96408a79
SA
21431
21432 return cu_headerp;
21433}
21434
ae0d2f24
UW
21435/* Return the address size given in the compilation unit header for CU. */
21436
98714339 21437int
ae0d2f24
UW
21438dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
21439{
96408a79
SA
21440 struct comp_unit_head cu_header_local;
21441 const struct comp_unit_head *cu_headerp;
c471e790 21442
96408a79
SA
21443 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
21444
21445 return cu_headerp->addr_size;
ae0d2f24
UW
21446}
21447
9eae7c52
TT
21448/* Return the offset size given in the compilation unit header for CU. */
21449
21450int
21451dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
21452{
96408a79
SA
21453 struct comp_unit_head cu_header_local;
21454 const struct comp_unit_head *cu_headerp;
9c6c53f7 21455
96408a79
SA
21456 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
21457
21458 return cu_headerp->offset_size;
21459}
21460
21461/* See its dwarf2loc.h declaration. */
21462
21463int
21464dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
21465{
21466 struct comp_unit_head cu_header_local;
21467 const struct comp_unit_head *cu_headerp;
21468
21469 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
21470
21471 if (cu_headerp->version == 2)
21472 return cu_headerp->addr_size;
21473 else
21474 return cu_headerp->offset_size;
181cebd4
JK
21475}
21476
9aa1f1e3
TT
21477/* Return the text offset of the CU. The returned offset comes from
21478 this CU's objfile. If this objfile came from a separate debuginfo
21479 file, then the offset may be different from the corresponding
21480 offset in the parent objfile. */
21481
21482CORE_ADDR
21483dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
21484{
bb3fa9d0 21485 struct objfile *objfile = per_cu->objfile;
9aa1f1e3
TT
21486
21487 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
21488}
21489
348e048f
DE
21490/* Locate the .debug_info compilation unit from CU's objfile which contains
21491 the DIE at OFFSET. Raises an error on failure. */
ae038cb0
DJ
21492
21493static struct dwarf2_per_cu_data *
b64f50a1 21494dwarf2_find_containing_comp_unit (sect_offset offset,
36586728 21495 unsigned int offset_in_dwz,
ae038cb0
DJ
21496 struct objfile *objfile)
21497{
21498 struct dwarf2_per_cu_data *this_cu;
21499 int low, high;
36586728 21500 const sect_offset *cu_off;
ae038cb0 21501
ae038cb0
DJ
21502 low = 0;
21503 high = dwarf2_per_objfile->n_comp_units - 1;
21504 while (high > low)
21505 {
36586728 21506 struct dwarf2_per_cu_data *mid_cu;
ae038cb0 21507 int mid = low + (high - low) / 2;
9a619af0 21508
36586728
TT
21509 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
21510 cu_off = &mid_cu->offset;
21511 if (mid_cu->is_dwz > offset_in_dwz
21512 || (mid_cu->is_dwz == offset_in_dwz
21513 && cu_off->sect_off >= offset.sect_off))
ae038cb0
DJ
21514 high = mid;
21515 else
21516 low = mid + 1;
21517 }
21518 gdb_assert (low == high);
36586728
TT
21519 this_cu = dwarf2_per_objfile->all_comp_units[low];
21520 cu_off = &this_cu->offset;
21521 if (this_cu->is_dwz != offset_in_dwz || cu_off->sect_off > offset.sect_off)
ae038cb0 21522 {
36586728 21523 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
8a3fe4f8
AC
21524 error (_("Dwarf Error: could not find partial DIE containing "
21525 "offset 0x%lx [in module %s]"),
b64f50a1 21526 (long) offset.sect_off, bfd_get_filename (objfile->obfd));
10b3939b 21527
b64f50a1
JK
21528 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset.sect_off
21529 <= offset.sect_off);
ae038cb0
DJ
21530 return dwarf2_per_objfile->all_comp_units[low-1];
21531 }
21532 else
21533 {
21534 this_cu = dwarf2_per_objfile->all_comp_units[low];
21535 if (low == dwarf2_per_objfile->n_comp_units - 1
b64f50a1
JK
21536 && offset.sect_off >= this_cu->offset.sect_off + this_cu->length)
21537 error (_("invalid dwarf2 offset %u"), offset.sect_off);
21538 gdb_assert (offset.sect_off < this_cu->offset.sect_off + this_cu->length);
ae038cb0
DJ
21539 return this_cu;
21540 }
21541}
21542
23745b47 21543/* Initialize dwarf2_cu CU, owned by PER_CU. */
93311388 21544
9816fde3 21545static void
23745b47 21546init_one_comp_unit (struct dwarf2_cu *cu, struct dwarf2_per_cu_data *per_cu)
93311388 21547{
9816fde3 21548 memset (cu, 0, sizeof (*cu));
23745b47
DE
21549 per_cu->cu = cu;
21550 cu->per_cu = per_cu;
21551 cu->objfile = per_cu->objfile;
93311388 21552 obstack_init (&cu->comp_unit_obstack);
9816fde3
JK
21553}
21554
21555/* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
21556
21557static void
95554aad
TT
21558prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
21559 enum language pretend_language)
9816fde3
JK
21560{
21561 struct attribute *attr;
21562
21563 /* Set the language we're debugging. */
21564 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
21565 if (attr)
21566 set_cu_language (DW_UNSND (attr), cu);
21567 else
9cded63f 21568 {
95554aad 21569 cu->language = pretend_language;
9cded63f
TT
21570 cu->language_defn = language_def (cu->language);
21571 }
dee91e82
DE
21572
21573 attr = dwarf2_attr (comp_unit_die, DW_AT_producer, cu);
21574 if (attr)
21575 cu->producer = DW_STRING (attr);
93311388
DE
21576}
21577
ae038cb0
DJ
21578/* Release one cached compilation unit, CU. We unlink it from the tree
21579 of compilation units, but we don't remove it from the read_in_chain;
93311388
DE
21580 the caller is responsible for that.
21581 NOTE: DATA is a void * because this function is also used as a
21582 cleanup routine. */
ae038cb0
DJ
21583
21584static void
68dc6402 21585free_heap_comp_unit (void *data)
ae038cb0
DJ
21586{
21587 struct dwarf2_cu *cu = data;
21588
23745b47
DE
21589 gdb_assert (cu->per_cu != NULL);
21590 cu->per_cu->cu = NULL;
ae038cb0
DJ
21591 cu->per_cu = NULL;
21592
21593 obstack_free (&cu->comp_unit_obstack, NULL);
21594
21595 xfree (cu);
21596}
21597
72bf9492 21598/* This cleanup function is passed the address of a dwarf2_cu on the stack
ae038cb0 21599 when we're finished with it. We can't free the pointer itself, but be
dee91e82 21600 sure to unlink it from the cache. Also release any associated storage. */
72bf9492
DJ
21601
21602static void
21603free_stack_comp_unit (void *data)
21604{
21605 struct dwarf2_cu *cu = data;
21606
23745b47
DE
21607 gdb_assert (cu->per_cu != NULL);
21608 cu->per_cu->cu = NULL;
21609 cu->per_cu = NULL;
21610
72bf9492
DJ
21611 obstack_free (&cu->comp_unit_obstack, NULL);
21612 cu->partial_dies = NULL;
ae038cb0
DJ
21613}
21614
21615/* Free all cached compilation units. */
21616
21617static void
21618free_cached_comp_units (void *data)
21619{
21620 struct dwarf2_per_cu_data *per_cu, **last_chain;
21621
21622 per_cu = dwarf2_per_objfile->read_in_chain;
21623 last_chain = &dwarf2_per_objfile->read_in_chain;
21624 while (per_cu != NULL)
21625 {
21626 struct dwarf2_per_cu_data *next_cu;
21627
21628 next_cu = per_cu->cu->read_in_chain;
21629
68dc6402 21630 free_heap_comp_unit (per_cu->cu);
ae038cb0
DJ
21631 *last_chain = next_cu;
21632
21633 per_cu = next_cu;
21634 }
21635}
21636
21637/* Increase the age counter on each cached compilation unit, and free
21638 any that are too old. */
21639
21640static void
21641age_cached_comp_units (void)
21642{
21643 struct dwarf2_per_cu_data *per_cu, **last_chain;
21644
21645 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
21646 per_cu = dwarf2_per_objfile->read_in_chain;
21647 while (per_cu != NULL)
21648 {
21649 per_cu->cu->last_used ++;
21650 if (per_cu->cu->last_used <= dwarf2_max_cache_age)
21651 dwarf2_mark (per_cu->cu);
21652 per_cu = per_cu->cu->read_in_chain;
21653 }
21654
21655 per_cu = dwarf2_per_objfile->read_in_chain;
21656 last_chain = &dwarf2_per_objfile->read_in_chain;
21657 while (per_cu != NULL)
21658 {
21659 struct dwarf2_per_cu_data *next_cu;
21660
21661 next_cu = per_cu->cu->read_in_chain;
21662
21663 if (!per_cu->cu->mark)
21664 {
68dc6402 21665 free_heap_comp_unit (per_cu->cu);
ae038cb0
DJ
21666 *last_chain = next_cu;
21667 }
21668 else
21669 last_chain = &per_cu->cu->read_in_chain;
21670
21671 per_cu = next_cu;
21672 }
21673}
21674
21675/* Remove a single compilation unit from the cache. */
21676
21677static void
dee91e82 21678free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
ae038cb0
DJ
21679{
21680 struct dwarf2_per_cu_data *per_cu, **last_chain;
21681
21682 per_cu = dwarf2_per_objfile->read_in_chain;
21683 last_chain = &dwarf2_per_objfile->read_in_chain;
21684 while (per_cu != NULL)
21685 {
21686 struct dwarf2_per_cu_data *next_cu;
21687
21688 next_cu = per_cu->cu->read_in_chain;
21689
dee91e82 21690 if (per_cu == target_per_cu)
ae038cb0 21691 {
68dc6402 21692 free_heap_comp_unit (per_cu->cu);
dee91e82 21693 per_cu->cu = NULL;
ae038cb0
DJ
21694 *last_chain = next_cu;
21695 break;
21696 }
21697 else
21698 last_chain = &per_cu->cu->read_in_chain;
21699
21700 per_cu = next_cu;
21701 }
21702}
21703
fe3e1990
DJ
21704/* Release all extra memory associated with OBJFILE. */
21705
21706void
21707dwarf2_free_objfile (struct objfile *objfile)
21708{
21709 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
21710
21711 if (dwarf2_per_objfile == NULL)
21712 return;
21713
21714 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
21715 free_cached_comp_units (NULL);
21716
7b9f3c50
DE
21717 if (dwarf2_per_objfile->quick_file_names_table)
21718 htab_delete (dwarf2_per_objfile->quick_file_names_table);
9291a0cd 21719
fe3e1990
DJ
21720 /* Everything else should be on the objfile obstack. */
21721}
21722
dee91e82
DE
21723/* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
21724 We store these in a hash table separate from the DIEs, and preserve them
21725 when the DIEs are flushed out of cache.
21726
21727 The CU "per_cu" pointer is needed because offset alone is not enough to
3019eac3 21728 uniquely identify the type. A file may have multiple .debug_types sections,
c88ee1f0
DE
21729 or the type may come from a DWO file. Furthermore, while it's more logical
21730 to use per_cu->section+offset, with Fission the section with the data is in
21731 the DWO file but we don't know that section at the point we need it.
21732 We have to use something in dwarf2_per_cu_data (or the pointer to it)
21733 because we can enter the lookup routine, get_die_type_at_offset, from
21734 outside this file, and thus won't necessarily have PER_CU->cu.
21735 Fortunately, PER_CU is stable for the life of the objfile. */
1c379e20 21736
dee91e82 21737struct dwarf2_per_cu_offset_and_type
1c379e20 21738{
dee91e82 21739 const struct dwarf2_per_cu_data *per_cu;
b64f50a1 21740 sect_offset offset;
1c379e20
DJ
21741 struct type *type;
21742};
21743
dee91e82 21744/* Hash function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
21745
21746static hashval_t
dee91e82 21747per_cu_offset_and_type_hash (const void *item)
1c379e20 21748{
dee91e82 21749 const struct dwarf2_per_cu_offset_and_type *ofs = item;
9a619af0 21750
dee91e82 21751 return (uintptr_t) ofs->per_cu + ofs->offset.sect_off;
1c379e20
DJ
21752}
21753
dee91e82 21754/* Equality function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
21755
21756static int
dee91e82 21757per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
1c379e20 21758{
dee91e82
DE
21759 const struct dwarf2_per_cu_offset_and_type *ofs_lhs = item_lhs;
21760 const struct dwarf2_per_cu_offset_and_type *ofs_rhs = item_rhs;
9a619af0 21761
dee91e82
DE
21762 return (ofs_lhs->per_cu == ofs_rhs->per_cu
21763 && ofs_lhs->offset.sect_off == ofs_rhs->offset.sect_off);
1c379e20
DJ
21764}
21765
21766/* Set the type associated with DIE to TYPE. Save it in CU's hash
7e314c57
JK
21767 table if necessary. For convenience, return TYPE.
21768
21769 The DIEs reading must have careful ordering to:
21770 * Not cause infite loops trying to read in DIEs as a prerequisite for
21771 reading current DIE.
21772 * Not trying to dereference contents of still incompletely read in types
21773 while reading in other DIEs.
21774 * Enable referencing still incompletely read in types just by a pointer to
21775 the type without accessing its fields.
21776
21777 Therefore caller should follow these rules:
21778 * Try to fetch any prerequisite types we may need to build this DIE type
21779 before building the type and calling set_die_type.
e71ec853 21780 * After building type call set_die_type for current DIE as soon as
7e314c57
JK
21781 possible before fetching more types to complete the current type.
21782 * Make the type as complete as possible before fetching more types. */
1c379e20 21783
f792889a 21784static struct type *
1c379e20
DJ
21785set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
21786{
dee91e82 21787 struct dwarf2_per_cu_offset_and_type **slot, ofs;
673bfd45 21788 struct objfile *objfile = cu->objfile;
3cdcd0ce
JB
21789 struct attribute *attr;
21790 struct dynamic_prop prop;
1c379e20 21791
b4ba55a1
JB
21792 /* For Ada types, make sure that the gnat-specific data is always
21793 initialized (if not already set). There are a few types where
21794 we should not be doing so, because the type-specific area is
21795 already used to hold some other piece of info (eg: TYPE_CODE_FLT
21796 where the type-specific area is used to store the floatformat).
21797 But this is not a problem, because the gnat-specific information
21798 is actually not needed for these types. */
21799 if (need_gnat_info (cu)
21800 && TYPE_CODE (type) != TYPE_CODE_FUNC
21801 && TYPE_CODE (type) != TYPE_CODE_FLT
21802 && !HAVE_GNAT_AUX_INFO (type))
21803 INIT_GNAT_SPECIFIC (type);
21804
3cdcd0ce
JB
21805 /* Read DW_AT_data_location and set in type. */
21806 attr = dwarf2_attr (die, DW_AT_data_location, cu);
21807 if (attr_to_dynamic_prop (attr, die, cu, &prop))
21808 {
21809 TYPE_DATA_LOCATION (type)
21810 = obstack_alloc (&objfile->objfile_obstack, sizeof (prop));
21811 *TYPE_DATA_LOCATION (type) = prop;
21812 }
21813
dee91e82 21814 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 21815 {
dee91e82
DE
21816 dwarf2_per_objfile->die_type_hash =
21817 htab_create_alloc_ex (127,
21818 per_cu_offset_and_type_hash,
21819 per_cu_offset_and_type_eq,
21820 NULL,
21821 &objfile->objfile_obstack,
21822 hashtab_obstack_allocate,
21823 dummy_obstack_deallocate);
f792889a 21824 }
1c379e20 21825
dee91e82 21826 ofs.per_cu = cu->per_cu;
1c379e20
DJ
21827 ofs.offset = die->offset;
21828 ofs.type = type;
dee91e82
DE
21829 slot = (struct dwarf2_per_cu_offset_and_type **)
21830 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
7e314c57
JK
21831 if (*slot)
21832 complaint (&symfile_complaints,
21833 _("A problem internal to GDB: DIE 0x%x has type already set"),
b64f50a1 21834 die->offset.sect_off);
673bfd45 21835 *slot = obstack_alloc (&objfile->objfile_obstack, sizeof (**slot));
1c379e20 21836 **slot = ofs;
f792889a 21837 return type;
1c379e20
DJ
21838}
21839
02142a6c
DE
21840/* Look up the type for the die at OFFSET in PER_CU in die_type_hash,
21841 or return NULL if the die does not have a saved type. */
1c379e20
DJ
21842
21843static struct type *
b64f50a1 21844get_die_type_at_offset (sect_offset offset,
673bfd45 21845 struct dwarf2_per_cu_data *per_cu)
1c379e20 21846{
dee91e82 21847 struct dwarf2_per_cu_offset_and_type *slot, ofs;
f792889a 21848
dee91e82 21849 if (dwarf2_per_objfile->die_type_hash == NULL)
f792889a 21850 return NULL;
1c379e20 21851
dee91e82 21852 ofs.per_cu = per_cu;
673bfd45 21853 ofs.offset = offset;
dee91e82 21854 slot = htab_find (dwarf2_per_objfile->die_type_hash, &ofs);
1c379e20
DJ
21855 if (slot)
21856 return slot->type;
21857 else
21858 return NULL;
21859}
21860
02142a6c 21861/* Look up the type for DIE in CU in die_type_hash,
673bfd45
DE
21862 or return NULL if DIE does not have a saved type. */
21863
21864static struct type *
21865get_die_type (struct die_info *die, struct dwarf2_cu *cu)
21866{
21867 return get_die_type_at_offset (die->offset, cu->per_cu);
21868}
21869
10b3939b
DJ
21870/* Add a dependence relationship from CU to REF_PER_CU. */
21871
21872static void
21873dwarf2_add_dependence (struct dwarf2_cu *cu,
21874 struct dwarf2_per_cu_data *ref_per_cu)
21875{
21876 void **slot;
21877
21878 if (cu->dependencies == NULL)
21879 cu->dependencies
21880 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
21881 NULL, &cu->comp_unit_obstack,
21882 hashtab_obstack_allocate,
21883 dummy_obstack_deallocate);
21884
21885 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
21886 if (*slot == NULL)
21887 *slot = ref_per_cu;
21888}
1c379e20 21889
f504f079
DE
21890/* Subroutine of dwarf2_mark to pass to htab_traverse.
21891 Set the mark field in every compilation unit in the
ae038cb0
DJ
21892 cache that we must keep because we are keeping CU. */
21893
10b3939b
DJ
21894static int
21895dwarf2_mark_helper (void **slot, void *data)
21896{
21897 struct dwarf2_per_cu_data *per_cu;
21898
21899 per_cu = (struct dwarf2_per_cu_data *) *slot;
d07ed419
JK
21900
21901 /* cu->dependencies references may not yet have been ever read if QUIT aborts
21902 reading of the chain. As such dependencies remain valid it is not much
21903 useful to track and undo them during QUIT cleanups. */
21904 if (per_cu->cu == NULL)
21905 return 1;
21906
10b3939b
DJ
21907 if (per_cu->cu->mark)
21908 return 1;
21909 per_cu->cu->mark = 1;
21910
21911 if (per_cu->cu->dependencies != NULL)
21912 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
21913
21914 return 1;
21915}
21916
f504f079
DE
21917/* Set the mark field in CU and in every other compilation unit in the
21918 cache that we must keep because we are keeping CU. */
21919
ae038cb0
DJ
21920static void
21921dwarf2_mark (struct dwarf2_cu *cu)
21922{
21923 if (cu->mark)
21924 return;
21925 cu->mark = 1;
10b3939b
DJ
21926 if (cu->dependencies != NULL)
21927 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
ae038cb0
DJ
21928}
21929
21930static void
21931dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
21932{
21933 while (per_cu)
21934 {
21935 per_cu->cu->mark = 0;
21936 per_cu = per_cu->cu->read_in_chain;
21937 }
72bf9492
DJ
21938}
21939
72bf9492
DJ
21940/* Trivial hash function for partial_die_info: the hash value of a DIE
21941 is its offset in .debug_info for this objfile. */
21942
21943static hashval_t
21944partial_die_hash (const void *item)
21945{
21946 const struct partial_die_info *part_die = item;
9a619af0 21947
b64f50a1 21948 return part_die->offset.sect_off;
72bf9492
DJ
21949}
21950
21951/* Trivial comparison function for partial_die_info structures: two DIEs
21952 are equal if they have the same offset. */
21953
21954static int
21955partial_die_eq (const void *item_lhs, const void *item_rhs)
21956{
21957 const struct partial_die_info *part_die_lhs = item_lhs;
21958 const struct partial_die_info *part_die_rhs = item_rhs;
9a619af0 21959
b64f50a1 21960 return part_die_lhs->offset.sect_off == part_die_rhs->offset.sect_off;
72bf9492
DJ
21961}
21962
ae038cb0
DJ
21963static struct cmd_list_element *set_dwarf2_cmdlist;
21964static struct cmd_list_element *show_dwarf2_cmdlist;
21965
21966static void
21967set_dwarf2_cmd (char *args, int from_tty)
21968{
635c7e8a
TT
21969 help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", all_commands,
21970 gdb_stdout);
ae038cb0
DJ
21971}
21972
21973static void
21974show_dwarf2_cmd (char *args, int from_tty)
6e70227d 21975{
ae038cb0
DJ
21976 cmd_show_list (show_dwarf2_cmdlist, from_tty, "");
21977}
21978
4bf44c1c 21979/* Free data associated with OBJFILE, if necessary. */
dce234bc
PP
21980
21981static void
c1bd65d0 21982dwarf2_per_objfile_free (struct objfile *objfile, void *d)
dce234bc
PP
21983{
21984 struct dwarf2_per_objfile *data = d;
8b70b953 21985 int ix;
8b70b953 21986
626f2d1c
TT
21987 /* Make sure we don't accidentally use dwarf2_per_objfile while
21988 cleaning up. */
21989 dwarf2_per_objfile = NULL;
21990
59b0c7c1
JB
21991 for (ix = 0; ix < data->n_comp_units; ++ix)
21992 VEC_free (dwarf2_per_cu_ptr, data->all_comp_units[ix]->imported_symtabs);
796a7ff8 21993
59b0c7c1 21994 for (ix = 0; ix < data->n_type_units; ++ix)
796a7ff8 21995 VEC_free (dwarf2_per_cu_ptr,
59b0c7c1
JB
21996 data->all_type_units[ix]->per_cu.imported_symtabs);
21997 xfree (data->all_type_units);
95554aad 21998
8b70b953 21999 VEC_free (dwarf2_section_info_def, data->types);
3019eac3
DE
22000
22001 if (data->dwo_files)
22002 free_dwo_files (data->dwo_files, objfile);
5c6fa7ab
DE
22003 if (data->dwp_file)
22004 gdb_bfd_unref (data->dwp_file->dbfd);
36586728
TT
22005
22006 if (data->dwz_file && data->dwz_file->dwz_bfd)
22007 gdb_bfd_unref (data->dwz_file->dwz_bfd);
9291a0cd
TT
22008}
22009
22010\f
ae2de4f8 22011/* The "save gdb-index" command. */
9291a0cd
TT
22012
22013/* The contents of the hash table we create when building the string
22014 table. */
22015struct strtab_entry
22016{
22017 offset_type offset;
22018 const char *str;
22019};
22020
559a7a62
JK
22021/* Hash function for a strtab_entry.
22022
22023 Function is used only during write_hash_table so no index format backward
22024 compatibility is needed. */
b89be57b 22025
9291a0cd
TT
22026static hashval_t
22027hash_strtab_entry (const void *e)
22028{
22029 const struct strtab_entry *entry = e;
559a7a62 22030 return mapped_index_string_hash (INT_MAX, entry->str);
9291a0cd
TT
22031}
22032
22033/* Equality function for a strtab_entry. */
b89be57b 22034
9291a0cd
TT
22035static int
22036eq_strtab_entry (const void *a, const void *b)
22037{
22038 const struct strtab_entry *ea = a;
22039 const struct strtab_entry *eb = b;
22040 return !strcmp (ea->str, eb->str);
22041}
22042
22043/* Create a strtab_entry hash table. */
b89be57b 22044
9291a0cd
TT
22045static htab_t
22046create_strtab (void)
22047{
22048 return htab_create_alloc (100, hash_strtab_entry, eq_strtab_entry,
22049 xfree, xcalloc, xfree);
22050}
22051
22052/* Add a string to the constant pool. Return the string's offset in
22053 host order. */
b89be57b 22054
9291a0cd
TT
22055static offset_type
22056add_string (htab_t table, struct obstack *cpool, const char *str)
22057{
22058 void **slot;
22059 struct strtab_entry entry;
22060 struct strtab_entry *result;
22061
22062 entry.str = str;
22063 slot = htab_find_slot (table, &entry, INSERT);
22064 if (*slot)
22065 result = *slot;
22066 else
22067 {
22068 result = XNEW (struct strtab_entry);
22069 result->offset = obstack_object_size (cpool);
22070 result->str = str;
22071 obstack_grow_str0 (cpool, str);
22072 *slot = result;
22073 }
22074 return result->offset;
22075}
22076
22077/* An entry in the symbol table. */
22078struct symtab_index_entry
22079{
22080 /* The name of the symbol. */
22081 const char *name;
22082 /* The offset of the name in the constant pool. */
22083 offset_type index_offset;
22084 /* A sorted vector of the indices of all the CUs that hold an object
22085 of this name. */
22086 VEC (offset_type) *cu_indices;
22087};
22088
22089/* The symbol table. This is a power-of-2-sized hash table. */
22090struct mapped_symtab
22091{
22092 offset_type n_elements;
22093 offset_type size;
22094 struct symtab_index_entry **data;
22095};
22096
22097/* Hash function for a symtab_index_entry. */
b89be57b 22098
9291a0cd
TT
22099static hashval_t
22100hash_symtab_entry (const void *e)
22101{
22102 const struct symtab_index_entry *entry = e;
22103 return iterative_hash (VEC_address (offset_type, entry->cu_indices),
22104 sizeof (offset_type) * VEC_length (offset_type,
22105 entry->cu_indices),
22106 0);
22107}
22108
22109/* Equality function for a symtab_index_entry. */
b89be57b 22110
9291a0cd
TT
22111static int
22112eq_symtab_entry (const void *a, const void *b)
22113{
22114 const struct symtab_index_entry *ea = a;
22115 const struct symtab_index_entry *eb = b;
22116 int len = VEC_length (offset_type, ea->cu_indices);
22117 if (len != VEC_length (offset_type, eb->cu_indices))
22118 return 0;
22119 return !memcmp (VEC_address (offset_type, ea->cu_indices),
22120 VEC_address (offset_type, eb->cu_indices),
22121 sizeof (offset_type) * len);
22122}
22123
22124/* Destroy a symtab_index_entry. */
b89be57b 22125
9291a0cd
TT
22126static void
22127delete_symtab_entry (void *p)
22128{
22129 struct symtab_index_entry *entry = p;
22130 VEC_free (offset_type, entry->cu_indices);
22131 xfree (entry);
22132}
22133
22134/* Create a hash table holding symtab_index_entry objects. */
b89be57b 22135
9291a0cd 22136static htab_t
3876f04e 22137create_symbol_hash_table (void)
9291a0cd
TT
22138{
22139 return htab_create_alloc (100, hash_symtab_entry, eq_symtab_entry,
22140 delete_symtab_entry, xcalloc, xfree);
22141}
22142
22143/* Create a new mapped symtab object. */
b89be57b 22144
9291a0cd
TT
22145static struct mapped_symtab *
22146create_mapped_symtab (void)
22147{
22148 struct mapped_symtab *symtab = XNEW (struct mapped_symtab);
22149 symtab->n_elements = 0;
22150 symtab->size = 1024;
22151 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
22152 return symtab;
22153}
22154
22155/* Destroy a mapped_symtab. */
b89be57b 22156
9291a0cd
TT
22157static void
22158cleanup_mapped_symtab (void *p)
22159{
22160 struct mapped_symtab *symtab = p;
22161 /* The contents of the array are freed when the other hash table is
22162 destroyed. */
22163 xfree (symtab->data);
22164 xfree (symtab);
22165}
22166
22167/* Find a slot in SYMTAB for the symbol NAME. Returns a pointer to
559a7a62
JK
22168 the slot.
22169
22170 Function is used only during write_hash_table so no index format backward
22171 compatibility is needed. */
b89be57b 22172
9291a0cd
TT
22173static struct symtab_index_entry **
22174find_slot (struct mapped_symtab *symtab, const char *name)
22175{
559a7a62 22176 offset_type index, step, hash = mapped_index_string_hash (INT_MAX, name);
9291a0cd
TT
22177
22178 index = hash & (symtab->size - 1);
22179 step = ((hash * 17) & (symtab->size - 1)) | 1;
22180
22181 for (;;)
22182 {
22183 if (!symtab->data[index] || !strcmp (name, symtab->data[index]->name))
22184 return &symtab->data[index];
22185 index = (index + step) & (symtab->size - 1);
22186 }
22187}
22188
22189/* Expand SYMTAB's hash table. */
b89be57b 22190
9291a0cd
TT
22191static void
22192hash_expand (struct mapped_symtab *symtab)
22193{
22194 offset_type old_size = symtab->size;
22195 offset_type i;
22196 struct symtab_index_entry **old_entries = symtab->data;
22197
22198 symtab->size *= 2;
22199 symtab->data = XCNEWVEC (struct symtab_index_entry *, symtab->size);
22200
22201 for (i = 0; i < old_size; ++i)
22202 {
22203 if (old_entries[i])
22204 {
22205 struct symtab_index_entry **slot = find_slot (symtab,
22206 old_entries[i]->name);
22207 *slot = old_entries[i];
22208 }
22209 }
22210
22211 xfree (old_entries);
22212}
22213
156942c7
DE
22214/* Add an entry to SYMTAB. NAME is the name of the symbol.
22215 CU_INDEX is the index of the CU in which the symbol appears.
22216 IS_STATIC is one if the symbol is static, otherwise zero (global). */
b89be57b 22217
9291a0cd
TT
22218static void
22219add_index_entry (struct mapped_symtab *symtab, const char *name,
156942c7 22220 int is_static, gdb_index_symbol_kind kind,
9291a0cd
TT
22221 offset_type cu_index)
22222{
22223 struct symtab_index_entry **slot;
156942c7 22224 offset_type cu_index_and_attrs;
9291a0cd
TT
22225
22226 ++symtab->n_elements;
22227 if (4 * symtab->n_elements / 3 >= symtab->size)
22228 hash_expand (symtab);
22229
22230 slot = find_slot (symtab, name);
22231 if (!*slot)
22232 {
22233 *slot = XNEW (struct symtab_index_entry);
22234 (*slot)->name = name;
156942c7 22235 /* index_offset is set later. */
9291a0cd
TT
22236 (*slot)->cu_indices = NULL;
22237 }
156942c7
DE
22238
22239 cu_index_and_attrs = 0;
22240 DW2_GDB_INDEX_CU_SET_VALUE (cu_index_and_attrs, cu_index);
22241 DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE (cu_index_and_attrs, is_static);
22242 DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE (cu_index_and_attrs, kind);
22243
22244 /* We don't want to record an index value twice as we want to avoid the
22245 duplication.
22246 We process all global symbols and then all static symbols
22247 (which would allow us to avoid the duplication by only having to check
22248 the last entry pushed), but a symbol could have multiple kinds in one CU.
22249 To keep things simple we don't worry about the duplication here and
22250 sort and uniqufy the list after we've processed all symbols. */
22251 VEC_safe_push (offset_type, (*slot)->cu_indices, cu_index_and_attrs);
22252}
22253
22254/* qsort helper routine for uniquify_cu_indices. */
22255
22256static int
22257offset_type_compare (const void *ap, const void *bp)
22258{
22259 offset_type a = *(offset_type *) ap;
22260 offset_type b = *(offset_type *) bp;
22261
22262 return (a > b) - (b > a);
22263}
22264
22265/* Sort and remove duplicates of all symbols' cu_indices lists. */
22266
22267static void
22268uniquify_cu_indices (struct mapped_symtab *symtab)
22269{
22270 int i;
22271
22272 for (i = 0; i < symtab->size; ++i)
22273 {
22274 struct symtab_index_entry *entry = symtab->data[i];
22275
22276 if (entry
22277 && entry->cu_indices != NULL)
22278 {
22279 unsigned int next_to_insert, next_to_check;
22280 offset_type last_value;
22281
22282 qsort (VEC_address (offset_type, entry->cu_indices),
22283 VEC_length (offset_type, entry->cu_indices),
22284 sizeof (offset_type), offset_type_compare);
22285
22286 last_value = VEC_index (offset_type, entry->cu_indices, 0);
22287 next_to_insert = 1;
22288 for (next_to_check = 1;
22289 next_to_check < VEC_length (offset_type, entry->cu_indices);
22290 ++next_to_check)
22291 {
22292 if (VEC_index (offset_type, entry->cu_indices, next_to_check)
22293 != last_value)
22294 {
22295 last_value = VEC_index (offset_type, entry->cu_indices,
22296 next_to_check);
22297 VEC_replace (offset_type, entry->cu_indices, next_to_insert,
22298 last_value);
22299 ++next_to_insert;
22300 }
22301 }
22302 VEC_truncate (offset_type, entry->cu_indices, next_to_insert);
22303 }
22304 }
9291a0cd
TT
22305}
22306
22307/* Add a vector of indices to the constant pool. */
b89be57b 22308
9291a0cd 22309static offset_type
3876f04e 22310add_indices_to_cpool (htab_t symbol_hash_table, struct obstack *cpool,
9291a0cd
TT
22311 struct symtab_index_entry *entry)
22312{
22313 void **slot;
22314
3876f04e 22315 slot = htab_find_slot (symbol_hash_table, entry, INSERT);
9291a0cd
TT
22316 if (!*slot)
22317 {
22318 offset_type len = VEC_length (offset_type, entry->cu_indices);
22319 offset_type val = MAYBE_SWAP (len);
22320 offset_type iter;
22321 int i;
22322
22323 *slot = entry;
22324 entry->index_offset = obstack_object_size (cpool);
22325
22326 obstack_grow (cpool, &val, sizeof (val));
22327 for (i = 0;
22328 VEC_iterate (offset_type, entry->cu_indices, i, iter);
22329 ++i)
22330 {
22331 val = MAYBE_SWAP (iter);
22332 obstack_grow (cpool, &val, sizeof (val));
22333 }
22334 }
22335 else
22336 {
22337 struct symtab_index_entry *old_entry = *slot;
22338 entry->index_offset = old_entry->index_offset;
22339 entry = old_entry;
22340 }
22341 return entry->index_offset;
22342}
22343
22344/* Write the mapped hash table SYMTAB to the obstack OUTPUT, with
22345 constant pool entries going into the obstack CPOOL. */
b89be57b 22346
9291a0cd
TT
22347static void
22348write_hash_table (struct mapped_symtab *symtab,
22349 struct obstack *output, struct obstack *cpool)
22350{
22351 offset_type i;
3876f04e 22352 htab_t symbol_hash_table;
9291a0cd
TT
22353 htab_t str_table;
22354
3876f04e 22355 symbol_hash_table = create_symbol_hash_table ();
9291a0cd 22356 str_table = create_strtab ();
3876f04e 22357
9291a0cd
TT
22358 /* We add all the index vectors to the constant pool first, to
22359 ensure alignment is ok. */
22360 for (i = 0; i < symtab->size; ++i)
22361 {
22362 if (symtab->data[i])
3876f04e 22363 add_indices_to_cpool (symbol_hash_table, cpool, symtab->data[i]);
9291a0cd
TT
22364 }
22365
22366 /* Now write out the hash table. */
22367 for (i = 0; i < symtab->size; ++i)
22368 {
22369 offset_type str_off, vec_off;
22370
22371 if (symtab->data[i])
22372 {
22373 str_off = add_string (str_table, cpool, symtab->data[i]->name);
22374 vec_off = symtab->data[i]->index_offset;
22375 }
22376 else
22377 {
22378 /* While 0 is a valid constant pool index, it is not valid
22379 to have 0 for both offsets. */
22380 str_off = 0;
22381 vec_off = 0;
22382 }
22383
22384 str_off = MAYBE_SWAP (str_off);
22385 vec_off = MAYBE_SWAP (vec_off);
22386
22387 obstack_grow (output, &str_off, sizeof (str_off));
22388 obstack_grow (output, &vec_off, sizeof (vec_off));
22389 }
22390
22391 htab_delete (str_table);
3876f04e 22392 htab_delete (symbol_hash_table);
9291a0cd
TT
22393}
22394
0a5429f6
DE
22395/* Struct to map psymtab to CU index in the index file. */
22396struct psymtab_cu_index_map
22397{
22398 struct partial_symtab *psymtab;
22399 unsigned int cu_index;
22400};
22401
22402static hashval_t
22403hash_psymtab_cu_index (const void *item)
22404{
22405 const struct psymtab_cu_index_map *map = item;
22406
22407 return htab_hash_pointer (map->psymtab);
22408}
22409
22410static int
22411eq_psymtab_cu_index (const void *item_lhs, const void *item_rhs)
22412{
22413 const struct psymtab_cu_index_map *lhs = item_lhs;
22414 const struct psymtab_cu_index_map *rhs = item_rhs;
22415
22416 return lhs->psymtab == rhs->psymtab;
22417}
22418
22419/* Helper struct for building the address table. */
22420struct addrmap_index_data
22421{
22422 struct objfile *objfile;
22423 struct obstack *addr_obstack;
22424 htab_t cu_index_htab;
22425
22426 /* Non-zero if the previous_* fields are valid.
22427 We can't write an entry until we see the next entry (since it is only then
22428 that we know the end of the entry). */
22429 int previous_valid;
22430 /* Index of the CU in the table of all CUs in the index file. */
22431 unsigned int previous_cu_index;
0963b4bd 22432 /* Start address of the CU. */
0a5429f6
DE
22433 CORE_ADDR previous_cu_start;
22434};
22435
22436/* Write an address entry to OBSTACK. */
b89be57b 22437
9291a0cd 22438static void
0a5429f6
DE
22439add_address_entry (struct objfile *objfile, struct obstack *obstack,
22440 CORE_ADDR start, CORE_ADDR end, unsigned int cu_index)
9291a0cd 22441{
0a5429f6 22442 offset_type cu_index_to_write;
948f8e3d 22443 gdb_byte addr[8];
9291a0cd
TT
22444 CORE_ADDR baseaddr;
22445
22446 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
22447
0a5429f6
DE
22448 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, start - baseaddr);
22449 obstack_grow (obstack, addr, 8);
22450 store_unsigned_integer (addr, 8, BFD_ENDIAN_LITTLE, end - baseaddr);
22451 obstack_grow (obstack, addr, 8);
22452 cu_index_to_write = MAYBE_SWAP (cu_index);
22453 obstack_grow (obstack, &cu_index_to_write, sizeof (offset_type));
22454}
22455
22456/* Worker function for traversing an addrmap to build the address table. */
22457
22458static int
22459add_address_entry_worker (void *datap, CORE_ADDR start_addr, void *obj)
22460{
22461 struct addrmap_index_data *data = datap;
22462 struct partial_symtab *pst = obj;
0a5429f6
DE
22463
22464 if (data->previous_valid)
22465 add_address_entry (data->objfile, data->addr_obstack,
22466 data->previous_cu_start, start_addr,
22467 data->previous_cu_index);
22468
22469 data->previous_cu_start = start_addr;
22470 if (pst != NULL)
22471 {
22472 struct psymtab_cu_index_map find_map, *map;
22473 find_map.psymtab = pst;
22474 map = htab_find (data->cu_index_htab, &find_map);
22475 gdb_assert (map != NULL);
22476 data->previous_cu_index = map->cu_index;
22477 data->previous_valid = 1;
22478 }
22479 else
22480 data->previous_valid = 0;
22481
22482 return 0;
22483}
22484
22485/* Write OBJFILE's address map to OBSTACK.
22486 CU_INDEX_HTAB is used to map addrmap entries to their CU indices
22487 in the index file. */
22488
22489static void
22490write_address_map (struct objfile *objfile, struct obstack *obstack,
22491 htab_t cu_index_htab)
22492{
22493 struct addrmap_index_data addrmap_index_data;
22494
22495 /* When writing the address table, we have to cope with the fact that
22496 the addrmap iterator only provides the start of a region; we have to
22497 wait until the next invocation to get the start of the next region. */
22498
22499 addrmap_index_data.objfile = objfile;
22500 addrmap_index_data.addr_obstack = obstack;
22501 addrmap_index_data.cu_index_htab = cu_index_htab;
22502 addrmap_index_data.previous_valid = 0;
22503
22504 addrmap_foreach (objfile->psymtabs_addrmap, add_address_entry_worker,
22505 &addrmap_index_data);
22506
22507 /* It's highly unlikely the last entry (end address = 0xff...ff)
22508 is valid, but we should still handle it.
22509 The end address is recorded as the start of the next region, but that
22510 doesn't work here. To cope we pass 0xff...ff, this is a rare situation
22511 anyway. */
22512 if (addrmap_index_data.previous_valid)
22513 add_address_entry (objfile, obstack,
22514 addrmap_index_data.previous_cu_start, (CORE_ADDR) -1,
22515 addrmap_index_data.previous_cu_index);
9291a0cd
TT
22516}
22517
156942c7
DE
22518/* Return the symbol kind of PSYM. */
22519
22520static gdb_index_symbol_kind
22521symbol_kind (struct partial_symbol *psym)
22522{
22523 domain_enum domain = PSYMBOL_DOMAIN (psym);
22524 enum address_class aclass = PSYMBOL_CLASS (psym);
22525
22526 switch (domain)
22527 {
22528 case VAR_DOMAIN:
22529 switch (aclass)
22530 {
22531 case LOC_BLOCK:
22532 return GDB_INDEX_SYMBOL_KIND_FUNCTION;
22533 case LOC_TYPEDEF:
22534 return GDB_INDEX_SYMBOL_KIND_TYPE;
22535 case LOC_COMPUTED:
22536 case LOC_CONST_BYTES:
22537 case LOC_OPTIMIZED_OUT:
22538 case LOC_STATIC:
22539 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
22540 case LOC_CONST:
22541 /* Note: It's currently impossible to recognize psyms as enum values
22542 short of reading the type info. For now punt. */
22543 return GDB_INDEX_SYMBOL_KIND_VARIABLE;
22544 default:
22545 /* There are other LOC_FOO values that one might want to classify
22546 as variables, but dwarf2read.c doesn't currently use them. */
22547 return GDB_INDEX_SYMBOL_KIND_OTHER;
22548 }
22549 case STRUCT_DOMAIN:
22550 return GDB_INDEX_SYMBOL_KIND_TYPE;
22551 default:
22552 return GDB_INDEX_SYMBOL_KIND_OTHER;
22553 }
22554}
22555
9291a0cd 22556/* Add a list of partial symbols to SYMTAB. */
b89be57b 22557
9291a0cd
TT
22558static void
22559write_psymbols (struct mapped_symtab *symtab,
987d643c 22560 htab_t psyms_seen,
9291a0cd
TT
22561 struct partial_symbol **psymp,
22562 int count,
987d643c
TT
22563 offset_type cu_index,
22564 int is_static)
9291a0cd
TT
22565{
22566 for (; count-- > 0; ++psymp)
22567 {
156942c7
DE
22568 struct partial_symbol *psym = *psymp;
22569 void **slot;
987d643c 22570
156942c7 22571 if (SYMBOL_LANGUAGE (psym) == language_ada)
9291a0cd 22572 error (_("Ada is not currently supported by the index"));
987d643c 22573
987d643c 22574 /* Only add a given psymbol once. */
156942c7 22575 slot = htab_find_slot (psyms_seen, psym, INSERT);
987d643c
TT
22576 if (!*slot)
22577 {
156942c7
DE
22578 gdb_index_symbol_kind kind = symbol_kind (psym);
22579
22580 *slot = psym;
22581 add_index_entry (symtab, SYMBOL_SEARCH_NAME (psym),
22582 is_static, kind, cu_index);
987d643c 22583 }
9291a0cd
TT
22584 }
22585}
22586
22587/* Write the contents of an ("unfinished") obstack to FILE. Throw an
22588 exception if there is an error. */
b89be57b 22589
9291a0cd
TT
22590static void
22591write_obstack (FILE *file, struct obstack *obstack)
22592{
22593 if (fwrite (obstack_base (obstack), 1, obstack_object_size (obstack),
22594 file)
22595 != obstack_object_size (obstack))
22596 error (_("couldn't data write to file"));
22597}
22598
22599/* Unlink a file if the argument is not NULL. */
b89be57b 22600
9291a0cd
TT
22601static void
22602unlink_if_set (void *p)
22603{
22604 char **filename = p;
22605 if (*filename)
22606 unlink (*filename);
22607}
22608
1fd400ff
TT
22609/* A helper struct used when iterating over debug_types. */
22610struct signatured_type_index_data
22611{
22612 struct objfile *objfile;
22613 struct mapped_symtab *symtab;
22614 struct obstack *types_list;
987d643c 22615 htab_t psyms_seen;
1fd400ff
TT
22616 int cu_index;
22617};
22618
22619/* A helper function that writes a single signatured_type to an
22620 obstack. */
b89be57b 22621
1fd400ff
TT
22622static int
22623write_one_signatured_type (void **slot, void *d)
22624{
22625 struct signatured_type_index_data *info = d;
22626 struct signatured_type *entry = (struct signatured_type *) *slot;
0186c6a7 22627 struct partial_symtab *psymtab = entry->per_cu.v.psymtab;
1fd400ff
TT
22628 gdb_byte val[8];
22629
22630 write_psymbols (info->symtab,
987d643c 22631 info->psyms_seen,
3e43a32a
MS
22632 info->objfile->global_psymbols.list
22633 + psymtab->globals_offset,
987d643c
TT
22634 psymtab->n_global_syms, info->cu_index,
22635 0);
1fd400ff 22636 write_psymbols (info->symtab,
987d643c 22637 info->psyms_seen,
3e43a32a
MS
22638 info->objfile->static_psymbols.list
22639 + psymtab->statics_offset,
987d643c
TT
22640 psymtab->n_static_syms, info->cu_index,
22641 1);
1fd400ff 22642
b64f50a1
JK
22643 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
22644 entry->per_cu.offset.sect_off);
1fd400ff 22645 obstack_grow (info->types_list, val, 8);
3019eac3
DE
22646 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
22647 entry->type_offset_in_tu.cu_off);
1fd400ff
TT
22648 obstack_grow (info->types_list, val, 8);
22649 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, entry->signature);
22650 obstack_grow (info->types_list, val, 8);
22651
22652 ++info->cu_index;
22653
22654 return 1;
22655}
22656
95554aad
TT
22657/* Recurse into all "included" dependencies and write their symbols as
22658 if they appeared in this psymtab. */
22659
22660static void
22661recursively_write_psymbols (struct objfile *objfile,
22662 struct partial_symtab *psymtab,
22663 struct mapped_symtab *symtab,
22664 htab_t psyms_seen,
22665 offset_type cu_index)
22666{
22667 int i;
22668
22669 for (i = 0; i < psymtab->number_of_dependencies; ++i)
22670 if (psymtab->dependencies[i]->user != NULL)
22671 recursively_write_psymbols (objfile, psymtab->dependencies[i],
22672 symtab, psyms_seen, cu_index);
22673
22674 write_psymbols (symtab,
22675 psyms_seen,
22676 objfile->global_psymbols.list + psymtab->globals_offset,
22677 psymtab->n_global_syms, cu_index,
22678 0);
22679 write_psymbols (symtab,
22680 psyms_seen,
22681 objfile->static_psymbols.list + psymtab->statics_offset,
22682 psymtab->n_static_syms, cu_index,
22683 1);
22684}
22685
9291a0cd 22686/* Create an index file for OBJFILE in the directory DIR. */
b89be57b 22687
9291a0cd
TT
22688static void
22689write_psymtabs_to_index (struct objfile *objfile, const char *dir)
22690{
22691 struct cleanup *cleanup;
22692 char *filename, *cleanup_filename;
1fd400ff
TT
22693 struct obstack contents, addr_obstack, constant_pool, symtab_obstack;
22694 struct obstack cu_list, types_cu_list;
9291a0cd
TT
22695 int i;
22696 FILE *out_file;
22697 struct mapped_symtab *symtab;
22698 offset_type val, size_of_contents, total_len;
22699 struct stat st;
987d643c 22700 htab_t psyms_seen;
0a5429f6
DE
22701 htab_t cu_index_htab;
22702 struct psymtab_cu_index_map *psymtab_cu_index_map;
9291a0cd 22703
9291a0cd
TT
22704 if (dwarf2_per_objfile->using_index)
22705 error (_("Cannot use an index to create the index"));
22706
8b70b953
TT
22707 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) > 1)
22708 error (_("Cannot make an index when the file has multiple .debug_types sections"));
22709
260b681b
DE
22710 if (!objfile->psymtabs || !objfile->psymtabs_addrmap)
22711 return;
22712
4262abfb
JK
22713 if (stat (objfile_name (objfile), &st) < 0)
22714 perror_with_name (objfile_name (objfile));
9291a0cd 22715
4262abfb 22716 filename = concat (dir, SLASH_STRING, lbasename (objfile_name (objfile)),
9291a0cd
TT
22717 INDEX_SUFFIX, (char *) NULL);
22718 cleanup = make_cleanup (xfree, filename);
22719
614c279d 22720 out_file = gdb_fopen_cloexec (filename, "wb");
9291a0cd
TT
22721 if (!out_file)
22722 error (_("Can't open `%s' for writing"), filename);
22723
22724 cleanup_filename = filename;
22725 make_cleanup (unlink_if_set, &cleanup_filename);
22726
22727 symtab = create_mapped_symtab ();
22728 make_cleanup (cleanup_mapped_symtab, symtab);
22729
22730 obstack_init (&addr_obstack);
22731 make_cleanup_obstack_free (&addr_obstack);
22732
22733 obstack_init (&cu_list);
22734 make_cleanup_obstack_free (&cu_list);
22735
1fd400ff
TT
22736 obstack_init (&types_cu_list);
22737 make_cleanup_obstack_free (&types_cu_list);
22738
987d643c
TT
22739 psyms_seen = htab_create_alloc (100, htab_hash_pointer, htab_eq_pointer,
22740 NULL, xcalloc, xfree);
96408a79 22741 make_cleanup_htab_delete (psyms_seen);
987d643c 22742
0a5429f6
DE
22743 /* While we're scanning CU's create a table that maps a psymtab pointer
22744 (which is what addrmap records) to its index (which is what is recorded
22745 in the index file). This will later be needed to write the address
22746 table. */
22747 cu_index_htab = htab_create_alloc (100,
22748 hash_psymtab_cu_index,
22749 eq_psymtab_cu_index,
22750 NULL, xcalloc, xfree);
96408a79 22751 make_cleanup_htab_delete (cu_index_htab);
0a5429f6
DE
22752 psymtab_cu_index_map = (struct psymtab_cu_index_map *)
22753 xmalloc (sizeof (struct psymtab_cu_index_map)
22754 * dwarf2_per_objfile->n_comp_units);
22755 make_cleanup (xfree, psymtab_cu_index_map);
22756
22757 /* The CU list is already sorted, so we don't need to do additional
1fd400ff
TT
22758 work here. Also, the debug_types entries do not appear in
22759 all_comp_units, but only in their own hash table. */
9291a0cd
TT
22760 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
22761 {
3e43a32a
MS
22762 struct dwarf2_per_cu_data *per_cu
22763 = dwarf2_per_objfile->all_comp_units[i];
e254ef6a 22764 struct partial_symtab *psymtab = per_cu->v.psymtab;
9291a0cd 22765 gdb_byte val[8];
0a5429f6
DE
22766 struct psymtab_cu_index_map *map;
22767 void **slot;
9291a0cd 22768
92fac807
JK
22769 /* CU of a shared file from 'dwz -m' may be unused by this main file.
22770 It may be referenced from a local scope but in such case it does not
22771 need to be present in .gdb_index. */
22772 if (psymtab == NULL)
22773 continue;
22774
95554aad
TT
22775 if (psymtab->user == NULL)
22776 recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);
9291a0cd 22777
0a5429f6
DE
22778 map = &psymtab_cu_index_map[i];
22779 map->psymtab = psymtab;
22780 map->cu_index = i;
22781 slot = htab_find_slot (cu_index_htab, map, INSERT);
22782 gdb_assert (slot != NULL);
22783 gdb_assert (*slot == NULL);
22784 *slot = map;
9291a0cd 22785
b64f50a1
JK
22786 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE,
22787 per_cu->offset.sect_off);
9291a0cd 22788 obstack_grow (&cu_list, val, 8);
e254ef6a 22789 store_unsigned_integer (val, 8, BFD_ENDIAN_LITTLE, per_cu->length);
9291a0cd
TT
22790 obstack_grow (&cu_list, val, 8);
22791 }
22792
0a5429f6
DE
22793 /* Dump the address map. */
22794 write_address_map (objfile, &addr_obstack, cu_index_htab);
22795
1fd400ff
TT
22796 /* Write out the .debug_type entries, if any. */
22797 if (dwarf2_per_objfile->signatured_types)
22798 {
22799 struct signatured_type_index_data sig_data;
22800
22801 sig_data.objfile = objfile;
22802 sig_data.symtab = symtab;
22803 sig_data.types_list = &types_cu_list;
987d643c 22804 sig_data.psyms_seen = psyms_seen;
1fd400ff
TT
22805 sig_data.cu_index = dwarf2_per_objfile->n_comp_units;
22806 htab_traverse_noresize (dwarf2_per_objfile->signatured_types,
22807 write_one_signatured_type, &sig_data);
22808 }
22809
156942c7
DE
22810 /* Now that we've processed all symbols we can shrink their cu_indices
22811 lists. */
22812 uniquify_cu_indices (symtab);
22813
9291a0cd
TT
22814 obstack_init (&constant_pool);
22815 make_cleanup_obstack_free (&constant_pool);
22816 obstack_init (&symtab_obstack);
22817 make_cleanup_obstack_free (&symtab_obstack);
22818 write_hash_table (symtab, &symtab_obstack, &constant_pool);
22819
22820 obstack_init (&contents);
22821 make_cleanup_obstack_free (&contents);
1fd400ff 22822 size_of_contents = 6 * sizeof (offset_type);
9291a0cd
TT
22823 total_len = size_of_contents;
22824
22825 /* The version number. */
796a7ff8 22826 val = MAYBE_SWAP (8);
9291a0cd
TT
22827 obstack_grow (&contents, &val, sizeof (val));
22828
22829 /* The offset of the CU list from the start of the file. */
22830 val = MAYBE_SWAP (total_len);
22831 obstack_grow (&contents, &val, sizeof (val));
22832 total_len += obstack_object_size (&cu_list);
22833
1fd400ff
TT
22834 /* The offset of the types CU list from the start of the file. */
22835 val = MAYBE_SWAP (total_len);
22836 obstack_grow (&contents, &val, sizeof (val));
22837 total_len += obstack_object_size (&types_cu_list);
22838
9291a0cd
TT
22839 /* The offset of the address table from the start of the file. */
22840 val = MAYBE_SWAP (total_len);
22841 obstack_grow (&contents, &val, sizeof (val));
22842 total_len += obstack_object_size (&addr_obstack);
22843
22844 /* The offset of the symbol table from the start of the file. */
22845 val = MAYBE_SWAP (total_len);
22846 obstack_grow (&contents, &val, sizeof (val));
22847 total_len += obstack_object_size (&symtab_obstack);
22848
22849 /* The offset of the constant pool from the start of the file. */
22850 val = MAYBE_SWAP (total_len);
22851 obstack_grow (&contents, &val, sizeof (val));
22852 total_len += obstack_object_size (&constant_pool);
22853
22854 gdb_assert (obstack_object_size (&contents) == size_of_contents);
22855
22856 write_obstack (out_file, &contents);
22857 write_obstack (out_file, &cu_list);
1fd400ff 22858 write_obstack (out_file, &types_cu_list);
9291a0cd
TT
22859 write_obstack (out_file, &addr_obstack);
22860 write_obstack (out_file, &symtab_obstack);
22861 write_obstack (out_file, &constant_pool);
22862
22863 fclose (out_file);
22864
22865 /* We want to keep the file, so we set cleanup_filename to NULL
22866 here. See unlink_if_set. */
22867 cleanup_filename = NULL;
22868
22869 do_cleanups (cleanup);
22870}
22871
90476074
TT
22872/* Implementation of the `save gdb-index' command.
22873
22874 Note that the file format used by this command is documented in the
22875 GDB manual. Any changes here must be documented there. */
11570e71 22876
9291a0cd
TT
22877static void
22878save_gdb_index_command (char *arg, int from_tty)
22879{
22880 struct objfile *objfile;
22881
22882 if (!arg || !*arg)
96d19272 22883 error (_("usage: save gdb-index DIRECTORY"));
9291a0cd
TT
22884
22885 ALL_OBJFILES (objfile)
22886 {
22887 struct stat st;
22888
22889 /* If the objfile does not correspond to an actual file, skip it. */
4262abfb 22890 if (stat (objfile_name (objfile), &st) < 0)
9291a0cd
TT
22891 continue;
22892
22893 dwarf2_per_objfile = objfile_data (objfile, dwarf2_objfile_data_key);
22894 if (dwarf2_per_objfile)
22895 {
22896 volatile struct gdb_exception except;
22897
22898 TRY_CATCH (except, RETURN_MASK_ERROR)
22899 {
22900 write_psymtabs_to_index (objfile, arg);
22901 }
22902 if (except.reason < 0)
22903 exception_fprintf (gdb_stderr, except,
22904 _("Error while writing index for `%s': "),
4262abfb 22905 objfile_name (objfile));
9291a0cd
TT
22906 }
22907 }
dce234bc
PP
22908}
22909
9291a0cd
TT
22910\f
22911
9eae7c52
TT
22912int dwarf2_always_disassemble;
22913
22914static void
22915show_dwarf2_always_disassemble (struct ui_file *file, int from_tty,
22916 struct cmd_list_element *c, const char *value)
22917{
3e43a32a
MS
22918 fprintf_filtered (file,
22919 _("Whether to always disassemble "
22920 "DWARF expressions is %s.\n"),
9eae7c52
TT
22921 value);
22922}
22923
900e11f9
JK
22924static void
22925show_check_physname (struct ui_file *file, int from_tty,
22926 struct cmd_list_element *c, const char *value)
22927{
22928 fprintf_filtered (file,
22929 _("Whether to check \"physname\" is %s.\n"),
22930 value);
22931}
22932
6502dd73
DJ
22933void _initialize_dwarf2_read (void);
22934
22935void
22936_initialize_dwarf2_read (void)
22937{
96d19272
JK
22938 struct cmd_list_element *c;
22939
dce234bc 22940 dwarf2_objfile_data_key
c1bd65d0 22941 = register_objfile_data_with_cleanup (NULL, dwarf2_per_objfile_free);
ae038cb0 22942
1bedd215
AC
22943 add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\
22944Set DWARF 2 specific variables.\n\
22945Configure DWARF 2 variables such as the cache size"),
ae038cb0
DJ
22946 &set_dwarf2_cmdlist, "maintenance set dwarf2 ",
22947 0/*allow-unknown*/, &maintenance_set_cmdlist);
22948
1bedd215
AC
22949 add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\
22950Show DWARF 2 specific variables\n\
22951Show DWARF 2 variables such as the cache size"),
ae038cb0
DJ
22952 &show_dwarf2_cmdlist, "maintenance show dwarf2 ",
22953 0/*allow-unknown*/, &maintenance_show_cmdlist);
22954
22955 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
7915a72c
AC
22956 &dwarf2_max_cache_age, _("\
22957Set the upper bound on the age of cached dwarf2 compilation units."), _("\
22958Show the upper bound on the age of cached dwarf2 compilation units."), _("\
22959A higher limit means that cached compilation units will be stored\n\
22960in memory longer, and more total memory will be used. Zero disables\n\
22961caching, which can slow down startup."),
2c5b56ce 22962 NULL,
920d2a44 22963 show_dwarf2_max_cache_age,
2c5b56ce 22964 &set_dwarf2_cmdlist,
ae038cb0 22965 &show_dwarf2_cmdlist);
d97bc12b 22966
9eae7c52
TT
22967 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
22968 &dwarf2_always_disassemble, _("\
22969Set whether `info address' always disassembles DWARF expressions."), _("\
22970Show whether `info address' always disassembles DWARF expressions."), _("\
22971When enabled, DWARF expressions are always printed in an assembly-like\n\
22972syntax. When disabled, expressions will be printed in a more\n\
22973conversational style, when possible."),
22974 NULL,
22975 show_dwarf2_always_disassemble,
22976 &set_dwarf2_cmdlist,
22977 &show_dwarf2_cmdlist);
22978
73be47f5 22979 add_setshow_zuinteger_cmd ("dwarf2-read", no_class, &dwarf2_read_debug, _("\
45cfd468
DE
22980Set debugging of the dwarf2 reader."), _("\
22981Show debugging of the dwarf2 reader."), _("\
73be47f5
DE
22982When enabled (non-zero), debugging messages are printed during dwarf2\n\
22983reading and symtab expansion. A value of 1 (one) provides basic\n\
22984information. A value greater than 1 provides more verbose information."),
45cfd468
DE
22985 NULL,
22986 NULL,
22987 &setdebuglist, &showdebuglist);
22988
ccce17b0 22989 add_setshow_zuinteger_cmd ("dwarf2-die", no_class, &dwarf2_die_debug, _("\
d97bc12b
DE
22990Set debugging of the dwarf2 DIE reader."), _("\
22991Show debugging of the dwarf2 DIE reader."), _("\
22992When enabled (non-zero), DIEs are dumped after they are read in.\n\
22993The value is the maximum depth to print."),
ccce17b0
YQ
22994 NULL,
22995 NULL,
22996 &setdebuglist, &showdebuglist);
9291a0cd 22997
900e11f9
JK
22998 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
22999Set cross-checking of \"physname\" code against demangler."), _("\
23000Show cross-checking of \"physname\" code against demangler."), _("\
23001When enabled, GDB's internal \"physname\" code is checked against\n\
23002the demangler."),
23003 NULL, show_check_physname,
23004 &setdebuglist, &showdebuglist);
23005
e615022a
DE
23006 add_setshow_boolean_cmd ("use-deprecated-index-sections",
23007 no_class, &use_deprecated_index_sections, _("\
23008Set whether to use deprecated gdb_index sections."), _("\
23009Show whether to use deprecated gdb_index sections."), _("\
23010When enabled, deprecated .gdb_index sections are used anyway.\n\
23011Normally they are ignored either because of a missing feature or\n\
23012performance issue.\n\
23013Warning: This option must be enabled before gdb reads the file."),
23014 NULL,
23015 NULL,
23016 &setlist, &showlist);
23017
96d19272 23018 c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
11570e71 23019 _("\
fc1a9d6e 23020Save a gdb-index file.\n\
11570e71 23021Usage: save gdb-index DIRECTORY"),
96d19272
JK
23022 &save_cmdlist);
23023 set_cmd_completer (c, filename_completer);
f1e6e072
TT
23024
23025 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
23026 &dwarf2_locexpr_funcs);
23027 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
23028 &dwarf2_loclist_funcs);
23029
23030 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
23031 &dwarf2_block_frame_base_locexpr_funcs);
23032 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
23033 &dwarf2_block_frame_base_loclist_funcs);
6502dd73 23034}
This page took 3.819191 seconds and 4 git commands to generate.