2010-08-03 Tristan Gingold <gingold@adacore.com>
[deliverable/binutils-gdb.git] / binutils / dwarf.c
1 /* dwarf.c -- display DWARF contents of a BFD binary file
2 Copyright 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Binutils.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22 #include "sysdep.h"
23 #include "libiberty.h"
24 #include "bfd.h"
25 #include "bucomm.h"
26 #include "elf/common.h"
27 #include "dwarf2.h"
28 #include "dwarf.h"
29
30 static int have_frame_base;
31 static int need_base_address;
32
33 static unsigned int last_pointer_size = 0;
34 static int warned_about_missing_comp_units = FALSE;
35
36 static unsigned int num_debug_info_entries = 0;
37 static debug_info *debug_information = NULL;
38 /* Special value for num_debug_info_entries to indicate
39 that the .debug_info section could not be loaded/parsed. */
40 #define DEBUG_INFO_UNAVAILABLE (unsigned int) -1
41
42 int eh_addr_size;
43
44 int do_debug_info;
45 int do_debug_abbrevs;
46 int do_debug_lines;
47 int do_debug_pubnames;
48 int do_debug_pubtypes;
49 int do_debug_aranges;
50 int do_debug_ranges;
51 int do_debug_frames;
52 int do_debug_frames_interp;
53 int do_debug_macinfo;
54 int do_debug_str;
55 int do_debug_loc;
56 int do_trace_info;
57 int do_trace_abbrevs;
58 int do_trace_aranges;
59 int do_wide;
60
61 /* Values for do_debug_lines. */
62 #define FLAG_DEBUG_LINES_RAW 1
63 #define FLAG_DEBUG_LINES_DECODED 2
64
65 dwarf_vma (*byte_get) (unsigned char *, int);
66
67 dwarf_vma
68 byte_get_little_endian (unsigned char *field, int size)
69 {
70 switch (size)
71 {
72 case 1:
73 return *field;
74
75 case 2:
76 return ((unsigned int) (field[0]))
77 | (((unsigned int) (field[1])) << 8);
78
79 case 3:
80 return ((unsigned long) (field[0]))
81 | (((unsigned long) (field[1])) << 8)
82 | (((unsigned long) (field[2])) << 16);
83
84 case 4:
85 return ((unsigned long) (field[0]))
86 | (((unsigned long) (field[1])) << 8)
87 | (((unsigned long) (field[2])) << 16)
88 | (((unsigned long) (field[3])) << 24);
89
90 case 8:
91 if (sizeof (dwarf_vma) == 8)
92 return ((dwarf_vma) (field[0]))
93 | (((dwarf_vma) (field[1])) << 8)
94 | (((dwarf_vma) (field[2])) << 16)
95 | (((dwarf_vma) (field[3])) << 24)
96 | (((dwarf_vma) (field[4])) << 32)
97 | (((dwarf_vma) (field[5])) << 40)
98 | (((dwarf_vma) (field[6])) << 48)
99 | (((dwarf_vma) (field[7])) << 56);
100 else if (sizeof (dwarf_vma) == 4)
101 /* We want to extract data from an 8 byte wide field and
102 place it into a 4 byte wide field. Since this is a little
103 endian source we can just use the 4 byte extraction code. */
104 return ((unsigned long) (field[0]))
105 | (((unsigned long) (field[1])) << 8)
106 | (((unsigned long) (field[2])) << 16)
107 | (((unsigned long) (field[3])) << 24);
108
109 default:
110 error (_("Unhandled data length: %d\n"), size);
111 abort ();
112 }
113 }
114
115 dwarf_vma
116 byte_get_big_endian (unsigned char *field, int size)
117 {
118 switch (size)
119 {
120 case 1:
121 return *field;
122
123 case 2:
124 return ((unsigned int) (field[1])) | (((int) (field[0])) << 8);
125
126 case 3:
127 return ((unsigned long) (field[2]))
128 | (((unsigned long) (field[1])) << 8)
129 | (((unsigned long) (field[0])) << 16);
130
131 case 4:
132 return ((unsigned long) (field[3]))
133 | (((unsigned long) (field[2])) << 8)
134 | (((unsigned long) (field[1])) << 16)
135 | (((unsigned long) (field[0])) << 24);
136
137 case 8:
138 if (sizeof (dwarf_vma) == 8)
139 return ((dwarf_vma) (field[7]))
140 | (((dwarf_vma) (field[6])) << 8)
141 | (((dwarf_vma) (field[5])) << 16)
142 | (((dwarf_vma) (field[4])) << 24)
143 | (((dwarf_vma) (field[3])) << 32)
144 | (((dwarf_vma) (field[2])) << 40)
145 | (((dwarf_vma) (field[1])) << 48)
146 | (((dwarf_vma) (field[0])) << 56);
147 else if (sizeof (dwarf_vma) == 4)
148 {
149 /* Although we are extracing data from an 8 byte wide field,
150 we are returning only 4 bytes of data. */
151 field += 4;
152 return ((unsigned long) (field[3]))
153 | (((unsigned long) (field[2])) << 8)
154 | (((unsigned long) (field[1])) << 16)
155 | (((unsigned long) (field[0])) << 24);
156 }
157
158 default:
159 error (_("Unhandled data length: %d\n"), size);
160 abort ();
161 }
162 }
163
164 static dwarf_vma
165 byte_get_signed (unsigned char *field, int size)
166 {
167 dwarf_vma x = byte_get (field, size);
168
169 switch (size)
170 {
171 case 1:
172 return (x ^ 0x80) - 0x80;
173 case 2:
174 return (x ^ 0x8000) - 0x8000;
175 case 4:
176 return (x ^ 0x80000000) - 0x80000000;
177 case 8:
178 return x;
179 default:
180 abort ();
181 }
182 }
183
184 static int
185 size_of_encoded_value (int encoding)
186 {
187 switch (encoding & 0x7)
188 {
189 default: /* ??? */
190 case 0: return eh_addr_size;
191 case 2: return 2;
192 case 3: return 4;
193 case 4: return 8;
194 }
195 }
196
197 static dwarf_vma
198 get_encoded_value (unsigned char *data, int encoding)
199 {
200 int size = size_of_encoded_value (encoding);
201
202 if (encoding & DW_EH_PE_signed)
203 return byte_get_signed (data, size);
204 else
205 return byte_get (data, size);
206 }
207
208 /* Print a dwarf_vma value (typically an address, offset or length) in
209 hexadecimal format, followed by a space. The length of the value (and
210 hence the precision displayed) is determined by the byte_size parameter. */
211
212 static void
213 print_dwarf_vma (dwarf_vma val, unsigned byte_size)
214 {
215 static char buff[18];
216
217 /* Printf does not have a way of specifiying a maximum field width for an
218 integer value, so we print the full value into a buffer and then select
219 the precision we need. */
220 #if __STDC_VERSION__ >= 199901L || (defined(__GNUC__) && __GNUC__ >= 2)
221 #ifndef __MSVCRT__
222 snprintf (buff, sizeof (buff), "%16.16llx ", val);
223 #else
224 snprintf (buff, sizeof (buff), "%016I64x ", val);
225 #endif
226 #else
227 snprintf (buff, sizeof (buff), "%16.16lx ", val);
228 #endif
229
230 fputs (buff + (byte_size == 4 ? 8 : 0), stdout);
231 }
232
233 unsigned long int
234 read_leb128 (unsigned char *data, unsigned int *length_return, int sign)
235 {
236 unsigned long int result = 0;
237 unsigned int num_read = 0;
238 unsigned int shift = 0;
239 unsigned char byte;
240
241 do
242 {
243 byte = *data++;
244 num_read++;
245
246 result |= ((unsigned long int) (byte & 0x7f)) << shift;
247
248 shift += 7;
249
250 }
251 while (byte & 0x80);
252
253 if (length_return != NULL)
254 *length_return = num_read;
255
256 if (sign && (shift < 8 * sizeof (result)) && (byte & 0x40))
257 result |= -1L << shift;
258
259 return result;
260 }
261
262 typedef struct State_Machine_Registers
263 {
264 unsigned long address;
265 unsigned int file;
266 unsigned int line;
267 unsigned int column;
268 int is_stmt;
269 int basic_block;
270 unsigned char op_index;
271 unsigned char end_sequence;
272 /* This variable hold the number of the last entry seen
273 in the File Table. */
274 unsigned int last_file_entry;
275 } SMR;
276
277 static SMR state_machine_regs;
278
279 static void
280 reset_state_machine (int is_stmt)
281 {
282 state_machine_regs.address = 0;
283 state_machine_regs.op_index = 0;
284 state_machine_regs.file = 1;
285 state_machine_regs.line = 1;
286 state_machine_regs.column = 0;
287 state_machine_regs.is_stmt = is_stmt;
288 state_machine_regs.basic_block = 0;
289 state_machine_regs.end_sequence = 0;
290 state_machine_regs.last_file_entry = 0;
291 }
292
293 /* Handled an extend line op.
294 Returns the number of bytes read. */
295
296 static int
297 process_extended_line_op (unsigned char *data, int is_stmt)
298 {
299 unsigned char op_code;
300 unsigned int bytes_read;
301 unsigned int len;
302 unsigned char *name;
303 unsigned long adr;
304
305 len = read_leb128 (data, & bytes_read, 0);
306 data += bytes_read;
307
308 if (len == 0)
309 {
310 warn (_("badly formed extended line op encountered!\n"));
311 return bytes_read;
312 }
313
314 len += bytes_read;
315 op_code = *data++;
316
317 printf (_(" Extended opcode %d: "), op_code);
318
319 switch (op_code)
320 {
321 case DW_LNE_end_sequence:
322 printf (_("End of Sequence\n\n"));
323 reset_state_machine (is_stmt);
324 break;
325
326 case DW_LNE_set_address:
327 adr = byte_get (data, len - bytes_read - 1);
328 printf (_("set Address to 0x%lx\n"), adr);
329 state_machine_regs.address = adr;
330 state_machine_regs.op_index = 0;
331 break;
332
333 case DW_LNE_define_file:
334 printf (_(" define new File Table entry\n"));
335 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
336
337 printf (_(" %d\t"), ++state_machine_regs.last_file_entry);
338 name = data;
339 data += strlen ((char *) data) + 1;
340 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
341 data += bytes_read;
342 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
343 data += bytes_read;
344 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
345 printf (_("%s\n\n"), name);
346 break;
347
348 case DW_LNE_set_discriminator:
349 printf (_("set Discriminator to %lu\n"),
350 read_leb128 (data, & bytes_read, 0));
351 break;
352
353 /* HP extensions. */
354 case DW_LNE_HP_negate_is_UV_update:
355 printf ("DW_LNE_HP_negate_is_UV_update\n");
356 break;
357 case DW_LNE_HP_push_context:
358 printf ("DW_LNE_HP_push_context\n");
359 break;
360 case DW_LNE_HP_pop_context:
361 printf ("DW_LNE_HP_pop_context\n");
362 break;
363 case DW_LNE_HP_set_file_line_column:
364 printf ("DW_LNE_HP_set_file_line_column\n");
365 break;
366 case DW_LNE_HP_set_routine_name:
367 printf ("DW_LNE_HP_set_routine_name\n");
368 break;
369 case DW_LNE_HP_set_sequence:
370 printf ("DW_LNE_HP_set_sequence\n");
371 break;
372 case DW_LNE_HP_negate_post_semantics:
373 printf ("DW_LNE_HP_negate_post_semantics\n");
374 break;
375 case DW_LNE_HP_negate_function_exit:
376 printf ("DW_LNE_HP_negate_function_exit\n");
377 break;
378 case DW_LNE_HP_negate_front_end_logical:
379 printf ("DW_LNE_HP_negate_front_end_logical\n");
380 break;
381 case DW_LNE_HP_define_proc:
382 printf ("DW_LNE_HP_define_proc\n");
383 break;
384
385 default:
386 if (op_code >= DW_LNE_lo_user
387 /* The test against DW_LNW_hi_user is redundant due to
388 the limited range of the unsigned char data type used
389 for op_code. */
390 /*&& op_code <= DW_LNE_hi_user*/)
391 printf (_("user defined: length %d\n"), len - bytes_read);
392 else
393 printf (_("UNKNOWN: length %d\n"), len - bytes_read);
394 break;
395 }
396
397 return len;
398 }
399
400 static const char *
401 fetch_indirect_string (unsigned long offset)
402 {
403 struct dwarf_section *section = &debug_displays [str].section;
404
405 if (section->start == NULL)
406 return _("<no .debug_str section>");
407
408 /* DWARF sections under Mach-O have non-zero addresses. */
409 offset -= section->address;
410 if (offset > section->size)
411 {
412 warn (_("DW_FORM_strp offset too big: %lx\n"), offset);
413 return _("<offset is too big>");
414 }
415
416 return (const char *) section->start + offset;
417 }
418
419 /* FIXME: There are better and more efficient ways to handle
420 these structures. For now though, I just want something that
421 is simple to implement. */
422 typedef struct abbrev_attr
423 {
424 unsigned long attribute;
425 unsigned long form;
426 struct abbrev_attr *next;
427 }
428 abbrev_attr;
429
430 typedef struct abbrev_entry
431 {
432 unsigned long entry;
433 unsigned long tag;
434 int children;
435 struct abbrev_attr *first_attr;
436 struct abbrev_attr *last_attr;
437 struct abbrev_entry *next;
438 }
439 abbrev_entry;
440
441 static abbrev_entry *first_abbrev = NULL;
442 static abbrev_entry *last_abbrev = NULL;
443
444 static void
445 free_abbrevs (void)
446 {
447 abbrev_entry *abbrv;
448
449 for (abbrv = first_abbrev; abbrv;)
450 {
451 abbrev_entry *next_abbrev = abbrv->next;
452 abbrev_attr *attr;
453
454 for (attr = abbrv->first_attr; attr;)
455 {
456 abbrev_attr *next_attr = attr->next;
457
458 free (attr);
459 attr = next_attr;
460 }
461
462 free (abbrv);
463 abbrv = next_abbrev;
464 }
465
466 last_abbrev = first_abbrev = NULL;
467 }
468
469 static void
470 add_abbrev (unsigned long number, unsigned long tag, int children)
471 {
472 abbrev_entry *entry;
473
474 entry = (abbrev_entry *) malloc (sizeof (*entry));
475
476 if (entry == NULL)
477 /* ugg */
478 return;
479
480 entry->entry = number;
481 entry->tag = tag;
482 entry->children = children;
483 entry->first_attr = NULL;
484 entry->last_attr = NULL;
485 entry->next = NULL;
486
487 if (first_abbrev == NULL)
488 first_abbrev = entry;
489 else
490 last_abbrev->next = entry;
491
492 last_abbrev = entry;
493 }
494
495 static void
496 add_abbrev_attr (unsigned long attribute, unsigned long form)
497 {
498 abbrev_attr *attr;
499
500 attr = (abbrev_attr *) malloc (sizeof (*attr));
501
502 if (attr == NULL)
503 /* ugg */
504 return;
505
506 attr->attribute = attribute;
507 attr->form = form;
508 attr->next = NULL;
509
510 if (last_abbrev->first_attr == NULL)
511 last_abbrev->first_attr = attr;
512 else
513 last_abbrev->last_attr->next = attr;
514
515 last_abbrev->last_attr = attr;
516 }
517
518 /* Processes the (partial) contents of a .debug_abbrev section.
519 Returns NULL if the end of the section was encountered.
520 Returns the address after the last byte read if the end of
521 an abbreviation set was found. */
522
523 static unsigned char *
524 process_abbrev_section (unsigned char *start, unsigned char *end)
525 {
526 if (first_abbrev != NULL)
527 return NULL;
528
529 while (start < end)
530 {
531 unsigned int bytes_read;
532 unsigned long entry;
533 unsigned long tag;
534 unsigned long attribute;
535 int children;
536
537 entry = read_leb128 (start, & bytes_read, 0);
538 start += bytes_read;
539
540 /* A single zero is supposed to end the section according
541 to the standard. If there's more, then signal that to
542 the caller. */
543 if (entry == 0)
544 return start == end ? NULL : start;
545
546 tag = read_leb128 (start, & bytes_read, 0);
547 start += bytes_read;
548
549 children = *start++;
550
551 add_abbrev (entry, tag, children);
552
553 do
554 {
555 unsigned long form;
556
557 attribute = read_leb128 (start, & bytes_read, 0);
558 start += bytes_read;
559
560 form = read_leb128 (start, & bytes_read, 0);
561 start += bytes_read;
562
563 if (attribute != 0)
564 add_abbrev_attr (attribute, form);
565 }
566 while (attribute != 0);
567 }
568
569 return NULL;
570 }
571
572 static char *
573 get_TAG_name (unsigned long tag)
574 {
575 switch (tag)
576 {
577 case DW_TAG_padding: return "DW_TAG_padding";
578 case DW_TAG_array_type: return "DW_TAG_array_type";
579 case DW_TAG_class_type: return "DW_TAG_class_type";
580 case DW_TAG_entry_point: return "DW_TAG_entry_point";
581 case DW_TAG_enumeration_type: return "DW_TAG_enumeration_type";
582 case DW_TAG_formal_parameter: return "DW_TAG_formal_parameter";
583 case DW_TAG_imported_declaration: return "DW_TAG_imported_declaration";
584 case DW_TAG_label: return "DW_TAG_label";
585 case DW_TAG_lexical_block: return "DW_TAG_lexical_block";
586 case DW_TAG_member: return "DW_TAG_member";
587 case DW_TAG_pointer_type: return "DW_TAG_pointer_type";
588 case DW_TAG_reference_type: return "DW_TAG_reference_type";
589 case DW_TAG_compile_unit: return "DW_TAG_compile_unit";
590 case DW_TAG_string_type: return "DW_TAG_string_type";
591 case DW_TAG_structure_type: return "DW_TAG_structure_type";
592 case DW_TAG_subroutine_type: return "DW_TAG_subroutine_type";
593 case DW_TAG_typedef: return "DW_TAG_typedef";
594 case DW_TAG_union_type: return "DW_TAG_union_type";
595 case DW_TAG_unspecified_parameters: return "DW_TAG_unspecified_parameters";
596 case DW_TAG_variant: return "DW_TAG_variant";
597 case DW_TAG_common_block: return "DW_TAG_common_block";
598 case DW_TAG_common_inclusion: return "DW_TAG_common_inclusion";
599 case DW_TAG_inheritance: return "DW_TAG_inheritance";
600 case DW_TAG_inlined_subroutine: return "DW_TAG_inlined_subroutine";
601 case DW_TAG_module: return "DW_TAG_module";
602 case DW_TAG_ptr_to_member_type: return "DW_TAG_ptr_to_member_type";
603 case DW_TAG_set_type: return "DW_TAG_set_type";
604 case DW_TAG_subrange_type: return "DW_TAG_subrange_type";
605 case DW_TAG_with_stmt: return "DW_TAG_with_stmt";
606 case DW_TAG_access_declaration: return "DW_TAG_access_declaration";
607 case DW_TAG_base_type: return "DW_TAG_base_type";
608 case DW_TAG_catch_block: return "DW_TAG_catch_block";
609 case DW_TAG_const_type: return "DW_TAG_const_type";
610 case DW_TAG_constant: return "DW_TAG_constant";
611 case DW_TAG_enumerator: return "DW_TAG_enumerator";
612 case DW_TAG_file_type: return "DW_TAG_file_type";
613 case DW_TAG_friend: return "DW_TAG_friend";
614 case DW_TAG_namelist: return "DW_TAG_namelist";
615 case DW_TAG_namelist_item: return "DW_TAG_namelist_item";
616 case DW_TAG_packed_type: return "DW_TAG_packed_type";
617 case DW_TAG_subprogram: return "DW_TAG_subprogram";
618 case DW_TAG_template_type_param: return "DW_TAG_template_type_param";
619 case DW_TAG_template_value_param: return "DW_TAG_template_value_param";
620 case DW_TAG_thrown_type: return "DW_TAG_thrown_type";
621 case DW_TAG_try_block: return "DW_TAG_try_block";
622 case DW_TAG_variant_part: return "DW_TAG_variant_part";
623 case DW_TAG_variable: return "DW_TAG_variable";
624 case DW_TAG_volatile_type: return "DW_TAG_volatile_type";
625 case DW_TAG_MIPS_loop: return "DW_TAG_MIPS_loop";
626 case DW_TAG_format_label: return "DW_TAG_format_label";
627 case DW_TAG_function_template: return "DW_TAG_function_template";
628 case DW_TAG_class_template: return "DW_TAG_class_template";
629 /* DWARF 2.1 values. */
630 case DW_TAG_dwarf_procedure: return "DW_TAG_dwarf_procedure";
631 case DW_TAG_restrict_type: return "DW_TAG_restrict_type";
632 case DW_TAG_interface_type: return "DW_TAG_interface_type";
633 case DW_TAG_namespace: return "DW_TAG_namespace";
634 case DW_TAG_imported_module: return "DW_TAG_imported_module";
635 case DW_TAG_unspecified_type: return "DW_TAG_unspecified_type";
636 case DW_TAG_partial_unit: return "DW_TAG_partial_unit";
637 case DW_TAG_imported_unit: return "DW_TAG_imported_unit";
638 case DW_TAG_condition: return "DW_TAG_condition";
639 case DW_TAG_shared_type: return "DW_TAG_shared_type";
640 /* DWARF 4 values. */
641 case DW_TAG_type_unit: return "DW_TAG_type_unit";
642 case DW_TAG_rvalue_reference_type: return "DW_TAG_rvalue_reference_type";
643 case DW_TAG_template_alias: return "DW_TAG_template_alias";
644 /* UPC values. */
645 case DW_TAG_upc_shared_type: return "DW_TAG_upc_shared_type";
646 case DW_TAG_upc_strict_type: return "DW_TAG_upc_strict_type";
647 case DW_TAG_upc_relaxed_type: return "DW_TAG_upc_relaxed_type";
648 default:
649 {
650 static char buffer[100];
651
652 snprintf (buffer, sizeof (buffer), _("Unknown TAG value: %lx"), tag);
653 return buffer;
654 }
655 }
656 }
657
658 static char *
659 get_FORM_name (unsigned long form)
660 {
661 switch (form)
662 {
663 case DW_FORM_addr: return "DW_FORM_addr";
664 case DW_FORM_block2: return "DW_FORM_block2";
665 case DW_FORM_block4: return "DW_FORM_block4";
666 case DW_FORM_data2: return "DW_FORM_data2";
667 case DW_FORM_data4: return "DW_FORM_data4";
668 case DW_FORM_data8: return "DW_FORM_data8";
669 case DW_FORM_string: return "DW_FORM_string";
670 case DW_FORM_block: return "DW_FORM_block";
671 case DW_FORM_block1: return "DW_FORM_block1";
672 case DW_FORM_data1: return "DW_FORM_data1";
673 case DW_FORM_flag: return "DW_FORM_flag";
674 case DW_FORM_sdata: return "DW_FORM_sdata";
675 case DW_FORM_strp: return "DW_FORM_strp";
676 case DW_FORM_udata: return "DW_FORM_udata";
677 case DW_FORM_ref_addr: return "DW_FORM_ref_addr";
678 case DW_FORM_ref1: return "DW_FORM_ref1";
679 case DW_FORM_ref2: return "DW_FORM_ref2";
680 case DW_FORM_ref4: return "DW_FORM_ref4";
681 case DW_FORM_ref8: return "DW_FORM_ref8";
682 case DW_FORM_ref_udata: return "DW_FORM_ref_udata";
683 case DW_FORM_indirect: return "DW_FORM_indirect";
684 /* DWARF 4 values. */
685 case DW_FORM_sec_offset: return "DW_FORM_sec_offset";
686 case DW_FORM_exprloc: return "DW_FORM_exprloc";
687 case DW_FORM_flag_present: return "DW_FORM_flag_present";
688 case DW_FORM_ref_sig8: return "DW_FORM_ref_sig8";
689 default:
690 {
691 static char buffer[100];
692
693 snprintf (buffer, sizeof (buffer), _("Unknown FORM value: %lx"), form);
694 return buffer;
695 }
696 }
697 }
698
699 static unsigned char *
700 display_block (unsigned char *data, unsigned long length)
701 {
702 printf (_(" %lu byte block: "), length);
703
704 while (length --)
705 printf ("%lx ", (unsigned long) byte_get (data++, 1));
706
707 return data;
708 }
709
710 static int
711 decode_location_expression (unsigned char * data,
712 unsigned int pointer_size,
713 unsigned long length,
714 unsigned long cu_offset,
715 struct dwarf_section * section)
716 {
717 unsigned op;
718 unsigned int bytes_read;
719 unsigned long uvalue;
720 unsigned char *end = data + length;
721 int need_frame_base = 0;
722
723 while (data < end)
724 {
725 op = *data++;
726
727 switch (op)
728 {
729 case DW_OP_addr:
730 printf ("DW_OP_addr: %lx",
731 (unsigned long) byte_get (data, pointer_size));
732 data += pointer_size;
733 break;
734 case DW_OP_deref:
735 printf ("DW_OP_deref");
736 break;
737 case DW_OP_const1u:
738 printf ("DW_OP_const1u: %lu", (unsigned long) byte_get (data++, 1));
739 break;
740 case DW_OP_const1s:
741 printf ("DW_OP_const1s: %ld", (long) byte_get_signed (data++, 1));
742 break;
743 case DW_OP_const2u:
744 printf ("DW_OP_const2u: %lu", (unsigned long) byte_get (data, 2));
745 data += 2;
746 break;
747 case DW_OP_const2s:
748 printf ("DW_OP_const2s: %ld", (long) byte_get_signed (data, 2));
749 data += 2;
750 break;
751 case DW_OP_const4u:
752 printf ("DW_OP_const4u: %lu", (unsigned long) byte_get (data, 4));
753 data += 4;
754 break;
755 case DW_OP_const4s:
756 printf ("DW_OP_const4s: %ld", (long) byte_get_signed (data, 4));
757 data += 4;
758 break;
759 case DW_OP_const8u:
760 printf ("DW_OP_const8u: %lu %lu", (unsigned long) byte_get (data, 4),
761 (unsigned long) byte_get (data + 4, 4));
762 data += 8;
763 break;
764 case DW_OP_const8s:
765 printf ("DW_OP_const8s: %ld %ld", (long) byte_get (data, 4),
766 (long) byte_get (data + 4, 4));
767 data += 8;
768 break;
769 case DW_OP_constu:
770 printf ("DW_OP_constu: %lu", read_leb128 (data, &bytes_read, 0));
771 data += bytes_read;
772 break;
773 case DW_OP_consts:
774 printf ("DW_OP_consts: %ld", read_leb128 (data, &bytes_read, 1));
775 data += bytes_read;
776 break;
777 case DW_OP_dup:
778 printf ("DW_OP_dup");
779 break;
780 case DW_OP_drop:
781 printf ("DW_OP_drop");
782 break;
783 case DW_OP_over:
784 printf ("DW_OP_over");
785 break;
786 case DW_OP_pick:
787 printf ("DW_OP_pick: %ld", (unsigned long) byte_get (data++, 1));
788 break;
789 case DW_OP_swap:
790 printf ("DW_OP_swap");
791 break;
792 case DW_OP_rot:
793 printf ("DW_OP_rot");
794 break;
795 case DW_OP_xderef:
796 printf ("DW_OP_xderef");
797 break;
798 case DW_OP_abs:
799 printf ("DW_OP_abs");
800 break;
801 case DW_OP_and:
802 printf ("DW_OP_and");
803 break;
804 case DW_OP_div:
805 printf ("DW_OP_div");
806 break;
807 case DW_OP_minus:
808 printf ("DW_OP_minus");
809 break;
810 case DW_OP_mod:
811 printf ("DW_OP_mod");
812 break;
813 case DW_OP_mul:
814 printf ("DW_OP_mul");
815 break;
816 case DW_OP_neg:
817 printf ("DW_OP_neg");
818 break;
819 case DW_OP_not:
820 printf ("DW_OP_not");
821 break;
822 case DW_OP_or:
823 printf ("DW_OP_or");
824 break;
825 case DW_OP_plus:
826 printf ("DW_OP_plus");
827 break;
828 case DW_OP_plus_uconst:
829 printf ("DW_OP_plus_uconst: %lu",
830 read_leb128 (data, &bytes_read, 0));
831 data += bytes_read;
832 break;
833 case DW_OP_shl:
834 printf ("DW_OP_shl");
835 break;
836 case DW_OP_shr:
837 printf ("DW_OP_shr");
838 break;
839 case DW_OP_shra:
840 printf ("DW_OP_shra");
841 break;
842 case DW_OP_xor:
843 printf ("DW_OP_xor");
844 break;
845 case DW_OP_bra:
846 printf ("DW_OP_bra: %ld", (long) byte_get_signed (data, 2));
847 data += 2;
848 break;
849 case DW_OP_eq:
850 printf ("DW_OP_eq");
851 break;
852 case DW_OP_ge:
853 printf ("DW_OP_ge");
854 break;
855 case DW_OP_gt:
856 printf ("DW_OP_gt");
857 break;
858 case DW_OP_le:
859 printf ("DW_OP_le");
860 break;
861 case DW_OP_lt:
862 printf ("DW_OP_lt");
863 break;
864 case DW_OP_ne:
865 printf ("DW_OP_ne");
866 break;
867 case DW_OP_skip:
868 printf ("DW_OP_skip: %ld", (long) byte_get_signed (data, 2));
869 data += 2;
870 break;
871
872 case DW_OP_lit0:
873 case DW_OP_lit1:
874 case DW_OP_lit2:
875 case DW_OP_lit3:
876 case DW_OP_lit4:
877 case DW_OP_lit5:
878 case DW_OP_lit6:
879 case DW_OP_lit7:
880 case DW_OP_lit8:
881 case DW_OP_lit9:
882 case DW_OP_lit10:
883 case DW_OP_lit11:
884 case DW_OP_lit12:
885 case DW_OP_lit13:
886 case DW_OP_lit14:
887 case DW_OP_lit15:
888 case DW_OP_lit16:
889 case DW_OP_lit17:
890 case DW_OP_lit18:
891 case DW_OP_lit19:
892 case DW_OP_lit20:
893 case DW_OP_lit21:
894 case DW_OP_lit22:
895 case DW_OP_lit23:
896 case DW_OP_lit24:
897 case DW_OP_lit25:
898 case DW_OP_lit26:
899 case DW_OP_lit27:
900 case DW_OP_lit28:
901 case DW_OP_lit29:
902 case DW_OP_lit30:
903 case DW_OP_lit31:
904 printf ("DW_OP_lit%d", op - DW_OP_lit0);
905 break;
906
907 case DW_OP_reg0:
908 case DW_OP_reg1:
909 case DW_OP_reg2:
910 case DW_OP_reg3:
911 case DW_OP_reg4:
912 case DW_OP_reg5:
913 case DW_OP_reg6:
914 case DW_OP_reg7:
915 case DW_OP_reg8:
916 case DW_OP_reg9:
917 case DW_OP_reg10:
918 case DW_OP_reg11:
919 case DW_OP_reg12:
920 case DW_OP_reg13:
921 case DW_OP_reg14:
922 case DW_OP_reg15:
923 case DW_OP_reg16:
924 case DW_OP_reg17:
925 case DW_OP_reg18:
926 case DW_OP_reg19:
927 case DW_OP_reg20:
928 case DW_OP_reg21:
929 case DW_OP_reg22:
930 case DW_OP_reg23:
931 case DW_OP_reg24:
932 case DW_OP_reg25:
933 case DW_OP_reg26:
934 case DW_OP_reg27:
935 case DW_OP_reg28:
936 case DW_OP_reg29:
937 case DW_OP_reg30:
938 case DW_OP_reg31:
939 printf ("DW_OP_reg%d", op - DW_OP_reg0);
940 break;
941
942 case DW_OP_breg0:
943 case DW_OP_breg1:
944 case DW_OP_breg2:
945 case DW_OP_breg3:
946 case DW_OP_breg4:
947 case DW_OP_breg5:
948 case DW_OP_breg6:
949 case DW_OP_breg7:
950 case DW_OP_breg8:
951 case DW_OP_breg9:
952 case DW_OP_breg10:
953 case DW_OP_breg11:
954 case DW_OP_breg12:
955 case DW_OP_breg13:
956 case DW_OP_breg14:
957 case DW_OP_breg15:
958 case DW_OP_breg16:
959 case DW_OP_breg17:
960 case DW_OP_breg18:
961 case DW_OP_breg19:
962 case DW_OP_breg20:
963 case DW_OP_breg21:
964 case DW_OP_breg22:
965 case DW_OP_breg23:
966 case DW_OP_breg24:
967 case DW_OP_breg25:
968 case DW_OP_breg26:
969 case DW_OP_breg27:
970 case DW_OP_breg28:
971 case DW_OP_breg29:
972 case DW_OP_breg30:
973 case DW_OP_breg31:
974 printf ("DW_OP_breg%d: %ld", op - DW_OP_breg0,
975 read_leb128 (data, &bytes_read, 1));
976 data += bytes_read;
977 break;
978
979 case DW_OP_regx:
980 printf ("DW_OP_regx: %lu", read_leb128 (data, &bytes_read, 0));
981 data += bytes_read;
982 break;
983 case DW_OP_fbreg:
984 need_frame_base = 1;
985 printf ("DW_OP_fbreg: %ld", read_leb128 (data, &bytes_read, 1));
986 data += bytes_read;
987 break;
988 case DW_OP_bregx:
989 uvalue = read_leb128 (data, &bytes_read, 0);
990 data += bytes_read;
991 printf ("DW_OP_bregx: %lu %ld", uvalue,
992 read_leb128 (data, &bytes_read, 1));
993 data += bytes_read;
994 break;
995 case DW_OP_piece:
996 printf ("DW_OP_piece: %lu", read_leb128 (data, &bytes_read, 0));
997 data += bytes_read;
998 break;
999 case DW_OP_deref_size:
1000 printf ("DW_OP_deref_size: %ld", (long) byte_get (data++, 1));
1001 break;
1002 case DW_OP_xderef_size:
1003 printf ("DW_OP_xderef_size: %ld", (long) byte_get (data++, 1));
1004 break;
1005 case DW_OP_nop:
1006 printf ("DW_OP_nop");
1007 break;
1008
1009 /* DWARF 3 extensions. */
1010 case DW_OP_push_object_address:
1011 printf ("DW_OP_push_object_address");
1012 break;
1013 case DW_OP_call2:
1014 /* XXX: Strictly speaking for 64-bit DWARF3 files
1015 this ought to be an 8-byte wide computation. */
1016 printf ("DW_OP_call2: <%lx>", (long) byte_get (data, 2) + cu_offset);
1017 data += 2;
1018 break;
1019 case DW_OP_call4:
1020 /* XXX: Strictly speaking for 64-bit DWARF3 files
1021 this ought to be an 8-byte wide computation. */
1022 printf ("DW_OP_call4: <%lx>", (long) byte_get (data, 4) + cu_offset);
1023 data += 4;
1024 break;
1025 case DW_OP_call_ref:
1026 /* XXX: Strictly speaking for 64-bit DWARF3 files
1027 this ought to be an 8-byte wide computation. */
1028 printf ("DW_OP_call_ref: <%lx>", (long) byte_get (data, 4) + cu_offset);
1029 data += 4;
1030 break;
1031 case DW_OP_form_tls_address:
1032 printf ("DW_OP_form_tls_address");
1033 break;
1034 case DW_OP_call_frame_cfa:
1035 printf ("DW_OP_call_frame_cfa");
1036 break;
1037 case DW_OP_bit_piece:
1038 printf ("DW_OP_bit_piece: ");
1039 printf ("size: %lu ", read_leb128 (data, &bytes_read, 0));
1040 data += bytes_read;
1041 printf ("offset: %lu ", read_leb128 (data, &bytes_read, 0));
1042 data += bytes_read;
1043 break;
1044
1045 /* DWARF 4 extensions. */
1046 case DW_OP_stack_value:
1047 printf ("DW_OP_stack_value");
1048 break;
1049
1050 case DW_OP_implicit_value:
1051 printf ("DW_OP_implicit_value");
1052 uvalue = read_leb128 (data, &bytes_read, 0);
1053 data += bytes_read;
1054 display_block (data, uvalue);
1055 data += uvalue;
1056 break;
1057
1058 /* GNU extensions. */
1059 case DW_OP_GNU_push_tls_address:
1060 printf ("DW_OP_GNU_push_tls_address or DW_OP_HP_unknown");
1061 break;
1062 case DW_OP_GNU_uninit:
1063 printf ("DW_OP_GNU_uninit");
1064 /* FIXME: Is there data associated with this OP ? */
1065 break;
1066 case DW_OP_GNU_encoded_addr:
1067 {
1068 int encoding;
1069 dwarf_vma addr;
1070
1071 encoding = *data++;
1072 addr = get_encoded_value (data, encoding);
1073 if ((encoding & 0x70) == DW_EH_PE_pcrel)
1074 addr += section->address + (data - section->start);
1075 data += size_of_encoded_value (encoding);
1076
1077 printf ("DW_OP_GNU_encoded_addr: fmt:%02x addr:", encoding);
1078 print_dwarf_vma (addr, pointer_size);
1079 }
1080 break;
1081
1082 /* HP extensions. */
1083 case DW_OP_HP_is_value:
1084 printf ("DW_OP_HP_is_value");
1085 /* FIXME: Is there data associated with this OP ? */
1086 break;
1087 case DW_OP_HP_fltconst4:
1088 printf ("DW_OP_HP_fltconst4");
1089 /* FIXME: Is there data associated with this OP ? */
1090 break;
1091 case DW_OP_HP_fltconst8:
1092 printf ("DW_OP_HP_fltconst8");
1093 /* FIXME: Is there data associated with this OP ? */
1094 break;
1095 case DW_OP_HP_mod_range:
1096 printf ("DW_OP_HP_mod_range");
1097 /* FIXME: Is there data associated with this OP ? */
1098 break;
1099 case DW_OP_HP_unmod_range:
1100 printf ("DW_OP_HP_unmod_range");
1101 /* FIXME: Is there data associated with this OP ? */
1102 break;
1103 case DW_OP_HP_tls:
1104 printf ("DW_OP_HP_tls");
1105 /* FIXME: Is there data associated with this OP ? */
1106 break;
1107
1108 /* PGI (STMicroelectronics) extensions. */
1109 case DW_OP_PGI_omp_thread_num:
1110 /* Pushes the thread number for the current thread as it would be
1111 returned by the standard OpenMP library function:
1112 omp_get_thread_num(). The "current thread" is the thread for
1113 which the expression is being evaluated. */
1114 printf ("DW_OP_PGI_omp_thread_num");
1115 break;
1116
1117 default:
1118 if (op >= DW_OP_lo_user
1119 && op <= DW_OP_hi_user)
1120 printf (_("(User defined location op)"));
1121 else
1122 printf (_("(Unknown location op)"));
1123 /* No way to tell where the next op is, so just bail. */
1124 return need_frame_base;
1125 }
1126
1127 /* Separate the ops. */
1128 if (data < end)
1129 printf ("; ");
1130 }
1131
1132 return need_frame_base;
1133 }
1134
1135 static unsigned char *
1136 read_and_display_attr_value (unsigned long attribute,
1137 unsigned long form,
1138 unsigned char * data,
1139 unsigned long cu_offset,
1140 unsigned long pointer_size,
1141 unsigned long offset_size,
1142 int dwarf_version,
1143 debug_info * debug_info_p,
1144 int do_loc,
1145 struct dwarf_section * section)
1146 {
1147 unsigned long uvalue = 0;
1148 unsigned char *block_start = NULL;
1149 unsigned char * orig_data = data;
1150 unsigned int bytes_read;
1151
1152 switch (form)
1153 {
1154 default:
1155 break;
1156
1157 case DW_FORM_ref_addr:
1158 if (dwarf_version == 2)
1159 {
1160 uvalue = byte_get (data, pointer_size);
1161 data += pointer_size;
1162 }
1163 else if (dwarf_version == 3 || dwarf_version == 4)
1164 {
1165 uvalue = byte_get (data, offset_size);
1166 data += offset_size;
1167 }
1168 else
1169 {
1170 error (_("Internal error: DWARF version is not 2, 3 or 4.\n"));
1171 }
1172 break;
1173
1174 case DW_FORM_addr:
1175 uvalue = byte_get (data, pointer_size);
1176 data += pointer_size;
1177 break;
1178
1179 case DW_FORM_strp:
1180 case DW_FORM_sec_offset:
1181 uvalue = byte_get (data, offset_size);
1182 data += offset_size;
1183 break;
1184
1185 case DW_FORM_flag_present:
1186 uvalue = 1;
1187 break;
1188
1189 case DW_FORM_ref1:
1190 case DW_FORM_flag:
1191 case DW_FORM_data1:
1192 uvalue = byte_get (data++, 1);
1193 break;
1194
1195 case DW_FORM_ref2:
1196 case DW_FORM_data2:
1197 uvalue = byte_get (data, 2);
1198 data += 2;
1199 break;
1200
1201 case DW_FORM_ref4:
1202 case DW_FORM_data4:
1203 uvalue = byte_get (data, 4);
1204 data += 4;
1205 break;
1206
1207 case DW_FORM_sdata:
1208 uvalue = read_leb128 (data, & bytes_read, 1);
1209 data += bytes_read;
1210 break;
1211
1212 case DW_FORM_ref_udata:
1213 case DW_FORM_udata:
1214 uvalue = read_leb128 (data, & bytes_read, 0);
1215 data += bytes_read;
1216 break;
1217
1218 case DW_FORM_indirect:
1219 form = read_leb128 (data, & bytes_read, 0);
1220 data += bytes_read;
1221 if (!do_loc)
1222 printf (" %s", get_FORM_name (form));
1223 return read_and_display_attr_value (attribute, form, data,
1224 cu_offset, pointer_size,
1225 offset_size, dwarf_version,
1226 debug_info_p, do_loc,
1227 section);
1228 }
1229
1230 switch (form)
1231 {
1232 case DW_FORM_ref_addr:
1233 if (!do_loc)
1234 printf (" <0x%lx>", uvalue);
1235 break;
1236
1237 case DW_FORM_ref1:
1238 case DW_FORM_ref2:
1239 case DW_FORM_ref4:
1240 case DW_FORM_ref_udata:
1241 if (!do_loc)
1242 printf (" <0x%lx>", uvalue + cu_offset);
1243 break;
1244
1245 case DW_FORM_data4:
1246 case DW_FORM_addr:
1247 case DW_FORM_sec_offset:
1248 if (!do_loc)
1249 printf (" 0x%lx", uvalue);
1250 break;
1251
1252 case DW_FORM_flag_present:
1253 case DW_FORM_flag:
1254 case DW_FORM_data1:
1255 case DW_FORM_data2:
1256 case DW_FORM_sdata:
1257 case DW_FORM_udata:
1258 if (!do_loc)
1259 printf (" %ld", uvalue);
1260 break;
1261
1262 case DW_FORM_ref8:
1263 case DW_FORM_data8:
1264 if (!do_loc)
1265 {
1266 uvalue = byte_get (data, 4);
1267 printf (" 0x%lx", uvalue);
1268 printf (" 0x%lx", (unsigned long) byte_get (data + 4, 4));
1269 }
1270 if ((do_loc || do_debug_loc || do_debug_ranges)
1271 && num_debug_info_entries == 0)
1272 {
1273 if (sizeof (uvalue) == 8)
1274 uvalue = byte_get (data, 8);
1275 else
1276 error (_("DW_FORM_data8 is unsupported when sizeof (unsigned long) != 8\n"));
1277 }
1278 data += 8;
1279 break;
1280
1281 case DW_FORM_string:
1282 if (!do_loc)
1283 printf (" %s", data);
1284 data += strlen ((char *) data) + 1;
1285 break;
1286
1287 case DW_FORM_block:
1288 case DW_FORM_exprloc:
1289 uvalue = read_leb128 (data, & bytes_read, 0);
1290 block_start = data + bytes_read;
1291 if (do_loc)
1292 data = block_start + uvalue;
1293 else
1294 data = display_block (block_start, uvalue);
1295 break;
1296
1297 case DW_FORM_block1:
1298 uvalue = byte_get (data, 1);
1299 block_start = data + 1;
1300 if (do_loc)
1301 data = block_start + uvalue;
1302 else
1303 data = display_block (block_start, uvalue);
1304 break;
1305
1306 case DW_FORM_block2:
1307 uvalue = byte_get (data, 2);
1308 block_start = data + 2;
1309 if (do_loc)
1310 data = block_start + uvalue;
1311 else
1312 data = display_block (block_start, uvalue);
1313 break;
1314
1315 case DW_FORM_block4:
1316 uvalue = byte_get (data, 4);
1317 block_start = data + 4;
1318 if (do_loc)
1319 data = block_start + uvalue;
1320 else
1321 data = display_block (block_start, uvalue);
1322 break;
1323
1324 case DW_FORM_strp:
1325 if (!do_loc)
1326 printf (_(" (indirect string, offset: 0x%lx): %s"),
1327 uvalue, fetch_indirect_string (uvalue));
1328 break;
1329
1330 case DW_FORM_indirect:
1331 /* Handled above. */
1332 break;
1333
1334 case DW_FORM_ref_sig8:
1335 if (!do_loc)
1336 {
1337 int i;
1338 printf (" signature: ");
1339 for (i = 0; i < 8; i++)
1340 {
1341 printf ("%02x", (unsigned) byte_get (data, 1));
1342 data += 1;
1343 }
1344 }
1345 else
1346 data += 8;
1347 break;
1348
1349 default:
1350 warn (_("Unrecognized form: %lu\n"), form);
1351 break;
1352 }
1353
1354 if ((do_loc || do_debug_loc || do_debug_ranges)
1355 && num_debug_info_entries == 0)
1356 {
1357 switch (attribute)
1358 {
1359 case DW_AT_frame_base:
1360 have_frame_base = 1;
1361 case DW_AT_location:
1362 case DW_AT_string_length:
1363 case DW_AT_return_addr:
1364 case DW_AT_data_member_location:
1365 case DW_AT_vtable_elem_location:
1366 case DW_AT_segment:
1367 case DW_AT_static_link:
1368 case DW_AT_use_location:
1369 if (form == DW_FORM_data4
1370 || form == DW_FORM_data8
1371 || form == DW_FORM_sec_offset)
1372 {
1373 /* Process location list. */
1374 unsigned int lmax = debug_info_p->max_loc_offsets;
1375 unsigned int num = debug_info_p->num_loc_offsets;
1376
1377 if (lmax == 0 || num >= lmax)
1378 {
1379 lmax += 1024;
1380 debug_info_p->loc_offsets = (long unsigned int *)
1381 xcrealloc (debug_info_p->loc_offsets,
1382 lmax, sizeof (*debug_info_p->loc_offsets));
1383 debug_info_p->have_frame_base = (int *)
1384 xcrealloc (debug_info_p->have_frame_base,
1385 lmax, sizeof (*debug_info_p->have_frame_base));
1386 debug_info_p->max_loc_offsets = lmax;
1387 }
1388 debug_info_p->loc_offsets [num] = uvalue;
1389 debug_info_p->have_frame_base [num] = have_frame_base;
1390 debug_info_p->num_loc_offsets++;
1391 }
1392 break;
1393
1394 case DW_AT_low_pc:
1395 if (need_base_address)
1396 debug_info_p->base_address = uvalue;
1397 break;
1398
1399 case DW_AT_ranges:
1400 if (form == DW_FORM_data4
1401 || form == DW_FORM_data8
1402 || form == DW_FORM_sec_offset)
1403 {
1404 /* Process range list. */
1405 unsigned int lmax = debug_info_p->max_range_lists;
1406 unsigned int num = debug_info_p->num_range_lists;
1407
1408 if (lmax == 0 || num >= lmax)
1409 {
1410 lmax += 1024;
1411 debug_info_p->range_lists = (long unsigned int *)
1412 xcrealloc (debug_info_p->range_lists,
1413 lmax, sizeof (*debug_info_p->range_lists));
1414 debug_info_p->max_range_lists = lmax;
1415 }
1416 debug_info_p->range_lists [num] = uvalue;
1417 debug_info_p->num_range_lists++;
1418 }
1419 break;
1420
1421 default:
1422 break;
1423 }
1424 }
1425
1426 if (do_loc)
1427 return data;
1428
1429 /* For some attributes we can display further information. */
1430 printf ("\t");
1431
1432 switch (attribute)
1433 {
1434 case DW_AT_inline:
1435 switch (uvalue)
1436 {
1437 case DW_INL_not_inlined:
1438 printf (_("(not inlined)"));
1439 break;
1440 case DW_INL_inlined:
1441 printf (_("(inlined)"));
1442 break;
1443 case DW_INL_declared_not_inlined:
1444 printf (_("(declared as inline but ignored)"));
1445 break;
1446 case DW_INL_declared_inlined:
1447 printf (_("(declared as inline and inlined)"));
1448 break;
1449 default:
1450 printf (_(" (Unknown inline attribute value: %lx)"), uvalue);
1451 break;
1452 }
1453 break;
1454
1455 case DW_AT_language:
1456 switch (uvalue)
1457 {
1458 /* Ordered by the numeric value of these constants. */
1459 case DW_LANG_C89: printf ("(ANSI C)"); break;
1460 case DW_LANG_C: printf ("(non-ANSI C)"); break;
1461 case DW_LANG_Ada83: printf ("(Ada)"); break;
1462 case DW_LANG_C_plus_plus: printf ("(C++)"); break;
1463 case DW_LANG_Cobol74: printf ("(Cobol 74)"); break;
1464 case DW_LANG_Cobol85: printf ("(Cobol 85)"); break;
1465 case DW_LANG_Fortran77: printf ("(FORTRAN 77)"); break;
1466 case DW_LANG_Fortran90: printf ("(Fortran 90)"); break;
1467 case DW_LANG_Pascal83: printf ("(ANSI Pascal)"); break;
1468 case DW_LANG_Modula2: printf ("(Modula 2)"); break;
1469 /* DWARF 2.1 values. */
1470 case DW_LANG_Java: printf ("(Java)"); break;
1471 case DW_LANG_C99: printf ("(ANSI C99)"); break;
1472 case DW_LANG_Ada95: printf ("(ADA 95)"); break;
1473 case DW_LANG_Fortran95: printf ("(Fortran 95)"); break;
1474 /* DWARF 3 values. */
1475 case DW_LANG_PLI: printf ("(PLI)"); break;
1476 case DW_LANG_ObjC: printf ("(Objective C)"); break;
1477 case DW_LANG_ObjC_plus_plus: printf ("(Objective C++)"); break;
1478 case DW_LANG_UPC: printf ("(Unified Parallel C)"); break;
1479 case DW_LANG_D: printf ("(D)"); break;
1480 /* DWARF 4 values. */
1481 case DW_LANG_Python: printf ("(Python)"); break;
1482 /* MIPS extension. */
1483 case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
1484 /* UPC extension. */
1485 case DW_LANG_Upc: printf ("(Unified Parallel C)"); break;
1486 default:
1487 if (uvalue >= DW_LANG_lo_user && uvalue <= DW_LANG_hi_user)
1488 printf ("(implementation defined: %lx)", uvalue);
1489 else
1490 printf ("(Unknown: %lx)", uvalue);
1491 break;
1492 }
1493 break;
1494
1495 case DW_AT_encoding:
1496 switch (uvalue)
1497 {
1498 case DW_ATE_void: printf ("(void)"); break;
1499 case DW_ATE_address: printf ("(machine address)"); break;
1500 case DW_ATE_boolean: printf ("(boolean)"); break;
1501 case DW_ATE_complex_float: printf ("(complex float)"); break;
1502 case DW_ATE_float: printf ("(float)"); break;
1503 case DW_ATE_signed: printf ("(signed)"); break;
1504 case DW_ATE_signed_char: printf ("(signed char)"); break;
1505 case DW_ATE_unsigned: printf ("(unsigned)"); break;
1506 case DW_ATE_unsigned_char: printf ("(unsigned char)"); break;
1507 /* DWARF 2.1 values: */
1508 case DW_ATE_imaginary_float: printf ("(imaginary float)"); break;
1509 case DW_ATE_decimal_float: printf ("(decimal float)"); break;
1510 /* DWARF 3 values: */
1511 case DW_ATE_packed_decimal: printf ("(packed_decimal)"); break;
1512 case DW_ATE_numeric_string: printf ("(numeric_string)"); break;
1513 case DW_ATE_edited: printf ("(edited)"); break;
1514 case DW_ATE_signed_fixed: printf ("(signed_fixed)"); break;
1515 case DW_ATE_unsigned_fixed: printf ("(unsigned_fixed)"); break;
1516 /* HP extensions: */
1517 case DW_ATE_HP_float80: printf ("(HP_float80)"); break;
1518 case DW_ATE_HP_complex_float80: printf ("(HP_complex_float80)"); break;
1519 case DW_ATE_HP_float128: printf ("(HP_float128)"); break;
1520 case DW_ATE_HP_complex_float128:printf ("(HP_complex_float128)"); break;
1521 case DW_ATE_HP_floathpintel: printf ("(HP_floathpintel)"); break;
1522 case DW_ATE_HP_imaginary_float80: printf ("(HP_imaginary_float80)"); break;
1523 case DW_ATE_HP_imaginary_float128: printf ("(HP_imaginary_float128)"); break;
1524
1525 default:
1526 if (uvalue >= DW_ATE_lo_user
1527 && uvalue <= DW_ATE_hi_user)
1528 printf ("(user defined type)");
1529 else
1530 printf ("(unknown type)");
1531 break;
1532 }
1533 break;
1534
1535 case DW_AT_accessibility:
1536 switch (uvalue)
1537 {
1538 case DW_ACCESS_public: printf ("(public)"); break;
1539 case DW_ACCESS_protected: printf ("(protected)"); break;
1540 case DW_ACCESS_private: printf ("(private)"); break;
1541 default:
1542 printf ("(unknown accessibility)");
1543 break;
1544 }
1545 break;
1546
1547 case DW_AT_visibility:
1548 switch (uvalue)
1549 {
1550 case DW_VIS_local: printf ("(local)"); break;
1551 case DW_VIS_exported: printf ("(exported)"); break;
1552 case DW_VIS_qualified: printf ("(qualified)"); break;
1553 default: printf ("(unknown visibility)"); break;
1554 }
1555 break;
1556
1557 case DW_AT_virtuality:
1558 switch (uvalue)
1559 {
1560 case DW_VIRTUALITY_none: printf ("(none)"); break;
1561 case DW_VIRTUALITY_virtual: printf ("(virtual)"); break;
1562 case DW_VIRTUALITY_pure_virtual:printf ("(pure_virtual)"); break;
1563 default: printf ("(unknown virtuality)"); break;
1564 }
1565 break;
1566
1567 case DW_AT_identifier_case:
1568 switch (uvalue)
1569 {
1570 case DW_ID_case_sensitive: printf ("(case_sensitive)"); break;
1571 case DW_ID_up_case: printf ("(up_case)"); break;
1572 case DW_ID_down_case: printf ("(down_case)"); break;
1573 case DW_ID_case_insensitive: printf ("(case_insensitive)"); break;
1574 default: printf ("(unknown case)"); break;
1575 }
1576 break;
1577
1578 case DW_AT_calling_convention:
1579 switch (uvalue)
1580 {
1581 case DW_CC_normal: printf ("(normal)"); break;
1582 case DW_CC_program: printf ("(program)"); break;
1583 case DW_CC_nocall: printf ("(nocall)"); break;
1584 default:
1585 if (uvalue >= DW_CC_lo_user
1586 && uvalue <= DW_CC_hi_user)
1587 printf ("(user defined)");
1588 else
1589 printf ("(unknown convention)");
1590 }
1591 break;
1592
1593 case DW_AT_ordering:
1594 switch (uvalue)
1595 {
1596 case -1: printf ("(undefined)"); break;
1597 case 0: printf ("(row major)"); break;
1598 case 1: printf ("(column major)"); break;
1599 }
1600 break;
1601
1602 case DW_AT_frame_base:
1603 have_frame_base = 1;
1604 case DW_AT_location:
1605 case DW_AT_string_length:
1606 case DW_AT_return_addr:
1607 case DW_AT_data_member_location:
1608 case DW_AT_vtable_elem_location:
1609 case DW_AT_segment:
1610 case DW_AT_static_link:
1611 case DW_AT_use_location:
1612 if (form == DW_FORM_data4
1613 || form == DW_FORM_data8
1614 || form == DW_FORM_sec_offset)
1615 printf (_("(location list)"));
1616 /* Fall through. */
1617 case DW_AT_allocated:
1618 case DW_AT_associated:
1619 case DW_AT_data_location:
1620 case DW_AT_stride:
1621 case DW_AT_upper_bound:
1622 case DW_AT_lower_bound:
1623 if (block_start)
1624 {
1625 int need_frame_base;
1626
1627 printf ("(");
1628 need_frame_base = decode_location_expression (block_start,
1629 pointer_size,
1630 uvalue,
1631 cu_offset, section);
1632 printf (")");
1633 if (need_frame_base && !have_frame_base)
1634 printf (_(" [without DW_AT_frame_base]"));
1635 }
1636 break;
1637
1638 case DW_AT_import:
1639 {
1640 if (form == DW_FORM_ref_sig8)
1641 break;
1642
1643 if (form == DW_FORM_ref1
1644 || form == DW_FORM_ref2
1645 || form == DW_FORM_ref4)
1646 uvalue += cu_offset;
1647
1648 if (uvalue >= section->size)
1649 warn (_("Offset %lx used as value for DW_AT_import attribute of DIE at offset %lx is too big.\n"),
1650 uvalue, (unsigned long) (orig_data - section->start));
1651 else
1652 {
1653 unsigned long abbrev_number;
1654 abbrev_entry * entry;
1655
1656 abbrev_number = read_leb128 (section->start + uvalue, NULL, 0);
1657
1658 printf ("[Abbrev Number: %ld", abbrev_number);
1659 for (entry = first_abbrev; entry != NULL; entry = entry->next)
1660 if (entry->entry == abbrev_number)
1661 break;
1662 if (entry != NULL)
1663 printf (" (%s)", get_TAG_name (entry->tag));
1664 printf ("]");
1665 }
1666 }
1667 break;
1668
1669 default:
1670 break;
1671 }
1672
1673 return data;
1674 }
1675
1676 static char *
1677 get_AT_name (unsigned long attribute)
1678 {
1679 switch (attribute)
1680 {
1681 case DW_AT_sibling: return "DW_AT_sibling";
1682 case DW_AT_location: return "DW_AT_location";
1683 case DW_AT_name: return "DW_AT_name";
1684 case DW_AT_ordering: return "DW_AT_ordering";
1685 case DW_AT_subscr_data: return "DW_AT_subscr_data";
1686 case DW_AT_byte_size: return "DW_AT_byte_size";
1687 case DW_AT_bit_offset: return "DW_AT_bit_offset";
1688 case DW_AT_bit_size: return "DW_AT_bit_size";
1689 case DW_AT_element_list: return "DW_AT_element_list";
1690 case DW_AT_stmt_list: return "DW_AT_stmt_list";
1691 case DW_AT_low_pc: return "DW_AT_low_pc";
1692 case DW_AT_high_pc: return "DW_AT_high_pc";
1693 case DW_AT_language: return "DW_AT_language";
1694 case DW_AT_member: return "DW_AT_member";
1695 case DW_AT_discr: return "DW_AT_discr";
1696 case DW_AT_discr_value: return "DW_AT_discr_value";
1697 case DW_AT_visibility: return "DW_AT_visibility";
1698 case DW_AT_import: return "DW_AT_import";
1699 case DW_AT_string_length: return "DW_AT_string_length";
1700 case DW_AT_common_reference: return "DW_AT_common_reference";
1701 case DW_AT_comp_dir: return "DW_AT_comp_dir";
1702 case DW_AT_const_value: return "DW_AT_const_value";
1703 case DW_AT_containing_type: return "DW_AT_containing_type";
1704 case DW_AT_default_value: return "DW_AT_default_value";
1705 case DW_AT_inline: return "DW_AT_inline";
1706 case DW_AT_is_optional: return "DW_AT_is_optional";
1707 case DW_AT_lower_bound: return "DW_AT_lower_bound";
1708 case DW_AT_producer: return "DW_AT_producer";
1709 case DW_AT_prototyped: return "DW_AT_prototyped";
1710 case DW_AT_return_addr: return "DW_AT_return_addr";
1711 case DW_AT_start_scope: return "DW_AT_start_scope";
1712 case DW_AT_stride_size: return "DW_AT_stride_size";
1713 case DW_AT_upper_bound: return "DW_AT_upper_bound";
1714 case DW_AT_abstract_origin: return "DW_AT_abstract_origin";
1715 case DW_AT_accessibility: return "DW_AT_accessibility";
1716 case DW_AT_address_class: return "DW_AT_address_class";
1717 case DW_AT_artificial: return "DW_AT_artificial";
1718 case DW_AT_base_types: return "DW_AT_base_types";
1719 case DW_AT_calling_convention: return "DW_AT_calling_convention";
1720 case DW_AT_count: return "DW_AT_count";
1721 case DW_AT_data_member_location: return "DW_AT_data_member_location";
1722 case DW_AT_decl_column: return "DW_AT_decl_column";
1723 case DW_AT_decl_file: return "DW_AT_decl_file";
1724 case DW_AT_decl_line: return "DW_AT_decl_line";
1725 case DW_AT_declaration: return "DW_AT_declaration";
1726 case DW_AT_discr_list: return "DW_AT_discr_list";
1727 case DW_AT_encoding: return "DW_AT_encoding";
1728 case DW_AT_external: return "DW_AT_external";
1729 case DW_AT_frame_base: return "DW_AT_frame_base";
1730 case DW_AT_friend: return "DW_AT_friend";
1731 case DW_AT_identifier_case: return "DW_AT_identifier_case";
1732 case DW_AT_macro_info: return "DW_AT_macro_info";
1733 case DW_AT_namelist_items: return "DW_AT_namelist_items";
1734 case DW_AT_priority: return "DW_AT_priority";
1735 case DW_AT_segment: return "DW_AT_segment";
1736 case DW_AT_specification: return "DW_AT_specification";
1737 case DW_AT_static_link: return "DW_AT_static_link";
1738 case DW_AT_type: return "DW_AT_type";
1739 case DW_AT_use_location: return "DW_AT_use_location";
1740 case DW_AT_variable_parameter: return "DW_AT_variable_parameter";
1741 case DW_AT_virtuality: return "DW_AT_virtuality";
1742 case DW_AT_vtable_elem_location: return "DW_AT_vtable_elem_location";
1743 /* DWARF 2.1 values. */
1744 case DW_AT_allocated: return "DW_AT_allocated";
1745 case DW_AT_associated: return "DW_AT_associated";
1746 case DW_AT_data_location: return "DW_AT_data_location";
1747 case DW_AT_stride: return "DW_AT_stride";
1748 case DW_AT_entry_pc: return "DW_AT_entry_pc";
1749 case DW_AT_use_UTF8: return "DW_AT_use_UTF8";
1750 case DW_AT_extension: return "DW_AT_extension";
1751 case DW_AT_ranges: return "DW_AT_ranges";
1752 case DW_AT_trampoline: return "DW_AT_trampoline";
1753 case DW_AT_call_column: return "DW_AT_call_column";
1754 case DW_AT_call_file: return "DW_AT_call_file";
1755 case DW_AT_call_line: return "DW_AT_call_line";
1756 case DW_AT_description: return "DW_AT_description";
1757 case DW_AT_binary_scale: return "DW_AT_binary_scale";
1758 case DW_AT_decimal_scale: return "DW_AT_decimal_scale";
1759 case DW_AT_small: return "DW_AT_small";
1760 case DW_AT_decimal_sign: return "DW_AT_decimal_sign";
1761 case DW_AT_digit_count: return "DW_AT_digit_count";
1762 case DW_AT_picture_string: return "DW_AT_picture_string";
1763 case DW_AT_mutable: return "DW_AT_mutable";
1764 case DW_AT_threads_scaled: return "DW_AT_threads_scaled";
1765 case DW_AT_explicit: return "DW_AT_explicit";
1766 case DW_AT_object_pointer: return "DW_AT_object_pointer";
1767 case DW_AT_endianity: return "DW_AT_endianity";
1768 case DW_AT_elemental: return "DW_AT_elemental";
1769 case DW_AT_pure: return "DW_AT_pure";
1770 case DW_AT_recursive: return "DW_AT_recursive";
1771 /* DWARF 4 values. */
1772 case DW_AT_signature: return "DW_AT_signature";
1773 case DW_AT_main_subprogram: return "DW_AT_main_subprogram";
1774 case DW_AT_data_bit_offset: return "DW_AT_data_bit_offset";
1775 case DW_AT_const_expr: return "DW_AT_const_expr";
1776 case DW_AT_enum_class: return "DW_AT_enum_class";
1777 case DW_AT_linkage_name: return "DW_AT_linkage_name";
1778
1779 /* HP and SGI/MIPS extensions. */
1780 case DW_AT_MIPS_loop_begin: return "DW_AT_MIPS_loop_begin";
1781 case DW_AT_MIPS_tail_loop_begin: return "DW_AT_MIPS_tail_loop_begin";
1782 case DW_AT_MIPS_epilog_begin: return "DW_AT_MIPS_epilog_begin";
1783 case DW_AT_MIPS_loop_unroll_factor: return "DW_AT_MIPS_loop_unroll_factor";
1784 case DW_AT_MIPS_software_pipeline_depth: return "DW_AT_MIPS_software_pipeline_depth";
1785 case DW_AT_MIPS_linkage_name: return "DW_AT_MIPS_linkage_name";
1786 case DW_AT_MIPS_stride: return "DW_AT_MIPS_stride";
1787 case DW_AT_MIPS_abstract_name: return "DW_AT_MIPS_abstract_name";
1788 case DW_AT_MIPS_clone_origin: return "DW_AT_MIPS_clone_origin";
1789 case DW_AT_MIPS_has_inlines: return "DW_AT_MIPS_has_inlines";
1790
1791 /* HP Extensions. */
1792 case DW_AT_HP_block_index: return "DW_AT_HP_block_index";
1793 case DW_AT_HP_actuals_stmt_list: return "DW_AT_HP_actuals_stmt_list";
1794 case DW_AT_HP_proc_per_section: return "DW_AT_HP_proc_per_section";
1795 case DW_AT_HP_raw_data_ptr: return "DW_AT_HP_raw_data_ptr";
1796 case DW_AT_HP_pass_by_reference: return "DW_AT_HP_pass_by_reference";
1797 case DW_AT_HP_opt_level: return "DW_AT_HP_opt_level";
1798 case DW_AT_HP_prof_version_id: return "DW_AT_HP_prof_version_id";
1799 case DW_AT_HP_opt_flags: return "DW_AT_HP_opt_flags";
1800 case DW_AT_HP_cold_region_low_pc: return "DW_AT_HP_cold_region_low_pc";
1801 case DW_AT_HP_cold_region_high_pc: return "DW_AT_HP_cold_region_high_pc";
1802 case DW_AT_HP_all_variables_modifiable: return "DW_AT_HP_all_variables_modifiable";
1803 case DW_AT_HP_linkage_name: return "DW_AT_HP_linkage_name";
1804 case DW_AT_HP_prof_flags: return "DW_AT_HP_prof_flags";
1805
1806 /* One value is shared by the MIPS and HP extensions: */
1807 case DW_AT_MIPS_fde: return "DW_AT_MIPS_fde or DW_AT_HP_unmodifiable";
1808
1809 /* GNU extensions. */
1810 case DW_AT_sf_names: return "DW_AT_sf_names";
1811 case DW_AT_src_info: return "DW_AT_src_info";
1812 case DW_AT_mac_info: return "DW_AT_mac_info";
1813 case DW_AT_src_coords: return "DW_AT_src_coords";
1814 case DW_AT_body_begin: return "DW_AT_body_begin";
1815 case DW_AT_body_end: return "DW_AT_body_end";
1816 case DW_AT_GNU_vector: return "DW_AT_GNU_vector";
1817 case DW_AT_GNU_guarded_by: return "DW_AT_GNU_guarded_by";
1818 case DW_AT_GNU_pt_guarded_by: return "DW_AT_GNU_pt_guarded_by";
1819 case DW_AT_GNU_guarded: return "DW_AT_GNU_guarded";
1820 case DW_AT_GNU_pt_guarded: return "DW_AT_GNU_pt_guarded";
1821 case DW_AT_GNU_locks_excluded: return "DW_AT_GNU_locks_excluded";
1822 case DW_AT_GNU_exclusive_locks_required: return "DW_AT_GNU_exclusive_locks_required";
1823 case DW_AT_GNU_shared_locks_required: return "DW_AT_GNU_shared_locks_required";
1824 case DW_AT_GNU_odr_signature: return "DW_AT_GNU_odr_signature";
1825 case DW_AT_use_GNAT_descriptive_type: return "DW_AT_use_GNAT_descriptive_type";
1826 case DW_AT_GNAT_descriptive_type: return "DW_AT_GNAT_descriptive_type";
1827
1828 /* UPC extension. */
1829 case DW_AT_upc_threads_scaled: return "DW_AT_upc_threads_scaled";
1830
1831 /* PGI (STMicroelectronics) extensions. */
1832 case DW_AT_PGI_lbase: return "DW_AT_PGI_lbase";
1833 case DW_AT_PGI_soffset: return "DW_AT_PGI_soffset";
1834 case DW_AT_PGI_lstride: return "DW_AT_PGI_lstride";
1835
1836 default:
1837 {
1838 static char buffer[100];
1839
1840 snprintf (buffer, sizeof (buffer), _("Unknown AT value: %lx"),
1841 attribute);
1842 return buffer;
1843 }
1844 }
1845 }
1846
1847 static unsigned char *
1848 read_and_display_attr (unsigned long attribute,
1849 unsigned long form,
1850 unsigned char * data,
1851 unsigned long cu_offset,
1852 unsigned long pointer_size,
1853 unsigned long offset_size,
1854 int dwarf_version,
1855 debug_info * debug_info_p,
1856 int do_loc,
1857 struct dwarf_section * section)
1858 {
1859 if (!do_loc)
1860 printf (" %-18s:", get_AT_name (attribute));
1861 data = read_and_display_attr_value (attribute, form, data, cu_offset,
1862 pointer_size, offset_size,
1863 dwarf_version, debug_info_p,
1864 do_loc, section);
1865 if (!do_loc)
1866 printf ("\n");
1867 return data;
1868 }
1869
1870
1871 /* Process the contents of a .debug_info section. If do_loc is non-zero
1872 then we are scanning for location lists and we do not want to display
1873 anything to the user. If do_types is non-zero, we are processing
1874 a .debug_types section instead of a .debug_info section. */
1875
1876 static int
1877 process_debug_info (struct dwarf_section *section,
1878 void *file,
1879 enum dwarf_section_display_enum abbrev_sec,
1880 int do_loc,
1881 int do_types)
1882 {
1883 unsigned char *start = section->start;
1884 unsigned char *end = start + section->size;
1885 unsigned char *section_begin;
1886 unsigned int unit;
1887 unsigned int num_units = 0;
1888
1889 if ((do_loc || do_debug_loc || do_debug_ranges)
1890 && num_debug_info_entries == 0
1891 && ! do_types)
1892 {
1893 unsigned long length;
1894
1895 /* First scan the section to get the number of comp units. */
1896 for (section_begin = start, num_units = 0; section_begin < end;
1897 num_units ++)
1898 {
1899 /* Read the first 4 bytes. For a 32-bit DWARF section, this
1900 will be the length. For a 64-bit DWARF section, it'll be
1901 the escape code 0xffffffff followed by an 8 byte length. */
1902 length = byte_get (section_begin, 4);
1903
1904 if (length == 0xffffffff)
1905 {
1906 length = byte_get (section_begin + 4, 8);
1907 section_begin += length + 12;
1908 }
1909 else if (length >= 0xfffffff0 && length < 0xffffffff)
1910 {
1911 warn (_("Reserved length value (%lx) found in section %s\n"), length, section->name);
1912 return 0;
1913 }
1914 else
1915 section_begin += length + 4;
1916
1917 /* Negative values are illegal, they may even cause infinite
1918 looping. This can happen if we can't accurately apply
1919 relocations to an object file. */
1920 if ((signed long) length <= 0)
1921 {
1922 warn (_("Corrupt unit length (%lx) found in section %s\n"), length, section->name);
1923 return 0;
1924 }
1925 }
1926
1927 if (num_units == 0)
1928 {
1929 error (_("No comp units in %s section ?"), section->name);
1930 return 0;
1931 }
1932
1933 /* Then allocate an array to hold the information. */
1934 debug_information = (debug_info *) cmalloc (num_units,
1935 sizeof (* debug_information));
1936 if (debug_information == NULL)
1937 {
1938 error (_("Not enough memory for a debug info array of %u entries"),
1939 num_units);
1940 return 0;
1941 }
1942 }
1943
1944 if (!do_loc)
1945 {
1946 printf (_("Contents of the %s section:\n\n"), section->name);
1947
1948 load_debug_section (str, file);
1949 }
1950
1951 load_debug_section (abbrev_sec, file);
1952 if (debug_displays [abbrev_sec].section.start == NULL)
1953 {
1954 warn (_("Unable to locate %s section!\n"),
1955 debug_displays [abbrev_sec].section.name);
1956 return 0;
1957 }
1958
1959 for (section_begin = start, unit = 0; start < end; unit++)
1960 {
1961 DWARF2_Internal_CompUnit compunit;
1962 unsigned char *hdrptr;
1963 unsigned char *tags;
1964 int level;
1965 unsigned long cu_offset;
1966 int offset_size;
1967 int initial_length_size;
1968 unsigned char signature[8] = { 0 };
1969 unsigned long type_offset = 0;
1970
1971 hdrptr = start;
1972
1973 compunit.cu_length = byte_get (hdrptr, 4);
1974 hdrptr += 4;
1975
1976 if (compunit.cu_length == 0xffffffff)
1977 {
1978 compunit.cu_length = byte_get (hdrptr, 8);
1979 hdrptr += 8;
1980 offset_size = 8;
1981 initial_length_size = 12;
1982 }
1983 else
1984 {
1985 offset_size = 4;
1986 initial_length_size = 4;
1987 }
1988
1989 compunit.cu_version = byte_get (hdrptr, 2);
1990 hdrptr += 2;
1991
1992 cu_offset = start - section_begin;
1993
1994 compunit.cu_abbrev_offset = byte_get (hdrptr, offset_size);
1995 hdrptr += offset_size;
1996
1997 compunit.cu_pointer_size = byte_get (hdrptr, 1);
1998 hdrptr += 1;
1999
2000 if (do_types)
2001 {
2002 int i;
2003
2004 for (i = 0; i < 8; i++)
2005 {
2006 signature[i] = byte_get (hdrptr, 1);
2007 hdrptr += 1;
2008 }
2009
2010 type_offset = byte_get (hdrptr, offset_size);
2011 hdrptr += offset_size;
2012 }
2013
2014 if ((do_loc || do_debug_loc || do_debug_ranges)
2015 && num_debug_info_entries == 0
2016 && ! do_types)
2017 {
2018 debug_information [unit].cu_offset = cu_offset;
2019 debug_information [unit].pointer_size
2020 = compunit.cu_pointer_size;
2021 debug_information [unit].base_address = 0;
2022 debug_information [unit].loc_offsets = NULL;
2023 debug_information [unit].have_frame_base = NULL;
2024 debug_information [unit].max_loc_offsets = 0;
2025 debug_information [unit].num_loc_offsets = 0;
2026 debug_information [unit].range_lists = NULL;
2027 debug_information [unit].max_range_lists= 0;
2028 debug_information [unit].num_range_lists = 0;
2029 }
2030
2031 if (!do_loc)
2032 {
2033 printf (_(" Compilation Unit @ offset 0x%lx:\n"), cu_offset);
2034 printf (_(" Length: 0x%lx (%s)\n"), compunit.cu_length,
2035 initial_length_size == 8 ? "64-bit" : "32-bit");
2036 printf (_(" Version: %d\n"), compunit.cu_version);
2037 printf (_(" Abbrev Offset: %ld\n"), compunit.cu_abbrev_offset);
2038 printf (_(" Pointer Size: %d\n"), compunit.cu_pointer_size);
2039 if (do_types)
2040 {
2041 int i;
2042 printf (_(" Signature: "));
2043 for (i = 0; i < 8; i++)
2044 printf ("%02x", signature[i]);
2045 printf ("\n");
2046 printf (_(" Type Offset: 0x%lx\n"), type_offset);
2047 }
2048 }
2049
2050 if (cu_offset + compunit.cu_length + initial_length_size
2051 > section->size)
2052 {
2053 warn (_("Debug info is corrupted, length of CU at %lx extends beyond end of section (length = %lx)\n"),
2054 cu_offset, compunit.cu_length);
2055 break;
2056 }
2057 tags = hdrptr;
2058 start += compunit.cu_length + initial_length_size;
2059
2060 if (compunit.cu_version != 2
2061 && compunit.cu_version != 3
2062 && compunit.cu_version != 4)
2063 {
2064 warn (_("CU at offset %lx contains corrupt or unsupported version number: %d.\n"),
2065 cu_offset, compunit.cu_version);
2066 continue;
2067 }
2068
2069 free_abbrevs ();
2070
2071 /* Process the abbrevs used by this compilation unit. DWARF
2072 sections under Mach-O have non-zero addresses. */
2073 if (compunit.cu_abbrev_offset >= debug_displays [abbrev_sec].section.size)
2074 warn (_("Debug info is corrupted, abbrev offset (%lx) is larger than abbrev section size (%lx)\n"),
2075 (unsigned long) compunit.cu_abbrev_offset,
2076 (unsigned long) debug_displays [abbrev_sec].section.size);
2077 else
2078 process_abbrev_section
2079 ((unsigned char *) debug_displays [abbrev_sec].section.start
2080 + compunit.cu_abbrev_offset
2081 - debug_displays [abbrev_sec].section.address,
2082 (unsigned char *) debug_displays [abbrev_sec].section.start
2083 + debug_displays [abbrev_sec].section.size);
2084
2085 level = 0;
2086 while (tags < start)
2087 {
2088 unsigned int bytes_read;
2089 unsigned long abbrev_number;
2090 unsigned long die_offset;
2091 abbrev_entry *entry;
2092 abbrev_attr *attr;
2093
2094 die_offset = tags - section_begin;
2095
2096 abbrev_number = read_leb128 (tags, & bytes_read, 0);
2097 tags += bytes_read;
2098
2099 /* A null DIE marks the end of a list of siblings or it may also be
2100 a section padding. */
2101 if (abbrev_number == 0)
2102 {
2103 /* Check if it can be a section padding for the last CU. */
2104 if (level == 0 && start == end)
2105 {
2106 unsigned char *chk;
2107
2108 for (chk = tags; chk < start; chk++)
2109 if (*chk != 0)
2110 break;
2111 if (chk == start)
2112 break;
2113 }
2114
2115 --level;
2116 if (level < 0)
2117 {
2118 static unsigned num_bogus_warns = 0;
2119
2120 if (num_bogus_warns < 3)
2121 {
2122 warn (_("Bogus end-of-siblings marker detected at offset %lx in .debug_info section\n"),
2123 die_offset);
2124 num_bogus_warns ++;
2125 if (num_bogus_warns == 3)
2126 warn (_("Further warnings about bogus end-of-sibling markers suppressed\n"));
2127 }
2128 }
2129 continue;
2130 }
2131
2132 if (!do_loc)
2133 printf (_(" <%d><%lx>: Abbrev Number: %lu"),
2134 level, die_offset, abbrev_number);
2135
2136 /* Scan through the abbreviation list until we reach the
2137 correct entry. */
2138 for (entry = first_abbrev;
2139 entry && entry->entry != abbrev_number;
2140 entry = entry->next)
2141 continue;
2142
2143 if (entry == NULL)
2144 {
2145 if (!do_loc)
2146 {
2147 printf ("\n");
2148 fflush (stdout);
2149 }
2150 warn (_("DIE at offset %lx refers to abbreviation number %lu which does not exist\n"),
2151 die_offset, abbrev_number);
2152 return 0;
2153 }
2154
2155 if (!do_loc)
2156 printf (_(" (%s)\n"), get_TAG_name (entry->tag));
2157
2158 switch (entry->tag)
2159 {
2160 default:
2161 need_base_address = 0;
2162 break;
2163 case DW_TAG_compile_unit:
2164 need_base_address = 1;
2165 break;
2166 case DW_TAG_entry_point:
2167 case DW_TAG_subprogram:
2168 need_base_address = 0;
2169 /* Assuming that there is no DW_AT_frame_base. */
2170 have_frame_base = 0;
2171 break;
2172 }
2173
2174 for (attr = entry->first_attr; attr; attr = attr->next)
2175 {
2176 if (! do_loc)
2177 /* Show the offset from where the tag was extracted. */
2178 printf (" <%2lx>", (unsigned long)(tags - section_begin));
2179
2180 tags = read_and_display_attr (attr->attribute,
2181 attr->form,
2182 tags, cu_offset,
2183 compunit.cu_pointer_size,
2184 offset_size,
2185 compunit.cu_version,
2186 debug_information + unit,
2187 do_loc, section);
2188 }
2189
2190 if (entry->children)
2191 ++level;
2192 }
2193 }
2194
2195 /* Set num_debug_info_entries here so that it can be used to check if
2196 we need to process .debug_loc and .debug_ranges sections. */
2197 if ((do_loc || do_debug_loc || do_debug_ranges)
2198 && num_debug_info_entries == 0
2199 && ! do_types)
2200 num_debug_info_entries = num_units;
2201
2202 if (!do_loc)
2203 {
2204 printf ("\n");
2205 }
2206
2207 return 1;
2208 }
2209
2210 /* Locate and scan the .debug_info section in the file and record the pointer
2211 sizes and offsets for the compilation units in it. Usually an executable
2212 will have just one pointer size, but this is not guaranteed, and so we try
2213 not to make any assumptions. Returns zero upon failure, or the number of
2214 compilation units upon success. */
2215
2216 static unsigned int
2217 load_debug_info (void * file)
2218 {
2219 /* Reset the last pointer size so that we can issue correct error
2220 messages if we are displaying the contents of more than one section. */
2221 last_pointer_size = 0;
2222 warned_about_missing_comp_units = FALSE;
2223
2224 /* If we have already tried and failed to load the .debug_info
2225 section then do not bother to repear the task. */
2226 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
2227 return 0;
2228
2229 /* If we already have the information there is nothing else to do. */
2230 if (num_debug_info_entries > 0)
2231 return num_debug_info_entries;
2232
2233 if (load_debug_section (info, file)
2234 && process_debug_info (&debug_displays [info].section, file, abbrev, 1, 0))
2235 return num_debug_info_entries;
2236
2237 num_debug_info_entries = DEBUG_INFO_UNAVAILABLE;
2238 return 0;
2239 }
2240
2241 static int
2242 display_debug_lines_raw (struct dwarf_section *section,
2243 unsigned char *data,
2244 unsigned char *end)
2245 {
2246 unsigned char *start = section->start;
2247
2248 printf (_("Raw dump of debug contents of section %s:\n\n"),
2249 section->name);
2250
2251 while (data < end)
2252 {
2253 DWARF2_Internal_LineInfo linfo;
2254 unsigned char *standard_opcodes;
2255 unsigned char *end_of_sequence;
2256 unsigned char *hdrptr;
2257 unsigned long hdroff;
2258 int initial_length_size;
2259 int offset_size;
2260 int i;
2261
2262 hdrptr = data;
2263 hdroff = hdrptr - start;
2264
2265 /* Check the length of the block. */
2266 linfo.li_length = byte_get (hdrptr, 4);
2267 hdrptr += 4;
2268
2269 if (linfo.li_length == 0xffffffff)
2270 {
2271 /* This section is 64-bit DWARF 3. */
2272 linfo.li_length = byte_get (hdrptr, 8);
2273 hdrptr += 8;
2274 offset_size = 8;
2275 initial_length_size = 12;
2276 }
2277 else
2278 {
2279 offset_size = 4;
2280 initial_length_size = 4;
2281 }
2282
2283 if (linfo.li_length + initial_length_size > section->size)
2284 {
2285 warn
2286 (_("The information in section %s appears to be corrupt - the section is too small\n"),
2287 section->name);
2288 return 0;
2289 }
2290
2291 /* Check its version number. */
2292 linfo.li_version = byte_get (hdrptr, 2);
2293 hdrptr += 2;
2294 if (linfo.li_version != 2
2295 && linfo.li_version != 3
2296 && linfo.li_version != 4)
2297 {
2298 warn (_("Only DWARF version 2, 3 and 4 line info is currently supported.\n"));
2299 return 0;
2300 }
2301
2302 linfo.li_prologue_length = byte_get (hdrptr, offset_size);
2303 hdrptr += offset_size;
2304 linfo.li_min_insn_length = byte_get (hdrptr, 1);
2305 hdrptr++;
2306 if (linfo.li_version >= 4)
2307 {
2308 linfo.li_max_ops_per_insn = byte_get (hdrptr, 1);
2309 hdrptr++;
2310 if (linfo.li_max_ops_per_insn == 0)
2311 {
2312 warn (_("Invalid maximum operations per insn.\n"));
2313 return 0;
2314 }
2315 }
2316 else
2317 linfo.li_max_ops_per_insn = 1;
2318 linfo.li_default_is_stmt = byte_get (hdrptr, 1);
2319 hdrptr++;
2320 linfo.li_line_base = byte_get (hdrptr, 1);
2321 hdrptr++;
2322 linfo.li_line_range = byte_get (hdrptr, 1);
2323 hdrptr++;
2324 linfo.li_opcode_base = byte_get (hdrptr, 1);
2325 hdrptr++;
2326
2327 /* Sign extend the line base field. */
2328 linfo.li_line_base <<= 24;
2329 linfo.li_line_base >>= 24;
2330
2331 printf (_(" Offset: 0x%lx\n"), hdroff);
2332 printf (_(" Length: %ld\n"), linfo.li_length);
2333 printf (_(" DWARF Version: %d\n"), linfo.li_version);
2334 printf (_(" Prologue Length: %d\n"), linfo.li_prologue_length);
2335 printf (_(" Minimum Instruction Length: %d\n"), linfo.li_min_insn_length);
2336 if (linfo.li_version >= 4)
2337 printf (_(" Maximum Ops per Instruction: %d\n"), linfo.li_max_ops_per_insn);
2338 printf (_(" Initial value of 'is_stmt': %d\n"), linfo.li_default_is_stmt);
2339 printf (_(" Line Base: %d\n"), linfo.li_line_base);
2340 printf (_(" Line Range: %d\n"), linfo.li_line_range);
2341 printf (_(" Opcode Base: %d\n"), linfo.li_opcode_base);
2342
2343 end_of_sequence = data + linfo.li_length + initial_length_size;
2344
2345 reset_state_machine (linfo.li_default_is_stmt);
2346
2347 /* Display the contents of the Opcodes table. */
2348 standard_opcodes = hdrptr;
2349
2350 printf (_("\n Opcodes:\n"));
2351
2352 for (i = 1; i < linfo.li_opcode_base; i++)
2353 printf (_(" Opcode %d has %d args\n"), i, standard_opcodes[i - 1]);
2354
2355 /* Display the contents of the Directory table. */
2356 data = standard_opcodes + linfo.li_opcode_base - 1;
2357
2358 if (*data == 0)
2359 printf (_("\n The Directory Table is empty.\n"));
2360 else
2361 {
2362 printf (_("\n The Directory Table:\n"));
2363
2364 while (*data != 0)
2365 {
2366 printf (_(" %s\n"), data);
2367
2368 data += strlen ((char *) data) + 1;
2369 }
2370 }
2371
2372 /* Skip the NUL at the end of the table. */
2373 data++;
2374
2375 /* Display the contents of the File Name table. */
2376 if (*data == 0)
2377 printf (_("\n The File Name Table is empty.\n"));
2378 else
2379 {
2380 printf (_("\n The File Name Table:\n"));
2381 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
2382
2383 while (*data != 0)
2384 {
2385 unsigned char *name;
2386 unsigned int bytes_read;
2387
2388 printf (_(" %d\t"), ++state_machine_regs.last_file_entry);
2389 name = data;
2390
2391 data += strlen ((char *) data) + 1;
2392
2393 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
2394 data += bytes_read;
2395 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
2396 data += bytes_read;
2397 printf (_("%lu\t"), read_leb128 (data, & bytes_read, 0));
2398 data += bytes_read;
2399 printf (_("%s\n"), name);
2400 }
2401 }
2402
2403 /* Skip the NUL at the end of the table. */
2404 data++;
2405
2406 /* Now display the statements. */
2407 printf (_("\n Line Number Statements:\n"));
2408
2409 while (data < end_of_sequence)
2410 {
2411 unsigned char op_code;
2412 int adv;
2413 unsigned long int uladv;
2414 unsigned int bytes_read;
2415
2416 op_code = *data++;
2417
2418 if (op_code >= linfo.li_opcode_base)
2419 {
2420 op_code -= linfo.li_opcode_base;
2421 uladv = (op_code / linfo.li_line_range);
2422 if (linfo.li_max_ops_per_insn == 1)
2423 {
2424 uladv *= linfo.li_min_insn_length;
2425 state_machine_regs.address += uladv;
2426 printf (_(" Special opcode %d: advance Address by %lu to 0x%lx"),
2427 op_code, uladv, state_machine_regs.address);
2428 }
2429 else
2430 {
2431 state_machine_regs.address
2432 += ((state_machine_regs.op_index + uladv)
2433 / linfo.li_max_ops_per_insn)
2434 * linfo.li_min_insn_length;
2435 state_machine_regs.op_index
2436 = (state_machine_regs.op_index + uladv)
2437 % linfo.li_max_ops_per_insn;
2438 printf (_(" Special opcode %d: advance Address by %lu to 0x%lx[%d]"),
2439 op_code, uladv, state_machine_regs.address,
2440 state_machine_regs.op_index);
2441 }
2442 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
2443 state_machine_regs.line += adv;
2444 printf (_(" and Line by %d to %d\n"),
2445 adv, state_machine_regs.line);
2446 }
2447 else switch (op_code)
2448 {
2449 case DW_LNS_extended_op:
2450 data += process_extended_line_op (data, linfo.li_default_is_stmt);
2451 break;
2452
2453 case DW_LNS_copy:
2454 printf (_(" Copy\n"));
2455 break;
2456
2457 case DW_LNS_advance_pc:
2458 uladv = read_leb128 (data, & bytes_read, 0);
2459 data += bytes_read;
2460 if (linfo.li_max_ops_per_insn == 1)
2461 {
2462 uladv *= linfo.li_min_insn_length;
2463 state_machine_regs.address += uladv;
2464 printf (_(" Advance PC by %lu to 0x%lx\n"), uladv,
2465 state_machine_regs.address);
2466 }
2467 else
2468 {
2469 state_machine_regs.address
2470 += ((state_machine_regs.op_index + uladv)
2471 / linfo.li_max_ops_per_insn)
2472 * linfo.li_min_insn_length;
2473 state_machine_regs.op_index
2474 = (state_machine_regs.op_index + uladv)
2475 % linfo.li_max_ops_per_insn;
2476 printf (_(" Advance PC by %lu to 0x%lx[%d]\n"), uladv,
2477 state_machine_regs.address,
2478 state_machine_regs.op_index);
2479 }
2480 break;
2481
2482 case DW_LNS_advance_line:
2483 adv = read_leb128 (data, & bytes_read, 1);
2484 data += bytes_read;
2485 state_machine_regs.line += adv;
2486 printf (_(" Advance Line by %d to %d\n"), adv,
2487 state_machine_regs.line);
2488 break;
2489
2490 case DW_LNS_set_file:
2491 adv = read_leb128 (data, & bytes_read, 0);
2492 data += bytes_read;
2493 printf (_(" Set File Name to entry %d in the File Name Table\n"),
2494 adv);
2495 state_machine_regs.file = adv;
2496 break;
2497
2498 case DW_LNS_set_column:
2499 uladv = read_leb128 (data, & bytes_read, 0);
2500 data += bytes_read;
2501 printf (_(" Set column to %lu\n"), uladv);
2502 state_machine_regs.column = uladv;
2503 break;
2504
2505 case DW_LNS_negate_stmt:
2506 adv = state_machine_regs.is_stmt;
2507 adv = ! adv;
2508 printf (_(" Set is_stmt to %d\n"), adv);
2509 state_machine_regs.is_stmt = adv;
2510 break;
2511
2512 case DW_LNS_set_basic_block:
2513 printf (_(" Set basic block\n"));
2514 state_machine_regs.basic_block = 1;
2515 break;
2516
2517 case DW_LNS_const_add_pc:
2518 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
2519 if (linfo.li_max_ops_per_insn)
2520 {
2521 uladv *= linfo.li_min_insn_length;
2522 state_machine_regs.address += uladv;
2523 printf (_(" Advance PC by constant %lu to 0x%lx\n"), uladv,
2524 state_machine_regs.address);
2525 }
2526 else
2527 {
2528 state_machine_regs.address
2529 += ((state_machine_regs.op_index + uladv)
2530 / linfo.li_max_ops_per_insn)
2531 * linfo.li_min_insn_length;
2532 state_machine_regs.op_index
2533 = (state_machine_regs.op_index + uladv)
2534 % linfo.li_max_ops_per_insn;
2535 printf (_(" Advance PC by constant %lu to 0x%lx[%d]\n"),
2536 uladv, state_machine_regs.address,
2537 state_machine_regs.op_index);
2538 }
2539 break;
2540
2541 case DW_LNS_fixed_advance_pc:
2542 uladv = byte_get (data, 2);
2543 data += 2;
2544 state_machine_regs.address += uladv;
2545 state_machine_regs.op_index = 0;
2546 printf (_(" Advance PC by fixed size amount %lu to 0x%lx\n"),
2547 uladv, state_machine_regs.address);
2548 break;
2549
2550 case DW_LNS_set_prologue_end:
2551 printf (_(" Set prologue_end to true\n"));
2552 break;
2553
2554 case DW_LNS_set_epilogue_begin:
2555 printf (_(" Set epilogue_begin to true\n"));
2556 break;
2557
2558 case DW_LNS_set_isa:
2559 uladv = read_leb128 (data, & bytes_read, 0);
2560 data += bytes_read;
2561 printf (_(" Set ISA to %lu\n"), uladv);
2562 break;
2563
2564 default:
2565 printf (_(" Unknown opcode %d with operands: "), op_code);
2566
2567 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
2568 {
2569 printf ("0x%lx%s", read_leb128 (data, &bytes_read, 0),
2570 i == 1 ? "" : ", ");
2571 data += bytes_read;
2572 }
2573 putchar ('\n');
2574 break;
2575 }
2576 }
2577 putchar ('\n');
2578 }
2579
2580 return 1;
2581 }
2582
2583 typedef struct
2584 {
2585 unsigned char *name;
2586 unsigned int directory_index;
2587 unsigned int modification_date;
2588 unsigned int length;
2589 } File_Entry;
2590
2591 /* Output a decoded representation of the .debug_line section. */
2592
2593 static int
2594 display_debug_lines_decoded (struct dwarf_section *section,
2595 unsigned char *data,
2596 unsigned char *end)
2597 {
2598 printf (_("Decoded dump of debug contents of section %s:\n\n"),
2599 section->name);
2600
2601 while (data < end)
2602 {
2603 /* This loop amounts to one iteration per compilation unit. */
2604 DWARF2_Internal_LineInfo linfo;
2605 unsigned char *standard_opcodes;
2606 unsigned char *end_of_sequence;
2607 unsigned char *hdrptr;
2608 int initial_length_size;
2609 int offset_size;
2610 int i;
2611 File_Entry *file_table = NULL;
2612 unsigned char **directory_table = NULL;
2613
2614 hdrptr = data;
2615
2616 /* Extract information from the Line Number Program Header.
2617 (section 6.2.4 in the Dwarf3 doc). */
2618
2619 /* Get the length of this CU's line number information block. */
2620 linfo.li_length = byte_get (hdrptr, 4);
2621 hdrptr += 4;
2622
2623 if (linfo.li_length == 0xffffffff)
2624 {
2625 /* This section is 64-bit DWARF 3. */
2626 linfo.li_length = byte_get (hdrptr, 8);
2627 hdrptr += 8;
2628 offset_size = 8;
2629 initial_length_size = 12;
2630 }
2631 else
2632 {
2633 offset_size = 4;
2634 initial_length_size = 4;
2635 }
2636
2637 if (linfo.li_length + initial_length_size > section->size)
2638 {
2639 warn (_("The line info appears to be corrupt - "
2640 "the section is too small\n"));
2641 return 0;
2642 }
2643
2644 /* Get this CU's Line Number Block version number. */
2645 linfo.li_version = byte_get (hdrptr, 2);
2646 hdrptr += 2;
2647 if (linfo.li_version != 2
2648 && linfo.li_version != 3
2649 && linfo.li_version != 4)
2650 {
2651 warn (_("Only DWARF version 2, 3 and 4 line info is currently "
2652 "supported.\n"));
2653 return 0;
2654 }
2655
2656 linfo.li_prologue_length = byte_get (hdrptr, offset_size);
2657 hdrptr += offset_size;
2658 linfo.li_min_insn_length = byte_get (hdrptr, 1);
2659 hdrptr++;
2660 if (linfo.li_version >= 4)
2661 {
2662 linfo.li_max_ops_per_insn = byte_get (hdrptr, 1);
2663 hdrptr++;
2664 if (linfo.li_max_ops_per_insn == 0)
2665 {
2666 warn (_("Invalid maximum operations per insn.\n"));
2667 return 0;
2668 }
2669 }
2670 else
2671 linfo.li_max_ops_per_insn = 1;
2672 linfo.li_default_is_stmt = byte_get (hdrptr, 1);
2673 hdrptr++;
2674 linfo.li_line_base = byte_get (hdrptr, 1);
2675 hdrptr++;
2676 linfo.li_line_range = byte_get (hdrptr, 1);
2677 hdrptr++;
2678 linfo.li_opcode_base = byte_get (hdrptr, 1);
2679 hdrptr++;
2680
2681 /* Sign extend the line base field. */
2682 linfo.li_line_base <<= 24;
2683 linfo.li_line_base >>= 24;
2684
2685 /* Find the end of this CU's Line Number Information Block. */
2686 end_of_sequence = data + linfo.li_length + initial_length_size;
2687
2688 reset_state_machine (linfo.li_default_is_stmt);
2689
2690 /* Save a pointer to the contents of the Opcodes table. */
2691 standard_opcodes = hdrptr;
2692
2693 /* Traverse the Directory table just to count entries. */
2694 data = standard_opcodes + linfo.li_opcode_base - 1;
2695 if (*data != 0)
2696 {
2697 unsigned int n_directories = 0;
2698 unsigned char *ptr_directory_table = data;
2699
2700 while (*data != 0)
2701 {
2702 data += strlen ((char *) data) + 1;
2703 n_directories++;
2704 }
2705
2706 /* Go through the directory table again to save the directories. */
2707 directory_table = (unsigned char **)
2708 xmalloc (n_directories * sizeof (unsigned char *));
2709
2710 i = 0;
2711 while (*ptr_directory_table != 0)
2712 {
2713 directory_table[i] = ptr_directory_table;
2714 ptr_directory_table += strlen ((char *) ptr_directory_table) + 1;
2715 i++;
2716 }
2717 }
2718 /* Skip the NUL at the end of the table. */
2719 data++;
2720
2721 /* Traverse the File Name table just to count the entries. */
2722 if (*data != 0)
2723 {
2724 unsigned int n_files = 0;
2725 unsigned char *ptr_file_name_table = data;
2726
2727 while (*data != 0)
2728 {
2729 unsigned int bytes_read;
2730
2731 /* Skip Name, directory index, last modification time and length
2732 of file. */
2733 data += strlen ((char *) data) + 1;
2734 read_leb128 (data, & bytes_read, 0);
2735 data += bytes_read;
2736 read_leb128 (data, & bytes_read, 0);
2737 data += bytes_read;
2738 read_leb128 (data, & bytes_read, 0);
2739 data += bytes_read;
2740
2741 n_files++;
2742 }
2743
2744 /* Go through the file table again to save the strings. */
2745 file_table = (File_Entry *) xmalloc (n_files * sizeof (File_Entry));
2746
2747 i = 0;
2748 while (*ptr_file_name_table != 0)
2749 {
2750 unsigned int bytes_read;
2751
2752 file_table[i].name = ptr_file_name_table;
2753 ptr_file_name_table += strlen ((char *) ptr_file_name_table) + 1;
2754
2755 /* We are not interested in directory, time or size. */
2756 file_table[i].directory_index = read_leb128 (ptr_file_name_table,
2757 & bytes_read, 0);
2758 ptr_file_name_table += bytes_read;
2759 file_table[i].modification_date = read_leb128 (ptr_file_name_table,
2760 & bytes_read, 0);
2761 ptr_file_name_table += bytes_read;
2762 file_table[i].length = read_leb128 (ptr_file_name_table, & bytes_read, 0);
2763 ptr_file_name_table += bytes_read;
2764 i++;
2765 }
2766 i = 0;
2767
2768 /* Print the Compilation Unit's name and a header. */
2769 if (directory_table == NULL)
2770 {
2771 printf (_("CU: %s:\n"), file_table[0].name);
2772 printf (_("File name Line number Starting address\n"));
2773 }
2774 else
2775 {
2776 if (do_wide || strlen ((char *) directory_table[0]) < 76)
2777 {
2778 printf (_("CU: %s/%s:\n"), directory_table[0],
2779 file_table[0].name);
2780 }
2781 else
2782 {
2783 printf (_("%s:\n"), file_table[0].name);
2784 }
2785 printf (_("File name Line number Starting address\n"));
2786 }
2787 }
2788
2789 /* Skip the NUL at the end of the table. */
2790 data++;
2791
2792 /* This loop iterates through the Dwarf Line Number Program. */
2793 while (data < end_of_sequence)
2794 {
2795 unsigned char op_code;
2796 int adv;
2797 unsigned long int uladv;
2798 unsigned int bytes_read;
2799 int is_special_opcode = 0;
2800
2801 op_code = *data++;
2802
2803 if (op_code >= linfo.li_opcode_base)
2804 {
2805 op_code -= linfo.li_opcode_base;
2806 uladv = (op_code / linfo.li_line_range);
2807 if (linfo.li_max_ops_per_insn == 1)
2808 {
2809 uladv *= linfo.li_min_insn_length;
2810 state_machine_regs.address += uladv;
2811 }
2812 else
2813 {
2814 state_machine_regs.address
2815 += ((state_machine_regs.op_index + uladv)
2816 / linfo.li_max_ops_per_insn)
2817 * linfo.li_min_insn_length;
2818 state_machine_regs.op_index
2819 = (state_machine_regs.op_index + uladv)
2820 % linfo.li_max_ops_per_insn;
2821 }
2822
2823 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
2824 state_machine_regs.line += adv;
2825 is_special_opcode = 1;
2826 }
2827 else switch (op_code)
2828 {
2829 case DW_LNS_extended_op:
2830 {
2831 unsigned int ext_op_code_len;
2832 unsigned char ext_op_code;
2833 unsigned char *op_code_data = data;
2834
2835 ext_op_code_len = read_leb128 (op_code_data, &bytes_read, 0);
2836 op_code_data += bytes_read;
2837
2838 if (ext_op_code_len == 0)
2839 {
2840 warn (_("badly formed extended line op encountered!\n"));
2841 break;
2842 }
2843 ext_op_code_len += bytes_read;
2844 ext_op_code = *op_code_data++;
2845
2846 switch (ext_op_code)
2847 {
2848 case DW_LNE_end_sequence:
2849 reset_state_machine (linfo.li_default_is_stmt);
2850 break;
2851 case DW_LNE_set_address:
2852 state_machine_regs.address =
2853 byte_get (op_code_data, ext_op_code_len - bytes_read - 1);
2854 state_machine_regs.op_index = 0;
2855 break;
2856 case DW_LNE_define_file:
2857 {
2858 unsigned int dir_index = 0;
2859
2860 ++state_machine_regs.last_file_entry;
2861 op_code_data += strlen ((char *) op_code_data) + 1;
2862 dir_index = read_leb128 (op_code_data, & bytes_read, 0);
2863 op_code_data += bytes_read;
2864 read_leb128 (op_code_data, & bytes_read, 0);
2865 op_code_data += bytes_read;
2866 read_leb128 (op_code_data, & bytes_read, 0);
2867
2868 printf (_("%s:\n"), directory_table[dir_index]);
2869 break;
2870 }
2871 default:
2872 printf (_("UNKNOWN: length %d\n"), ext_op_code_len - bytes_read);
2873 break;
2874 }
2875 data += ext_op_code_len;
2876 break;
2877 }
2878 case DW_LNS_copy:
2879 break;
2880
2881 case DW_LNS_advance_pc:
2882 uladv = read_leb128 (data, & bytes_read, 0);
2883 data += bytes_read;
2884 if (linfo.li_max_ops_per_insn == 1)
2885 {
2886 uladv *= linfo.li_min_insn_length;
2887 state_machine_regs.address += uladv;
2888 }
2889 else
2890 {
2891 state_machine_regs.address
2892 += ((state_machine_regs.op_index + uladv)
2893 / linfo.li_max_ops_per_insn)
2894 * linfo.li_min_insn_length;
2895 state_machine_regs.op_index
2896 = (state_machine_regs.op_index + uladv)
2897 % linfo.li_max_ops_per_insn;
2898 }
2899 break;
2900
2901 case DW_LNS_advance_line:
2902 adv = read_leb128 (data, & bytes_read, 1);
2903 data += bytes_read;
2904 state_machine_regs.line += adv;
2905 break;
2906
2907 case DW_LNS_set_file:
2908 adv = read_leb128 (data, & bytes_read, 0);
2909 data += bytes_read;
2910 state_machine_regs.file = adv;
2911 if (file_table[state_machine_regs.file - 1].directory_index == 0)
2912 {
2913 /* If directory index is 0, that means current directory. */
2914 printf (_("\n./%s:[++]\n"),
2915 file_table[state_machine_regs.file - 1].name);
2916 }
2917 else
2918 {
2919 /* The directory index starts counting at 1. */
2920 printf (_("\n%s/%s:\n"),
2921 directory_table[file_table[state_machine_regs.file - 1].directory_index - 1],
2922 file_table[state_machine_regs.file - 1].name);
2923 }
2924 break;
2925
2926 case DW_LNS_set_column:
2927 uladv = read_leb128 (data, & bytes_read, 0);
2928 data += bytes_read;
2929 state_machine_regs.column = uladv;
2930 break;
2931
2932 case DW_LNS_negate_stmt:
2933 adv = state_machine_regs.is_stmt;
2934 adv = ! adv;
2935 state_machine_regs.is_stmt = adv;
2936 break;
2937
2938 case DW_LNS_set_basic_block:
2939 state_machine_regs.basic_block = 1;
2940 break;
2941
2942 case DW_LNS_const_add_pc:
2943 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
2944 if (linfo.li_max_ops_per_insn == 1)
2945 {
2946 uladv *= linfo.li_min_insn_length;
2947 state_machine_regs.address += uladv;
2948 }
2949 else
2950 {
2951 state_machine_regs.address
2952 += ((state_machine_regs.op_index + uladv)
2953 / linfo.li_max_ops_per_insn)
2954 * linfo.li_min_insn_length;
2955 state_machine_regs.op_index
2956 = (state_machine_regs.op_index + uladv)
2957 % linfo.li_max_ops_per_insn;
2958 }
2959 break;
2960
2961 case DW_LNS_fixed_advance_pc:
2962 uladv = byte_get (data, 2);
2963 data += 2;
2964 state_machine_regs.address += uladv;
2965 state_machine_regs.op_index = 0;
2966 break;
2967
2968 case DW_LNS_set_prologue_end:
2969 break;
2970
2971 case DW_LNS_set_epilogue_begin:
2972 break;
2973
2974 case DW_LNS_set_isa:
2975 uladv = read_leb128 (data, & bytes_read, 0);
2976 data += bytes_read;
2977 printf (_(" Set ISA to %lu\n"), uladv);
2978 break;
2979
2980 default:
2981 printf (_(" Unknown opcode %d with operands: "), op_code);
2982
2983 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
2984 {
2985 printf ("0x%lx%s", read_leb128 (data, &bytes_read, 0),
2986 i == 1 ? "" : ", ");
2987 data += bytes_read;
2988 }
2989 putchar ('\n');
2990 break;
2991 }
2992
2993 /* Only Special opcodes, DW_LNS_copy and DW_LNE_end_sequence adds a row
2994 to the DWARF address/line matrix. */
2995 if ((is_special_opcode) || (op_code == DW_LNE_end_sequence)
2996 || (op_code == DW_LNS_copy))
2997 {
2998 const unsigned int MAX_FILENAME_LENGTH = 35;
2999 char *fileName = (char *)file_table[state_machine_regs.file - 1].name;
3000 char *newFileName = NULL;
3001 size_t fileNameLength = strlen (fileName);
3002
3003 if ((fileNameLength > MAX_FILENAME_LENGTH) && (!do_wide))
3004 {
3005 newFileName = (char *) xmalloc (MAX_FILENAME_LENGTH + 1);
3006 /* Truncate file name */
3007 strncpy (newFileName,
3008 fileName + fileNameLength - MAX_FILENAME_LENGTH,
3009 MAX_FILENAME_LENGTH + 1);
3010 }
3011 else
3012 {
3013 newFileName = (char *) xmalloc (fileNameLength + 1);
3014 strncpy (newFileName, fileName, fileNameLength + 1);
3015 }
3016
3017 if (!do_wide || (fileNameLength <= MAX_FILENAME_LENGTH))
3018 {
3019 if (linfo.li_max_ops_per_insn == 1)
3020 printf (_("%-35s %11d %#18lx\n"), newFileName,
3021 state_machine_regs.line,
3022 state_machine_regs.address);
3023 else
3024 printf (_("%-35s %11d %#18lx[%d]\n"), newFileName,
3025 state_machine_regs.line,
3026 state_machine_regs.address,
3027 state_machine_regs.op_index);
3028 }
3029 else
3030 {
3031 if (linfo.li_max_ops_per_insn == 1)
3032 printf (_("%s %11d %#18lx\n"), newFileName,
3033 state_machine_regs.line,
3034 state_machine_regs.address);
3035 else
3036 printf (_("%s %11d %#18lx[%d]\n"), newFileName,
3037 state_machine_regs.line,
3038 state_machine_regs.address,
3039 state_machine_regs.op_index);
3040 }
3041
3042 if (op_code == DW_LNE_end_sequence)
3043 printf ("\n");
3044
3045 free (newFileName);
3046 }
3047 }
3048 free (file_table);
3049 file_table = NULL;
3050 free (directory_table);
3051 directory_table = NULL;
3052 putchar ('\n');
3053 }
3054
3055 return 1;
3056 }
3057
3058 static int
3059 display_debug_lines (struct dwarf_section *section, void *file ATTRIBUTE_UNUSED)
3060 {
3061 unsigned char *data = section->start;
3062 unsigned char *end = data + section->size;
3063 int retValRaw = 1;
3064 int retValDecoded = 1;
3065
3066 if (do_debug_lines == 0)
3067 do_debug_lines |= FLAG_DEBUG_LINES_RAW;
3068
3069 if (do_debug_lines & FLAG_DEBUG_LINES_RAW)
3070 retValRaw = display_debug_lines_raw (section, data, end);
3071
3072 if (do_debug_lines & FLAG_DEBUG_LINES_DECODED)
3073 retValDecoded = display_debug_lines_decoded (section, data, end);
3074
3075 if (!retValRaw || !retValDecoded)
3076 return 0;
3077
3078 return 1;
3079 }
3080
3081 static debug_info *
3082 find_debug_info_for_offset (unsigned long offset)
3083 {
3084 unsigned int i;
3085
3086 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
3087 return NULL;
3088
3089 for (i = 0; i < num_debug_info_entries; i++)
3090 if (debug_information[i].cu_offset == offset)
3091 return debug_information + i;
3092
3093 return NULL;
3094 }
3095
3096 static int
3097 display_debug_pubnames (struct dwarf_section *section,
3098 void *file ATTRIBUTE_UNUSED)
3099 {
3100 DWARF2_Internal_PubNames names;
3101 unsigned char *start = section->start;
3102 unsigned char *end = start + section->size;
3103
3104 /* It does not matter if this load fails,
3105 we test for that later on. */
3106 load_debug_info (file);
3107
3108 printf (_("Contents of the %s section:\n\n"), section->name);
3109
3110 while (start < end)
3111 {
3112 unsigned char *data;
3113 unsigned long offset;
3114 int offset_size, initial_length_size;
3115
3116 data = start;
3117
3118 names.pn_length = byte_get (data, 4);
3119 data += 4;
3120 if (names.pn_length == 0xffffffff)
3121 {
3122 names.pn_length = byte_get (data, 8);
3123 data += 8;
3124 offset_size = 8;
3125 initial_length_size = 12;
3126 }
3127 else
3128 {
3129 offset_size = 4;
3130 initial_length_size = 4;
3131 }
3132
3133 names.pn_version = byte_get (data, 2);
3134 data += 2;
3135
3136 names.pn_offset = byte_get (data, offset_size);
3137 data += offset_size;
3138
3139 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
3140 && num_debug_info_entries > 0
3141 && find_debug_info_for_offset (names.pn_offset) == NULL)
3142 warn (_(".debug_info offset of 0x%lx in %s section does not point to a CU header.\n"),
3143 names.pn_offset, section->name);
3144
3145 names.pn_size = byte_get (data, offset_size);
3146 data += offset_size;
3147
3148 start += names.pn_length + initial_length_size;
3149
3150 if (names.pn_version != 2 && names.pn_version != 3)
3151 {
3152 static int warned = 0;
3153
3154 if (! warned)
3155 {
3156 warn (_("Only DWARF 2 and 3 pubnames are currently supported\n"));
3157 warned = 1;
3158 }
3159
3160 continue;
3161 }
3162
3163 printf (_(" Length: %ld\n"),
3164 names.pn_length);
3165 printf (_(" Version: %d\n"),
3166 names.pn_version);
3167 printf (_(" Offset into .debug_info section: 0x%lx\n"),
3168 names.pn_offset);
3169 printf (_(" Size of area in .debug_info section: %ld\n"),
3170 names.pn_size);
3171
3172 printf (_("\n Offset\tName\n"));
3173
3174 do
3175 {
3176 offset = byte_get (data, offset_size);
3177
3178 if (offset != 0)
3179 {
3180 data += offset_size;
3181 printf (" %-6lx\t%s\n", offset, data);
3182 data += strlen ((char *) data) + 1;
3183 }
3184 }
3185 while (offset != 0);
3186 }
3187
3188 printf ("\n");
3189 return 1;
3190 }
3191
3192 static int
3193 display_debug_macinfo (struct dwarf_section *section,
3194 void *file ATTRIBUTE_UNUSED)
3195 {
3196 unsigned char *start = section->start;
3197 unsigned char *end = start + section->size;
3198 unsigned char *curr = start;
3199 unsigned int bytes_read;
3200 enum dwarf_macinfo_record_type op;
3201
3202 printf (_("Contents of the %s section:\n\n"), section->name);
3203
3204 while (curr < end)
3205 {
3206 unsigned int lineno;
3207 const char *string;
3208
3209 op = (enum dwarf_macinfo_record_type) *curr;
3210 curr++;
3211
3212 switch (op)
3213 {
3214 case DW_MACINFO_start_file:
3215 {
3216 unsigned int filenum;
3217
3218 lineno = read_leb128 (curr, & bytes_read, 0);
3219 curr += bytes_read;
3220 filenum = read_leb128 (curr, & bytes_read, 0);
3221 curr += bytes_read;
3222
3223 printf (_(" DW_MACINFO_start_file - lineno: %d filenum: %d\n"),
3224 lineno, filenum);
3225 }
3226 break;
3227
3228 case DW_MACINFO_end_file:
3229 printf (_(" DW_MACINFO_end_file\n"));
3230 break;
3231
3232 case DW_MACINFO_define:
3233 lineno = read_leb128 (curr, & bytes_read, 0);
3234 curr += bytes_read;
3235 string = (char *) curr;
3236 curr += strlen (string) + 1;
3237 printf (_(" DW_MACINFO_define - lineno : %d macro : %s\n"),
3238 lineno, string);
3239 break;
3240
3241 case DW_MACINFO_undef:
3242 lineno = read_leb128 (curr, & bytes_read, 0);
3243 curr += bytes_read;
3244 string = (char *) curr;
3245 curr += strlen (string) + 1;
3246 printf (_(" DW_MACINFO_undef - lineno : %d macro : %s\n"),
3247 lineno, string);
3248 break;
3249
3250 case DW_MACINFO_vendor_ext:
3251 {
3252 unsigned int constant;
3253
3254 constant = read_leb128 (curr, & bytes_read, 0);
3255 curr += bytes_read;
3256 string = (char *) curr;
3257 curr += strlen (string) + 1;
3258 printf (_(" DW_MACINFO_vendor_ext - constant : %d string : %s\n"),
3259 constant, string);
3260 }
3261 break;
3262 }
3263 }
3264
3265 return 1;
3266 }
3267
3268 static int
3269 display_debug_abbrev (struct dwarf_section *section,
3270 void *file ATTRIBUTE_UNUSED)
3271 {
3272 abbrev_entry *entry;
3273 unsigned char *start = section->start;
3274 unsigned char *end = start + section->size;
3275
3276 printf (_("Contents of the %s section:\n\n"), section->name);
3277
3278 do
3279 {
3280 free_abbrevs ();
3281
3282 start = process_abbrev_section (start, end);
3283
3284 if (first_abbrev == NULL)
3285 continue;
3286
3287 printf (_(" Number TAG\n"));
3288
3289 for (entry = first_abbrev; entry; entry = entry->next)
3290 {
3291 abbrev_attr *attr;
3292
3293 printf (_(" %ld %s [%s]\n"),
3294 entry->entry,
3295 get_TAG_name (entry->tag),
3296 entry->children ? _("has children") : _("no children"));
3297
3298 for (attr = entry->first_attr; attr; attr = attr->next)
3299 printf (_(" %-18s %s\n"),
3300 get_AT_name (attr->attribute),
3301 get_FORM_name (attr->form));
3302 }
3303 }
3304 while (start);
3305
3306 printf ("\n");
3307
3308 return 1;
3309 }
3310
3311 static int
3312 display_debug_loc (struct dwarf_section *section, void *file)
3313 {
3314 unsigned char *start = section->start;
3315 unsigned char *section_end;
3316 unsigned long bytes;
3317 unsigned char *section_begin = start;
3318 unsigned int num_loc_list = 0;
3319 unsigned long last_offset = 0;
3320 unsigned int first = 0;
3321 unsigned int i;
3322 unsigned int j;
3323 int seen_first_offset = 0;
3324 int use_debug_info = 1;
3325 unsigned char *next;
3326
3327 bytes = section->size;
3328 section_end = start + bytes;
3329
3330 if (bytes == 0)
3331 {
3332 printf (_("\nThe %s section is empty.\n"), section->name);
3333 return 0;
3334 }
3335
3336 if (load_debug_info (file) == 0)
3337 {
3338 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
3339 section->name);
3340 return 0;
3341 }
3342
3343 /* Check the order of location list in .debug_info section. If
3344 offsets of location lists are in the ascending order, we can
3345 use `debug_information' directly. */
3346 for (i = 0; i < num_debug_info_entries; i++)
3347 {
3348 unsigned int num;
3349
3350 num = debug_information [i].num_loc_offsets;
3351 num_loc_list += num;
3352
3353 /* Check if we can use `debug_information' directly. */
3354 if (use_debug_info && num != 0)
3355 {
3356 if (!seen_first_offset)
3357 {
3358 /* This is the first location list. */
3359 last_offset = debug_information [i].loc_offsets [0];
3360 first = i;
3361 seen_first_offset = 1;
3362 j = 1;
3363 }
3364 else
3365 j = 0;
3366
3367 for (; j < num; j++)
3368 {
3369 if (last_offset >
3370 debug_information [i].loc_offsets [j])
3371 {
3372 use_debug_info = 0;
3373 break;
3374 }
3375 last_offset = debug_information [i].loc_offsets [j];
3376 }
3377 }
3378 }
3379
3380 if (!use_debug_info)
3381 /* FIXME: Should we handle this case? */
3382 error (_("Location lists in .debug_info section aren't in ascending order!\n"));
3383
3384 if (!seen_first_offset)
3385 error (_("No location lists in .debug_info section!\n"));
3386
3387 /* DWARF sections under Mach-O have non-zero addresses. */
3388 if (debug_information [first].num_loc_offsets > 0
3389 && debug_information [first].loc_offsets [0] != section->address)
3390 warn (_("Location lists in %s section start at 0x%lx\n"),
3391 section->name, debug_information [first].loc_offsets [0]);
3392
3393 printf (_("Contents of the %s section:\n\n"), section->name);
3394 printf (_(" Offset Begin End Expression\n"));
3395
3396 seen_first_offset = 0;
3397 for (i = first; i < num_debug_info_entries; i++)
3398 {
3399 dwarf_vma begin;
3400 dwarf_vma end;
3401 unsigned short length;
3402 unsigned long offset;
3403 unsigned int pointer_size;
3404 unsigned long cu_offset;
3405 unsigned long base_address;
3406 int need_frame_base;
3407 int has_frame_base;
3408
3409 pointer_size = debug_information [i].pointer_size;
3410 cu_offset = debug_information [i].cu_offset;
3411
3412 for (j = 0; j < debug_information [i].num_loc_offsets; j++)
3413 {
3414 has_frame_base = debug_information [i].have_frame_base [j];
3415 /* DWARF sections under Mach-O have non-zero addresses. */
3416 offset = debug_information [i].loc_offsets [j] - section->address;
3417 next = section_begin + offset;
3418 base_address = debug_information [i].base_address;
3419
3420 if (!seen_first_offset)
3421 seen_first_offset = 1;
3422 else
3423 {
3424 if (start < next)
3425 warn (_("There is a hole [0x%lx - 0x%lx] in .debug_loc section.\n"),
3426 (unsigned long) (start - section_begin),
3427 (unsigned long) (next - section_begin));
3428 else if (start > next)
3429 warn (_("There is an overlap [0x%lx - 0x%lx] in .debug_loc section.\n"),
3430 (unsigned long) (start - section_begin),
3431 (unsigned long) (next - section_begin));
3432 }
3433 start = next;
3434
3435 if (offset >= bytes)
3436 {
3437 warn (_("Offset 0x%lx is bigger than .debug_loc section size.\n"),
3438 offset);
3439 continue;
3440 }
3441
3442 while (1)
3443 {
3444 if (start + 2 * pointer_size > section_end)
3445 {
3446 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
3447 offset);
3448 break;
3449 }
3450
3451 /* Note: we use sign extension here in order to be sure that
3452 we can detect the -1 escape value. Sign extension into the
3453 top 32 bits of a 32-bit address will not affect the values
3454 that we display since we always show hex values, and always
3455 the bottom 32-bits. */
3456 begin = byte_get_signed (start, pointer_size);
3457 start += pointer_size;
3458 end = byte_get_signed (start, pointer_size);
3459 start += pointer_size;
3460
3461 printf (" %8.8lx ", offset);
3462
3463 if (begin == 0 && end == 0)
3464 {
3465 printf (_("<End of list>\n"));
3466 break;
3467 }
3468
3469 /* Check base address specifiers. */
3470 if (begin == (dwarf_vma) -1 && end != (dwarf_vma) -1)
3471 {
3472 base_address = end;
3473 print_dwarf_vma (begin, pointer_size);
3474 print_dwarf_vma (end, pointer_size);
3475 printf (_("(base address)\n"));
3476 continue;
3477 }
3478
3479 if (start + 2 > section_end)
3480 {
3481 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
3482 offset);
3483 break;
3484 }
3485
3486 length = byte_get (start, 2);
3487 start += 2;
3488
3489 if (start + length > section_end)
3490 {
3491 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
3492 offset);
3493 break;
3494 }
3495
3496 print_dwarf_vma (begin + base_address, pointer_size);
3497 print_dwarf_vma (end + base_address, pointer_size);
3498
3499 putchar ('(');
3500 need_frame_base = decode_location_expression (start,
3501 pointer_size,
3502 length,
3503 cu_offset, section);
3504 putchar (')');
3505
3506 if (need_frame_base && !has_frame_base)
3507 printf (_(" [without DW_AT_frame_base]"));
3508
3509 if (begin == end)
3510 fputs (_(" (start == end)"), stdout);
3511 else if (begin > end)
3512 fputs (_(" (start > end)"), stdout);
3513
3514 putchar ('\n');
3515
3516 start += length;
3517 }
3518 }
3519 }
3520
3521 if (start < section_end)
3522 warn (_("There are %ld unused bytes at the end of section %s\n"),
3523 (long) (section_end - start), section->name);
3524 putchar ('\n');
3525 return 1;
3526 }
3527
3528 static int
3529 display_debug_str (struct dwarf_section *section,
3530 void *file ATTRIBUTE_UNUSED)
3531 {
3532 unsigned char *start = section->start;
3533 unsigned long bytes = section->size;
3534 dwarf_vma addr = section->address;
3535
3536 if (bytes == 0)
3537 {
3538 printf (_("\nThe %s section is empty.\n"), section->name);
3539 return 0;
3540 }
3541
3542 printf (_("Contents of the %s section:\n\n"), section->name);
3543
3544 while (bytes)
3545 {
3546 int j;
3547 int k;
3548 int lbytes;
3549
3550 lbytes = (bytes > 16 ? 16 : bytes);
3551
3552 printf (" 0x%8.8lx ", (unsigned long) addr);
3553
3554 for (j = 0; j < 16; j++)
3555 {
3556 if (j < lbytes)
3557 printf ("%2.2x", start[j]);
3558 else
3559 printf (" ");
3560
3561 if ((j & 3) == 3)
3562 printf (" ");
3563 }
3564
3565 for (j = 0; j < lbytes; j++)
3566 {
3567 k = start[j];
3568 if (k >= ' ' && k < 0x80)
3569 printf ("%c", k);
3570 else
3571 printf (".");
3572 }
3573
3574 putchar ('\n');
3575
3576 start += lbytes;
3577 addr += lbytes;
3578 bytes -= lbytes;
3579 }
3580
3581 putchar ('\n');
3582
3583 return 1;
3584 }
3585
3586 static int
3587 display_debug_info (struct dwarf_section *section, void *file)
3588 {
3589 return process_debug_info (section, file, abbrev, 0, 0);
3590 }
3591
3592 static int
3593 display_debug_types (struct dwarf_section *section, void *file)
3594 {
3595 return process_debug_info (section, file, abbrev, 0, 1);
3596 }
3597
3598 static int
3599 display_trace_info (struct dwarf_section *section, void *file)
3600 {
3601 return process_debug_info (section, file, trace_abbrev, 0, 0);
3602 }
3603
3604 static int
3605 display_debug_aranges (struct dwarf_section *section,
3606 void *file ATTRIBUTE_UNUSED)
3607 {
3608 unsigned char *start = section->start;
3609 unsigned char *end = start + section->size;
3610
3611 printf (_("Contents of the %s section:\n\n"), section->name);
3612
3613 /* It does not matter if this load fails,
3614 we test for that later on. */
3615 load_debug_info (file);
3616
3617 while (start < end)
3618 {
3619 unsigned char *hdrptr;
3620 DWARF2_Internal_ARange arange;
3621 unsigned char *addr_ranges;
3622 dwarf_vma length;
3623 dwarf_vma address;
3624 unsigned char address_size;
3625 int excess;
3626 int offset_size;
3627 int initial_length_size;
3628
3629 hdrptr = start;
3630
3631 arange.ar_length = byte_get (hdrptr, 4);
3632 hdrptr += 4;
3633
3634 if (arange.ar_length == 0xffffffff)
3635 {
3636 arange.ar_length = byte_get (hdrptr, 8);
3637 hdrptr += 8;
3638 offset_size = 8;
3639 initial_length_size = 12;
3640 }
3641 else
3642 {
3643 offset_size = 4;
3644 initial_length_size = 4;
3645 }
3646
3647 arange.ar_version = byte_get (hdrptr, 2);
3648 hdrptr += 2;
3649
3650 arange.ar_info_offset = byte_get (hdrptr, offset_size);
3651 hdrptr += offset_size;
3652
3653 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
3654 && num_debug_info_entries > 0
3655 && find_debug_info_for_offset (arange.ar_info_offset) == NULL)
3656 warn (_(".debug_info offset of 0x%lx in %s section does not point to a CU header.\n"),
3657 arange.ar_info_offset, section->name);
3658
3659 arange.ar_pointer_size = byte_get (hdrptr, 1);
3660 hdrptr += 1;
3661
3662 arange.ar_segment_size = byte_get (hdrptr, 1);
3663 hdrptr += 1;
3664
3665 if (arange.ar_version != 2 && arange.ar_version != 3)
3666 {
3667 warn (_("Only DWARF 2 and 3 aranges are currently supported.\n"));
3668 break;
3669 }
3670
3671 printf (_(" Length: %ld\n"), arange.ar_length);
3672 printf (_(" Version: %d\n"), arange.ar_version);
3673 printf (_(" Offset into .debug_info: 0x%lx\n"), arange.ar_info_offset);
3674 printf (_(" Pointer Size: %d\n"), arange.ar_pointer_size);
3675 printf (_(" Segment Size: %d\n"), arange.ar_segment_size);
3676
3677 address_size = arange.ar_pointer_size + arange.ar_segment_size;
3678
3679 /* The DWARF spec does not require that the address size be a power
3680 of two, but we do. This will have to change if we ever encounter
3681 an uneven architecture. */
3682 if ((address_size & (address_size - 1)) != 0)
3683 {
3684 warn (_("Pointer size + Segment size is not a power of two.\n"));
3685 break;
3686 }
3687
3688 if (address_size > 4)
3689 printf (_("\n Address Length\n"));
3690 else
3691 printf (_("\n Address Length\n"));
3692
3693 addr_ranges = hdrptr;
3694
3695 /* Must pad to an alignment boundary that is twice the address size. */
3696 excess = (hdrptr - start) % (2 * address_size);
3697 if (excess)
3698 addr_ranges += (2 * address_size) - excess;
3699
3700 start += arange.ar_length + initial_length_size;
3701
3702 while (addr_ranges + 2 * address_size <= start)
3703 {
3704 address = byte_get (addr_ranges, address_size);
3705
3706 addr_ranges += address_size;
3707
3708 length = byte_get (addr_ranges, address_size);
3709
3710 addr_ranges += address_size;
3711
3712 printf (" ");
3713 print_dwarf_vma (address, address_size);
3714 print_dwarf_vma (length, address_size);
3715 putchar ('\n');
3716 }
3717 }
3718
3719 printf ("\n");
3720
3721 return 1;
3722 }
3723
3724 /* Each debug_information[x].range_lists[y] gets this representation for
3725 sorting purposes. */
3726
3727 struct range_entry
3728 {
3729 /* The debug_information[x].range_lists[y] value. */
3730 unsigned long ranges_offset;
3731
3732 /* Original debug_information to find parameters of the data. */
3733 debug_info *debug_info_p;
3734 };
3735
3736 /* Sort struct range_entry in ascending order of its RANGES_OFFSET. */
3737
3738 static int
3739 range_entry_compar (const void *ap, const void *bp)
3740 {
3741 const struct range_entry *a_re = (const struct range_entry *) ap;
3742 const struct range_entry *b_re = (const struct range_entry *) bp;
3743 const unsigned long a = a_re->ranges_offset;
3744 const unsigned long b = b_re->ranges_offset;
3745
3746 return (a > b) - (b > a);
3747 }
3748
3749 static int
3750 display_debug_ranges (struct dwarf_section *section,
3751 void *file ATTRIBUTE_UNUSED)
3752 {
3753 unsigned char *start = section->start;
3754 unsigned long bytes;
3755 unsigned char *section_begin = start;
3756 unsigned int num_range_list, i;
3757 struct range_entry *range_entries, *range_entry_fill;
3758
3759 bytes = section->size;
3760
3761 if (bytes == 0)
3762 {
3763 printf (_("\nThe %s section is empty.\n"), section->name);
3764 return 0;
3765 }
3766
3767 if (load_debug_info (file) == 0)
3768 {
3769 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
3770 section->name);
3771 return 0;
3772 }
3773
3774 num_range_list = 0;
3775 for (i = 0; i < num_debug_info_entries; i++)
3776 num_range_list += debug_information [i].num_range_lists;
3777
3778 if (num_range_list == 0)
3779 error (_("No range lists in .debug_info section!\n"));
3780
3781 range_entries = (struct range_entry *)
3782 xmalloc (sizeof (*range_entries) * num_range_list);
3783 range_entry_fill = range_entries;
3784
3785 for (i = 0; i < num_debug_info_entries; i++)
3786 {
3787 debug_info *debug_info_p = &debug_information[i];
3788 unsigned int j;
3789
3790 for (j = 0; j < debug_info_p->num_range_lists; j++)
3791 {
3792 range_entry_fill->ranges_offset = debug_info_p->range_lists[j];
3793 range_entry_fill->debug_info_p = debug_info_p;
3794 range_entry_fill++;
3795 }
3796 }
3797
3798 qsort (range_entries, num_range_list, sizeof (*range_entries),
3799 range_entry_compar);
3800
3801 /* DWARF sections under Mach-O have non-zero addresses. */
3802 if (range_entries[0].ranges_offset != section->address)
3803 warn (_("Range lists in %s section start at 0x%lx\n"),
3804 section->name, range_entries[0].ranges_offset);
3805
3806 printf (_("Contents of the %s section:\n\n"), section->name);
3807 printf (_(" Offset Begin End\n"));
3808
3809 for (i = 0; i < num_range_list; i++)
3810 {
3811 struct range_entry *range_entry = &range_entries[i];
3812 debug_info *debug_info_p = range_entry->debug_info_p;
3813 unsigned int pointer_size;
3814 unsigned long offset;
3815 unsigned char *next;
3816 unsigned long base_address;
3817
3818 pointer_size = debug_info_p->pointer_size;
3819
3820 /* DWARF sections under Mach-O have non-zero addresses. */
3821 offset = range_entry->ranges_offset - section->address;
3822 next = section_begin + offset;
3823 base_address = debug_info_p->base_address;
3824
3825 if (i > 0)
3826 {
3827 if (start < next)
3828 warn (_("There is a hole [0x%lx - 0x%lx] in %s section.\n"),
3829 (unsigned long) (start - section_begin),
3830 (unsigned long) (next - section_begin), section->name);
3831 else if (start > next)
3832 warn (_("There is an overlap [0x%lx - 0x%lx] in %s section.\n"),
3833 (unsigned long) (start - section_begin),
3834 (unsigned long) (next - section_begin), section->name);
3835 }
3836 start = next;
3837
3838 while (1)
3839 {
3840 dwarf_vma begin;
3841 dwarf_vma end;
3842
3843 /* Note: we use sign extension here in order to be sure that
3844 we can detect the -1 escape value. Sign extension into the
3845 top 32 bits of a 32-bit address will not affect the values
3846 that we display since we always show hex values, and always
3847 the bottom 32-bits. */
3848 begin = byte_get_signed (start, pointer_size);
3849 start += pointer_size;
3850 end = byte_get_signed (start, pointer_size);
3851 start += pointer_size;
3852
3853 printf (" %8.8lx ", offset);
3854
3855 if (begin == 0 && end == 0)
3856 {
3857 printf (_("<End of list>\n"));
3858 break;
3859 }
3860
3861 /* Check base address specifiers. */
3862 if (begin == (dwarf_vma) -1 && end != (dwarf_vma) -1)
3863 {
3864 base_address = end;
3865 print_dwarf_vma (begin, pointer_size);
3866 print_dwarf_vma (end, pointer_size);
3867 printf ("(base address)\n");
3868 continue;
3869 }
3870
3871 print_dwarf_vma (begin + base_address, pointer_size);
3872 print_dwarf_vma (end + base_address, pointer_size);
3873
3874 if (begin == end)
3875 fputs (_("(start == end)"), stdout);
3876 else if (begin > end)
3877 fputs (_("(start > end)"), stdout);
3878
3879 putchar ('\n');
3880 }
3881 }
3882 putchar ('\n');
3883
3884 free (range_entries);
3885
3886 return 1;
3887 }
3888
3889 typedef struct Frame_Chunk
3890 {
3891 struct Frame_Chunk *next;
3892 unsigned char *chunk_start;
3893 int ncols;
3894 /* DW_CFA_{undefined,same_value,offset,register,unreferenced} */
3895 short int *col_type;
3896 int *col_offset;
3897 char *augmentation;
3898 unsigned int code_factor;
3899 int data_factor;
3900 unsigned long pc_begin;
3901 unsigned long pc_range;
3902 int cfa_reg;
3903 int cfa_offset;
3904 int ra;
3905 unsigned char fde_encoding;
3906 unsigned char cfa_exp;
3907 unsigned char ptr_size;
3908 unsigned char segment_size;
3909 }
3910 Frame_Chunk;
3911
3912 static const char *const *dwarf_regnames;
3913 static unsigned int dwarf_regnames_count;
3914
3915 /* A marker for a col_type that means this column was never referenced
3916 in the frame info. */
3917 #define DW_CFA_unreferenced (-1)
3918
3919 /* Return 0 if not more space is needed, 1 if more space is needed,
3920 -1 for invalid reg. */
3921
3922 static int
3923 frame_need_space (Frame_Chunk *fc, unsigned int reg)
3924 {
3925 int prev = fc->ncols;
3926
3927 if (reg < (unsigned int) fc->ncols)
3928 return 0;
3929
3930 if (dwarf_regnames_count
3931 && reg > dwarf_regnames_count)
3932 return -1;
3933
3934 fc->ncols = reg + 1;
3935 fc->col_type = (short int *) xcrealloc (fc->col_type, fc->ncols,
3936 sizeof (short int));
3937 fc->col_offset = (int *) xcrealloc (fc->col_offset, fc->ncols, sizeof (int));
3938
3939 while (prev < fc->ncols)
3940 {
3941 fc->col_type[prev] = DW_CFA_unreferenced;
3942 fc->col_offset[prev] = 0;
3943 prev++;
3944 }
3945 return 1;
3946 }
3947
3948 static const char *const dwarf_regnames_i386[] =
3949 {
3950 "eax", "ecx", "edx", "ebx",
3951 "esp", "ebp", "esi", "edi",
3952 "eip", "eflags", NULL,
3953 "st0", "st1", "st2", "st3",
3954 "st4", "st5", "st6", "st7",
3955 NULL, NULL,
3956 "xmm0", "xmm1", "xmm2", "xmm3",
3957 "xmm4", "xmm5", "xmm6", "xmm7",
3958 "mm0", "mm1", "mm2", "mm3",
3959 "mm4", "mm5", "mm6", "mm7",
3960 "fcw", "fsw", "mxcsr",
3961 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
3962 "tr", "ldtr"
3963 };
3964
3965 static const char *const dwarf_regnames_x86_64[] =
3966 {
3967 "rax", "rdx", "rcx", "rbx",
3968 "rsi", "rdi", "rbp", "rsp",
3969 "r8", "r9", "r10", "r11",
3970 "r12", "r13", "r14", "r15",
3971 "rip",
3972 "xmm0", "xmm1", "xmm2", "xmm3",
3973 "xmm4", "xmm5", "xmm6", "xmm7",
3974 "xmm8", "xmm9", "xmm10", "xmm11",
3975 "xmm12", "xmm13", "xmm14", "xmm15",
3976 "st0", "st1", "st2", "st3",
3977 "st4", "st5", "st6", "st7",
3978 "mm0", "mm1", "mm2", "mm3",
3979 "mm4", "mm5", "mm6", "mm7",
3980 "rflags",
3981 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
3982 "fs.base", "gs.base", NULL, NULL,
3983 "tr", "ldtr",
3984 "mxcsr", "fcw", "fsw"
3985 };
3986
3987 void
3988 init_dwarf_regnames (unsigned int e_machine)
3989 {
3990 switch (e_machine)
3991 {
3992 case EM_386:
3993 case EM_486:
3994 dwarf_regnames = dwarf_regnames_i386;
3995 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_i386);
3996 break;
3997
3998 case EM_X86_64:
3999 case EM_L1OM:
4000 dwarf_regnames = dwarf_regnames_x86_64;
4001 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_x86_64);
4002 break;
4003
4004 default:
4005 break;
4006 }
4007 }
4008
4009 static const char *
4010 regname (unsigned int regno, int row)
4011 {
4012 static char reg[64];
4013 if (dwarf_regnames
4014 && regno < dwarf_regnames_count
4015 && dwarf_regnames [regno] != NULL)
4016 {
4017 if (row)
4018 return dwarf_regnames [regno];
4019 snprintf (reg, sizeof (reg), "r%d (%s)", regno,
4020 dwarf_regnames [regno]);
4021 }
4022 else
4023 snprintf (reg, sizeof (reg), "r%d", regno);
4024 return reg;
4025 }
4026
4027 static void
4028 frame_display_row (Frame_Chunk *fc, int *need_col_headers, int *max_regs)
4029 {
4030 int r;
4031 char tmp[100];
4032
4033 if (*max_regs < fc->ncols)
4034 *max_regs = fc->ncols;
4035
4036 if (*need_col_headers)
4037 {
4038 static const char *sloc = " LOC";
4039
4040 *need_col_headers = 0;
4041
4042 printf ("%-*s CFA ", eh_addr_size * 2, sloc);
4043
4044 for (r = 0; r < *max_regs; r++)
4045 if (fc->col_type[r] != DW_CFA_unreferenced)
4046 {
4047 if (r == fc->ra)
4048 printf ("ra ");
4049 else
4050 printf ("%-5s ", regname (r, 1));
4051 }
4052
4053 printf ("\n");
4054 }
4055
4056 printf ("%0*lx ", eh_addr_size * 2, fc->pc_begin);
4057 if (fc->cfa_exp)
4058 strcpy (tmp, "exp");
4059 else
4060 sprintf (tmp, "%s%+d", regname (fc->cfa_reg, 1), fc->cfa_offset);
4061 printf ("%-8s ", tmp);
4062
4063 for (r = 0; r < fc->ncols; r++)
4064 {
4065 if (fc->col_type[r] != DW_CFA_unreferenced)
4066 {
4067 switch (fc->col_type[r])
4068 {
4069 case DW_CFA_undefined:
4070 strcpy (tmp, "u");
4071 break;
4072 case DW_CFA_same_value:
4073 strcpy (tmp, "s");
4074 break;
4075 case DW_CFA_offset:
4076 sprintf (tmp, "c%+d", fc->col_offset[r]);
4077 break;
4078 case DW_CFA_val_offset:
4079 sprintf (tmp, "v%+d", fc->col_offset[r]);
4080 break;
4081 case DW_CFA_register:
4082 sprintf (tmp, "%s", regname (fc->col_offset[r], 0));
4083 break;
4084 case DW_CFA_expression:
4085 strcpy (tmp, "exp");
4086 break;
4087 case DW_CFA_val_expression:
4088 strcpy (tmp, "vexp");
4089 break;
4090 default:
4091 strcpy (tmp, "n/a");
4092 break;
4093 }
4094 printf ("%-5s ", tmp);
4095 }
4096 }
4097 printf ("\n");
4098 }
4099
4100 #define GET(N) byte_get (start, N); start += N
4101 #define LEB() read_leb128 (start, & length_return, 0); start += length_return
4102 #define SLEB() read_leb128 (start, & length_return, 1); start += length_return
4103
4104 static int
4105 display_debug_frames (struct dwarf_section *section,
4106 void *file ATTRIBUTE_UNUSED)
4107 {
4108 unsigned char *start = section->start;
4109 unsigned char *end = start + section->size;
4110 unsigned char *section_start = start;
4111 Frame_Chunk *chunks = 0;
4112 Frame_Chunk *remembered_state = 0;
4113 Frame_Chunk *rs;
4114 int is_eh = strcmp (section->name, ".eh_frame") == 0;
4115 unsigned int length_return;
4116 int max_regs = 0;
4117 const char *bad_reg = _("bad register: ");
4118 int saved_eh_addr_size = eh_addr_size;
4119
4120 printf (_("Contents of the %s section:\n"), section->name);
4121
4122 while (start < end)
4123 {
4124 unsigned char *saved_start;
4125 unsigned char *block_end;
4126 unsigned long length;
4127 unsigned long cie_id;
4128 Frame_Chunk *fc;
4129 Frame_Chunk *cie;
4130 int need_col_headers = 1;
4131 unsigned char *augmentation_data = NULL;
4132 unsigned long augmentation_data_len = 0;
4133 int encoded_ptr_size = saved_eh_addr_size;
4134 int offset_size;
4135 int initial_length_size;
4136
4137 saved_start = start;
4138 length = byte_get (start, 4); start += 4;
4139
4140 if (length == 0)
4141 {
4142 printf ("\n%08lx ZERO terminator\n\n",
4143 (unsigned long)(saved_start - section_start));
4144 continue;
4145 }
4146
4147 if (length == 0xffffffff)
4148 {
4149 length = byte_get (start, 8);
4150 start += 8;
4151 offset_size = 8;
4152 initial_length_size = 12;
4153 }
4154 else
4155 {
4156 offset_size = 4;
4157 initial_length_size = 4;
4158 }
4159
4160 block_end = saved_start + length + initial_length_size;
4161 if (block_end > end)
4162 {
4163 warn ("Invalid length %#08lx in FDE at %#08lx\n",
4164 length, (unsigned long)(saved_start - section_start));
4165 block_end = end;
4166 }
4167 cie_id = byte_get (start, offset_size); start += offset_size;
4168
4169 if (is_eh ? (cie_id == 0) : (cie_id == DW_CIE_ID))
4170 {
4171 int version;
4172
4173 fc = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
4174 memset (fc, 0, sizeof (Frame_Chunk));
4175
4176 fc->next = chunks;
4177 chunks = fc;
4178 fc->chunk_start = saved_start;
4179 fc->ncols = 0;
4180 fc->col_type = (short int *) xmalloc (sizeof (short int));
4181 fc->col_offset = (int *) xmalloc (sizeof (int));
4182 frame_need_space (fc, max_regs - 1);
4183
4184 version = *start++;
4185
4186 fc->augmentation = (char *) start;
4187 start = (unsigned char *) strchr ((char *) start, '\0') + 1;
4188
4189 if (strcmp (fc->augmentation, "eh") == 0)
4190 start += eh_addr_size;
4191
4192 if (version >= 4)
4193 {
4194 fc->ptr_size = GET (1);
4195 fc->segment_size = GET (1);
4196 eh_addr_size = fc->ptr_size;
4197 }
4198 else
4199 {
4200 fc->ptr_size = eh_addr_size;
4201 fc->segment_size = 0;
4202 }
4203 fc->code_factor = LEB ();
4204 fc->data_factor = SLEB ();
4205 if (version == 1)
4206 {
4207 fc->ra = GET (1);
4208 }
4209 else
4210 {
4211 fc->ra = LEB ();
4212 }
4213
4214 if (fc->augmentation[0] == 'z')
4215 {
4216 augmentation_data_len = LEB ();
4217 augmentation_data = start;
4218 start += augmentation_data_len;
4219 }
4220 cie = fc;
4221
4222 if (do_debug_frames_interp)
4223 printf ("\n%08lx %08lx %08lx CIE \"%s\" cf=%d df=%d ra=%d\n",
4224 (unsigned long)(saved_start - section_start), length, cie_id,
4225 fc->augmentation, fc->code_factor, fc->data_factor,
4226 fc->ra);
4227 else
4228 {
4229 printf ("\n%08lx %08lx %08lx CIE\n",
4230 (unsigned long)(saved_start - section_start), length, cie_id);
4231 printf (" Version: %d\n", version);
4232 printf (" Augmentation: \"%s\"\n", fc->augmentation);
4233 if (version >= 4)
4234 {
4235 printf (" Pointer Size: %u\n", fc->ptr_size);
4236 printf (" Segment Size: %u\n", fc->segment_size);
4237 }
4238 printf (" Code alignment factor: %u\n", fc->code_factor);
4239 printf (" Data alignment factor: %d\n", fc->data_factor);
4240 printf (" Return address column: %d\n", fc->ra);
4241
4242 if (augmentation_data_len)
4243 {
4244 unsigned long i;
4245 printf (" Augmentation data: ");
4246 for (i = 0; i < augmentation_data_len; ++i)
4247 printf (" %02x", augmentation_data[i]);
4248 putchar ('\n');
4249 }
4250 putchar ('\n');
4251 }
4252
4253 if (augmentation_data_len)
4254 {
4255 unsigned char *p, *q;
4256 p = (unsigned char *) fc->augmentation + 1;
4257 q = augmentation_data;
4258
4259 while (1)
4260 {
4261 if (*p == 'L')
4262 q++;
4263 else if (*p == 'P')
4264 q += 1 + size_of_encoded_value (*q);
4265 else if (*p == 'R')
4266 fc->fde_encoding = *q++;
4267 else if (*p == 'S')
4268 ;
4269 else
4270 break;
4271 p++;
4272 }
4273
4274 if (fc->fde_encoding)
4275 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
4276 }
4277
4278 frame_need_space (fc, fc->ra);
4279 }
4280 else
4281 {
4282 unsigned char *look_for;
4283 static Frame_Chunk fde_fc;
4284 unsigned long segment_selector;
4285
4286 fc = & fde_fc;
4287 memset (fc, 0, sizeof (Frame_Chunk));
4288
4289 look_for = is_eh ? start - 4 - cie_id : section_start + cie_id;
4290
4291 for (cie = chunks; cie ; cie = cie->next)
4292 if (cie->chunk_start == look_for)
4293 break;
4294
4295 if (!cie)
4296 {
4297 warn ("Invalid CIE pointer %#08lx in FDE at %#08lx\n",
4298 cie_id, (unsigned long)(saved_start - section_start));
4299 fc->ncols = 0;
4300 fc->col_type = (short int *) xmalloc (sizeof (short int));
4301 fc->col_offset = (int *) xmalloc (sizeof (int));
4302 frame_need_space (fc, max_regs - 1);
4303 cie = fc;
4304 fc->augmentation = "";
4305 fc->fde_encoding = 0;
4306 fc->ptr_size = eh_addr_size;
4307 fc->segment_size = 0;
4308 }
4309 else
4310 {
4311 fc->ncols = cie->ncols;
4312 fc->col_type = (short int *) xcmalloc (fc->ncols, sizeof (short int));
4313 fc->col_offset = (int *) xcmalloc (fc->ncols, sizeof (int));
4314 memcpy (fc->col_type, cie->col_type, fc->ncols * sizeof (short int));
4315 memcpy (fc->col_offset, cie->col_offset, fc->ncols * sizeof (int));
4316 fc->augmentation = cie->augmentation;
4317 fc->ptr_size = cie->ptr_size;
4318 eh_addr_size = cie->ptr_size;
4319 fc->segment_size = cie->segment_size;
4320 fc->code_factor = cie->code_factor;
4321 fc->data_factor = cie->data_factor;
4322 fc->cfa_reg = cie->cfa_reg;
4323 fc->cfa_offset = cie->cfa_offset;
4324 fc->ra = cie->ra;
4325 frame_need_space (fc, max_regs - 1);
4326 fc->fde_encoding = cie->fde_encoding;
4327 }
4328
4329 if (fc->fde_encoding)
4330 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
4331
4332 segment_selector = 0;
4333 if (fc->segment_size)
4334 {
4335 segment_selector = byte_get (start, fc->segment_size);
4336 start += fc->segment_size;
4337 }
4338 fc->pc_begin = get_encoded_value (start, fc->fde_encoding);
4339 if ((fc->fde_encoding & 0x70) == DW_EH_PE_pcrel)
4340 fc->pc_begin += section->address + (start - section_start);
4341 start += encoded_ptr_size;
4342 fc->pc_range = byte_get (start, encoded_ptr_size);
4343 start += encoded_ptr_size;
4344
4345 if (cie->augmentation[0] == 'z')
4346 {
4347 augmentation_data_len = LEB ();
4348 augmentation_data = start;
4349 start += augmentation_data_len;
4350 }
4351
4352 printf ("\n%08lx %08lx %08lx FDE cie=%08lx pc=",
4353 (unsigned long)(saved_start - section_start), length, cie_id,
4354 (unsigned long)(cie->chunk_start - section_start));
4355 if (fc->segment_size)
4356 printf ("%04lx:", segment_selector);
4357 printf ("%08lx..%08lx\n", fc->pc_begin, fc->pc_begin + fc->pc_range);
4358 if (! do_debug_frames_interp && augmentation_data_len)
4359 {
4360 unsigned long i;
4361
4362 printf (" Augmentation data: ");
4363 for (i = 0; i < augmentation_data_len; ++i)
4364 printf (" %02x", augmentation_data[i]);
4365 putchar ('\n');
4366 putchar ('\n');
4367 }
4368 }
4369
4370 /* At this point, fc is the current chunk, cie (if any) is set, and
4371 we're about to interpret instructions for the chunk. */
4372 /* ??? At present we need to do this always, since this sizes the
4373 fc->col_type and fc->col_offset arrays, which we write into always.
4374 We should probably split the interpreted and non-interpreted bits
4375 into two different routines, since there's so much that doesn't
4376 really overlap between them. */
4377 if (1 || do_debug_frames_interp)
4378 {
4379 /* Start by making a pass over the chunk, allocating storage
4380 and taking note of what registers are used. */
4381 unsigned char *tmp = start;
4382
4383 while (start < block_end)
4384 {
4385 unsigned op, opa;
4386 unsigned long reg, temp;
4387
4388 op = *start++;
4389 opa = op & 0x3f;
4390 if (op & 0xc0)
4391 op &= 0xc0;
4392
4393 /* Warning: if you add any more cases to this switch, be
4394 sure to add them to the corresponding switch below. */
4395 switch (op)
4396 {
4397 case DW_CFA_advance_loc:
4398 break;
4399 case DW_CFA_offset:
4400 LEB ();
4401 if (frame_need_space (fc, opa) >= 0)
4402 fc->col_type[opa] = DW_CFA_undefined;
4403 break;
4404 case DW_CFA_restore:
4405 if (frame_need_space (fc, opa) >= 0)
4406 fc->col_type[opa] = DW_CFA_undefined;
4407 break;
4408 case DW_CFA_set_loc:
4409 start += encoded_ptr_size;
4410 break;
4411 case DW_CFA_advance_loc1:
4412 start += 1;
4413 break;
4414 case DW_CFA_advance_loc2:
4415 start += 2;
4416 break;
4417 case DW_CFA_advance_loc4:
4418 start += 4;
4419 break;
4420 case DW_CFA_offset_extended:
4421 case DW_CFA_val_offset:
4422 reg = LEB (); LEB ();
4423 if (frame_need_space (fc, reg) >= 0)
4424 fc->col_type[reg] = DW_CFA_undefined;
4425 break;
4426 case DW_CFA_restore_extended:
4427 reg = LEB ();
4428 frame_need_space (fc, reg);
4429 if (frame_need_space (fc, reg) >= 0)
4430 fc->col_type[reg] = DW_CFA_undefined;
4431 break;
4432 case DW_CFA_undefined:
4433 reg = LEB ();
4434 if (frame_need_space (fc, reg) >= 0)
4435 fc->col_type[reg] = DW_CFA_undefined;
4436 break;
4437 case DW_CFA_same_value:
4438 reg = LEB ();
4439 if (frame_need_space (fc, reg) >= 0)
4440 fc->col_type[reg] = DW_CFA_undefined;
4441 break;
4442 case DW_CFA_register:
4443 reg = LEB (); LEB ();
4444 if (frame_need_space (fc, reg) >= 0)
4445 fc->col_type[reg] = DW_CFA_undefined;
4446 break;
4447 case DW_CFA_def_cfa:
4448 LEB (); LEB ();
4449 break;
4450 case DW_CFA_def_cfa_register:
4451 LEB ();
4452 break;
4453 case DW_CFA_def_cfa_offset:
4454 LEB ();
4455 break;
4456 case DW_CFA_def_cfa_expression:
4457 temp = LEB ();
4458 start += temp;
4459 break;
4460 case DW_CFA_expression:
4461 case DW_CFA_val_expression:
4462 reg = LEB ();
4463 temp = LEB ();
4464 start += temp;
4465 if (frame_need_space (fc, reg) >= 0)
4466 fc->col_type[reg] = DW_CFA_undefined;
4467 break;
4468 case DW_CFA_offset_extended_sf:
4469 case DW_CFA_val_offset_sf:
4470 reg = LEB (); SLEB ();
4471 if (frame_need_space (fc, reg) >= 0)
4472 fc->col_type[reg] = DW_CFA_undefined;
4473 break;
4474 case DW_CFA_def_cfa_sf:
4475 LEB (); SLEB ();
4476 break;
4477 case DW_CFA_def_cfa_offset_sf:
4478 SLEB ();
4479 break;
4480 case DW_CFA_MIPS_advance_loc8:
4481 start += 8;
4482 break;
4483 case DW_CFA_GNU_args_size:
4484 LEB ();
4485 break;
4486 case DW_CFA_GNU_negative_offset_extended:
4487 reg = LEB (); LEB ();
4488 if (frame_need_space (fc, reg) >= 0)
4489 fc->col_type[reg] = DW_CFA_undefined;
4490 break;
4491 default:
4492 break;
4493 }
4494 }
4495 start = tmp;
4496 }
4497
4498 /* Now we know what registers are used, make a second pass over
4499 the chunk, this time actually printing out the info. */
4500
4501 while (start < block_end)
4502 {
4503 unsigned op, opa;
4504 unsigned long ul, reg, roffs;
4505 long l, ofs;
4506 dwarf_vma vma;
4507 const char *reg_prefix = "";
4508
4509 op = *start++;
4510 opa = op & 0x3f;
4511 if (op & 0xc0)
4512 op &= 0xc0;
4513
4514 /* Warning: if you add any more cases to this switch, be
4515 sure to add them to the corresponding switch above. */
4516 switch (op)
4517 {
4518 case DW_CFA_advance_loc:
4519 if (do_debug_frames_interp)
4520 frame_display_row (fc, &need_col_headers, &max_regs);
4521 else
4522 printf (" DW_CFA_advance_loc: %d to %08lx\n",
4523 opa * fc->code_factor,
4524 fc->pc_begin + opa * fc->code_factor);
4525 fc->pc_begin += opa * fc->code_factor;
4526 break;
4527
4528 case DW_CFA_offset:
4529 roffs = LEB ();
4530 if (opa >= (unsigned int) fc->ncols)
4531 reg_prefix = bad_reg;
4532 if (! do_debug_frames_interp || *reg_prefix != '\0')
4533 printf (" DW_CFA_offset: %s%s at cfa%+ld\n",
4534 reg_prefix, regname (opa, 0),
4535 roffs * fc->data_factor);
4536 if (*reg_prefix == '\0')
4537 {
4538 fc->col_type[opa] = DW_CFA_offset;
4539 fc->col_offset[opa] = roffs * fc->data_factor;
4540 }
4541 break;
4542
4543 case DW_CFA_restore:
4544 if (opa >= (unsigned int) cie->ncols
4545 || opa >= (unsigned int) fc->ncols)
4546 reg_prefix = bad_reg;
4547 if (! do_debug_frames_interp || *reg_prefix != '\0')
4548 printf (" DW_CFA_restore: %s%s\n",
4549 reg_prefix, regname (opa, 0));
4550 if (*reg_prefix == '\0')
4551 {
4552 fc->col_type[opa] = cie->col_type[opa];
4553 fc->col_offset[opa] = cie->col_offset[opa];
4554 }
4555 break;
4556
4557 case DW_CFA_set_loc:
4558 vma = get_encoded_value (start, fc->fde_encoding);
4559 if ((fc->fde_encoding & 0x70) == DW_EH_PE_pcrel)
4560 vma += section->address + (start - section_start);
4561 start += encoded_ptr_size;
4562 if (do_debug_frames_interp)
4563 frame_display_row (fc, &need_col_headers, &max_regs);
4564 else
4565 printf (" DW_CFA_set_loc: %08lx\n", (unsigned long)vma);
4566 fc->pc_begin = vma;
4567 break;
4568
4569 case DW_CFA_advance_loc1:
4570 ofs = byte_get (start, 1); start += 1;
4571 if (do_debug_frames_interp)
4572 frame_display_row (fc, &need_col_headers, &max_regs);
4573 else
4574 printf (" DW_CFA_advance_loc1: %ld to %08lx\n",
4575 ofs * fc->code_factor,
4576 fc->pc_begin + ofs * fc->code_factor);
4577 fc->pc_begin += ofs * fc->code_factor;
4578 break;
4579
4580 case DW_CFA_advance_loc2:
4581 ofs = byte_get (start, 2); start += 2;
4582 if (do_debug_frames_interp)
4583 frame_display_row (fc, &need_col_headers, &max_regs);
4584 else
4585 printf (" DW_CFA_advance_loc2: %ld to %08lx\n",
4586 ofs * fc->code_factor,
4587 fc->pc_begin + ofs * fc->code_factor);
4588 fc->pc_begin += ofs * fc->code_factor;
4589 break;
4590
4591 case DW_CFA_advance_loc4:
4592 ofs = byte_get (start, 4); start += 4;
4593 if (do_debug_frames_interp)
4594 frame_display_row (fc, &need_col_headers, &max_regs);
4595 else
4596 printf (" DW_CFA_advance_loc4: %ld to %08lx\n",
4597 ofs * fc->code_factor,
4598 fc->pc_begin + ofs * fc->code_factor);
4599 fc->pc_begin += ofs * fc->code_factor;
4600 break;
4601
4602 case DW_CFA_offset_extended:
4603 reg = LEB ();
4604 roffs = LEB ();
4605 if (reg >= (unsigned int) fc->ncols)
4606 reg_prefix = bad_reg;
4607 if (! do_debug_frames_interp || *reg_prefix != '\0')
4608 printf (" DW_CFA_offset_extended: %s%s at cfa%+ld\n",
4609 reg_prefix, regname (reg, 0),
4610 roffs * fc->data_factor);
4611 if (*reg_prefix == '\0')
4612 {
4613 fc->col_type[reg] = DW_CFA_offset;
4614 fc->col_offset[reg] = roffs * fc->data_factor;
4615 }
4616 break;
4617
4618 case DW_CFA_val_offset:
4619 reg = LEB ();
4620 roffs = LEB ();
4621 if (reg >= (unsigned int) fc->ncols)
4622 reg_prefix = bad_reg;
4623 if (! do_debug_frames_interp || *reg_prefix != '\0')
4624 printf (" DW_CFA_val_offset: %s%s at cfa%+ld\n",
4625 reg_prefix, regname (reg, 0),
4626 roffs * fc->data_factor);
4627 if (*reg_prefix == '\0')
4628 {
4629 fc->col_type[reg] = DW_CFA_val_offset;
4630 fc->col_offset[reg] = roffs * fc->data_factor;
4631 }
4632 break;
4633
4634 case DW_CFA_restore_extended:
4635 reg = LEB ();
4636 if (reg >= (unsigned int) cie->ncols
4637 || reg >= (unsigned int) fc->ncols)
4638 reg_prefix = bad_reg;
4639 if (! do_debug_frames_interp || *reg_prefix != '\0')
4640 printf (" DW_CFA_restore_extended: %s%s\n",
4641 reg_prefix, regname (reg, 0));
4642 if (*reg_prefix == '\0')
4643 {
4644 fc->col_type[reg] = cie->col_type[reg];
4645 fc->col_offset[reg] = cie->col_offset[reg];
4646 }
4647 break;
4648
4649 case DW_CFA_undefined:
4650 reg = LEB ();
4651 if (reg >= (unsigned int) fc->ncols)
4652 reg_prefix = bad_reg;
4653 if (! do_debug_frames_interp || *reg_prefix != '\0')
4654 printf (" DW_CFA_undefined: %s%s\n",
4655 reg_prefix, regname (reg, 0));
4656 if (*reg_prefix == '\0')
4657 {
4658 fc->col_type[reg] = DW_CFA_undefined;
4659 fc->col_offset[reg] = 0;
4660 }
4661 break;
4662
4663 case DW_CFA_same_value:
4664 reg = LEB ();
4665 if (reg >= (unsigned int) fc->ncols)
4666 reg_prefix = bad_reg;
4667 if (! do_debug_frames_interp || *reg_prefix != '\0')
4668 printf (" DW_CFA_same_value: %s%s\n",
4669 reg_prefix, regname (reg, 0));
4670 if (*reg_prefix == '\0')
4671 {
4672 fc->col_type[reg] = DW_CFA_same_value;
4673 fc->col_offset[reg] = 0;
4674 }
4675 break;
4676
4677 case DW_CFA_register:
4678 reg = LEB ();
4679 roffs = LEB ();
4680 if (reg >= (unsigned int) fc->ncols)
4681 reg_prefix = bad_reg;
4682 if (! do_debug_frames_interp || *reg_prefix != '\0')
4683 {
4684 printf (" DW_CFA_register: %s%s in ",
4685 reg_prefix, regname (reg, 0));
4686 puts (regname (roffs, 0));
4687 }
4688 if (*reg_prefix == '\0')
4689 {
4690 fc->col_type[reg] = DW_CFA_register;
4691 fc->col_offset[reg] = roffs;
4692 }
4693 break;
4694
4695 case DW_CFA_remember_state:
4696 if (! do_debug_frames_interp)
4697 printf (" DW_CFA_remember_state\n");
4698 rs = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
4699 rs->ncols = fc->ncols;
4700 rs->col_type = (short int *) xcmalloc (rs->ncols,
4701 sizeof (short int));
4702 rs->col_offset = (int *) xcmalloc (rs->ncols, sizeof (int));
4703 memcpy (rs->col_type, fc->col_type, rs->ncols);
4704 memcpy (rs->col_offset, fc->col_offset, rs->ncols * sizeof (int));
4705 rs->next = remembered_state;
4706 remembered_state = rs;
4707 break;
4708
4709 case DW_CFA_restore_state:
4710 if (! do_debug_frames_interp)
4711 printf (" DW_CFA_restore_state\n");
4712 rs = remembered_state;
4713 if (rs)
4714 {
4715 remembered_state = rs->next;
4716 frame_need_space (fc, rs->ncols - 1);
4717 memcpy (fc->col_type, rs->col_type, rs->ncols);
4718 memcpy (fc->col_offset, rs->col_offset,
4719 rs->ncols * sizeof (int));
4720 free (rs->col_type);
4721 free (rs->col_offset);
4722 free (rs);
4723 }
4724 else if (do_debug_frames_interp)
4725 printf ("Mismatched DW_CFA_restore_state\n");
4726 break;
4727
4728 case DW_CFA_def_cfa:
4729 fc->cfa_reg = LEB ();
4730 fc->cfa_offset = LEB ();
4731 fc->cfa_exp = 0;
4732 if (! do_debug_frames_interp)
4733 printf (" DW_CFA_def_cfa: %s ofs %d\n",
4734 regname (fc->cfa_reg, 0), fc->cfa_offset);
4735 break;
4736
4737 case DW_CFA_def_cfa_register:
4738 fc->cfa_reg = LEB ();
4739 fc->cfa_exp = 0;
4740 if (! do_debug_frames_interp)
4741 printf (" DW_CFA_def_cfa_register: %s\n",
4742 regname (fc->cfa_reg, 0));
4743 break;
4744
4745 case DW_CFA_def_cfa_offset:
4746 fc->cfa_offset = LEB ();
4747 if (! do_debug_frames_interp)
4748 printf (" DW_CFA_def_cfa_offset: %d\n", fc->cfa_offset);
4749 break;
4750
4751 case DW_CFA_nop:
4752 if (! do_debug_frames_interp)
4753 printf (" DW_CFA_nop\n");
4754 break;
4755
4756 case DW_CFA_def_cfa_expression:
4757 ul = LEB ();
4758 if (! do_debug_frames_interp)
4759 {
4760 printf (" DW_CFA_def_cfa_expression (");
4761 decode_location_expression (start, eh_addr_size, ul, 0,
4762 section);
4763 printf (")\n");
4764 }
4765 fc->cfa_exp = 1;
4766 start += ul;
4767 break;
4768
4769 case DW_CFA_expression:
4770 reg = LEB ();
4771 ul = LEB ();
4772 if (reg >= (unsigned int) fc->ncols)
4773 reg_prefix = bad_reg;
4774 if (! do_debug_frames_interp || *reg_prefix != '\0')
4775 {
4776 printf (" DW_CFA_expression: %s%s (",
4777 reg_prefix, regname (reg, 0));
4778 decode_location_expression (start, eh_addr_size,
4779 ul, 0, section);
4780 printf (")\n");
4781 }
4782 if (*reg_prefix == '\0')
4783 fc->col_type[reg] = DW_CFA_expression;
4784 start += ul;
4785 break;
4786
4787 case DW_CFA_val_expression:
4788 reg = LEB ();
4789 ul = LEB ();
4790 if (reg >= (unsigned int) fc->ncols)
4791 reg_prefix = bad_reg;
4792 if (! do_debug_frames_interp || *reg_prefix != '\0')
4793 {
4794 printf (" DW_CFA_val_expression: %s%s (",
4795 reg_prefix, regname (reg, 0));
4796 decode_location_expression (start, eh_addr_size, ul, 0,
4797 section);
4798 printf (")\n");
4799 }
4800 if (*reg_prefix == '\0')
4801 fc->col_type[reg] = DW_CFA_val_expression;
4802 start += ul;
4803 break;
4804
4805 case DW_CFA_offset_extended_sf:
4806 reg = LEB ();
4807 l = SLEB ();
4808 if (frame_need_space (fc, reg) < 0)
4809 reg_prefix = bad_reg;
4810 if (! do_debug_frames_interp || *reg_prefix != '\0')
4811 printf (" DW_CFA_offset_extended_sf: %s%s at cfa%+ld\n",
4812 reg_prefix, regname (reg, 0),
4813 l * fc->data_factor);
4814 if (*reg_prefix == '\0')
4815 {
4816 fc->col_type[reg] = DW_CFA_offset;
4817 fc->col_offset[reg] = l * fc->data_factor;
4818 }
4819 break;
4820
4821 case DW_CFA_val_offset_sf:
4822 reg = LEB ();
4823 l = SLEB ();
4824 if (frame_need_space (fc, reg) < 0)
4825 reg_prefix = bad_reg;
4826 if (! do_debug_frames_interp || *reg_prefix != '\0')
4827 printf (" DW_CFA_val_offset_sf: %s%s at cfa%+ld\n",
4828 reg_prefix, regname (reg, 0),
4829 l * fc->data_factor);
4830 if (*reg_prefix == '\0')
4831 {
4832 fc->col_type[reg] = DW_CFA_val_offset;
4833 fc->col_offset[reg] = l * fc->data_factor;
4834 }
4835 break;
4836
4837 case DW_CFA_def_cfa_sf:
4838 fc->cfa_reg = LEB ();
4839 fc->cfa_offset = SLEB ();
4840 fc->cfa_offset = fc->cfa_offset * fc->data_factor;
4841 fc->cfa_exp = 0;
4842 if (! do_debug_frames_interp)
4843 printf (" DW_CFA_def_cfa_sf: %s ofs %d\n",
4844 regname (fc->cfa_reg, 0), fc->cfa_offset);
4845 break;
4846
4847 case DW_CFA_def_cfa_offset_sf:
4848 fc->cfa_offset = SLEB ();
4849 fc->cfa_offset = fc->cfa_offset * fc->data_factor;
4850 if (! do_debug_frames_interp)
4851 printf (" DW_CFA_def_cfa_offset_sf: %d\n", fc->cfa_offset);
4852 break;
4853
4854 case DW_CFA_MIPS_advance_loc8:
4855 ofs = byte_get (start, 8); start += 8;
4856 if (do_debug_frames_interp)
4857 frame_display_row (fc, &need_col_headers, &max_regs);
4858 else
4859 printf (" DW_CFA_MIPS_advance_loc8: %ld to %08lx\n",
4860 ofs * fc->code_factor,
4861 fc->pc_begin + ofs * fc->code_factor);
4862 fc->pc_begin += ofs * fc->code_factor;
4863 break;
4864
4865 case DW_CFA_GNU_window_save:
4866 if (! do_debug_frames_interp)
4867 printf (" DW_CFA_GNU_window_save\n");
4868 break;
4869
4870 case DW_CFA_GNU_args_size:
4871 ul = LEB ();
4872 if (! do_debug_frames_interp)
4873 printf (" DW_CFA_GNU_args_size: %ld\n", ul);
4874 break;
4875
4876 case DW_CFA_GNU_negative_offset_extended:
4877 reg = LEB ();
4878 l = - LEB ();
4879 if (frame_need_space (fc, reg) < 0)
4880 reg_prefix = bad_reg;
4881 if (! do_debug_frames_interp || *reg_prefix != '\0')
4882 printf (" DW_CFA_GNU_negative_offset_extended: %s%s at cfa%+ld\n",
4883 reg_prefix, regname (reg, 0),
4884 l * fc->data_factor);
4885 if (*reg_prefix == '\0')
4886 {
4887 fc->col_type[reg] = DW_CFA_offset;
4888 fc->col_offset[reg] = l * fc->data_factor;
4889 }
4890 break;
4891
4892 default:
4893 if (op >= DW_CFA_lo_user && op <= DW_CFA_hi_user)
4894 printf (_(" DW_CFA_??? (User defined call frame op: %#x)\n"), op);
4895 else
4896 warn (_("unsupported or unknown Dwarf Call Frame Instruction number: %#x\n"), op);
4897 start = block_end;
4898 }
4899 }
4900
4901 if (do_debug_frames_interp)
4902 frame_display_row (fc, &need_col_headers, &max_regs);
4903
4904 start = block_end;
4905 eh_addr_size = saved_eh_addr_size;
4906 }
4907
4908 printf ("\n");
4909
4910 return 1;
4911 }
4912
4913 #undef GET
4914 #undef LEB
4915 #undef SLEB
4916
4917 static int
4918 display_debug_not_supported (struct dwarf_section *section,
4919 void *file ATTRIBUTE_UNUSED)
4920 {
4921 printf (_("Displaying the debug contents of section %s is not yet supported.\n"),
4922 section->name);
4923
4924 return 1;
4925 }
4926
4927 void *
4928 cmalloc (size_t nmemb, size_t size)
4929 {
4930 /* Check for overflow. */
4931 if (nmemb >= ~(size_t) 0 / size)
4932 return NULL;
4933 else
4934 return malloc (nmemb * size);
4935 }
4936
4937 void *
4938 xcmalloc (size_t nmemb, size_t size)
4939 {
4940 /* Check for overflow. */
4941 if (nmemb >= ~(size_t) 0 / size)
4942 return NULL;
4943 else
4944 return xmalloc (nmemb * size);
4945 }
4946
4947 void *
4948 xcrealloc (void *ptr, size_t nmemb, size_t size)
4949 {
4950 /* Check for overflow. */
4951 if (nmemb >= ~(size_t) 0 / size)
4952 return NULL;
4953 else
4954 return xrealloc (ptr, nmemb * size);
4955 }
4956
4957 void
4958 error (const char *message, ...)
4959 {
4960 va_list args;
4961
4962 va_start (args, message);
4963 fprintf (stderr, _("%s: Error: "), program_name);
4964 vfprintf (stderr, message, args);
4965 va_end (args);
4966 }
4967
4968 void
4969 warn (const char *message, ...)
4970 {
4971 va_list args;
4972
4973 va_start (args, message);
4974 fprintf (stderr, _("%s: Warning: "), program_name);
4975 vfprintf (stderr, message, args);
4976 va_end (args);
4977 }
4978
4979 void
4980 free_debug_memory (void)
4981 {
4982 unsigned int i;
4983
4984 free_abbrevs ();
4985
4986 for (i = 0; i < max; i++)
4987 free_debug_section ((enum dwarf_section_display_enum) i);
4988
4989 if (debug_information != NULL)
4990 {
4991 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE)
4992 {
4993 for (i = 0; i < num_debug_info_entries; i++)
4994 {
4995 if (!debug_information [i].max_loc_offsets)
4996 {
4997 free (debug_information [i].loc_offsets);
4998 free (debug_information [i].have_frame_base);
4999 }
5000 if (!debug_information [i].max_range_lists)
5001 free (debug_information [i].range_lists);
5002 }
5003 }
5004
5005 free (debug_information);
5006 debug_information = NULL;
5007 num_debug_info_entries = 0;
5008 }
5009 }
5010
5011 void
5012 dwarf_select_sections_by_names (const char *names)
5013 {
5014 typedef struct
5015 {
5016 const char * option;
5017 int * variable;
5018 int val;
5019 }
5020 debug_dump_long_opts;
5021
5022 static const debug_dump_long_opts opts_table [] =
5023 {
5024 /* Please keep this table alpha- sorted. */
5025 { "Ranges", & do_debug_ranges, 1 },
5026 { "abbrev", & do_debug_abbrevs, 1 },
5027 { "aranges", & do_debug_aranges, 1 },
5028 { "frames", & do_debug_frames, 1 },
5029 { "frames-interp", & do_debug_frames_interp, 1 },
5030 { "info", & do_debug_info, 1 },
5031 { "line", & do_debug_lines, FLAG_DEBUG_LINES_RAW }, /* For backwards compatibility. */
5032 { "rawline", & do_debug_lines, FLAG_DEBUG_LINES_RAW },
5033 { "decodedline", & do_debug_lines, FLAG_DEBUG_LINES_DECODED },
5034 { "loc", & do_debug_loc, 1 },
5035 { "macro", & do_debug_macinfo, 1 },
5036 { "pubnames", & do_debug_pubnames, 1 },
5037 { "pubtypes", & do_debug_pubtypes, 1 },
5038 /* This entry is for compatability
5039 with earlier versions of readelf. */
5040 { "ranges", & do_debug_aranges, 1 },
5041 { "str", & do_debug_str, 1 },
5042 /* These trace_* sections are used by Itanium VMS. */
5043 { "trace_abbrev", & do_trace_abbrevs, 1 },
5044 { "trace_aranges", & do_trace_aranges, 1 },
5045 { "trace_info", & do_trace_info, 1 },
5046 { NULL, NULL, 0 }
5047 };
5048
5049 const char *p;
5050
5051 p = names;
5052 while (*p)
5053 {
5054 const debug_dump_long_opts * entry;
5055
5056 for (entry = opts_table; entry->option; entry++)
5057 {
5058 size_t len = strlen (entry->option);
5059
5060 if (strncmp (p, entry->option, len) == 0
5061 && (p[len] == ',' || p[len] == '\0'))
5062 {
5063 * entry->variable |= entry->val;
5064
5065 /* The --debug-dump=frames-interp option also
5066 enables the --debug-dump=frames option. */
5067 if (do_debug_frames_interp)
5068 do_debug_frames = 1;
5069
5070 p += len;
5071 break;
5072 }
5073 }
5074
5075 if (entry->option == NULL)
5076 {
5077 warn (_("Unrecognized debug option '%s'\n"), p);
5078 p = strchr (p, ',');
5079 if (p == NULL)
5080 break;
5081 }
5082
5083 if (*p == ',')
5084 p++;
5085 }
5086 }
5087
5088 void
5089 dwarf_select_sections_by_letters (const char *letters)
5090 {
5091 unsigned int lindex = 0;
5092
5093 while (letters[lindex])
5094 switch (letters[lindex++])
5095 {
5096 case 'i':
5097 do_debug_info = 1;
5098 break;
5099
5100 case 'a':
5101 do_debug_abbrevs = 1;
5102 break;
5103
5104 case 'l':
5105 do_debug_lines |= FLAG_DEBUG_LINES_RAW;
5106 break;
5107
5108 case 'L':
5109 do_debug_lines |= FLAG_DEBUG_LINES_DECODED;
5110 break;
5111
5112 case 'p':
5113 do_debug_pubnames = 1;
5114 break;
5115
5116 case 't':
5117 do_debug_pubtypes = 1;
5118 break;
5119
5120 case 'r':
5121 do_debug_aranges = 1;
5122 break;
5123
5124 case 'R':
5125 do_debug_ranges = 1;
5126 break;
5127
5128 case 'F':
5129 do_debug_frames_interp = 1;
5130 case 'f':
5131 do_debug_frames = 1;
5132 break;
5133
5134 case 'm':
5135 do_debug_macinfo = 1;
5136 break;
5137
5138 case 's':
5139 do_debug_str = 1;
5140 break;
5141
5142 case 'o':
5143 do_debug_loc = 1;
5144 break;
5145
5146 default:
5147 warn (_("Unrecognized debug option '%s'\n"), optarg);
5148 break;
5149 }
5150 }
5151
5152 void
5153 dwarf_select_sections_all (void)
5154 {
5155 do_debug_info = 1;
5156 do_debug_abbrevs = 1;
5157 do_debug_lines = FLAG_DEBUG_LINES_RAW;
5158 do_debug_pubnames = 1;
5159 do_debug_pubtypes = 1;
5160 do_debug_aranges = 1;
5161 do_debug_ranges = 1;
5162 do_debug_frames = 1;
5163 do_debug_macinfo = 1;
5164 do_debug_str = 1;
5165 do_debug_loc = 1;
5166 do_trace_info = 1;
5167 do_trace_abbrevs = 1;
5168 do_trace_aranges = 1;
5169 }
5170
5171 struct dwarf_section_display debug_displays[] =
5172 {
5173 { { ".debug_abbrev", ".zdebug_abbrev", NULL, NULL, 0, 0 },
5174 display_debug_abbrev, &do_debug_abbrevs, 0 },
5175 { { ".debug_aranges", ".zdebug_aranges", NULL, NULL, 0, 0 },
5176 display_debug_aranges, &do_debug_aranges, 1 },
5177 { { ".debug_frame", ".zdebug_frame", NULL, NULL, 0, 0 },
5178 display_debug_frames, &do_debug_frames, 1 },
5179 { { ".debug_info", ".zdebug_info", NULL, NULL, 0, 0 },
5180 display_debug_info, &do_debug_info, 1 },
5181 { { ".debug_line", ".zdebug_line", NULL, NULL, 0, 0 },
5182 display_debug_lines, &do_debug_lines, 1 },
5183 { { ".debug_pubnames", ".zdebug_pubnames", NULL, NULL, 0, 0 },
5184 display_debug_pubnames, &do_debug_pubnames, 0 },
5185 { { ".eh_frame", "", NULL, NULL, 0, 0 },
5186 display_debug_frames, &do_debug_frames, 1 },
5187 { { ".debug_macinfo", ".zdebug_macinfo", NULL, NULL, 0, 0 },
5188 display_debug_macinfo, &do_debug_macinfo, 0 },
5189 { { ".debug_str", ".zdebug_str", NULL, NULL, 0, 0 },
5190 display_debug_str, &do_debug_str, 0 },
5191 { { ".debug_loc", ".zdebug_loc", NULL, NULL, 0, 0 },
5192 display_debug_loc, &do_debug_loc, 1 },
5193 { { ".debug_pubtypes", ".zdebug_pubtypes", NULL, NULL, 0, 0 },
5194 display_debug_pubnames, &do_debug_pubtypes, 0 },
5195 { { ".debug_ranges", ".zdebug_ranges", NULL, NULL, 0, 0 },
5196 display_debug_ranges, &do_debug_ranges, 1 },
5197 { { ".debug_static_func", ".zdebug_static_func", NULL, NULL, 0, 0 },
5198 display_debug_not_supported, NULL, 0 },
5199 { { ".debug_static_vars", ".zdebug_static_vars", NULL, NULL, 0, 0 },
5200 display_debug_not_supported, NULL, 0 },
5201 { { ".debug_types", ".zdebug_types", NULL, NULL, 0, 0 },
5202 display_debug_types, &do_debug_info, 1 },
5203 { { ".debug_weaknames", ".zdebug_weaknames", NULL, NULL, 0, 0 },
5204 display_debug_not_supported, NULL, 0 },
5205 { { ".trace_info", "", NULL, NULL, 0, 0 },
5206 display_trace_info, &do_trace_info, 1 },
5207 { { ".trace_abbrev", "", NULL, NULL, 0, 0 },
5208 display_debug_abbrev, &do_trace_abbrevs, 0 },
5209 { { ".trace_aranges", "", NULL, NULL, 0, 0 },
5210 display_debug_aranges, &do_trace_aranges, 0 }
5211 };
This page took 0.176256 seconds and 4 git commands to generate.