]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/dwarf2.c
PR22230, buffer overflow in display_debug_macro
[thirdparty/binutils-gdb.git] / bfd / dwarf2.c
CommitLineData
252b5132 1/* DWARF 2 support.
2571583a 2 Copyright (C) 1994-2017 Free Software Foundation, Inc.
252b5132
RH
3
4 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
5 (gavin@cygnus.com).
6
7 From the dwarf2read.c header:
8 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
9 Inc. with support from Florida State University (under contract
10 with the Ada Joint Program Office), and Silicon Graphics, Inc.
11 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
12 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
13 support in dwarfread.c
14
e2f6d277 15 This file is part of BFD.
252b5132 16
e2f6d277
NC
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
cd123cb7 19 the Free Software Foundation; either version 3 of the License, or (at
e2f6d277 20 your option) any later version.
252b5132 21
e2f6d277
NC
22 This program is distributed in the hope that it will be useful, but
23 WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 General Public License for more details.
252b5132 26
e2f6d277
NC
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
cd123cb7
NC
29 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
30 MA 02110-1301, USA. */
252b5132 31
252b5132 32#include "sysdep.h"
3db64b00 33#include "bfd.h"
252b5132
RH
34#include "libiberty.h"
35#include "libbfd.h"
36#include "elf-bfd.h"
fa8f86ff 37#include "dwarf2.h"
252b5132
RH
38
39/* The data in the .debug_line statement prologue looks like this. */
a092b084 40
252b5132 41struct line_head
a092b084 42{
d03ba2a1 43 bfd_vma total_length;
a092b084 44 unsigned short version;
f46c2da6 45 bfd_vma prologue_length;
a092b084 46 unsigned char minimum_instruction_length;
a233b20c 47 unsigned char maximum_ops_per_insn;
a092b084
NC
48 unsigned char default_is_stmt;
49 int line_base;
50 unsigned char line_range;
51 unsigned char opcode_base;
52 unsigned char *standard_opcode_lengths;
53};
54
55/* Attributes have a name and a value. */
56
252b5132 57struct attribute
a092b084
NC
58{
59 enum dwarf_attribute name;
60 enum dwarf_form form;
61 union
252b5132 62 {
a092b084
NC
63 char *str;
64 struct dwarf_block *blk;
8ce8c090
AM
65 bfd_uint64_t val;
66 bfd_int64_t sval;
a092b084
NC
67 }
68 u;
69};
70
98591c73 71/* Blocks are a bunch of untyped bytes. */
252b5132 72struct dwarf_block
a092b084
NC
73{
74 unsigned int size;
f075ee0c 75 bfd_byte *data;
a092b084 76};
252b5132 77
5609a71e 78struct adjusted_section
d4c32a81
L
79{
80 asection *section;
81 bfd_vma adj_vma;
82};
83
a092b084
NC
84struct dwarf2_debug
85{
86 /* A list of all previously read comp_units. */
f075ee0c 87 struct comp_unit *all_comp_units;
252b5132 88
bd210d54
NC
89 /* Last comp unit in list above. */
90 struct comp_unit *last_comp_unit;
91
fc28f9aa
TG
92 /* Names of the debug sections. */
93 const struct dwarf_debug_section *debug_sections;
94
252b5132
RH
95 /* The next unread compilation unit within the .debug_info section.
96 Zero indicates that the .debug_info section has not been loaded
a092b084 97 into a buffer yet. */
f075ee0c 98 bfd_byte *info_ptr;
252b5132 99
a092b084 100 /* Pointer to the end of the .debug_info section memory buffer. */
f075ee0c 101 bfd_byte *info_ptr_end;
252b5132 102
90ed9b8b
AB
103 /* Pointer to the original bfd for which debug was loaded. This is what
104 we use to compare and so check that the cached debug data is still
105 valid - it saves having to possibly dereference the gnu_debuglink each
106 time. */
107 bfd *orig_bfd;
108
0d161102
NC
109 /* Pointer to the bfd, section and address of the beginning of the
110 section. The bfd might be different than expected because of
111 gnu_debuglink sections. */
a50b1753 112 bfd *bfd_ptr;
f075ee0c
AM
113 asection *sec;
114 bfd_byte *sec_info_ptr;
f2363ce5 115
95e34fb4
NC
116 /* Support for alternate debug info sections created by the DWZ utility:
117 This includes a pointer to an alternate bfd which contains *extra*,
118 possibly duplicate debug sections, and pointers to the loaded
119 .debug_str and .debug_info sections from this bfd. */
120 bfd * alt_bfd_ptr;
121 bfd_byte * alt_dwarf_str_buffer;
122 bfd_size_type alt_dwarf_str_size;
123 bfd_byte * alt_dwarf_info_buffer;
124 bfd_size_type alt_dwarf_info_size;
125
aaf30c25
CS
126 /* A pointer to the memory block allocated for info_ptr. Neither
127 info_ptr nor sec_info_ptr are guaranteed to stay pointing to the
1b86808a 128 beginning of the malloc block. */
aaf30c25
CS
129 bfd_byte *info_ptr_memory;
130
f2363ce5 131 /* Pointer to the symbol table. */
f075ee0c 132 asymbol **syms;
f2363ce5 133
a092b084 134 /* Pointer to the .debug_abbrev section loaded into memory. */
f075ee0c 135 bfd_byte *dwarf_abbrev_buffer;
252b5132 136
a092b084 137 /* Length of the loaded .debug_abbrev section. */
3076cd1f 138 bfd_size_type dwarf_abbrev_size;
69dd2e2d
RH
139
140 /* Buffer for decode_line_info. */
f075ee0c 141 bfd_byte *dwarf_line_buffer;
ccdb16fc
JW
142
143 /* Length of the loaded .debug_line section. */
3076cd1f 144 bfd_size_type dwarf_line_size;
d03ba2a1
JJ
145
146 /* Pointer to the .debug_str section loaded into memory. */
f075ee0c 147 bfd_byte *dwarf_str_buffer;
d03ba2a1
JJ
148
149 /* Length of the loaded .debug_str section. */
3076cd1f 150 bfd_size_type dwarf_str_size;
a13afe8e 151
0041f7df
JK
152 /* Pointer to the .debug_line_str section loaded into memory. */
153 bfd_byte *dwarf_line_str_buffer;
154
155 /* Length of the loaded .debug_line_str section. */
156 bfd_size_type dwarf_line_str_size;
157
089e3718 158 /* Pointer to the .debug_ranges section loaded into memory. */
a13afe8e
FF
159 bfd_byte *dwarf_ranges_buffer;
160
089e3718 161 /* Length of the loaded .debug_ranges section. */
3076cd1f 162 bfd_size_type dwarf_ranges_size;
4ab527b0
FF
163
164 /* If the most recent call to bfd_find_nearest_line was given an
165 address in an inlined function, preserve a pointer into the
166 calling chain for subsequent calls to bfd_find_inliner_info to
089e3718 167 use. */
4ab527b0 168 struct funcinfo *inliner_chain;
d4c32a81 169
cd0449ab
AM
170 /* Section VMAs at the time the stash was built. */
171 bfd_vma *sec_vma;
172
5609a71e 173 /* Number of sections whose VMA we must adjust. */
93ee1e36 174 int adjusted_section_count;
d4c32a81 175
5609a71e
DJ
176 /* Array of sections with adjusted VMA. */
177 struct adjusted_section *adjusted_sections;
bd210d54
NC
178
179 /* Number of times find_line is called. This is used in
180 the heuristic for enabling the info hash tables. */
181 int info_hash_count;
182
183#define STASH_INFO_HASH_TRIGGER 100
184
185 /* Hash table mapping symbol names to function infos. */
186 struct info_hash_table *funcinfo_hash_table;
187
188 /* Hash table mapping symbol names to variable infos. */
189 struct info_hash_table *varinfo_hash_table;
190
191 /* Head of comp_unit list in the last hash table update. */
192 struct comp_unit *hash_units_head;
193
194 /* Status of info hash. */
195 int info_hash_status;
196#define STASH_INFO_HASH_OFF 0
197#define STASH_INFO_HASH_ON 1
198#define STASH_INFO_HASH_DISABLED 2
1c37913d
AM
199
200 /* True if we opened bfd_ptr. */
201 bfd_boolean close_on_cleanup;
252b5132
RH
202};
203
a092b084
NC
204struct arange
205{
f623be2b
RH
206 struct arange *next;
207 bfd_vma low;
208 bfd_vma high;
209};
252b5132 210
252b5132 211/* A minimal decoding of DWARF2 compilation units. We only decode
a092b084 212 what's needed to get to the line number information. */
252b5132 213
a092b084
NC
214struct comp_unit
215{
216 /* Chain the previously read compilation units. */
f075ee0c 217 struct comp_unit *next_unit;
252b5132 218
bd210d54
NC
219 /* Likewise, chain the compilation unit read after this one.
220 The comp units are stored in reversed reading order. */
221 struct comp_unit *prev_unit;
222
2ae727ad 223 /* Keep the bfd convenient (for memory allocation). */
f075ee0c 224 bfd *abfd;
252b5132 225
709d67f1
AM
226 /* The lowest and highest addresses contained in this compilation
227 unit as specified in the compilation unit header. */
228 struct arange arange;
252b5132 229
a092b084 230 /* The DW_AT_name attribute (for error messages). */
f075ee0c 231 char *name;
252b5132 232
a092b084 233 /* The abbrev hash table. */
f075ee0c 234 struct abbrev_info **abbrevs;
252b5132 235
e00e8198
AM
236 /* DW_AT_language. */
237 int lang;
238
a092b084 239 /* Note that an error was found by comp_unit_find_nearest_line. */
252b5132
RH
240 int error;
241
a092b084 242 /* The DW_AT_comp_dir attribute. */
f075ee0c 243 char *comp_dir;
252b5132 244
b34976b6 245 /* TRUE if there is a line number table associated with this comp. unit. */
252b5132 246 int stmtlist;
98591c73 247
c0c28ab8
L
248 /* Pointer to the current comp_unit so that we can find a given entry
249 by its reference. */
f075ee0c 250 bfd_byte *info_ptr_unit;
c0c28ab8 251
a092b084 252 /* The offset into .debug_line of the line number table. */
252b5132
RH
253 unsigned long line_offset;
254
a092b084 255 /* Pointer to the first child die for the comp unit. */
f075ee0c 256 bfd_byte *first_child_die_ptr;
252b5132 257
a092b084 258 /* The end of the comp unit. */
f075ee0c 259 bfd_byte *end_ptr;
252b5132 260
a092b084 261 /* The decoded line number, NULL if not yet decoded. */
f075ee0c 262 struct line_info_table *line_table;
252b5132 263
a092b084 264 /* A list of the functions found in this comp. unit. */
f075ee0c 265 struct funcinfo *function_table;
252b5132 266
089e3718
IT
267 /* A table of function information references searchable by address. */
268 struct lookup_funcinfo *lookup_funcinfo_table;
269
270 /* Number of functions in the function_table and sorted_function_table. */
271 bfd_size_type number_of_functions;
272
5420f73d
L
273 /* A list of the variables found in this comp. unit. */
274 struct varinfo *variable_table;
275
d03ba2a1
JJ
276 /* Pointer to dwarf2_debug structure. */
277 struct dwarf2_debug *stash;
278
5609a71e
DJ
279 /* DWARF format version for this unit - from unit header. */
280 int version;
281
a092b084 282 /* Address size for this unit - from unit header. */
252b5132 283 unsigned char addr_size;
d03ba2a1
JJ
284
285 /* Offset size for this unit - from unit header. */
286 unsigned char offset_size;
a13afe8e
FF
287
288 /* Base address for this unit - from DW_AT_low_pc attribute of
289 DW_TAG_compile_unit DIE */
290 bfd_vma base_address;
bd210d54
NC
291
292 /* TRUE if symbols are cached in hash table for faster lookup by name. */
293 bfd_boolean cached;
252b5132
RH
294};
295
a7b97311
AM
296/* This data structure holds the information of an abbrev. */
297struct abbrev_info
298{
299 unsigned int number; /* Number identifying abbrev. */
300 enum dwarf_tag tag; /* DWARF tag. */
301 int has_children; /* Boolean. */
302 unsigned int num_attrs; /* Number of attributes. */
303 struct attr_abbrev *attrs; /* An array of attribute descriptions. */
304 struct abbrev_info *next; /* Next in chain. */
305};
306
307struct attr_abbrev
308{
309 enum dwarf_attribute name;
310 enum dwarf_form form;
0041f7df 311 bfd_vma implicit_const;
a7b97311
AM
312};
313
4a114e3e
L
314/* Map of uncompressed DWARF debug section name to compressed one. It
315 is terminated by NULL uncompressed_name. */
316
e4c93b56 317const struct dwarf_debug_section dwarf_debug_sections[] =
4a114e3e
L
318{
319 { ".debug_abbrev", ".zdebug_abbrev" },
320 { ".debug_aranges", ".zdebug_aranges" },
321 { ".debug_frame", ".zdebug_frame" },
322 { ".debug_info", ".zdebug_info" },
95e34fb4 323 { ".debug_info", ".zdebug_info" },
4a114e3e
L
324 { ".debug_line", ".zdebug_line" },
325 { ".debug_loc", ".zdebug_loc" },
326 { ".debug_macinfo", ".zdebug_macinfo" },
4ccf1e31 327 { ".debug_macro", ".zdebug_macro" },
4a114e3e
L
328 { ".debug_pubnames", ".zdebug_pubnames" },
329 { ".debug_pubtypes", ".zdebug_pubtypes" },
330 { ".debug_ranges", ".zdebug_ranges" },
331 { ".debug_static_func", ".zdebug_static_func" },
332 { ".debug_static_vars", ".zdebug_static_vars" },
333 { ".debug_str", ".zdebug_str", },
95e34fb4 334 { ".debug_str", ".zdebug_str", },
0041f7df 335 { ".debug_line_str", ".zdebug_line_str", },
4a114e3e
L
336 { ".debug_types", ".zdebug_types" },
337 /* GNU DWARF 1 extensions */
338 { ".debug_sfnames", ".zdebug_sfnames" },
339 { ".debug_srcinfo", ".zebug_srcinfo" },
340 /* SGI/MIPS DWARF 2 extensions */
341 { ".debug_funcnames", ".zdebug_funcnames" },
342 { ".debug_typenames", ".zdebug_typenames" },
343 { ".debug_varnames", ".zdebug_varnames" },
344 { ".debug_weaknames", ".zdebug_weaknames" },
345 { NULL, NULL },
346};
347
95e34fb4
NC
348/* NB/ Numbers in this enum must match up with indicies
349 into the dwarf_debug_sections[] array above. */
4a114e3e
L
350enum dwarf_debug_section_enum
351{
352 debug_abbrev = 0,
353 debug_aranges,
354 debug_frame,
355 debug_info,
95e34fb4 356 debug_info_alt,
4a114e3e
L
357 debug_line,
358 debug_loc,
359 debug_macinfo,
4ccf1e31 360 debug_macro,
4a114e3e
L
361 debug_pubnames,
362 debug_pubtypes,
363 debug_ranges,
364 debug_static_func,
365 debug_static_vars,
366 debug_str,
95e34fb4 367 debug_str_alt,
0041f7df 368 debug_line_str,
4a114e3e
L
369 debug_types,
370 debug_sfnames,
371 debug_srcinfo,
372 debug_funcnames,
373 debug_typenames,
374 debug_varnames,
0041f7df
JK
375 debug_weaknames,
376 debug_max
4a114e3e
L
377};
378
0041f7df
JK
379/* A static assertion. */
380extern int dwarf_debug_section_assert[ARRAY_SIZE (dwarf_debug_sections)
381 == debug_max + 1 ? 1 : -1];
382
a7b97311
AM
383#ifndef ABBREV_HASH_SIZE
384#define ABBREV_HASH_SIZE 121
385#endif
386#ifndef ATTR_ALLOC_CHUNK
387#define ATTR_ALLOC_CHUNK 4
388#endif
389
bd210d54
NC
390/* Variable and function hash tables. This is used to speed up look-up
391 in lookup_symbol_in_var_table() and lookup_symbol_in_function_table().
392 In order to share code between variable and function infos, we use
393 a list of untyped pointer for all variable/function info associated with
394 a symbol. We waste a bit of memory for list with one node but that
395 simplifies the code. */
396
397struct info_list_node
398{
399 struct info_list_node *next;
400 void *info;
401};
402
403/* Info hash entry. */
404struct info_hash_entry
405{
406 struct bfd_hash_entry root;
407 struct info_list_node *head;
408};
409
410struct info_hash_table
411{
412 struct bfd_hash_table base;
413};
414
089e3718 415/* Function to create a new entry in info hash table. */
bd210d54
NC
416
417static struct bfd_hash_entry *
418info_hash_table_newfunc (struct bfd_hash_entry *entry,
419 struct bfd_hash_table *table,
420 const char *string)
421{
422 struct info_hash_entry *ret = (struct info_hash_entry *) entry;
423
424 /* Allocate the structure if it has not already been allocated by a
425 derived class. */
426 if (ret == NULL)
427 {
a50b1753 428 ret = (struct info_hash_entry *) bfd_hash_allocate (table,
93ee1e36 429 sizeof (* ret));
bd210d54
NC
430 if (ret == NULL)
431 return NULL;
432 }
433
434 /* Call the allocation method of the base class. */
435 ret = ((struct info_hash_entry *)
2d47a72c 436 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
bd210d54
NC
437
438 /* Initialize the local fields here. */
439 if (ret)
440 ret->head = NULL;
441
442 return (struct bfd_hash_entry *) ret;
443}
444
445/* Function to create a new info hash table. It returns a pointer to the
446 newly created table or NULL if there is any error. We need abfd
447 solely for memory allocation. */
448
449static struct info_hash_table *
450create_info_hash_table (bfd *abfd)
451{
452 struct info_hash_table *hash_table;
453
a2a50954
AM
454 hash_table = ((struct info_hash_table *)
455 bfd_alloc (abfd, sizeof (struct info_hash_table)));
bd210d54
NC
456 if (!hash_table)
457 return hash_table;
458
459 if (!bfd_hash_table_init (&hash_table->base, info_hash_table_newfunc,
460 sizeof (struct info_hash_entry)))
461 {
462 bfd_release (abfd, hash_table);
463 return NULL;
464 }
465
466 return hash_table;
467}
468
469/* Insert an info entry into an info hash table. We do not check of
470 duplicate entries. Also, the caller need to guarantee that the
471 right type of info in inserted as info is passed as a void* pointer.
472 This function returns true if there is no error. */
473
474static bfd_boolean
475insert_info_hash_table (struct info_hash_table *hash_table,
476 const char *key,
477 void *info,
478 bfd_boolean copy_p)
479{
480 struct info_hash_entry *entry;
481 struct info_list_node *node;
482
483 entry = (struct info_hash_entry*) bfd_hash_lookup (&hash_table->base,
484 key, TRUE, copy_p);
485 if (!entry)
486 return FALSE;
487
a50b1753 488 node = (struct info_list_node *) bfd_hash_allocate (&hash_table->base,
93ee1e36 489 sizeof (*node));
bd210d54
NC
490 if (!node)
491 return FALSE;
492
493 node->info = info;
494 node->next = entry->head;
495 entry->head = node;
496
497 return TRUE;
498}
499
500/* Look up an info entry list from an info hash table. Return NULL
089e3718 501 if there is none. */
bd210d54
NC
502
503static struct info_list_node *
504lookup_info_hash_table (struct info_hash_table *hash_table, const char *key)
505{
506 struct info_hash_entry *entry;
507
508 entry = (struct info_hash_entry*) bfd_hash_lookup (&hash_table->base, key,
509 FALSE, FALSE);
510 return entry ? entry->head : NULL;
511}
512
1b315056 513/* Read a section into its appropriate place in the dwarf2_debug
dc80fd5c 514 struct (indicated by SECTION_BUFFER and SECTION_SIZE). If SYMS is
1b315056 515 not NULL, use bfd_simple_get_relocated_section_contents to read the
dc80fd5c
NC
516 section contents, otherwise use bfd_get_section_contents. Fail if
517 the located section does not contain at least OFFSET bytes. */
1b315056
CS
518
519static bfd_boolean
dc80fd5c 520read_section (bfd * abfd,
fc28f9aa 521 const struct dwarf_debug_section *sec,
dc80fd5c
NC
522 asymbol ** syms,
523 bfd_uint64_t offset,
524 bfd_byte ** section_buffer,
525 bfd_size_type * section_size)
1b315056
CS
526{
527 asection *msec;
fc28f9aa 528 const char *section_name = sec->uncompressed_name;
1b315056 529
95e34fb4
NC
530 /* The section may have already been read. */
531 if (*section_buffer == NULL)
1b315056 532 {
53638231 533 msec = bfd_get_section_by_name (abfd, section_name);
4a114e3e 534 if (! msec)
53638231 535 {
fc28f9aa 536 section_name = sec->compressed_name;
93ee1e36
AM
537 if (section_name != NULL)
538 msec = bfd_get_section_by_name (abfd, section_name);
53638231
AS
539 }
540 if (! msec)
2d47a72c 541 {
4eca0228
AM
542 _bfd_error_handler (_("Dwarf Error: Can't find %s section."),
543 sec->uncompressed_name);
2d47a72c
DJ
544 bfd_set_error (bfd_error_bad_value);
545 return FALSE;
546 }
53638231 547
bc664799 548 *section_size = msec->rawsize ? msec->rawsize : msec->size;
8c2ccebd
CC
549 if (syms)
550 {
551 *section_buffer
a2a50954 552 = bfd_simple_get_relocated_section_contents (abfd, msec, NULL, syms);
8c2ccebd
CC
553 if (! *section_buffer)
554 return FALSE;
555 }
556 else
557 {
558 *section_buffer = (bfd_byte *) bfd_malloc (*section_size);
559 if (! *section_buffer)
560 return FALSE;
561 if (! bfd_get_section_contents (abfd, msec, *section_buffer,
562 0, *section_size))
563 return FALSE;
564 }
e4f27230
NC
565
566 /* Paranoia - if we are reading in a string section, make sure that it
567 is NUL terminated. This is to prevent string functions from running
568 off the end of the buffer. Note - knowing the size of the buffer is
569 not enough as some functions, eg strchr, do not have a range limited
570 equivalent.
571
572 FIXME: We ought to use a flag in the dwarf_debug_sections[] table to
573 determine the nature of a debug section, rather than checking the
574 section name as we do here. */
575 if (*section_size > 0
576 && (*section_buffer)[*section_size - 1] != 0
577 && (strstr (section_name, "_str") || strstr (section_name, "names")))
578 {
579 bfd_byte * new_buffer = malloc (*section_size + 1);
580
581 _bfd_error_handler (_("warning: dwarf string section '%s' is not NUL terminated"),
582 section_name);
583 memcpy (new_buffer, *section_buffer, *section_size);
584 new_buffer[*section_size] = 0;
585 free (*section_buffer);
586 *section_buffer = new_buffer;
587 }
1b315056
CS
588 }
589
590 /* It is possible to get a bad value for the offset into the section
dc80fd5c 591 that the client wants. Validate it here to avoid trouble later. */
1b315056
CS
592 if (offset != 0 && offset >= *section_size)
593 {
695344c0 594 /* xgettext: c-format */
d42c267e
AM
595 _bfd_error_handler (_("Dwarf Error: Offset (%llu)"
596 " greater than or equal to %s size (%Lu)."),
597 (long long) offset, section_name, *section_size);
1b315056
CS
598 bfd_set_error (bfd_error_bad_value);
599 return FALSE;
600 }
601
602 return TRUE;
603}
604
a092b084 605/* Read dwarf information from a buffer. */
252b5132
RH
606
607static unsigned int
dbb3fbbb 608read_1_byte (bfd *abfd ATTRIBUTE_UNUSED, bfd_byte *buf, bfd_byte *end)
252b5132 609{
dbb3fbbb
NC
610 if (buf + 1 > end)
611 return 0;
818a27ac 612 return bfd_get_8 (abfd, buf);
252b5132
RH
613}
614
615static int
dbb3fbbb 616read_1_signed_byte (bfd *abfd ATTRIBUTE_UNUSED, bfd_byte *buf, bfd_byte *end)
252b5132 617{
dbb3fbbb
NC
618 if (buf + 1 > end)
619 return 0;
818a27ac 620 return bfd_get_signed_8 (abfd, buf);
252b5132
RH
621}
622
623static unsigned int
dbb3fbbb 624read_2_bytes (bfd *abfd, bfd_byte *buf, bfd_byte *end)
252b5132 625{
dbb3fbbb
NC
626 if (buf + 2 > end)
627 return 0;
818a27ac 628 return bfd_get_16 (abfd, buf);
252b5132
RH
629}
630
252b5132 631static unsigned int
dbb3fbbb 632read_4_bytes (bfd *abfd, bfd_byte *buf, bfd_byte *end)
252b5132 633{
dbb3fbbb
NC
634 if (buf + 4 > end)
635 return 0;
818a27ac 636 return bfd_get_32 (abfd, buf);
252b5132
RH
637}
638
8ce8c090 639static bfd_uint64_t
dbb3fbbb 640read_8_bytes (bfd *abfd, bfd_byte *buf, bfd_byte *end)
252b5132 641{
dbb3fbbb
NC
642 if (buf + 8 > end)
643 return 0;
818a27ac 644 return bfd_get_64 (abfd, buf);
252b5132
RH
645}
646
f075ee0c 647static bfd_byte *
818a27ac 648read_n_bytes (bfd *abfd ATTRIBUTE_UNUSED,
f075ee0c 649 bfd_byte *buf,
dbb3fbbb 650 bfd_byte *end,
818a27ac 651 unsigned int size ATTRIBUTE_UNUSED)
252b5132 652{
dbb3fbbb
NC
653 if (buf + size > end)
654 return NULL;
252b5132
RH
655 return buf;
656}
657
dbb3fbbb
NC
658/* Scans a NUL terminated string starting at BUF, returning a pointer to it.
659 Returns the number of characters in the string, *including* the NUL byte,
660 in BYTES_READ_PTR. This value is set even if the function fails. Bytes
661 at or beyond BUF_END will not be read. Returns NULL if there was a
662 problem, or if the string is empty. */
663
252b5132 664static char *
dbb3fbbb
NC
665read_string (bfd * abfd ATTRIBUTE_UNUSED,
666 bfd_byte * buf,
667 bfd_byte * buf_end,
668 unsigned int * bytes_read_ptr)
252b5132 669{
dbb3fbbb
NC
670 bfd_byte *str = buf;
671
672 if (buf >= buf_end)
673 {
674 * bytes_read_ptr = 0;
675 return NULL;
676 }
dc80fd5c 677
f075ee0c 678 if (*str == '\0')
252b5132 679 {
dbb3fbbb 680 * bytes_read_ptr = 1;
252b5132
RH
681 return NULL;
682 }
98591c73 683
dbb3fbbb
NC
684 while (buf < buf_end)
685 if (* buf ++ == 0)
686 {
687 * bytes_read_ptr = buf - str;
688 return (char *) str;
689 }
690
691 * bytes_read_ptr = buf - str;
692 return NULL;
252b5132
RH
693}
694
dbb3fbbb
NC
695/* Reads an offset from BUF and then locates the string at this offset
696 inside the debug string section. Returns a pointer to the string.
697 Returns the number of bytes read from BUF, *not* the length of the string,
698 in BYTES_READ_PTR. This value is set even if the function fails. Bytes
699 at or beyond BUF_END will not be read from BUF. Returns NULL if there was
700 a problem, or if the string is empty. Does not check for NUL termination
701 of the string. */
dc80fd5c 702
d03ba2a1 703static char *
dc80fd5c
NC
704read_indirect_string (struct comp_unit * unit,
705 bfd_byte * buf,
dbb3fbbb 706 bfd_byte * buf_end,
dc80fd5c 707 unsigned int * bytes_read_ptr)
d03ba2a1 708{
8ce8c090 709 bfd_uint64_t offset;
d03ba2a1 710 struct dwarf2_debug *stash = unit->stash;
f075ee0c 711 char *str;
d03ba2a1 712
dbb3fbbb
NC
713 if (buf + unit->offset_size > buf_end)
714 {
715 * bytes_read_ptr = 0;
716 return NULL;
717 }
62f8d217 718
d03ba2a1 719 if (unit->offset_size == 4)
dbb3fbbb 720 offset = read_4_bytes (unit->abfd, buf, buf_end);
d03ba2a1 721 else
dbb3fbbb 722 offset = read_8_bytes (unit->abfd, buf, buf_end);
dc80fd5c 723
d03ba2a1
JJ
724 *bytes_read_ptr = unit->offset_size;
725
fc28f9aa 726 if (! read_section (unit->abfd, &stash->debug_sections[debug_str],
93ee1e36 727 stash->syms, offset,
9e32b19f 728 &stash->dwarf_str_buffer, &stash->dwarf_str_size))
dc80fd5c 729 return NULL;
d03ba2a1 730
dbb3fbbb
NC
731 if (offset >= stash->dwarf_str_size)
732 return NULL;
f075ee0c
AM
733 str = (char *) stash->dwarf_str_buffer + offset;
734 if (*str == '\0')
d03ba2a1 735 return NULL;
f075ee0c 736 return str;
d03ba2a1
JJ
737}
738
0041f7df
JK
739/* Like read_indirect_string but from .debug_line_str section. */
740
741static char *
742read_indirect_line_string (struct comp_unit * unit,
743 bfd_byte * buf,
744 bfd_byte * buf_end,
745 unsigned int * bytes_read_ptr)
746{
747 bfd_uint64_t offset;
748 struct dwarf2_debug *stash = unit->stash;
749 char *str;
750
751 if (buf + unit->offset_size > buf_end)
752 {
753 * bytes_read_ptr = 0;
754 return NULL;
755 }
756
757 if (unit->offset_size == 4)
758 offset = read_4_bytes (unit->abfd, buf, buf_end);
759 else
760 offset = read_8_bytes (unit->abfd, buf, buf_end);
761
762 *bytes_read_ptr = unit->offset_size;
763
764 if (! read_section (unit->abfd, &stash->debug_sections[debug_line_str],
765 stash->syms, offset,
766 &stash->dwarf_line_str_buffer,
767 &stash->dwarf_line_str_size))
768 return NULL;
769
770 if (offset >= stash->dwarf_line_str_size)
771 return NULL;
772 str = (char *) stash->dwarf_line_str_buffer + offset;
773 if (*str == '\0')
774 return NULL;
775 return str;
776}
777
95e34fb4 778/* Like read_indirect_string but uses a .debug_str located in
93ee1e36 779 an alternate file pointed to by the .gnu_debugaltlink section.
95e34fb4
NC
780 Used to impement DW_FORM_GNU_strp_alt. */
781
782static char *
783read_alt_indirect_string (struct comp_unit * unit,
784 bfd_byte * buf,
dbb3fbbb 785 bfd_byte * buf_end,
95e34fb4
NC
786 unsigned int * bytes_read_ptr)
787{
788 bfd_uint64_t offset;
789 struct dwarf2_debug *stash = unit->stash;
790 char *str;
791
dbb3fbbb
NC
792 if (buf + unit->offset_size > buf_end)
793 {
794 * bytes_read_ptr = 0;
795 return NULL;
796 }
62f8d217 797
95e34fb4 798 if (unit->offset_size == 4)
dbb3fbbb 799 offset = read_4_bytes (unit->abfd, buf, buf_end);
95e34fb4 800 else
dbb3fbbb 801 offset = read_8_bytes (unit->abfd, buf, buf_end);
95e34fb4
NC
802
803 *bytes_read_ptr = unit->offset_size;
804
805 if (stash->alt_bfd_ptr == NULL)
806 {
807 bfd * debug_bfd;
808 char * debug_filename = bfd_follow_gnu_debugaltlink (unit->abfd, DEBUGDIR);
809
810 if (debug_filename == NULL)
811 return NULL;
812
813 if ((debug_bfd = bfd_openr (debug_filename, NULL)) == NULL
814 || ! bfd_check_format (debug_bfd, bfd_object))
815 {
816 if (debug_bfd)
817 bfd_close (debug_bfd);
818
819 /* FIXME: Should we report our failure to follow the debuglink ? */
820 free (debug_filename);
821 return NULL;
822 }
823 stash->alt_bfd_ptr = debug_bfd;
824 }
62f8d217 825
95e34fb4
NC
826 if (! read_section (unit->stash->alt_bfd_ptr,
827 stash->debug_sections + debug_str_alt,
828 NULL, /* FIXME: Do we need to load alternate symbols ? */
829 offset,
830 &stash->alt_dwarf_str_buffer,
831 &stash->alt_dwarf_str_size))
832 return NULL;
833
dbb3fbbb
NC
834 if (offset >= stash->alt_dwarf_str_size)
835 return NULL;
95e34fb4
NC
836 str = (char *) stash->alt_dwarf_str_buffer + offset;
837 if (*str == '\0')
838 return NULL;
839
840 return str;
841}
842
843/* Resolve an alternate reference from UNIT at OFFSET.
844 Returns a pointer into the loaded alternate CU upon success
845 or NULL upon failure. */
846
847static bfd_byte *
848read_alt_indirect_ref (struct comp_unit * unit,
849 bfd_uint64_t offset)
850{
851 struct dwarf2_debug *stash = unit->stash;
852
853 if (stash->alt_bfd_ptr == NULL)
854 {
855 bfd * debug_bfd;
856 char * debug_filename = bfd_follow_gnu_debugaltlink (unit->abfd, DEBUGDIR);
857
858 if (debug_filename == NULL)
859 return FALSE;
860
861 if ((debug_bfd = bfd_openr (debug_filename, NULL)) == NULL
862 || ! bfd_check_format (debug_bfd, bfd_object))
863 {
864 if (debug_bfd)
865 bfd_close (debug_bfd);
866
867 /* FIXME: Should we report our failure to follow the debuglink ? */
868 free (debug_filename);
869 return NULL;
870 }
871 stash->alt_bfd_ptr = debug_bfd;
872 }
62f8d217 873
95e34fb4
NC
874 if (! read_section (unit->stash->alt_bfd_ptr,
875 stash->debug_sections + debug_info_alt,
876 NULL, /* FIXME: Do we need to load alternate symbols ? */
877 offset,
878 &stash->alt_dwarf_info_buffer,
879 &stash->alt_dwarf_info_size))
880 return NULL;
881
dbb3fbbb
NC
882 if (offset >= stash->alt_dwarf_info_size)
883 return NULL;
95e34fb4
NC
884 return stash->alt_dwarf_info_buffer + offset;
885}
886
8ce8c090 887static bfd_uint64_t
dbb3fbbb 888read_address (struct comp_unit *unit, bfd_byte *buf, bfd_byte * buf_end)
252b5132 889{
fa15f18d
AM
890 int signed_vma = 0;
891
892 if (bfd_get_flavour (unit->abfd) == bfd_target_elf_flavour)
893 signed_vma = get_elf_backend_data (unit->abfd)->sign_extend_vma;
0af4cd7c 894
dbb3fbbb
NC
895 if (buf + unit->addr_size > buf_end)
896 return 0;
897
0af4cd7c
PK
898 if (signed_vma)
899 {
900 switch (unit->addr_size)
901 {
902 case 8:
903 return bfd_get_signed_64 (unit->abfd, buf);
904 case 4:
905 return bfd_get_signed_32 (unit->abfd, buf);
906 case 2:
907 return bfd_get_signed_16 (unit->abfd, buf);
908 default:
909 abort ();
910 }
911 }
912 else
252b5132 913 {
0af4cd7c
PK
914 switch (unit->addr_size)
915 {
916 case 8:
917 return bfd_get_64 (unit->abfd, buf);
918 case 4:
919 return bfd_get_32 (unit->abfd, buf);
920 case 2:
921 return bfd_get_16 (unit->abfd, buf);
922 default:
923 abort ();
924 }
252b5132 925 }
252b5132
RH
926}
927
252b5132
RH
928/* Lookup an abbrev_info structure in the abbrev hash table. */
929
930static struct abbrev_info *
818a27ac 931lookup_abbrev (unsigned int number, struct abbrev_info **abbrevs)
252b5132
RH
932{
933 unsigned int hash_number;
934 struct abbrev_info *abbrev;
935
936 hash_number = number % ABBREV_HASH_SIZE;
937 abbrev = abbrevs[hash_number];
938
939 while (abbrev)
940 {
941 if (abbrev->number == number)
942 return abbrev;
943 else
944 abbrev = abbrev->next;
945 }
98591c73 946
252b5132
RH
947 return NULL;
948}
949
950/* In DWARF version 2, the description of the debugging information is
951 stored in a separate .debug_abbrev section. Before we read any
952 dies from a section we read in all abbreviations and install them
953 in a hash table. */
954
955static struct abbrev_info**
8ce8c090 956read_abbrevs (bfd *abfd, bfd_uint64_t offset, struct dwarf2_debug *stash)
252b5132
RH
957{
958 struct abbrev_info **abbrevs;
f075ee0c 959 bfd_byte *abbrev_ptr;
dbb3fbbb 960 bfd_byte *abbrev_end;
252b5132
RH
961 struct abbrev_info *cur_abbrev;
962 unsigned int abbrev_number, bytes_read, abbrev_name;
963 unsigned int abbrev_form, hash_number;
dc810e39 964 bfd_size_type amt;
252b5132 965
fc28f9aa 966 if (! read_section (abfd, &stash->debug_sections[debug_abbrev],
93ee1e36 967 stash->syms, offset,
9e32b19f 968 &stash->dwarf_abbrev_buffer, &stash->dwarf_abbrev_size))
8af6b354 969 return NULL;
252b5132 970
dbb3fbbb
NC
971 if (offset >= stash->dwarf_abbrev_size)
972 return NULL;
973
dc810e39 974 amt = sizeof (struct abbrev_info*) * ABBREV_HASH_SIZE;
a50b1753 975 abbrevs = (struct abbrev_info **) bfd_zalloc (abfd, amt);
8af6b354
AM
976 if (abbrevs == NULL)
977 return NULL;
252b5132
RH
978
979 abbrev_ptr = stash->dwarf_abbrev_buffer + offset;
dbb3fbbb 980 abbrev_end = stash->dwarf_abbrev_buffer + stash->dwarf_abbrev_size;
c7c3d11b
PA
981 abbrev_number = _bfd_safe_read_leb128 (abfd, abbrev_ptr, &bytes_read,
982 FALSE, abbrev_end);
252b5132
RH
983 abbrev_ptr += bytes_read;
984
a092b084 985 /* Loop until we reach an abbrev number of 0. */
252b5132
RH
986 while (abbrev_number)
987 {
dc810e39 988 amt = sizeof (struct abbrev_info);
a50b1753 989 cur_abbrev = (struct abbrev_info *) bfd_zalloc (abfd, amt);
8af6b354
AM
990 if (cur_abbrev == NULL)
991 return NULL;
252b5132 992
a092b084 993 /* Read in abbrev header. */
252b5132 994 cur_abbrev->number = abbrev_number;
d45913a0 995 cur_abbrev->tag = (enum dwarf_tag)
4265548c
PA
996 _bfd_safe_read_leb128 (abfd, abbrev_ptr, &bytes_read,
997 FALSE, abbrev_end);
252b5132 998 abbrev_ptr += bytes_read;
dbb3fbbb 999 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr, abbrev_end);
252b5132
RH
1000 abbrev_ptr += 1;
1001
a092b084 1002 /* Now read in declarations. */
0041f7df 1003 for (;;)
252b5132 1004 {
0041f7df
JK
1005 /* Initialize it just to avoid a GCC false warning. */
1006 bfd_vma implicit_const = -1;
1007
1008 abbrev_name = _bfd_safe_read_leb128 (abfd, abbrev_ptr, &bytes_read,
1009 FALSE, abbrev_end);
1010 abbrev_ptr += bytes_read;
1011 abbrev_form = _bfd_safe_read_leb128 (abfd, abbrev_ptr, &bytes_read,
1012 FALSE, abbrev_end);
1013 abbrev_ptr += bytes_read;
1014 if (abbrev_form == DW_FORM_implicit_const)
1015 {
1016 implicit_const = _bfd_safe_read_leb128 (abfd, abbrev_ptr,
1017 &bytes_read, TRUE,
1018 abbrev_end);
1019 abbrev_ptr += bytes_read;
1020 }
1021
1022 if (abbrev_name == 0)
1023 break;
1024
252b5132
RH
1025 if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
1026 {
35330cce
NC
1027 struct attr_abbrev *tmp;
1028
dc810e39
AM
1029 amt = cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK;
1030 amt *= sizeof (struct attr_abbrev);
a50b1753 1031 tmp = (struct attr_abbrev *) bfd_realloc (cur_abbrev->attrs, amt);
35330cce 1032 if (tmp == NULL)
d8d1c398
AM
1033 {
1034 size_t i;
1035
1036 for (i = 0; i < ABBREV_HASH_SIZE; i++)
1037 {
1038 struct abbrev_info *abbrev = abbrevs[i];
1039
1040 while (abbrev)
1041 {
34b5e0b2
NC
1042 free (abbrev->attrs);
1043 abbrev = abbrev->next;
d8d1c398
AM
1044 }
1045 }
1046 return NULL;
1047 }
35330cce 1048 cur_abbrev->attrs = tmp;
252b5132 1049 }
98591c73 1050
d45913a0
DA
1051 cur_abbrev->attrs[cur_abbrev->num_attrs].name
1052 = (enum dwarf_attribute) abbrev_name;
0041f7df 1053 cur_abbrev->attrs[cur_abbrev->num_attrs].form
d45913a0 1054 = (enum dwarf_form) abbrev_form;
0041f7df
JK
1055 cur_abbrev->attrs[cur_abbrev->num_attrs].implicit_const
1056 = implicit_const;
1057 ++cur_abbrev->num_attrs;
252b5132
RH
1058 }
1059
1060 hash_number = abbrev_number % ABBREV_HASH_SIZE;
1061 cur_abbrev->next = abbrevs[hash_number];
1062 abbrevs[hash_number] = cur_abbrev;
1063
1064 /* Get next abbreviation.
e82ce529 1065 Under Irix6 the abbreviations for a compilation unit are not
252b5132
RH
1066 always properly terminated with an abbrev number of 0.
1067 Exit loop if we encounter an abbreviation which we have
1068 already read (which means we are about to read the abbreviations
1069 for the next compile unit) or if the end of the abbreviation
1070 table is reached. */
1071 if ((unsigned int) (abbrev_ptr - stash->dwarf_abbrev_buffer)
d8d1c398 1072 >= stash->dwarf_abbrev_size)
252b5132 1073 break;
4265548c
PA
1074 abbrev_number = _bfd_safe_read_leb128 (abfd, abbrev_ptr,
1075 &bytes_read, FALSE, abbrev_end);
252b5132 1076 abbrev_ptr += bytes_read;
dbb3fbbb 1077 if (lookup_abbrev (abbrev_number, abbrevs) != NULL)
252b5132
RH
1078 break;
1079 }
1080
1081 return abbrevs;
1082}
1083
60d77146
NC
1084/* Returns true if the form is one which has a string value. */
1085
1086static inline bfd_boolean
1087is_str_attr (enum dwarf_form form)
1088{
0041f7df
JK
1089 return (form == DW_FORM_string || form == DW_FORM_strp
1090 || form == DW_FORM_line_strp || form == DW_FORM_GNU_strp_alt);
60d77146
NC
1091}
1092
dbb3fbbb
NC
1093/* Read and fill in the value of attribute ATTR as described by FORM.
1094 Read data starting from INFO_PTR, but never at or beyond INFO_PTR_END.
1095 Returns an updated INFO_PTR taking into account the amount of data read. */
252b5132 1096
f075ee0c 1097static bfd_byte *
dbb3fbbb
NC
1098read_attribute_value (struct attribute * attr,
1099 unsigned form,
0041f7df 1100 bfd_vma implicit_const,
dbb3fbbb
NC
1101 struct comp_unit * unit,
1102 bfd_byte * info_ptr,
1103 bfd_byte * info_ptr_end)
252b5132
RH
1104{
1105 bfd *abfd = unit->abfd;
1106 unsigned int bytes_read;
1107 struct dwarf_block *blk;
dc810e39 1108 bfd_size_type amt;
252b5132 1109
a97fbc7e 1110 if (info_ptr >= info_ptr_end && form != DW_FORM_flag_present)
dbb3fbbb 1111 {
4eca0228 1112 _bfd_error_handler (_("Dwarf Error: Info pointer extends beyond end of attributes"));
dbb3fbbb
NC
1113 bfd_set_error (bfd_error_bad_value);
1114 return info_ptr;
1115 }
1116
d45913a0 1117 attr->form = (enum dwarf_form) form;
98591c73 1118
cf716c56 1119 switch (form)
252b5132 1120 {
252b5132 1121 case DW_FORM_ref_addr:
5609a71e
DJ
1122 /* DW_FORM_ref_addr is an address in DWARF2, and an offset in
1123 DWARF3. */
c07cbdd7 1124 if (unit->version == 3 || unit->version == 4)
5609a71e
DJ
1125 {
1126 if (unit->offset_size == 4)
dbb3fbbb 1127 attr->u.val = read_4_bytes (unit->abfd, info_ptr, info_ptr_end);
5609a71e 1128 else
dbb3fbbb 1129 attr->u.val = read_8_bytes (unit->abfd, info_ptr, info_ptr_end);
5609a71e
DJ
1130 info_ptr += unit->offset_size;
1131 break;
1132 }
1133 /* FALLTHROUGH */
1134 case DW_FORM_addr:
dbb3fbbb 1135 attr->u.val = read_address (unit, info_ptr, info_ptr_end);
252b5132
RH
1136 info_ptr += unit->addr_size;
1137 break;
95e34fb4 1138 case DW_FORM_GNU_ref_alt:
c07cbdd7
JJ
1139 case DW_FORM_sec_offset:
1140 if (unit->offset_size == 4)
dbb3fbbb 1141 attr->u.val = read_4_bytes (unit->abfd, info_ptr, info_ptr_end);
c07cbdd7 1142 else
dbb3fbbb 1143 attr->u.val = read_8_bytes (unit->abfd, info_ptr, info_ptr_end);
c07cbdd7
JJ
1144 info_ptr += unit->offset_size;
1145 break;
252b5132 1146 case DW_FORM_block2:
dc810e39 1147 amt = sizeof (struct dwarf_block);
a50b1753 1148 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
8af6b354
AM
1149 if (blk == NULL)
1150 return NULL;
dbb3fbbb 1151 blk->size = read_2_bytes (abfd, info_ptr, info_ptr_end);
252b5132 1152 info_ptr += 2;
dbb3fbbb 1153 blk->data = read_n_bytes (abfd, info_ptr, info_ptr_end, blk->size);
252b5132 1154 info_ptr += blk->size;
482e2e37 1155 attr->u.blk = blk;
252b5132
RH
1156 break;
1157 case DW_FORM_block4:
dc810e39 1158 amt = sizeof (struct dwarf_block);
a50b1753 1159 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
8af6b354
AM
1160 if (blk == NULL)
1161 return NULL;
dbb3fbbb 1162 blk->size = read_4_bytes (abfd, info_ptr, info_ptr_end);
252b5132 1163 info_ptr += 4;
dbb3fbbb 1164 blk->data = read_n_bytes (abfd, info_ptr, info_ptr_end, blk->size);
252b5132 1165 info_ptr += blk->size;
482e2e37 1166 attr->u.blk = blk;
252b5132
RH
1167 break;
1168 case DW_FORM_data2:
dbb3fbbb 1169 attr->u.val = read_2_bytes (abfd, info_ptr, info_ptr_end);
252b5132
RH
1170 info_ptr += 2;
1171 break;
1172 case DW_FORM_data4:
dbb3fbbb 1173 attr->u.val = read_4_bytes (abfd, info_ptr, info_ptr_end);
252b5132
RH
1174 info_ptr += 4;
1175 break;
1176 case DW_FORM_data8:
dbb3fbbb 1177 attr->u.val = read_8_bytes (abfd, info_ptr, info_ptr_end);
252b5132
RH
1178 info_ptr += 8;
1179 break;
1180 case DW_FORM_string:
dbb3fbbb 1181 attr->u.str = read_string (abfd, info_ptr, info_ptr_end, &bytes_read);
252b5132
RH
1182 info_ptr += bytes_read;
1183 break;
d03ba2a1 1184 case DW_FORM_strp:
dbb3fbbb 1185 attr->u.str = read_indirect_string (unit, info_ptr, info_ptr_end, &bytes_read);
d03ba2a1
JJ
1186 info_ptr += bytes_read;
1187 break;
0041f7df
JK
1188 case DW_FORM_line_strp:
1189 attr->u.str = read_indirect_line_string (unit, info_ptr, info_ptr_end, &bytes_read);
1190 info_ptr += bytes_read;
1191 break;
95e34fb4 1192 case DW_FORM_GNU_strp_alt:
dbb3fbbb 1193 attr->u.str = read_alt_indirect_string (unit, info_ptr, info_ptr_end, &bytes_read);
95e34fb4
NC
1194 info_ptr += bytes_read;
1195 break;
c07cbdd7 1196 case DW_FORM_exprloc:
252b5132 1197 case DW_FORM_block:
dc810e39 1198 amt = sizeof (struct dwarf_block);
a50b1753 1199 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
8af6b354
AM
1200 if (blk == NULL)
1201 return NULL;
4265548c
PA
1202 blk->size = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1203 FALSE, info_ptr_end);
252b5132 1204 info_ptr += bytes_read;
dbb3fbbb 1205 blk->data = read_n_bytes (abfd, info_ptr, info_ptr_end, blk->size);
252b5132 1206 info_ptr += blk->size;
482e2e37 1207 attr->u.blk = blk;
252b5132
RH
1208 break;
1209 case DW_FORM_block1:
dc810e39 1210 amt = sizeof (struct dwarf_block);
a50b1753 1211 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
8af6b354
AM
1212 if (blk == NULL)
1213 return NULL;
dbb3fbbb 1214 blk->size = read_1_byte (abfd, info_ptr, info_ptr_end);
252b5132 1215 info_ptr += 1;
dbb3fbbb 1216 blk->data = read_n_bytes (abfd, info_ptr, info_ptr_end, blk->size);
252b5132 1217 info_ptr += blk->size;
482e2e37 1218 attr->u.blk = blk;
252b5132
RH
1219 break;
1220 case DW_FORM_data1:
dbb3fbbb 1221 attr->u.val = read_1_byte (abfd, info_ptr, info_ptr_end);
252b5132
RH
1222 info_ptr += 1;
1223 break;
1224 case DW_FORM_flag:
dbb3fbbb 1225 attr->u.val = read_1_byte (abfd, info_ptr, info_ptr_end);
252b5132
RH
1226 info_ptr += 1;
1227 break;
c07cbdd7
JJ
1228 case DW_FORM_flag_present:
1229 attr->u.val = 1;
1230 break;
252b5132 1231 case DW_FORM_sdata:
4265548c
PA
1232 attr->u.sval = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1233 TRUE, info_ptr_end);
252b5132
RH
1234 info_ptr += bytes_read;
1235 break;
1236 case DW_FORM_udata:
4265548c
PA
1237 attr->u.val = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1238 FALSE, info_ptr_end);
252b5132
RH
1239 info_ptr += bytes_read;
1240 break;
1241 case DW_FORM_ref1:
dbb3fbbb 1242 attr->u.val = read_1_byte (abfd, info_ptr, info_ptr_end);
252b5132
RH
1243 info_ptr += 1;
1244 break;
1245 case DW_FORM_ref2:
dbb3fbbb 1246 attr->u.val = read_2_bytes (abfd, info_ptr, info_ptr_end);
252b5132
RH
1247 info_ptr += 2;
1248 break;
1249 case DW_FORM_ref4:
dbb3fbbb 1250 attr->u.val = read_4_bytes (abfd, info_ptr, info_ptr_end);
252b5132
RH
1251 info_ptr += 4;
1252 break;
81edd86d 1253 case DW_FORM_ref8:
dbb3fbbb 1254 attr->u.val = read_8_bytes (abfd, info_ptr, info_ptr_end);
81edd86d
MM
1255 info_ptr += 8;
1256 break;
a37a68dd 1257 case DW_FORM_ref_sig8:
dbb3fbbb 1258 attr->u.val = read_8_bytes (abfd, info_ptr, info_ptr_end);
a37a68dd
CC
1259 info_ptr += 8;
1260 break;
252b5132 1261 case DW_FORM_ref_udata:
4265548c
PA
1262 attr->u.val = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1263 FALSE, info_ptr_end);
252b5132
RH
1264 info_ptr += bytes_read;
1265 break;
252b5132 1266 case DW_FORM_indirect:
4265548c
PA
1267 form = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1268 FALSE, info_ptr_end);
cf716c56 1269 info_ptr += bytes_read;
0041f7df
JK
1270 if (form == DW_FORM_implicit_const)
1271 {
1272 implicit_const = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
1273 TRUE, info_ptr_end);
1274 info_ptr += bytes_read;
1275 }
1276 info_ptr = read_attribute_value (attr, form, implicit_const, unit,
1277 info_ptr, info_ptr_end);
1278 break;
1279 case DW_FORM_implicit_const:
1280 attr->form = DW_FORM_sdata;
1281 attr->u.sval = implicit_const;
cf716c56 1282 break;
252b5132 1283 default:
4eca0228
AM
1284 _bfd_error_handler (_("Dwarf Error: Invalid or unhandled FORM value: %#x."),
1285 form);
252b5132 1286 bfd_set_error (bfd_error_bad_value);
c07cbdd7 1287 return NULL;
252b5132
RH
1288 }
1289 return info_ptr;
1290}
1291
cf716c56
RH
1292/* Read an attribute described by an abbreviated attribute. */
1293
f075ee0c 1294static bfd_byte *
dbb3fbbb
NC
1295read_attribute (struct attribute * attr,
1296 struct attr_abbrev * abbrev,
1297 struct comp_unit * unit,
1298 bfd_byte * info_ptr,
1299 bfd_byte * info_ptr_end)
cf716c56
RH
1300{
1301 attr->name = abbrev->name;
0041f7df
JK
1302 info_ptr = read_attribute_value (attr, abbrev->form, abbrev->implicit_const,
1303 unit, info_ptr, info_ptr_end);
cf716c56
RH
1304 return info_ptr;
1305}
1306
e00e8198
AM
1307/* Return whether DW_AT_name will return the same as DW_AT_linkage_name
1308 for a function. */
1309
1310static bfd_boolean
1311non_mangled (int lang)
1312{
1313 switch (lang)
1314 {
1315 default:
1316 return FALSE;
1317
1318 case DW_LANG_C89:
1319 case DW_LANG_C:
1320 case DW_LANG_Ada83:
1321 case DW_LANG_Cobol74:
1322 case DW_LANG_Cobol85:
1323 case DW_LANG_Fortran77:
1324 case DW_LANG_Pascal83:
1325 case DW_LANG_C99:
1326 case DW_LANG_Ada95:
1327 case DW_LANG_PLI:
1328 case DW_LANG_UPC:
1329 case DW_LANG_C11:
1330 return TRUE;
1331 }
1332}
1333
a092b084 1334/* Source line information table routines. */
252b5132
RH
1335
1336#define FILE_ALLOC_CHUNK 5
1337#define DIR_ALLOC_CHUNK 5
1338
a092b084
NC
1339struct line_info
1340{
089e3718
IT
1341 struct line_info * prev_line;
1342 bfd_vma address;
1343 char * filename;
1344 unsigned int line;
1345 unsigned int column;
1346 unsigned int discriminator;
1347 unsigned char op_index;
1348 unsigned char end_sequence; /* End of (sequential) code sequence. */
252b5132
RH
1349};
1350
a092b084
NC
1351struct fileinfo
1352{
089e3718
IT
1353 char * name;
1354 unsigned int dir;
1355 unsigned int time;
1356 unsigned int size;
252b5132
RH
1357};
1358
0ee19663
NC
1359struct line_sequence
1360{
1361 bfd_vma low_pc;
1362 struct line_sequence* prev_sequence;
1363 struct line_info* last_line; /* Largest VMA. */
089e3718
IT
1364 struct line_info** line_info_lookup;
1365 bfd_size_type num_lines;
0ee19663
NC
1366};
1367
a092b084
NC
1368struct line_info_table
1369{
089e3718 1370 bfd * abfd;
0ee19663
NC
1371 unsigned int num_files;
1372 unsigned int num_dirs;
1373 unsigned int num_sequences;
1374 char * comp_dir;
1375 char ** dirs;
1376 struct fileinfo* files;
1377 struct line_sequence* sequences;
1378 struct line_info* lcl_head; /* Local head; used in 'add_line_info'. */
252b5132
RH
1379};
1380
4ab527b0
FF
1381/* Remember some information about each function. If the function is
1382 inlined (DW_TAG_inlined_subroutine) it may have two additional
1383 attributes, DW_AT_call_file and DW_AT_call_line, which specify the
a2a50954 1384 source code location where this function was inlined. */
4ab527b0 1385
1ee24f27
DJ
1386struct funcinfo
1387{
a2a50954 1388 /* Pointer to previous function in list of all functions. */
089e3718 1389 struct funcinfo * prev_func;
a2a50954 1390 /* Pointer to function one scope higher. */
089e3718 1391 struct funcinfo * caller_func;
a2a50954 1392 /* Source location file name where caller_func inlines this func. */
089e3718 1393 char * caller_file;
a2a50954 1394 /* Source location file name. */
089e3718 1395 char * file;
e00e8198 1396 /* Source location line number where caller_func inlines this func. */
089e3718 1397 int caller_line;
a2a50954 1398 /* Source location line number. */
089e3718
IT
1399 int line;
1400 int tag;
3b0d929d 1401 bfd_boolean is_linkage;
089e3718
IT
1402 const char * name;
1403 struct arange arange;
a2a50954 1404 /* Where the symbol is defined. */
089e3718
IT
1405 asection * sec;
1406};
1407
1408struct lookup_funcinfo
1409{
1410 /* Function information corresponding to this lookup table entry. */
1411 struct funcinfo * funcinfo;
1412
1413 /* The lowest address for this specific function. */
1414 bfd_vma low_addr;
1415
1416 /* The highest address of this function before the lookup table is sorted.
1417 The highest address of all prior functions after the lookup table is
1418 sorted, which is used for binary search. */
1419 bfd_vma high_addr;
5420f73d
L
1420};
1421
1422struct varinfo
1423{
709d67f1 1424 /* Pointer to previous variable in list of all variables */
5420f73d 1425 struct varinfo *prev_var;
709d67f1 1426 /* Source location file name */
5420f73d 1427 char *file;
709d67f1 1428 /* Source location line number */
5420f73d
L
1429 int line;
1430 int tag;
1431 char *name;
5cf2e3f0 1432 bfd_vma addr;
709d67f1 1433 /* Where the symbol is defined */
5420f73d 1434 asection *sec;
709d67f1 1435 /* Is this a stack variable? */
5420f73d 1436 unsigned int stack: 1;
1ee24f27
DJ
1437};
1438
d4c32a81
L
1439/* Return TRUE if NEW_LINE should sort after LINE. */
1440
1441static inline bfd_boolean
1442new_line_sorts_after (struct line_info *new_line, struct line_info *line)
1443{
1444 return (new_line->address > line->address
1445 || (new_line->address == line->address
a233b20c
JJ
1446 && (new_line->op_index > line->op_index
1447 || (new_line->op_index == line->op_index
1448 && new_line->end_sequence < line->end_sequence))));
d4c32a81
L
1449}
1450
1451
af3ef9fe
NC
1452/* Adds a new entry to the line_info list in the line_info_table, ensuring
1453 that the list is sorted. Note that the line_info list is sorted from
1454 highest to lowest VMA (with possible duplicates); that is,
1455 line_info->prev_line always accesses an equal or smaller VMA. */
1456
8af6b354 1457static bfd_boolean
818a27ac
AM
1458add_line_info (struct line_info_table *table,
1459 bfd_vma address,
a233b20c 1460 unsigned char op_index,
818a27ac
AM
1461 char *filename,
1462 unsigned int line,
1463 unsigned int column,
9b8d1a36 1464 unsigned int discriminator,
818a27ac 1465 int end_sequence)
252b5132 1466{
dc810e39 1467 bfd_size_type amt = sizeof (struct line_info);
0ee19663 1468 struct line_sequence* seq = table->sequences;
a50b1753 1469 struct line_info* info = (struct line_info *) bfd_alloc (table->abfd, amt);
252b5132 1470
8af6b354
AM
1471 if (info == NULL)
1472 return FALSE;
1473
d4c32a81 1474 /* Set member data of 'info'. */
f5296ddc 1475 info->prev_line = NULL;
d4c32a81 1476 info->address = address;
a233b20c 1477 info->op_index = op_index;
d4c32a81
L
1478 info->line = line;
1479 info->column = column;
9b8d1a36 1480 info->discriminator = discriminator;
d4c32a81
L
1481 info->end_sequence = end_sequence;
1482
1483 if (filename && filename[0])
1484 {
a50b1753 1485 info->filename = (char *) bfd_alloc (table->abfd, strlen (filename) + 1);
8af6b354
AM
1486 if (info->filename == NULL)
1487 return FALSE;
1488 strcpy (info->filename, filename);
d4c32a81
L
1489 }
1490 else
1491 info->filename = NULL;
1492
e82ce529
AM
1493 /* Find the correct location for 'info'. Normally we will receive
1494 new line_info data 1) in order and 2) with increasing VMAs.
1495 However some compilers break the rules (cf. decode_line_info) and
1496 so we include some heuristics for quickly finding the correct
1497 location for 'info'. In particular, these heuristics optimize for
1498 the common case in which the VMA sequence that we receive is a
1499 list of locally sorted VMAs such as
1500 p...z a...j (where a < j < p < z)
252b5132 1501
e82ce529 1502 Note: table->lcl_head is used to head an *actual* or *possible*
0ee19663 1503 sub-sequence within the list (such as a...j) that is not directly
e82ce529
AM
1504 headed by table->last_line
1505
1506 Note: we may receive duplicate entries from 'decode_line_info'. */
1507
0ee19663
NC
1508 if (seq
1509 && seq->last_line->address == address
a233b20c 1510 && seq->last_line->op_index == op_index
0ee19663 1511 && seq->last_line->end_sequence == end_sequence)
aff90a5f
L
1512 {
1513 /* We only keep the last entry with the same address and end
1514 sequence. See PR ld/4986. */
0ee19663 1515 if (table->lcl_head == seq->last_line)
aff90a5f 1516 table->lcl_head = info;
0ee19663
NC
1517 info->prev_line = seq->last_line->prev_line;
1518 seq->last_line = info;
aff90a5f 1519 }
0ee19663 1520 else if (!seq || seq->last_line->end_sequence)
d8d1c398 1521 {
0ee19663
NC
1522 /* Start a new line sequence. */
1523 amt = sizeof (struct line_sequence);
1524 seq = (struct line_sequence *) bfd_malloc (amt);
8af6b354
AM
1525 if (seq == NULL)
1526 return FALSE;
0ee19663
NC
1527 seq->low_pc = address;
1528 seq->prev_sequence = table->sequences;
1529 seq->last_line = info;
1530 table->lcl_head = info;
1531 table->sequences = seq;
1532 table->num_sequences++;
1533 }
1534 else if (new_line_sorts_after (info, seq->last_line))
1535 {
1536 /* Normal case: add 'info' to the beginning of the current sequence. */
1537 info->prev_line = seq->last_line;
1538 seq->last_line = info;
e82ce529 1539
d8d1c398
AM
1540 /* lcl_head: initialize to head a *possible* sequence at the end. */
1541 if (!table->lcl_head)
1542 table->lcl_head = info;
1543 }
1544 else if (!new_line_sorts_after (info, table->lcl_head)
1545 && (!table->lcl_head->prev_line
1546 || new_line_sorts_after (info, table->lcl_head->prev_line)))
1547 {
1548 /* Abnormal but easy: lcl_head is the head of 'info'. */
1549 info->prev_line = table->lcl_head->prev_line;
1550 table->lcl_head->prev_line = info;
1551 }
1552 else
1553 {
0ee19663
NC
1554 /* Abnormal and hard: Neither 'last_line' nor 'lcl_head'
1555 are valid heads for 'info'. Reset 'lcl_head'. */
1556 struct line_info* li2 = seq->last_line; /* Always non-NULL. */
d8d1c398 1557 struct line_info* li1 = li2->prev_line;
e82ce529 1558
d8d1c398
AM
1559 while (li1)
1560 {
1561 if (!new_line_sorts_after (info, li2)
1562 && new_line_sorts_after (info, li1))
1563 break;
e82ce529 1564
709d67f1 1565 li2 = li1; /* always non-NULL */
d8d1c398
AM
1566 li1 = li1->prev_line;
1567 }
1568 table->lcl_head = li2;
1569 info->prev_line = table->lcl_head->prev_line;
1570 table->lcl_head->prev_line = info;
0ee19663 1571 if (address < seq->low_pc)
93ee1e36 1572 seq->low_pc = address;
d8d1c398 1573 }
8af6b354 1574 return TRUE;
252b5132
RH
1575}
1576
5ed6aba4 1577/* Extract a fully qualified filename from a line info table.
af3ef9fe
NC
1578 The returned string has been malloc'ed and it is the caller's
1579 responsibility to free it. */
5ed6aba4 1580
a092b084 1581static char *
818a27ac 1582concat_filename (struct line_info_table *table, unsigned int file)
252b5132 1583{
f075ee0c 1584 char *filename;
159002ff
RH
1585
1586 if (file - 1 >= table->num_files)
1587 {
75a657ba
L
1588 /* FILE == 0 means unknown. */
1589 if (file)
4eca0228 1590 _bfd_error_handler
75a657ba 1591 (_("Dwarf Error: mangled line number section (bad file number)."));
af3ef9fe 1592 return strdup ("<unknown>");
159002ff
RH
1593 }
1594
1595 filename = table->files[file - 1].name;
a54018b7
AM
1596 if (filename == NULL)
1597 return strdup ("<unknown>");
5ed6aba4 1598
7421a730 1599 if (!IS_ABSOLUTE_PATH (filename))
252b5132 1600 {
608fa8d3
JB
1601 char *dir_name = NULL;
1602 char *subdir_name = NULL;
7421a730
AM
1603 char *name;
1604 size_t len;
0dafd5f6 1605
877a8638 1606 if (table->files[file - 1].dir
dbb3fbbb
NC
1607 /* PR 17512: file: 0317e960. */
1608 && table->files[file - 1].dir <= table->num_dirs
877a8638
NC
1609 /* PR 17512: file: 7f3d2e4b. */
1610 && table->dirs != NULL)
608fa8d3 1611 subdir_name = table->dirs[table->files[file - 1].dir - 1];
7421a730 1612
608fa8d3
JB
1613 if (!subdir_name || !IS_ABSOLUTE_PATH (subdir_name))
1614 dir_name = table->comp_dir;
7421a730 1615
608fa8d3 1616 if (!dir_name)
af3ef9fe 1617 {
608fa8d3
JB
1618 dir_name = subdir_name;
1619 subdir_name = NULL;
7421a730 1620 }
af3ef9fe 1621
608fa8d3 1622 if (!dir_name)
7421a730
AM
1623 return strdup (filename);
1624
608fa8d3 1625 len = strlen (dir_name) + strlen (filename) + 2;
7421a730 1626
608fa8d3 1627 if (subdir_name)
7421a730 1628 {
608fa8d3 1629 len += strlen (subdir_name) + 1;
a50b1753 1630 name = (char *) bfd_malloc (len);
7421a730 1631 if (name)
608fa8d3 1632 sprintf (name, "%s/%s/%s", dir_name, subdir_name, filename);
7421a730
AM
1633 }
1634 else
1635 {
a50b1753 1636 name = (char *) bfd_malloc (len);
af3ef9fe 1637 if (name)
608fa8d3 1638 sprintf (name, "%s/%s", dir_name, filename);
af3ef9fe 1639 }
7421a730
AM
1640
1641 return name;
252b5132 1642 }
af3ef9fe
NC
1643
1644 return strdup (filename);
252b5132
RH
1645}
1646
8af6b354 1647static bfd_boolean
a2a50954 1648arange_add (const struct comp_unit *unit, struct arange *first_arange,
8af6b354 1649 bfd_vma low_pc, bfd_vma high_pc)
f623be2b
RH
1650{
1651 struct arange *arange;
1652
a2a50954
AM
1653 /* Ignore empty ranges. */
1654 if (low_pc == high_pc)
1655 return TRUE;
1656
1657 /* If the first arange is empty, use it. */
a13afe8e
FF
1658 if (first_arange->high == 0)
1659 {
1660 first_arange->low = low_pc;
1661 first_arange->high = high_pc;
8af6b354 1662 return TRUE;
a13afe8e 1663 }
98591c73 1664
a13afe8e
FF
1665 /* Next see if we can cheaply extend an existing range. */
1666 arange = first_arange;
f623be2b
RH
1667 do
1668 {
1669 if (low_pc == arange->high)
1670 {
1671 arange->high = high_pc;
8af6b354 1672 return TRUE;
f623be2b
RH
1673 }
1674 if (high_pc == arange->low)
1675 {
1676 arange->low = low_pc;
8af6b354 1677 return TRUE;
f623be2b
RH
1678 }
1679 arange = arange->next;
1680 }
1681 while (arange);
1682
a13afe8e 1683 /* Need to allocate a new arange and insert it into the arange list.
089e3718 1684 Order isn't significant, so just insert after the first arange. */
a2a50954 1685 arange = (struct arange *) bfd_alloc (unit->abfd, sizeof (*arange));
8af6b354
AM
1686 if (arange == NULL)
1687 return FALSE;
f623be2b
RH
1688 arange->low = low_pc;
1689 arange->high = high_pc;
a13afe8e
FF
1690 arange->next = first_arange->next;
1691 first_arange->next = arange;
8af6b354 1692 return TRUE;
f623be2b
RH
1693}
1694
0ee19663
NC
1695/* Compare function for line sequences. */
1696
1697static int
1698compare_sequences (const void* a, const void* b)
1699{
1700 const struct line_sequence* seq1 = a;
1701 const struct line_sequence* seq2 = b;
1702
1703 /* Sort by low_pc as the primary key. */
1704 if (seq1->low_pc < seq2->low_pc)
1705 return -1;
1706 if (seq1->low_pc > seq2->low_pc)
1707 return 1;
1708
1709 /* If low_pc values are equal, sort in reverse order of
1710 high_pc, so that the largest region comes first. */
1711 if (seq1->last_line->address < seq2->last_line->address)
1712 return 1;
1713 if (seq1->last_line->address > seq2->last_line->address)
1714 return -1;
1715
a233b20c
JJ
1716 if (seq1->last_line->op_index < seq2->last_line->op_index)
1717 return 1;
1718 if (seq1->last_line->op_index > seq2->last_line->op_index)
1719 return -1;
1720
0ee19663
NC
1721 return 0;
1722}
1723
089e3718
IT
1724/* Construct the line information table for quick lookup. */
1725
1726static bfd_boolean
1727build_line_info_table (struct line_info_table * table,
1728 struct line_sequence * seq)
1729{
1730 bfd_size_type amt;
1731 struct line_info** line_info_lookup;
1732 struct line_info* each_line;
1733 unsigned int num_lines;
b6ddcd85 1734 unsigned int line_index;
089e3718
IT
1735
1736 if (seq->line_info_lookup != NULL)
1737 return TRUE;
1738
1739 /* Count the number of line information entries. We could do this while
1740 scanning the debug information, but some entries may be added via
1741 lcl_head without having a sequence handy to increment the number of
1742 lines. */
1743 num_lines = 0;
1744 for (each_line = seq->last_line; each_line; each_line = each_line->prev_line)
1745 num_lines++;
1746
1747 if (num_lines == 0)
1748 return TRUE;
1749
1750 /* Allocate space for the line information lookup table. */
1751 amt = sizeof (struct line_info*) * num_lines;
1752 line_info_lookup = (struct line_info**) bfd_alloc (table->abfd, amt);
1753 if (line_info_lookup == NULL)
1754 return FALSE;
1755
1756 /* Create the line information lookup table. */
b6ddcd85 1757 line_index = num_lines;
089e3718 1758 for (each_line = seq->last_line; each_line; each_line = each_line->prev_line)
b6ddcd85 1759 line_info_lookup[--line_index] = each_line;
089e3718 1760
b6ddcd85 1761 BFD_ASSERT (line_index == 0);
089e3718
IT
1762
1763 seq->num_lines = num_lines;
1764 seq->line_info_lookup = line_info_lookup;
1765
1766 return TRUE;
1767}
1768
0ee19663
NC
1769/* Sort the line sequences for quick lookup. */
1770
8af6b354 1771static bfd_boolean
0ee19663
NC
1772sort_line_sequences (struct line_info_table* table)
1773{
089e3718
IT
1774 bfd_size_type amt;
1775 struct line_sequence* sequences;
1776 struct line_sequence* seq;
1777 unsigned int n = 0;
1778 unsigned int num_sequences = table->num_sequences;
1779 bfd_vma last_high_pc;
0ee19663
NC
1780
1781 if (num_sequences == 0)
8af6b354 1782 return TRUE;
0ee19663
NC
1783
1784 /* Allocate space for an array of sequences. */
1785 amt = sizeof (struct line_sequence) * num_sequences;
1786 sequences = (struct line_sequence *) bfd_alloc (table->abfd, amt);
8af6b354
AM
1787 if (sequences == NULL)
1788 return FALSE;
0ee19663
NC
1789
1790 /* Copy the linked list into the array, freeing the original nodes. */
1791 seq = table->sequences;
1792 for (n = 0; n < num_sequences; n++)
1793 {
1794 struct line_sequence* last_seq = seq;
1795
1796 BFD_ASSERT (seq);
1797 sequences[n].low_pc = seq->low_pc;
1798 sequences[n].prev_sequence = NULL;
1799 sequences[n].last_line = seq->last_line;
089e3718
IT
1800 sequences[n].line_info_lookup = NULL;
1801 sequences[n].num_lines = 0;
0ee19663
NC
1802 seq = seq->prev_sequence;
1803 free (last_seq);
1804 }
1805 BFD_ASSERT (seq == NULL);
1806
1807 qsort (sequences, n, sizeof (struct line_sequence), compare_sequences);
1808
1809 /* Make the list binary-searchable by trimming overlapping entries
1810 and removing nested entries. */
1811 num_sequences = 1;
1812 last_high_pc = sequences[0].last_line->address;
1813 for (n = 1; n < table->num_sequences; n++)
1814 {
1815 if (sequences[n].low_pc < last_high_pc)
93ee1e36 1816 {
0ee19663
NC
1817 if (sequences[n].last_line->address <= last_high_pc)
1818 /* Skip nested entries. */
1819 continue;
1820
1821 /* Trim overlapping entries. */
1822 sequences[n].low_pc = last_high_pc;
93ee1e36 1823 }
0ee19663
NC
1824 last_high_pc = sequences[n].last_line->address;
1825 if (n > num_sequences)
93ee1e36
AM
1826 {
1827 /* Close up the gap. */
1828 sequences[num_sequences].low_pc = sequences[n].low_pc;
1829 sequences[num_sequences].last_line = sequences[n].last_line;
1830 }
0ee19663
NC
1831 num_sequences++;
1832 }
1833
1834 table->sequences = sequences;
1835 table->num_sequences = num_sequences;
8af6b354 1836 return TRUE;
0ee19663
NC
1837}
1838
0041f7df
JK
1839/* Add directory to TABLE. CUR_DIR memory ownership is taken by TABLE. */
1840
1841static bfd_boolean
1842line_info_add_include_dir (struct line_info_table *table, char *cur_dir)
1843{
1844 if ((table->num_dirs % DIR_ALLOC_CHUNK) == 0)
1845 {
1846 char **tmp;
1847 bfd_size_type amt;
1848
1849 amt = table->num_dirs + DIR_ALLOC_CHUNK;
1850 amt *= sizeof (char *);
1851
1852 tmp = (char **) bfd_realloc (table->dirs, amt);
1853 if (tmp == NULL)
1854 return FALSE;
1855 table->dirs = tmp;
1856 }
1857
1858 table->dirs[table->num_dirs++] = cur_dir;
1859 return TRUE;
1860}
1861
1862static bfd_boolean
1863line_info_add_include_dir_stub (struct line_info_table *table, char *cur_dir,
1864 unsigned int dir ATTRIBUTE_UNUSED,
1d827a72 1865 unsigned int xtime ATTRIBUTE_UNUSED,
0041f7df
JK
1866 unsigned int size ATTRIBUTE_UNUSED)
1867{
1868 return line_info_add_include_dir (table, cur_dir);
1869}
1870
1871/* Add file to TABLE. CUR_FILE memory ownership is taken by TABLE. */
1872
1873static bfd_boolean
1874line_info_add_file_name (struct line_info_table *table, char *cur_file,
1d827a72
L
1875 unsigned int dir, unsigned int xtime,
1876 unsigned int size)
0041f7df
JK
1877{
1878 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
1879 {
1880 struct fileinfo *tmp;
1881 bfd_size_type amt;
1882
1883 amt = table->num_files + FILE_ALLOC_CHUNK;
1884 amt *= sizeof (struct fileinfo);
1885
1886 tmp = (struct fileinfo *) bfd_realloc (table->files, amt);
1887 if (tmp == NULL)
1888 return FALSE;
1889 table->files = tmp;
1890 }
1891
1892 table->files[table->num_files].name = cur_file;
1893 table->files[table->num_files].dir = dir;
1d827a72 1894 table->files[table->num_files].time = xtime;
0041f7df
JK
1895 table->files[table->num_files].size = size;
1896 table->num_files++;
1897 return TRUE;
1898}
1899
1900/* Read directory or file name entry format, starting with byte of
1901 format count entries, ULEB128 pairs of entry formats, ULEB128 of
1902 entries count and the entries themselves in the described entry
1903 format. */
1904
1905static bfd_boolean
1906read_formatted_entries (struct comp_unit *unit, bfd_byte **bufp,
1907 bfd_byte *buf_end, struct line_info_table *table,
1908 bfd_boolean (*callback) (struct line_info_table *table,
1909 char *cur_file,
1910 unsigned int dir,
1911 unsigned int time,
1912 unsigned int size))
1913{
1914 bfd *abfd = unit->abfd;
1915 bfd_byte format_count, formati;
1916 bfd_vma data_count, datai;
1917 bfd_byte *buf = *bufp;
1918 bfd_byte *format_header_data;
1919 unsigned int bytes_read;
1920
1921 format_count = read_1_byte (abfd, buf, buf_end);
1922 buf += 1;
1923 format_header_data = buf;
1924 for (formati = 0; formati < format_count; formati++)
1925 {
1926 _bfd_safe_read_leb128 (abfd, buf, &bytes_read, FALSE, buf_end);
1927 buf += bytes_read;
1928 _bfd_safe_read_leb128 (abfd, buf, &bytes_read, FALSE, buf_end);
1929 buf += bytes_read;
1930 }
1931
1932 data_count = _bfd_safe_read_leb128 (abfd, buf, &bytes_read, FALSE, buf_end);
1933 buf += bytes_read;
c361faae
AM
1934 if (format_count == 0 && data_count != 0)
1935 {
1936 _bfd_error_handler (_("Dwarf Error: Zero format count."));
1937 bfd_set_error (bfd_error_bad_value);
1938 return FALSE;
1939 }
1940
30d0157a
NC
1941 /* PR 22210. Paranoia check. Don't bother running the loop
1942 if we know that we are going to run out of buffer. */
1943 if (data_count > (bfd_vma) (buf_end - buf))
1944 {
1945 _bfd_error_handler (_("Dwarf Error: data count (%Lx) larger than buffer size."),
1946 data_count);
1947 bfd_set_error (bfd_error_bad_value);
1948 return FALSE;
1949 }
1950
0041f7df
JK
1951 for (datai = 0; datai < data_count; datai++)
1952 {
1953 bfd_byte *format = format_header_data;
1954 struct fileinfo fe;
1955
a54018b7 1956 memset (&fe, 0, sizeof fe);
0041f7df
JK
1957 for (formati = 0; formati < format_count; formati++)
1958 {
1959 bfd_vma content_type, form;
1960 char *string_trash;
1961 char **stringp = &string_trash;
1962 unsigned int uint_trash, *uintp = &uint_trash;
33e0a9a0 1963 struct attribute attr;
0041f7df
JK
1964
1965 content_type = _bfd_safe_read_leb128 (abfd, format, &bytes_read,
1966 FALSE, buf_end);
1967 format += bytes_read;
1968 switch (content_type)
1969 {
1970 case DW_LNCT_path:
1971 stringp = &fe.name;
1972 break;
1973 case DW_LNCT_directory_index:
1974 uintp = &fe.dir;
1975 break;
1976 case DW_LNCT_timestamp:
1977 uintp = &fe.time;
1978 break;
1979 case DW_LNCT_size:
1980 uintp = &fe.size;
1981 break;
1982 case DW_LNCT_MD5:
1983 break;
1984 default:
1985 _bfd_error_handler
d42c267e
AM
1986 (_("Dwarf Error: Unknown format content type %Lu."),
1987 content_type);
0041f7df
JK
1988 bfd_set_error (bfd_error_bad_value);
1989 return FALSE;
1990 }
1991
1992 form = _bfd_safe_read_leb128 (abfd, format, &bytes_read, FALSE,
1993 buf_end);
1994 format += bytes_read;
33e0a9a0
AM
1995
1996 buf = read_attribute_value (&attr, form, 0, unit, buf, buf_end);
1997 if (buf == NULL)
1998 return FALSE;
0041f7df
JK
1999 switch (form)
2000 {
2001 case DW_FORM_string:
0041f7df 2002 case DW_FORM_line_strp:
33e0a9a0 2003 *stringp = attr.u.str;
0041f7df
JK
2004 break;
2005
2006 case DW_FORM_data1:
0041f7df 2007 case DW_FORM_data2:
0041f7df 2008 case DW_FORM_data4:
0041f7df 2009 case DW_FORM_data8:
0041f7df 2010 case DW_FORM_udata:
33e0a9a0 2011 *uintp = attr.u.val;
0041f7df
JK
2012 break;
2013 }
2014 }
2015
2016 if (!callback (table, fe.name, fe.dir, fe.time, fe.size))
2017 return FALSE;
2018 }
2019
2020 *bufp = buf;
2021 return TRUE;
2022}
2023
34b5e0b2 2024/* Decode the line number information for UNIT. */
252b5132 2025
34b5e0b2 2026static struct line_info_table*
818a27ac 2027decode_line_info (struct comp_unit *unit, struct dwarf2_debug *stash)
252b5132
RH
2028{
2029 bfd *abfd = unit->abfd;
252b5132 2030 struct line_info_table* table;
f075ee0c
AM
2031 bfd_byte *line_ptr;
2032 bfd_byte *line_end;
252b5132 2033 struct line_head lh;
d03ba2a1 2034 unsigned int i, bytes_read, offset_size;
252b5132
RH
2035 char *cur_file, *cur_dir;
2036 unsigned char op_code, extended_op, adj_opcode;
fec16237 2037 unsigned int exop_len;
dc810e39 2038 bfd_size_type amt;
252b5132 2039
fc28f9aa 2040 if (! read_section (abfd, &stash->debug_sections[debug_line],
93ee1e36 2041 stash->syms, unit->line_offset,
9e32b19f 2042 &stash->dwarf_line_buffer, &stash->dwarf_line_size))
8af6b354 2043 return NULL;
ccdb16fc 2044
dc810e39 2045 amt = sizeof (struct line_info_table);
a50b1753 2046 table = (struct line_info_table *) bfd_alloc (abfd, amt);
8af6b354
AM
2047 if (table == NULL)
2048 return NULL;
252b5132
RH
2049 table->abfd = abfd;
2050 table->comp_dir = unit->comp_dir;
2051
2052 table->num_files = 0;
2053 table->files = NULL;
2054
2055 table->num_dirs = 0;
2056 table->dirs = NULL;
2057
0ee19663
NC
2058 table->num_sequences = 0;
2059 table->sequences = NULL;
2060
e82ce529 2061 table->lcl_head = NULL;
159002ff 2062
dbb3fbbb
NC
2063 if (stash->dwarf_line_size < 16)
2064 {
4eca0228 2065 _bfd_error_handler
d42c267e
AM
2066 (_("Dwarf Error: Line info section is too small (%Ld)"),
2067 stash->dwarf_line_size);
dbb3fbbb
NC
2068 bfd_set_error (bfd_error_bad_value);
2069 return NULL;
2070 }
69dd2e2d 2071 line_ptr = stash->dwarf_line_buffer + unit->line_offset;
dbb3fbbb 2072 line_end = stash->dwarf_line_buffer + stash->dwarf_line_size;
252b5132 2073
a092b084 2074 /* Read in the prologue. */
dbb3fbbb 2075 lh.total_length = read_4_bytes (abfd, line_ptr, line_end);
91a4d569
AM
2076 line_ptr += 4;
2077 offset_size = 4;
2078 if (lh.total_length == 0xffffffff)
dae2dd0d 2079 {
dbb3fbbb 2080 lh.total_length = read_8_bytes (abfd, line_ptr, line_end);
dae2dd0d
NC
2081 line_ptr += 8;
2082 offset_size = 8;
2083 }
91a4d569 2084 else if (lh.total_length == 0 && unit->addr_size == 8)
d03ba2a1 2085 {
91a4d569 2086 /* Handle (non-standard) 64-bit DWARF2 formats. */
dbb3fbbb 2087 lh.total_length = read_4_bytes (abfd, line_ptr, line_end);
91a4d569 2088 line_ptr += 4;
d03ba2a1
JJ
2089 offset_size = 8;
2090 }
dbb3fbbb 2091
515f23e6 2092 if (lh.total_length > (size_t) (line_end - line_ptr))
dbb3fbbb 2093 {
4eca0228 2094 _bfd_error_handler
695344c0 2095 /* xgettext: c-format */
515f23e6
AM
2096 (_("Dwarf Error: Line info data is bigger (%#Lx)"
2097 " than the space remaining in the section (%#lx)"),
2098 lh.total_length, (unsigned long) (line_end - line_ptr));
dbb3fbbb
NC
2099 bfd_set_error (bfd_error_bad_value);
2100 return NULL;
2101 }
62f8d217 2102
252b5132 2103 line_end = line_ptr + lh.total_length;
62f8d217 2104
dbb3fbbb 2105 lh.version = read_2_bytes (abfd, line_ptr, line_end);
0041f7df 2106 if (lh.version < 2 || lh.version > 5)
a233b20c 2107 {
4eca0228 2108 _bfd_error_handler
a233b20c
JJ
2109 (_("Dwarf Error: Unhandled .debug_line version %d."), lh.version);
2110 bfd_set_error (bfd_error_bad_value);
2111 return NULL;
2112 }
252b5132 2113 line_ptr += 2;
dbb3fbbb 2114
0041f7df
JK
2115 if (line_ptr + offset_size + (lh.version >= 5 ? 8 : (lh.version >= 4 ? 6 : 5))
2116 >= line_end)
dbb3fbbb 2117 {
4eca0228 2118 _bfd_error_handler
dbb3fbbb
NC
2119 (_("Dwarf Error: Ran out of room reading prologue"));
2120 bfd_set_error (bfd_error_bad_value);
2121 return NULL;
2122 }
2123
0041f7df
JK
2124 if (lh.version >= 5)
2125 {
2126 unsigned int segment_selector_size;
2127
2128 /* Skip address size. */
2129 read_1_byte (abfd, line_ptr, line_end);
2130 line_ptr += 1;
2131
2132 segment_selector_size = read_1_byte (abfd, line_ptr, line_end);
2133 line_ptr += 1;
2134 if (segment_selector_size != 0)
2135 {
2136 _bfd_error_handler
2137 (_("Dwarf Error: Line info unsupported segment selector size %u."),
2138 segment_selector_size);
2139 bfd_set_error (bfd_error_bad_value);
2140 return NULL;
2141 }
2142 }
2143
d03ba2a1 2144 if (offset_size == 4)
dbb3fbbb 2145 lh.prologue_length = read_4_bytes (abfd, line_ptr, line_end);
d03ba2a1 2146 else
dbb3fbbb 2147 lh.prologue_length = read_8_bytes (abfd, line_ptr, line_end);
d03ba2a1 2148 line_ptr += offset_size;
dbb3fbbb
NC
2149
2150 lh.minimum_instruction_length = read_1_byte (abfd, line_ptr, line_end);
252b5132 2151 line_ptr += 1;
dbb3fbbb 2152
a233b20c
JJ
2153 if (lh.version >= 4)
2154 {
dbb3fbbb 2155 lh.maximum_ops_per_insn = read_1_byte (abfd, line_ptr, line_end);
a233b20c
JJ
2156 line_ptr += 1;
2157 }
2158 else
2159 lh.maximum_ops_per_insn = 1;
dbb3fbbb 2160
a233b20c
JJ
2161 if (lh.maximum_ops_per_insn == 0)
2162 {
4eca0228 2163 _bfd_error_handler
a233b20c
JJ
2164 (_("Dwarf Error: Invalid maximum operations per instruction."));
2165 bfd_set_error (bfd_error_bad_value);
2166 return NULL;
2167 }
dbb3fbbb
NC
2168
2169 lh.default_is_stmt = read_1_byte (abfd, line_ptr, line_end);
252b5132 2170 line_ptr += 1;
dbb3fbbb
NC
2171
2172 lh.line_base = read_1_signed_byte (abfd, line_ptr, line_end);
252b5132 2173 line_ptr += 1;
dbb3fbbb
NC
2174
2175 lh.line_range = read_1_byte (abfd, line_ptr, line_end);
252b5132 2176 line_ptr += 1;
dbb3fbbb
NC
2177
2178 lh.opcode_base = read_1_byte (abfd, line_ptr, line_end);
252b5132 2179 line_ptr += 1;
dbb3fbbb
NC
2180
2181 if (line_ptr + (lh.opcode_base - 1) >= line_end)
2182 {
4eca0228 2183 _bfd_error_handler (_("Dwarf Error: Ran out of room reading opcodes"));
dbb3fbbb
NC
2184 bfd_set_error (bfd_error_bad_value);
2185 return NULL;
2186 }
62f8d217 2187
dc810e39 2188 amt = lh.opcode_base * sizeof (unsigned char);
a50b1753 2189 lh.standard_opcode_lengths = (unsigned char *) bfd_alloc (abfd, amt);
252b5132
RH
2190
2191 lh.standard_opcode_lengths[0] = 1;
98591c73 2192
252b5132
RH
2193 for (i = 1; i < lh.opcode_base; ++i)
2194 {
dbb3fbbb 2195 lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr, line_end);
252b5132
RH
2196 line_ptr += 1;
2197 }
2198
0041f7df 2199 if (lh.version >= 5)
252b5132 2200 {
0041f7df
JK
2201 /* Read directory table. */
2202 if (!read_formatted_entries (unit, &line_ptr, line_end, table,
2203 line_info_add_include_dir_stub))
2204 goto fail;
98591c73 2205
0041f7df
JK
2206 /* Read file name table. */
2207 if (!read_formatted_entries (unit, &line_ptr, line_end, table,
2208 line_info_add_file_name))
2209 goto fail;
2210 }
2211 else
2212 {
2213 /* Read directory table. */
2214 while ((cur_dir = read_string (abfd, line_ptr, line_end, &bytes_read)) != NULL)
252b5132 2215 {
0041f7df 2216 line_ptr += bytes_read;
35330cce 2217
0041f7df 2218 if (!line_info_add_include_dir (table, cur_dir))
8af6b354 2219 goto fail;
252b5132 2220 }
98591c73 2221
252b5132 2222 line_ptr += bytes_read;
98591c73 2223
0041f7df
JK
2224 /* Read file name table. */
2225 while ((cur_file = read_string (abfd, line_ptr, line_end, &bytes_read)) != NULL)
252b5132 2226 {
1d827a72 2227 unsigned int dir, xtime, size;
0041f7df
JK
2228
2229 line_ptr += bytes_read;
35330cce 2230
0041f7df
JK
2231 dir = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read, FALSE, line_end);
2232 line_ptr += bytes_read;
1d827a72 2233 xtime = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read, FALSE, line_end);
0041f7df
JK
2234 line_ptr += bytes_read;
2235 size = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read, FALSE, line_end);
2236 line_ptr += bytes_read;
35330cce 2237
1d827a72 2238 if (!line_info_add_file_name (table, cur_file, dir, xtime, size))
8af6b354 2239 goto fail;
252b5132 2240 }
98591c73 2241
252b5132 2242 line_ptr += bytes_read;
252b5132 2243 }
98591c73 2244
252b5132
RH
2245 /* Read the statement sequences until there's nothing left. */
2246 while (line_ptr < line_end)
2247 {
a092b084 2248 /* State machine registers. */
252b5132 2249 bfd_vma address = 0;
a233b20c 2250 unsigned char op_index = 0;
8bfd78b3 2251 char * filename = table->num_files ? concat_filename (table, 1) : NULL;
252b5132
RH
2252 unsigned int line = 1;
2253 unsigned int column = 0;
9b8d1a36 2254 unsigned int discriminator = 0;
252b5132 2255 int is_stmt = lh.default_is_stmt;
e2f6d277 2256 int end_sequence = 0;
a54018b7 2257 unsigned int dir, xtime, size;
e2f6d277 2258 /* eraxxon@alumni.rice.edu: Against the DWARF2 specs, some
e82ce529
AM
2259 compilers generate address sequences that are wildly out of
2260 order using DW_LNE_set_address (e.g. Intel C++ 6.0 compiler
2261 for ia64-Linux). Thus, to determine the low and high
2262 address, we must compare on every DW_LNS_copy, etc. */
75758e9d 2263 bfd_vma low_pc = (bfd_vma) -1;
e2f6d277 2264 bfd_vma high_pc = 0;
252b5132 2265
a092b084 2266 /* Decode the table. */
e338894d 2267 while (!end_sequence && line_ptr < line_end)
252b5132 2268 {
dbb3fbbb 2269 op_code = read_1_byte (abfd, line_ptr, line_end);
252b5132 2270 line_ptr += 1;
98591c73 2271
1a509dcc 2272 if (op_code >= lh.opcode_base)
e2f6d277
NC
2273 {
2274 /* Special operand. */
1a509dcc 2275 adj_opcode = op_code - lh.opcode_base;
dbb3fbbb
NC
2276 if (lh.line_range == 0)
2277 goto line_fail;
a233b20c 2278 if (lh.maximum_ops_per_insn == 1)
a2a50954
AM
2279 address += (adj_opcode / lh.line_range
2280 * lh.minimum_instruction_length);
a233b20c
JJ
2281 else
2282 {
a2a50954
AM
2283 address += ((op_index + adj_opcode / lh.line_range)
2284 / lh.maximum_ops_per_insn
2285 * lh.minimum_instruction_length);
2286 op_index = ((op_index + adj_opcode / lh.line_range)
2287 % lh.maximum_ops_per_insn);
a233b20c 2288 }
1a509dcc
GK
2289 line += lh.line_base + (adj_opcode % lh.line_range);
2290 /* Append row to matrix using current values. */
a233b20c 2291 if (!add_line_info (table, address, op_index, filename,
9b8d1a36 2292 line, column, discriminator, 0))
8af6b354 2293 goto line_fail;
93ee1e36 2294 discriminator = 0;
75758e9d
AM
2295 if (address < low_pc)
2296 low_pc = address;
e2f6d277
NC
2297 if (address > high_pc)
2298 high_pc = address;
1a509dcc
GK
2299 }
2300 else switch (op_code)
252b5132
RH
2301 {
2302 case DW_LNS_extended_op:
4265548c
PA
2303 exop_len = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2304 FALSE, line_end);
fec16237 2305 line_ptr += bytes_read;
dbb3fbbb 2306 extended_op = read_1_byte (abfd, line_ptr, line_end);
252b5132 2307 line_ptr += 1;
e2f6d277 2308
252b5132
RH
2309 switch (extended_op)
2310 {
2311 case DW_LNE_end_sequence:
2312 end_sequence = 1;
9b8d1a36
CC
2313 if (!add_line_info (table, address, op_index, filename, line,
2314 column, discriminator, end_sequence))
8af6b354 2315 goto line_fail;
93ee1e36 2316 discriminator = 0;
75758e9d
AM
2317 if (address < low_pc)
2318 low_pc = address;
e2f6d277
NC
2319 if (address > high_pc)
2320 high_pc = address;
a2a50954 2321 if (!arange_add (unit, &unit->arange, low_pc, high_pc))
8af6b354 2322 goto line_fail;
252b5132
RH
2323 break;
2324 case DW_LNE_set_address:
dbb3fbbb 2325 address = read_address (unit, line_ptr, line_end);
a233b20c 2326 op_index = 0;
252b5132
RH
2327 line_ptr += unit->addr_size;
2328 break;
2329 case DW_LNE_define_file:
dbb3fbbb 2330 cur_file = read_string (abfd, line_ptr, line_end, &bytes_read);
252b5132 2331 line_ptr += bytes_read;
a54018b7
AM
2332 dir = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2333 FALSE, line_end);
252b5132 2334 line_ptr += bytes_read;
a54018b7
AM
2335 xtime = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2336 FALSE, line_end);
252b5132 2337 line_ptr += bytes_read;
a54018b7
AM
2338 size = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2339 FALSE, line_end);
252b5132 2340 line_ptr += bytes_read;
a54018b7
AM
2341 if (!line_info_add_file_name (table, cur_file, dir,
2342 xtime, size))
2343 goto line_fail;
252b5132 2344 break;
9e1f7c0e 2345 case DW_LNE_set_discriminator:
9b8d1a36 2346 discriminator =
4265548c
PA
2347 _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2348 FALSE, line_end);
9e1f7c0e
DK
2349 line_ptr += bytes_read;
2350 break;
a2a50954
AM
2351 case DW_LNE_HP_source_file_correlation:
2352 line_ptr += exop_len - 1;
2353 break;
252b5132 2354 default:
4eca0228 2355 _bfd_error_handler
a2a50954 2356 (_("Dwarf Error: mangled line number section."));
252b5132 2357 bfd_set_error (bfd_error_bad_value);
8af6b354
AM
2358 line_fail:
2359 if (filename != NULL)
2360 free (filename);
2361 goto fail;
252b5132
RH
2362 }
2363 break;
2364 case DW_LNS_copy:
a233b20c 2365 if (!add_line_info (table, address, op_index,
9b8d1a36 2366 filename, line, column, discriminator, 0))
8af6b354 2367 goto line_fail;
93ee1e36 2368 discriminator = 0;
75758e9d
AM
2369 if (address < low_pc)
2370 low_pc = address;
e2f6d277
NC
2371 if (address > high_pc)
2372 high_pc = address;
252b5132
RH
2373 break;
2374 case DW_LNS_advance_pc:
a233b20c 2375 if (lh.maximum_ops_per_insn == 1)
a2a50954 2376 address += (lh.minimum_instruction_length
4265548c
PA
2377 * _bfd_safe_read_leb128 (abfd, line_ptr,
2378 &bytes_read,
2379 FALSE, line_end));
a233b20c
JJ
2380 else
2381 {
4265548c
PA
2382 bfd_vma adjust = _bfd_safe_read_leb128 (abfd, line_ptr,
2383 &bytes_read,
2384 FALSE, line_end);
a2a50954
AM
2385 address = ((op_index + adjust) / lh.maximum_ops_per_insn
2386 * lh.minimum_instruction_length);
a233b20c
JJ
2387 op_index = (op_index + adjust) % lh.maximum_ops_per_insn;
2388 }
252b5132
RH
2389 line_ptr += bytes_read;
2390 break;
2391 case DW_LNS_advance_line:
4265548c
PA
2392 line += _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2393 TRUE, line_end);
252b5132
RH
2394 line_ptr += bytes_read;
2395 break;
2396 case DW_LNS_set_file:
2397 {
2398 unsigned int file;
2399
e2f6d277
NC
2400 /* The file and directory tables are 0
2401 based, the references are 1 based. */
4265548c
PA
2402 file = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2403 FALSE, line_end);
252b5132 2404 line_ptr += bytes_read;
af3ef9fe
NC
2405 if (filename)
2406 free (filename);
252b5132
RH
2407 filename = concat_filename (table, file);
2408 break;
2409 }
2410 case DW_LNS_set_column:
4265548c
PA
2411 column = _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2412 FALSE, line_end);
252b5132
RH
2413 line_ptr += bytes_read;
2414 break;
2415 case DW_LNS_negate_stmt:
2416 is_stmt = (!is_stmt);
2417 break;
2418 case DW_LNS_set_basic_block:
252b5132
RH
2419 break;
2420 case DW_LNS_const_add_pc:
d8010d3e
AM
2421 if (lh.line_range == 0)
2422 goto line_fail;
a233b20c 2423 if (lh.maximum_ops_per_insn == 1)
a2a50954
AM
2424 address += (lh.minimum_instruction_length
2425 * ((255 - lh.opcode_base) / lh.line_range));
a233b20c
JJ
2426 else
2427 {
2428 bfd_vma adjust = ((255 - lh.opcode_base) / lh.line_range);
a2a50954
AM
2429 address += (lh.minimum_instruction_length
2430 * ((op_index + adjust)
2431 / lh.maximum_ops_per_insn));
a233b20c
JJ
2432 op_index = (op_index + adjust) % lh.maximum_ops_per_insn;
2433 }
252b5132
RH
2434 break;
2435 case DW_LNS_fixed_advance_pc:
dbb3fbbb 2436 address += read_2_bytes (abfd, line_ptr, line_end);
a233b20c 2437 op_index = 0;
252b5132
RH
2438 line_ptr += 2;
2439 break;
1a509dcc 2440 default:
91d6fa6a
NC
2441 /* Unknown standard opcode, ignore it. */
2442 for (i = 0; i < lh.standard_opcode_lengths[op_code]; i++)
2443 {
4265548c
PA
2444 (void) _bfd_safe_read_leb128 (abfd, line_ptr, &bytes_read,
2445 FALSE, line_end);
91d6fa6a
NC
2446 line_ptr += bytes_read;
2447 }
2448 break;
252b5132
RH
2449 }
2450 }
5ed6aba4 2451
af3ef9fe
NC
2452 if (filename)
2453 free (filename);
252b5132
RH
2454 }
2455
8af6b354
AM
2456 if (sort_line_sequences (table))
2457 return table;
0ee19663 2458
8af6b354 2459 fail:
a26a013f
AM
2460 while (table->sequences != NULL)
2461 {
2462 struct line_sequence* seq = table->sequences;
2463 table->sequences = table->sequences->prev_sequence;
2464 free (seq);
2465 }
8af6b354
AM
2466 if (table->files != NULL)
2467 free (table->files);
2468 if (table->dirs != NULL)
2469 free (table->dirs);
2470 return NULL;
252b5132
RH
2471}
2472
240d6706
NC
2473/* If ADDR is within TABLE set the output parameters and return the
2474 range of addresses covered by the entry used to fill them out.
2475 Otherwise set * FILENAME_PTR to NULL and return 0.
2476 The parameters FILENAME_PTR, LINENUMBER_PTR and DISCRIMINATOR_PTR
2477 are pointers to the objects to be filled in. */
252b5132 2478
240d6706 2479static bfd_vma
818a27ac
AM
2480lookup_address_in_line_info_table (struct line_info_table *table,
2481 bfd_vma addr,
818a27ac 2482 const char **filename_ptr,
9b8d1a36
CC
2483 unsigned int *linenumber_ptr,
2484 unsigned int *discriminator_ptr)
252b5132 2485{
0ee19663 2486 struct line_sequence *seq = NULL;
089e3718 2487 struct line_info *info;
0ee19663 2488 int low, high, mid;
e82ce529 2489
0ee19663
NC
2490 /* Binary search the array of sequences. */
2491 low = 0;
2492 high = table->num_sequences;
2493 while (low < high)
2494 {
2495 mid = (low + high) / 2;
2496 seq = &table->sequences[mid];
2497 if (addr < seq->low_pc)
2498 high = mid;
2499 else if (addr >= seq->last_line->address)
2500 low = mid + 1;
2501 else
2502 break;
2503 }
98591c73 2504
089e3718
IT
2505 /* Check for a valid sequence. */
2506 if (!seq || addr < seq->low_pc || addr >= seq->last_line->address)
2507 goto fail;
2508
2509 if (!build_line_info_table (table, seq))
2510 goto fail;
2511
2512 /* Binary search the array of line information. */
2513 low = 0;
2514 high = seq->num_lines;
2515 info = NULL;
2516 while (low < high)
1ee24f27 2517 {
089e3718
IT
2518 mid = (low + high) / 2;
2519 info = seq->line_info_lookup[mid];
2520 if (addr < info->address)
2521 high = mid;
2522 else if (addr >= seq->line_info_lookup[mid + 1]->address)
2523 low = mid + 1;
2524 else
2525 break;
2526 }
0ee19663 2527
089e3718
IT
2528 /* Check for a valid line information entry. */
2529 if (info
2530 && addr >= info->address
2531 && addr < seq->line_info_lookup[mid + 1]->address
2532 && !(info->end_sequence || info == seq->last_line))
2533 {
2534 *filename_ptr = info->filename;
2535 *linenumber_ptr = info->line;
2536 if (discriminator_ptr)
2537 *discriminator_ptr = info->discriminator;
2538 return seq->last_line->address - seq->low_pc;
1ee24f27
DJ
2539 }
2540
089e3718 2541fail:
107601c8 2542 *filename_ptr = NULL;
240d6706 2543 return 0;
252b5132 2544}
98591c73 2545
0ee19663 2546/* Read in the .debug_ranges section for future reference. */
a13afe8e
FF
2547
2548static bfd_boolean
089e3718 2549read_debug_ranges (struct comp_unit * unit)
a13afe8e 2550{
089e3718
IT
2551 struct dwarf2_debug * stash = unit->stash;
2552
fc28f9aa 2553 return read_section (unit->abfd, &stash->debug_sections[debug_ranges],
93ee1e36 2554 stash->syms, 0,
089e3718
IT
2555 &stash->dwarf_ranges_buffer,
2556 &stash->dwarf_ranges_size);
a13afe8e
FF
2557}
2558
a092b084 2559/* Function table functions. */
252b5132 2560
089e3718
IT
2561static int
2562compare_lookup_funcinfos (const void * a, const void * b)
2563{
2564 const struct lookup_funcinfo * lookup1 = a;
2565 const struct lookup_funcinfo * lookup2 = b;
2566
2567 if (lookup1->low_addr < lookup2->low_addr)
2568 return -1;
2569 if (lookup1->low_addr > lookup2->low_addr)
2570 return 1;
2571 if (lookup1->high_addr < lookup2->high_addr)
2572 return -1;
2573 if (lookup1->high_addr > lookup2->high_addr)
2574 return 1;
2575
2576 return 0;
2577}
2578
2579static bfd_boolean
2580build_lookup_funcinfo_table (struct comp_unit * unit)
2581{
2582 struct lookup_funcinfo *lookup_funcinfo_table = unit->lookup_funcinfo_table;
2583 unsigned int number_of_functions = unit->number_of_functions;
2584 struct funcinfo *each;
2585 struct lookup_funcinfo *entry;
b6ddcd85 2586 size_t func_index;
089e3718
IT
2587 struct arange *range;
2588 bfd_vma low_addr, high_addr;
2589
2590 if (lookup_funcinfo_table || number_of_functions == 0)
2591 return TRUE;
2592
2593 /* Create the function info lookup table. */
2594 lookup_funcinfo_table = (struct lookup_funcinfo *)
2595 bfd_malloc (number_of_functions * sizeof (struct lookup_funcinfo));
2596 if (lookup_funcinfo_table == NULL)
2597 return FALSE;
2598
2599 /* Populate the function info lookup table. */
b6ddcd85 2600 func_index = number_of_functions;
089e3718
IT
2601 for (each = unit->function_table; each; each = each->prev_func)
2602 {
b6ddcd85 2603 entry = &lookup_funcinfo_table[--func_index];
089e3718
IT
2604 entry->funcinfo = each;
2605
2606 /* Calculate the lowest and highest address for this function entry. */
2607 low_addr = entry->funcinfo->arange.low;
2608 high_addr = entry->funcinfo->arange.high;
2609
2610 for (range = entry->funcinfo->arange.next; range; range = range->next)
2611 {
2612 if (range->low < low_addr)
2613 low_addr = range->low;
2614 if (range->high > high_addr)
2615 high_addr = range->high;
2616 }
2617
2618 entry->low_addr = low_addr;
2619 entry->high_addr = high_addr;
2620 }
2621
b6ddcd85 2622 BFD_ASSERT (func_index == 0);
089e3718
IT
2623
2624 /* Sort the function by address. */
2625 qsort (lookup_funcinfo_table,
2626 number_of_functions,
2627 sizeof (struct lookup_funcinfo),
2628 compare_lookup_funcinfos);
2629
2630 /* Calculate the high watermark for each function in the lookup table. */
2631 high_addr = lookup_funcinfo_table[0].high_addr;
b6ddcd85 2632 for (func_index = 1; func_index < number_of_functions; func_index++)
089e3718 2633 {
b6ddcd85 2634 entry = &lookup_funcinfo_table[func_index];
089e3718
IT
2635 if (entry->high_addr > high_addr)
2636 high_addr = entry->high_addr;
2637 else
2638 entry->high_addr = high_addr;
2639 }
2640
2641 unit->lookup_funcinfo_table = lookup_funcinfo_table;
2642 return TRUE;
2643}
2644
e00e8198 2645/* If ADDR is within UNIT's function tables, set FUNCTION_PTR, and return
240d6706
NC
2646 TRUE. Note that we need to find the function that has the smallest range
2647 that contains ADDR, to handle inlined functions without depending upon
2648 them being ordered in TABLE by increasing range. */
252b5132 2649
b34976b6 2650static bfd_boolean
4ab527b0 2651lookup_address_in_function_table (struct comp_unit *unit,
818a27ac 2652 bfd_vma addr,
e00e8198 2653 struct funcinfo **function_ptr)
252b5132 2654{
089e3718
IT
2655 unsigned int number_of_functions = unit->number_of_functions;
2656 struct lookup_funcinfo* lookup_funcinfo = NULL;
2657 struct funcinfo* funcinfo = NULL;
a13afe8e 2658 struct funcinfo* best_fit = NULL;
4ba3b326 2659 bfd_vma best_fit_len = 0;
089e3718 2660 bfd_size_type low, high, mid, first;
a13afe8e 2661 struct arange *arange;
252b5132 2662
cd6581da
NC
2663 if (number_of_functions == 0)
2664 return FALSE;
2665
089e3718
IT
2666 if (!build_lookup_funcinfo_table (unit))
2667 return FALSE;
2668
cd6581da
NC
2669 if (unit->lookup_funcinfo_table[number_of_functions - 1].high_addr < addr)
2670 return FALSE;
2671
089e3718
IT
2672 /* Find the first function in the lookup table which may contain the
2673 specified address. */
2674 low = 0;
2675 high = number_of_functions;
2676 first = high;
2677 while (low < high)
252b5132 2678 {
089e3718
IT
2679 mid = (low + high) / 2;
2680 lookup_funcinfo = &unit->lookup_funcinfo_table[mid];
2681 if (addr < lookup_funcinfo->low_addr)
2682 high = mid;
2683 else if (addr >= lookup_funcinfo->high_addr)
2684 low = mid + 1;
2685 else
2686 high = first = mid;
2687 }
2688
2689 /* Find the 'best' match for the address. The prior algorithm defined the
2690 best match as the function with the smallest address range containing
2691 the specified address. This definition should probably be changed to the
2692 innermost inline routine containing the address, but right now we want
2693 to get the same results we did before. */
2694 while (first < number_of_functions)
2695 {
2696 if (addr < unit->lookup_funcinfo_table[first].low_addr)
2697 break;
2698 funcinfo = unit->lookup_funcinfo_table[first].funcinfo;
2699
2700 for (arange = &funcinfo->arange; arange; arange = arange->next)
252b5132 2701 {
089e3718
IT
2702 if (addr < arange->low || addr >= arange->high)
2703 continue;
2704
2705 if (!best_fit
2706 || arange->high - arange->low < best_fit_len
2707 /* The following comparison is designed to return the same
2708 match as the previous algorithm for routines which have the
2709 same best fit length. */
2710 || (arange->high - arange->low == best_fit_len
2711 && funcinfo > best_fit))
a13afe8e 2712 {
089e3718
IT
2713 best_fit = funcinfo;
2714 best_fit_len = arange->high - arange->low;
a13afe8e 2715 }
252b5132 2716 }
98591c73 2717
089e3718 2718 first++;
a13afe8e 2719 }
089e3718
IT
2720
2721 if (!best_fit)
2722 return FALSE;
2723
2724 *function_ptr = best_fit;
2725 return TRUE;
252b5132
RH
2726}
2727
5420f73d
L
2728/* If SYM at ADDR is within function table of UNIT, set FILENAME_PTR
2729 and LINENUMBER_PTR, and return TRUE. */
2730
2731static bfd_boolean
2732lookup_symbol_in_function_table (struct comp_unit *unit,
2733 asymbol *sym,
2734 bfd_vma addr,
2735 const char **filename_ptr,
2736 unsigned int *linenumber_ptr)
2737{
2738 struct funcinfo* each_func;
2739 struct funcinfo* best_fit = NULL;
4ba3b326 2740 bfd_vma best_fit_len = 0;
5420f73d
L
2741 struct arange *arange;
2742 const char *name = bfd_asymbol_name (sym);
2743 asection *sec = bfd_get_section (sym);
2744
2745 for (each_func = unit->function_table;
2746 each_func;
2747 each_func = each_func->prev_func)
2748 {
2749 for (arange = &each_func->arange;
2750 arange;
2751 arange = arange->next)
2752 {
2753 if ((!each_func->sec || each_func->sec == sec)
2754 && addr >= arange->low
2755 && addr < arange->high
650f284e 2756 && each_func->name
5420f73d
L
2757 && strcmp (name, each_func->name) == 0
2758 && (!best_fit
4ba3b326
TG
2759 || arange->high - arange->low < best_fit_len))
2760 {
2761 best_fit = each_func;
2762 best_fit_len = arange->high - arange->low;
2763 }
5420f73d
L
2764 }
2765 }
2766
2767 if (best_fit)
2768 {
2769 best_fit->sec = sec;
2770 *filename_ptr = best_fit->file;
2771 *linenumber_ptr = best_fit->line;
2772 return TRUE;
2773 }
2774 else
2775 return FALSE;
2776}
2777
2778/* Variable table functions. */
2779
2780/* If SYM is within variable table of UNIT, set FILENAME_PTR and
2781 LINENUMBER_PTR, and return TRUE. */
2782
2783static bfd_boolean
2784lookup_symbol_in_variable_table (struct comp_unit *unit,
2785 asymbol *sym,
5cf2e3f0 2786 bfd_vma addr,
5420f73d
L
2787 const char **filename_ptr,
2788 unsigned int *linenumber_ptr)
2789{
2790 const char *name = bfd_asymbol_name (sym);
2791 asection *sec = bfd_get_section (sym);
2792 struct varinfo* each;
2793
2794 for (each = unit->variable_table; each; each = each->prev_var)
2795 if (each->stack == 0
5cf2e3f0
L
2796 && each->file != NULL
2797 && each->name != NULL
2798 && each->addr == addr
5420f73d
L
2799 && (!each->sec || each->sec == sec)
2800 && strcmp (name, each->name) == 0)
2801 break;
2802
2803 if (each)
2804 {
2805 each->sec = sec;
2806 *filename_ptr = each->file;
2807 *linenumber_ptr = each->line;
2808 return TRUE;
2809 }
089e3718
IT
2810
2811 return FALSE;
5420f73d
L
2812}
2813
52a93b95 2814static bfd_boolean
5609a71e 2815find_abstract_instance_name (struct comp_unit *unit,
52a93b95 2816 bfd_byte *orig_info_ptr,
e00e8198 2817 struct attribute *attr_ptr,
52a93b95 2818 const char **pname,
e00e8198 2819 bfd_boolean *is_linkage)
06f22d7e
FF
2820{
2821 bfd *abfd = unit->abfd;
f075ee0c 2822 bfd_byte *info_ptr;
dbb3fbbb 2823 bfd_byte *info_ptr_end;
06f22d7e
FF
2824 unsigned int abbrev_number, bytes_read, i;
2825 struct abbrev_info *abbrev;
5609a71e 2826 bfd_uint64_t die_ref = attr_ptr->u.val;
06f22d7e 2827 struct attribute attr;
52a93b95 2828 const char *name = NULL;
06f22d7e 2829
5609a71e
DJ
2830 /* DW_FORM_ref_addr can reference an entry in a different CU. It
2831 is an offset from the .debug_info section, not the current CU. */
2832 if (attr_ptr->form == DW_FORM_ref_addr)
2833 {
2834 /* We only support DW_FORM_ref_addr within the same file, so
1b86808a
AM
2835 any relocations should be resolved already. Check this by
2836 testing for a zero die_ref; There can't be a valid reference
2837 to the header of a .debug_info section.
2838 DW_FORM_ref_addr is an offset relative to .debug_info.
2839 Normally when using the GNU linker this is accomplished by
2840 emitting a symbolic reference to a label, because .debug_info
2841 sections are linked at zero. When there are multiple section
2842 groups containing .debug_info, as there might be in a
2843 relocatable object file, it would be reasonable to assume that
2844 a symbolic reference to a label in any .debug_info section
2845 might be used. Since we lay out multiple .debug_info
2846 sections at non-zero VMAs (see place_sections), and read
2847 them contiguously into stash->info_ptr_memory, that means
2848 the reference is relative to stash->info_ptr_memory. */
2849 size_t total;
2850
2851 info_ptr = unit->stash->info_ptr_memory;
2852 info_ptr_end = unit->stash->info_ptr_end;
2853 total = info_ptr_end - info_ptr;
2854 if (!die_ref || die_ref >= total)
52a93b95
AM
2855 {
2856 _bfd_error_handler
1b86808a 2857 (_("Dwarf Error: Invalid abstract instance DIE ref."));
52a93b95
AM
2858 bfd_set_error (bfd_error_bad_value);
2859 return FALSE;
2860 }
1b86808a 2861 info_ptr += die_ref;
0a9c7b2b
NC
2862
2863 /* Now find the CU containing this pointer. */
2864 if (info_ptr >= unit->info_ptr_unit && info_ptr < unit->end_ptr)
1b86808a 2865 info_ptr_end = unit->end_ptr;
0a9c7b2b
NC
2866 else
2867 {
2868 /* Check other CUs to see if they contain the abbrev. */
2869 struct comp_unit * u;
2870
2871 for (u = unit->prev_unit; u != NULL; u = u->prev_unit)
2872 if (info_ptr >= u->info_ptr_unit && info_ptr < u->end_ptr)
2873 break;
2874
2875 if (u == NULL)
2876 for (u = unit->next_unit; u != NULL; u = u->next_unit)
2877 if (info_ptr >= u->info_ptr_unit && info_ptr < u->end_ptr)
2878 break;
2879
2880 if (u)
1b86808a
AM
2881 {
2882 unit = u;
2883 info_ptr_end = unit->end_ptr;
2884 }
0a9c7b2b
NC
2885 /* else FIXME: What do we do now ? */
2886 }
5609a71e 2887 }
95e34fb4
NC
2888 else if (attr_ptr->form == DW_FORM_GNU_ref_alt)
2889 {
2890 info_ptr = read_alt_indirect_ref (unit, die_ref);
2891 if (info_ptr == NULL)
2892 {
4eca0228 2893 _bfd_error_handler
d42c267e
AM
2894 (_("Dwarf Error: Unable to read alt ref %llu."),
2895 (long long) die_ref);
95e34fb4 2896 bfd_set_error (bfd_error_bad_value);
52a93b95 2897 return FALSE;
95e34fb4 2898 }
52a93b95
AM
2899 info_ptr_end = (unit->stash->alt_dwarf_info_buffer
2900 + unit->stash->alt_dwarf_info_size);
dbb3fbbb 2901
0a9c7b2b
NC
2902 /* FIXME: Do we need to locate the correct CU, in a similar
2903 fashion to the code in the DW_FORM_ref_addr case above ? */
95e34fb4 2904 }
68ffbac6 2905 else
dbb3fbbb 2906 {
1b86808a
AM
2907 /* DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_ref8 or
2908 DW_FORM_ref_udata. These are all references relative to the
2909 start of the current CU. */
2910 size_t total;
2911
2912 info_ptr = unit->info_ptr_unit;
dbb3fbbb 2913 info_ptr_end = unit->end_ptr;
1b86808a
AM
2914 total = info_ptr_end - info_ptr;
2915 if (!die_ref || die_ref >= total)
2916 {
2917 _bfd_error_handler
2918 (_("Dwarf Error: Invalid abstract instance DIE ref."));
2919 bfd_set_error (bfd_error_bad_value);
2920 return FALSE;
2921 }
2922 info_ptr += die_ref;
dbb3fbbb 2923 }
95e34fb4 2924
4265548c
PA
2925 abbrev_number = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
2926 FALSE, info_ptr_end);
06f22d7e
FF
2927 info_ptr += bytes_read;
2928
2929 if (abbrev_number)
2930 {
2931 abbrev = lookup_abbrev (abbrev_number, unit->abbrevs);
2932 if (! abbrev)
2933 {
4eca0228 2934 _bfd_error_handler
a2a50954 2935 (_("Dwarf Error: Could not find abbrev number %u."), abbrev_number);
06f22d7e 2936 bfd_set_error (bfd_error_bad_value);
52a93b95 2937 return FALSE;
06f22d7e
FF
2938 }
2939 else
2940 {
d5cbaa15 2941 for (i = 0; i < abbrev->num_attrs; ++i)
06f22d7e 2942 {
8af6b354 2943 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit,
dbb3fbbb 2944 info_ptr, info_ptr_end);
8af6b354
AM
2945 if (info_ptr == NULL)
2946 break;
52a93b95
AM
2947 /* It doesn't ever make sense for DW_AT_specification to
2948 refer to the same DIE. Stop simple recursion. */
2949 if (info_ptr == orig_info_ptr)
2950 {
2951 _bfd_error_handler
2952 (_("Dwarf Error: Abstract instance recursion detected."));
2953 bfd_set_error (bfd_error_bad_value);
2954 return FALSE;
2955 }
26bf4e33
FF
2956 switch (attr.name)
2957 {
2958 case DW_AT_name:
643be349
JJ
2959 /* Prefer DW_AT_MIPS_linkage_name or DW_AT_linkage_name
2960 over DW_AT_name. */
60d77146 2961 if (name == NULL && is_str_attr (attr.form))
e00e8198
AM
2962 {
2963 name = attr.u.str;
2964 if (non_mangled (unit->lang))
2965 *is_linkage = TRUE;
2966 }
26bf4e33
FF
2967 break;
2968 case DW_AT_specification:
52a93b95
AM
2969 if (!find_abstract_instance_name (unit, info_ptr, &attr,
2970 pname, is_linkage))
2971 return FALSE;
26bf4e33 2972 break;
643be349 2973 case DW_AT_linkage_name:
d5cbaa15 2974 case DW_AT_MIPS_linkage_name:
60d77146
NC
2975 /* PR 16949: Corrupt debug info can place
2976 non-string forms into these attributes. */
6d74e8a1 2977 if (is_str_attr (attr.form))
e00e8198
AM
2978 {
2979 name = attr.u.str;
2980 *is_linkage = TRUE;
2981 }
d5cbaa15 2982 break;
26bf4e33
FF
2983 default:
2984 break;
2985 }
06f22d7e
FF
2986 }
2987 }
2988 }
52a93b95
AM
2989 *pname = name;
2990 return TRUE;
06f22d7e
FF
2991}
2992
8af6b354
AM
2993static bfd_boolean
2994read_rangelist (struct comp_unit *unit, struct arange *arange,
2995 bfd_uint64_t offset)
a13afe8e
FF
2996{
2997 bfd_byte *ranges_ptr;
dbb3fbbb 2998 bfd_byte *ranges_end;
a13afe8e
FF
2999 bfd_vma base_address = unit->base_address;
3000
3001 if (! unit->stash->dwarf_ranges_buffer)
3002 {
3003 if (! read_debug_ranges (unit))
8af6b354 3004 return FALSE;
a13afe8e 3005 }
d8d1c398 3006
dbb3fbbb
NC
3007 ranges_ptr = unit->stash->dwarf_ranges_buffer + offset;
3008 if (ranges_ptr < unit->stash->dwarf_ranges_buffer)
3009 return FALSE;
3010 ranges_end = unit->stash->dwarf_ranges_buffer + unit->stash->dwarf_ranges_size;
62f8d217 3011
a13afe8e
FF
3012 for (;;)
3013 {
3014 bfd_vma low_pc;
3015 bfd_vma high_pc;
3016
dbb3fbbb 3017 /* PR 17512: file: 62cada7d. */
62f8d217 3018 if (ranges_ptr + 2 * unit->addr_size > ranges_end)
dbb3fbbb
NC
3019 return FALSE;
3020
3021 low_pc = read_address (unit, ranges_ptr, ranges_end);
13d72a14 3022 ranges_ptr += unit->addr_size;
dbb3fbbb 3023 high_pc = read_address (unit, ranges_ptr, ranges_end);
13d72a14
AN
3024 ranges_ptr += unit->addr_size;
3025
a13afe8e
FF
3026 if (low_pc == 0 && high_pc == 0)
3027 break;
3028 if (low_pc == -1UL && high_pc != -1UL)
3029 base_address = high_pc;
3030 else
8af6b354 3031 {
a2a50954 3032 if (!arange_add (unit, arange,
8af6b354
AM
3033 base_address + low_pc, base_address + high_pc))
3034 return FALSE;
3035 }
a13afe8e 3036 }
8af6b354 3037 return TRUE;
a13afe8e
FF
3038}
3039
a092b084 3040/* DWARF2 Compilation unit functions. */
252b5132
RH
3041
3042/* Scan over each die in a comp. unit looking for functions to add
34b5e0b2 3043 to the function table and variables to the variable table. */
252b5132 3044
b34976b6 3045static bfd_boolean
5420f73d 3046scan_unit_for_symbols (struct comp_unit *unit)
252b5132
RH
3047{
3048 bfd *abfd = unit->abfd;
f075ee0c 3049 bfd_byte *info_ptr = unit->first_child_die_ptr;
dbb3fbbb 3050 bfd_byte *info_ptr_end = unit->stash->info_ptr_end;
52a93b95
AM
3051 int nesting_level = 0;
3052 struct nest_funcinfo {
3053 struct funcinfo *func;
3054 } *nested_funcs;
c955f9cd
JW
3055 int nested_funcs_size;
3056
3057 /* Maintain a stack of in-scope functions and inlined functions, which we
3058 can use to set the caller_func field. */
3059 nested_funcs_size = 32;
52a93b95
AM
3060 nested_funcs = (struct nest_funcinfo *)
3061 bfd_malloc (nested_funcs_size * sizeof (*nested_funcs));
c955f9cd
JW
3062 if (nested_funcs == NULL)
3063 return FALSE;
52a93b95 3064 nested_funcs[nesting_level].func = 0;
252b5132 3065
52a93b95 3066 while (nesting_level >= 0)
252b5132
RH
3067 {
3068 unsigned int abbrev_number, bytes_read, i;
3069 struct abbrev_info *abbrev;
3070 struct attribute attr;
3071 struct funcinfo *func;
5420f73d 3072 struct varinfo *var;
a13afe8e
FF
3073 bfd_vma low_pc = 0;
3074 bfd_vma high_pc = 0;
c49ead2f 3075 bfd_boolean high_pc_relative = FALSE;
252b5132 3076
877a8638 3077 /* PR 17512: file: 9f405d9d. */
dbb3fbbb 3078 if (info_ptr >= info_ptr_end)
877a8638 3079 goto fail;
62f8d217 3080
4265548c
PA
3081 abbrev_number = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
3082 FALSE, info_ptr_end);
252b5132
RH
3083 info_ptr += bytes_read;
3084
3085 if (! abbrev_number)
3086 {
3087 nesting_level--;
3088 continue;
3089 }
98591c73 3090
e643cb45 3091 abbrev = lookup_abbrev (abbrev_number, unit->abbrevs);
252b5132
RH
3092 if (! abbrev)
3093 {
e643cb45
NC
3094 static unsigned int previous_failed_abbrev = -1U;
3095
3096 /* Avoid multiple reports of the same missing abbrev. */
3097 if (abbrev_number != previous_failed_abbrev)
3098 {
3099 _bfd_error_handler
3100 (_("Dwarf Error: Could not find abbrev number %u."),
3101 abbrev_number);
3102 previous_failed_abbrev = abbrev_number;
3103 }
252b5132 3104 bfd_set_error (bfd_error_bad_value);
8af6b354 3105 goto fail;
252b5132 3106 }
98591c73 3107
5420f73d 3108 var = NULL;
06f22d7e 3109 if (abbrev->tag == DW_TAG_subprogram
5420f73d 3110 || abbrev->tag == DW_TAG_entry_point
06f22d7e 3111 || abbrev->tag == DW_TAG_inlined_subroutine)
252b5132 3112 {
dc810e39 3113 bfd_size_type amt = sizeof (struct funcinfo);
a50b1753 3114 func = (struct funcinfo *) bfd_zalloc (abfd, amt);
8af6b354
AM
3115 if (func == NULL)
3116 goto fail;
4ab527b0 3117 func->tag = abbrev->tag;
252b5132
RH
3118 func->prev_func = unit->function_table;
3119 unit->function_table = func;
e643cb45 3120 unit->number_of_functions++;
bd210d54 3121 BFD_ASSERT (!unit->cached);
c955f9cd
JW
3122
3123 if (func->tag == DW_TAG_inlined_subroutine)
52a93b95
AM
3124 for (i = nesting_level; i-- != 0; )
3125 if (nested_funcs[i].func)
c955f9cd 3126 {
52a93b95 3127 func->caller_func = nested_funcs[i].func;
c955f9cd
JW
3128 break;
3129 }
52a93b95 3130 nested_funcs[nesting_level].func = func;
252b5132
RH
3131 }
3132 else
5420f73d
L
3133 {
3134 func = NULL;
3135 if (abbrev->tag == DW_TAG_variable)
3136 {
3137 bfd_size_type amt = sizeof (struct varinfo);
a50b1753 3138 var = (struct varinfo *) bfd_zalloc (abfd, amt);
8af6b354
AM
3139 if (var == NULL)
3140 goto fail;
5420f73d
L
3141 var->tag = abbrev->tag;
3142 var->stack = 1;
3143 var->prev_var = unit->variable_table;
3144 unit->variable_table = var;
e643cb45
NC
3145 /* PR 18205: Missing debug information can cause this
3146 var to be attached to an already cached unit. */
5420f73d 3147 }
c955f9cd
JW
3148
3149 /* No inline function in scope at this nesting level. */
52a93b95 3150 nested_funcs[nesting_level].func = 0;
5420f73d 3151 }
98591c73 3152
252b5132
RH
3153 for (i = 0; i < abbrev->num_attrs; ++i)
3154 {
52a93b95
AM
3155 info_ptr = read_attribute (&attr, &abbrev->attrs[i],
3156 unit, info_ptr, info_ptr_end);
8af6b354 3157 if (info_ptr == NULL)
8ecc1f20 3158 goto fail;
98591c73 3159
252b5132
RH
3160 if (func)
3161 {
3162 switch (attr.name)
3163 {
4ab527b0 3164 case DW_AT_call_file:
8af6b354
AM
3165 func->caller_file = concat_filename (unit->line_table,
3166 attr.u.val);
4ab527b0
FF
3167 break;
3168
3169 case DW_AT_call_line:
3170 func->caller_line = attr.u.val;
3171 break;
3172
06f22d7e 3173 case DW_AT_abstract_origin:
5d8e6b4d 3174 case DW_AT_specification:
52a93b95
AM
3175 if (!find_abstract_instance_name (unit, info_ptr, &attr,
3176 &func->name,
3177 &func->is_linkage))
3178 goto fail;
06f22d7e
FF
3179 break;
3180
252b5132 3181 case DW_AT_name:
643be349
JJ
3182 /* Prefer DW_AT_MIPS_linkage_name or DW_AT_linkage_name
3183 over DW_AT_name. */
60d77146 3184 if (func->name == NULL && is_str_attr (attr.form))
e00e8198
AM
3185 {
3186 func->name = attr.u.str;
3187 if (non_mangled (unit->lang))
3188 func->is_linkage = TRUE;
3189 }
252b5132 3190 break;
98591c73 3191
643be349 3192 case DW_AT_linkage_name:
252b5132 3193 case DW_AT_MIPS_linkage_name:
60d77146
NC
3194 /* PR 16949: Corrupt debug info can place
3195 non-string forms into these attributes. */
3196 if (is_str_attr (attr.form))
e00e8198
AM
3197 {
3198 func->name = attr.u.str;
3199 func->is_linkage = TRUE;
3200 }
252b5132
RH
3201 break;
3202
3203 case DW_AT_low_pc:
a13afe8e 3204 low_pc = attr.u.val;
252b5132
RH
3205 break;
3206
3207 case DW_AT_high_pc:
a13afe8e 3208 high_pc = attr.u.val;
c49ead2f 3209 high_pc_relative = attr.form != DW_FORM_addr;
a13afe8e
FF
3210 break;
3211
3212 case DW_AT_ranges:
8af6b354
AM
3213 if (!read_rangelist (unit, &func->arange, attr.u.val))
3214 goto fail;
252b5132
RH
3215 break;
3216
5420f73d
L
3217 case DW_AT_decl_file:
3218 func->file = concat_filename (unit->line_table,
3219 attr.u.val);
3220 break;
3221
3222 case DW_AT_decl_line:
3223 func->line = attr.u.val;
3224 break;
3225
3226 default:
3227 break;
3228 }
3229 }
3230 else if (var)
3231 {
3232 switch (attr.name)
3233 {
3234 case DW_AT_name:
11855d8a
AM
3235 if (is_str_attr (attr.form))
3236 var->name = attr.u.str;
5420f73d
L
3237 break;
3238
3239 case DW_AT_decl_file:
3240 var->file = concat_filename (unit->line_table,
3241 attr.u.val);
3242 break;
3243
3244 case DW_AT_decl_line:
3245 var->line = attr.u.val;
3246 break;
3247
3248 case DW_AT_external:
3249 if (attr.u.val != 0)
3250 var->stack = 0;
3251 break;
3252
3253 case DW_AT_location:
5cf2e3f0 3254 switch (attr.form)
5420f73d 3255 {
5cf2e3f0
L
3256 case DW_FORM_block:
3257 case DW_FORM_block1:
3258 case DW_FORM_block2:
3259 case DW_FORM_block4:
c07cbdd7 3260 case DW_FORM_exprloc:
0d76029f
AM
3261 if (attr.u.blk->data != NULL
3262 && *attr.u.blk->data == DW_OP_addr)
5420f73d 3263 {
5cf2e3f0 3264 var->stack = 0;
98b880f4
JW
3265
3266 /* Verify that DW_OP_addr is the only opcode in the
3267 location, in which case the block size will be 1
3268 plus the address size. */
3269 /* ??? For TLS variables, gcc can emit
3270 DW_OP_addr <addr> DW_OP_GNU_push_tls_address
3271 which we don't handle here yet. */
3272 if (attr.u.blk->size == unit->addr_size + 1U)
3273 var->addr = bfd_get (unit->addr_size * 8,
3274 unit->abfd,
3275 attr.u.blk->data + 1);
5420f73d 3276 }
5cf2e3f0 3277 break;
d8d1c398 3278
5cf2e3f0
L
3279 default:
3280 break;
5420f73d
L
3281 }
3282 break;
3283
252b5132
RH
3284 default:
3285 break;
3286 }
3287 }
3288 }
3289
c49ead2f
MW
3290 if (high_pc_relative)
3291 high_pc += low_pc;
3292
a13afe8e
FF
3293 if (func && high_pc != 0)
3294 {
a2a50954 3295 if (!arange_add (unit, &func->arange, low_pc, high_pc))
8af6b354 3296 goto fail;
a13afe8e
FF
3297 }
3298
252b5132 3299 if (abbrev->has_children)
c955f9cd
JW
3300 {
3301 nesting_level++;
3302
3303 if (nesting_level >= nested_funcs_size)
3304 {
52a93b95 3305 struct nest_funcinfo *tmp;
c955f9cd
JW
3306
3307 nested_funcs_size *= 2;
52a93b95 3308 tmp = (struct nest_funcinfo *)
a2a50954 3309 bfd_realloc (nested_funcs,
52a93b95 3310 nested_funcs_size * sizeof (*nested_funcs));
c955f9cd 3311 if (tmp == NULL)
8af6b354 3312 goto fail;
c955f9cd
JW
3313 nested_funcs = tmp;
3314 }
52a93b95 3315 nested_funcs[nesting_level].func = 0;
c955f9cd 3316 }
252b5132
RH
3317 }
3318
c955f9cd 3319 free (nested_funcs);
b34976b6 3320 return TRUE;
8af6b354
AM
3321
3322 fail:
3323 free (nested_funcs);
3324 return FALSE;
252b5132
RH
3325}
3326
5e38c3b8
MM
3327/* Parse a DWARF2 compilation unit starting at INFO_PTR. This
3328 includes the compilation unit header that proceeds the DIE's, but
5c4491d3 3329 does not include the length field that precedes each compilation
5e38c3b8 3330 unit header. END_PTR points one past the end of this comp unit.
d03ba2a1 3331 OFFSET_SIZE is the size of DWARF2 offsets (either 4 or 8 bytes).
252b5132
RH
3332
3333 This routine does not read the whole compilation unit; only enough
3334 to get to the line number information for the compilation unit. */
3335
3336static struct comp_unit *
0d161102 3337parse_comp_unit (struct dwarf2_debug *stash,
818a27ac 3338 bfd_vma unit_length,
f075ee0c 3339 bfd_byte *info_ptr_unit,
818a27ac 3340 unsigned int offset_size)
252b5132
RH
3341{
3342 struct comp_unit* unit;
f46c2da6 3343 unsigned int version;
8ce8c090 3344 bfd_uint64_t abbrev_offset = 0;
0041f7df
JK
3345 /* Initialize it just to avoid a GCC false warning. */
3346 unsigned int addr_size = -1;
252b5132 3347 struct abbrev_info** abbrevs;
252b5132
RH
3348 unsigned int abbrev_number, bytes_read, i;
3349 struct abbrev_info *abbrev;
3350 struct attribute attr;
f075ee0c
AM
3351 bfd_byte *info_ptr = stash->info_ptr;
3352 bfd_byte *end_ptr = info_ptr + unit_length;
dc810e39 3353 bfd_size_type amt;
a13afe8e
FF
3354 bfd_vma low_pc = 0;
3355 bfd_vma high_pc = 0;
a50b1753 3356 bfd *abfd = stash->bfd_ptr;
c49ead2f 3357 bfd_boolean high_pc_relative = FALSE;
0041f7df 3358 enum dwarf_unit_type unit_type;
3fde5a36 3359
dbb3fbbb 3360 version = read_2_bytes (abfd, info_ptr, end_ptr);
252b5132 3361 info_ptr += 2;
0041f7df 3362 if (version < 2 || version > 5)
252b5132 3363 {
67f101ee
NC
3364 /* PR 19872: A version number of 0 probably means that there is padding
3365 at the end of the .debug_info section. Gold puts it there when
3366 performing an incremental link, for example. So do not generate
3367 an error, just return a NULL. */
3368 if (version)
3369 {
4eca0228 3370 _bfd_error_handler
67f101ee 3371 (_("Dwarf Error: found dwarf version '%u', this reader"
0041f7df 3372 " only handles version 2, 3, 4 and 5 information."), version);
67f101ee
NC
3373 bfd_set_error (bfd_error_bad_value);
3374 }
3375 return NULL;
252b5132
RH
3376 }
3377
0041f7df
JK
3378 if (version < 5)
3379 unit_type = DW_UT_compile;
3380 else
3381 {
3382 unit_type = read_1_byte (abfd, info_ptr, end_ptr);
3383 info_ptr += 1;
3384
3385 addr_size = read_1_byte (abfd, info_ptr, end_ptr);
3386 info_ptr += 1;
3387 }
3388
3389 BFD_ASSERT (offset_size == 4 || offset_size == 8);
3390 if (offset_size == 4)
3391 abbrev_offset = read_4_bytes (abfd, info_ptr, end_ptr);
3392 else
3393 abbrev_offset = read_8_bytes (abfd, info_ptr, end_ptr);
3394 info_ptr += offset_size;
3395
3396 if (version < 5)
3397 {
3398 addr_size = read_1_byte (abfd, info_ptr, end_ptr);
3399 info_ptr += 1;
3400 }
3401
3402 if (unit_type == DW_UT_type)
3403 {
3404 /* Skip type signature. */
3405 info_ptr += 8;
3406
3407 /* Skip type offset. */
3408 info_ptr += offset_size;
3409 }
3410
252b5132
RH
3411 if (addr_size > sizeof (bfd_vma))
3412 {
4eca0228 3413 _bfd_error_handler
695344c0 3414 /* xgettext: c-format */
a2a50954
AM
3415 (_("Dwarf Error: found address size '%u', this reader"
3416 " can not handle sizes greater than '%u'."),
3417 addr_size,
3418 (unsigned int) sizeof (bfd_vma));
252b5132 3419 bfd_set_error (bfd_error_bad_value);
67f101ee 3420 return NULL;
252b5132
RH
3421 }
3422
ecb651f0 3423 if (addr_size != 2 && addr_size != 4 && addr_size != 8)
252b5132 3424 {
4eca0228 3425 _bfd_error_handler
a2a50954
AM
3426 ("Dwarf Error: found address size '%u', this reader"
3427 " can only handle address sizes '2', '4' and '8'.", addr_size);
252b5132 3428 bfd_set_error (bfd_error_bad_value);
67f101ee 3429 return NULL;
252b5132
RH
3430 }
3431
a092b084 3432 /* Read the abbrevs for this compilation unit into a table. */
51db3708 3433 abbrevs = read_abbrevs (abfd, abbrev_offset, stash);
252b5132 3434 if (! abbrevs)
67f101ee 3435 return NULL;
252b5132 3436
4265548c
PA
3437 abbrev_number = _bfd_safe_read_leb128 (abfd, info_ptr, &bytes_read,
3438 FALSE, end_ptr);
252b5132
RH
3439 info_ptr += bytes_read;
3440 if (! abbrev_number)
3441 {
67f101ee
NC
3442 /* PR 19872: An abbrev number of 0 probably means that there is padding
3443 at the end of the .debug_abbrev section. Gold puts it there when
3444 performing an incremental link, for example. So do not generate
3445 an error, just return a NULL. */
3446 return NULL;
252b5132
RH
3447 }
3448
3449 abbrev = lookup_abbrev (abbrev_number, abbrevs);
3450 if (! abbrev)
3451 {
4eca0228
AM
3452 _bfd_error_handler (_("Dwarf Error: Could not find abbrev number %u."),
3453 abbrev_number);
252b5132 3454 bfd_set_error (bfd_error_bad_value);
67f101ee 3455 return NULL;
252b5132 3456 }
98591c73 3457
dc810e39 3458 amt = sizeof (struct comp_unit);
a50b1753 3459 unit = (struct comp_unit *) bfd_zalloc (abfd, amt);
8af6b354
AM
3460 if (unit == NULL)
3461 return NULL;
252b5132 3462 unit->abfd = abfd;
5609a71e 3463 unit->version = version;
98591c73 3464 unit->addr_size = addr_size;
d03ba2a1 3465 unit->offset_size = offset_size;
252b5132
RH
3466 unit->abbrevs = abbrevs;
3467 unit->end_ptr = end_ptr;
d03ba2a1 3468 unit->stash = stash;
c0c28ab8 3469 unit->info_ptr_unit = info_ptr_unit;
252b5132
RH
3470
3471 for (i = 0; i < abbrev->num_attrs; ++i)
3472 {
dbb3fbbb 3473 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr, end_ptr);
8af6b354
AM
3474 if (info_ptr == NULL)
3475 return NULL;
252b5132
RH
3476
3477 /* Store the data if it is of an attribute we want to keep in a
3478 partial symbol table. */
3479 switch (attr.name)
3480 {
3481 case DW_AT_stmt_list:
3482 unit->stmtlist = 1;
482e2e37 3483 unit->line_offset = attr.u.val;
252b5132
RH
3484 break;
3485
3486 case DW_AT_name:
11855d8a
AM
3487 if (is_str_attr (attr.form))
3488 unit->name = attr.u.str;
252b5132
RH
3489 break;
3490
3491 case DW_AT_low_pc:
a13afe8e
FF
3492 low_pc = attr.u.val;
3493 /* If the compilation unit DIE has a DW_AT_low_pc attribute,
3494 this is the base address to use when reading location
089e3718 3495 lists or range lists. */
a2a50954
AM
3496 if (abbrev->tag == DW_TAG_compile_unit)
3497 unit->base_address = low_pc;
252b5132
RH
3498 break;
3499
3500 case DW_AT_high_pc:
a13afe8e 3501 high_pc = attr.u.val;
c49ead2f 3502 high_pc_relative = attr.form != DW_FORM_addr;
a13afe8e
FF
3503 break;
3504
3505 case DW_AT_ranges:
8af6b354
AM
3506 if (!read_rangelist (unit, &unit->arange, attr.u.val))
3507 return NULL;
252b5132
RH
3508 break;
3509
3510 case DW_AT_comp_dir:
3511 {
f075ee0c 3512 char *comp_dir = attr.u.str;
877a8638
NC
3513
3514 /* PR 17512: file: 1fe726be. */
3515 if (! is_str_attr (attr.form))
3516 {
4eca0228 3517 _bfd_error_handler
877a8638
NC
3518 (_("Dwarf Error: DW_AT_comp_dir attribute encountered with a non-string form."));
3519 comp_dir = NULL;
3520 }
3521
252b5132
RH
3522 if (comp_dir)
3523 {
3524 /* Irix 6.2 native cc prepends <machine>.: to the compilation
3525 directory, get rid of it. */
818a27ac 3526 char *cp = strchr (comp_dir, ':');
252b5132
RH
3527
3528 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
3529 comp_dir = cp + 1;
3530 }
3531 unit->comp_dir = comp_dir;
3532 break;
3533 }
3534
e00e8198
AM
3535 case DW_AT_language:
3536 unit->lang = attr.u.val;
3537 break;
3538
252b5132
RH
3539 default:
3540 break;
3541 }
3542 }
c49ead2f
MW
3543 if (high_pc_relative)
3544 high_pc += low_pc;
a13afe8e 3545 if (high_pc != 0)
709d67f1 3546 {
a2a50954 3547 if (!arange_add (unit, &unit->arange, low_pc, high_pc))
8af6b354 3548 return NULL;
709d67f1 3549 }
252b5132
RH
3550
3551 unit->first_child_die_ptr = info_ptr;
3552 return unit;
3553}
3554
6dd55cb7
L
3555/* Return TRUE if UNIT may contain the address given by ADDR. When
3556 there are functions written entirely with inline asm statements, the
3557 range info in the compilation unit header may not be correct. We
3558 need to consult the line info table to see if a compilation unit
3559 really contains the given address. */
252b5132 3560
b34976b6 3561static bfd_boolean
818a27ac 3562comp_unit_contains_address (struct comp_unit *unit, bfd_vma addr)
252b5132 3563{
709d67f1
AM
3564 struct arange *arange;
3565
3566 if (unit->error)
3567 return FALSE;
3568
3569 arange = &unit->arange;
3570 do
3571 {
3572 if (addr >= arange->low && addr < arange->high)
3573 return TRUE;
3574 arange = arange->next;
3575 }
3576 while (arange);
3577
3578 return FALSE;
252b5132
RH
3579}
3580
252b5132
RH
3581/* If UNIT contains ADDR, set the output parameters to the values for
3582 the line containing ADDR. The output parameters, FILENAME_PTR,
e00e8198 3583 FUNCTION_PTR, and LINENUMBER_PTR, are pointers to the objects
98591c73 3584 to be filled in.
252b5132 3585
240d6706
NC
3586 Returns the range of addresses covered by the entry that was used
3587 to fill in *LINENUMBER_PTR or 0 if it was not filled in. */
252b5132 3588
240d6706 3589static bfd_vma
818a27ac
AM
3590comp_unit_find_nearest_line (struct comp_unit *unit,
3591 bfd_vma addr,
3592 const char **filename_ptr,
e00e8198 3593 struct funcinfo **function_ptr,
818a27ac 3594 unsigned int *linenumber_ptr,
9b8d1a36 3595 unsigned int *discriminator_ptr,
818a27ac 3596 struct dwarf2_debug *stash)
252b5132 3597{
b34976b6 3598 bfd_boolean func_p;
98591c73 3599
252b5132 3600 if (unit->error)
b34976b6 3601 return FALSE;
252b5132
RH
3602
3603 if (! unit->line_table)
3604 {
3605 if (! unit->stmtlist)
3606 {
3607 unit->error = 1;
b34976b6 3608 return FALSE;
252b5132 3609 }
98591c73 3610
51db3708 3611 unit->line_table = decode_line_info (unit, stash);
252b5132
RH
3612
3613 if (! unit->line_table)
3614 {
3615 unit->error = 1;
b34976b6 3616 return FALSE;
252b5132 3617 }
98591c73 3618
3f5864e1 3619 if (unit->first_child_die_ptr < unit->end_ptr
5420f73d 3620 && ! scan_unit_for_symbols (unit))
252b5132
RH
3621 {
3622 unit->error = 1;
b34976b6 3623 return FALSE;
252b5132
RH
3624 }
3625 }
3626
e00e8198
AM
3627 *function_ptr = NULL;
3628 func_p = lookup_address_in_function_table (unit, addr, function_ptr);
3629 if (func_p && (*function_ptr)->tag == DW_TAG_inlined_subroutine)
3630 stash->inliner_chain = *function_ptr;
240d6706
NC
3631
3632 return lookup_address_in_line_info_table (unit->line_table, addr,
3633 filename_ptr,
3634 linenumber_ptr,
3635 discriminator_ptr);
252b5132
RH
3636}
3637
bd210d54
NC
3638/* Check to see if line info is already decoded in a comp_unit.
3639 If not, decode it. Returns TRUE if no errors were encountered;
5420f73d
L
3640 FALSE otherwise. */
3641
3642static bfd_boolean
bd210d54
NC
3643comp_unit_maybe_decode_line_info (struct comp_unit *unit,
3644 struct dwarf2_debug *stash)
5420f73d
L
3645{
3646 if (unit->error)
3647 return FALSE;
3648
3649 if (! unit->line_table)
3650 {
3651 if (! unit->stmtlist)
3652 {
3653 unit->error = 1;
3654 return FALSE;
3655 }
3656
3657 unit->line_table = decode_line_info (unit, stash);
3658
3659 if (! unit->line_table)
3660 {
3661 unit->error = 1;
3662 return FALSE;
3663 }
3664
3665 if (unit->first_child_die_ptr < unit->end_ptr
3666 && ! scan_unit_for_symbols (unit))
3667 {
3668 unit->error = 1;
3669 return FALSE;
3670 }
3671 }
3672
bd210d54
NC
3673 return TRUE;
3674}
3675
3676/* If UNIT contains SYM at ADDR, set the output parameters to the
3677 values for the line containing SYM. The output parameters,
3678 FILENAME_PTR, and LINENUMBER_PTR, are pointers to the objects to be
3679 filled in.
3680
3681 Return TRUE if UNIT contains SYM, and no errors were encountered;
3682 FALSE otherwise. */
3683
3684static bfd_boolean
3685comp_unit_find_line (struct comp_unit *unit,
3686 asymbol *sym,
3687 bfd_vma addr,
3688 const char **filename_ptr,
3689 unsigned int *linenumber_ptr,
3690 struct dwarf2_debug *stash)
3691{
3692 if (!comp_unit_maybe_decode_line_info (unit, stash))
3693 return FALSE;
3694
5420f73d
L
3695 if (sym->flags & BSF_FUNCTION)
3696 return lookup_symbol_in_function_table (unit, sym, addr,
3697 filename_ptr,
3698 linenumber_ptr);
bd210d54
NC
3699
3700 return lookup_symbol_in_variable_table (unit, sym, addr,
3701 filename_ptr,
3702 linenumber_ptr);
3703}
3704
3705static struct funcinfo *
3706reverse_funcinfo_list (struct funcinfo *head)
3707{
3708 struct funcinfo *rhead;
3709 struct funcinfo *temp;
3710
3711 for (rhead = NULL; head; head = temp)
3712 {
3713 temp = head->prev_func;
3714 head->prev_func = rhead;
3715 rhead = head;
3716 }
3717 return rhead;
3718}
3719
3720static struct varinfo *
3721reverse_varinfo_list (struct varinfo *head)
3722{
3723 struct varinfo *rhead;
3724 struct varinfo *temp;
3725
3726 for (rhead = NULL; head; head = temp)
3727 {
3728 temp = head->prev_var;
3729 head->prev_var = rhead;
3730 rhead = head;
3731 }
3732 return rhead;
3733}
3734
3735/* Extract all interesting funcinfos and varinfos of a compilation
3736 unit into hash tables for faster lookup. Returns TRUE if no
3737 errors were enountered; FALSE otherwise. */
3738
3739static bfd_boolean
3740comp_unit_hash_info (struct dwarf2_debug *stash,
3741 struct comp_unit *unit,
3742 struct info_hash_table *funcinfo_hash_table,
3743 struct info_hash_table *varinfo_hash_table)
3744{
3745 struct funcinfo* each_func;
3746 struct varinfo* each_var;
3747 bfd_boolean okay = TRUE;
3748
3749 BFD_ASSERT (stash->info_hash_status != STASH_INFO_HASH_DISABLED);
3750
3751 if (!comp_unit_maybe_decode_line_info (unit, stash))
3752 return FALSE;
3753
3754 BFD_ASSERT (!unit->cached);
3755
3756 /* To preserve the original search order, we went to visit the function
3757 infos in the reversed order of the list. However, making the list
3758 bi-directional use quite a bit of extra memory. So we reverse
3759 the list first, traverse the list in the now reversed order and
3760 finally reverse the list again to get back the original order. */
3761 unit->function_table = reverse_funcinfo_list (unit->function_table);
3762 for (each_func = unit->function_table;
3763 each_func && okay;
3764 each_func = each_func->prev_func)
3765 {
089e3718 3766 /* Skip nameless functions. */
bd210d54
NC
3767 if (each_func->name)
3768 /* There is no need to copy name string into hash table as
3769 name string is either in the dwarf string buffer or
3770 info in the stash. */
3771 okay = insert_info_hash_table (funcinfo_hash_table, each_func->name,
3772 (void*) each_func, FALSE);
3773 }
3774 unit->function_table = reverse_funcinfo_list (unit->function_table);
3775 if (!okay)
3776 return FALSE;
3777
3778 /* We do the same for variable infos. */
3779 unit->variable_table = reverse_varinfo_list (unit->variable_table);
3780 for (each_var = unit->variable_table;
3781 each_var && okay;
3782 each_var = each_var->prev_var)
3783 {
3784 /* Skip stack vars and vars with no files or names. */
3785 if (each_var->stack == 0
3786 && each_var->file != NULL
3787 && each_var->name != NULL)
3788 /* There is no need to copy name string into hash table as
3789 name string is either in the dwarf string buffer or
3790 info in the stash. */
3791 okay = insert_info_hash_table (varinfo_hash_table, each_var->name,
3792 (void*) each_var, FALSE);
3793 }
3794
3795 unit->variable_table = reverse_varinfo_list (unit->variable_table);
3796 unit->cached = TRUE;
3797 return okay;
5420f73d
L
3798}
3799
e2f6d277
NC
3800/* Locate a section in a BFD containing debugging info. The search starts
3801 from the section after AFTER_SEC, or from the first section in the BFD if
3802 AFTER_SEC is NULL. The search works by examining the names of the
fc28f9aa
TG
3803 sections. There are three permissiable names. The first two are given
3804 by DEBUG_SECTIONS[debug_info] (whose standard DWARF2 names are .debug_info
3805 and .zdebug_info). The third is a prefix .gnu.linkonce.wi.
e2f6d277
NC
3806 This is a variation on the .debug_info section which has a checksum
3807 describing the contents appended onto the name. This allows the linker to
3808 identify and discard duplicate debugging sections for different
3809 compilation units. */
a092b084
NC
3810#define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
3811
3812static asection *
fc28f9aa 3813find_debug_info (bfd *abfd, const struct dwarf_debug_section *debug_sections,
93ee1e36 3814 asection *after_sec)
a092b084 3815{
a2a50954
AM
3816 asection *msec;
3817 const char *look;
3818
3819 if (after_sec == NULL)
3820 {
3821 look = debug_sections[debug_info].uncompressed_name;
3822 msec = bfd_get_section_by_name (abfd, look);
3823 if (msec != NULL)
3824 return msec;
a092b084 3825
a2a50954
AM
3826 look = debug_sections[debug_info].compressed_name;
3827 if (look != NULL)
3828 {
3829 msec = bfd_get_section_by_name (abfd, look);
3830 if (msec != NULL)
3831 return msec;
3832 }
a092b084 3833
a2a50954
AM
3834 for (msec = abfd->sections; msec != NULL; msec = msec->next)
3835 if (CONST_STRNEQ (msec->name, GNU_LINKONCE_INFO))
3836 return msec;
3837
3838 return NULL;
3839 }
3840
3841 for (msec = after_sec->next; msec != NULL; msec = msec->next)
a092b084 3842 {
a2a50954
AM
3843 look = debug_sections[debug_info].uncompressed_name;
3844 if (strcmp (msec->name, look) == 0)
a092b084
NC
3845 return msec;
3846
a2a50954
AM
3847 look = debug_sections[debug_info].compressed_name;
3848 if (look != NULL && strcmp (msec->name, look) == 0)
1b315056
CS
3849 return msec;
3850
0112cd26 3851 if (CONST_STRNEQ (msec->name, GNU_LINKONCE_INFO))
a092b084 3852 return msec;
a092b084
NC
3853 }
3854
3855 return NULL;
3856}
3857
93ee1e36
AM
3858/* Transfer VMAs from object file to separate debug file. */
3859
3860static void
3861set_debug_vma (bfd *orig_bfd, bfd *debug_bfd)
3862{
3863 asection *s, *d;
3864
3865 for (s = orig_bfd->sections, d = debug_bfd->sections;
3866 s != NULL && d != NULL;
3867 s = s->next, d = d->next)
3868 {
3869 if ((d->flags & SEC_DEBUGGING) != 0)
3870 break;
3871 /* ??? Assumes 1-1 correspondence between sections in the
3872 two files. */
3873 if (strcmp (s->name, d->name) == 0)
3874 {
3875 d->output_section = s->output_section;
3876 d->output_offset = s->output_offset;
3877 d->vma = s->vma;
3878 }
3879 }
3880}
3881
5609a71e 3882/* Unset vmas for adjusted sections in STASH. */
d4c32a81
L
3883
3884static void
3885unset_sections (struct dwarf2_debug *stash)
3886{
93ee1e36 3887 int i;
5609a71e 3888 struct adjusted_section *p;
d4c32a81 3889
5609a71e
DJ
3890 i = stash->adjusted_section_count;
3891 p = stash->adjusted_sections;
d4c32a81
L
3892 for (; i > 0; i--, p++)
3893 p->section->vma = 0;
3894}
3895
93ee1e36
AM
3896/* Set VMAs for allocated and .debug_info sections in ORIG_BFD, a
3897 relocatable object file. VMAs are normally all zero in relocatable
3898 object files, so if we want to distinguish locations in sections by
3899 address we need to set VMAs so the sections do not overlap. We
3900 also set VMA on .debug_info so that when we have multiple
3901 .debug_info sections (or the linkonce variant) they also do not
3902 overlap. The multiple .debug_info sections make up a single
3903 logical section. ??? We should probably do the same for other
3904 debug sections. */
35ccda9e
L
3905
3906static bfd_boolean
93ee1e36 3907place_sections (bfd *orig_bfd, struct dwarf2_debug *stash)
35ccda9e 3908{
93ee1e36 3909 bfd *abfd;
5609a71e 3910 struct adjusted_section *p;
93ee1e36
AM
3911 int i;
3912 const char *debug_info_name;
d4c32a81 3913
5609a71e 3914 if (stash->adjusted_section_count != 0)
35ccda9e 3915 {
5609a71e
DJ
3916 i = stash->adjusted_section_count;
3917 p = stash->adjusted_sections;
d4c32a81
L
3918 for (; i > 0; i--, p++)
3919 p->section->vma = p->adj_vma;
93ee1e36 3920 return TRUE;
d4c32a81 3921 }
93ee1e36
AM
3922
3923 debug_info_name = stash->debug_sections[debug_info].uncompressed_name;
3924 i = 0;
3925 abfd = orig_bfd;
3926 while (1)
d4c32a81
L
3927 {
3928 asection *sect;
35ccda9e 3929
d4c32a81 3930 for (sect = abfd->sections; sect != NULL; sect = sect->next)
35ccda9e 3931 {
5609a71e
DJ
3932 int is_debug_info;
3933
cd0449ab 3934 if ((sect->output_section != NULL
93ee1e36
AM
3935 && sect->output_section != sect
3936 && (sect->flags & SEC_DEBUGGING) == 0)
cd0449ab 3937 || sect->vma != 0)
5609a71e
DJ
3938 continue;
3939
93ee1e36
AM
3940 is_debug_info = (strcmp (sect->name, debug_info_name) == 0
3941 || CONST_STRNEQ (sect->name, GNU_LINKONCE_INFO));
d4c32a81 3942
93ee1e36
AM
3943 if (!((sect->flags & SEC_ALLOC) != 0 && abfd == orig_bfd)
3944 && !is_debug_info)
d4c32a81
L
3945 continue;
3946
3947 i++;
3948 }
93ee1e36
AM
3949 if (abfd == stash->bfd_ptr)
3950 break;
3951 abfd = stash->bfd_ptr;
3952 }
3953
3954 if (i <= 1)
3955 stash->adjusted_section_count = -1;
3956 else
3957 {
3958 bfd_vma last_vma = 0, last_dwarf = 0;
3959 bfd_size_type amt = i * sizeof (struct adjusted_section);
d4c32a81 3960
93ee1e36
AM
3961 p = (struct adjusted_section *) bfd_malloc (amt);
3962 if (p == NULL)
d4c32a81
L
3963 return FALSE;
3964
5609a71e
DJ
3965 stash->adjusted_sections = p;
3966 stash->adjusted_section_count = i;
d4c32a81 3967
93ee1e36
AM
3968 abfd = orig_bfd;
3969 while (1)
d4c32a81 3970 {
93ee1e36 3971 asection *sect;
d4c32a81 3972
93ee1e36
AM
3973 for (sect = abfd->sections; sect != NULL; sect = sect->next)
3974 {
3975 bfd_size_type sz;
3976 int is_debug_info;
5609a71e 3977
93ee1e36
AM
3978 if ((sect->output_section != NULL
3979 && sect->output_section != sect
3980 && (sect->flags & SEC_DEBUGGING) == 0)
3981 || sect->vma != 0)
3982 continue;
5609a71e 3983
93ee1e36
AM
3984 is_debug_info = (strcmp (sect->name, debug_info_name) == 0
3985 || CONST_STRNEQ (sect->name, GNU_LINKONCE_INFO));
d4c32a81 3986
93ee1e36
AM
3987 if (!((sect->flags & SEC_ALLOC) != 0 && abfd == orig_bfd)
3988 && !is_debug_info)
3989 continue;
d4c32a81 3990
93ee1e36 3991 sz = sect->rawsize ? sect->rawsize : sect->size;
5609a71e 3992
93ee1e36
AM
3993 if (is_debug_info)
3994 {
3995 BFD_ASSERT (sect->alignment_power == 0);
3996 sect->vma = last_dwarf;
3997 last_dwarf += sz;
3998 }
3999 else
4000 {
4001 /* Align the new address to the current section
4002 alignment. */
4003 last_vma = ((last_vma
29f628db
DV
4004 + ~(-((bfd_vma) 1 << sect->alignment_power)))
4005 & (-((bfd_vma) 1 << sect->alignment_power)));
93ee1e36
AM
4006 sect->vma = last_vma;
4007 last_vma += sz;
4008 }
d4c32a81 4009
93ee1e36
AM
4010 p->section = sect;
4011 p->adj_vma = sect->vma;
4012 p++;
4013 }
4014 if (abfd == stash->bfd_ptr)
4015 break;
4016 abfd = stash->bfd_ptr;
35ccda9e
L
4017 }
4018 }
4019
93ee1e36
AM
4020 if (orig_bfd != stash->bfd_ptr)
4021 set_debug_vma (orig_bfd, stash->bfd_ptr);
4022
35ccda9e
L
4023 return TRUE;
4024}
4025
bd210d54
NC
4026/* Look up a funcinfo by name using the given info hash table. If found,
4027 also update the locations pointed to by filename_ptr and linenumber_ptr.
4028
4029 This function returns TRUE if a funcinfo that matches the given symbol
4030 and address is found with any error; otherwise it returns FALSE. */
4031
4032static bfd_boolean
4033info_hash_lookup_funcinfo (struct info_hash_table *hash_table,
4034 asymbol *sym,
4035 bfd_vma addr,
4036 const char **filename_ptr,
4037 unsigned int *linenumber_ptr)
4038{
4039 struct funcinfo* each_func;
4040 struct funcinfo* best_fit = NULL;
4ba3b326 4041 bfd_vma best_fit_len = 0;
bd210d54
NC
4042 struct info_list_node *node;
4043 struct arange *arange;
4044 const char *name = bfd_asymbol_name (sym);
4045 asection *sec = bfd_get_section (sym);
4046
4047 for (node = lookup_info_hash_table (hash_table, name);
4048 node;
4049 node = node->next)
4050 {
a50b1753 4051 each_func = (struct funcinfo *) node->info;
bd210d54
NC
4052 for (arange = &each_func->arange;
4053 arange;
4054 arange = arange->next)
4055 {
4056 if ((!each_func->sec || each_func->sec == sec)
4057 && addr >= arange->low
4058 && addr < arange->high
4059 && (!best_fit
4ba3b326
TG
4060 || arange->high - arange->low < best_fit_len))
4061 {
4062 best_fit = each_func;
4063 best_fit_len = arange->high - arange->low;
4064 }
bd210d54
NC
4065 }
4066 }
4067
4068 if (best_fit)
4069 {
4070 best_fit->sec = sec;
4071 *filename_ptr = best_fit->file;
4072 *linenumber_ptr = best_fit->line;
4073 return TRUE;
4074 }
4075
4076 return FALSE;
4077}
4078
4079/* Look up a varinfo by name using the given info hash table. If found,
4080 also update the locations pointed to by filename_ptr and linenumber_ptr.
4081
4082 This function returns TRUE if a varinfo that matches the given symbol
4083 and address is found with any error; otherwise it returns FALSE. */
4084
4085static bfd_boolean
4086info_hash_lookup_varinfo (struct info_hash_table *hash_table,
4087 asymbol *sym,
4088 bfd_vma addr,
4089 const char **filename_ptr,
4090 unsigned int *linenumber_ptr)
4091{
4092 const char *name = bfd_asymbol_name (sym);
4093 asection *sec = bfd_get_section (sym);
4094 struct varinfo* each;
4095 struct info_list_node *node;
4096
4097 for (node = lookup_info_hash_table (hash_table, name);
4098 node;
4099 node = node->next)
4100 {
a50b1753 4101 each = (struct varinfo *) node->info;
bd210d54
NC
4102 if (each->addr == addr
4103 && (!each->sec || each->sec == sec))
4104 {
4105 each->sec = sec;
4106 *filename_ptr = each->file;
4107 *linenumber_ptr = each->line;
4108 return TRUE;
4109 }
4110 }
4111
4112 return FALSE;
4113}
4114
4115/* Update the funcinfo and varinfo info hash tables if they are
4116 not up to date. Returns TRUE if there is no error; otherwise
4117 returns FALSE and disable the info hash tables. */
4118
4119static bfd_boolean
4120stash_maybe_update_info_hash_tables (struct dwarf2_debug *stash)
4121{
4122 struct comp_unit *each;
4123
4124 /* Exit if hash tables are up-to-date. */
4125 if (stash->all_comp_units == stash->hash_units_head)
4126 return TRUE;
4127
4128 if (stash->hash_units_head)
4129 each = stash->hash_units_head->prev_unit;
4130 else
4131 each = stash->last_comp_unit;
4132
4133 while (each)
4134 {
4135 if (!comp_unit_hash_info (stash, each, stash->funcinfo_hash_table,
4136 stash->varinfo_hash_table))
4137 {
4138 stash->info_hash_status = STASH_INFO_HASH_DISABLED;
4139 return FALSE;
4140 }
4141 each = each->prev_unit;
4142 }
4143
4144 stash->hash_units_head = stash->all_comp_units;
4145 return TRUE;
4146}
4147
089e3718 4148/* Check consistency of info hash tables. This is for debugging only. */
bd210d54
NC
4149
4150static void ATTRIBUTE_UNUSED
4151stash_verify_info_hash_table (struct dwarf2_debug *stash)
4152{
4153 struct comp_unit *each_unit;
4154 struct funcinfo *each_func;
4155 struct varinfo *each_var;
4156 struct info_list_node *node;
4157 bfd_boolean found;
4158
4159 for (each_unit = stash->all_comp_units;
4160 each_unit;
4161 each_unit = each_unit->next_unit)
4162 {
4163 for (each_func = each_unit->function_table;
4164 each_func;
4165 each_func = each_func->prev_func)
4166 {
4167 if (!each_func->name)
4168 continue;
4169 node = lookup_info_hash_table (stash->funcinfo_hash_table,
4170 each_func->name);
4171 BFD_ASSERT (node);
4172 found = FALSE;
4173 while (node && !found)
4174 {
4175 found = node->info == each_func;
4176 node = node->next;
4177 }
4178 BFD_ASSERT (found);
4179 }
4180
4181 for (each_var = each_unit->variable_table;
4182 each_var;
4183 each_var = each_var->prev_var)
4184 {
4185 if (!each_var->name || !each_var->file || each_var->stack)
4186 continue;
4187 node = lookup_info_hash_table (stash->varinfo_hash_table,
4188 each_var->name);
4189 BFD_ASSERT (node);
4190 found = FALSE;
4191 while (node && !found)
4192 {
4193 found = node->info == each_var;
4194 node = node->next;
4195 }
4196 BFD_ASSERT (found);
4197 }
4198 }
4199}
4200
4201/* Check to see if we want to enable the info hash tables, which consume
4202 quite a bit of memory. Currently we only check the number times
4203 bfd_dwarf2_find_line is called. In the future, we may also want to
4204 take the number of symbols into account. */
4205
4206static void
4207stash_maybe_enable_info_hash_tables (bfd *abfd, struct dwarf2_debug *stash)
4208{
4209 BFD_ASSERT (stash->info_hash_status == STASH_INFO_HASH_OFF);
4210
4211 if (stash->info_hash_count++ < STASH_INFO_HASH_TRIGGER)
4212 return;
4213
4214 /* FIXME: Maybe we should check the reduce_memory_overheads
4215 and optimize fields in the bfd_link_info structure ? */
4216
4217 /* Create hash tables. */
4218 stash->funcinfo_hash_table = create_info_hash_table (abfd);
4219 stash->varinfo_hash_table = create_info_hash_table (abfd);
4220 if (!stash->funcinfo_hash_table || !stash->varinfo_hash_table)
4221 {
4222 /* Turn off info hashes if any allocation above fails. */
4223 stash->info_hash_status = STASH_INFO_HASH_DISABLED;
4224 return;
4225 }
4226 /* We need a forced update so that the info hash tables will
4227 be created even though there is no compilation unit. That
4228 happens if STASH_INFO_HASH_TRIGGER is 0. */
4229 stash_maybe_update_info_hash_tables (stash);
4230 stash->info_hash_status = STASH_INFO_HASH_ON;
4231}
4232
4233/* Find the file and line associated with a symbol and address using the
4234 info hash tables of a stash. If there is a match, the function returns
4235 TRUE and update the locations pointed to by filename_ptr and linenumber_ptr;
4236 otherwise it returns FALSE. */
4237
4238static bfd_boolean
4239stash_find_line_fast (struct dwarf2_debug *stash,
4240 asymbol *sym,
4241 bfd_vma addr,
4242 const char **filename_ptr,
4243 unsigned int *linenumber_ptr)
4244{
4245 BFD_ASSERT (stash->info_hash_status == STASH_INFO_HASH_ON);
4246
4247 if (sym->flags & BSF_FUNCTION)
4248 return info_hash_lookup_funcinfo (stash->funcinfo_hash_table, sym, addr,
4249 filename_ptr, linenumber_ptr);
4250 return info_hash_lookup_varinfo (stash->varinfo_hash_table, sym, addr,
4251 filename_ptr, linenumber_ptr);
4252}
4253
cd0449ab
AM
4254/* Save current section VMAs. */
4255
4256static bfd_boolean
4257save_section_vma (const bfd *abfd, struct dwarf2_debug *stash)
4258{
4259 asection *s;
4260 unsigned int i;
4261
4262 if (abfd->section_count == 0)
4263 return TRUE;
4264 stash->sec_vma = bfd_malloc (sizeof (*stash->sec_vma) * abfd->section_count);
4265 if (stash->sec_vma == NULL)
4266 return FALSE;
4267 for (i = 0, s = abfd->sections; i < abfd->section_count; i++, s = s->next)
4268 {
4269 if (s->output_section != NULL)
4270 stash->sec_vma[i] = s->output_section->vma + s->output_offset;
4271 else
4272 stash->sec_vma[i] = s->vma;
4273 }
4274 return TRUE;
4275}
4276
4277/* Compare current section VMAs against those at the time the stash
4278 was created. If find_nearest_line is used in linker warnings or
4279 errors early in the link process, the debug info stash will be
4280 invalid for later calls. This is because we relocate debug info
4281 sections, so the stashed section contents depend on symbol values,
4282 which in turn depend on section VMAs. */
4283
4284static bfd_boolean
4285section_vma_same (const bfd *abfd, const struct dwarf2_debug *stash)
4286{
4287 asection *s;
4288 unsigned int i;
4289
4290 for (i = 0, s = abfd->sections; i < abfd->section_count; i++, s = s->next)
4291 {
4292 bfd_vma vma;
4293
4294 if (s->output_section != NULL)
4295 vma = s->output_section->vma + s->output_offset;
4296 else
4297 vma = s->vma;
4298 if (vma != stash->sec_vma[i])
4299 return FALSE;
4300 }
4301 return TRUE;
4302}
4303
2ca7691a
TG
4304/* Read debug information from DEBUG_BFD when DEBUG_BFD is specified.
4305 If DEBUG_BFD is not specified, we read debug information from ABFD
4306 or its gnu_debuglink. The results will be stored in PINFO.
4307 The function returns TRUE iff debug information is ready. */
4308
4309bfd_boolean
4310_bfd_dwarf2_slurp_debug_info (bfd *abfd, bfd *debug_bfd,
93ee1e36
AM
4311 const struct dwarf_debug_section *debug_sections,
4312 asymbol **symbols,
4313 void **pinfo,
4314 bfd_boolean do_place)
2ca7691a
TG
4315{
4316 bfd_size_type amt = sizeof (struct dwarf2_debug);
4317 bfd_size_type total_size;
4318 asection *msec;
4319 struct dwarf2_debug *stash = (struct dwarf2_debug *) *pinfo;
4320
4321 if (stash != NULL)
cd0449ab 4322 {
90ed9b8b
AB
4323 if (stash->orig_bfd == abfd
4324 && section_vma_same (abfd, stash))
4325 {
4326 /* Check that we did previously find some debug information
4327 before attempting to make use of it. */
4328 if (stash->bfd_ptr != NULL)
4329 {
4330 if (do_place && !place_sections (abfd, stash))
4331 return FALSE;
4332 return TRUE;
4333 }
4334
4335 return FALSE;
4336 }
cd0449ab
AM
4337 _bfd_dwarf2_cleanup_debug_info (abfd, pinfo);
4338 memset (stash, 0, amt);
4339 }
4340 else
4341 {
4342 stash = (struct dwarf2_debug *) bfd_zalloc (abfd, amt);
4343 if (! stash)
4344 return FALSE;
4345 }
90ed9b8b 4346 stash->orig_bfd = abfd;
2ca7691a 4347 stash->debug_sections = debug_sections;
1c37913d 4348 stash->syms = symbols;
cd0449ab
AM
4349 if (!save_section_vma (abfd, stash))
4350 return FALSE;
2ca7691a
TG
4351
4352 *pinfo = stash;
4353
4354 if (debug_bfd == NULL)
4355 debug_bfd = abfd;
4356
4357 msec = find_debug_info (debug_bfd, debug_sections, NULL);
4358 if (msec == NULL && abfd == debug_bfd)
4359 {
2425a30e
NC
4360 char * debug_filename;
4361
4362 debug_filename = bfd_follow_build_id_debuglink (abfd, DEBUGDIR);
4363 if (debug_filename == NULL)
4364 debug_filename = bfd_follow_gnu_debuglink (abfd, DEBUGDIR);
2ca7691a
TG
4365
4366 if (debug_filename == NULL)
4367 /* No dwarf2 info, and no gnu_debuglink to follow.
4368 Note that at this point the stash has been allocated, but
4369 contains zeros. This lets future calls to this function
4370 fail more quickly. */
4371 return FALSE;
4372
bf150a0b 4373 /* Set BFD_DECOMPRESS to decompress debug sections. */
2ca7691a 4374 if ((debug_bfd = bfd_openr (debug_filename, NULL)) == NULL
bf150a0b
L
4375 || !(debug_bfd->flags |= BFD_DECOMPRESS,
4376 bfd_check_format (debug_bfd, bfd_object))
2ca7691a 4377 || (msec = find_debug_info (debug_bfd,
93ee1e36
AM
4378 debug_sections, NULL)) == NULL
4379 || !bfd_generic_link_read_symbols (debug_bfd))
2ca7691a
TG
4380 {
4381 if (debug_bfd)
4382 bfd_close (debug_bfd);
4383 /* FIXME: Should we report our failure to follow the debuglink ? */
4384 free (debug_filename);
4385 return FALSE;
4386 }
93ee1e36
AM
4387
4388 symbols = bfd_get_outsymbols (debug_bfd);
4389 stash->syms = symbols;
1c37913d 4390 stash->close_on_cleanup = TRUE;
2ca7691a 4391 }
1c37913d 4392 stash->bfd_ptr = debug_bfd;
2ca7691a 4393
93ee1e36
AM
4394 if (do_place
4395 && !place_sections (abfd, stash))
4396 return FALSE;
4397
2ca7691a
TG
4398 /* There can be more than one DWARF2 info section in a BFD these
4399 days. First handle the easy case when there's only one. If
4400 there's more than one, try case two: none of the sections is
4401 compressed. In that case, read them all in and produce one
4402 large stash. We do this in two passes - in the first pass we
4403 just accumulate the section sizes, and in the second pass we
4404 read in the section's contents. (The allows us to avoid
4405 reallocing the data as we add sections to the stash.) If
4406 some or all sections are compressed, then do things the slow
4407 way, with a bunch of reallocs. */
4408
4409 if (! find_debug_info (debug_bfd, debug_sections, msec))
4410 {
4411 /* Case 1: only one info section. */
4412 total_size = msec->size;
4413 if (! read_section (debug_bfd, &stash->debug_sections[debug_info],
4414 symbols, 0,
4415 &stash->info_ptr_memory, &total_size))
4416 return FALSE;
4417 }
4418 else
4419 {
4420 /* Case 2: multiple sections. */
4421 for (total_size = 0;
4422 msec;
4423 msec = find_debug_info (debug_bfd, debug_sections, msec))
4424 total_size += msec->size;
4425
4426 stash->info_ptr_memory = (bfd_byte *) bfd_malloc (total_size);
4427 if (stash->info_ptr_memory == NULL)
4428 return FALSE;
4429
4430 total_size = 0;
4431 for (msec = find_debug_info (debug_bfd, debug_sections, NULL);
4432 msec;
4433 msec = find_debug_info (debug_bfd, debug_sections, msec))
4434 {
4435 bfd_size_type size;
4436
4437 size = msec->size;
4438 if (size == 0)
4439 continue;
4440
4441 if (!(bfd_simple_get_relocated_section_contents
4442 (debug_bfd, msec, stash->info_ptr_memory + total_size,
4443 symbols)))
4444 return FALSE;
4445
4446 total_size += size;
4447 }
4448 }
4449
4450 stash->info_ptr = stash->info_ptr_memory;
4451 stash->info_ptr_end = stash->info_ptr + total_size;
4452 stash->sec = find_debug_info (debug_bfd, debug_sections, NULL);
4453 stash->sec_info_ptr = stash->info_ptr;
2ca7691a
TG
4454 return TRUE;
4455}
4456
425bd9e1
NC
4457/* Scan the debug information in PINFO looking for a DW_TAG_subprogram
4458 abbrev with a DW_AT_low_pc attached to it. Then lookup that same
4459 symbol in SYMBOLS and return the difference between the low_pc and
4460 the symbol's address. Returns 0 if no suitable symbol could be found. */
4461
4462bfd_signed_vma
4463_bfd_dwarf2_find_symbol_bias (asymbol ** symbols, void ** pinfo)
4464{
4465 struct dwarf2_debug *stash;
4466 struct comp_unit * unit;
4467
4468 stash = (struct dwarf2_debug *) *pinfo;
4469
4470 if (stash == NULL)
4471 return 0;
4472
4473 for (unit = stash->all_comp_units; unit; unit = unit->next_unit)
4474 {
4475 struct funcinfo * func;
4476
4477 if (unit->function_table == NULL)
4478 {
4479 if (unit->line_table == NULL)
4480 unit->line_table = decode_line_info (unit, stash);
4481 if (unit->line_table != NULL)
4482 scan_unit_for_symbols (unit);
4483 }
4484
4485 for (func = unit->function_table; func != NULL; func = func->prev_func)
4486 if (func->name && func->arange.low)
4487 {
4488 asymbol ** psym;
4489
4490 /* FIXME: Do we need to scan the aranges looking for the lowest pc value ? */
4491
4492 for (psym = symbols; * psym != NULL; psym++)
4493 {
4494 asymbol * sym = * psym;
4495
4496 if (sym->flags & BSF_FUNCTION
4497 && sym->section != NULL
4498 && strcmp (sym->name, func->name) == 0)
4499 return ((bfd_signed_vma) func->arange.low) -
4500 ((bfd_signed_vma) (sym->value + sym->section->vma));
4501 }
4502 }
4503 }
4504
4505 return 0;
4506}
4507
bec42b15
NC
4508/* Find the source code location of SYMBOL. If SYMBOL is NULL
4509 then find the nearest source code location corresponding to
4510 the address SECTION + OFFSET.
4511 Returns TRUE if the line is found without error and fills in
4512 FILENAME_PTR and LINENUMBER_PTR. In the case where SYMBOL was
4513 NULL the FUNCTIONNAME_PTR is also filled in.
4514 SYMBOLS contains the symbol table for ABFD.
fc28f9aa 4515 DEBUG_SECTIONS contains the name of the dwarf debug sections.
bec42b15
NC
4516 ADDR_SIZE is the number of bytes in the initial .debug_info length
4517 field and in the abbreviation offset, or zero to indicate that the
4518 default value should be used. */
252b5132 4519
fb167eb2
AM
4520bfd_boolean
4521_bfd_dwarf2_find_nearest_line (bfd *abfd,
4522 asymbol **symbols,
4523 asymbol *symbol,
4524 asection *section,
4525 bfd_vma offset,
4526 const char **filename_ptr,
4527 const char **functionname_ptr,
4528 unsigned int *linenumber_ptr,
4529 unsigned int *discriminator_ptr,
4530 const struct dwarf_debug_section *debug_sections,
4531 unsigned int addr_size,
4532 void **pinfo)
252b5132
RH
4533{
4534 /* Read each compilation unit from the section .debug_info, and check
4535 to see if it contains the address we are searching for. If yes,
4536 lookup the address, and return the line number info. If no, go
98591c73 4537 on to the next compilation unit.
252b5132
RH
4538
4539 We keep a list of all the previously read compilation units, and
98591c73 4540 a pointer to the next un-read compilation unit. Check the
a092b084 4541 previously read units before reading more. */
1ba54ee0 4542 struct dwarf2_debug *stash;
a092b084 4543 /* What address are we looking for? */
1ba54ee0 4544 bfd_vma addr;
252b5132 4545 struct comp_unit* each;
e00e8198 4546 struct funcinfo *function = NULL;
240d6706 4547 bfd_boolean found = FALSE;
bec42b15 4548 bfd_boolean do_line;
d4c32a81 4549
2ca7691a
TG
4550 *filename_ptr = NULL;
4551 if (functionname_ptr != NULL)
4552 *functionname_ptr = NULL;
4553 *linenumber_ptr = 0;
f725daa8
CC
4554 if (discriminator_ptr)
4555 *discriminator_ptr = 0;
d4c32a81 4556
93ee1e36
AM
4557 if (! _bfd_dwarf2_slurp_debug_info (abfd, NULL, debug_sections,
4558 symbols, pinfo,
4559 (abfd->flags & (EXEC_P | DYNAMIC)) == 0))
2ca7691a 4560 return FALSE;
d4c32a81 4561
2ca7691a 4562 stash = (struct dwarf2_debug *) *pinfo;
d4c32a81 4563
fb167eb2 4564 do_line = symbol != NULL;
bec42b15
NC
4565 if (do_line)
4566 {
fb167eb2 4567 BFD_ASSERT (section == NULL && offset == 0 && functionname_ptr == NULL);
bec42b15 4568 section = bfd_get_section (symbol);
fb167eb2 4569 addr = symbol->value;
bec42b15 4570 }
bec42b15 4571 else
fb167eb2
AM
4572 {
4573 BFD_ASSERT (section != NULL && functionname_ptr != NULL);
4574 addr = offset;
3239a423
AB
4575
4576 /* If we have no SYMBOL but the section we're looking at is not a
4577 code section, then take a look through the list of symbols to see
4578 if we have a symbol at the address we're looking for. If we do
4579 then use this to look up line information. This will allow us to
4580 give file and line results for data symbols. We exclude code
4581 symbols here, if we look up a function symbol and then look up the
4582 line information we'll actually return the line number for the
4583 opening '{' rather than the function definition line. This is
4584 because looking up by symbol uses the line table, in which the
4585 first line for a function is usually the opening '{', while
4586 looking up the function by section + offset uses the
4587 DW_AT_decl_line from the function DW_TAG_subprogram for the line,
4588 which will be the line of the function name. */
97e83a10 4589 if (symbols != NULL && (section->flags & SEC_CODE) == 0)
3239a423
AB
4590 {
4591 asymbol **tmp;
4592
4593 for (tmp = symbols; (*tmp) != NULL; ++tmp)
4594 if ((*tmp)->the_bfd == abfd
4595 && (*tmp)->section == section
4596 && (*tmp)->value == offset
4597 && ((*tmp)->flags & BSF_SECTION_SYM) == 0)
4598 {
4599 symbol = *tmp;
4600 do_line = TRUE;
4601 /* For local symbols, keep going in the hope we find a
4602 global. */
4603 if ((symbol->flags & BSF_GLOBAL) != 0)
4604 break;
4605 }
4606 }
fb167eb2 4607 }
bec42b15 4608
1ba54ee0 4609 if (section->output_section)
6dd55cb7 4610 addr += section->output_section->vma + section->output_offset;
1ba54ee0 4611 else
6dd55cb7 4612 addr += section->vma;
a092b084 4613
98591c73 4614 /* A null info_ptr indicates that there is no dwarf2 info
a092b084 4615 (or that an error occured while setting up the stash). */
252b5132 4616 if (! stash->info_ptr)
2ca7691a 4617 return FALSE;
252b5132 4618
4ab527b0
FF
4619 stash->inliner_chain = NULL;
4620
a092b084 4621 /* Check the previously read comp. units first. */
bd210d54
NC
4622 if (do_line)
4623 {
4624 /* The info hash tables use quite a bit of memory. We may not want to
4625 always use them. We use some heuristics to decide if and when to
4626 turn it on. */
4627 if (stash->info_hash_status == STASH_INFO_HASH_OFF)
4628 stash_maybe_enable_info_hash_tables (abfd, stash);
4629
4630 /* Keep info hash table up to date if they are available. Note that we
089e3718 4631 may disable the hash tables if there is any error duing update. */
bd210d54
NC
4632 if (stash->info_hash_status == STASH_INFO_HASH_ON)
4633 stash_maybe_update_info_hash_tables (stash);
4634
4635 if (stash->info_hash_status == STASH_INFO_HASH_ON)
4636 {
4637 found = stash_find_line_fast (stash, symbol, addr, filename_ptr,
4638 linenumber_ptr);
4639 if (found)
4640 goto done;
4641 }
0d161102 4642 else
bd210d54
NC
4643 {
4644 /* Check the previously read comp. units first. */
4645 for (each = stash->all_comp_units; each; each = each->next_unit)
4646 if ((symbol->flags & BSF_FUNCTION) == 0
a2a50954 4647 || each->arange.high == 0
bd210d54
NC
4648 || comp_unit_contains_address (each, addr))
4649 {
4650 found = comp_unit_find_line (each, symbol, addr, filename_ptr,
4651 linenumber_ptr, stash);
4652 if (found)
4653 goto done;
4654 }
4655 }
4656 }
4657 else
4658 {
240d6706
NC
4659 bfd_vma min_range = (bfd_vma) -1;
4660 const char * local_filename = NULL;
e00e8198 4661 struct funcinfo *local_function = NULL;
240d6706
NC
4662 unsigned int local_linenumber = 0;
4663 unsigned int local_discriminator = 0;
96691246 4664
709d67f1
AM
4665 for (each = stash->all_comp_units; each; each = each->next_unit)
4666 {
240d6706
NC
4667 bfd_vma range = (bfd_vma) -1;
4668
a2a50954
AM
4669 found = ((each->arange.high == 0
4670 || comp_unit_contains_address (each, addr))
240d6706
NC
4671 && (range = comp_unit_find_nearest_line (each, addr,
4672 & local_filename,
e00e8198 4673 & local_function,
240d6706
NC
4674 & local_linenumber,
4675 & local_discriminator,
4676 stash)) != 0);
709d67f1 4677 if (found)
240d6706
NC
4678 {
4679 /* PRs 15935 15994: Bogus debug information may have provided us
4680 with an erroneous match. We attempt to counter this by
4681 selecting the match that has the smallest address range
4682 associated with it. (We are assuming that corrupt debug info
4683 will tend to result in extra large address ranges rather than
4684 extra small ranges).
4685
4686 This does mean that we scan through all of the CUs associated
4687 with the bfd each time this function is called. But this does
4688 have the benefit of producing consistent results every time the
4689 function is called. */
4690 if (range <= min_range)
4691 {
4692 if (filename_ptr && local_filename)
4693 * filename_ptr = local_filename;
e00e8198
AM
4694 if (local_function)
4695 function = local_function;
240d6706
NC
4696 if (discriminator_ptr && local_discriminator)
4697 * discriminator_ptr = local_discriminator;
4698 if (local_linenumber)
4699 * linenumber_ptr = local_linenumber;
4700 min_range = range;
4701 }
4702 }
4703 }
4704
4705 if (* linenumber_ptr)
4706 {
4707 found = TRUE;
4708 goto done;
709d67f1 4709 }
5420f73d
L
4710 }
4711
5420f73d
L
4712 /* The DWARF2 spec says that the initial length field, and the
4713 offset of the abbreviation table, should both be 4-byte values.
4714 However, some compilers do things differently. */
4715 if (addr_size == 0)
4716 addr_size = 4;
4717 BFD_ASSERT (addr_size == 4 || addr_size == 8);
4718
4719 /* Read each remaining comp. units checking each as they are read. */
4720 while (stash->info_ptr < stash->info_ptr_end)
4721 {
4722 bfd_vma length;
4723 unsigned int offset_size = addr_size;
4724 bfd_byte *info_ptr_unit = stash->info_ptr;
4725
dbb3fbbb 4726 length = read_4_bytes (stash->bfd_ptr, stash->info_ptr, stash->info_ptr_end);
bec42b15
NC
4727 /* A 0xffffff length is the DWARF3 way of indicating
4728 we use 64-bit offsets, instead of 32-bit offsets. */
5420f73d
L
4729 if (length == 0xffffffff)
4730 {
4731 offset_size = 8;
dbb3fbbb 4732 length = read_8_bytes (stash->bfd_ptr, stash->info_ptr + 4, stash->info_ptr_end);
5420f73d
L
4733 stash->info_ptr += 12;
4734 }
4735 /* A zero length is the IRIX way of indicating 64-bit offsets,
4736 mostly because the 64-bit length will generally fit in 32
4737 bits, and the endianness helps. */
4738 else if (length == 0)
4739 {
4740 offset_size = 8;
dbb3fbbb 4741 length = read_4_bytes (stash->bfd_ptr, stash->info_ptr + 4, stash->info_ptr_end);
5420f73d
L
4742 stash->info_ptr += 8;
4743 }
024b2372
CD
4744 /* In the absence of the hints above, we assume 32-bit DWARF2
4745 offsets even for targets with 64-bit addresses, because:
4746 a) most of the time these targets will not have generated
4747 more than 2Gb of debug info and so will not need 64-bit
4748 offsets,
4749 and
4750 b) if they do use 64-bit offsets but they are not using
4751 the size hints that are tested for above then they are
4752 not conforming to the DWARF3 standard anyway. */
5420f73d
L
4753 else if (addr_size == 8)
4754 {
024b2372 4755 offset_size = 4;
2d47a72c 4756 stash->info_ptr += 4;
5420f73d
L
4757 }
4758 else
4759 stash->info_ptr += 4;
4760
4761 if (length > 0)
4762 {
dbb3fbbb
NC
4763 bfd_byte * new_ptr;
4764
d11135f5
NC
4765 /* PR 21151 */
4766 if (stash->info_ptr + length > stash->info_ptr_end)
4767 return FALSE;
4768
0d161102 4769 each = parse_comp_unit (stash, length, info_ptr_unit,
5420f73d 4770 offset_size);
d74e4b29
NS
4771 if (!each)
4772 /* The dwarf information is damaged, don't trust it any
4773 more. */
4774 break;
5420f73d 4775
dbb3fbbb
NC
4776 new_ptr = stash->info_ptr + length;
4777 /* PR 17512: file: 1500698c. */
4778 if (new_ptr < stash->info_ptr)
4779 {
4780 /* A corrupt length value - do not trust the info any more. */
4781 found = FALSE;
4782 break;
4783 }
62f8d217 4784 else
dbb3fbbb 4785 stash->info_ptr = new_ptr;
62f8d217 4786
d74e4b29
NS
4787 if (stash->all_comp_units)
4788 stash->all_comp_units->prev_unit = each;
4789 else
4790 stash->last_comp_unit = each;
68ffbac6 4791
d74e4b29
NS
4792 each->next_unit = stash->all_comp_units;
4793 stash->all_comp_units = each;
68ffbac6 4794
d74e4b29
NS
4795 /* DW_AT_low_pc and DW_AT_high_pc are optional for
4796 compilation units. If we don't have them (i.e.,
4797 unit->high == 0), we need to consult the line info table
4798 to see if a compilation unit contains the given
4799 address. */
4800 if (do_line)
4801 found = (((symbol->flags & BSF_FUNCTION) == 0
4802 || each->arange.high == 0
4803 || comp_unit_contains_address (each, addr))
4804 && comp_unit_find_line (each, symbol, addr,
4805 filename_ptr,
4806 linenumber_ptr,
4807 stash));
4808 else
4809 found = ((each->arange.high == 0
4810 || comp_unit_contains_address (each, addr))
4811 && comp_unit_find_nearest_line (each, addr,
4812 filename_ptr,
e00e8198 4813 &function,
d74e4b29 4814 linenumber_ptr,
9b8d1a36 4815 discriminator_ptr,
fa15f18d 4816 stash) != 0);
be04437d
AM
4817
4818 if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
4819 == stash->sec->size)
4820 {
fc28f9aa 4821 stash->sec = find_debug_info (stash->bfd_ptr, debug_sections,
93ee1e36 4822 stash->sec);
be04437d
AM
4823 stash->sec_info_ptr = stash->info_ptr;
4824 }
4825
d74e4b29
NS
4826 if (found)
4827 goto done;
5420f73d
L
4828 }
4829 }
4830
a2a50954 4831 done:
e00e8198
AM
4832 if (function)
4833 {
923b198a 4834 if (!function->is_linkage)
e00e8198 4835 {
923b198a
AM
4836 asymbol *fun;
4837 bfd_vma sec_vma;
4838
4839 fun = _bfd_elf_find_function (abfd, symbols, section, offset,
4840 *filename_ptr ? NULL : filename_ptr,
4841 functionname_ptr);
4842 sec_vma = section->vma;
4843 if (section->output_section != NULL)
4844 sec_vma = section->output_section->vma + section->output_offset;
4845 if (fun != NULL
4846 && fun->value + sec_vma == function->arange.low)
4847 function->name = *functionname_ptr;
4848 /* Even if we didn't find a linkage name, say that we have
4849 to stop a repeated search of symbols. */
e00e8198
AM
4850 function->is_linkage = TRUE;
4851 }
923b198a 4852 *functionname_ptr = function->name;
e00e8198 4853 }
d4c32a81
L
4854 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
4855 unset_sections (stash);
4856
4857 return found;
5420f73d
L
4858}
4859
4ab527b0
FF
4860bfd_boolean
4861_bfd_dwarf2_find_inliner_info (bfd *abfd ATTRIBUTE_UNUSED,
4862 const char **filename_ptr,
4863 const char **functionname_ptr,
4864 unsigned int *linenumber_ptr,
4865 void **pinfo)
4866{
4867 struct dwarf2_debug *stash;
4868
a50b1753 4869 stash = (struct dwarf2_debug *) *pinfo;
4ab527b0
FF
4870 if (stash)
4871 {
4872 struct funcinfo *func = stash->inliner_chain;
bec42b15 4873
4ab527b0
FF
4874 if (func && func->caller_func)
4875 {
4876 *filename_ptr = func->caller_file;
4877 *functionname_ptr = func->caller_func->name;
4878 *linenumber_ptr = func->caller_line;
4879 stash->inliner_chain = func->caller_func;
bec42b15 4880 return TRUE;
4ab527b0
FF
4881 }
4882 }
4883
bec42b15 4884 return FALSE;
4ab527b0
FF
4885}
4886
35330cce 4887void
d9071b0c 4888_bfd_dwarf2_cleanup_debug_info (bfd *abfd, void **pinfo)
35330cce 4889{
5bb3703f 4890 struct dwarf2_debug *stash = (struct dwarf2_debug *) *pinfo;
35330cce 4891 struct comp_unit *each;
35330cce 4892
d9071b0c 4893 if (abfd == NULL || stash == NULL)
35330cce
NC
4894 return;
4895
4896 for (each = stash->all_comp_units; each; each = each->next_unit)
4897 {
34b5e0b2 4898 struct abbrev_info **abbrevs = each->abbrevs;
90b5b1a5
NC
4899 struct funcinfo *function_table = each->function_table;
4900 struct varinfo *variable_table = each->variable_table;
34b5e0b2 4901 size_t i;
35330cce 4902
34b5e0b2 4903 for (i = 0; i < ABBREV_HASH_SIZE; i++)
d8d1c398 4904 {
34b5e0b2 4905 struct abbrev_info *abbrev = abbrevs[i];
35330cce 4906
34b5e0b2 4907 while (abbrev)
d8d1c398 4908 {
34b5e0b2
NC
4909 free (abbrev->attrs);
4910 abbrev = abbrev->next;
d8d1c398
AM
4911 }
4912 }
35330cce
NC
4913
4914 if (each->line_table)
d8d1c398 4915 {
34b5e0b2
NC
4916 free (each->line_table->dirs);
4917 free (each->line_table->files);
d8d1c398 4918 }
90b5b1a5
NC
4919
4920 while (function_table)
4921 {
4922 if (function_table->file)
4923 {
4924 free (function_table->file);
4925 function_table->file = NULL;
4926 }
4927
4928 if (function_table->caller_file)
4929 {
4930 free (function_table->caller_file);
4931 function_table->caller_file = NULL;
4932 }
4933 function_table = function_table->prev_func;
4934 }
4935
089e3718
IT
4936 if (each->lookup_funcinfo_table)
4937 {
4938 free (each->lookup_funcinfo_table);
4939 each->lookup_funcinfo_table = NULL;
4940 }
4941
90b5b1a5
NC
4942 while (variable_table)
4943 {
4944 if (variable_table->file)
4945 {
4946 free (variable_table->file);
4947 variable_table->file = NULL;
4948 }
4949
4950 variable_table = variable_table->prev_var;
4951 }
35330cce
NC
4952 }
4953
5d0900eb
AM
4954 if (stash->dwarf_abbrev_buffer)
4955 free (stash->dwarf_abbrev_buffer);
4956 if (stash->dwarf_line_buffer)
4957 free (stash->dwarf_line_buffer);
4958 if (stash->dwarf_str_buffer)
4959 free (stash->dwarf_str_buffer);
0041f7df
JK
4960 if (stash->dwarf_line_str_buffer)
4961 free (stash->dwarf_line_str_buffer);
5d0900eb
AM
4962 if (stash->dwarf_ranges_buffer)
4963 free (stash->dwarf_ranges_buffer);
4964 if (stash->info_ptr_memory)
4965 free (stash->info_ptr_memory);
1c37913d
AM
4966 if (stash->close_on_cleanup)
4967 bfd_close (stash->bfd_ptr);
95e34fb4
NC
4968 if (stash->alt_dwarf_str_buffer)
4969 free (stash->alt_dwarf_str_buffer);
4970 if (stash->alt_dwarf_info_buffer)
4971 free (stash->alt_dwarf_info_buffer);
cd0449ab
AM
4972 if (stash->sec_vma)
4973 free (stash->sec_vma);
93ee1e36
AM
4974 if (stash->adjusted_sections)
4975 free (stash->adjusted_sections);
95e34fb4
NC
4976 if (stash->alt_bfd_ptr)
4977 bfd_close (stash->alt_bfd_ptr);
35330cce 4978}
e00e8198
AM
4979
4980/* Find the function to a particular section and offset,
4981 for error reporting. */
4982
923b198a 4983asymbol *
e00e8198
AM
4984_bfd_elf_find_function (bfd *abfd,
4985 asymbol **symbols,
4986 asection *section,
4987 bfd_vma offset,
4988 const char **filename_ptr,
4989 const char **functionname_ptr)
4990{
4991 struct elf_find_function_cache
4992 {
4993 asection *last_section;
4994 asymbol *func;
4995 const char *filename;
4996 bfd_size_type func_size;
4997 } *cache;
4998
4999 if (symbols == NULL)
923b198a 5000 return NULL;
e00e8198
AM
5001
5002 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
923b198a 5003 return NULL;
e00e8198
AM
5004
5005 cache = elf_tdata (abfd)->elf_find_function_cache;
5006 if (cache == NULL)
5007 {
5008 cache = bfd_zalloc (abfd, sizeof (*cache));
5009 elf_tdata (abfd)->elf_find_function_cache = cache;
5010 if (cache == NULL)
923b198a 5011 return NULL;
e00e8198
AM
5012 }
5013 if (cache->last_section != section
5014 || cache->func == NULL
5015 || offset < cache->func->value
5016 || offset >= cache->func->value + cache->func_size)
5017 {
5018 asymbol *file;
5019 bfd_vma low_func;
5020 asymbol **p;
5021 /* ??? Given multiple file symbols, it is impossible to reliably
5022 choose the right file name for global symbols. File symbols are
5023 local symbols, and thus all file symbols must sort before any
5024 global symbols. The ELF spec may be interpreted to say that a
5025 file symbol must sort before other local symbols, but currently
5026 ld -r doesn't do this. So, for ld -r output, it is possible to
5027 make a better choice of file name for local symbols by ignoring
5028 file symbols appearing after a given local symbol. */
5029 enum { nothing_seen, symbol_seen, file_after_symbol_seen } state;
5030 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
5031
5032 file = NULL;
5033 low_func = 0;
5034 state = nothing_seen;
5035 cache->filename = NULL;
5036 cache->func = NULL;
5037 cache->func_size = 0;
5038 cache->last_section = section;
5039
5040 for (p = symbols; *p != NULL; p++)
5041 {
5042 asymbol *sym = *p;
5043 bfd_vma code_off;
5044 bfd_size_type size;
5045
5046 if ((sym->flags & BSF_FILE) != 0)
5047 {
5048 file = sym;
5049 if (state == symbol_seen)
5050 state = file_after_symbol_seen;
5051 continue;
5052 }
5053
5054 size = bed->maybe_function_sym (sym, section, &code_off);
5055 if (size != 0
5056 && code_off <= offset
5057 && (code_off > low_func
5058 || (code_off == low_func
5059 && size > cache->func_size)))
5060 {
5061 cache->func = sym;
5062 cache->func_size = size;
5063 cache->filename = NULL;
5064 low_func = code_off;
5065 if (file != NULL
5066 && ((sym->flags & BSF_LOCAL) != 0
5067 || state != file_after_symbol_seen))
5068 cache->filename = bfd_asymbol_name (file);
5069 }
5070 if (state == nothing_seen)
5071 state = symbol_seen;
5072 }
5073 }
5074
5075 if (cache->func == NULL)
923b198a 5076 return NULL;
e00e8198
AM
5077
5078 if (filename_ptr)
5079 *filename_ptr = cache->filename;
5080 if (functionname_ptr)
5081 *functionname_ptr = bfd_asymbol_name (cache->func);
5082
923b198a 5083 return cache->func;
e00e8198 5084}