* read.c (read_a_source_file): Conditionally allow matched "
[binutils.git] / bfd / dwarf2.c
blob3af16455ff85994f81c5fc59fa984a7700c6d2a2
1 /* DWARF 2 support.
2 Copyright 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
5 (gavin@cygnus.com).
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. */
31 #include "bfd.h"
32 #include "sysdep.h"
33 #include "libiberty.h"
34 #include "libbfd.h"
35 #include "elf-bfd.h"
36 #include "elf/dwarf2.h"
38 /* The data in the .debug_line statement prologue looks like this. */
39 struct line_head
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;
46 int line_base;
47 unsigned char line_range;
48 unsigned char opcode_base;
49 unsigned char *standard_opcode_lengths;
52 /* Attributes have a name and a value */
53 struct attribute
55 enum dwarf_attribute name;
56 enum dwarf_form form;
57 union
59 char *str;
60 struct dwarf_block *blk;
61 unsigned int unsnd;
62 int snd;
63 bfd_vma addr;
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. */
77 struct dwarf_block
79 unsigned int size;
80 char *data;
84 struct dwarf2_debug {
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
91 into a buffer yet.*/
92 char* info_ptr;
94 /* Pointer to the end of the .debug_info section memory buffer. */
95 char* info_ptr_end;
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. */
109 struct comp_unit {
111 /* Chain the previously read compilation units. */
112 struct comp_unit* next_unit;
114 /* Keep the bdf convenient (for memory allocation). */
115 bfd* abfd;
117 /* The lowest and higest addresses contained in this compilation
118 unit as specified in the compilation unit header. */
119 bfd_vma low;
120 bfd_vma high;
122 /* The DW_AT_name attribute (for error messages). */
123 char* name;
125 /* The abbrev hash table. */
126 struct abbrev_info** abbrevs;
128 /* Note that an error was found by comp_unit_find_nearest_line. */
129 int error;
131 /* The DW_AT_comp_dir attribute */
132 char* comp_dir;
134 /* True if there is a line number table associated with this comp. unit. */
135 int stmtlist;
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. */
144 char *end_ptr;
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;
158 /* VERBATIM
159 The following function up to the END VERBATIM mark are
160 copied directly from dwarf2read.c. */
162 /* read dwarf information from a buffer */
164 static unsigned int
165 read_1_byte (abfd, buf)
166 bfd *abfd;
167 char *buf;
169 return bfd_get_8 (abfd, (bfd_byte *) buf);
172 static int
173 read_1_signed_byte (abfd, buf)
174 bfd *abfd;
175 char *buf;
177 return bfd_get_signed_8 (abfd, (bfd_byte *) buf);
180 static unsigned int
181 read_2_bytes (abfd, buf)
182 bfd *abfd;
183 char *buf;
185 return bfd_get_16 (abfd, (bfd_byte *) buf);
188 #if 0
190 /* This is not used. */
192 static int
193 read_2_signed_bytes (abfd, buf)
194 bfd *abfd;
195 char *buf;
197 return bfd_get_signed_16 (abfd, (bfd_byte *) buf);
200 #endif
202 static unsigned int
203 read_4_bytes (abfd, buf)
204 bfd *abfd;
205 char *buf;
207 return bfd_get_32 (abfd, (bfd_byte *) buf);
210 #if 0
212 /* This is not used. */
214 static int
215 read_4_signed_bytes (abfd, buf)
216 bfd *abfd;
217 char *buf;
219 return bfd_get_signed_32 (abfd, (bfd_byte *) buf);
222 #endif
224 static unsigned int
225 read_8_bytes (abfd, buf)
226 bfd *abfd;
227 char *buf;
229 return bfd_get_64 (abfd, (bfd_byte *) buf);
232 static char *
233 read_n_bytes (abfd, buf, size)
234 bfd * abfd;
235 char *buf;
236 unsigned int 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. */
241 return buf;
244 static char *
245 read_string (abfd, buf, bytes_read_ptr)
246 bfd *abfd;
247 char *buf;
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. */
253 if (*buf == '\0')
255 *bytes_read_ptr = 1;
256 return NULL;
258 *bytes_read_ptr = strlen (buf) + 1;
259 return buf;
262 static unsigned int
263 read_unsigned_leb128 (abfd, buf, bytes_read_ptr)
264 bfd *abfd;
265 char *buf;
266 unsigned int *bytes_read_ptr;
268 unsigned int result;
269 unsigned int num_read;
270 int shift;
271 unsigned char byte;
273 result = 0;
274 shift = 0;
275 num_read = 0;
279 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
280 buf ++;
281 num_read ++;
282 result |= ((byte & 0x7f) << shift);
283 shift += 7;
285 while (byte & 0x80);
287 * bytes_read_ptr = num_read;
289 return result;
292 static int
293 read_signed_leb128 (abfd, buf, bytes_read_ptr)
294 bfd * abfd;
295 char * buf;
296 unsigned int * bytes_read_ptr;
298 int result;
299 int shift;
300 int num_read;
301 unsigned char byte;
303 result = 0;
304 shift = 0;
305 num_read = 0;
309 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
310 buf ++;
311 num_read ++;
312 result |= ((byte & 0x7f) << shift);
313 shift += 7;
315 while (byte & 0x80);
317 if ((shift < 32) && (byte & 0x40))
318 result |= -(1 << shift);
320 * bytes_read_ptr = num_read;
322 return result;
325 /* END VERBATIM */
327 static bfd_vma
328 read_address (unit, buf)
329 struct comp_unit* unit;
330 char *buf;
332 bfd_vma retval = 0;
334 if (unit->addr_size == 4)
336 retval = bfd_get_32 (unit->abfd, (bfd_byte *) buf);
337 } else {
338 retval = bfd_get_64 (unit->abfd, (bfd_byte *) buf);
340 return retval;
347 /* This data structure holds the information of an abbrev. */
348 struct abbrev_info
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 */
358 struct attr_abbrev
360 enum dwarf_attribute name;
361 enum dwarf_form form;
364 #ifndef ABBREV_HASH_SIZE
365 #define ABBREV_HASH_SIZE 121
366 #endif
367 #ifndef ATTR_ALLOC_CHUNK
368 #define ATTR_ALLOC_CHUNK 4
369 #endif
371 /* Lookup an abbrev_info structure in the abbrev hash table. */
373 static struct abbrev_info *
374 lookup_abbrev (number,abbrevs)
375 unsigned int number;
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];
384 while (abbrev)
386 if (abbrev->number == number)
387 return abbrev;
388 else
389 abbrev = abbrev->next;
391 return NULL;
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
397 in a hash table. */
399 static struct abbrev_info**
400 read_abbrevs (abfd, offset)
401 bfd * abfd;
402 unsigned int offset;
404 struct abbrev_info **abbrevs;
405 char *abbrev_ptr;
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)
415 asection *msec;
417 msec = bfd_get_section_by_name (abfd, ".debug_abbrev");
418 if (! msec)
420 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_abbrev section."));
421 bfd_set_error (bfd_error_bad_value);
422 return 0;
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)
428 return 0;
430 if (! bfd_get_section_contents (abfd, msec,
431 stash->dwarf_abbrev_buffer, 0,
432 stash->dwarf_abbrev_size))
433 return 0;
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);
441 return 0;
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);
460 abbrev_ptr += 1;
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;
467 while (abbrev_name)
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)
476 return 0;
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
496 table is reached. */
497 if ((unsigned int) (abbrev_ptr - stash->dwarf_abbrev_buffer)
498 >= stash->dwarf_abbrev_size)
499 break;
500 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
501 abbrev_ptr += bytes_read;
502 if (lookup_abbrev (abbrev_number,abbrevs) != NULL)
503 break;
506 return abbrevs;
509 /* Read an attribute described by an abbreviated attribute. */
511 static char *
512 read_attribute (attr, abbrev, unit, info_ptr)
513 struct attribute *attr;
514 struct attr_abbrev *abbrev;
515 struct comp_unit *unit;
516 char *info_ptr;
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)
526 case DW_FORM_addr:
527 case DW_FORM_ref_addr:
528 DW_ADDR (attr) = read_address (unit, info_ptr);
529 info_ptr += unit->addr_size;
530 break;
531 case DW_FORM_block2:
532 blk = (struct dwarf_block *) bfd_alloc (abfd, sizeof (struct dwarf_block));
533 blk->size = read_2_bytes (abfd, info_ptr);
534 info_ptr += 2;
535 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
536 info_ptr += blk->size;
537 DW_BLOCK (attr) = blk;
538 break;
539 case DW_FORM_block4:
540 blk = (struct dwarf_block *) bfd_alloc (abfd, sizeof (struct dwarf_block));
541 blk->size = read_4_bytes (abfd, info_ptr);
542 info_ptr += 4;
543 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
544 info_ptr += blk->size;
545 DW_BLOCK (attr) = blk;
546 break;
547 case DW_FORM_data2:
548 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
549 info_ptr += 2;
550 break;
551 case DW_FORM_data4:
552 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
553 info_ptr += 4;
554 break;
555 case DW_FORM_data8:
556 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
557 info_ptr += 8;
558 break;
559 case DW_FORM_string:
560 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
561 info_ptr += bytes_read;
562 break;
563 case DW_FORM_block:
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;
570 break;
571 case DW_FORM_block1:
572 blk = (struct dwarf_block *) bfd_alloc (abfd, sizeof (struct dwarf_block));
573 blk->size = read_1_byte (abfd, info_ptr);
574 info_ptr += 1;
575 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
576 info_ptr += blk->size;
577 DW_BLOCK (attr) = blk;
578 break;
579 case DW_FORM_data1:
580 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
581 info_ptr += 1;
582 break;
583 case DW_FORM_flag:
584 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
585 info_ptr += 1;
586 break;
587 case DW_FORM_sdata:
588 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
589 info_ptr += bytes_read;
590 break;
591 case DW_FORM_udata:
592 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
593 info_ptr += bytes_read;
594 break;
595 case DW_FORM_ref1:
596 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
597 info_ptr += 1;
598 break;
599 case DW_FORM_ref2:
600 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
601 info_ptr += 2;
602 break;
603 case DW_FORM_ref4:
604 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
605 info_ptr += 4;
606 break;
607 case DW_FORM_ref_udata:
608 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
609 info_ptr += bytes_read;
610 break;
611 case DW_FORM_strp:
612 case DW_FORM_indirect:
613 default:
614 (*_bfd_error_handler) (_("Dwarf Error: Invalid or unhandled FORM value: %d."),
615 abbrev->form);
616 bfd_set_error (bfd_error_bad_value);
618 return info_ptr;
622 /* Source line information table routines. */
624 #define FILE_ALLOC_CHUNK 5
625 #define DIR_ALLOC_CHUNK 5
627 struct line_info {
628 struct line_info* prev_line;
630 bfd_vma address;
631 char* filename;
632 unsigned int line;
633 unsigned int column;
634 int end_sequence; /* end of (sequential) code sequence */
637 struct fileinfo {
638 char *name;
639 unsigned int dir;
640 unsigned int time;
641 unsigned int size;
644 struct line_info_table {
645 bfd* abfd;
647 unsigned int num_files;
648 unsigned int num_dirs;
650 char* comp_dir;
651 char** dirs;
652 struct fileinfo* files;
653 struct line_info* last_line;
656 static void
657 add_line_info (table, address, filename, line, column, end_sequence)
658 struct line_info_table* table;
659 bfd_vma address;
660 char* filename;
661 unsigned int line;
662 unsigned int column;
663 int end_sequence;
665 struct line_info* info = (struct line_info*)
666 bfd_alloc (table->abfd, sizeof (struct line_info));
668 info->prev_line = table->last_line;
669 table->last_line = info;
671 info->address = address;
672 info->filename = filename;
673 info->line = line;
674 info->column = column;
675 info->end_sequence = end_sequence;
678 static char*
679 concat_filename (table, file)
680 struct line_info_table* table;
681 unsigned int file;
683 char* filename;
685 if (file - 1 >= table->num_files)
687 (*_bfd_error_handler) (_("Dwarf Error: mangled line number "
688 "section (bad file number)."));
689 return "<unknown>";
692 filename = table->files[file - 1].name;
693 if (*filename == '/')
694 return filename;
696 else
698 char* dirname = (table->files[file - 1].dir
699 ? table->dirs[table->files[file - 1].dir - 1]
700 : table->comp_dir);
701 return (char*) concat (dirname, "/", filename, NULL);
705 /* Decode the line number information for UNIT. */
707 static struct line_info_table*
708 decode_line_info (unit)
709 struct comp_unit *unit;
711 bfd *abfd = unit->abfd;
713 static char* dwarf_line_buffer = 0;
715 struct line_info_table* table;
717 char *line_ptr;
718 char *line_end;
719 struct line_head lh;
720 unsigned int i, bytes_read;
721 char *cur_file, *cur_dir;
722 unsigned char op_code, extended_op, adj_opcode;
723 #if 0
724 /* This optimization unfortunately does not work well on programs
725 that have multiple sections containing text (such as Linux which
726 uses .text, and .text.init, for example. */
727 bfd_vma hi_pc = 0, lo_pc = ~ (bfd_vma) 0;
728 #endif
730 if (! dwarf_line_buffer)
732 asection *msec;
733 unsigned long size;
735 msec = bfd_get_section_by_name (abfd, ".debug_line");
736 if (! msec)
738 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_line section."));
739 bfd_set_error (bfd_error_bad_value);
740 return 0;
743 size = bfd_get_section_size_before_reloc (msec);
744 dwarf_line_buffer = (char*) bfd_alloc (abfd, size);
745 if (! dwarf_line_buffer)
746 return 0;
748 if (! bfd_get_section_contents (abfd, msec,
749 dwarf_line_buffer, 0,
750 size))
751 return 0;
753 /* FIXME: We ought to apply the relocs against this section before
754 we process it.... */
757 table = (struct line_info_table*) bfd_alloc (abfd,
758 sizeof (struct line_info_table));
759 table->abfd = abfd;
760 table->comp_dir = unit->comp_dir;
762 table->num_files = 0;
763 table->files = NULL;
765 table->num_dirs = 0;
766 table->dirs = NULL;
768 table->files = NULL;
769 table->last_line = NULL;
771 line_ptr = dwarf_line_buffer + unit->line_offset;
773 /* read in the prologue */
774 lh.total_length = read_4_bytes (abfd, line_ptr);
775 line_ptr += 4;
776 line_end = line_ptr + lh.total_length;
777 lh.version = read_2_bytes (abfd, line_ptr);
778 line_ptr += 2;
779 lh.prologue_length = read_4_bytes (abfd, line_ptr);
780 line_ptr += 4;
781 lh.minimum_instruction_length = read_1_byte (abfd, line_ptr);
782 line_ptr += 1;
783 lh.default_is_stmt = read_1_byte (abfd, line_ptr);
784 line_ptr += 1;
785 lh.line_base = read_1_signed_byte (abfd, line_ptr);
786 line_ptr += 1;
787 lh.line_range = read_1_byte (abfd, line_ptr);
788 line_ptr += 1;
789 lh.opcode_base = read_1_byte (abfd, line_ptr);
790 line_ptr += 1;
791 lh.standard_opcode_lengths = (unsigned char *)
792 bfd_alloc (abfd, lh.opcode_base * sizeof (unsigned char));
794 lh.standard_opcode_lengths[0] = 1;
795 for (i = 1; i < lh.opcode_base; ++i)
797 lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
798 line_ptr += 1;
801 /* Read directory table */
802 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
804 line_ptr += bytes_read;
805 if ((table->num_dirs % DIR_ALLOC_CHUNK) == 0)
807 table->dirs = (char **)
808 bfd_realloc (table->dirs,
809 (table->num_dirs + DIR_ALLOC_CHUNK) * sizeof (char *));
810 if (! table->dirs)
811 return 0;
813 table->dirs[table->num_dirs++] = cur_dir;
815 line_ptr += bytes_read;
817 /* Read file name table */
818 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
820 line_ptr += bytes_read;
821 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
823 table->files = (struct fileinfo *)
824 bfd_realloc (table->files,
825 (table->num_files + FILE_ALLOC_CHUNK)
826 * sizeof (struct fileinfo));
827 if (! table->files)
828 return 0;
830 table->files[table->num_files].name = cur_file;
831 table->files[table->num_files].dir =
832 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
833 line_ptr += bytes_read;
834 table->files[table->num_files].time =
835 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
836 line_ptr += bytes_read;
837 table->files[table->num_files].size =
838 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
839 line_ptr += bytes_read;
840 table->num_files++;
842 line_ptr += bytes_read;
844 /* Read the statement sequences until there's nothing left. */
845 while (line_ptr < line_end)
847 /* state machine registers */
848 bfd_vma address = 0;
849 char* filename = concat_filename (table, 1);
850 unsigned int line = 1;
851 unsigned int column = 0;
852 int is_stmt = lh.default_is_stmt;
853 int basic_block = 0;
854 int end_sequence = 0;
855 boolean first_time = true;
857 /* Decode the table. */
858 while (! end_sequence)
860 op_code = read_1_byte (abfd, line_ptr);
861 line_ptr += 1;
862 switch (op_code)
864 case DW_LNS_extended_op:
865 line_ptr += 1; /* ignore length */
866 extended_op = read_1_byte (abfd, line_ptr);
867 line_ptr += 1;
868 switch (extended_op)
870 case DW_LNE_end_sequence:
871 end_sequence = 1;
872 add_line_info (table, address, filename, line, column, end_sequence);
873 break;
874 case DW_LNE_set_address:
875 address = read_address (unit, line_ptr);
876 line_ptr += unit->addr_size;
877 break;
878 case DW_LNE_define_file:
879 cur_file = read_string (abfd, line_ptr, &bytes_read);
880 line_ptr += bytes_read;
881 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
883 table->files = (struct fileinfo *)
884 bfd_realloc (table->files,
885 (table->num_files + FILE_ALLOC_CHUNK)
886 * sizeof (struct fileinfo));
887 if (! table->files)
888 return 0;
890 table->files[table->num_files].name = cur_file;
891 table->files[table->num_files].dir =
892 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
893 line_ptr += bytes_read;
894 table->files[table->num_files].time =
895 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
896 line_ptr += bytes_read;
897 table->files[table->num_files].size =
898 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
899 line_ptr += bytes_read;
900 table->num_files++;
901 break;
902 default:
903 (*_bfd_error_handler) (_("Dwarf Error: mangled line number section."));
904 bfd_set_error (bfd_error_bad_value);
905 return 0;
907 break;
908 case DW_LNS_copy:
909 add_line_info (table, address, filename, line, column, 0);
910 basic_block = 0;
911 break;
912 case DW_LNS_advance_pc:
913 address += lh.minimum_instruction_length
914 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
915 line_ptr += bytes_read;
916 break;
917 case DW_LNS_advance_line:
918 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
919 line_ptr += bytes_read;
920 break;
921 case DW_LNS_set_file:
923 unsigned int file;
925 /* The file and directory tables are 0 based, the references
926 are 1 based. */
927 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
928 line_ptr += bytes_read;
929 filename = concat_filename (table, file);
930 break;
932 case DW_LNS_set_column:
933 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
934 line_ptr += bytes_read;
935 break;
936 case DW_LNS_negate_stmt:
937 is_stmt = (!is_stmt);
938 break;
939 case DW_LNS_set_basic_block:
940 basic_block = 1;
941 break;
942 case DW_LNS_const_add_pc:
943 address += lh.minimum_instruction_length
944 * ((255 - lh.opcode_base) / lh.line_range);
945 break;
946 case DW_LNS_fixed_advance_pc:
947 address += read_2_bytes (abfd, line_ptr);
948 line_ptr += 2;
949 break;
950 default: /* special operand */
951 adj_opcode = op_code - lh.opcode_base;
952 address += (adj_opcode / lh.line_range)
953 * lh.minimum_instruction_length;
954 line += lh.line_base + (adj_opcode % lh.line_range);
955 /* append row to matrix using current values */
956 add_line_info (table, address, filename, line, column, 0);
957 basic_block = 1;
959 #if 0
960 if (unit->high == 0)
962 if (address > hi_pc)
963 hi_pc = address;
964 if (address < lo_pc)
965 lo_pc = address;
967 #endif
970 #if 0
971 if (unit->high == 0 && hi_pc != 0)
973 unit->high = hi_pc;
974 unit->low = lo_pc;
976 #endif
978 return table;
982 /* If ADDR is within TABLE set the output parameters and return true,
983 otherwise return false. The output parameters, FILENAME_PTR and
984 LINENUMBER_PTR, are pointers to the objects to be filled in. */
986 static boolean
987 lookup_address_in_line_info_table (table,
988 addr,
989 filename_ptr,
990 linenumber_ptr)
991 struct line_info_table* table;
992 bfd_vma addr;
993 const char **filename_ptr;
994 unsigned int *linenumber_ptr;
996 struct line_info* next_line = table->last_line;
997 struct line_info* each_line;
999 if (!next_line)
1000 return false;
1002 each_line = next_line->prev_line;
1004 while (each_line && next_line)
1006 if (!each_line->end_sequence
1007 && addr >= each_line->address && addr < next_line->address)
1009 *filename_ptr = each_line->filename;
1010 *linenumber_ptr = each_line->line;
1011 return true;
1013 next_line = each_line;
1014 each_line = each_line->prev_line;
1017 return false;
1023 /* Function table functions. */
1025 struct funcinfo {
1026 struct funcinfo *prev_func;
1028 char* name;
1029 bfd_vma low;
1030 bfd_vma high;
1034 /* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return true. */
1036 static boolean
1037 lookup_address_in_function_table (table,
1038 addr,
1039 functionname_ptr)
1040 struct funcinfo* table;
1041 bfd_vma addr;
1042 const char **functionname_ptr;
1044 struct funcinfo* each_func;
1046 for (each_func = table;
1047 each_func;
1048 each_func = each_func->prev_func)
1050 if (addr >= each_func->low && addr < each_func->high)
1052 *functionname_ptr = each_func->name;
1053 return true;
1057 return false;
1063 /* DWARF2 Compilation unit functions. */
1066 /* Scan over each die in a comp. unit looking for functions to add
1067 to the function table. */
1069 static boolean
1070 scan_unit_for_functions (unit)
1071 struct comp_unit *unit;
1073 bfd *abfd = unit->abfd;
1074 char *info_ptr = unit->first_child_die_ptr;
1075 int nesting_level = 1;
1077 while (nesting_level)
1079 unsigned int abbrev_number, bytes_read, i;
1080 struct abbrev_info *abbrev;
1081 struct attribute attr;
1082 struct funcinfo *func;
1083 char* name = 0;
1085 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1086 info_ptr += bytes_read;
1088 if (! abbrev_number)
1090 nesting_level--;
1091 continue;
1094 abbrev = lookup_abbrev (abbrev_number,unit->abbrevs);
1095 if (! abbrev)
1097 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %d."),
1098 abbrev_number);
1099 bfd_set_error (bfd_error_bad_value);
1100 return false;
1103 if (abbrev->tag == DW_TAG_subprogram)
1105 func = (struct funcinfo*) bfd_zalloc (abfd, sizeof (struct funcinfo));
1106 func->prev_func = unit->function_table;
1107 unit->function_table = func;
1109 else
1110 func = NULL;
1112 for (i = 0; i < abbrev->num_attrs; ++i)
1114 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1116 if (func)
1118 switch (attr.name)
1120 case DW_AT_name:
1122 name = DW_STRING (&attr);
1124 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
1125 if (func->name == NULL)
1126 func->name = DW_STRING (&attr);
1127 break;
1129 case DW_AT_MIPS_linkage_name:
1130 func->name = DW_STRING (&attr);
1131 break;
1133 case DW_AT_low_pc:
1134 func->low = DW_ADDR (&attr);
1135 break;
1137 case DW_AT_high_pc:
1138 func->high = DW_ADDR (&attr);
1139 break;
1141 default:
1142 break;
1145 else
1147 switch (attr.name)
1149 case DW_AT_name:
1150 name = DW_STRING (&attr);
1151 break;
1153 default:
1154 break;
1159 if (abbrev->has_children)
1160 nesting_level++;
1163 return true;
1171 /* Parse a DWARF2 compilation unit starting at INFO_PTR. This includes
1172 the compilation unit header that proceeds the DIE's, but does not
1173 include the length field that preceeds each compilation unit header.
1174 END_PTR points one past the end of this comp unit.
1176 This routine does not read the whole compilation unit; only enough
1177 to get to the line number information for the compilation unit. */
1179 static struct comp_unit *
1180 parse_comp_unit (abfd, info_ptr, end_ptr)
1181 bfd* abfd;
1182 char* info_ptr;
1183 char* end_ptr;
1185 struct comp_unit* unit;
1187 unsigned short version;
1188 unsigned int abbrev_offset;
1189 unsigned char addr_size;
1190 struct abbrev_info** abbrevs;
1192 unsigned int abbrev_number, bytes_read, i;
1193 struct abbrev_info *abbrev;
1194 struct attribute attr;
1196 version = read_2_bytes (abfd, info_ptr);
1197 info_ptr += 2;
1198 abbrev_offset = read_4_bytes (abfd, info_ptr);
1199 info_ptr += 4;
1200 addr_size = read_1_byte (abfd, info_ptr);
1201 info_ptr += 1;
1203 if (version != 2)
1205 (*_bfd_error_handler) (_("Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information."), version );
1206 bfd_set_error (bfd_error_bad_value);
1207 return 0;
1210 if (addr_size > sizeof (bfd_vma))
1212 (*_bfd_error_handler) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
1213 addr_size,
1214 sizeof (bfd_vma));
1215 bfd_set_error (bfd_error_bad_value);
1216 return 0;
1219 if (addr_size != 4 && addr_size != 8)
1221 (*_bfd_error_handler) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '4' and '8'.", addr_size );
1222 bfd_set_error (bfd_error_bad_value);
1223 return 0;
1226 /* Read the abbrevs for this compilation unit into a table */
1227 abbrevs = read_abbrevs (abfd, abbrev_offset);
1228 if (! abbrevs)
1229 return 0;
1231 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1232 info_ptr += bytes_read;
1233 if (! abbrev_number)
1235 (*_bfd_error_handler) (_("Dwarf Error: Bad abbrev number: %d."),
1236 abbrev_number);
1237 bfd_set_error (bfd_error_bad_value);
1238 return 0;
1241 abbrev = lookup_abbrev (abbrev_number, abbrevs);
1242 if (! abbrev)
1244 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %d."),
1245 abbrev_number);
1246 bfd_set_error (bfd_error_bad_value);
1247 return 0;
1250 unit = (struct comp_unit*) bfd_zalloc (abfd, sizeof (struct comp_unit));
1251 unit->abfd = abfd;
1252 unit->addr_size = addr_size;
1253 unit->abbrevs = abbrevs;
1254 unit->end_ptr = end_ptr;
1256 for (i = 0; i < abbrev->num_attrs; ++i)
1258 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1260 /* Store the data if it is of an attribute we want to keep in a
1261 partial symbol table. */
1262 switch (attr.name)
1264 case DW_AT_stmt_list:
1265 unit->stmtlist = 1;
1266 unit->line_offset = DW_UNSND (&attr);
1267 break;
1269 case DW_AT_name:
1270 unit->name = DW_STRING (&attr);
1271 break;
1273 case DW_AT_low_pc:
1274 unit->low = DW_ADDR (&attr);
1275 break;
1277 case DW_AT_high_pc:
1278 unit->high = DW_ADDR (&attr);
1279 break;
1281 case DW_AT_comp_dir:
1283 char* comp_dir = DW_STRING (&attr);
1284 if (comp_dir)
1286 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1287 directory, get rid of it. */
1288 char *cp = (char*) strchr (comp_dir, ':');
1290 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
1291 comp_dir = cp + 1;
1293 unit->comp_dir = comp_dir;
1294 break;
1297 default:
1298 break;
1302 unit->first_child_die_ptr = info_ptr;
1303 return unit;
1310 /* Return true if UNIT contains the address given by ADDR. */
1312 static boolean
1313 comp_unit_contains_address (unit, addr)
1314 struct comp_unit* unit;
1315 bfd_vma addr;
1317 return ! unit->error
1318 && (addr >= unit->low && addr <= unit->high);
1322 /* If UNIT contains ADDR, set the output parameters to the values for
1323 the line containing ADDR. The output parameters, FILENAME_PTR,
1324 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
1325 to be filled in.
1327 Return true of UNIT contains ADDR, and no errors were encountered;
1328 false otherwise. */
1330 static boolean
1331 comp_unit_find_nearest_line (unit, addr,
1332 filename_ptr, functionname_ptr, linenumber_ptr)
1333 struct comp_unit* unit;
1334 bfd_vma addr;
1335 const char **filename_ptr;
1336 const char **functionname_ptr;
1337 unsigned int *linenumber_ptr;
1339 boolean line_p;
1340 boolean func_p;
1342 if (unit->error)
1343 return false;
1345 if (! unit->line_table)
1347 if (! unit->stmtlist)
1349 unit->error = 1;
1350 return false;
1353 unit->line_table = decode_line_info (unit);
1355 if (! unit->line_table)
1357 unit->error = 1;
1358 return false;
1361 if (! scan_unit_for_functions (unit))
1363 unit->error = 1;
1364 return false;
1368 line_p = lookup_address_in_line_info_table (unit->line_table,
1369 addr,
1370 filename_ptr,
1371 linenumber_ptr);
1372 func_p = lookup_address_in_function_table (unit->function_table,
1373 addr,
1374 functionname_ptr);
1375 return line_p || func_p;
1378 /* The DWARF2 version of find_nearest line.
1379 Return true if the line is found without error. */
1381 boolean
1382 _bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
1383 filename_ptr, functionname_ptr, linenumber_ptr)
1384 bfd *abfd;
1385 asection *section;
1386 asymbol **symbols;
1387 bfd_vma offset;
1388 const char **filename_ptr;
1389 const char **functionname_ptr;
1390 unsigned int *linenumber_ptr;
1392 /* Read each compilation unit from the section .debug_info, and check
1393 to see if it contains the address we are searching for. If yes,
1394 lookup the address, and return the line number info. If no, go
1395 on to the next compilation unit.
1397 We keep a list of all the previously read compilation units, and
1398 a pointer to the next un-read compilation unit. Check the
1399 previously read units before reading more.
1402 struct dwarf2_debug *stash = elf_tdata (abfd)->dwarf2_find_line_info;
1404 /* What address are we looking for? */
1405 bfd_vma addr = offset + section->vma;
1407 struct comp_unit* each;
1409 boolean found;
1411 *filename_ptr = NULL;
1412 *functionname_ptr = NULL;
1413 *linenumber_ptr = 0;
1415 if (! stash)
1417 asection *msec;
1418 unsigned long size;
1420 stash = elf_tdata (abfd)->dwarf2_find_line_info =
1421 (struct dwarf2_debug*) bfd_zalloc (abfd, sizeof (struct dwarf2_debug));
1423 if (! stash)
1424 return false;
1426 msec = bfd_get_section_by_name (abfd, ".debug_info");
1427 if (! msec)
1429 /* No dwarf2 info. Note that at this point the stash
1430 has been allocated, but contains zeros, this lets
1431 future calls to this function fail quicker. */
1432 return false;
1435 size = bfd_get_section_size_before_reloc (msec);
1436 if (size == 0)
1437 return false;
1439 stash->info_ptr = (char *) bfd_alloc (abfd, size);
1441 if (! stash->info_ptr)
1442 return false;
1444 if (! bfd_get_section_contents (abfd, msec, stash->info_ptr, 0, size))
1446 stash->info_ptr = 0;
1447 return false;
1450 stash->info_ptr_end = stash->info_ptr + size;
1452 /* FIXME: There is a problem with the contents of the
1453 .debug_info section. The 'low' and 'high' addresses of the
1454 comp_units are computed by relocs against symbols in the
1455 .text segment. We need these addresses in order to determine
1456 the nearest line number, and so we have to resolve the
1457 relocs. There is a similar problem when the .debug_line
1458 section is processed as well (e.g., there may be relocs
1459 against the operand of the DW_LNE_set_address operator).
1461 Unfortunately getting hold of the reloc information is hard...
1463 For now, this means that disassembling object files (as
1464 opposed to fully executables) does not always work as well as
1465 we would like. */
1468 /* A null info_ptr indicates that there is no dwarf2 info
1469 (or that an error occured while setting up the stash). */
1471 if (! stash->info_ptr)
1472 return false;
1474 /* Check the previously read comp. units first. */
1476 for (each = stash->all_comp_units; each; each = each->next_unit)
1478 if (each->high > 0)
1480 if (comp_unit_contains_address (each, addr))
1481 return comp_unit_find_nearest_line (each, addr,
1482 filename_ptr,
1483 functionname_ptr,
1484 linenumber_ptr);
1486 else
1488 found = comp_unit_find_nearest_line (each, addr,
1489 filename_ptr,
1490 functionname_ptr,
1491 linenumber_ptr);
1492 if (found)
1493 return true;
1497 /* Read each remaining comp. units checking each as they are read. */
1498 while (stash->info_ptr < stash->info_ptr_end)
1500 struct comp_unit* each;
1501 unsigned int length;
1503 length = read_4_bytes (abfd, stash->info_ptr);
1504 stash->info_ptr += 4;
1506 if (length > 0)
1508 each = parse_comp_unit (abfd, stash->info_ptr,
1509 stash->info_ptr + length);
1510 stash->info_ptr += length;
1512 if (each)
1514 each->next_unit = stash->all_comp_units;
1515 stash->all_comp_units = each;
1517 /* DW_AT_low_pc and DW_AT_high_pc are optional for
1518 compilation units. If we don't have them (i.e.,
1519 unit->high == 0), we need to consult the line info
1520 table to see if a compilation unit contains the given
1521 address. */
1522 if (each->high > 0)
1524 if (comp_unit_contains_address (each, addr))
1525 return comp_unit_find_nearest_line (each, addr,
1526 filename_ptr,
1527 functionname_ptr,
1528 linenumber_ptr);
1530 else
1532 found = comp_unit_find_nearest_line (each, addr,
1533 filename_ptr,
1534 functionname_ptr,
1535 linenumber_ptr);
1536 if (found)
1537 return true;
1543 return false;
1546 /* end of file */