2 Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
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
15 This file is part of BFD.
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
19 the Free Software Foundation; either version 2 of the License, or (at
20 your option) any later version.
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.
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
29 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
33 #include "libiberty.h"
36 #include "elf/dwarf2.h"
38 /* The data in the .debug_line statement prologue looks like this. */
41 unsigned int total_length
;
42 unsigned short version
;
43 unsigned int prologue_length
;
44 unsigned char minimum_instruction_length
;
45 unsigned char default_is_stmt
;
47 unsigned char line_range
;
48 unsigned char opcode_base
;
49 unsigned char *standard_opcode_lengths
;
52 /* Attributes have a name and a value */
55 enum dwarf_attribute name
;
60 struct dwarf_block
*blk
;
68 /* Get at parts of an attribute structure */
70 #define DW_STRING(attr) ((attr)->u.str)
71 #define DW_UNSND(attr) ((attr)->u.unsnd)
72 #define DW_BLOCK(attr) ((attr)->u.blk)
73 #define DW_SND(attr) ((attr)->u.snd)
74 #define DW_ADDR(attr) ((attr)->u.addr)
76 /* Blocks are a bunch of untyped bytes. */
86 /* A list of all previously read comp_units. */
87 struct comp_unit
* all_comp_units
;
89 /* The next unread compilation unit within the .debug_info section.
90 Zero indicates that the .debug_info section has not been loaded
94 /* Pointer to the end of the .debug_info section memory buffer. */
97 /* Pointer to the .debug_abbrev section loaded into memory. */
98 char* dwarf_abbrev_buffer
;
100 /* Length of the loaded .debug_abbrev section. */
101 unsigned long dwarf_abbrev_size
;
106 /* A minimal decoding of DWARF2 compilation units. We only decode
107 what's needed to get to the line number information. */
111 /* Chain the previously read compilation units. */
112 struct comp_unit
* next_unit
;
114 /* Keep the bdf convenient (for memory allocation). */
117 /* The lowest and higest addresses contained in this compilation
118 unit as specified in the compilation unit header. */
122 /* The DW_AT_name attribute (for error messages). */
125 /* The abbrev hash table. */
126 struct abbrev_info
** abbrevs
;
128 /* Note that an error was found by comp_unit_find_nearest_line. */
131 /* The DW_AT_comp_dir attribute */
134 /* True if there is a line number table associated with this comp. unit. */
137 /* The offset into .debug_line of the line number table. */
138 unsigned long line_offset
;
140 /* Pointer to the first child die for the comp unit. */
141 char *first_child_die_ptr
;
143 /* The end of the comp unit. */
146 /* The decoded line number, NULL if not yet decoded. */
147 struct line_info_table
* line_table
;
149 /* A list of the functions found in this comp. unit. */
150 struct funcinfo
* function_table
;
152 /* Address size for this unit - from unit header */
153 unsigned char addr_size
;
159 The following function up to the END VERBATIM mark are
160 copied directly from dwarf2read.c. */
162 /* read dwarf information from a buffer */
165 read_1_byte (abfd
, buf
)
169 return bfd_get_8 (abfd
, (bfd_byte
*) buf
);
173 read_1_signed_byte (abfd
, buf
)
177 return bfd_get_signed_8 (abfd
, (bfd_byte
*) buf
);
181 read_2_bytes (abfd
, buf
)
185 return bfd_get_16 (abfd
, (bfd_byte
*) buf
);
190 /* This is not used. */
193 read_2_signed_bytes (abfd
, buf
)
197 return bfd_get_signed_16 (abfd
, (bfd_byte
*) buf
);
203 read_4_bytes (abfd
, buf
)
207 return bfd_get_32 (abfd
, (bfd_byte
*) buf
);
212 /* This is not used. */
215 read_4_signed_bytes (abfd
, buf
)
219 return bfd_get_signed_32 (abfd
, (bfd_byte
*) buf
);
225 read_8_bytes (abfd
, buf
)
229 return bfd_get_64 (abfd
, (bfd_byte
*) buf
);
233 read_n_bytes (abfd
, buf
, size
)
238 /* If the size of a host char is 8 bits, we can return a pointer
239 to the buffer, otherwise we have to copy the data to a buffer
240 allocated on the temporary obstack. */
245 read_string (abfd
, buf
, bytes_read_ptr
)
248 unsigned int *bytes_read_ptr
;
250 /* If the size of a host char is 8 bits, we can return a pointer
251 to the string, otherwise we have to copy the string to a buffer
252 allocated on the temporary obstack. */
258 *bytes_read_ptr
= strlen (buf
) + 1;
263 read_unsigned_leb128 (abfd
, buf
, bytes_read_ptr
)
266 unsigned int *bytes_read_ptr
;
269 unsigned int num_read
;
279 byte
= bfd_get_8 (abfd
, (bfd_byte
*) buf
);
282 result
|= ((byte
& 0x7f) << shift
);
287 * bytes_read_ptr
= num_read
;
293 read_signed_leb128 (abfd
, buf
, bytes_read_ptr
)
296 unsigned int * bytes_read_ptr
;
309 byte
= bfd_get_8 (abfd
, (bfd_byte
*) buf
);
312 result
|= ((byte
& 0x7f) << shift
);
317 if ((shift
< 32) && (byte
& 0x40))
318 result
|= -(1 << shift
);
320 * bytes_read_ptr
= num_read
;
328 read_address (unit
, buf
)
329 struct comp_unit
* unit
;
334 if (unit
->addr_size
== 4)
336 retval
= bfd_get_32 (unit
->abfd
, (bfd_byte
*) buf
);
338 retval
= bfd_get_64 (unit
->abfd
, (bfd_byte
*) buf
);
347 /* This data structure holds the information of an abbrev. */
350 unsigned int number
; /* number identifying abbrev */
351 enum dwarf_tag tag
; /* dwarf tag */
352 int has_children
; /* boolean */
353 unsigned int num_attrs
; /* number of attributes */
354 struct attr_abbrev
*attrs
; /* an array of attribute descriptions */
355 struct abbrev_info
*next
; /* next in chain */
360 enum dwarf_attribute name
;
361 enum dwarf_form form
;
364 #ifndef ABBREV_HASH_SIZE
365 #define ABBREV_HASH_SIZE 121
367 #ifndef ATTR_ALLOC_CHUNK
368 #define ATTR_ALLOC_CHUNK 4
371 /* Lookup an abbrev_info structure in the abbrev hash table. */
373 static struct abbrev_info
*
374 lookup_abbrev (number
,abbrevs
)
376 struct abbrev_info
**abbrevs
;
378 unsigned int hash_number
;
379 struct abbrev_info
*abbrev
;
381 hash_number
= number
% ABBREV_HASH_SIZE
;
382 abbrev
= abbrevs
[hash_number
];
386 if (abbrev
->number
== number
)
389 abbrev
= abbrev
->next
;
394 /* In DWARF version 2, the description of the debugging information is
395 stored in a separate .debug_abbrev section. Before we read any
396 dies from a section we read in all abbreviations and install them
399 static struct abbrev_info
**
400 read_abbrevs (abfd
, offset
)
404 struct abbrev_info
**abbrevs
;
406 struct abbrev_info
*cur_abbrev
;
407 unsigned int abbrev_number
, bytes_read
, abbrev_name
;
408 unsigned int abbrev_form
, hash_number
;
409 struct dwarf2_debug
*stash
;
411 stash
= elf_tdata(abfd
)->dwarf2_find_line_info
;
413 if (! stash
->dwarf_abbrev_buffer
)
417 msec
= bfd_get_section_by_name (abfd
, ".debug_abbrev");
420 (*_bfd_error_handler
) (_("Dwarf Error: Can't find .debug_abbrev section."));
421 bfd_set_error (bfd_error_bad_value
);
425 stash
->dwarf_abbrev_size
= bfd_get_section_size_before_reloc (msec
);
426 stash
->dwarf_abbrev_buffer
= (char*) bfd_alloc (abfd
, stash
->dwarf_abbrev_size
);
427 if (! stash
->dwarf_abbrev_buffer
)
430 if (! bfd_get_section_contents (abfd
, msec
,
431 stash
->dwarf_abbrev_buffer
, 0,
432 stash
->dwarf_abbrev_size
))
436 if (offset
> stash
->dwarf_abbrev_size
)
438 (*_bfd_error_handler
) (_("Dwarf Error: Abbrev offset (%u) bigger than abbrev size (%u)."),
439 offset
, stash
->dwarf_abbrev_size
);
440 bfd_set_error (bfd_error_bad_value
);
444 abbrevs
= (struct abbrev_info
**) bfd_zalloc (abfd
, sizeof(struct abbrev_info
*) * ABBREV_HASH_SIZE
);
446 abbrev_ptr
= stash
->dwarf_abbrev_buffer
+ offset
;
447 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
448 abbrev_ptr
+= bytes_read
;
450 /* loop until we reach an abbrev number of 0 */
451 while (abbrev_number
)
453 cur_abbrev
= (struct abbrev_info
*)bfd_zalloc (abfd
, sizeof (struct abbrev_info
));
455 /* read in abbrev header */
456 cur_abbrev
->number
= abbrev_number
;
457 cur_abbrev
->tag
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
458 abbrev_ptr
+= bytes_read
;
459 cur_abbrev
->has_children
= read_1_byte (abfd
, abbrev_ptr
);
462 /* now read in declarations */
463 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
464 abbrev_ptr
+= bytes_read
;
465 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
466 abbrev_ptr
+= bytes_read
;
469 if ((cur_abbrev
->num_attrs
% ATTR_ALLOC_CHUNK
) == 0)
471 cur_abbrev
->attrs
= (struct attr_abbrev
*)
472 bfd_realloc (cur_abbrev
->attrs
,
473 (cur_abbrev
->num_attrs
+ ATTR_ALLOC_CHUNK
)
474 * sizeof (struct attr_abbrev
));
475 if (! cur_abbrev
->attrs
)
478 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
].name
= abbrev_name
;
479 cur_abbrev
->attrs
[cur_abbrev
->num_attrs
++].form
= abbrev_form
;
480 abbrev_name
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
481 abbrev_ptr
+= bytes_read
;
482 abbrev_form
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
483 abbrev_ptr
+= bytes_read
;
486 hash_number
= abbrev_number
% ABBREV_HASH_SIZE
;
487 cur_abbrev
->next
= abbrevs
[hash_number
];
488 abbrevs
[hash_number
] = cur_abbrev
;
490 /* Get next abbreviation.
491 Under Irix6 the abbreviations for a compilation unit are not
492 always properly terminated with an abbrev number of 0.
493 Exit loop if we encounter an abbreviation which we have
494 already read (which means we are about to read the abbreviations
495 for the next compile unit) or if the end of the abbreviation
497 if ((unsigned int) (abbrev_ptr
- stash
->dwarf_abbrev_buffer
)
498 >= stash
->dwarf_abbrev_size
)
500 abbrev_number
= read_unsigned_leb128 (abfd
, abbrev_ptr
, &bytes_read
);
501 abbrev_ptr
+= bytes_read
;
502 if (lookup_abbrev (abbrev_number
,abbrevs
) != NULL
)
509 /* Read an attribute described by an abbreviated attribute. */
512 read_attribute (attr
, abbrev
, unit
, info_ptr
)
513 struct attribute
*attr
;
514 struct attr_abbrev
*abbrev
;
515 struct comp_unit
*unit
;
518 bfd
*abfd
= unit
->abfd
;
519 unsigned int bytes_read
;
520 struct dwarf_block
*blk
;
522 attr
->name
= abbrev
->name
;
523 attr
->form
= abbrev
->form
;
524 switch (abbrev
->form
)
527 case DW_FORM_ref_addr
:
528 DW_ADDR (attr
) = read_address (unit
, info_ptr
);
529 info_ptr
+= unit
->addr_size
;
532 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, sizeof (struct dwarf_block
));
533 blk
->size
= read_2_bytes (abfd
, info_ptr
);
535 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
536 info_ptr
+= blk
->size
;
537 DW_BLOCK (attr
) = blk
;
540 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, sizeof (struct dwarf_block
));
541 blk
->size
= read_4_bytes (abfd
, info_ptr
);
543 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
544 info_ptr
+= blk
->size
;
545 DW_BLOCK (attr
) = blk
;
548 DW_UNSND (attr
) = read_2_bytes (abfd
, info_ptr
);
552 DW_UNSND (attr
) = read_4_bytes (abfd
, info_ptr
);
556 DW_UNSND (attr
) = read_8_bytes (abfd
, info_ptr
);
560 DW_STRING (attr
) = read_string (abfd
, info_ptr
, &bytes_read
);
561 info_ptr
+= bytes_read
;
564 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, sizeof (struct dwarf_block
));
565 blk
->size
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
566 info_ptr
+= bytes_read
;
567 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
568 info_ptr
+= blk
->size
;
569 DW_BLOCK (attr
) = blk
;
572 blk
= (struct dwarf_block
*) bfd_alloc (abfd
, sizeof (struct dwarf_block
));
573 blk
->size
= read_1_byte (abfd
, info_ptr
);
575 blk
->data
= read_n_bytes (abfd
, info_ptr
, blk
->size
);
576 info_ptr
+= blk
->size
;
577 DW_BLOCK (attr
) = blk
;
580 DW_UNSND (attr
) = read_1_byte (abfd
, info_ptr
);
584 DW_UNSND (attr
) = read_1_byte (abfd
, info_ptr
);
588 DW_SND (attr
) = read_signed_leb128 (abfd
, info_ptr
, &bytes_read
);
589 info_ptr
+= bytes_read
;
592 DW_UNSND (attr
) = read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
593 info_ptr
+= bytes_read
;
596 DW_UNSND (attr
) = read_1_byte (abfd
, info_ptr
);
600 DW_UNSND (attr
) = read_2_bytes (abfd
, info_ptr
);
604 DW_UNSND (attr
) = read_4_bytes (abfd
, info_ptr
);
607 case DW_FORM_ref_udata
:
608 DW_UNSND (attr
) = read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
609 info_ptr
+= bytes_read
;
612 case DW_FORM_indirect
:
614 (*_bfd_error_handler
) (_("Dwarf Error: Invalid or unhandled FORM value: %d."),
616 bfd_set_error (bfd_error_bad_value
);
622 /* Source line information table routines. */
624 #define FILE_ALLOC_CHUNK 5
625 #define DIR_ALLOC_CHUNK 5
628 struct line_info
* prev_line
;
643 struct line_info_table
{
646 unsigned int num_files
;
647 unsigned int num_dirs
;
651 struct fileinfo
* files
;
652 struct line_info
* last_line
;
656 add_line_info (table
, address
, filename
, line
, column
)
657 struct line_info_table
* table
;
663 struct line_info
* info
= (struct line_info
*)
664 bfd_alloc (table
->abfd
, sizeof (struct line_info
));
666 info
->prev_line
= table
->last_line
;
667 table
->last_line
= info
;
669 info
->address
= address
;
670 info
->filename
= filename
;
672 info
->column
= column
;
676 concat_filename (table
, file
)
677 struct line_info_table
* table
;
680 char* filename
= table
->files
[file
- 1].name
;
681 if (*filename
== '/')
686 char* dirname
= (table
->files
[file
- 1].dir
687 ? table
->dirs
[table
->files
[file
- 1].dir
- 1]
689 return (char*) concat (dirname
, "/", filename
, NULL
);
693 /* Decode the line number information for UNIT. */
695 static struct line_info_table
*
696 decode_line_info (unit
)
697 struct comp_unit
*unit
;
699 bfd
*abfd
= unit
->abfd
;
701 static char* dwarf_line_buffer
= 0;
703 struct line_info_table
* table
;
708 unsigned int i
, bytes_read
;
709 char *cur_file
, *cur_dir
;
710 unsigned char op_code
, extended_op
, adj_opcode
;
712 if (! dwarf_line_buffer
)
717 msec
= bfd_get_section_by_name (abfd
, ".debug_line");
720 (*_bfd_error_handler
) (_("Dwarf Error: Can't find .debug_line section."));
721 bfd_set_error (bfd_error_bad_value
);
725 size
= bfd_get_section_size_before_reloc (msec
);
726 dwarf_line_buffer
= (char*) bfd_alloc (abfd
, size
);
727 if (! dwarf_line_buffer
)
730 if (! bfd_get_section_contents (abfd
, msec
,
731 dwarf_line_buffer
, 0,
735 /* FIXME: We ought to apply the relocs against this section before
739 table
= (struct line_info_table
*) bfd_alloc (abfd
,
740 sizeof (struct line_info_table
));
742 table
->comp_dir
= unit
->comp_dir
;
744 table
->num_files
= 0;
750 line_ptr
= dwarf_line_buffer
+ unit
->line_offset
;
752 /* read in the prologue */
753 lh
.total_length
= read_4_bytes (abfd
, line_ptr
);
755 line_end
= line_ptr
+ lh
.total_length
;
756 lh
.version
= read_2_bytes (abfd
, line_ptr
);
758 lh
.prologue_length
= read_4_bytes (abfd
, line_ptr
);
760 lh
.minimum_instruction_length
= read_1_byte (abfd
, line_ptr
);
762 lh
.default_is_stmt
= read_1_byte (abfd
, line_ptr
);
764 lh
.line_base
= read_1_signed_byte (abfd
, line_ptr
);
766 lh
.line_range
= read_1_byte (abfd
, line_ptr
);
768 lh
.opcode_base
= read_1_byte (abfd
, line_ptr
);
770 lh
.standard_opcode_lengths
= (unsigned char *)
771 bfd_alloc (abfd
, lh
.opcode_base
* sizeof (unsigned char));
773 lh
.standard_opcode_lengths
[0] = 1;
774 for (i
= 1; i
< lh
.opcode_base
; ++i
)
776 lh
.standard_opcode_lengths
[i
] = read_1_byte (abfd
, line_ptr
);
780 /* Read directory table */
781 while ((cur_dir
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
783 line_ptr
+= bytes_read
;
784 if ((table
->num_dirs
% DIR_ALLOC_CHUNK
) == 0)
786 table
->dirs
= (char **)
787 bfd_realloc (table
->dirs
,
788 (table
->num_dirs
+ DIR_ALLOC_CHUNK
) * sizeof (char *));
792 table
->dirs
[table
->num_dirs
++] = cur_dir
;
794 line_ptr
+= bytes_read
;
796 /* Read file name table */
797 while ((cur_file
= read_string (abfd
, line_ptr
, &bytes_read
)) != NULL
)
799 line_ptr
+= bytes_read
;
800 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
802 table
->files
= (struct fileinfo
*)
803 bfd_realloc (table
->files
,
804 (table
->num_files
+ FILE_ALLOC_CHUNK
)
805 * sizeof (struct fileinfo
));
809 table
->files
[table
->num_files
].name
= cur_file
;
810 table
->files
[table
->num_files
].dir
=
811 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
812 line_ptr
+= bytes_read
;
813 table
->files
[table
->num_files
].time
=
814 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
815 line_ptr
+= bytes_read
;
816 table
->files
[table
->num_files
].size
=
817 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
818 line_ptr
+= bytes_read
;
821 line_ptr
+= bytes_read
;
823 /* Read the statement sequences until there's nothing left. */
824 while (line_ptr
< line_end
)
826 /* state machine registers */
828 char* filename
= concat_filename (table
, 1);
829 unsigned int line
= 1;
830 unsigned int column
= 0;
831 int is_stmt
= lh
.default_is_stmt
;
833 int end_sequence
= 0;
835 /* Decode the table. */
836 while (! end_sequence
)
838 op_code
= read_1_byte (abfd
, line_ptr
);
842 case DW_LNS_extended_op
:
843 line_ptr
+= 1; /* ignore length */
844 extended_op
= read_1_byte (abfd
, line_ptr
);
848 case DW_LNE_end_sequence
:
850 add_line_info (table
, address
, filename
, line
, column
);
852 case DW_LNE_set_address
:
853 address
= read_address (unit
, line_ptr
);
854 line_ptr
+= unit
->addr_size
;
856 case DW_LNE_define_file
:
857 cur_file
= read_string (abfd
, line_ptr
, &bytes_read
);
858 line_ptr
+= bytes_read
;
859 if ((table
->num_files
% FILE_ALLOC_CHUNK
) == 0)
861 table
->files
= (struct fileinfo
*)
862 bfd_realloc (table
->files
,
863 (table
->num_files
+ FILE_ALLOC_CHUNK
)
864 * sizeof (struct fileinfo
));
868 table
->files
[table
->num_files
].name
= cur_file
;
869 table
->files
[table
->num_files
].dir
=
870 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
871 line_ptr
+= bytes_read
;
872 table
->files
[table
->num_files
].time
=
873 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
874 line_ptr
+= bytes_read
;
875 table
->files
[table
->num_files
].size
=
876 read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
877 line_ptr
+= bytes_read
;
881 (*_bfd_error_handler
) (_("Dwarf Error: mangled line number section."));
882 bfd_set_error (bfd_error_bad_value
);
887 add_line_info (table
, address
, filename
, line
, column
);
890 case DW_LNS_advance_pc
:
891 address
+= lh
.minimum_instruction_length
892 * read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
893 line_ptr
+= bytes_read
;
895 case DW_LNS_advance_line
:
896 line
+= read_signed_leb128 (abfd
, line_ptr
, &bytes_read
);
897 line_ptr
+= bytes_read
;
899 case DW_LNS_set_file
:
903 /* The file and directory tables are 0 based, the references
905 file
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
906 line_ptr
+= bytes_read
;
907 filename
= concat_filename (table
, file
);
910 case DW_LNS_set_column
:
911 column
= read_unsigned_leb128 (abfd
, line_ptr
, &bytes_read
);
912 line_ptr
+= bytes_read
;
914 case DW_LNS_negate_stmt
:
915 is_stmt
= (!is_stmt
);
917 case DW_LNS_set_basic_block
:
920 case DW_LNS_const_add_pc
:
921 address
+= (255 - lh
.opcode_base
) / lh
.line_range
;
923 case DW_LNS_fixed_advance_pc
:
924 address
+= read_2_bytes (abfd
, line_ptr
);
927 default: /* special operand */
928 adj_opcode
= op_code
- lh
.opcode_base
;
929 address
+= (adj_opcode
/ lh
.line_range
)
930 * lh
.minimum_instruction_length
;
931 line
+= lh
.line_base
+ (adj_opcode
% lh
.line_range
);
932 /* append row to matrix using current values */
933 add_line_info (table
, address
, filename
, line
, column
);
943 /* If ADDR is within TABLE set the output parameters and return true,
944 otherwise return false. The output parameters, FILENAME_PTR and
945 LINENUMBER_PTR, are pointers to the objects to be filled in. */
948 lookup_address_in_line_info_table (table
,
952 struct line_info_table
* table
;
954 const char **filename_ptr
;
955 unsigned int *linenumber_ptr
;
957 struct line_info
* each_line
;
958 struct line_info
* next_line
;
960 for (next_line
= 0, each_line
= table
->last_line
;
962 next_line
= each_line
, each_line
= each_line
->prev_line
)
964 if (addr
>= each_line
->address
966 || addr
< next_line
->address
))
968 *filename_ptr
= each_line
->filename
;
969 *linenumber_ptr
= each_line
->line
;
980 /* Function table functions. */
983 struct funcinfo
*prev_func
;
991 /* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return true. */
994 lookup_address_in_function_table (table
,
997 struct funcinfo
* table
;
999 const char **functionname_ptr
;
1001 struct funcinfo
* each_func
;
1003 for (each_func
= table
;
1005 each_func
= each_func
->prev_func
)
1007 if (addr
>= each_func
->low
&& addr
< each_func
->high
)
1009 *functionname_ptr
= each_func
->name
;
1020 /* DWARF2 Compilation unit functions. */
1023 /* Scan over each die in a comp. unit looking for functions to add
1024 to the function table. */
1027 scan_unit_for_functions (unit
)
1028 struct comp_unit
*unit
;
1030 bfd
*abfd
= unit
->abfd
;
1031 char *info_ptr
= unit
->first_child_die_ptr
;
1032 int nesting_level
= 1;
1034 while (nesting_level
)
1036 unsigned int abbrev_number
, bytes_read
, i
;
1037 struct abbrev_info
*abbrev
;
1038 struct attribute attr
;
1039 struct funcinfo
*func
;
1042 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1043 info_ptr
+= bytes_read
;
1045 if (! abbrev_number
)
1051 abbrev
= lookup_abbrev (abbrev_number
,unit
->abbrevs
);
1054 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %d."),
1056 bfd_set_error (bfd_error_bad_value
);
1060 if (abbrev
->tag
== DW_TAG_subprogram
)
1062 func
= (struct funcinfo
*) bfd_zalloc (abfd
, sizeof (struct funcinfo
));
1063 func
->prev_func
= unit
->function_table
;
1064 unit
->function_table
= func
;
1069 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
1071 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
1079 name
= DW_STRING (&attr
);
1081 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
1082 if (func
->name
== NULL
)
1083 func
->name
= DW_STRING (&attr
);
1086 case DW_AT_MIPS_linkage_name
:
1087 func
->name
= DW_STRING (&attr
);
1091 func
->low
= DW_ADDR (&attr
);
1095 func
->high
= DW_ADDR (&attr
);
1107 name
= DW_STRING (&attr
);
1116 if (abbrev
->has_children
)
1128 /* Parse a DWARF2 compilation unit starting at INFO_PTR. This includes
1129 the compilation unit header that proceeds the DIE's, but does not
1130 include the length field that preceeds each compilation unit header.
1131 END_PTR points one past the end of this comp unit.
1133 This routine does not read the whole compilation unit; only enough
1134 to get to the line number information for the compilation unit. */
1136 static struct comp_unit
*
1137 parse_comp_unit (abfd
, info_ptr
, end_ptr
)
1142 struct comp_unit
* unit
;
1144 unsigned short version
;
1145 unsigned int abbrev_offset
;
1146 unsigned char addr_size
;
1147 struct abbrev_info
** abbrevs
;
1149 unsigned int abbrev_number
, bytes_read
, i
;
1150 struct abbrev_info
*abbrev
;
1151 struct attribute attr
;
1153 version
= read_2_bytes (abfd
, info_ptr
);
1155 abbrev_offset
= read_4_bytes (abfd
, info_ptr
);
1157 addr_size
= read_1_byte (abfd
, info_ptr
);
1162 (*_bfd_error_handler
) (_("Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information."), version
);
1163 bfd_set_error (bfd_error_bad_value
);
1167 if (addr_size
> sizeof (bfd_vma
))
1169 (*_bfd_error_handler
) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
1172 bfd_set_error (bfd_error_bad_value
);
1176 if (addr_size
!= 4 && addr_size
!= 8)
1178 (*_bfd_error_handler
) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '4' and '8'.", addr_size
);
1179 bfd_set_error (bfd_error_bad_value
);
1183 /* Read the abbrevs for this compilation unit into a table */
1184 abbrevs
= read_abbrevs (abfd
, abbrev_offset
);
1188 abbrev_number
= read_unsigned_leb128 (abfd
, info_ptr
, &bytes_read
);
1189 info_ptr
+= bytes_read
;
1190 if (! abbrev_number
)
1192 (*_bfd_error_handler
) (_("Dwarf Error: Bad abbrev number: %d."),
1194 bfd_set_error (bfd_error_bad_value
);
1198 abbrev
= lookup_abbrev (abbrev_number
, abbrevs
);
1201 (*_bfd_error_handler
) (_("Dwarf Error: Could not find abbrev number %d."),
1203 bfd_set_error (bfd_error_bad_value
);
1207 unit
= (struct comp_unit
*) bfd_zalloc (abfd
, sizeof (struct comp_unit
));
1209 unit
->addr_size
= addr_size
;
1210 unit
->abbrevs
= abbrevs
;
1211 unit
->end_ptr
= end_ptr
;
1213 for (i
= 0; i
< abbrev
->num_attrs
; ++i
)
1215 info_ptr
= read_attribute (&attr
, &abbrev
->attrs
[i
], unit
, info_ptr
);
1217 /* Store the data if it is of an attribute we want to keep in a
1218 partial symbol table. */
1221 case DW_AT_stmt_list
:
1223 unit
->line_offset
= DW_UNSND (&attr
);
1227 unit
->name
= DW_STRING (&attr
);
1231 unit
->low
= DW_ADDR (&attr
);
1235 unit
->high
= DW_ADDR (&attr
);
1238 case DW_AT_comp_dir
:
1240 char* comp_dir
= DW_STRING (&attr
);
1243 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1244 directory, get rid of it. */
1245 char *cp
= (char*) strchr (comp_dir
, ':');
1247 if (cp
&& cp
!= comp_dir
&& cp
[-1] == '.' && cp
[1] == '/')
1250 unit
->comp_dir
= comp_dir
;
1259 unit
->first_child_die_ptr
= info_ptr
;
1267 /* Return true if UNIT contains the address given by ADDR. */
1270 comp_unit_contains_address (unit
, addr
)
1271 struct comp_unit
* unit
;
1274 return ! unit
->error
1275 && (addr
>= unit
->low
&& addr
<= unit
->high
);
1279 /* If UNIT contains ADDR, set the output parameters to the values for
1280 the line containing ADDR. The output parameters, FILENAME_PTR,
1281 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
1284 Return true of UNIT contains ADDR, and no errors were encountered;
1288 comp_unit_find_nearest_line (unit
, addr
,
1289 filename_ptr
, functionname_ptr
, linenumber_ptr
)
1290 struct comp_unit
* unit
;
1292 const char **filename_ptr
;
1293 const char **functionname_ptr
;
1294 unsigned int *linenumber_ptr
;
1302 if (! unit
->line_table
)
1304 if (! unit
->stmtlist
)
1310 unit
->line_table
= decode_line_info (unit
);
1312 if (! unit
->line_table
)
1318 if (! scan_unit_for_functions (unit
))
1325 line_p
= lookup_address_in_line_info_table (unit
->line_table
,
1329 func_p
= lookup_address_in_function_table (unit
->function_table
,
1332 return line_p
|| func_p
;
1335 /* The DWARF2 version of find_nearest line.
1336 Return true if the line is found without error. */
1339 _bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
1340 filename_ptr
, functionname_ptr
, linenumber_ptr
)
1345 const char **filename_ptr
;
1346 const char **functionname_ptr
;
1347 unsigned int *linenumber_ptr
;
1349 /* Read each compilation unit from the section .debug_info, and check
1350 to see if it contains the address we are searching for. If yes,
1351 lookup the address, and return the line number info. If no, go
1352 on to the next compilation unit.
1354 We keep a list of all the previously read compilation units, and
1355 a pointer to the next un-read compilation unit. Check the
1356 previously read units before reading more.
1359 struct dwarf2_debug
*stash
= elf_tdata (abfd
)->dwarf2_find_line_info
;
1361 /* What address are we looking for? */
1362 bfd_vma addr
= offset
+ section
->vma
;
1364 struct comp_unit
* each
;
1366 *filename_ptr
= NULL
;
1367 *functionname_ptr
= NULL
;
1368 *linenumber_ptr
= 0;
1375 stash
= elf_tdata (abfd
)->dwarf2_find_line_info
=
1376 (struct dwarf2_debug
*) bfd_zalloc (abfd
, sizeof (struct dwarf2_debug
));
1381 msec
= bfd_get_section_by_name (abfd
, ".debug_info");
1384 /* No dwarf2 info. Note that at this point the stash
1385 has been allocated, but contains zeros, this lets
1386 future calls to this function fail quicker. */
1390 size
= bfd_get_section_size_before_reloc (msec
);
1394 stash
->info_ptr
= (char *) bfd_alloc (abfd
, size
);
1396 if (! stash
->info_ptr
)
1399 if (! bfd_get_section_contents (abfd
, msec
, stash
->info_ptr
, 0, size
))
1401 stash
->info_ptr
= 0;
1405 stash
->info_ptr_end
= stash
->info_ptr
+ size
;
1407 /* FIXME: There is a problem with the contents of the .debug_info section.
1408 The 'low' and 'high' addresses of the comp_units are computed by relocs
1409 against symbols in the .text segment. We need these addresses in
1410 order to determine the nearest line number, and so we have to resolve
1411 the relocs. There is a similar problem when the .debug_line section is
1414 Unfortunately getting hold of the reloc information is hard... */
1417 /* A null info_ptr indicates that there is no dwarf2 info
1418 (or that an error occured while setting up the stash). */
1420 if (! stash
->info_ptr
)
1423 /* Check the previously read comp. units first. */
1425 for (each
= stash
->all_comp_units
; each
; each
= each
->next_unit
)
1427 if (comp_unit_contains_address (each
, addr
))
1428 return comp_unit_find_nearest_line (each
, addr
,
1434 /* Read each remaining comp. units checking each as they are read. */
1435 while (stash
->info_ptr
< stash
->info_ptr_end
)
1437 struct comp_unit
* each
;
1438 unsigned int length
;
1440 length
= read_4_bytes (abfd
, stash
->info_ptr
);
1441 stash
->info_ptr
+= 4;
1445 each
= parse_comp_unit (abfd
, stash
->info_ptr
,
1446 stash
->info_ptr
+ length
);
1447 stash
->info_ptr
+= length
;
1451 each
->next_unit
= stash
->all_comp_units
;
1452 stash
->all_comp_units
= each
;
1454 if (comp_unit_contains_address (each
, addr
))
1455 return comp_unit_find_nearest_line (each
, addr
,