2001-11-13 Elena Zannoni <ezannoni@redhat.com>
[deliverable/binutils-gdb.git] / bfd / dwarf2.c
CommitLineData
252b5132 1/* DWARF 2 support.
7898deda
NC
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
252b5132
RH
4
5 Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
6 (gavin@cygnus.com).
7
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
15
16This file is part of BFD.
17
18This program is free software; you can redistribute it and/or modify
19it under the terms of the GNU General Public License as published by
20the Free Software Foundation; either version 2 of the License, or (at
21your option) any later version.
22
23This program is distributed in the hope that it will be useful, but
24WITHOUT ANY WARRANTY; without even the implied warranty of
25MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26General Public License for more details.
27
28You should have received a copy of the GNU General Public License
29along with this program; if not, write to the Free Software
30Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
31
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"
38
39/* The data in the .debug_line statement prologue looks like this. */
a092b084 40
252b5132 41struct line_head
a092b084
NC
42{
43 unsigned int total_length;
44 unsigned short version;
45 unsigned int 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;
52};
53
54/* Attributes have a name and a value. */
55
252b5132 56struct attribute
a092b084
NC
57{
58 enum dwarf_attribute name;
59 enum dwarf_form form;
60 union
252b5132 61 {
a092b084
NC
62 char *str;
63 struct dwarf_block *blk;
64 unsigned int unsnd;
65 int snd;
66 bfd_vma addr;
67 }
68 u;
69};
70
71/* Get at parts of an attribute structure. */
252b5132
RH
72
73#define DW_STRING(attr) ((attr)->u.str)
74#define DW_UNSND(attr) ((attr)->u.unsnd)
75#define DW_BLOCK(attr) ((attr)->u.blk)
76#define DW_SND(attr) ((attr)->u.snd)
77#define DW_ADDR(attr) ((attr)->u.addr)
78
98591c73 79/* Blocks are a bunch of untyped bytes. */
252b5132 80struct dwarf_block
a092b084
NC
81{
82 unsigned int size;
83 char *data;
84};
252b5132 85
a092b084
NC
86struct dwarf2_debug
87{
88 /* A list of all previously read comp_units. */
252b5132
RH
89 struct comp_unit* all_comp_units;
90
91 /* The next unread compilation unit within the .debug_info section.
92 Zero indicates that the .debug_info section has not been loaded
a092b084 93 into a buffer yet. */
252b5132
RH
94 char* info_ptr;
95
a092b084 96 /* Pointer to the end of the .debug_info section memory buffer. */
252b5132
RH
97 char* info_ptr_end;
98
f2363ce5
AO
99 /* Pointer to the section and address of the beginning of the
100 section. */
101 asection* sec;
102 char* sec_info_ptr;
103
104 /* Pointer to the symbol table. */
105 asymbol** syms;
106
a092b084 107 /* Pointer to the .debug_abbrev section loaded into memory. */
252b5132
RH
108 char* dwarf_abbrev_buffer;
109
a092b084 110 /* Length of the loaded .debug_abbrev section. */
252b5132 111 unsigned long dwarf_abbrev_size;
69dd2e2d
RH
112
113 /* Buffer for decode_line_info. */
114 char *dwarf_line_buffer;
ccdb16fc
JW
115
116 /* Length of the loaded .debug_line section. */
117 unsigned long dwarf_line_size;
252b5132
RH
118};
119
a092b084
NC
120struct arange
121{
f623be2b
RH
122 struct arange *next;
123 bfd_vma low;
124 bfd_vma high;
125};
252b5132 126
252b5132 127/* A minimal decoding of DWARF2 compilation units. We only decode
a092b084 128 what's needed to get to the line number information. */
252b5132 129
a092b084
NC
130struct comp_unit
131{
132 /* Chain the previously read compilation units. */
252b5132
RH
133 struct comp_unit* next_unit;
134
a092b084 135 /* Keep the bdf convenient (for memory allocation). */
252b5132
RH
136 bfd* abfd;
137
138 /* The lowest and higest addresses contained in this compilation
a092b084 139 unit as specified in the compilation unit header. */
f623be2b 140 struct arange arange;
252b5132 141
a092b084 142 /* The DW_AT_name attribute (for error messages). */
252b5132
RH
143 char* name;
144
a092b084 145 /* The abbrev hash table. */
252b5132
RH
146 struct abbrev_info** abbrevs;
147
a092b084 148 /* Note that an error was found by comp_unit_find_nearest_line. */
252b5132
RH
149 int error;
150
a092b084 151 /* The DW_AT_comp_dir attribute. */
252b5132
RH
152 char* comp_dir;
153
a092b084 154 /* True if there is a line number table associated with this comp. unit. */
252b5132 155 int stmtlist;
98591c73 156
a092b084 157 /* The offset into .debug_line of the line number table. */
252b5132
RH
158 unsigned long line_offset;
159
a092b084 160 /* Pointer to the first child die for the comp unit. */
252b5132
RH
161 char *first_child_die_ptr;
162
a092b084 163 /* The end of the comp unit. */
252b5132
RH
164 char *end_ptr;
165
a092b084 166 /* The decoded line number, NULL if not yet decoded. */
252b5132
RH
167 struct line_info_table* line_table;
168
a092b084 169 /* A list of the functions found in this comp. unit. */
98591c73 170 struct funcinfo* function_table;
252b5132 171
a092b084 172 /* Address size for this unit - from unit header. */
252b5132
RH
173 unsigned char addr_size;
174};
175
a7b97311
AM
176/* This data structure holds the information of an abbrev. */
177struct abbrev_info
178{
179 unsigned int number; /* Number identifying abbrev. */
180 enum dwarf_tag tag; /* DWARF tag. */
181 int has_children; /* Boolean. */
182 unsigned int num_attrs; /* Number of attributes. */
183 struct attr_abbrev *attrs; /* An array of attribute descriptions. */
184 struct abbrev_info *next; /* Next in chain. */
185};
186
187struct attr_abbrev
188{
189 enum dwarf_attribute name;
190 enum dwarf_form form;
191};
192
193#ifndef ABBREV_HASH_SIZE
194#define ABBREV_HASH_SIZE 121
195#endif
196#ifndef ATTR_ALLOC_CHUNK
197#define ATTR_ALLOC_CHUNK 4
198#endif
199
200static unsigned int read_1_byte PARAMS ((bfd *, char *));
201static int read_1_signed_byte PARAMS ((bfd *, char *));
202static unsigned int read_2_bytes PARAMS ((bfd *, char *));
203static unsigned int read_4_bytes PARAMS ((bfd *, char *));
204static unsigned int read_8_bytes PARAMS ((bfd *, char *));
205static char *read_n_bytes PARAMS ((bfd *, char *, unsigned int));
206static char *read_string PARAMS ((bfd *, char *, unsigned int *));
207static unsigned int read_unsigned_leb128
208 PARAMS ((bfd *, char *, unsigned int *));
209static int read_signed_leb128
210 PARAMS ((bfd *, char *, unsigned int *));
211static bfd_vma read_address PARAMS ((struct comp_unit *, char *));
212static struct abbrev_info *lookup_abbrev
213 PARAMS ((unsigned int, struct abbrev_info **));
214static struct abbrev_info **read_abbrevs
215 PARAMS ((bfd *, unsigned int, struct dwarf2_debug *));
216static char *read_attribute
217 PARAMS ((struct attribute *, struct attr_abbrev *,
218 struct comp_unit *, char *));
219static void add_line_info
220 PARAMS ((struct line_info_table *, bfd_vma, char *,
221 unsigned int, unsigned int, int));
222static char *concat_filename PARAMS ((struct line_info_table *, unsigned int));
223static void arange_add PARAMS ((struct comp_unit *, bfd_vma, bfd_vma));
224static struct line_info_table *decode_line_info
225 PARAMS ((struct comp_unit *, struct dwarf2_debug *));
226static boolean lookup_address_in_line_info_table
227 PARAMS ((struct line_info_table *, bfd_vma, const char **, unsigned int *));
228static boolean lookup_address_in_function_table
229 PARAMS ((struct funcinfo *, bfd_vma, const char **));
230static boolean scan_unit_for_functions PARAMS ((struct comp_unit *));
231static bfd_vma find_rela_addend
232 PARAMS ((bfd *, asection *, bfd_size_type, asymbol**));
233static struct comp_unit *parse_comp_unit
234 PARAMS ((bfd *, struct dwarf2_debug *, bfd_vma, unsigned int));
235static boolean comp_unit_contains_address
236 PARAMS ((struct comp_unit *, bfd_vma));
237static boolean comp_unit_find_nearest_line
238 PARAMS ((struct comp_unit *, bfd_vma, const char **, const char **,
239 unsigned int *, struct dwarf2_debug *));
240static asection *find_debug_info PARAMS ((bfd *, asection *));
241
98591c73
KH
242/* VERBATIM
243 The following function up to the END VERBATIM mark are
a092b084 244 copied directly from dwarf2read.c. */
252b5132 245
a092b084 246/* Read dwarf information from a buffer. */
252b5132
RH
247
248static unsigned int
249read_1_byte (abfd, buf)
7442e600 250 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
251 char *buf;
252{
253 return bfd_get_8 (abfd, (bfd_byte *) buf);
254}
255
256static int
257read_1_signed_byte (abfd, buf)
7442e600 258 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
259 char *buf;
260{
261 return bfd_get_signed_8 (abfd, (bfd_byte *) buf);
262}
263
264static unsigned int
265read_2_bytes (abfd, buf)
266 bfd *abfd;
267 char *buf;
268{
269 return bfd_get_16 (abfd, (bfd_byte *) buf);
270}
271
a092b084 272#if 0 /* This is not used. */
252b5132
RH
273
274static int
275read_2_signed_bytes (abfd, buf)
276 bfd *abfd;
277 char *buf;
278{
279 return bfd_get_signed_16 (abfd, (bfd_byte *) buf);
280}
281
282#endif
283
284static unsigned int
285read_4_bytes (abfd, buf)
286 bfd *abfd;
287 char *buf;
288{
289 return bfd_get_32 (abfd, (bfd_byte *) buf);
290}
291
a092b084 292#if 0 /* This is not used. */
252b5132
RH
293
294static int
295read_4_signed_bytes (abfd, buf)
296 bfd *abfd;
297 char *buf;
298{
299 return bfd_get_signed_32 (abfd, (bfd_byte *) buf);
300}
301
302#endif
303
304static unsigned int
305read_8_bytes (abfd, buf)
306 bfd *abfd;
307 char *buf;
308{
309 return bfd_get_64 (abfd, (bfd_byte *) buf);
310}
311
312static char *
313read_n_bytes (abfd, buf, size)
7442e600 314 bfd *abfd ATTRIBUTE_UNUSED;
252b5132 315 char *buf;
7442e600 316 unsigned int size ATTRIBUTE_UNUSED;
252b5132
RH
317{
318 /* If the size of a host char is 8 bits, we can return a pointer
319 to the buffer, otherwise we have to copy the data to a buffer
320 allocated on the temporary obstack. */
321 return buf;
322}
323
324static char *
325read_string (abfd, buf, bytes_read_ptr)
7442e600 326 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
327 char *buf;
328 unsigned int *bytes_read_ptr;
329{
330 /* If the size of a host char is 8 bits, we can return a pointer
331 to the string, otherwise we have to copy the string to a buffer
332 allocated on the temporary obstack. */
333 if (*buf == '\0')
334 {
335 *bytes_read_ptr = 1;
336 return NULL;
337 }
98591c73 338
252b5132
RH
339 *bytes_read_ptr = strlen (buf) + 1;
340 return buf;
341}
342
343static unsigned int
344read_unsigned_leb128 (abfd, buf, bytes_read_ptr)
7442e600 345 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
346 char *buf;
347 unsigned int *bytes_read_ptr;
348{
349 unsigned int result;
350 unsigned int num_read;
351 int shift;
352 unsigned char byte;
353
354 result = 0;
355 shift = 0;
356 num_read = 0;
98591c73 357
252b5132
RH
358 do
359 {
360 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
361 buf ++;
362 num_read ++;
363 result |= ((byte & 0x7f) << shift);
364 shift += 7;
365 }
366 while (byte & 0x80);
98591c73 367
252b5132 368 * bytes_read_ptr = num_read;
98591c73 369
252b5132
RH
370 return result;
371}
372
373static int
374read_signed_leb128 (abfd, buf, bytes_read_ptr)
7442e600
ILT
375 bfd *abfd ATTRIBUTE_UNUSED;
376 char *buf;
252b5132
RH
377 unsigned int * bytes_read_ptr;
378{
379 int result;
380 int shift;
381 int num_read;
382 unsigned char byte;
383
384 result = 0;
385 shift = 0;
386 num_read = 0;
387
388 do
389 {
390 byte = bfd_get_8 (abfd, (bfd_byte *) buf);
391 buf ++;
392 num_read ++;
393 result |= ((byte & 0x7f) << shift);
394 shift += 7;
395 }
396 while (byte & 0x80);
98591c73 397
252b5132
RH
398 if ((shift < 32) && (byte & 0x40))
399 result |= -(1 << shift);
400
401 * bytes_read_ptr = num_read;
98591c73 402
252b5132
RH
403 return result;
404}
405
406/* END VERBATIM */
407
408static bfd_vma
409read_address (unit, buf)
410 struct comp_unit* unit;
411 char *buf;
412{
ecb651f0 413 switch (unit->addr_size)
252b5132 414 {
ecb651f0
NC
415 case 8:
416 return bfd_get_64 (unit->abfd, (bfd_byte *) buf);
417 case 4:
418 return bfd_get_32 (unit->abfd, (bfd_byte *) buf);
419 case 2:
420 return bfd_get_16 (unit->abfd, (bfd_byte *) buf);
421 default:
422 abort ();
252b5132 423 }
252b5132
RH
424}
425
252b5132
RH
426/* Lookup an abbrev_info structure in the abbrev hash table. */
427
428static struct abbrev_info *
429lookup_abbrev (number,abbrevs)
430 unsigned int number;
431 struct abbrev_info **abbrevs;
432{
433 unsigned int hash_number;
434 struct abbrev_info *abbrev;
435
436 hash_number = number % ABBREV_HASH_SIZE;
437 abbrev = abbrevs[hash_number];
438
439 while (abbrev)
440 {
441 if (abbrev->number == number)
442 return abbrev;
443 else
444 abbrev = abbrev->next;
445 }
98591c73 446
252b5132
RH
447 return NULL;
448}
449
450/* In DWARF version 2, the description of the debugging information is
451 stored in a separate .debug_abbrev section. Before we read any
452 dies from a section we read in all abbreviations and install them
453 in a hash table. */
454
455static struct abbrev_info**
51db3708 456read_abbrevs (abfd, offset, stash)
252b5132
RH
457 bfd * abfd;
458 unsigned int offset;
51db3708 459 struct dwarf2_debug *stash;
252b5132
RH
460{
461 struct abbrev_info **abbrevs;
462 char *abbrev_ptr;
463 struct abbrev_info *cur_abbrev;
464 unsigned int abbrev_number, bytes_read, abbrev_name;
465 unsigned int abbrev_form, hash_number;
dc810e39 466 bfd_size_type amt;
252b5132
RH
467
468 if (! stash->dwarf_abbrev_buffer)
469 {
470 asection *msec;
471
472 msec = bfd_get_section_by_name (abfd, ".debug_abbrev");
473 if (! msec)
474 {
475 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_abbrev section."));
476 bfd_set_error (bfd_error_bad_value);
477 return 0;
478 }
98591c73 479
67d83c76 480 stash->dwarf_abbrev_size = msec->_raw_size;
dc810e39 481 stash->dwarf_abbrev_buffer = (char*) bfd_alloc (abfd, msec->_raw_size);
252b5132
RH
482 if (! stash->dwarf_abbrev_buffer)
483 return 0;
98591c73 484
dc810e39
AM
485 if (! bfd_get_section_contents (abfd, msec, stash->dwarf_abbrev_buffer,
486 (bfd_vma) 0, msec->_raw_size))
252b5132
RH
487 return 0;
488 }
489
f5198f61 490 if (offset >= stash->dwarf_abbrev_size)
252b5132 491 {
f5198f61 492 (*_bfd_error_handler) (_("Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)."),
252b5132
RH
493 offset, stash->dwarf_abbrev_size );
494 bfd_set_error (bfd_error_bad_value);
495 return 0;
496 }
497
dc810e39
AM
498 amt = sizeof (struct abbrev_info*) * ABBREV_HASH_SIZE;
499 abbrevs = (struct abbrev_info**) bfd_zalloc (abfd, amt);
252b5132
RH
500
501 abbrev_ptr = stash->dwarf_abbrev_buffer + offset;
502 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
503 abbrev_ptr += bytes_read;
504
a092b084 505 /* Loop until we reach an abbrev number of 0. */
252b5132
RH
506 while (abbrev_number)
507 {
dc810e39
AM
508 amt = sizeof (struct abbrev_info);
509 cur_abbrev = (struct abbrev_info *) bfd_zalloc (abfd, amt);
252b5132 510
a092b084 511 /* Read in abbrev header. */
252b5132
RH
512 cur_abbrev->number = abbrev_number;
513 cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
514 abbrev_ptr += bytes_read;
515 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
516 abbrev_ptr += 1;
517
a092b084 518 /* Now read in declarations. */
252b5132
RH
519 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
520 abbrev_ptr += bytes_read;
521 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
522 abbrev_ptr += bytes_read;
98591c73 523
252b5132
RH
524 while (abbrev_name)
525 {
526 if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
527 {
dc810e39
AM
528 amt = cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK;
529 amt *= sizeof (struct attr_abbrev);
530 cur_abbrev->attrs = ((struct attr_abbrev *)
531 bfd_realloc (cur_abbrev->attrs, amt));
252b5132
RH
532 if (! cur_abbrev->attrs)
533 return 0;
534 }
98591c73 535
252b5132
RH
536 cur_abbrev->attrs[cur_abbrev->num_attrs].name = abbrev_name;
537 cur_abbrev->attrs[cur_abbrev->num_attrs++].form = abbrev_form;
538 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
539 abbrev_ptr += bytes_read;
540 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
541 abbrev_ptr += bytes_read;
542 }
543
544 hash_number = abbrev_number % ABBREV_HASH_SIZE;
545 cur_abbrev->next = abbrevs[hash_number];
546 abbrevs[hash_number] = cur_abbrev;
547
548 /* Get next abbreviation.
549 Under Irix6 the abbreviations for a compilation unit are not
550 always properly terminated with an abbrev number of 0.
551 Exit loop if we encounter an abbreviation which we have
552 already read (which means we are about to read the abbreviations
553 for the next compile unit) or if the end of the abbreviation
554 table is reached. */
555 if ((unsigned int) (abbrev_ptr - stash->dwarf_abbrev_buffer)
556 >= stash->dwarf_abbrev_size)
557 break;
558 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
559 abbrev_ptr += bytes_read;
560 if (lookup_abbrev (abbrev_number,abbrevs) != NULL)
561 break;
562 }
563
564 return abbrevs;
565}
566
567/* Read an attribute described by an abbreviated attribute. */
568
569static char *
570read_attribute (attr, abbrev, unit, info_ptr)
571 struct attribute *attr;
572 struct attr_abbrev *abbrev;
573 struct comp_unit *unit;
574 char *info_ptr;
575{
576 bfd *abfd = unit->abfd;
577 unsigned int bytes_read;
578 struct dwarf_block *blk;
dc810e39 579 bfd_size_type amt;
252b5132
RH
580
581 attr->name = abbrev->name;
582 attr->form = abbrev->form;
98591c73 583
252b5132
RH
584 switch (abbrev->form)
585 {
586 case DW_FORM_addr:
587 case DW_FORM_ref_addr:
588 DW_ADDR (attr) = read_address (unit, info_ptr);
589 info_ptr += unit->addr_size;
590 break;
591 case DW_FORM_block2:
dc810e39
AM
592 amt = sizeof (struct dwarf_block);
593 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
252b5132
RH
594 blk->size = read_2_bytes (abfd, info_ptr);
595 info_ptr += 2;
596 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
597 info_ptr += blk->size;
598 DW_BLOCK (attr) = blk;
599 break;
600 case DW_FORM_block4:
dc810e39
AM
601 amt = sizeof (struct dwarf_block);
602 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
252b5132
RH
603 blk->size = read_4_bytes (abfd, info_ptr);
604 info_ptr += 4;
605 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
606 info_ptr += blk->size;
607 DW_BLOCK (attr) = blk;
608 break;
609 case DW_FORM_data2:
610 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
611 info_ptr += 2;
612 break;
613 case DW_FORM_data4:
614 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
615 info_ptr += 4;
616 break;
617 case DW_FORM_data8:
618 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
619 info_ptr += 8;
620 break;
621 case DW_FORM_string:
622 DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
623 info_ptr += bytes_read;
624 break;
625 case DW_FORM_block:
dc810e39
AM
626 amt = sizeof (struct dwarf_block);
627 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
252b5132
RH
628 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
629 info_ptr += bytes_read;
630 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
631 info_ptr += blk->size;
632 DW_BLOCK (attr) = blk;
633 break;
634 case DW_FORM_block1:
dc810e39
AM
635 amt = sizeof (struct dwarf_block);
636 blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
252b5132
RH
637 blk->size = read_1_byte (abfd, info_ptr);
638 info_ptr += 1;
639 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
640 info_ptr += blk->size;
641 DW_BLOCK (attr) = blk;
642 break;
643 case DW_FORM_data1:
644 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
645 info_ptr += 1;
646 break;
647 case DW_FORM_flag:
648 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
649 info_ptr += 1;
650 break;
651 case DW_FORM_sdata:
652 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
653 info_ptr += bytes_read;
654 break;
655 case DW_FORM_udata:
656 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
657 info_ptr += bytes_read;
658 break;
659 case DW_FORM_ref1:
660 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
661 info_ptr += 1;
662 break;
663 case DW_FORM_ref2:
664 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
665 info_ptr += 2;
666 break;
667 case DW_FORM_ref4:
668 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
669 info_ptr += 4;
670 break;
81edd86d
MM
671 case DW_FORM_ref8:
672 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
673 info_ptr += 8;
674 break;
252b5132
RH
675 case DW_FORM_ref_udata:
676 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
677 info_ptr += bytes_read;
678 break;
679 case DW_FORM_strp:
680 case DW_FORM_indirect:
681 default:
682 (*_bfd_error_handler) (_("Dwarf Error: Invalid or unhandled FORM value: %d."),
683 abbrev->form);
684 bfd_set_error (bfd_error_bad_value);
685 }
686 return info_ptr;
687}
688
a092b084 689/* Source line information table routines. */
252b5132
RH
690
691#define FILE_ALLOC_CHUNK 5
692#define DIR_ALLOC_CHUNK 5
693
a092b084
NC
694struct line_info
695{
252b5132 696 struct line_info* prev_line;
252b5132
RH
697 bfd_vma address;
698 char* filename;
699 unsigned int line;
700 unsigned int column;
a092b084 701 int end_sequence; /* End of (sequential) code sequence. */
252b5132
RH
702};
703
a092b084
NC
704struct fileinfo
705{
252b5132
RH
706 char *name;
707 unsigned int dir;
708 unsigned int time;
709 unsigned int size;
710};
711
a092b084
NC
712struct line_info_table
713{
252b5132 714 bfd* abfd;
252b5132
RH
715 unsigned int num_files;
716 unsigned int num_dirs;
252b5132
RH
717 char* comp_dir;
718 char** dirs;
719 struct fileinfo* files;
720 struct line_info* last_line;
721};
722
98591c73 723static void
159002ff 724add_line_info (table, address, filename, line, column, end_sequence)
252b5132
RH
725 struct line_info_table* table;
726 bfd_vma address;
727 char* filename;
728 unsigned int line;
729 unsigned int column;
159002ff 730 int end_sequence;
252b5132 731{
dc810e39
AM
732 bfd_size_type amt = sizeof (struct line_info);
733 struct line_info* info = (struct line_info*) bfd_alloc (table->abfd, amt);
252b5132
RH
734
735 info->prev_line = table->last_line;
736 table->last_line = info;
737
738 info->address = address;
739 info->filename = filename;
740 info->line = line;
741 info->column = column;
159002ff 742 info->end_sequence = end_sequence;
252b5132
RH
743}
744
a092b084 745static char *
252b5132
RH
746concat_filename (table, file)
747 struct line_info_table* table;
748 unsigned int file;
749{
159002ff
RH
750 char* filename;
751
752 if (file - 1 >= table->num_files)
753 {
dcdea4f4
AM
754 (*_bfd_error_handler)
755 (_("Dwarf Error: mangled line number section (bad file number)."));
159002ff
RH
756 return "<unknown>";
757 }
758
759 filename = table->files[file - 1].name;
51db3708 760 if (IS_ABSOLUTE_PATH(filename))
252b5132
RH
761 return filename;
762
763 else
764 {
765 char* dirname = (table->files[file - 1].dir
766 ? table->dirs[table->files[file - 1].dir - 1]
767 : table->comp_dir);
768 return (char*) concat (dirname, "/", filename, NULL);
769 }
770}
771
f623be2b
RH
772static void
773arange_add (unit, low_pc, high_pc)
774 struct comp_unit *unit;
775 bfd_vma low_pc;
776 bfd_vma high_pc;
777{
778 struct arange *arange;
779
a092b084 780 /* First see if we can cheaply extend an existing range. */
f623be2b 781 arange = &unit->arange;
98591c73 782
f623be2b
RH
783 do
784 {
785 if (low_pc == arange->high)
786 {
787 arange->high = high_pc;
788 return;
789 }
790 if (high_pc == arange->low)
791 {
792 arange->low = low_pc;
793 return;
794 }
795 arange = arange->next;
796 }
797 while (arange);
798
799 if (unit->arange.high == 0)
800 {
a092b084 801 /* This is the first address range: store it in unit->arange. */
f623be2b
RH
802 unit->arange.next = 0;
803 unit->arange.low = low_pc;
804 unit->arange.high = high_pc;
805 return;
806 }
807
a092b084 808 /* Need to allocate a new arange and insert it into the arange list. */
dc810e39 809 arange = bfd_zalloc (unit->abfd, (bfd_size_type) sizeof (*arange));
f623be2b
RH
810 arange->low = low_pc;
811 arange->high = high_pc;
812
813 arange->next = unit->arange.next;
814 unit->arange.next = arange;
815}
816
a092b084 817/* Decode the line number information for UNIT. */
252b5132
RH
818
819static struct line_info_table*
51db3708 820decode_line_info (unit, stash)
252b5132 821 struct comp_unit *unit;
51db3708 822 struct dwarf2_debug *stash;
252b5132
RH
823{
824 bfd *abfd = unit->abfd;
252b5132 825 struct line_info_table* table;
252b5132
RH
826 char *line_ptr;
827 char *line_end;
828 struct line_head lh;
829 unsigned int i, bytes_read;
830 char *cur_file, *cur_dir;
831 unsigned char op_code, extended_op, adj_opcode;
dc810e39 832 bfd_size_type amt;
252b5132 833
69dd2e2d 834 if (! stash->dwarf_line_buffer)
252b5132
RH
835 {
836 asection *msec;
252b5132
RH
837
838 msec = bfd_get_section_by_name (abfd, ".debug_line");
839 if (! msec)
840 {
841 (*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_line section."));
842 bfd_set_error (bfd_error_bad_value);
843 return 0;
844 }
98591c73 845
ccdb16fc 846 stash->dwarf_line_size = msec->_raw_size;
dc810e39 847 stash->dwarf_line_buffer = (char *) bfd_alloc (abfd, msec->_raw_size);
f623be2b 848 if (! stash->dwarf_line_buffer)
252b5132
RH
849 return 0;
850
dc810e39
AM
851 if (! bfd_get_section_contents (abfd, msec, stash->dwarf_line_buffer,
852 (bfd_vma) 0, msec->_raw_size))
252b5132
RH
853 return 0;
854
855 /* FIXME: We ought to apply the relocs against this section before
a092b084 856 we process it... */
252b5132
RH
857 }
858
ccdb16fc
JW
859 /* Since we are using un-relocated data, it is possible to get a bad value
860 for the line_offset. Validate it here so that we won't get a segfault
861 below. */
862 if (unit->line_offset >= stash->dwarf_line_size)
863 {
f5198f61 864 (*_bfd_error_handler) (_("Dwarf Error: Line offset (%u) greater than or equal to line size (%u)."),
ccdb16fc
JW
865 unit->line_offset, stash->dwarf_line_size);
866 bfd_set_error (bfd_error_bad_value);
867 return 0;
868 }
869
dc810e39
AM
870 amt = sizeof (struct line_info_table);
871 table = (struct line_info_table*) bfd_alloc (abfd, amt);
252b5132
RH
872 table->abfd = abfd;
873 table->comp_dir = unit->comp_dir;
874
875 table->num_files = 0;
876 table->files = NULL;
877
878 table->num_dirs = 0;
879 table->dirs = NULL;
880
159002ff
RH
881 table->files = NULL;
882 table->last_line = NULL;
883
69dd2e2d 884 line_ptr = stash->dwarf_line_buffer + unit->line_offset;
252b5132 885
a092b084 886 /* Read in the prologue. */
252b5132
RH
887 lh.total_length = read_4_bytes (abfd, line_ptr);
888 line_ptr += 4;
889 line_end = line_ptr + lh.total_length;
890 lh.version = read_2_bytes (abfd, line_ptr);
891 line_ptr += 2;
892 lh.prologue_length = read_4_bytes (abfd, line_ptr);
893 line_ptr += 4;
894 lh.minimum_instruction_length = read_1_byte (abfd, line_ptr);
895 line_ptr += 1;
896 lh.default_is_stmt = read_1_byte (abfd, line_ptr);
897 line_ptr += 1;
898 lh.line_base = read_1_signed_byte (abfd, line_ptr);
899 line_ptr += 1;
900 lh.line_range = read_1_byte (abfd, line_ptr);
901 line_ptr += 1;
902 lh.opcode_base = read_1_byte (abfd, line_ptr);
903 line_ptr += 1;
dc810e39
AM
904 amt = lh.opcode_base * sizeof (unsigned char);
905 lh.standard_opcode_lengths = (unsigned char *) bfd_alloc (abfd, amt);
252b5132
RH
906
907 lh.standard_opcode_lengths[0] = 1;
98591c73 908
252b5132
RH
909 for (i = 1; i < lh.opcode_base; ++i)
910 {
911 lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
912 line_ptr += 1;
913 }
914
a092b084 915 /* Read directory table. */
252b5132
RH
916 while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
917 {
918 line_ptr += bytes_read;
98591c73 919
252b5132
RH
920 if ((table->num_dirs % DIR_ALLOC_CHUNK) == 0)
921 {
dc810e39
AM
922 amt = table->num_dirs + DIR_ALLOC_CHUNK;
923 amt *= sizeof (char *);
924 table->dirs = (char **) bfd_realloc (table->dirs, amt);
252b5132
RH
925 if (! table->dirs)
926 return 0;
927 }
98591c73 928
252b5132
RH
929 table->dirs[table->num_dirs++] = cur_dir;
930 }
98591c73 931
252b5132
RH
932 line_ptr += bytes_read;
933
a092b084 934 /* Read file name table. */
252b5132
RH
935 while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
936 {
937 line_ptr += bytes_read;
98591c73 938
252b5132
RH
939 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
940 {
dc810e39
AM
941 amt = table->num_files + FILE_ALLOC_CHUNK;
942 amt *= sizeof (struct fileinfo);
943 table->files = (struct fileinfo *) bfd_realloc (table->files, amt);
252b5132
RH
944 if (! table->files)
945 return 0;
946 }
98591c73 947
252b5132
RH
948 table->files[table->num_files].name = cur_file;
949 table->files[table->num_files].dir =
950 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
951 line_ptr += bytes_read;
952 table->files[table->num_files].time =
953 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
954 line_ptr += bytes_read;
955 table->files[table->num_files].size =
956 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
957 line_ptr += bytes_read;
958 table->num_files++;
959 }
98591c73 960
252b5132
RH
961 line_ptr += bytes_read;
962
963 /* Read the statement sequences until there's nothing left. */
964 while (line_ptr < line_end)
965 {
a092b084 966 /* State machine registers. */
252b5132
RH
967 bfd_vma address = 0;
968 char* filename = concat_filename (table, 1);
969 unsigned int line = 1;
970 unsigned int column = 0;
971 int is_stmt = lh.default_is_stmt;
972 int basic_block = 0;
f623be2b
RH
973 int end_sequence = 0, need_low_pc = 1;
974 bfd_vma low_pc = 0;
252b5132 975
a092b084 976 /* Decode the table. */
252b5132
RH
977 while (! end_sequence)
978 {
979 op_code = read_1_byte (abfd, line_ptr);
980 line_ptr += 1;
98591c73 981
252b5132
RH
982 switch (op_code)
983 {
984 case DW_LNS_extended_op:
a092b084 985 line_ptr += 1; /* Ignore length. */
252b5132
RH
986 extended_op = read_1_byte (abfd, line_ptr);
987 line_ptr += 1;
988 switch (extended_op)
989 {
990 case DW_LNE_end_sequence:
991 end_sequence = 1;
f623be2b
RH
992 add_line_info (table, address, filename, line, column,
993 end_sequence);
994 if (need_low_pc)
995 {
996 need_low_pc = 0;
997 low_pc = address;
998 }
999 arange_add (unit, low_pc, address);
252b5132
RH
1000 break;
1001 case DW_LNE_set_address:
1002 address = read_address (unit, line_ptr);
1003 line_ptr += unit->addr_size;
1004 break;
1005 case DW_LNE_define_file:
1006 cur_file = read_string (abfd, line_ptr, &bytes_read);
1007 line_ptr += bytes_read;
1008 if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
1009 {
dc810e39
AM
1010 amt = table->num_files + FILE_ALLOC_CHUNK;
1011 amt *= sizeof (struct fileinfo);
1012 table->files =
1013 (struct fileinfo *) bfd_realloc (table->files, amt);
252b5132
RH
1014 if (! table->files)
1015 return 0;
1016 }
1017 table->files[table->num_files].name = cur_file;
1018 table->files[table->num_files].dir =
1019 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1020 line_ptr += bytes_read;
1021 table->files[table->num_files].time =
1022 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1023 line_ptr += bytes_read;
1024 table->files[table->num_files].size =
1025 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1026 line_ptr += bytes_read;
1027 table->num_files++;
1028 break;
1029 default:
1030 (*_bfd_error_handler) (_("Dwarf Error: mangled line number section."));
1031 bfd_set_error (bfd_error_bad_value);
1032 return 0;
1033 }
1034 break;
1035 case DW_LNS_copy:
159002ff 1036 add_line_info (table, address, filename, line, column, 0);
252b5132 1037 basic_block = 0;
f623be2b
RH
1038 if (need_low_pc)
1039 {
1040 need_low_pc = 0;
1041 low_pc = address;
1042 }
252b5132
RH
1043 break;
1044 case DW_LNS_advance_pc:
1045 address += lh.minimum_instruction_length
1046 * read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1047 line_ptr += bytes_read;
1048 break;
1049 case DW_LNS_advance_line:
1050 line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
1051 line_ptr += bytes_read;
1052 break;
1053 case DW_LNS_set_file:
1054 {
1055 unsigned int file;
1056
1057 /* The file and directory tables are 0 based, the references
1058 are 1 based. */
1059 file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1060 line_ptr += bytes_read;
1061 filename = concat_filename (table, file);
1062 break;
1063 }
1064 case DW_LNS_set_column:
1065 column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
1066 line_ptr += bytes_read;
1067 break;
1068 case DW_LNS_negate_stmt:
1069 is_stmt = (!is_stmt);
1070 break;
1071 case DW_LNS_set_basic_block:
1072 basic_block = 1;
1073 break;
1074 case DW_LNS_const_add_pc:
159002ff
RH
1075 address += lh.minimum_instruction_length
1076 * ((255 - lh.opcode_base) / lh.line_range);
252b5132
RH
1077 break;
1078 case DW_LNS_fixed_advance_pc:
1079 address += read_2_bytes (abfd, line_ptr);
1080 line_ptr += 2;
1081 break;
a092b084 1082 default: /* Special operand. */
252b5132
RH
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);
a092b084 1087 /* Append row to matrix using current values. */
159002ff 1088 add_line_info (table, address, filename, line, column, 0);
252b5132 1089 basic_block = 1;
f623be2b
RH
1090 if (need_low_pc)
1091 {
1092 need_low_pc = 0;
1093 low_pc = address;
1094 }
252b5132
RH
1095 }
1096 }
1097 }
1098
1099 return table;
1100}
1101
252b5132
RH
1102/* If ADDR is within TABLE set the output parameters and return true,
1103 otherwise return false. The output parameters, FILENAME_PTR and
a092b084 1104 LINENUMBER_PTR, are pointers to the objects to be filled in. */
252b5132
RH
1105
1106static boolean
98591c73 1107lookup_address_in_line_info_table (table,
252b5132 1108 addr,
98591c73 1109 filename_ptr,
252b5132
RH
1110 linenumber_ptr)
1111 struct line_info_table* table;
1112 bfd_vma addr;
1113 const char **filename_ptr;
1114 unsigned int *linenumber_ptr;
1115{
159002ff 1116 struct line_info* next_line = table->last_line;
252b5132 1117 struct line_info* each_line;
98591c73 1118
159002ff
RH
1119 if (!next_line)
1120 return false;
1121
1122 each_line = next_line->prev_line;
1123
1124 while (each_line && next_line)
252b5132 1125 {
159002ff
RH
1126 if (!each_line->end_sequence
1127 && addr >= each_line->address && addr < next_line->address)
252b5132
RH
1128 {
1129 *filename_ptr = each_line->filename;
1130 *linenumber_ptr = each_line->line;
1131 return true;
1132 }
159002ff
RH
1133 next_line = each_line;
1134 each_line = each_line->prev_line;
252b5132 1135 }
98591c73 1136
252b5132
RH
1137 return false;
1138}
98591c73 1139
a092b084 1140/* Function table functions. */
252b5132 1141
a092b084
NC
1142struct funcinfo
1143{
252b5132 1144 struct funcinfo *prev_func;
252b5132
RH
1145 char* name;
1146 bfd_vma low;
1147 bfd_vma high;
1148};
1149
98591c73 1150/* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return true. */
252b5132
RH
1151
1152static boolean
98591c73 1153lookup_address_in_function_table (table,
252b5132
RH
1154 addr,
1155 functionname_ptr)
1156 struct funcinfo* table;
1157 bfd_vma addr;
1158 const char **functionname_ptr;
1159{
1160 struct funcinfo* each_func;
1161
1162 for (each_func = table;
1163 each_func;
1164 each_func = each_func->prev_func)
1165 {
1166 if (addr >= each_func->low && addr < each_func->high)
1167 {
1168 *functionname_ptr = each_func->name;
1169 return true;
1170 }
1171 }
98591c73 1172
252b5132
RH
1173 return false;
1174}
1175
a092b084 1176/* DWARF2 Compilation unit functions. */
252b5132
RH
1177
1178/* Scan over each die in a comp. unit looking for functions to add
a092b084 1179 to the function table. */
252b5132
RH
1180
1181static boolean
1182scan_unit_for_functions (unit)
1183 struct comp_unit *unit;
1184{
1185 bfd *abfd = unit->abfd;
1186 char *info_ptr = unit->first_child_die_ptr;
1187 int nesting_level = 1;
1188
1189 while (nesting_level)
1190 {
1191 unsigned int abbrev_number, bytes_read, i;
1192 struct abbrev_info *abbrev;
1193 struct attribute attr;
1194 struct funcinfo *func;
1195 char* name = 0;
1196
1197 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1198 info_ptr += bytes_read;
1199
1200 if (! abbrev_number)
1201 {
1202 nesting_level--;
1203 continue;
1204 }
98591c73 1205
252b5132
RH
1206 abbrev = lookup_abbrev (abbrev_number,unit->abbrevs);
1207 if (! abbrev)
1208 {
98591c73 1209 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %d."),
252b5132
RH
1210 abbrev_number);
1211 bfd_set_error (bfd_error_bad_value);
1212 return false;
1213 }
98591c73 1214
252b5132
RH
1215 if (abbrev->tag == DW_TAG_subprogram)
1216 {
dc810e39
AM
1217 bfd_size_type amt = sizeof (struct funcinfo);
1218 func = (struct funcinfo *) bfd_zalloc (abfd, amt);
252b5132
RH
1219 func->prev_func = unit->function_table;
1220 unit->function_table = func;
1221 }
1222 else
1223 func = NULL;
98591c73 1224
252b5132
RH
1225 for (i = 0; i < abbrev->num_attrs; ++i)
1226 {
1227 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
98591c73 1228
252b5132
RH
1229 if (func)
1230 {
1231 switch (attr.name)
1232 {
1233 case DW_AT_name:
98591c73 1234
252b5132
RH
1235 name = DW_STRING (&attr);
1236
1237 /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
1238 if (func->name == NULL)
1239 func->name = DW_STRING (&attr);
1240 break;
98591c73 1241
252b5132
RH
1242 case DW_AT_MIPS_linkage_name:
1243 func->name = DW_STRING (&attr);
1244 break;
1245
1246 case DW_AT_low_pc:
1247 func->low = DW_ADDR (&attr);
1248 break;
1249
1250 case DW_AT_high_pc:
1251 func->high = DW_ADDR (&attr);
1252 break;
1253
1254 default:
1255 break;
1256 }
1257 }
1258 else
1259 {
1260 switch (attr.name)
1261 {
1262 case DW_AT_name:
1263 name = DW_STRING (&attr);
1264 break;
98591c73 1265
252b5132
RH
1266 default:
1267 break;
1268 }
1269 }
1270 }
1271
1272 if (abbrev->has_children)
1273 nesting_level++;
1274 }
1275
1276 return true;
1277}
1278
f2363ce5
AO
1279/* Look for a RELA relocation to be applied on OFFSET of section SEC,
1280 and return the addend if such a relocation is found. Since this is
1281 only used to find relocations referring to the .debug_abbrev
1282 section, we make sure the relocation refers to this section, but
1283 this is not strictly necessary, and it can probably be safely
1284 removed if needed. However, it is important to note that this
1285 function only returns the addend, it doesn't serve the purpose of
1286 applying a generic relocation.
1287
1288 If no suitable relocation is found, or if it is not a real RELA
1289 relocation, this function returns 0. */
1290
1291static bfd_vma
1292find_rela_addend (abfd, sec, offset, syms)
1293 bfd* abfd;
1294 asection* sec;
1295 bfd_size_type offset;
1296 asymbol** syms;
1297{
1298 long reloc_size = bfd_get_reloc_upper_bound (abfd, sec);
1299 arelent **relocs = NULL;
1300 long reloc_count, relc;
1301
1302 if (reloc_size <= 0)
1303 return 0;
1304
dc810e39 1305 relocs = (arelent **) bfd_malloc ((bfd_size_type) reloc_size);
f2363ce5
AO
1306 if (relocs == NULL)
1307 return 0;
1308
1309 reloc_count = bfd_canonicalize_reloc (abfd, sec, relocs, syms);
1310
1311 if (reloc_count <= 0)
1312 {
1313 free (relocs);
1314 return 0;
1315 }
1316
1317 for (relc = 0; relc < reloc_count; relc++)
1318 if (relocs[relc]->address == offset
1319 && (*relocs[relc]->sym_ptr_ptr)->flags & BSF_SECTION_SYM
1320 && strcmp ((*relocs[relc]->sym_ptr_ptr)->name,
1321 ".debug_abbrev") == 0)
1322 {
1323 bfd_vma addend = (relocs[relc]->howto->partial_inplace
1324 ? 0 : relocs[relc]->addend);
1325 free (relocs);
1326 return addend;
1327 }
dc810e39 1328
f2363ce5
AO
1329 free (relocs);
1330 return 0;
1331}
1332
5e38c3b8
MM
1333/* Parse a DWARF2 compilation unit starting at INFO_PTR. This
1334 includes the compilation unit header that proceeds the DIE's, but
1335 does not include the length field that preceeds each compilation
1336 unit header. END_PTR points one past the end of this comp unit.
1337 If ABBREV_LENGTH is 0, then the length of the abbreviation offset
1338 is assumed to be four bytes. Otherwise, it it is the size given.
252b5132
RH
1339
1340 This routine does not read the whole compilation unit; only enough
1341 to get to the line number information for the compilation unit. */
1342
1343static struct comp_unit *
51db3708 1344parse_comp_unit (abfd, stash, unit_length, abbrev_length)
252b5132 1345 bfd* abfd;
51db3708
NC
1346 struct dwarf2_debug *stash;
1347 bfd_vma unit_length;
5e38c3b8 1348 unsigned int abbrev_length;
252b5132
RH
1349{
1350 struct comp_unit* unit;
1351
1352 unsigned short version;
7442e600 1353 unsigned int abbrev_offset = 0;
252b5132
RH
1354 unsigned char addr_size;
1355 struct abbrev_info** abbrevs;
1356
1357 unsigned int abbrev_number, bytes_read, i;
1358 struct abbrev_info *abbrev;
1359 struct attribute attr;
1360
51db3708
NC
1361 char *info_ptr = stash->info_ptr;
1362 char *end_ptr = info_ptr + unit_length;
dc810e39
AM
1363 bfd_size_type amt;
1364 bfd_size_type off;
3fde5a36 1365
252b5132
RH
1366 version = read_2_bytes (abfd, info_ptr);
1367 info_ptr += 2;
5e38c3b8
MM
1368 BFD_ASSERT (abbrev_length == 0
1369 || abbrev_length == 4
1370 || abbrev_length == 8);
1371 if (abbrev_length == 0 || abbrev_length == 4)
1372 abbrev_offset = read_4_bytes (abfd, info_ptr);
1373 else if (abbrev_length == 8)
1374 abbrev_offset = read_8_bytes (abfd, info_ptr);
f2363ce5
AO
1375 /* The abbrev offset is generally a relocation pointing to
1376 .debug_abbrev+offset. On RELA targets, we have to find the
1377 relocation and extract the addend to obtain the actual
1378 abbrev_offset, so do it here. */
dc810e39
AM
1379 off = info_ptr - stash->sec_info_ptr;
1380 abbrev_offset += find_rela_addend (abfd, stash->sec, off, stash->syms);
5e38c3b8 1381 info_ptr += abbrev_length;
252b5132
RH
1382 addr_size = read_1_byte (abfd, info_ptr);
1383 info_ptr += 1;
1384
1385 if (version != 2)
1386 {
1387 (*_bfd_error_handler) (_("Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information."), version );
1388 bfd_set_error (bfd_error_bad_value);
1389 return 0;
1390 }
1391
1392 if (addr_size > sizeof (bfd_vma))
1393 {
1394 (*_bfd_error_handler) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
1395 addr_size,
1396 sizeof (bfd_vma));
1397 bfd_set_error (bfd_error_bad_value);
1398 return 0;
1399 }
1400
ecb651f0 1401 if (addr_size != 2 && addr_size != 4 && addr_size != 8)
252b5132 1402 {
ecb651f0 1403 (*_bfd_error_handler) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '2', '4' and '8'.", addr_size );
252b5132
RH
1404 bfd_set_error (bfd_error_bad_value);
1405 return 0;
1406 }
1407
a092b084 1408 /* Read the abbrevs for this compilation unit into a table. */
51db3708 1409 abbrevs = read_abbrevs (abfd, abbrev_offset, stash);
252b5132
RH
1410 if (! abbrevs)
1411 return 0;
1412
1413 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
1414 info_ptr += bytes_read;
1415 if (! abbrev_number)
1416 {
1417 (*_bfd_error_handler) (_("Dwarf Error: Bad abbrev number: %d."),
1418 abbrev_number);
1419 bfd_set_error (bfd_error_bad_value);
1420 return 0;
1421 }
1422
1423 abbrev = lookup_abbrev (abbrev_number, abbrevs);
1424 if (! abbrev)
1425 {
1426 (*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %d."),
1427 abbrev_number);
1428 bfd_set_error (bfd_error_bad_value);
1429 return 0;
1430 }
98591c73 1431
dc810e39
AM
1432 amt = sizeof (struct comp_unit);
1433 unit = (struct comp_unit*) bfd_zalloc (abfd, amt);
252b5132 1434 unit->abfd = abfd;
98591c73 1435 unit->addr_size = addr_size;
252b5132
RH
1436 unit->abbrevs = abbrevs;
1437 unit->end_ptr = end_ptr;
1438
1439 for (i = 0; i < abbrev->num_attrs; ++i)
1440 {
1441 info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
1442
1443 /* Store the data if it is of an attribute we want to keep in a
1444 partial symbol table. */
1445 switch (attr.name)
1446 {
1447 case DW_AT_stmt_list:
1448 unit->stmtlist = 1;
1449 unit->line_offset = DW_UNSND (&attr);
1450 break;
1451
1452 case DW_AT_name:
1453 unit->name = DW_STRING (&attr);
1454 break;
1455
1456 case DW_AT_low_pc:
f623be2b 1457 unit->arange.low = DW_ADDR (&attr);
252b5132
RH
1458 break;
1459
1460 case DW_AT_high_pc:
f623be2b 1461 unit->arange.high = DW_ADDR (&attr);
252b5132
RH
1462 break;
1463
1464 case DW_AT_comp_dir:
1465 {
1466 char* comp_dir = DW_STRING (&attr);
1467 if (comp_dir)
1468 {
1469 /* Irix 6.2 native cc prepends <machine>.: to the compilation
1470 directory, get rid of it. */
1471 char *cp = (char*) strchr (comp_dir, ':');
1472
1473 if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
1474 comp_dir = cp + 1;
1475 }
1476 unit->comp_dir = comp_dir;
1477 break;
1478 }
1479
1480 default:
1481 break;
1482 }
1483 }
1484
1485 unit->first_child_die_ptr = info_ptr;
1486 return unit;
1487}
1488
a092b084 1489/* Return true if UNIT contains the address given by ADDR. */
252b5132
RH
1490
1491static boolean
1492comp_unit_contains_address (unit, addr)
1493 struct comp_unit* unit;
1494 bfd_vma addr;
1495{
f623be2b
RH
1496 struct arange *arange;
1497
1498 if (unit->error)
1499 return 0;
1500
1501 arange = &unit->arange;
1502 do
1503 {
1504 if (addr >= arange->low && addr < arange->high)
1505 return 1;
1506 arange = arange->next;
1507 }
1508 while (arange);
98591c73 1509
f623be2b 1510 return 0;
252b5132
RH
1511}
1512
252b5132
RH
1513/* If UNIT contains ADDR, set the output parameters to the values for
1514 the line containing ADDR. The output parameters, FILENAME_PTR,
1515 FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
98591c73 1516 to be filled in.
252b5132
RH
1517
1518 Return true of UNIT contains ADDR, and no errors were encountered;
1519 false otherwise. */
1520
1521static boolean
1522comp_unit_find_nearest_line (unit, addr,
51db3708
NC
1523 filename_ptr, functionname_ptr, linenumber_ptr,
1524 stash)
252b5132
RH
1525 struct comp_unit* unit;
1526 bfd_vma addr;
1527 const char **filename_ptr;
1528 const char **functionname_ptr;
1529 unsigned int *linenumber_ptr;
51db3708 1530 struct dwarf2_debug *stash;
252b5132
RH
1531{
1532 boolean line_p;
1533 boolean func_p;
98591c73 1534
252b5132
RH
1535 if (unit->error)
1536 return false;
1537
1538 if (! unit->line_table)
1539 {
1540 if (! unit->stmtlist)
1541 {
1542 unit->error = 1;
1543 return false;
1544 }
98591c73 1545
51db3708 1546 unit->line_table = decode_line_info (unit, stash);
252b5132
RH
1547
1548 if (! unit->line_table)
1549 {
1550 unit->error = 1;
1551 return false;
1552 }
98591c73 1553
3f5864e1
SC
1554 if (unit->first_child_die_ptr < unit->end_ptr
1555 && ! scan_unit_for_functions (unit))
252b5132
RH
1556 {
1557 unit->error = 1;
1558 return false;
1559 }
1560 }
1561
1562 line_p = lookup_address_in_line_info_table (unit->line_table,
1563 addr,
98591c73 1564 filename_ptr,
252b5132 1565 linenumber_ptr);
98591c73 1566 func_p = lookup_address_in_function_table (unit->function_table,
252b5132
RH
1567 addr,
1568 functionname_ptr);
1569 return line_p || func_p;
1570}
1571
a092b084
NC
1572/* Locate a section in a BFD containing debugging info. The search starts from the
1573 section after AFTER_SEC, or from the first section in the BFD if AFTER_SEC is
1574 NULL. The search works by examining the names of the sections. There are two
1575 permissiable names. The first is .debug_info. This is the standard DWARF2 name.
1576 The second is a prefix .gnu.linkonce.wi. This is a variation on the .debug_info
1577 section which has a checksum describing the contents appended onto the name. This
1578 allows the linker to identify and discard duplicate debugging sections for
1579 different compilation units. */
1580#define DWARF2_DEBUG_INFO ".debug_info"
1581#define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
1582
1583static asection *
1584find_debug_info (abfd, after_sec)
1585 bfd * abfd;
1586 asection * after_sec;
1587{
1588 asection * msec;
1589
1590 if (after_sec)
1591 msec = after_sec->next;
1592 else
1593 msec = abfd->sections;
1594
1595 while (msec)
1596 {
1597 if (strcmp (msec->name, DWARF2_DEBUG_INFO) == 0)
1598 return msec;
1599
1600 if (strncmp (msec->name, GNU_LINKONCE_INFO, strlen (GNU_LINKONCE_INFO)) == 0)
1601 return msec;
1602
1603 msec = msec->next;
1604 }
1605
1606 return NULL;
1607}
1608
5e38c3b8
MM
1609/* The DWARF2 version of find_nearest line. Return true if the line
1610 is found without error. ADDR_SIZE is the number of bytes in the
1611 initial .debug_info length field and in the abbreviation offset.
1612 You may use zero to indicate that the default value should be
1613 used. */
252b5132
RH
1614
1615boolean
1616_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
5e38c3b8
MM
1617 filename_ptr, functionname_ptr,
1618 linenumber_ptr,
51db3708 1619 addr_size, pinfo)
252b5132
RH
1620 bfd *abfd;
1621 asection *section;
f2363ce5 1622 asymbol **symbols;
252b5132
RH
1623 bfd_vma offset;
1624 const char **filename_ptr;
1625 const char **functionname_ptr;
1626 unsigned int *linenumber_ptr;
5e38c3b8 1627 unsigned int addr_size;
51db3708 1628 PTR *pinfo;
252b5132
RH
1629{
1630 /* Read each compilation unit from the section .debug_info, and check
1631 to see if it contains the address we are searching for. If yes,
1632 lookup the address, and return the line number info. If no, go
98591c73 1633 on to the next compilation unit.
252b5132
RH
1634
1635 We keep a list of all the previously read compilation units, and
98591c73 1636 a pointer to the next un-read compilation unit. Check the
a092b084 1637 previously read units before reading more. */
51db3708 1638 struct dwarf2_debug *stash = (struct dwarf2_debug *) *pinfo;
252b5132 1639
a092b084 1640 /* What address are we looking for? */
252b5132
RH
1641 bfd_vma addr = offset + section->vma;
1642
1643 struct comp_unit* each;
98591c73 1644
252b5132
RH
1645 *filename_ptr = NULL;
1646 *functionname_ptr = NULL;
1647 *linenumber_ptr = 0;
1648
5e38c3b8
MM
1649 /* The DWARF2 spec says that the initial length field, and the
1650 offset of the abbreviation table, should both be 4-byte values.
1651 However, some compilers do things differently. */
1652 if (addr_size == 0)
1653 addr_size = 4;
1efe4b10 1654 BFD_ASSERT (addr_size == 4 || addr_size == 8);
98591c73 1655
252b5132
RH
1656 if (! stash)
1657 {
dc810e39 1658 bfd_size_type total_size;
252b5132 1659 asection *msec;
dc810e39 1660 bfd_size_type amt = sizeof (struct dwarf2_debug);
a092b084 1661
dc810e39 1662 stash = (struct dwarf2_debug*) bfd_zalloc (abfd, amt);
252b5132
RH
1663 if (! stash)
1664 return false;
252b5132 1665
51db3708 1666 *pinfo = (PTR) stash;
3fde5a36 1667
a092b084
NC
1668 msec = find_debug_info (abfd, NULL);
1669 if (! msec)
1670 /* No dwarf2 info. Note that at this point the stash
1671 has been allocated, but contains zeros, this lets
1672 future calls to this function fail quicker. */
51db3708 1673 return false;
a092b084
NC
1674
1675 /* There can be more than one DWARF2 info section in a BFD these days.
1676 Read them all in and produce one large stash. We do this in two
1677 passes - in the first pass we just accumulate the section sizes.
1678 In the second pass we read in the section's contents. The allows
1679 us to avoid reallocing the data as we add sections to the stash. */
1680 for (total_size = 0; msec; msec = find_debug_info (abfd, msec))
1681 total_size += msec->_raw_size;
98591c73 1682
a092b084
NC
1683 stash->info_ptr = (char *) bfd_alloc (abfd, total_size);
1684 if (stash->info_ptr == NULL)
252b5132
RH
1685 return false;
1686
a092b084
NC
1687 stash->info_ptr_end = stash->info_ptr;
1688
1689 for (msec = find_debug_info (abfd, NULL);
1690 msec;
1691 msec = find_debug_info (abfd, msec))
252b5132 1692 {
dc810e39
AM
1693 bfd_size_type size;
1694 bfd_size_type start;
a092b084
NC
1695
1696 size = msec->_raw_size;
1697 if (size == 0)
1698 continue;
1699
1700 start = stash->info_ptr_end - stash->info_ptr;
1701
dc810e39
AM
1702 if (! bfd_get_section_contents (abfd, msec, stash->info_ptr + start,
1703 (bfd_vma) 0, size))
a092b084
NC
1704 continue;
1705
1706 stash->info_ptr_end = stash->info_ptr + start + size;
252b5132
RH
1707 }
1708
f2363ce5
AO
1709 BFD_ASSERT (stash->info_ptr_end == stash->info_ptr + total_size);
1710
1711 stash->sec = find_debug_info (abfd, NULL);
1712 stash->sec_info_ptr = stash->info_ptr;
1713 stash->syms = symbols;
252b5132 1714 }
a092b084
NC
1715
1716 /* FIXME: There is a problem with the contents of the
1717 .debug_info section. The 'low' and 'high' addresses of the
1718 comp_units are computed by relocs against symbols in the
1719 .text segment. We need these addresses in order to determine
1720 the nearest line number, and so we have to resolve the
1721 relocs. There is a similar problem when the .debug_line
1722 section is processed as well (e.g., there may be relocs
1723 against the operand of the DW_LNE_set_address operator).
98591c73 1724
a092b084 1725 Unfortunately getting hold of the reloc information is hard...
98591c73 1726
a092b084
NC
1727 For now, this means that disassembling object files (as
1728 opposed to fully executables) does not always work as well as
1729 we would like. */
98591c73
KH
1730
1731 /* A null info_ptr indicates that there is no dwarf2 info
a092b084 1732 (or that an error occured while setting up the stash). */
252b5132
RH
1733 if (! stash->info_ptr)
1734 return false;
1735
a092b084 1736 /* Check the previously read comp. units first. */
252b5132 1737 for (each = stash->all_comp_units; each; each = each->next_unit)
f623be2b 1738 if (comp_unit_contains_address (each, addr))
98591c73 1739 return comp_unit_find_nearest_line (each, addr, filename_ptr,
51db3708
NC
1740 functionname_ptr, linenumber_ptr,
1741 stash);
252b5132 1742
a092b084 1743 /* Read each remaining comp. units checking each as they are read. */
252b5132
RH
1744 while (stash->info_ptr < stash->info_ptr_end)
1745 {
5e38c3b8 1746 bfd_vma length;
f623be2b 1747 boolean found;
252b5132 1748
5e38c3b8
MM
1749 if (addr_size == 4)
1750 length = read_4_bytes (abfd, stash->info_ptr);
1751 else
1752 length = read_8_bytes (abfd, stash->info_ptr);
1753 stash->info_ptr += addr_size;
252b5132
RH
1754
1755 if (length > 0)
1756 {
51db3708 1757 each = parse_comp_unit (abfd, stash, length, addr_size);
252b5132
RH
1758 stash->info_ptr += length;
1759
f2363ce5
AO
1760 if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
1761 == stash->sec->_raw_size)
1762 {
1763 stash->sec = find_debug_info (abfd, stash->sec);
1764 stash->sec_info_ptr = stash->info_ptr;
1765 }
1766
252b5132
RH
1767 if (each)
1768 {
1769 each->next_unit = stash->all_comp_units;
1770 stash->all_comp_units = each;
1771
159002ff
RH
1772 /* DW_AT_low_pc and DW_AT_high_pc are optional for
1773 compilation units. If we don't have them (i.e.,
1774 unit->high == 0), we need to consult the line info
1775 table to see if a compilation unit contains the given
a092b084 1776 address. */
f623be2b 1777 if (each->arange.high > 0)
159002ff
RH
1778 {
1779 if (comp_unit_contains_address (each, addr))
1780 return comp_unit_find_nearest_line (each, addr,
1781 filename_ptr,
1782 functionname_ptr,
51db3708
NC
1783 linenumber_ptr,
1784 stash);
159002ff
RH
1785 }
1786 else
1787 {
1788 found = comp_unit_find_nearest_line (each, addr,
1789 filename_ptr,
1790 functionname_ptr,
51db3708
NC
1791 linenumber_ptr,
1792 stash);
159002ff
RH
1793 if (found)
1794 return true;
1795 }
252b5132
RH
1796 }
1797 }
1798 }
1799
1800 return false;
1801}
This page took 0.25785 seconds and 4 git commands to generate.