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