* elf64-mips.c (UNUSED_RELOC): Define.
[binutils.git] / bfd / dwarf1.c
blob80fc242d38110f51a4fff225483a6f4fbb54de7a
1 /* DWARF 1 find nearest line (_bfd_dwarf1_find_nearest_line).
2 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 Written by Gavin Romig-Koch of Cygnus Solutions (gavin@cygnus.com).
6 This file is part of BFD.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or (at
11 your option) any later version.
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 #include "bfd.h"
23 #include "sysdep.h"
24 #include "libiberty.h"
25 #include "libbfd.h"
26 #include "elf-bfd.h"
27 #include "elf/dwarf.h"
29 /* dwarf1_debug is the starting point for all dwarf1 info. */
31 struct dwarf1_debug {
33 /* The bfd we are working with. */
34 bfd* abfd;
36 /* List of already parsed compilation units. */
37 struct dwarf1_unit* lastUnit;
39 /* The buffer for the .debug section.
40 Zero indicates that the .debug section failed to load. */
41 char* debug_section;
43 /* Pointer to the end of the .debug_info section memory buffer. */
44 char* debug_section_end;
46 /* The buffer for the .line section. */
47 char* line_section;
49 /* End of that buffer. */
50 char* line_section_end;
52 /* The current or next unread die within the .debug section. */
53 char* currentDie;
56 /* One dwarf1_unit for each parsed compilation unit die. */
58 struct dwarf1_unit {
59 /* Linked starting from stash->lastUnit. */
60 struct dwarf1_unit* prev;
62 /* Name of the compilation unit. */
63 char* name;
65 /* The highest and lowest address used in the compilation unit. */
66 unsigned long low_pc;
67 unsigned long high_pc;
69 /* Does this unit have a statement list? */
70 int has_stmt_list;
72 /* If any, the offset of the line number table in the .line section. */
73 unsigned long stmt_list_offset;
75 /* If non-zero, a pointer to the first child of this unit. */
76 char* first_child;
78 /* How many line entries? */
79 unsigned long line_count;
81 /* The decoded line number table (line_count entries). */
82 struct linenumber* linenumber_table;
84 /* The list of functions in this unit. */
85 struct dwarf1_func* func_list;
88 /* One dwarf1_func for each parsed function die. */
90 struct dwarf1_func {
91 /* Linked starting from aUnit->func_list. */
92 struct dwarf1_func* prev;
94 /* Name of function. */
95 char* name;
97 /* The highest and lowest address used in the compilation unit. */
98 unsigned long low_pc;
99 unsigned long high_pc;
102 /* Used to return info about a parsed die. */
103 struct die_info {
104 unsigned long length;
105 unsigned long sibling;
106 unsigned long low_pc;
107 unsigned long high_pc;
108 unsigned long stmt_list_offset;
110 char* name;
112 int has_stmt_list;
114 unsigned short tag;
117 /* Parsed line number information. */
118 struct linenumber {
119 /* First address in the line. */
120 unsigned long addr;
122 /* The line number. */
123 unsigned long linenumber;
126 /* Find the form of an attr, from the attr field. */
127 #define FORM_FROM_ATTR(attr) ((attr) & 0xF) /* Implicitly specified */
129 static struct dwarf1_unit *alloc_dwarf1_unit PARAMS ((struct dwarf1_debug *));
130 static struct dwarf1_func *alloc_dwarf1_func
131 PARAMS ((struct dwarf1_debug *, struct dwarf1_unit *));
132 static boolean parse_die PARAMS ((bfd *, struct die_info *, char *));
133 static boolean parse_line_table
134 PARAMS ((struct dwarf1_debug *, struct dwarf1_unit *));
135 static boolean parse_functions_in_unit
136 PARAMS ((struct dwarf1_debug *, struct dwarf1_unit *));
137 static boolean dwarf1_unit_find_nearest_line
138 PARAMS ((struct dwarf1_debug *, struct dwarf1_unit *, unsigned long,
139 const char **, const char **, unsigned int *));
141 /* Return a newly allocated dwarf1_unit. It should be cleared and
142 then attached into the 'stash' at 'stash->lastUnit'. */
144 static struct dwarf1_unit*
145 alloc_dwarf1_unit (stash)
146 struct dwarf1_debug* stash;
148 struct dwarf1_unit* x =
149 (struct dwarf1_unit*) bfd_zalloc (stash->abfd,
150 sizeof (struct dwarf1_unit));
151 x->prev = stash->lastUnit;
152 stash->lastUnit = x;
154 return x;
157 /* Return a newly allocated dwarf1_func. It must be cleared and
158 attached into 'aUnit' at 'aUnit->func_list'. */
160 static struct dwarf1_func*
161 alloc_dwarf1_func (stash, aUnit)
162 struct dwarf1_debug* stash;
163 struct dwarf1_unit* aUnit;
165 struct dwarf1_func* x =
166 (struct dwarf1_func*) bfd_zalloc (stash->abfd,
167 sizeof (struct dwarf1_func));
168 x->prev = aUnit->func_list;
169 aUnit->func_list = x;
171 return x;
174 /* parse_die - parse a Dwarf1 die.
175 Parse the die starting at 'aDiePtr' into 'aDieInfo'.
176 'abfd' must be the bfd from which the section that 'aDiePtr'
177 points to was pulled from.
179 Return false if the die is invalidly formatted; true otherwise. */
181 static boolean
182 parse_die (abfd, aDieInfo, aDiePtr)
183 bfd* abfd;
184 struct die_info* aDieInfo;
185 char* aDiePtr;
187 char* this_die = aDiePtr;
188 char* xptr = this_die;
190 memset (aDieInfo,0,sizeof (*aDieInfo));
192 /* First comes the length. */
193 aDieInfo->length = bfd_get_32 (abfd, (bfd_byte *) xptr);
194 xptr += 4;
195 if (aDieInfo->length == 0)
196 return false;
197 if (aDieInfo->length < 6)
199 /* Just padding bytes. */
200 aDieInfo->tag = TAG_padding;
201 return true;
204 /* Then the tag. */
205 aDieInfo->tag = bfd_get_16 (abfd, (bfd_byte *) xptr);
206 xptr += 2;
208 /* Then the attributes. */
209 while (xptr < (this_die + aDieInfo->length))
211 unsigned short attr;
213 /* Parse the attribute based on its form. This section
214 must handle all dwarf1 forms, but need only handle the
215 actual attributes that we care about. */
217 attr = bfd_get_16 (abfd, (bfd_byte *) xptr);
218 xptr += 2;
220 switch (FORM_FROM_ATTR (attr))
222 case FORM_DATA2:
223 xptr += 2;
224 break;
225 case FORM_DATA4:
226 case FORM_REF:
227 if (attr == AT_sibling)
228 aDieInfo->sibling = bfd_get_32 (abfd, (bfd_byte *) xptr);
229 else if (attr == AT_stmt_list)
231 aDieInfo->stmt_list_offset = bfd_get_32 (abfd, (bfd_byte *) xptr);
232 aDieInfo->has_stmt_list = 1;
234 xptr += 4;
235 break;
236 case FORM_DATA8:
237 xptr += 8;
238 break;
239 case FORM_ADDR:
240 if (attr == AT_low_pc)
241 aDieInfo->low_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
242 else if (attr == AT_high_pc)
243 aDieInfo->high_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
244 xptr += 4;
245 break;
246 case FORM_BLOCK2:
247 xptr += 2 + bfd_get_16 (abfd, (bfd_byte *) xptr);
248 break;
249 case FORM_BLOCK4:
250 xptr += 4 + bfd_get_32 (abfd, (bfd_byte *) xptr);
251 break;
252 case FORM_STRING:
253 if (attr == AT_name)
254 aDieInfo->name = xptr;
255 xptr += strlen (xptr) + 1;
256 break;
260 return true;
263 /* Parse a dwarf1 line number table for 'aUnit->stmt_list_offset'
264 into 'aUnit->linenumber_table'. Return false if an error
265 occurs; true otherwise. */
267 static boolean
268 parse_line_table (stash, aUnit)
269 struct dwarf1_debug* stash;
270 struct dwarf1_unit* aUnit;
272 char* xptr;
274 /* Load the ".line" section from the bfd if we haven't already. */
275 if (stash->line_section == 0)
277 asection *msec;
278 unsigned long size;
280 msec = bfd_get_section_by_name (stash->abfd, ".line");
281 if (! msec)
282 return false;
284 size = bfd_get_section_size_before_reloc (msec);
285 stash->line_section = (char *) bfd_alloc (stash->abfd, size);
287 if (! stash->line_section)
288 return false;
290 if (! bfd_get_section_contents (stash->abfd, msec, stash->line_section, 0, size))
292 stash->line_section = 0;
293 return false;
296 stash->line_section_end = stash->line_section + size;
299 xptr = stash->line_section + aUnit->stmt_list_offset;
300 if (xptr < stash->line_section_end)
302 unsigned long eachLine;
304 char* tblend;
305 unsigned long base;
307 /* First comes the length. */
308 tblend = bfd_get_32 (stash->abfd, (bfd_byte *) xptr) + xptr;
309 xptr += 4;
311 /* Then the base address for each address in the table. */
312 base = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
313 xptr += 4;
315 /* How many line entrys?
316 10 = 4 (line number) + 2 (pos in line) + 4 (address in line) */
317 aUnit->line_count = (tblend - xptr) / 10;
319 /* Allocate an array for the entries. */
320 aUnit->linenumber_table = (struct linenumber *)
321 bfd_alloc (stash->abfd,
322 sizeof (struct linenumber) * aUnit->line_count);
324 for (eachLine = 0; eachLine < aUnit->line_count; eachLine++)
326 /* A line number. */
327 aUnit->linenumber_table[eachLine].linenumber
328 = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
329 xptr += 4;
331 /* Skip the position within the line. */
332 xptr += 2;
334 /* And finally the address. */
335 aUnit->linenumber_table[eachLine].addr
336 = base + bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
337 xptr += 4;
341 return true;
344 /* Parse each function die in a compilation unit 'aUnit'.
345 The first child die of 'aUnit' should be in 'aUnit->first_child',
346 the result is placed in 'aUnit->func_list'.
347 Return false if error; true otherwise. */
349 static boolean
350 parse_functions_in_unit (stash, aUnit)
351 struct dwarf1_debug* stash;
352 struct dwarf1_unit* aUnit;
354 char* eachDie;
356 if (aUnit->first_child)
357 for (eachDie = aUnit->first_child;
358 eachDie < stash->debug_section_end;
361 struct die_info eachDieInfo;
363 if (! parse_die (stash->abfd, &eachDieInfo, eachDie))
364 return false;
366 if (eachDieInfo.tag == TAG_global_subroutine
367 || eachDieInfo.tag == TAG_subroutine
368 || eachDieInfo.tag == TAG_inlined_subroutine
369 || eachDieInfo.tag == TAG_entry_point)
371 struct dwarf1_func* aFunc = alloc_dwarf1_func (stash,aUnit);
373 aFunc->name = eachDieInfo.name;
374 aFunc->low_pc = eachDieInfo.low_pc;
375 aFunc->high_pc = eachDieInfo.high_pc;
378 /* Move to next sibling, if none, end loop */
379 if (eachDieInfo.sibling)
380 eachDie = stash->debug_section + eachDieInfo.sibling;
381 else
382 break;
385 return true;
388 /* Find the nearest line to 'addr' in 'aUnit'.
389 Return whether we found the line (or a function) without error. */
391 static boolean
392 dwarf1_unit_find_nearest_line (stash, aUnit, addr,
393 filename_ptr, functionname_ptr,
394 linenumber_ptr)
395 struct dwarf1_debug* stash;
396 struct dwarf1_unit* aUnit;
397 unsigned long addr;
398 const char **filename_ptr;
399 const char **functionname_ptr;
400 unsigned int *linenumber_ptr;
402 int line_p = false;
403 int func_p = false;
405 if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
407 if (aUnit->has_stmt_list)
409 unsigned long i;
410 struct dwarf1_func* eachFunc;
412 if (! aUnit->linenumber_table)
414 if (! parse_line_table (stash, aUnit))
415 return false;
418 if (! aUnit->func_list)
420 if (! parse_functions_in_unit (stash, aUnit))
421 return false;
424 for (i = 0; i < aUnit->line_count; i++)
426 if (aUnit->linenumber_table[i].addr <= addr
427 && addr < aUnit->linenumber_table[i+1].addr)
429 *filename_ptr = aUnit->name;
430 *linenumber_ptr = aUnit->linenumber_table[i].linenumber;
431 line_p = true;
432 break;
436 for (eachFunc = aUnit->func_list;
437 eachFunc;
438 eachFunc = eachFunc->prev)
440 if (eachFunc->low_pc <= addr
441 && addr < eachFunc->high_pc)
443 *functionname_ptr = eachFunc->name;
444 func_p = true;
445 break;
451 return line_p || func_p;
454 /* The DWARF 1 version of find_nearest line.
455 Return true if the line is found without error. */
457 boolean
458 _bfd_dwarf1_find_nearest_line (abfd, section, symbols, offset,
459 filename_ptr, functionname_ptr, linenumber_ptr)
460 bfd *abfd;
461 asection *section;
462 asymbol **symbols ATTRIBUTE_UNUSED;
463 bfd_vma offset;
464 const char **filename_ptr;
465 const char **functionname_ptr;
466 unsigned int *linenumber_ptr;
468 struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info;
470 struct dwarf1_unit* eachUnit;
472 /* What address are we looking for? */
473 unsigned long addr = (unsigned long)(offset + section->vma);
475 *filename_ptr = NULL;
476 *functionname_ptr = NULL;
477 *linenumber_ptr = 0;
479 if (! stash)
481 asection *msec;
482 unsigned long size;
484 stash = elf_tdata (abfd)->dwarf1_find_line_info =
485 (struct dwarf1_debug*) bfd_zalloc (abfd, sizeof (struct dwarf1_debug));
487 if (! stash)
488 return false;
490 msec = bfd_get_section_by_name (abfd, ".debug");
491 if (! msec)
493 /* No dwarf1 info. Note that at this point the stash
494 has been allocated, but contains zeros, this lets
495 future calls to this function fail quicker. */
496 return false;
499 size = bfd_get_section_size_before_reloc (msec);
500 stash->debug_section = (char *) bfd_alloc (abfd, size);
502 if (! stash->debug_section)
503 return false;
505 if (! bfd_get_section_contents (abfd, msec, stash->debug_section, 0, size))
507 stash->debug_section = 0;
508 return false;
511 stash->debug_section_end = stash->debug_section + size;
512 stash->currentDie = stash->debug_section;
513 stash->abfd = abfd;
516 /* A null debug_section indicates that there was no dwarf1 info
517 or that an error occured while setting up the stash. */
519 if (! stash->debug_section)
520 return false;
522 /* Look at the previously parsed units to see if any contain
523 the addr. */
524 for (eachUnit = stash->lastUnit; eachUnit; eachUnit = eachUnit->prev)
526 if (eachUnit->low_pc <= addr && addr < eachUnit->high_pc)
527 return dwarf1_unit_find_nearest_line (stash, eachUnit, addr,
528 filename_ptr,
529 functionname_ptr,
530 linenumber_ptr);
533 while (stash->currentDie < stash->debug_section_end)
535 struct die_info aDieInfo;
537 if (! parse_die (stash->abfd, &aDieInfo, stash->currentDie))
538 return false;
540 if (aDieInfo.tag == TAG_compile_unit)
542 struct dwarf1_unit* aUnit
543 = alloc_dwarf1_unit (stash);
545 aUnit->name = aDieInfo.name;
546 aUnit->low_pc = aDieInfo.low_pc;
547 aUnit->high_pc = aDieInfo.high_pc;
548 aUnit->has_stmt_list = aDieInfo.has_stmt_list;
549 aUnit->stmt_list_offset = aDieInfo.stmt_list_offset;
551 /* A die has a child if it's followed by a die that is
552 not it's sibling. */
553 if (aDieInfo.sibling
554 && stash->currentDie + aDieInfo.length
555 < stash->debug_section_end
556 && stash->currentDie + aDieInfo.length
557 != stash->debug_section + aDieInfo.sibling)
558 aUnit->first_child = stash->currentDie + aDieInfo.length;
559 else
560 aUnit->first_child = 0;
562 if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
563 return dwarf1_unit_find_nearest_line (stash, aUnit, addr,
564 filename_ptr,
565 functionname_ptr,
566 linenumber_ptr);
569 if (aDieInfo.sibling != 0)
570 stash->currentDie = stash->debug_section + aDieInfo.sibling;
571 else
572 stash->currentDie += aDieInfo.length;
575 return false;
578 /* EOF */