2005-05-25 Paolo Bonzini <bonzini@gnu.org>
[binutils.git] / bfd / dwarf2.c
blob32f0b4443d0f55f899b899b407ab56ab3f10ec0c
1 /* DWARF 2 support.
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005 Free Software Foundation, Inc.
5 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
6 (gavin@cygnus.com).
8 From the dwarf2read.c header:
9 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
10 Inc. with support from Florida State University (under contract
11 with the Ada Joint Program Office), and Silicon Graphics, Inc.
12 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
13 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
14 support in dwarfread.c
16 This file is part of BFD.
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or (at
21 your option) any later version.
23 This program is distributed in the hope that it will be useful, but
24 WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
30 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
32 #include "bfd.h"
33 #include "sysdep.h"
34 #include "libiberty.h"
35 #include "libbfd.h"
36 #include "elf-bfd.h"
37 #include "elf/dwarf2.h"
39 /* The data in the .debug_line statement prologue looks like this. */
41 struct line_head
43 bfd_vma total_length;
44 unsigned short version;
45 bfd_vma prologue_length;
46 unsigned char minimum_instruction_length;
47 unsigned char default_is_stmt;
48 int line_base;
49 unsigned char line_range;
50 unsigned char opcode_base;
51 unsigned char *standard_opcode_lengths;
54 /* Attributes have a name and a value. */
56 struct attribute
58 enum dwarf_attribute name;
59 enum dwarf_form form;
60 union
62 char *str;
63 struct dwarf_block *blk;
64 bfd_uint64_t val;
65 bfd_int64_t sval;
70 /* Blocks are a bunch of untyped bytes. */
71 struct dwarf_block
73 unsigned int size;
74 bfd_byte *data;
77 struct dwarf2_debug
79 /* A list of all previously read comp_units. */
80 struct comp_unit *all_comp_units;
82 /* The next unread compilation unit within the .debug_info section.
83 Zero indicates that the .debug_info section has not been loaded
84 into a buffer yet. */
85 bfd_byte *info_ptr;
87 /* Pointer to the end of the .debug_info section memory buffer. */
88 bfd_byte *info_ptr_end;
90 /* Pointer to the section and address of the beginning of the
91 section. */
92 asection *sec;
93 bfd_byte *sec_info_ptr;
95 /* Pointer to the symbol table. */
96 asymbol **syms;
98 /* Pointer to the .debug_abbrev section loaded into memory. */
99 bfd_byte *dwarf_abbrev_buffer;
101 /* Length of the loaded .debug_abbrev section. */
102 unsigned long dwarf_abbrev_size;
104 /* Buffer for decode_line_info. */
105 bfd_byte *dwarf_line_buffer;
107 /* Length of the loaded .debug_line section. */
108 unsigned long dwarf_line_size;
110 /* Pointer to the .debug_str section loaded into memory. */
111 bfd_byte *dwarf_str_buffer;
113 /* Length of the loaded .debug_str section. */
114 unsigned long dwarf_str_size;
116 /* Pointer to the .debug_ranges section loaded into memory. */
117 bfd_byte *dwarf_ranges_buffer;
119 /* Length of the loaded .debug_ranges section. */
120 unsigned long dwarf_ranges_size;
122 /* If the most recent call to bfd_find_nearest_line was given an
123 address in an inlined function, preserve a pointer into the
124 calling chain for subsequent calls to bfd_find_inliner_info to
125 use. */
126 struct funcinfo *inliner_chain;
129 struct arange
131 struct arange *next;
132 bfd_vma low;
133 bfd_vma high;
136 /* A minimal decoding of DWARF2 compilation units. We only decode
137 what's needed to get to the line number information. */
139 struct comp_unit
141 /* Chain the previously read compilation units. */
142 struct comp_unit *next_unit;
144 /* Keep the bdf convenient (for memory allocation). */
145 bfd *abfd;
147 /* The lowest and highest addresses contained in this compilation
148 unit as specified in the compilation unit header. */
149 struct arange arange;
151 /* The DW_AT_name attribute (for error messages). */
152 char *name;
154 /* The abbrev hash table. */
155 struct abbrev_info **abbrevs;
157 /* Note that an error was found by comp_unit_find_nearest_line. */
158 int error;
160 /* The DW_AT_comp_dir attribute. */
161 char *comp_dir;
163 /* TRUE if there is a line number table associated with this comp. unit. */
164 int stmtlist;
166 /* Pointer to the current comp_unit so that we can find a given entry
167 by its reference. */
168 bfd_byte *info_ptr_unit;
170 /* The offset into .debug_line of the line number table. */
171 unsigned long line_offset;
173 /* Pointer to the first child die for the comp unit. */
174 bfd_byte *first_child_die_ptr;
176 /* The end of the comp unit. */
177 bfd_byte *end_ptr;
179 /* The decoded line number, NULL if not yet decoded. */
180 struct line_info_table *line_table;
182 /* A list of the functions found in this comp. unit. */
183 struct funcinfo *function_table;
185 /* Pointer to dwarf2_debug structure. */
186 struct dwarf2_debug *stash;
188 /* Address size for this unit - from unit header. */
189 unsigned char addr_size;
191 /* Offset size for this unit - from unit header. */
192 unsigned char offset_size;
194 /* Base address for this unit - from DW_AT_low_pc attribute of
195 DW_TAG_compile_unit DIE */
196 bfd_vma base_address;
199 /* This data structure holds the information of an abbrev. */
200 struct abbrev_info
202 unsigned int number; /* Number identifying abbrev. */
203 enum dwarf_tag tag; /* DWARF tag. */
204 int has_children; /* Boolean. */
205 unsigned int num_attrs; /* Number of attributes. */
206 struct attr_abbrev *attrs; /* An array of attribute descriptions. */
207 struct abbrev_info *next; /* Next in chain. */
210 struct attr_abbrev
212 enum dwarf_attribute name;
213 enum dwarf_form form;
216 #ifndef ABBREV_HASH_SIZE
217 #define ABBREV_HASH_SIZE 121
218 #endif
219 #ifndef ATTR_ALLOC_CHUNK
220 #define ATTR_ALLOC_CHUNK 4
221 #endif
223 /* VERBATIM
224 The following function up to the END VERBATIM mark are
225 copied directly from dwarf2read.c. */
227 /* Read dwarf information from a buffer. */
229 static unsigned int
230 read_1_byte (bfd *abfd ATTRIBUTE_UNUSED, bfd_byte *buf)
232 return bfd_get_8 (abfd, buf);
235 static int
236 read_1_signed_byte (bfd *abfd ATTRIBUTE_UNUSED, bfd_byte *buf)
238 return bfd_get_signed_8 (abfd, buf);
241 static unsigned int
242 read_2_bytes (bfd *abfd, bfd_byte *buf)
244 return bfd_get_16 (abfd, buf);
247 static unsigned int
248 read_4_bytes (bfd *abfd, bfd_byte *buf)
250 return bfd_get_32 (abfd, buf);
253 static bfd_uint64_t
254 read_8_bytes (bfd *abfd, bfd_byte *buf)
256 return bfd_get_64 (abfd, buf);
259 static bfd_byte *
260 read_n_bytes (bfd *abfd ATTRIBUTE_UNUSED,
261 bfd_byte *buf,
262 unsigned int size ATTRIBUTE_UNUSED)
264 /* If the size of a host char is 8 bits, we can return a pointer
265 to the buffer, otherwise we have to copy the data to a buffer
266 allocated on the temporary obstack. */
267 return buf;
270 static char *
271 read_string (bfd *abfd ATTRIBUTE_UNUSED,
272 bfd_byte *buf,
273 unsigned int *bytes_read_ptr)
275 /* Return a pointer to the embedded string. */
276 char *str = (char *) buf;
277 if (*str == '\0')
279 *bytes_read_ptr = 1;
280 return NULL;
283 *bytes_read_ptr = strlen (str) + 1;
284 return str;
287 static char *
288 read_indirect_string (struct comp_unit* unit,
289 bfd_byte *buf,
290 unsigned int *bytes_read_ptr)
292 bfd_uint64_t offset;
293 struct dwarf2_debug *stash = unit->stash;
294 char *str;
296 if (unit->offset_size == 4)
297 offset = read_4_bytes (unit->abfd, buf);
298 else
299 offset = read_8_bytes (unit->abfd, buf);
300 *bytes_read_ptr = unit->offset_size;
302 if (! stash->dwarf_str_buffer)
304 asection *msec;
305 bfd *abfd = unit->abfd;
306 bfd_size_type sz;
308 msec = bfd_get_section_by_name (abfd, ".debug_str");
309 if (! msec)
311 (*_bfd_error_handler)
312 (_("Dwarf Error: Can't find .debug_str section."));
313 bfd_set_error (bfd_error_bad_value);
314 return NULL;
317 sz = msec->rawsize ? msec->rawsize : msec->size;
318 stash->dwarf_str_size = sz;
319 stash->dwarf_str_buffer = bfd_alloc (abfd, sz);
320 if (! stash->dwarf_str_buffer)
321 return NULL;
323 if (! bfd_get_section_contents (abfd, msec, stash->dwarf_str_buffer,
324 0, sz))
325 return NULL;
328 if (offset >= stash->dwarf_str_size)
330 (*_bfd_error_handler) (_("Dwarf Error: DW_FORM_strp offset (%lu) greater than or equal to .debug_str size (%lu)."),
331 (unsigned long) offset, stash->dwarf_str_size);
332 bfd_set_error (bfd_error_bad_value);
333 return NULL;
336 str = (char *) stash->dwarf_str_buffer + offset;
337 if (*str == '\0')
338 return NULL;
339 return str;
342 /* END VERBATIM */
344 static bfd_uint64_t
345 read_address (struct comp_unit *unit, bfd_byte *buf)
347 switch (unit->addr_size)
349 case 8:
350 return bfd_get_64 (unit->abfd, buf);
351 case 4:
352 return bfd_get_32 (unit->abfd, buf);
353 case 2:
354 return bfd_get_16 (unit->abfd, buf);
355 default:
356 abort ();
360 /* Lookup an abbrev_info structure in the abbrev hash table. */
362 static struct abbrev_info *
363 lookup_abbrev (unsigned int number, struct abbrev_info **abbrevs)
365 unsigned int hash_number;
366 struct abbrev_info *abbrev;
368 hash_number = number % ABBREV_HASH_SIZE;
369 abbrev = abbrevs[hash_number];
371 while (abbrev)
373 if (abbrev->number == number)
374 return abbrev;
375 else
376 abbrev = abbrev->next;
379 return NULL;
382 /* In DWARF version 2, the description of the debugging information is
383 stored in a separate .debug_abbrev section. Before we read any
384 dies from a section we read in all abbreviations and install them
385 in a hash table. */
387 static struct abbrev_info**
388 read_abbrevs (bfd *abfd, bfd_uint64_t offset, struct dwarf2_debug *stash)
390 struct abbrev_info **abbrevs;
391 bfd_byte *abbrev_ptr;
392 struct abbrev_info *cur_abbrev;
393 unsigned int abbrev_number, bytes_read, abbrev_name;
394 unsigned int abbrev_form, hash_number;
395 bfd_size_type amt;
397 if (! stash->dwarf_abbrev_buffer)
399 asection *msec;
401 msec = bfd_get_section_by_name (abfd, ".debug_abbrev");
402 if (! msec)
404 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_abbrev section."));
405 bfd_set_error (bfd_error_bad_value);
406 return 0;
409 stash->dwarf_abbrev_size = msec->size;
410 stash->dwarf_abbrev_buffer
411 = bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
412 stash->syms);
413 if (! stash->dwarf_abbrev_buffer)
414 return 0;
417 if (offset >= stash->dwarf_abbrev_size)
419 (*_bfd_error_handler) (_("Dwarf Error: Abbrev offset (%lu) greater than or equal to .debug_abbrev size (%lu)."),
420 (unsigned long) offset, stash->dwarf_abbrev_size);
421 bfd_set_error (bfd_error_bad_value);
422 return 0;
425 amt = sizeof (struct abbrev_info*) * ABBREV_HASH_SIZE;
426 abbrevs = bfd_zalloc (abfd, amt);
428 abbrev_ptr = stash->dwarf_abbrev_buffer + offset;
429 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
430 abbrev_ptr += bytes_read;
432 /* Loop until we reach an abbrev number of 0. */
433 while (abbrev_number)
435 amt = sizeof (struct abbrev_info);
436 cur_abbrev = bfd_zalloc (abfd, amt);
438 /* Read in abbrev header. */
439 cur_abbrev->number = abbrev_number;
440 cur_abbrev->tag = (enum dwarf_tag)
441 read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
442 abbrev_ptr += bytes_read;
443 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
444 abbrev_ptr += 1;
446 /* Now read in declarations. */
447 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
448 abbrev_ptr += bytes_read;
449 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
450 abbrev_ptr += bytes_read;
452 while (abbrev_name)
454 if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
456 struct attr_abbrev *tmp;
458 amt = cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK;
459 amt *= sizeof (struct attr_abbrev);
460 tmp = bfd_realloc (cur_abbrev->attrs, amt);
461 if (tmp == NULL)
463 size_t i;
465 for (i = 0; i < ABBREV_HASH_SIZE; i++)
467 struct abbrev_info *abbrev = abbrevs[i];
469 while (abbrev)
471 free (abbrev->attrs);
472 abbrev = abbrev->next;
475 return NULL;
477 cur_abbrev->attrs = tmp;
480 cur_abbrev->attrs[cur_abbrev->num_attrs].name
481 = (enum dwarf_attribute) abbrev_name;
482 cur_abbrev->attrs[cur_abbrev->num_attrs++].form
483 = (enum dwarf_form) abbrev_form;
484 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
485 abbrev_ptr += bytes_read;
486 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
487 abbrev_ptr += bytes_read;
490 hash_number = abbrev_number % ABBREV_HASH_SIZE;
491 cur_abbrev->next = abbrevs[hash_number];
492 abbrevs[hash_number] = cur_abbrev;
494 /* Get next abbreviation.
495 Under Irix6 the abbreviations for a compilation unit are not
496 always properly terminated with an abbrev number of 0.
497 Exit loop if we encounter an abbreviation which we have
498 already read (which means we are about to read the abbreviations
499 for the next compile unit) or if the end of the abbreviation
500 table is reached. */
501 if ((unsigned int) (abbrev_ptr - stash->dwarf_abbrev_buffer)
502 >= stash->dwarf_abbrev_size)
503 break;
504 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
505 abbrev_ptr += bytes_read;
506 if (lookup_abbrev (abbrev_number,abbrevs) != NULL)
507 break;
510 return abbrevs;
513 /* Read an attribute value described by an attribute form. */
515 static bfd_byte *
516 read_attribute_value (struct attribute *attr,
517 unsigned form,
518 struct comp_unit *unit,
519 bfd_byte *info_ptr)
521 bfd *abfd = unit->abfd;
522 unsigned int bytes_read;
523 struct dwarf_block *blk;
524 bfd_size_type amt;
526 attr->form = (enum dwarf_form) form;
528 switch (form)
530 case DW_FORM_addr:
531 /* FIXME: DWARF3 draft says DW_FORM_ref_addr is offset_size. */
532 case DW_FORM_ref_addr:
533 attr->u.val = read_address (unit, info_ptr);
534 info_ptr += unit->addr_size;
535 break;
536 case DW_FORM_block2:
537 amt = sizeof (struct dwarf_block);
538 blk = bfd_alloc (abfd, amt);
539 blk->size = read_2_bytes (abfd, info_ptr);
540 info_ptr += 2;
541 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
542 info_ptr += blk->size;
543 attr->u.blk = blk;
544 break;
545 case DW_FORM_block4:
546 amt = sizeof (struct dwarf_block);
547 blk = bfd_alloc (abfd, amt);
548 blk->size = read_4_bytes (abfd, info_ptr);
549 info_ptr += 4;
550 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
551 info_ptr += blk->size;
552 attr->u.blk = blk;
553 break;
554 case DW_FORM_data2:
555 attr->u.val = read_2_bytes (abfd, info_ptr);
556 info_ptr += 2;
557 break;
558 case DW_FORM_data4:
559 attr->u.val = read_4_bytes (abfd, info_ptr);
560 info_ptr += 4;
561 break;
562 case DW_FORM_data8:
563 attr->u.val = read_8_bytes (abfd, info_ptr);
564 info_ptr += 8;
565 break;
566 case DW_FORM_string:
567 attr->u.str = read_string (abfd, info_ptr, &bytes_read);
568 info_ptr += bytes_read;
569 break;
570 case DW_FORM_strp:
571 attr->u.str = read_indirect_string (unit, info_ptr, &bytes_read);
572 info_ptr += bytes_read;
573 break;
574 case DW_FORM_block:
575 amt = sizeof (struct dwarf_block);
576 blk = bfd_alloc (abfd, amt);
577 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
578 info_ptr += bytes_read;
579 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
580 info_ptr += blk->size;
581 attr->u.blk = blk;
582 break;
583 case DW_FORM_block1:
584 amt = sizeof (struct dwarf_block);
585 blk = bfd_alloc (abfd, amt);
586 blk->size = read_1_byte (abfd, info_ptr);
587 info_ptr += 1;
588 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
589 info_ptr += blk->size;
590 attr->u.blk = blk;
591 break;
592 case DW_FORM_data1:
593 attr->u.val = read_1_byte (abfd, info_ptr);
594 info_ptr += 1;
595 break;
596 case DW_FORM_flag:
597 attr->u.val = read_1_byte (abfd, info_ptr);
598 info_ptr += 1;
599 break;
600 case DW_FORM_sdata:
601 attr->u.sval = read_signed_leb128 (abfd, info_ptr, &bytes_read);
602 info_ptr += bytes_read;
603 break;
604 case DW_FORM_udata:
605 attr->u.val = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
606 info_ptr += bytes_read;
607 break;
608 case DW_FORM_ref1:
609 attr->u.val = read_1_byte (abfd, info_ptr);
610 info_ptr += 1;
611 break;
612 case DW_FORM_ref2:
613 attr->u.val = read_2_bytes (abfd, info_ptr);
614 info_ptr += 2;
615 break;
616 case DW_FORM_ref4:
617 attr->u.val = read_4_bytes (abfd, info_ptr);
618 info_ptr += 4;
619 break;
620 case DW_FORM_ref8:
621 attr->u.val = read_8_bytes (abfd, info_ptr);
622 info_ptr += 8;
623 break;
624 case DW_FORM_ref_udata:
625 attr->u.val = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
626 info_ptr += bytes_read;
627 break;
628 case DW_FORM_indirect:
629 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
630 info_ptr += bytes_read;
631 info_ptr = read_attribute_value (attr, form, unit, info_ptr);
632 break;
633 default:
634 (*_bfd_error_handler) (_("Dwarf Error: Invalid or unhandled FORM value: %u."),
635 form);
636 bfd_set_error (bfd_error_bad_value);
638 return info_ptr;
641 /* Read an attribute described by an abbreviated attribute. */
643 static bfd_byte *
644 read_attribute (struct attribute *attr,
645 struct attr_abbrev *abbrev,
646 struct comp_unit *unit,
647 bfd_byte *info_ptr)
649 attr->name = abbrev->name;
650 info_ptr = read_attribute_value (attr, abbrev->form, unit, info_ptr);
651 return info_ptr;
654 /* Source line information table routines. */
656 #define FILE_ALLOC_CHUNK 5
657 #define DIR_ALLOC_CHUNK 5
659 struct line_info
661 struct line_info* prev_line;
662 bfd_vma address;
663 char *filename;
664 unsigned int line;
665 unsigned int column;
666 int end_sequence; /* End of (sequential) code sequence. */
669 struct fileinfo
671 char *name;
672 unsigned int dir;
673 unsigned int time;
674 unsigned int size;
677 struct line_info_table
679 bfd* abfd;
680 unsigned int num_files;
681 unsigned int num_dirs;
682 char *comp_dir;
683 char **dirs;
684 struct fileinfo* files;
685 struct line_info* last_line; /* largest VMA */
686 struct line_info* lcl_head; /* local head; used in 'add_line_info' */
689 /* Remember some information about each function. If the function is
690 inlined (DW_TAG_inlined_subroutine) it may have two additional
691 attributes, DW_AT_call_file and DW_AT_call_line, which specify the
692 source code location where this function was inlined. */
694 struct funcinfo
696 struct funcinfo *prev_func; /* Pointer to previous function in list of all functions */
697 struct funcinfo *caller_func; /* Pointer to function one scope higher */
698 char *caller_file; /* Source location file name where caller_func inlines this func */
699 int caller_line; /* Source location line number where caller_func inlines this func */
700 int tag;
701 int nesting_level;
702 char *name;
703 struct arange arange;
706 /* Adds a new entry to the line_info list in the line_info_table, ensuring
707 that the list is sorted. Note that the line_info list is sorted from
708 highest to lowest VMA (with possible duplicates); that is,
709 line_info->prev_line always accesses an equal or smaller VMA. */
711 static void
712 add_line_info (struct line_info_table *table,
713 bfd_vma address,
714 char *filename,
715 unsigned int line,
716 unsigned int column,
717 int end_sequence)
719 bfd_size_type amt = sizeof (struct line_info);
720 struct line_info* info = bfd_alloc (table->abfd, amt);
722 /* Find the correct location for 'info'. Normally we will receive
723 new line_info data 1) in order and 2) with increasing VMAs.
724 However some compilers break the rules (cf. decode_line_info) and
725 so we include some heuristics for quickly finding the correct
726 location for 'info'. In particular, these heuristics optimize for
727 the common case in which the VMA sequence that we receive is a
728 list of locally sorted VMAs such as
729 p...z a...j (where a < j < p < z)
731 Note: table->lcl_head is used to head an *actual* or *possible*
732 sequence within the list (such as a...j) that is not directly
733 headed by table->last_line
735 Note: we may receive duplicate entries from 'decode_line_info'. */
737 while (1)
738 if (!table->last_line
739 || address >= table->last_line->address)
741 /* Normal case: add 'info' to the beginning of the list */
742 info->prev_line = table->last_line;
743 table->last_line = info;
745 /* lcl_head: initialize to head a *possible* sequence at the end. */
746 if (!table->lcl_head)
747 table->lcl_head = info;
748 break;
750 else if (!table->lcl_head->prev_line
751 && table->lcl_head->address > address)
753 /* Abnormal but easy: lcl_head is 1) at the *end* of the line
754 list and 2) the head of 'info'. */
755 info->prev_line = NULL;
756 table->lcl_head->prev_line = info;
757 break;
759 else if (table->lcl_head->prev_line
760 && table->lcl_head->address > address
761 && address >= table->lcl_head->prev_line->address)
763 /* Abnormal but easy: lcl_head is 1) in the *middle* of the line
764 list and 2) the head of 'info'. */
765 info->prev_line = table->lcl_head->prev_line;
766 table->lcl_head->prev_line = info;
767 break;
769 else
771 /* Abnormal and hard: Neither 'last_line' nor 'lcl_head' are valid
772 heads for 'info'. Reset 'lcl_head' and repeat. */
773 struct line_info* li2 = table->last_line; /* always non-NULL */
774 struct line_info* li1 = li2->prev_line;
776 while (li1)
778 if (li2->address > address && address >= li1->address)
779 break;
781 li2 = li1; /* always non-NULL */
782 li1 = li1->prev_line;
784 table->lcl_head = li2;
787 /* Set member data of 'info'. */
788 info->address = address;
789 info->line = line;
790 info->column = column;
791 info->end_sequence = end_sequence;
793 if (filename && filename[0])
795 info->filename = bfd_alloc (table->abfd, strlen (filename) + 1);
796 if (info->filename)
797 strcpy (info->filename, filename);
799 else
800 info->filename = NULL;
803 /* Extract a fully qualified filename from a line info table.
804 The returned string has been malloc'ed and it is the caller's
805 responsibility to free it. */
807 static char *
808 concat_filename (struct line_info_table *table, unsigned int file)
810 char *filename;
812 if (file - 1 >= table->num_files)
814 (*_bfd_error_handler)
815 (_("Dwarf Error: mangled line number section (bad file number)."));
816 return strdup ("<unknown>");
819 filename = table->files[file - 1].name;
821 if (! IS_ABSOLUTE_PATH (filename))
823 char *dirname = (table->files[file - 1].dir
824 ? table->dirs[table->files[file - 1].dir - 1]
825 : table->comp_dir);
827 /* Not all tools set DW_AT_comp_dir, so dirname may be unknown.
828 The best we can do is return the filename part. */
829 if (dirname != NULL)
831 unsigned int len = strlen (dirname) + strlen (filename) + 2;
832 char * name;
834 name = bfd_malloc (len);
835 if (name)
836 sprintf (name, "%s/%s", dirname, filename);
837 return name;
841 return strdup (filename);
844 static void
845 arange_add (bfd *abfd, struct arange *first_arange, bfd_vma low_pc, bfd_vma high_pc)
847 struct arange *arange;
849 /* If the first arange is empty, use it. */
850 if (first_arange->high == 0)
852 first_arange->low = low_pc;
853 first_arange->high = high_pc;
854 return;
857 /* Next see if we can cheaply extend an existing range. */
858 arange = first_arange;
861 if (low_pc == arange->high)
863 arange->high = high_pc;
864 return;
866 if (high_pc == arange->low)
868 arange->low = low_pc;
869 return;
871 arange = arange->next;
873 while (arange);
875 /* Need to allocate a new arange and insert it into the arange list.
876 Order isn't significant, so just insert after the first arange. */
877 arange = bfd_zalloc (abfd, sizeof (*arange));
878 arange->low = low_pc;
879 arange->high = high_pc;
880 arange->next = first_arange->next;
881 first_arange->next = arange;
884 /* Decode the line number information for UNIT. */
886 static struct line_info_table*
887 decode_line_info (struct comp_unit *unit, struct dwarf2_debug *stash)
889 bfd *abfd = unit->abfd;
890 struct line_info_table* table;
891 bfd_byte *line_ptr;
892 bfd_byte *line_end;
893 struct line_head lh;
894 unsigned int i, bytes_read, offset_size;
895 char *cur_file, *cur_dir;
896 unsigned char op_code, extended_op, adj_opcode;
897 bfd_size_type amt;
899 if (! stash->dwarf_line_buffer)
901 asection *msec;
903 msec = bfd_get_section_by_name (abfd, ".debug_line");
904 if (! msec)
906 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_line section."));
907 bfd_set_error (bfd_error_bad_value);
908 return 0;
911 stash->dwarf_line_size = msec->size;
912 stash->dwarf_line_buffer
913 = bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
914 stash->syms);
915 if (! stash->dwarf_line_buffer)
916 return 0;
919 /* It is possible to get a bad value for the line_offset. Validate
920 it here so that we won't get a segfault below. */
921 if (unit->line_offset >= stash->dwarf_line_size)
923 (*_bfd_error_handler) (_("Dwarf Error: Line offset (%lu) greater than or equal to .debug_line size (%lu)."),
924 unit->line_offset, stash->dwarf_line_size);
925 bfd_set_error (bfd_error_bad_value);
926 return 0;
929 amt = sizeof (struct line_info_table);
930 table = bfd_alloc (abfd, amt);
931 table->abfd = abfd;
932 table->comp_dir = unit->comp_dir;
934 table->num_files = 0;
935 table->files = NULL;
937 table->num_dirs = 0;
938 table->dirs = NULL;
940 table->files = NULL;
941 table->last_line = NULL;
942 table->lcl_head = NULL;
944 line_ptr = stash->dwarf_line_buffer + unit->line_offset;
946 /* Read in the prologue. */
947 lh.total_length = read_4_bytes (abfd, line_ptr);
948 line_ptr += 4;
949 offset_size = 4;
950 if (lh.total_length == 0xffffffff)
952 lh.total_length = read_8_bytes (abfd, line_ptr);
953 line_ptr += 8;
954 offset_size = 8;
956 else if (lh.total_length == 0 && unit->addr_size == 8)
958 /* Handle (non-standard) 64-bit DWARF2 formats. */
959 lh.total_length = read_4_bytes (abfd, line_ptr);
960 line_ptr += 4;
961 offset_size = 8;
963 line_end = line_ptr + lh.total_length;
964 lh.version = read_2_bytes (abfd, line_ptr);
965 line_ptr += 2;
966 if (offset_size == 4)
967 lh.prologue_length = read_4_bytes (abfd, line_ptr);
968 else
969 lh.prologue_length = read_8_bytes (abfd, line_ptr);
970 line_ptr += offset_size;
971 lh.minimum_instruction_length = read_1_byte (abfd, line_ptr);
972 line_ptr += 1;
973 lh.default_is_stmt = read_1_byte (abfd, line_ptr);
974 line_ptr += 1;
975 lh.line_base = read_1_signed_byte (abfd, line_ptr);
976 line_ptr += 1;
977 lh.line_range = read_1_byte (abfd, line_ptr);
978 line_ptr += 1;
979 lh.opcode_base = read_1_byte (abfd, line_ptr);
980 line_ptr += 1;
981 amt = lh.opcode_base * sizeof (unsigned char);
982 lh.standard_opcode_lengths = bfd_alloc (abfd, amt);
984 lh.standard_opcode_lengths[0] = 1;
986 for (i = 1; i < lh.opcode_base; ++i)
988 lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
989 line_ptr += 1;
992 /* Read directory table. */
993 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
995 line_ptr += bytes_read;
997 if ((table->num_dirs % DIR_ALLOC_CHUNK) == 0)
999 char **tmp;
1001 amt = table->num_dirs + DIR_ALLOC_CHUNK;
1002 amt *= sizeof (char *);
1004 tmp = bfd_realloc (table->dirs, amt);
1005 if (tmp == NULL)
1007 free (table->dirs);
1008 return NULL;
1010 table->dirs = tmp;
1013 table->dirs[table->num_dirs++] = cur_dir;
1016 line_ptr += bytes_read;
1018 /* Read file name table. */
1019 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
1021 line_ptr += bytes_read;
1023 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
1025 struct fileinfo *tmp;
1027 amt = table->num_files + FILE_ALLOC_CHUNK;
1028 amt *= sizeof (struct fileinfo);
1030 tmp = bfd_realloc (table->files, amt);
1031 if (tmp == NULL)
1033 free (table->files);
1034 free (table->dirs);
1035 return NULL;
1037 table->files = tmp;
1040 table->files[table->num_files].name = cur_file;
1041 table->files[table->num_files].dir =
1042 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1043 line_ptr += bytes_read;
1044 table->files[table->num_files].time =
1045 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1046 line_ptr += bytes_read;
1047 table->files[table->num_files].size =
1048 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1049 line_ptr += bytes_read;
1050 table->num_files++;
1053 line_ptr += bytes_read;
1055 /* Read the statement sequences until there's nothing left. */
1056 while (line_ptr < line_end)
1058 /* State machine registers. */
1059 bfd_vma address = 0;
1060 char * filename = table->num_files ? concat_filename (table, 1) : NULL;
1061 unsigned int line = 1;
1062 unsigned int column = 0;
1063 int is_stmt = lh.default_is_stmt;
1064 int basic_block = 0;
1065 int end_sequence = 0;
1066 /* eraxxon@alumni.rice.edu: Against the DWARF2 specs, some
1067 compilers generate address sequences that are wildly out of
1068 order using DW_LNE_set_address (e.g. Intel C++ 6.0 compiler
1069 for ia64-Linux). Thus, to determine the low and high
1070 address, we must compare on every DW_LNS_copy, etc. */
1071 bfd_vma low_pc = 0;
1072 bfd_vma high_pc = 0;
1074 /* Decode the table. */
1075 while (! end_sequence)
1077 op_code = read_1_byte (abfd, line_ptr);
1078 line_ptr += 1;
1080 if (op_code >= lh.opcode_base)
1082 /* Special operand. */
1083 adj_opcode = op_code - lh.opcode_base;
1084 address += (adj_opcode / lh.line_range)
1085 * lh.minimum_instruction_length;
1086 line += lh.line_base + (adj_opcode % lh.line_range);
1087 /* Append row to matrix using current values. */
1088 add_line_info (table, address, filename, line, column, 0);
1089 basic_block = 1;
1090 if (low_pc == 0 || address < low_pc)
1091 low_pc = address;
1092 if (address > high_pc)
1093 high_pc = address;
1095 else switch (op_code)
1097 case DW_LNS_extended_op:
1098 /* Ignore length. */
1099 line_ptr += 1;
1100 extended_op = read_1_byte (abfd, line_ptr);
1101 line_ptr += 1;
1103 switch (extended_op)
1105 case DW_LNE_end_sequence:
1106 end_sequence = 1;
1107 add_line_info (table, address, filename, line, column,
1108 end_sequence);
1109 if (low_pc == 0 || address < low_pc)
1110 low_pc = address;
1111 if (address > high_pc)
1112 high_pc = address;
1113 arange_add (unit->abfd, &unit->arange, low_pc, high_pc);
1114 break;
1115 case DW_LNE_set_address:
1116 address = read_address (unit, line_ptr);
1117 line_ptr += unit->addr_size;
1118 break;
1119 case DW_LNE_define_file:
1120 cur_file = read_string (abfd, line_ptr, &bytes_read);
1121 line_ptr += bytes_read;
1122 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
1124 struct fileinfo *tmp;
1126 amt = table->num_files + FILE_ALLOC_CHUNK;
1127 amt *= sizeof (struct fileinfo);
1128 tmp = bfd_realloc (table->files, amt);
1129 if (tmp == NULL)
1131 free (table->files);
1132 free (table->dirs);
1133 free (filename);
1134 return NULL;
1136 table->files = tmp;
1138 table->files[table->num_files].name = cur_file;
1139 table->files[table->num_files].dir =
1140 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1141 line_ptr += bytes_read;
1142 table->files[table->num_files].time =
1143 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1144 line_ptr += bytes_read;
1145 table->files[table->num_files].size =
1146 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1147 line_ptr += bytes_read;
1148 table->num_files++;
1149 break;
1150 default:
1151 (*_bfd_error_handler) (_("Dwarf Error: mangled line number section."));
1152 bfd_set_error (bfd_error_bad_value);
1153 free (filename);
1154 free (table->files);
1155 free (table->dirs);
1156 return NULL;
1158 break;
1159 case DW_LNS_copy:
1160 add_line_info (table, address, filename, line, column, 0);
1161 basic_block = 0;
1162 if (low_pc == 0 || address < low_pc)
1163 low_pc = address;
1164 if (address > high_pc)
1165 high_pc = address;
1166 break;
1167 case DW_LNS_advance_pc:
1168 address += lh.minimum_instruction_length
1169 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1170 line_ptr += bytes_read;
1171 break;
1172 case DW_LNS_advance_line:
1173 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
1174 line_ptr += bytes_read;
1175 break;
1176 case DW_LNS_set_file:
1178 unsigned int file;
1180 /* The file and directory tables are 0
1181 based, the references are 1 based. */
1182 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1183 line_ptr += bytes_read;
1184 if (filename)
1185 free (filename);
1186 filename = concat_filename (table, file);
1187 break;
1189 case DW_LNS_set_column:
1190 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1191 line_ptr += bytes_read;
1192 break;
1193 case DW_LNS_negate_stmt:
1194 is_stmt = (!is_stmt);
1195 break;
1196 case DW_LNS_set_basic_block:
1197 basic_block = 1;
1198 break;
1199 case DW_LNS_const_add_pc:
1200 address += lh.minimum_instruction_length
1201 * ((255 - lh.opcode_base) / lh.line_range);
1202 break;
1203 case DW_LNS_fixed_advance_pc:
1204 address += read_2_bytes (abfd, line_ptr);
1205 line_ptr += 2;
1206 break;
1207 default:
1209 int i;
1211 /* Unknown standard opcode, ignore it. */
1212 for (i = 0; i < lh.standard_opcode_lengths[op_code]; i++)
1214 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1215 line_ptr += bytes_read;
1221 if (filename)
1222 free (filename);
1225 return table;
1228 /* If ADDR is within TABLE set the output parameters and return TRUE,
1229 otherwise return FALSE. The output parameters, FILENAME_PTR and
1230 LINENUMBER_PTR, are pointers to the objects to be filled in. */
1232 static bfd_boolean
1233 lookup_address_in_line_info_table (struct line_info_table *table,
1234 bfd_vma addr,
1235 struct funcinfo *function,
1236 const char **filename_ptr,
1237 unsigned int *linenumber_ptr)
1239 /* Note: table->last_line should be a descendingly sorted list. */
1240 struct line_info* next_line = table->last_line;
1241 struct line_info* each_line = NULL;
1242 *filename_ptr = NULL;
1244 if (!next_line)
1245 return FALSE;
1247 each_line = next_line->prev_line;
1249 /* Check for large addresses */
1250 if (addr > next_line->address)
1251 each_line = NULL; /* ensure we skip over the normal case */
1253 /* Normal case: search the list; save */
1254 while (each_line && next_line)
1256 /* If we have an address match, save this info. This allows us
1257 to return as good as results as possible for strange debugging
1258 info. */
1259 bfd_boolean addr_match = FALSE;
1260 if (each_line->address <= addr && addr < next_line->address)
1262 addr_match = TRUE;
1264 /* If this line appears to span functions, and addr is in the
1265 later function, return the first line of that function instead
1266 of the last line of the earlier one. This check is for GCC
1267 2.95, which emits the first line number for a function late. */
1269 if (function != NULL)
1271 bfd_vma lowest_pc;
1272 struct arange *arange;
1274 /* Find the lowest address in the function's range list */
1275 lowest_pc = function->arange.low;
1276 for (arange = &function->arange;
1277 arange;
1278 arange = arange->next)
1280 if (function->arange.low < lowest_pc)
1281 lowest_pc = function->arange.low;
1283 /* Check for spanning function and set outgoing line info */
1284 if (addr >= lowest_pc
1285 && each_line->address < lowest_pc
1286 && next_line->address > lowest_pc)
1288 *filename_ptr = next_line->filename;
1289 *linenumber_ptr = next_line->line;
1291 else
1293 *filename_ptr = each_line->filename;
1294 *linenumber_ptr = each_line->line;
1299 if (addr_match && !each_line->end_sequence)
1300 return TRUE; /* we have definitely found what we want */
1302 next_line = each_line;
1303 each_line = each_line->prev_line;
1306 /* At this point each_line is NULL but next_line is not. If we found
1307 a candidate end-of-sequence point in the loop above, we can return
1308 that (compatibility with a bug in the Intel compiler); otherwise,
1309 assuming that we found the containing function for this address in
1310 this compilation unit, return the first line we have a number for
1311 (compatibility with GCC 2.95). */
1312 if (*filename_ptr == NULL && function != NULL)
1314 *filename_ptr = next_line->filename;
1315 *linenumber_ptr = next_line->line;
1316 return TRUE;
1319 return FALSE;
1322 /* Read in the .debug_ranges section for future reference */
1324 static bfd_boolean
1325 read_debug_ranges (struct comp_unit *unit)
1327 struct dwarf2_debug *stash = unit->stash;
1328 if (! stash->dwarf_ranges_buffer)
1330 bfd *abfd = unit->abfd;
1331 asection *msec;
1333 msec = bfd_get_section_by_name (abfd, ".debug_ranges");
1334 if (! msec)
1336 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_ranges section."));
1337 bfd_set_error (bfd_error_bad_value);
1338 return FALSE;
1341 stash->dwarf_ranges_size = msec->size;
1342 stash->dwarf_ranges_buffer
1343 = bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
1344 stash->syms);
1345 if (! stash->dwarf_ranges_buffer)
1346 return FALSE;
1348 return TRUE;
1351 /* Function table functions. */
1353 /* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return TRUE.
1354 Note that we need to find the function that has the smallest
1355 range that contains ADDR, to handle inlined functions without
1356 depending upon them being ordered in TABLE by increasing range. */
1358 static bfd_boolean
1359 lookup_address_in_function_table (struct comp_unit *unit,
1360 bfd_vma addr,
1361 struct funcinfo **function_ptr,
1362 const char **functionname_ptr)
1364 struct funcinfo* each_func;
1365 struct funcinfo* best_fit = NULL;
1366 struct arange *arange;
1368 for (each_func = unit->function_table;
1369 each_func;
1370 each_func = each_func->prev_func)
1372 for (arange = &each_func->arange;
1373 arange;
1374 arange = arange->next)
1376 if (addr >= arange->low && addr < arange->high)
1378 if (!best_fit ||
1379 ((arange->high - arange->low) < (best_fit->arange.high - best_fit->arange.low)))
1380 best_fit = each_func;
1385 if (best_fit)
1387 struct funcinfo* curr_func = best_fit;
1389 *functionname_ptr = best_fit->name;
1390 *function_ptr = best_fit;
1392 /* If we found a match and it is a function that was inlined,
1393 traverse the function list looking for the function at the
1394 next higher scope and save a pointer to it for future use.
1395 Note that because of the way the DWARF info is generated, and
1396 the way we build the function list, the first function at the
1397 next higher level is the one we want. */
1399 for (each_func = best_fit -> prev_func;
1400 each_func && (curr_func->tag == DW_TAG_inlined_subroutine);
1401 each_func = each_func->prev_func)
1403 if (each_func->nesting_level < curr_func->nesting_level)
1405 curr_func->caller_func = each_func;
1406 curr_func = each_func;
1409 return TRUE;
1411 else
1413 return FALSE;
1417 static char *
1418 find_abstract_instance_name (struct comp_unit *unit, bfd_uint64_t die_ref)
1420 bfd *abfd = unit->abfd;
1421 bfd_byte *info_ptr;
1422 unsigned int abbrev_number, bytes_read, i;
1423 struct abbrev_info *abbrev;
1424 struct attribute attr;
1425 char *name = 0;
1427 info_ptr = unit->info_ptr_unit + die_ref;
1428 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1429 info_ptr += bytes_read;
1431 if (abbrev_number)
1433 abbrev = lookup_abbrev (abbrev_number, unit->abbrevs);
1434 if (! abbrev)
1436 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %u."),
1437 abbrev_number);
1438 bfd_set_error (bfd_error_bad_value);
1440 else
1442 for (i = 0; i < abbrev->num_attrs && !name; ++i)
1444 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1445 switch (attr.name)
1447 case DW_AT_name:
1448 name = attr.u.str;
1449 break;
1450 case DW_AT_specification:
1451 name = find_abstract_instance_name (unit, attr.u.val);
1452 break;
1453 default:
1454 break;
1459 return (name);
1462 static void
1463 read_rangelist (struct comp_unit *unit, struct arange *arange, bfd_uint64_t offset)
1465 bfd_byte *ranges_ptr;
1466 bfd_vma base_address = unit->base_address;
1468 if (! unit->stash->dwarf_ranges_buffer)
1470 if (! read_debug_ranges (unit))
1471 return;
1473 ranges_ptr = unit->stash->dwarf_ranges_buffer + offset;
1475 for (;;)
1477 bfd_vma low_pc;
1478 bfd_vma high_pc;
1480 if (unit->offset_size == 4)
1482 low_pc = read_4_bytes (unit->abfd, ranges_ptr);
1483 ranges_ptr += 4;
1484 high_pc = read_4_bytes (unit->abfd, ranges_ptr);
1485 ranges_ptr += 4;
1487 else
1489 low_pc = read_8_bytes (unit->abfd, ranges_ptr);
1490 ranges_ptr += 8;
1491 high_pc = read_8_bytes (unit->abfd, ranges_ptr);
1492 ranges_ptr += 8;
1494 if (low_pc == 0 && high_pc == 0)
1495 break;
1496 if (low_pc == -1UL && high_pc != -1UL)
1497 base_address = high_pc;
1498 else
1499 arange_add (unit->abfd, arange, base_address + low_pc, base_address + high_pc);
1503 /* DWARF2 Compilation unit functions. */
1505 /* Scan over each die in a comp. unit looking for functions to add
1506 to the function table. */
1508 static bfd_boolean
1509 scan_unit_for_functions (struct comp_unit *unit)
1511 bfd *abfd = unit->abfd;
1512 bfd_byte *info_ptr = unit->first_child_die_ptr;
1513 int nesting_level = 1;
1515 while (nesting_level)
1517 unsigned int abbrev_number, bytes_read, i;
1518 struct abbrev_info *abbrev;
1519 struct attribute attr;
1520 struct funcinfo *func;
1521 bfd_vma low_pc = 0;
1522 bfd_vma high_pc = 0;
1524 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1525 info_ptr += bytes_read;
1527 if (! abbrev_number)
1529 nesting_level--;
1530 continue;
1533 abbrev = lookup_abbrev (abbrev_number,unit->abbrevs);
1534 if (! abbrev)
1536 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %u."),
1537 abbrev_number);
1538 bfd_set_error (bfd_error_bad_value);
1539 return FALSE;
1542 if (abbrev->tag == DW_TAG_subprogram
1543 || abbrev->tag == DW_TAG_inlined_subroutine)
1545 bfd_size_type amt = sizeof (struct funcinfo);
1546 func = bfd_zalloc (abfd, amt);
1547 func->tag = abbrev->tag;
1548 func->nesting_level = nesting_level;
1549 func->prev_func = unit->function_table;
1550 unit->function_table = func;
1552 else
1553 func = NULL;
1555 for (i = 0; i < abbrev->num_attrs; ++i)
1557 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1559 if (func)
1561 switch (attr.name)
1563 case DW_AT_call_file:
1564 func->caller_file = concat_filename (unit->line_table, attr.u.val);
1565 break;
1567 case DW_AT_call_line:
1568 func->caller_line = attr.u.val;
1569 break;
1571 case DW_AT_abstract_origin:
1572 func->name = find_abstract_instance_name (unit, attr.u.val);
1573 break;
1575 case DW_AT_name:
1576 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
1577 if (func->name == NULL)
1578 func->name = attr.u.str;
1579 break;
1581 case DW_AT_MIPS_linkage_name:
1582 func->name = attr.u.str;
1583 break;
1585 case DW_AT_low_pc:
1586 low_pc = attr.u.val;
1587 break;
1589 case DW_AT_high_pc:
1590 high_pc = attr.u.val;
1591 break;
1593 case DW_AT_ranges:
1594 read_rangelist (unit, &func->arange, attr.u.val);
1595 break;
1597 default:
1598 break;
1603 if (func && high_pc != 0)
1605 arange_add (unit->abfd, &func->arange, low_pc, high_pc);
1608 if (abbrev->has_children)
1609 nesting_level++;
1612 return TRUE;
1615 /* Parse a DWARF2 compilation unit starting at INFO_PTR. This
1616 includes the compilation unit header that proceeds the DIE's, but
1617 does not include the length field that precedes each compilation
1618 unit header. END_PTR points one past the end of this comp unit.
1619 OFFSET_SIZE is the size of DWARF2 offsets (either 4 or 8 bytes).
1621 This routine does not read the whole compilation unit; only enough
1622 to get to the line number information for the compilation unit. */
1624 static struct comp_unit *
1625 parse_comp_unit (bfd *abfd,
1626 struct dwarf2_debug *stash,
1627 bfd_vma unit_length,
1628 bfd_byte *info_ptr_unit,
1629 unsigned int offset_size)
1631 struct comp_unit* unit;
1632 unsigned int version;
1633 bfd_uint64_t abbrev_offset = 0;
1634 unsigned int addr_size;
1635 struct abbrev_info** abbrevs;
1636 unsigned int abbrev_number, bytes_read, i;
1637 struct abbrev_info *abbrev;
1638 struct attribute attr;
1639 bfd_byte *info_ptr = stash->info_ptr;
1640 bfd_byte *end_ptr = info_ptr + unit_length;
1641 bfd_size_type amt;
1642 bfd_vma low_pc = 0;
1643 bfd_vma high_pc = 0;
1645 version = read_2_bytes (abfd, info_ptr);
1646 info_ptr += 2;
1647 BFD_ASSERT (offset_size == 4 || offset_size == 8);
1648 if (offset_size == 4)
1649 abbrev_offset = read_4_bytes (abfd, info_ptr);
1650 else
1651 abbrev_offset = read_8_bytes (abfd, info_ptr);
1652 info_ptr += offset_size;
1653 addr_size = read_1_byte (abfd, info_ptr);
1654 info_ptr += 1;
1656 if (version != 2)
1658 (*_bfd_error_handler) (_("Dwarf Error: found dwarf version '%u', this reader only handles version 2 information."), version);
1659 bfd_set_error (bfd_error_bad_value);
1660 return 0;
1663 if (addr_size > sizeof (bfd_vma))
1665 (*_bfd_error_handler) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
1666 addr_size,
1667 (unsigned int) sizeof (bfd_vma));
1668 bfd_set_error (bfd_error_bad_value);
1669 return 0;
1672 if (addr_size != 2 && addr_size != 4 && addr_size != 8)
1674 (*_bfd_error_handler) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '2', '4' and '8'.", addr_size);
1675 bfd_set_error (bfd_error_bad_value);
1676 return 0;
1679 /* Read the abbrevs for this compilation unit into a table. */
1680 abbrevs = read_abbrevs (abfd, abbrev_offset, stash);
1681 if (! abbrevs)
1682 return 0;
1684 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1685 info_ptr += bytes_read;
1686 if (! abbrev_number)
1688 (*_bfd_error_handler) (_("Dwarf Error: Bad abbrev number: %u."),
1689 abbrev_number);
1690 bfd_set_error (bfd_error_bad_value);
1691 return 0;
1694 abbrev = lookup_abbrev (abbrev_number, abbrevs);
1695 if (! abbrev)
1697 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %u."),
1698 abbrev_number);
1699 bfd_set_error (bfd_error_bad_value);
1700 return 0;
1703 amt = sizeof (struct comp_unit);
1704 unit = bfd_zalloc (abfd, amt);
1705 unit->abfd = abfd;
1706 unit->addr_size = addr_size;
1707 unit->offset_size = offset_size;
1708 unit->abbrevs = abbrevs;
1709 unit->end_ptr = end_ptr;
1710 unit->stash = stash;
1711 unit->info_ptr_unit = info_ptr_unit;
1713 for (i = 0; i < abbrev->num_attrs; ++i)
1715 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1717 /* Store the data if it is of an attribute we want to keep in a
1718 partial symbol table. */
1719 switch (attr.name)
1721 case DW_AT_stmt_list:
1722 unit->stmtlist = 1;
1723 unit->line_offset = attr.u.val;
1724 break;
1726 case DW_AT_name:
1727 unit->name = attr.u.str;
1728 break;
1730 case DW_AT_low_pc:
1731 low_pc = attr.u.val;
1732 /* If the compilation unit DIE has a DW_AT_low_pc attribute,
1733 this is the base address to use when reading location
1734 lists or range lists. */
1735 unit->base_address = low_pc;
1736 break;
1738 case DW_AT_high_pc:
1739 high_pc = attr.u.val;
1740 break;
1742 case DW_AT_ranges:
1743 read_rangelist (unit, &unit->arange, attr.u.val);
1744 break;
1746 case DW_AT_comp_dir:
1748 char *comp_dir = attr.u.str;
1749 if (comp_dir)
1751 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1752 directory, get rid of it. */
1753 char *cp = strchr (comp_dir, ':');
1755 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
1756 comp_dir = cp + 1;
1758 unit->comp_dir = comp_dir;
1759 break;
1762 default:
1763 break;
1766 if (high_pc != 0)
1768 arange_add (unit->abfd, &unit->arange, low_pc, high_pc);
1771 unit->first_child_die_ptr = info_ptr;
1772 return unit;
1775 /* Return TRUE if UNIT contains the address given by ADDR. */
1777 static bfd_boolean
1778 comp_unit_contains_address (struct comp_unit *unit, bfd_vma addr)
1780 struct arange *arange;
1782 if (unit->error)
1783 return FALSE;
1785 arange = &unit->arange;
1788 if (addr >= arange->low && addr < arange->high)
1789 return TRUE;
1790 arange = arange->next;
1792 while (arange);
1794 return FALSE;
1797 /* If UNIT contains ADDR, set the output parameters to the values for
1798 the line containing ADDR. The output parameters, FILENAME_PTR,
1799 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
1800 to be filled in.
1802 Return TRUE if UNIT contains ADDR, and no errors were encountered;
1803 FALSE otherwise. */
1805 static bfd_boolean
1806 comp_unit_find_nearest_line (struct comp_unit *unit,
1807 bfd_vma addr,
1808 const char **filename_ptr,
1809 const char **functionname_ptr,
1810 unsigned int *linenumber_ptr,
1811 struct dwarf2_debug *stash)
1813 bfd_boolean line_p;
1814 bfd_boolean func_p;
1815 struct funcinfo *function;
1817 if (unit->error)
1818 return FALSE;
1820 if (! unit->line_table)
1822 if (! unit->stmtlist)
1824 unit->error = 1;
1825 return FALSE;
1828 unit->line_table = decode_line_info (unit, stash);
1830 if (! unit->line_table)
1832 unit->error = 1;
1833 return FALSE;
1836 if (unit->first_child_die_ptr < unit->end_ptr
1837 && ! scan_unit_for_functions (unit))
1839 unit->error = 1;
1840 return FALSE;
1844 function = NULL;
1845 func_p = lookup_address_in_function_table (unit, addr,
1846 &function, functionname_ptr);
1847 if (func_p && (function->tag == DW_TAG_inlined_subroutine))
1848 stash->inliner_chain = function;
1849 line_p = lookup_address_in_line_info_table (unit->line_table, addr,
1850 function, filename_ptr,
1851 linenumber_ptr);
1852 return line_p || func_p;
1855 /* Locate a section in a BFD containing debugging info. The search starts
1856 from the section after AFTER_SEC, or from the first section in the BFD if
1857 AFTER_SEC is NULL. The search works by examining the names of the
1858 sections. There are two permissiable names. The first is .debug_info.
1859 This is the standard DWARF2 name. The second is a prefix .gnu.linkonce.wi.
1860 This is a variation on the .debug_info section which has a checksum
1861 describing the contents appended onto the name. This allows the linker to
1862 identify and discard duplicate debugging sections for different
1863 compilation units. */
1864 #define DWARF2_DEBUG_INFO ".debug_info"
1865 #define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
1867 static asection *
1868 find_debug_info (bfd *abfd, asection *after_sec)
1870 asection * msec;
1872 if (after_sec)
1873 msec = after_sec->next;
1874 else
1875 msec = abfd->sections;
1877 while (msec)
1879 if (strcmp (msec->name, DWARF2_DEBUG_INFO) == 0)
1880 return msec;
1882 if (strncmp (msec->name, GNU_LINKONCE_INFO, strlen (GNU_LINKONCE_INFO)) == 0)
1883 return msec;
1885 msec = msec->next;
1888 return NULL;
1891 /* The DWARF2 version of find_nearest_line. Return TRUE if the line
1892 is found without error. ADDR_SIZE is the number of bytes in the
1893 initial .debug_info length field and in the abbreviation offset.
1894 You may use zero to indicate that the default value should be
1895 used. */
1897 bfd_boolean
1898 _bfd_dwarf2_find_nearest_line (bfd *abfd,
1899 asection *section,
1900 asymbol **symbols,
1901 bfd_vma offset,
1902 const char **filename_ptr,
1903 const char **functionname_ptr,
1904 unsigned int *linenumber_ptr,
1905 unsigned int addr_size,
1906 void **pinfo)
1908 /* Read each compilation unit from the section .debug_info, and check
1909 to see if it contains the address we are searching for. If yes,
1910 lookup the address, and return the line number info. If no, go
1911 on to the next compilation unit.
1913 We keep a list of all the previously read compilation units, and
1914 a pointer to the next un-read compilation unit. Check the
1915 previously read units before reading more. */
1916 struct dwarf2_debug *stash;
1918 /* What address are we looking for? */
1919 bfd_vma addr;
1921 struct comp_unit* each;
1923 stash = *pinfo;
1924 addr = offset;
1925 if (section->output_section)
1926 addr += section->output_section->vma + section->output_offset;
1927 else
1928 addr += section->vma;
1929 *filename_ptr = NULL;
1930 *functionname_ptr = NULL;
1931 *linenumber_ptr = 0;
1933 /* The DWARF2 spec says that the initial length field, and the
1934 offset of the abbreviation table, should both be 4-byte values.
1935 However, some compilers do things differently. */
1936 if (addr_size == 0)
1937 addr_size = 4;
1938 BFD_ASSERT (addr_size == 4 || addr_size == 8);
1940 if (! stash)
1942 bfd_size_type total_size;
1943 asection *msec;
1944 bfd_size_type amt = sizeof (struct dwarf2_debug);
1946 stash = bfd_zalloc (abfd, amt);
1947 if (! stash)
1948 return FALSE;
1950 *pinfo = stash;
1952 msec = find_debug_info (abfd, NULL);
1953 if (! msec)
1954 /* No dwarf2 info. Note that at this point the stash
1955 has been allocated, but contains zeros, this lets
1956 future calls to this function fail quicker. */
1957 return FALSE;
1959 /* There can be more than one DWARF2 info section in a BFD these days.
1960 Read them all in and produce one large stash. We do this in two
1961 passes - in the first pass we just accumulate the section sizes.
1962 In the second pass we read in the section's contents. The allows
1963 us to avoid reallocing the data as we add sections to the stash. */
1964 for (total_size = 0; msec; msec = find_debug_info (abfd, msec))
1965 total_size += msec->size;
1967 stash->info_ptr = bfd_alloc (abfd, total_size);
1968 if (stash->info_ptr == NULL)
1969 return FALSE;
1971 stash->info_ptr_end = stash->info_ptr;
1973 for (msec = find_debug_info (abfd, NULL);
1974 msec;
1975 msec = find_debug_info (abfd, msec))
1977 bfd_size_type size;
1978 bfd_size_type start;
1980 size = msec->size;
1981 if (size == 0)
1982 continue;
1984 start = stash->info_ptr_end - stash->info_ptr;
1986 if ((bfd_simple_get_relocated_section_contents
1987 (abfd, msec, stash->info_ptr + start, symbols)) == NULL)
1988 continue;
1990 stash->info_ptr_end = stash->info_ptr + start + size;
1993 BFD_ASSERT (stash->info_ptr_end == stash->info_ptr + total_size);
1995 stash->sec = find_debug_info (abfd, NULL);
1996 stash->sec_info_ptr = stash->info_ptr;
1997 stash->syms = symbols;
2000 /* A null info_ptr indicates that there is no dwarf2 info
2001 (or that an error occured while setting up the stash). */
2002 if (! stash->info_ptr)
2003 return FALSE;
2005 stash->inliner_chain = NULL;
2007 /* Check the previously read comp. units first. */
2008 for (each = stash->all_comp_units; each; each = each->next_unit)
2009 if (comp_unit_contains_address (each, addr))
2010 return comp_unit_find_nearest_line (each, addr, filename_ptr,
2011 functionname_ptr, linenumber_ptr,
2012 stash);
2014 /* Read each remaining comp. units checking each as they are read. */
2015 while (stash->info_ptr < stash->info_ptr_end)
2017 bfd_vma length;
2018 bfd_boolean found;
2019 unsigned int offset_size = addr_size;
2020 bfd_byte *info_ptr_unit = stash->info_ptr;
2022 length = read_4_bytes (abfd, stash->info_ptr);
2023 /* A 0xffffff length is the DWARF3 way of indicating we use
2024 64-bit offsets, instead of 32-bit offsets. */
2025 if (length == 0xffffffff)
2027 offset_size = 8;
2028 length = read_8_bytes (abfd, stash->info_ptr + 4);
2029 stash->info_ptr += 12;
2031 /* A zero length is the IRIX way of indicating 64-bit offsets,
2032 mostly because the 64-bit length will generally fit in 32
2033 bits, and the endianness helps. */
2034 else if (length == 0)
2036 offset_size = 8;
2037 length = read_4_bytes (abfd, stash->info_ptr + 4);
2038 stash->info_ptr += 8;
2040 /* In the absence of the hints above, we assume addr_size-sized
2041 offsets, for backward-compatibility with pre-DWARF3 64-bit
2042 platforms. */
2043 else if (addr_size == 8)
2045 length = read_8_bytes (abfd, stash->info_ptr);
2046 stash->info_ptr += 8;
2048 else
2049 stash->info_ptr += 4;
2051 if (length > 0)
2053 each = parse_comp_unit (abfd, stash, length, info_ptr_unit,
2054 offset_size);
2055 stash->info_ptr += length;
2057 if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
2058 == stash->sec->size)
2060 stash->sec = find_debug_info (abfd, stash->sec);
2061 stash->sec_info_ptr = stash->info_ptr;
2064 if (each)
2066 each->next_unit = stash->all_comp_units;
2067 stash->all_comp_units = each;
2069 /* DW_AT_low_pc and DW_AT_high_pc are optional for
2070 compilation units. If we don't have them (i.e.,
2071 unit->high == 0), we need to consult the line info
2072 table to see if a compilation unit contains the given
2073 address. */
2074 if (each->arange.high > 0)
2076 if (comp_unit_contains_address (each, addr))
2077 return comp_unit_find_nearest_line (each, addr,
2078 filename_ptr,
2079 functionname_ptr,
2080 linenumber_ptr,
2081 stash);
2083 else
2085 found = comp_unit_find_nearest_line (each, addr,
2086 filename_ptr,
2087 functionname_ptr,
2088 linenumber_ptr,
2089 stash);
2090 if (found)
2091 return TRUE;
2097 return FALSE;
2100 bfd_boolean
2101 _bfd_dwarf2_find_inliner_info (bfd *abfd ATTRIBUTE_UNUSED,
2102 const char **filename_ptr,
2103 const char **functionname_ptr,
2104 unsigned int *linenumber_ptr,
2105 void **pinfo)
2107 struct dwarf2_debug *stash;
2109 stash = *pinfo;
2110 if (stash)
2112 struct funcinfo *func = stash->inliner_chain;
2113 if (func && func->caller_func)
2115 *filename_ptr = func->caller_file;
2116 *functionname_ptr = func->caller_func->name;
2117 *linenumber_ptr = func->caller_line;
2118 stash->inliner_chain = func->caller_func;
2119 return (TRUE);
2123 return (FALSE);
2126 void
2127 _bfd_dwarf2_cleanup_debug_info (bfd *abfd)
2129 struct comp_unit *each;
2130 struct dwarf2_debug *stash;
2132 if (abfd == NULL || elf_tdata (abfd) == NULL)
2133 return;
2135 stash = elf_tdata (abfd)->dwarf2_find_line_info;
2137 if (stash == NULL)
2138 return;
2140 for (each = stash->all_comp_units; each; each = each->next_unit)
2142 struct abbrev_info **abbrevs = each->abbrevs;
2143 size_t i;
2145 for (i = 0; i < ABBREV_HASH_SIZE; i++)
2147 struct abbrev_info *abbrev = abbrevs[i];
2149 while (abbrev)
2151 free (abbrev->attrs);
2152 abbrev = abbrev->next;
2156 if (each->line_table)
2158 free (each->line_table->dirs);
2159 free (each->line_table->files);
2163 free (stash->dwarf_abbrev_buffer);
2164 free (stash->dwarf_line_buffer);
2165 free (stash->dwarf_ranges_buffer);