* dwarf.c (process_debug_info): Check dwarf_cutoff_level.
[deliverable/binutils-gdb.git] / binutils / dwarf.c
1 /* dwarf.c -- display DWARF contents of a BFD binary file
2 Copyright 2005-2013 Free Software Foundation, Inc.
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include "libiberty.h"
23 #include "bfd.h"
24 #include "bfd_stdint.h"
25 #include "bucomm.h"
26 #include "elfcomm.h"
27 #include "elf/common.h"
28 #include "dwarf2.h"
29 #include "dwarf.h"
30 #include "gdb/gdb-index.h"
31
32 #if !HAVE_DECL_STRNLEN
33 size_t strnlen (const char *, size_t);
34 #endif
35
36 static const char *regname (unsigned int regno, int row);
37
38 static int have_frame_base;
39 static int need_base_address;
40
41 static unsigned int last_pointer_size = 0;
42 static int warned_about_missing_comp_units = FALSE;
43
44 static unsigned int num_debug_info_entries = 0;
45 static debug_info *debug_information = NULL;
46 /* Special value for num_debug_info_entries to indicate
47 that the .debug_info section could not be loaded/parsed. */
48 #define DEBUG_INFO_UNAVAILABLE (unsigned int) -1
49
50 int eh_addr_size;
51
52 int do_debug_info;
53 int do_debug_abbrevs;
54 int do_debug_lines;
55 int do_debug_pubnames;
56 int do_debug_pubtypes;
57 int do_debug_aranges;
58 int do_debug_ranges;
59 int do_debug_frames;
60 int do_debug_frames_interp;
61 int do_debug_macinfo;
62 int do_debug_str;
63 int do_debug_loc;
64 int do_gdb_index;
65 int do_trace_info;
66 int do_trace_abbrevs;
67 int do_trace_aranges;
68 int do_debug_addr;
69 int do_debug_cu_index;
70 int do_wide;
71
72 int dwarf_cutoff_level = -1;
73 unsigned long dwarf_start_die;
74
75 int dwarf_check = 0;
76
77 /* Collection of CU/TU section sets from .debug_cu_index and .debug_tu_index
78 sections. For version 1 package files, each set is stored in SHNDX_POOL
79 as a zero-terminated list of section indexes comprising one set of debug
80 sections from a .dwo file. */
81
82 static int cu_tu_indexes_read = 0;
83 static unsigned int *shndx_pool = NULL;
84 static unsigned int shndx_pool_size = 0;
85 static unsigned int shndx_pool_used = 0;
86
87 /* For version 2 package files, each set contains an array of section offsets
88 and an array of section sizes, giving the offset and size of the
89 contribution from a CU or TU within one of the debug sections.
90 When displaying debug info from a package file, we need to use these
91 tables to locate the corresponding contributions to each section. */
92
93 struct cu_tu_set
94 {
95 uint64_t signature;
96 dwarf_vma section_offsets[DW_SECT_MAX];
97 size_t section_sizes[DW_SECT_MAX];
98 };
99
100 static int cu_count = 0;
101 static int tu_count = 0;
102 static struct cu_tu_set *cu_sets = NULL;
103 static struct cu_tu_set *tu_sets = NULL;
104
105 static void load_cu_tu_indexes (void *file);
106
107 /* Values for do_debug_lines. */
108 #define FLAG_DEBUG_LINES_RAW 1
109 #define FLAG_DEBUG_LINES_DECODED 2
110
111 static int
112 size_of_encoded_value (int encoding)
113 {
114 switch (encoding & 0x7)
115 {
116 default: /* ??? */
117 case 0: return eh_addr_size;
118 case 2: return 2;
119 case 3: return 4;
120 case 4: return 8;
121 }
122 }
123
124 static dwarf_vma
125 get_encoded_value (unsigned char *data,
126 int encoding,
127 struct dwarf_section *section)
128 {
129 int size = size_of_encoded_value (encoding);
130 dwarf_vma val;
131
132 if (encoding & DW_EH_PE_signed)
133 val = byte_get_signed (data, size);
134 else
135 val = byte_get (data, size);
136
137 if ((encoding & 0x70) == DW_EH_PE_pcrel)
138 val += section->address + (data - section->start);
139 return val;
140 }
141
142 /* Print a dwarf_vma value (typically an address, offset or length) in
143 hexadecimal format, followed by a space. The length of the value (and
144 hence the precision displayed) is determined by the byte_size parameter. */
145
146 static void
147 print_dwarf_vma (dwarf_vma val, unsigned byte_size)
148 {
149 static char buff[18];
150 int offset = 0;
151
152 /* Printf does not have a way of specifiying a maximum field width for an
153 integer value, so we print the full value into a buffer and then select
154 the precision we need. */
155 #if __STDC_VERSION__ >= 199901L || (defined(__GNUC__) && __GNUC__ >= 2)
156 #ifndef __MINGW32__
157 snprintf (buff, sizeof (buff), "%16.16llx ", val);
158 #else
159 snprintf (buff, sizeof (buff), "%016I64x ", val);
160 #endif
161 #else
162 snprintf (buff, sizeof (buff), "%16.16lx ", val);
163 #endif
164
165 if (byte_size != 0)
166 {
167 if (byte_size > 0 && byte_size <= 8)
168 offset = 16 - 2 * byte_size;
169 else
170 error (_("Wrong size in print_dwarf_vma"));
171 }
172
173 fputs (buff + offset, stdout);
174 }
175
176 #if __STDC_VERSION__ >= 199901L || (defined(__GNUC__) && __GNUC__ >= 2)
177 #ifndef __MINGW32__
178 #define DWARF_VMA_FMT "ll"
179 #else
180 #define DWARF_VMA_FMT "I64"
181 #endif
182 #else
183 #define DWARF_VMA_FMT "l"
184 #endif
185
186 static const char *
187 dwarf_vmatoa (const char *fmtch, dwarf_vma value)
188 {
189 /* As dwarf_vmatoa is used more then once in a printf call
190 for output, we are cycling through an fixed array of pointers
191 for return address. */
192 static int buf_pos = 0;
193 static struct dwarf_vmatoa_buf
194 {
195 char place[64];
196 } buf[16];
197 char fmt[32];
198 char *ret;
199
200 sprintf (fmt, "%%%s%s", DWARF_VMA_FMT, fmtch);
201
202 ret = buf[buf_pos++].place;
203 buf_pos %= ARRAY_SIZE (buf);
204
205 snprintf (ret, sizeof (buf[0].place), fmt, value);
206
207 return ret;
208 }
209
210 /* Format a 64-bit value, given as two 32-bit values, in hex.
211 For reentrancy, this uses a buffer provided by the caller. */
212
213 static const char *
214 dwarf_vmatoa64 (dwarf_vma hvalue, dwarf_vma lvalue, char *buf,
215 unsigned int buf_len)
216 {
217 int len = 0;
218
219 if (hvalue == 0)
220 snprintf (buf, buf_len, "%" DWARF_VMA_FMT "x", lvalue);
221 else
222 {
223 len = snprintf (buf, buf_len, "%" DWARF_VMA_FMT "x", hvalue);
224 snprintf (buf + len, buf_len - len,
225 "%08" DWARF_VMA_FMT "x", lvalue);
226 }
227
228 return buf;
229 }
230
231 /* Read in a LEB128 encoded value starting at address DATA.
232 If SIGN is true, return a signed LEB128 value.
233 If LENGTH_RETURN is not NULL, return in it the number of bytes read.
234 No bytes will be read at address END or beyond. */
235
236 dwarf_vma
237 read_leb128 (unsigned char *data,
238 unsigned int *length_return,
239 bfd_boolean sign,
240 const unsigned char * const end)
241 {
242 dwarf_vma result = 0;
243 unsigned int num_read = 0;
244 unsigned int shift = 0;
245 unsigned char byte = 0;
246
247 while (data < end)
248 {
249 byte = *data++;
250 num_read++;
251
252 result |= ((dwarf_vma) (byte & 0x7f)) << shift;
253
254 shift += 7;
255 if ((byte & 0x80) == 0)
256 break;
257 }
258
259 if (length_return != NULL)
260 *length_return = num_read;
261
262 if (sign && (shift < 8 * sizeof (result)) && (byte & 0x40))
263 result |= -1L << shift;
264
265 return result;
266 }
267
268 /* Create a signed version to avoid painful typecasts. */
269 static inline dwarf_signed_vma
270 read_sleb128 (unsigned char * data,
271 unsigned int * length_return,
272 const unsigned char * const end)
273 {
274 return (dwarf_signed_vma) read_leb128 (data, length_return, TRUE, end);
275 }
276
277 static inline dwarf_vma
278 read_uleb128 (unsigned char * data,
279 unsigned int * length_return,
280 const unsigned char * const end)
281 {
282 return read_leb128 (data, length_return, FALSE, end);
283 }
284
285 #define SAFE_BYTE_GET(VAL, PTR, AMOUNT, END) \
286 do \
287 { \
288 unsigned int amount = (AMOUNT); \
289 if (((PTR) + amount) >= (END)) \
290 { \
291 if ((PTR) < (END)) \
292 amount = (END) - (PTR); \
293 else \
294 amount = 0; \
295 } \
296 if (amount) \
297 VAL = byte_get ((PTR), amount); \
298 else \
299 VAL = 0; \
300 } \
301 while (0)
302
303 #define SAFE_BYTE_GET_AND_INC(VAL, PTR, AMOUNT, END) \
304 do \
305 { \
306 SAFE_BYTE_GET (VAL, PTR, AMOUNT, END); \
307 PTR += AMOUNT; \
308 } \
309 while (0)
310
311 #define SAFE_SIGNED_BYTE_GET(VAL, PTR, AMOUNT, END) \
312 do \
313 { \
314 unsigned int amount = (AMOUNT); \
315 if (((PTR) + amount) >= (END)) \
316 { \
317 if ((PTR) < (END)) \
318 amount = (END) - (PTR); \
319 else \
320 amount = 0; \
321 } \
322 if (amount) \
323 VAL = byte_get_signed ((PTR), amount); \
324 else \
325 VAL = 0; \
326 } \
327 while (0)
328
329 #define SAFE_SIGNED_BYTE_GET_AND_INC(VAL, PTR, AMOUNT, END) \
330 do \
331 { \
332 SAFE_SIGNED_BYTE_GET (VAL, PTR, AMOUNT, END); \
333 PTR += AMOUNT; \
334 } \
335 while (0)
336
337 #define SAFE_BYTE_GET64(PTR, HIGH, LOW, END) \
338 do \
339 { \
340 if (((PTR) + 8) < (END)) \
341 { \
342 byte_get_64 ((PTR), (HIGH), (LOW)); \
343 } \
344 else \
345 { \
346 PTR = END; \
347 * (LOW) = * (HIGH) = 0; \
348 } \
349 } \
350 while (0)
351
352 typedef struct State_Machine_Registers
353 {
354 dwarf_vma address;
355 unsigned int file;
356 unsigned int line;
357 unsigned int column;
358 int is_stmt;
359 int basic_block;
360 unsigned char op_index;
361 unsigned char end_sequence;
362 /* This variable hold the number of the last entry seen
363 in the File Table. */
364 unsigned int last_file_entry;
365 } SMR;
366
367 static SMR state_machine_regs;
368
369 static void
370 reset_state_machine (int is_stmt)
371 {
372 state_machine_regs.address = 0;
373 state_machine_regs.op_index = 0;
374 state_machine_regs.file = 1;
375 state_machine_regs.line = 1;
376 state_machine_regs.column = 0;
377 state_machine_regs.is_stmt = is_stmt;
378 state_machine_regs.basic_block = 0;
379 state_machine_regs.end_sequence = 0;
380 state_machine_regs.last_file_entry = 0;
381 }
382
383 /* Handled an extend line op.
384 Returns the number of bytes read. */
385
386 static int
387 process_extended_line_op (unsigned char * data,
388 int is_stmt,
389 unsigned char * end)
390 {
391 unsigned char op_code;
392 unsigned int bytes_read;
393 unsigned int len;
394 unsigned char *name;
395 unsigned char *orig_data = data;
396 dwarf_vma adr;
397
398 len = read_uleb128 (data, & bytes_read, end);
399 data += bytes_read;
400
401 if (len == 0 || data == end)
402 {
403 warn (_("badly formed extended line op encountered!\n"));
404 return bytes_read;
405 }
406
407 len += bytes_read;
408 op_code = *data++;
409
410 printf (_(" Extended opcode %d: "), op_code);
411
412 switch (op_code)
413 {
414 case DW_LNE_end_sequence:
415 printf (_("End of Sequence\n\n"));
416 reset_state_machine (is_stmt);
417 break;
418
419 case DW_LNE_set_address:
420 SAFE_BYTE_GET (adr, data, len - bytes_read - 1, end);
421 printf (_("set Address to 0x%s\n"), dwarf_vmatoa ("x", adr));
422 state_machine_regs.address = adr;
423 state_machine_regs.op_index = 0;
424 break;
425
426 case DW_LNE_define_file:
427 printf (_("define new File Table entry\n"));
428 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
429 printf (" %d\t", ++state_machine_regs.last_file_entry);
430
431 name = data;
432 data += strnlen ((char *) data, end - data) + 1;
433 printf ("%s\t", dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
434 data += bytes_read;
435 printf ("%s\t", dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
436 data += bytes_read;
437 printf ("%s\t", dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
438 data += bytes_read;
439 printf ("%s\n\n", name);
440
441 if (((unsigned int) (data - orig_data) != len) || data == end)
442 warn (_("DW_LNE_define_file: Bad opcode length\n"));
443 break;
444
445 case DW_LNE_set_discriminator:
446 printf (_("set Discriminator to %s\n"),
447 dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
448 break;
449
450 /* HP extensions. */
451 case DW_LNE_HP_negate_is_UV_update:
452 printf ("DW_LNE_HP_negate_is_UV_update\n");
453 break;
454 case DW_LNE_HP_push_context:
455 printf ("DW_LNE_HP_push_context\n");
456 break;
457 case DW_LNE_HP_pop_context:
458 printf ("DW_LNE_HP_pop_context\n");
459 break;
460 case DW_LNE_HP_set_file_line_column:
461 printf ("DW_LNE_HP_set_file_line_column\n");
462 break;
463 case DW_LNE_HP_set_routine_name:
464 printf ("DW_LNE_HP_set_routine_name\n");
465 break;
466 case DW_LNE_HP_set_sequence:
467 printf ("DW_LNE_HP_set_sequence\n");
468 break;
469 case DW_LNE_HP_negate_post_semantics:
470 printf ("DW_LNE_HP_negate_post_semantics\n");
471 break;
472 case DW_LNE_HP_negate_function_exit:
473 printf ("DW_LNE_HP_negate_function_exit\n");
474 break;
475 case DW_LNE_HP_negate_front_end_logical:
476 printf ("DW_LNE_HP_negate_front_end_logical\n");
477 break;
478 case DW_LNE_HP_define_proc:
479 printf ("DW_LNE_HP_define_proc\n");
480 break;
481 case DW_LNE_HP_source_file_correlation:
482 {
483 unsigned char *edata = data + len - bytes_read - 1;
484
485 printf ("DW_LNE_HP_source_file_correlation\n");
486
487 while (data < edata)
488 {
489 unsigned int opc;
490
491 opc = read_uleb128 (data, & bytes_read, edata);
492 data += bytes_read;
493
494 switch (opc)
495 {
496 case DW_LNE_HP_SFC_formfeed:
497 printf (" DW_LNE_HP_SFC_formfeed\n");
498 break;
499 case DW_LNE_HP_SFC_set_listing_line:
500 printf (" DW_LNE_HP_SFC_set_listing_line (%s)\n",
501 dwarf_vmatoa ("u",
502 read_uleb128 (data, & bytes_read, edata)));
503 data += bytes_read;
504 break;
505 case DW_LNE_HP_SFC_associate:
506 printf (" DW_LNE_HP_SFC_associate ");
507 printf ("(%s",
508 dwarf_vmatoa ("u",
509 read_uleb128 (data, & bytes_read, edata)));
510 data += bytes_read;
511 printf (",%s",
512 dwarf_vmatoa ("u",
513 read_uleb128 (data, & bytes_read, edata)));
514 data += bytes_read;
515 printf (",%s)\n",
516 dwarf_vmatoa ("u",
517 read_uleb128 (data, & bytes_read, edata)));
518 data += bytes_read;
519 break;
520 default:
521 printf (_(" UNKNOWN DW_LNE_HP_SFC opcode (%u)\n"), opc);
522 data = edata;
523 break;
524 }
525 }
526 }
527 break;
528
529 default:
530 {
531 unsigned int rlen = len - bytes_read - 1;
532
533 if (op_code >= DW_LNE_lo_user
534 /* The test against DW_LNW_hi_user is redundant due to
535 the limited range of the unsigned char data type used
536 for op_code. */
537 /*&& op_code <= DW_LNE_hi_user*/)
538 printf (_("user defined: "));
539 else
540 printf (_("UNKNOWN: "));
541 printf (_("length %d ["), rlen);
542 for (; rlen; rlen--)
543 printf (" %02x", *data++);
544 printf ("]\n");
545 }
546 break;
547 }
548
549 return len;
550 }
551
552 static const unsigned char *
553 fetch_indirect_string (dwarf_vma offset)
554 {
555 struct dwarf_section *section = &debug_displays [str].section;
556
557 if (section->start == NULL)
558 return (const unsigned char *) _("<no .debug_str section>");
559
560 /* DWARF sections under Mach-O have non-zero addresses. */
561 offset -= section->address;
562 if (offset > section->size)
563 {
564 warn (_("DW_FORM_strp offset too big: %s\n"),
565 dwarf_vmatoa ("x", offset));
566 return (const unsigned char *) _("<offset is too big>");
567 }
568
569 return (const unsigned char *) section->start + offset;
570 }
571
572 static const char *
573 fetch_indexed_string (dwarf_vma idx, struct cu_tu_set *this_set,
574 dwarf_vma offset_size, int dwo)
575 {
576 enum dwarf_section_display_enum str_sec_idx = dwo ? str_dwo : str;
577 enum dwarf_section_display_enum idx_sec_idx = dwo ? str_index_dwo : str_index;
578 struct dwarf_section *index_section = &debug_displays [idx_sec_idx].section;
579 struct dwarf_section *str_section = &debug_displays [str_sec_idx].section;
580 dwarf_vma index_offset = idx * offset_size;
581 dwarf_vma str_offset;
582
583 if (index_section->start == NULL)
584 return (dwo ? _("<no .debug_str_offsets.dwo section>")
585 : _("<no .debug_str_offsets section>"));
586
587 /* DWARF sections under Mach-O have non-zero addresses. */
588 index_offset -= index_section->address;
589 if (this_set != NULL)
590 index_offset += this_set->section_offsets [DW_SECT_STR_OFFSETS];
591 if (index_offset > index_section->size)
592 {
593 warn (_("DW_FORM_GNU_str_index offset too big: %s\n"),
594 dwarf_vmatoa ("x", index_offset));
595 return _("<index offset is too big>");
596 }
597
598 if (str_section->start == NULL)
599 return (dwo ? _("<no .debug_str.dwo section>")
600 : _("<no .debug_str section>"));
601
602 str_offset = byte_get (index_section->start + index_offset, offset_size);
603 str_offset -= str_section->address;
604 if (str_offset > str_section->size)
605 {
606 warn (_("DW_FORM_GNU_str_index indirect offset too big: %s\n"),
607 dwarf_vmatoa ("x", str_offset));
608 return _("<indirect index offset is too big>");
609 }
610
611 return (const char *) str_section->start + str_offset;
612 }
613
614 static const char *
615 fetch_indexed_value (dwarf_vma offset, dwarf_vma bytes)
616 {
617 struct dwarf_section *section = &debug_displays [debug_addr].section;
618
619 if (section->start == NULL)
620 return (_("<no .debug_addr section>"));
621
622 if (offset + bytes > section->size)
623 {
624 warn (_("Offset into section %s too big: %s\n"),
625 section->name, dwarf_vmatoa ("x", offset));
626 return "<offset too big>";
627 }
628
629 return dwarf_vmatoa ("x", byte_get (section->start + offset, bytes));
630 }
631
632
633 /* FIXME: There are better and more efficient ways to handle
634 these structures. For now though, I just want something that
635 is simple to implement. */
636 typedef struct abbrev_attr
637 {
638 unsigned long attribute;
639 unsigned long form;
640 struct abbrev_attr *next;
641 }
642 abbrev_attr;
643
644 typedef struct abbrev_entry
645 {
646 unsigned long entry;
647 unsigned long tag;
648 int children;
649 struct abbrev_attr *first_attr;
650 struct abbrev_attr *last_attr;
651 struct abbrev_entry *next;
652 }
653 abbrev_entry;
654
655 static abbrev_entry *first_abbrev = NULL;
656 static abbrev_entry *last_abbrev = NULL;
657
658 static void
659 free_abbrevs (void)
660 {
661 abbrev_entry *abbrv;
662
663 for (abbrv = first_abbrev; abbrv;)
664 {
665 abbrev_entry *next_abbrev = abbrv->next;
666 abbrev_attr *attr;
667
668 for (attr = abbrv->first_attr; attr;)
669 {
670 abbrev_attr *next_attr = attr->next;
671
672 free (attr);
673 attr = next_attr;
674 }
675
676 free (abbrv);
677 abbrv = next_abbrev;
678 }
679
680 last_abbrev = first_abbrev = NULL;
681 }
682
683 static void
684 add_abbrev (unsigned long number, unsigned long tag, int children)
685 {
686 abbrev_entry *entry;
687
688 entry = (abbrev_entry *) malloc (sizeof (*entry));
689 if (entry == NULL)
690 /* ugg */
691 return;
692
693 entry->entry = number;
694 entry->tag = tag;
695 entry->children = children;
696 entry->first_attr = NULL;
697 entry->last_attr = NULL;
698 entry->next = NULL;
699
700 if (first_abbrev == NULL)
701 first_abbrev = entry;
702 else
703 last_abbrev->next = entry;
704
705 last_abbrev = entry;
706 }
707
708 static void
709 add_abbrev_attr (unsigned long attribute, unsigned long form)
710 {
711 abbrev_attr *attr;
712
713 attr = (abbrev_attr *) malloc (sizeof (*attr));
714 if (attr == NULL)
715 /* ugg */
716 return;
717
718 attr->attribute = attribute;
719 attr->form = form;
720 attr->next = NULL;
721
722 if (last_abbrev->first_attr == NULL)
723 last_abbrev->first_attr = attr;
724 else
725 last_abbrev->last_attr->next = attr;
726
727 last_abbrev->last_attr = attr;
728 }
729
730 /* Processes the (partial) contents of a .debug_abbrev section.
731 Returns NULL if the end of the section was encountered.
732 Returns the address after the last byte read if the end of
733 an abbreviation set was found. */
734
735 static unsigned char *
736 process_abbrev_section (unsigned char *start, unsigned char *end)
737 {
738 if (first_abbrev != NULL)
739 return NULL;
740
741 while (start < end)
742 {
743 unsigned int bytes_read;
744 unsigned long entry;
745 unsigned long tag;
746 unsigned long attribute;
747 int children;
748
749 entry = read_uleb128 (start, & bytes_read, end);
750 start += bytes_read;
751
752 /* A single zero is supposed to end the section according
753 to the standard. If there's more, then signal that to
754 the caller. */
755 if (start == end)
756 return NULL;
757 if (entry == 0)
758 return start;
759
760 tag = read_uleb128 (start, & bytes_read, end);
761 start += bytes_read;
762 if (start == end)
763 return NULL;
764
765 children = *start++;
766
767 add_abbrev (entry, tag, children);
768
769 do
770 {
771 unsigned long form;
772
773 attribute = read_uleb128 (start, & bytes_read, end);
774 start += bytes_read;
775 if (start == end)
776 break;
777
778 form = read_uleb128 (start, & bytes_read, end);
779 start += bytes_read;
780 if (start == end)
781 break;
782
783 add_abbrev_attr (attribute, form);
784 }
785 while (attribute != 0);
786 }
787
788 /* Report the missing single zero which ends the section. */
789 error (_(".debug_abbrev section not zero terminated\n"));
790
791 return NULL;
792 }
793
794 static const char *
795 get_TAG_name (unsigned long tag)
796 {
797 const char *name = get_DW_TAG_name ((unsigned int)tag);
798
799 if (name == NULL)
800 {
801 static char buffer[100];
802
803 snprintf (buffer, sizeof (buffer), _("Unknown TAG value: %lx"), tag);
804 return buffer;
805 }
806
807 return name;
808 }
809
810 static const char *
811 get_FORM_name (unsigned long form)
812 {
813 const char *name;
814
815 if (form == 0)
816 return "DW_FORM value: 0";
817
818 name = get_DW_FORM_name (form);
819 if (name == NULL)
820 {
821 static char buffer[100];
822
823 snprintf (buffer, sizeof (buffer), _("Unknown FORM value: %lx"), form);
824 return buffer;
825 }
826
827 return name;
828 }
829
830 static unsigned char *
831 display_block (unsigned char *data,
832 dwarf_vma length,
833 const unsigned char * const end)
834 {
835 dwarf_vma maxlen;
836
837 printf (_(" %s byte block: "), dwarf_vmatoa ("u", length));
838
839 maxlen = (dwarf_vma) (end - data);
840 length = length > maxlen ? maxlen : length;
841
842 while (length --)
843 printf ("%lx ", (unsigned long) byte_get (data++, 1));
844
845 return data;
846 }
847
848 static int
849 decode_location_expression (unsigned char * data,
850 unsigned int pointer_size,
851 unsigned int offset_size,
852 int dwarf_version,
853 dwarf_vma length,
854 dwarf_vma cu_offset,
855 struct dwarf_section * section)
856 {
857 unsigned op;
858 unsigned int bytes_read;
859 dwarf_vma uvalue;
860 dwarf_signed_vma svalue;
861 unsigned char *end = data + length;
862 int need_frame_base = 0;
863
864 while (data < end)
865 {
866 op = *data++;
867
868 switch (op)
869 {
870 case DW_OP_addr:
871 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
872 printf ("DW_OP_addr: %s", dwarf_vmatoa ("x", uvalue));
873 break;
874 case DW_OP_deref:
875 printf ("DW_OP_deref");
876 break;
877 case DW_OP_const1u:
878 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
879 printf ("DW_OP_const1u: %lu", (unsigned long) uvalue);
880 break;
881 case DW_OP_const1s:
882 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 1, end);
883 printf ("DW_OP_const1s: %ld", (long) svalue);
884 break;
885 case DW_OP_const2u:
886 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
887 printf ("DW_OP_const2u: %lu", (unsigned long) uvalue);
888 break;
889 case DW_OP_const2s:
890 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
891 printf ("DW_OP_const2s: %ld", (long) svalue);
892 break;
893 case DW_OP_const4u:
894 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
895 printf ("DW_OP_const4u: %lu", (unsigned long) uvalue);
896 break;
897 case DW_OP_const4s:
898 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
899 printf ("DW_OP_const4s: %ld", (long) svalue);
900 break;
901 case DW_OP_const8u:
902 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
903 printf ("DW_OP_const8u: %lu ", (unsigned long) uvalue);
904 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
905 printf ("%lu", (unsigned long) uvalue);
906 break;
907 case DW_OP_const8s:
908 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
909 printf ("DW_OP_const8s: %ld ", (long) svalue);
910 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
911 printf ("%ld", (long) svalue);
912 break;
913 case DW_OP_constu:
914 printf ("DW_OP_constu: %s",
915 dwarf_vmatoa ("u", read_uleb128 (data, &bytes_read, end)));
916 data += bytes_read;
917 break;
918 case DW_OP_consts:
919 printf ("DW_OP_consts: %s",
920 dwarf_vmatoa ("d", read_sleb128 (data, &bytes_read, end)));
921 data += bytes_read;
922 break;
923 case DW_OP_dup:
924 printf ("DW_OP_dup");
925 break;
926 case DW_OP_drop:
927 printf ("DW_OP_drop");
928 break;
929 case DW_OP_over:
930 printf ("DW_OP_over");
931 break;
932 case DW_OP_pick:
933 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
934 printf ("DW_OP_pick: %ld", (unsigned long) uvalue);
935 break;
936 case DW_OP_swap:
937 printf ("DW_OP_swap");
938 break;
939 case DW_OP_rot:
940 printf ("DW_OP_rot");
941 break;
942 case DW_OP_xderef:
943 printf ("DW_OP_xderef");
944 break;
945 case DW_OP_abs:
946 printf ("DW_OP_abs");
947 break;
948 case DW_OP_and:
949 printf ("DW_OP_and");
950 break;
951 case DW_OP_div:
952 printf ("DW_OP_div");
953 break;
954 case DW_OP_minus:
955 printf ("DW_OP_minus");
956 break;
957 case DW_OP_mod:
958 printf ("DW_OP_mod");
959 break;
960 case DW_OP_mul:
961 printf ("DW_OP_mul");
962 break;
963 case DW_OP_neg:
964 printf ("DW_OP_neg");
965 break;
966 case DW_OP_not:
967 printf ("DW_OP_not");
968 break;
969 case DW_OP_or:
970 printf ("DW_OP_or");
971 break;
972 case DW_OP_plus:
973 printf ("DW_OP_plus");
974 break;
975 case DW_OP_plus_uconst:
976 printf ("DW_OP_plus_uconst: %s",
977 dwarf_vmatoa ("u", read_uleb128 (data, &bytes_read, end)));
978 data += bytes_read;
979 break;
980 case DW_OP_shl:
981 printf ("DW_OP_shl");
982 break;
983 case DW_OP_shr:
984 printf ("DW_OP_shr");
985 break;
986 case DW_OP_shra:
987 printf ("DW_OP_shra");
988 break;
989 case DW_OP_xor:
990 printf ("DW_OP_xor");
991 break;
992 case DW_OP_bra:
993 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
994 printf ("DW_OP_bra: %ld", (long) svalue);
995 break;
996 case DW_OP_eq:
997 printf ("DW_OP_eq");
998 break;
999 case DW_OP_ge:
1000 printf ("DW_OP_ge");
1001 break;
1002 case DW_OP_gt:
1003 printf ("DW_OP_gt");
1004 break;
1005 case DW_OP_le:
1006 printf ("DW_OP_le");
1007 break;
1008 case DW_OP_lt:
1009 printf ("DW_OP_lt");
1010 break;
1011 case DW_OP_ne:
1012 printf ("DW_OP_ne");
1013 break;
1014 case DW_OP_skip:
1015 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1016 printf ("DW_OP_skip: %ld", (long) svalue);
1017 break;
1018
1019 case DW_OP_lit0:
1020 case DW_OP_lit1:
1021 case DW_OP_lit2:
1022 case DW_OP_lit3:
1023 case DW_OP_lit4:
1024 case DW_OP_lit5:
1025 case DW_OP_lit6:
1026 case DW_OP_lit7:
1027 case DW_OP_lit8:
1028 case DW_OP_lit9:
1029 case DW_OP_lit10:
1030 case DW_OP_lit11:
1031 case DW_OP_lit12:
1032 case DW_OP_lit13:
1033 case DW_OP_lit14:
1034 case DW_OP_lit15:
1035 case DW_OP_lit16:
1036 case DW_OP_lit17:
1037 case DW_OP_lit18:
1038 case DW_OP_lit19:
1039 case DW_OP_lit20:
1040 case DW_OP_lit21:
1041 case DW_OP_lit22:
1042 case DW_OP_lit23:
1043 case DW_OP_lit24:
1044 case DW_OP_lit25:
1045 case DW_OP_lit26:
1046 case DW_OP_lit27:
1047 case DW_OP_lit28:
1048 case DW_OP_lit29:
1049 case DW_OP_lit30:
1050 case DW_OP_lit31:
1051 printf ("DW_OP_lit%d", op - DW_OP_lit0);
1052 break;
1053
1054 case DW_OP_reg0:
1055 case DW_OP_reg1:
1056 case DW_OP_reg2:
1057 case DW_OP_reg3:
1058 case DW_OP_reg4:
1059 case DW_OP_reg5:
1060 case DW_OP_reg6:
1061 case DW_OP_reg7:
1062 case DW_OP_reg8:
1063 case DW_OP_reg9:
1064 case DW_OP_reg10:
1065 case DW_OP_reg11:
1066 case DW_OP_reg12:
1067 case DW_OP_reg13:
1068 case DW_OP_reg14:
1069 case DW_OP_reg15:
1070 case DW_OP_reg16:
1071 case DW_OP_reg17:
1072 case DW_OP_reg18:
1073 case DW_OP_reg19:
1074 case DW_OP_reg20:
1075 case DW_OP_reg21:
1076 case DW_OP_reg22:
1077 case DW_OP_reg23:
1078 case DW_OP_reg24:
1079 case DW_OP_reg25:
1080 case DW_OP_reg26:
1081 case DW_OP_reg27:
1082 case DW_OP_reg28:
1083 case DW_OP_reg29:
1084 case DW_OP_reg30:
1085 case DW_OP_reg31:
1086 printf ("DW_OP_reg%d (%s)", op - DW_OP_reg0,
1087 regname (op - DW_OP_reg0, 1));
1088 break;
1089
1090 case DW_OP_breg0:
1091 case DW_OP_breg1:
1092 case DW_OP_breg2:
1093 case DW_OP_breg3:
1094 case DW_OP_breg4:
1095 case DW_OP_breg5:
1096 case DW_OP_breg6:
1097 case DW_OP_breg7:
1098 case DW_OP_breg8:
1099 case DW_OP_breg9:
1100 case DW_OP_breg10:
1101 case DW_OP_breg11:
1102 case DW_OP_breg12:
1103 case DW_OP_breg13:
1104 case DW_OP_breg14:
1105 case DW_OP_breg15:
1106 case DW_OP_breg16:
1107 case DW_OP_breg17:
1108 case DW_OP_breg18:
1109 case DW_OP_breg19:
1110 case DW_OP_breg20:
1111 case DW_OP_breg21:
1112 case DW_OP_breg22:
1113 case DW_OP_breg23:
1114 case DW_OP_breg24:
1115 case DW_OP_breg25:
1116 case DW_OP_breg26:
1117 case DW_OP_breg27:
1118 case DW_OP_breg28:
1119 case DW_OP_breg29:
1120 case DW_OP_breg30:
1121 case DW_OP_breg31:
1122 printf ("DW_OP_breg%d (%s): %s",
1123 op - DW_OP_breg0,
1124 regname (op - DW_OP_breg0, 1),
1125 dwarf_vmatoa ("d", read_sleb128 (data, &bytes_read, end)));
1126 data += bytes_read;
1127 break;
1128
1129 case DW_OP_regx:
1130 uvalue = read_uleb128 (data, &bytes_read, end);
1131 data += bytes_read;
1132 printf ("DW_OP_regx: %s (%s)",
1133 dwarf_vmatoa ("u", uvalue), regname (uvalue, 1));
1134 break;
1135 case DW_OP_fbreg:
1136 need_frame_base = 1;
1137 printf ("DW_OP_fbreg: %s",
1138 dwarf_vmatoa ("d", read_sleb128 (data, &bytes_read, end)));
1139 data += bytes_read;
1140 break;
1141 case DW_OP_bregx:
1142 uvalue = read_uleb128 (data, &bytes_read, end);
1143 data += bytes_read;
1144 printf ("DW_OP_bregx: %s (%s) %s",
1145 dwarf_vmatoa ("u", uvalue), regname (uvalue, 1),
1146 dwarf_vmatoa ("d", read_sleb128 (data, &bytes_read, end)));
1147 data += bytes_read;
1148 break;
1149 case DW_OP_piece:
1150 printf ("DW_OP_piece: %s",
1151 dwarf_vmatoa ("u", read_uleb128 (data, &bytes_read, end)));
1152 data += bytes_read;
1153 break;
1154 case DW_OP_deref_size:
1155 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1156 printf ("DW_OP_deref_size: %ld", (long) uvalue);
1157 break;
1158 case DW_OP_xderef_size:
1159 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1160 printf ("DW_OP_xderef_size: %ld", (long) uvalue);
1161 break;
1162 case DW_OP_nop:
1163 printf ("DW_OP_nop");
1164 break;
1165
1166 /* DWARF 3 extensions. */
1167 case DW_OP_push_object_address:
1168 printf ("DW_OP_push_object_address");
1169 break;
1170 case DW_OP_call2:
1171 /* XXX: Strictly speaking for 64-bit DWARF3 files
1172 this ought to be an 8-byte wide computation. */
1173 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 2, end);
1174 printf ("DW_OP_call2: <0x%s>",
1175 dwarf_vmatoa ("x", svalue + cu_offset));
1176 break;
1177 case DW_OP_call4:
1178 /* XXX: Strictly speaking for 64-bit DWARF3 files
1179 this ought to be an 8-byte wide computation. */
1180 SAFE_SIGNED_BYTE_GET_AND_INC (svalue, data, 4, end);
1181 printf ("DW_OP_call4: <0x%s>",
1182 dwarf_vmatoa ("x", svalue + cu_offset));
1183 break;
1184 case DW_OP_call_ref:
1185 /* XXX: Strictly speaking for 64-bit DWARF3 files
1186 this ought to be an 8-byte wide computation. */
1187 if (dwarf_version == -1)
1188 {
1189 printf (_("(DW_OP_call_ref in frame info)"));
1190 /* No way to tell where the next op is, so just bail. */
1191 return need_frame_base;
1192 }
1193 if (dwarf_version == 2)
1194 {
1195 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1196 }
1197 else
1198 {
1199 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1200 }
1201 printf ("DW_OP_call_ref: <0x%s>", dwarf_vmatoa ("x", uvalue));
1202 break;
1203 case DW_OP_form_tls_address:
1204 printf ("DW_OP_form_tls_address");
1205 break;
1206 case DW_OP_call_frame_cfa:
1207 printf ("DW_OP_call_frame_cfa");
1208 break;
1209 case DW_OP_bit_piece:
1210 printf ("DW_OP_bit_piece: ");
1211 printf (_("size: %s "),
1212 dwarf_vmatoa ("u", read_uleb128 (data, &bytes_read, end)));
1213 data += bytes_read;
1214 printf (_("offset: %s "),
1215 dwarf_vmatoa ("u", read_uleb128 (data, &bytes_read, end)));
1216 data += bytes_read;
1217 break;
1218
1219 /* DWARF 4 extensions. */
1220 case DW_OP_stack_value:
1221 printf ("DW_OP_stack_value");
1222 break;
1223
1224 case DW_OP_implicit_value:
1225 printf ("DW_OP_implicit_value");
1226 uvalue = read_uleb128 (data, &bytes_read, end);
1227 data += bytes_read;
1228 display_block (data, uvalue, end);
1229 data += uvalue;
1230 break;
1231
1232 /* GNU extensions. */
1233 case DW_OP_GNU_push_tls_address:
1234 printf (_("DW_OP_GNU_push_tls_address or DW_OP_HP_unknown"));
1235 break;
1236 case DW_OP_GNU_uninit:
1237 printf ("DW_OP_GNU_uninit");
1238 /* FIXME: Is there data associated with this OP ? */
1239 break;
1240 case DW_OP_GNU_encoded_addr:
1241 {
1242 int encoding;
1243 dwarf_vma addr;
1244
1245 encoding = *data++;
1246 addr = get_encoded_value (data, encoding, section);
1247 data += size_of_encoded_value (encoding);
1248
1249 printf ("DW_OP_GNU_encoded_addr: fmt:%02x addr:", encoding);
1250 print_dwarf_vma (addr, pointer_size);
1251 }
1252 break;
1253 case DW_OP_GNU_implicit_pointer:
1254 /* XXX: Strictly speaking for 64-bit DWARF3 files
1255 this ought to be an 8-byte wide computation. */
1256 if (dwarf_version == -1)
1257 {
1258 printf (_("(DW_OP_GNU_implicit_pointer in frame info)"));
1259 /* No way to tell where the next op is, so just bail. */
1260 return need_frame_base;
1261 }
1262 if (dwarf_version == 2)
1263 {
1264 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1265 }
1266 else
1267 {
1268 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1269 }
1270 printf ("DW_OP_GNU_implicit_pointer: <0x%s> %s",
1271 dwarf_vmatoa ("x", uvalue),
1272 dwarf_vmatoa ("d", read_sleb128 (data,
1273 &bytes_read, end)));
1274 data += bytes_read;
1275 break;
1276 case DW_OP_GNU_entry_value:
1277 uvalue = read_uleb128 (data, &bytes_read, end);
1278 data += bytes_read;
1279 printf ("DW_OP_GNU_entry_value: (");
1280 if (decode_location_expression (data, pointer_size, offset_size,
1281 dwarf_version, uvalue,
1282 cu_offset, section))
1283 need_frame_base = 1;
1284 putchar (')');
1285 data += uvalue;
1286 break;
1287 case DW_OP_GNU_const_type:
1288 uvalue = read_uleb128 (data, &bytes_read, end);
1289 data += bytes_read;
1290 printf ("DW_OP_GNU_const_type: <0x%s> ",
1291 dwarf_vmatoa ("x", cu_offset + uvalue));
1292 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1293 display_block (data, uvalue, end);
1294 data += uvalue;
1295 break;
1296 case DW_OP_GNU_regval_type:
1297 uvalue = read_uleb128 (data, &bytes_read, end);
1298 data += bytes_read;
1299 printf ("DW_OP_GNU_regval_type: %s (%s)",
1300 dwarf_vmatoa ("u", uvalue), regname (uvalue, 1));
1301 uvalue = read_uleb128 (data, &bytes_read, end);
1302 data += bytes_read;
1303 printf (" <0x%s>", dwarf_vmatoa ("x", cu_offset + uvalue));
1304 break;
1305 case DW_OP_GNU_deref_type:
1306 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1307 printf ("DW_OP_GNU_deref_type: %ld", (long) uvalue);
1308 uvalue = read_uleb128 (data, &bytes_read, end);
1309 data += bytes_read;
1310 printf (" <0x%s>", dwarf_vmatoa ("x", cu_offset + uvalue));
1311 break;
1312 case DW_OP_GNU_convert:
1313 uvalue = read_uleb128 (data, &bytes_read, end);
1314 data += bytes_read;
1315 printf ("DW_OP_GNU_convert <0x%s>",
1316 dwarf_vmatoa ("x", uvalue ? cu_offset + uvalue : 0));
1317 break;
1318 case DW_OP_GNU_reinterpret:
1319 uvalue = read_uleb128 (data, &bytes_read, end);
1320 data += bytes_read;
1321 printf ("DW_OP_GNU_reinterpret <0x%s>",
1322 dwarf_vmatoa ("x", uvalue ? cu_offset + uvalue : 0));
1323 break;
1324 case DW_OP_GNU_parameter_ref:
1325 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
1326 printf ("DW_OP_GNU_parameter_ref: <0x%s>",
1327 dwarf_vmatoa ("x", cu_offset + uvalue));
1328 break;
1329 case DW_OP_GNU_addr_index:
1330 uvalue = read_uleb128 (data, &bytes_read, end);
1331 data += bytes_read;
1332 printf ("DW_OP_GNU_addr_index <0x%s>", dwarf_vmatoa ("x", uvalue));
1333 break;
1334 case DW_OP_GNU_const_index:
1335 uvalue = read_uleb128 (data, &bytes_read, end);
1336 data += bytes_read;
1337 printf ("DW_OP_GNU_const_index <0x%s>", dwarf_vmatoa ("x", uvalue));
1338 break;
1339
1340 /* HP extensions. */
1341 case DW_OP_HP_is_value:
1342 printf ("DW_OP_HP_is_value");
1343 /* FIXME: Is there data associated with this OP ? */
1344 break;
1345 case DW_OP_HP_fltconst4:
1346 printf ("DW_OP_HP_fltconst4");
1347 /* FIXME: Is there data associated with this OP ? */
1348 break;
1349 case DW_OP_HP_fltconst8:
1350 printf ("DW_OP_HP_fltconst8");
1351 /* FIXME: Is there data associated with this OP ? */
1352 break;
1353 case DW_OP_HP_mod_range:
1354 printf ("DW_OP_HP_mod_range");
1355 /* FIXME: Is there data associated with this OP ? */
1356 break;
1357 case DW_OP_HP_unmod_range:
1358 printf ("DW_OP_HP_unmod_range");
1359 /* FIXME: Is there data associated with this OP ? */
1360 break;
1361 case DW_OP_HP_tls:
1362 printf ("DW_OP_HP_tls");
1363 /* FIXME: Is there data associated with this OP ? */
1364 break;
1365
1366 /* PGI (STMicroelectronics) extensions. */
1367 case DW_OP_PGI_omp_thread_num:
1368 /* Pushes the thread number for the current thread as it would be
1369 returned by the standard OpenMP library function:
1370 omp_get_thread_num(). The "current thread" is the thread for
1371 which the expression is being evaluated. */
1372 printf ("DW_OP_PGI_omp_thread_num");
1373 break;
1374
1375 default:
1376 if (op >= DW_OP_lo_user
1377 && op <= DW_OP_hi_user)
1378 printf (_("(User defined location op)"));
1379 else
1380 printf (_("(Unknown location op)"));
1381 /* No way to tell where the next op is, so just bail. */
1382 return need_frame_base;
1383 }
1384
1385 /* Separate the ops. */
1386 if (data < end)
1387 printf ("; ");
1388 }
1389
1390 return need_frame_base;
1391 }
1392
1393 /* Find the CU or TU set corresponding to the given CU_OFFSET.
1394 This is used for DWARF package files. */
1395
1396 static struct cu_tu_set *
1397 find_cu_tu_set_v2 (dwarf_vma cu_offset, int do_types)
1398 {
1399 struct cu_tu_set *p;
1400 unsigned int nsets;
1401 unsigned int dw_sect;
1402
1403 if (do_types)
1404 {
1405 p = tu_sets;
1406 nsets = tu_count;
1407 dw_sect = DW_SECT_TYPES;
1408 }
1409 else
1410 {
1411 p = cu_sets;
1412 nsets = cu_count;
1413 dw_sect = DW_SECT_INFO;
1414 }
1415 while (nsets > 0)
1416 {
1417 if (p->section_offsets [dw_sect] == cu_offset)
1418 return p;
1419 p++;
1420 nsets--;
1421 }
1422 return NULL;
1423 }
1424
1425 static unsigned char *
1426 read_and_display_attr_value (unsigned long attribute,
1427 unsigned long form,
1428 unsigned char * data,
1429 unsigned char * end,
1430 dwarf_vma cu_offset,
1431 dwarf_vma pointer_size,
1432 dwarf_vma offset_size,
1433 int dwarf_version,
1434 debug_info * debug_info_p,
1435 int do_loc,
1436 struct dwarf_section * section,
1437 struct cu_tu_set * this_set)
1438 {
1439 dwarf_vma uvalue = 0;
1440 unsigned char *block_start = NULL;
1441 unsigned char * orig_data = data;
1442 unsigned int bytes_read;
1443
1444 if (data == end)
1445 {
1446 warn (_("corrupt attribute\n"));
1447 return data;
1448 }
1449
1450 switch (form)
1451 {
1452 default:
1453 break;
1454
1455 case DW_FORM_ref_addr:
1456 if (dwarf_version == 2)
1457 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1458 else if (dwarf_version == 3 || dwarf_version == 4)
1459 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1460 else
1461 error (_("Internal error: DWARF version is not 2, 3 or 4.\n"));
1462
1463 break;
1464
1465 case DW_FORM_addr:
1466 SAFE_BYTE_GET_AND_INC (uvalue, data, pointer_size, end);
1467 break;
1468
1469 case DW_FORM_strp:
1470 case DW_FORM_sec_offset:
1471 case DW_FORM_GNU_ref_alt:
1472 case DW_FORM_GNU_strp_alt:
1473 SAFE_BYTE_GET_AND_INC (uvalue, data, offset_size, end);
1474 break;
1475
1476 case DW_FORM_flag_present:
1477 uvalue = 1;
1478 break;
1479
1480 case DW_FORM_ref1:
1481 case DW_FORM_flag:
1482 case DW_FORM_data1:
1483 SAFE_BYTE_GET_AND_INC (uvalue, data, 1, end);
1484 break;
1485
1486 case DW_FORM_ref2:
1487 case DW_FORM_data2:
1488 SAFE_BYTE_GET_AND_INC (uvalue, data, 2, end);
1489 break;
1490
1491 case DW_FORM_ref4:
1492 case DW_FORM_data4:
1493 SAFE_BYTE_GET_AND_INC (uvalue, data, 4, end);
1494 break;
1495
1496 case DW_FORM_sdata:
1497 uvalue = read_sleb128 (data, & bytes_read, end);
1498 data += bytes_read;
1499 break;
1500
1501 case DW_FORM_GNU_str_index:
1502 uvalue = read_uleb128 (data, & bytes_read, end);
1503 data += bytes_read;
1504 break;
1505
1506 case DW_FORM_ref_udata:
1507 case DW_FORM_udata:
1508 uvalue = read_uleb128 (data, & bytes_read, end);
1509 data += bytes_read;
1510 break;
1511
1512 case DW_FORM_indirect:
1513 form = read_uleb128 (data, & bytes_read, end);
1514 data += bytes_read;
1515 if (!do_loc)
1516 printf (" %s", get_FORM_name (form));
1517 return read_and_display_attr_value (attribute, form, data, end,
1518 cu_offset, pointer_size,
1519 offset_size, dwarf_version,
1520 debug_info_p, do_loc,
1521 section, this_set);
1522 case DW_FORM_GNU_addr_index:
1523 uvalue = read_uleb128 (data, & bytes_read, end);
1524 data += bytes_read;
1525 break;
1526 }
1527
1528 switch (form)
1529 {
1530 case DW_FORM_ref_addr:
1531 if (!do_loc)
1532 printf (" <0x%s>", dwarf_vmatoa ("x",uvalue));
1533 break;
1534
1535 case DW_FORM_GNU_ref_alt:
1536 if (!do_loc)
1537 printf (" <alt 0x%s>", dwarf_vmatoa ("x",uvalue));
1538 break;
1539
1540 case DW_FORM_ref1:
1541 case DW_FORM_ref2:
1542 case DW_FORM_ref4:
1543 case DW_FORM_ref_udata:
1544 if (!do_loc)
1545 printf (" <0x%s>", dwarf_vmatoa ("x", uvalue + cu_offset));
1546 break;
1547
1548 case DW_FORM_data4:
1549 case DW_FORM_addr:
1550 case DW_FORM_sec_offset:
1551 if (!do_loc)
1552 printf (" 0x%s", dwarf_vmatoa ("x", uvalue));
1553 break;
1554
1555 case DW_FORM_flag_present:
1556 case DW_FORM_flag:
1557 case DW_FORM_data1:
1558 case DW_FORM_data2:
1559 case DW_FORM_sdata:
1560 case DW_FORM_udata:
1561 if (!do_loc)
1562 printf (" %s", dwarf_vmatoa ("d", uvalue));
1563 break;
1564
1565 case DW_FORM_ref8:
1566 case DW_FORM_data8:
1567 if (!do_loc)
1568 {
1569 dwarf_vma high_bits;
1570 char buf[64];
1571
1572 SAFE_BYTE_GET64 (data, &high_bits, &uvalue, end);
1573
1574 printf (" 0x%s",
1575 dwarf_vmatoa64 (high_bits, uvalue, buf, sizeof (buf)));
1576 }
1577
1578 if ((do_loc || do_debug_loc || do_debug_ranges)
1579 && num_debug_info_entries == 0)
1580 {
1581 if (sizeof (uvalue) == 8)
1582 SAFE_BYTE_GET (uvalue, data, 8, end);
1583 else
1584 error (_("DW_FORM_data8 is unsupported when sizeof (dwarf_vma) != 8\n"));
1585 }
1586
1587 data += 8;
1588 break;
1589
1590 case DW_FORM_string:
1591 if (!do_loc)
1592 printf (" %.*s", (int) (end - data), data);
1593 data += strnlen ((char *) data, end - data) + 1;
1594 break;
1595
1596 case DW_FORM_block:
1597 case DW_FORM_exprloc:
1598 uvalue = read_uleb128 (data, & bytes_read, end);
1599 block_start = data + bytes_read;
1600 if (do_loc)
1601 data = block_start + uvalue;
1602 else
1603 data = display_block (block_start, uvalue, end);
1604 break;
1605
1606 case DW_FORM_block1:
1607 SAFE_BYTE_GET (uvalue, data, 1, end);
1608 block_start = data + 1;
1609 if (do_loc)
1610 data = block_start + uvalue;
1611 else
1612 data = display_block (block_start, uvalue, end);
1613 break;
1614
1615 case DW_FORM_block2:
1616 SAFE_BYTE_GET (uvalue, data, 2, end);
1617 block_start = data + 2;
1618 if (do_loc)
1619 data = block_start + uvalue;
1620 else
1621 data = display_block (block_start, uvalue, end);
1622 break;
1623
1624 case DW_FORM_block4:
1625 SAFE_BYTE_GET (uvalue, data, 4, end);
1626 block_start = data + 4;
1627 if (do_loc)
1628 data = block_start + uvalue;
1629 else
1630 data = display_block (block_start, uvalue, end);
1631 break;
1632
1633 case DW_FORM_strp:
1634 if (!do_loc)
1635 printf (_(" (indirect string, offset: 0x%s): %s"),
1636 dwarf_vmatoa ("x", uvalue),
1637 fetch_indirect_string (uvalue));
1638 break;
1639
1640 case DW_FORM_GNU_str_index:
1641 if (!do_loc)
1642 {
1643 const char *suffix = strrchr (section->name, '.');
1644 int dwo = (suffix && strcmp (suffix, ".dwo") == 0) ? 1 : 0;
1645
1646 printf (_(" (indexed string: 0x%s): %s"),
1647 dwarf_vmatoa ("x", uvalue),
1648 fetch_indexed_string (uvalue, this_set, offset_size, dwo));
1649 }
1650 break;
1651
1652 case DW_FORM_GNU_strp_alt:
1653 if (!do_loc)
1654 printf (_(" (alt indirect string, offset: 0x%s)"),
1655 dwarf_vmatoa ("x", uvalue));
1656 break;
1657
1658 case DW_FORM_indirect:
1659 /* Handled above. */
1660 break;
1661
1662 case DW_FORM_ref_sig8:
1663 if (!do_loc)
1664 {
1665 dwarf_vma high_bits;
1666 char buf[64];
1667
1668 SAFE_BYTE_GET64 (data, &high_bits, &uvalue, end);
1669 printf (" signature: 0x%s",
1670 dwarf_vmatoa64 (high_bits, uvalue, buf, sizeof (buf)));
1671 }
1672 data += 8;
1673 break;
1674
1675 case DW_FORM_GNU_addr_index:
1676 if (!do_loc)
1677 printf (_(" (addr_index: 0x%s): %s"),
1678 dwarf_vmatoa ("x", uvalue),
1679 fetch_indexed_value (uvalue * pointer_size, pointer_size));
1680 break;
1681
1682 default:
1683 warn (_("Unrecognized form: %lu\n"), form);
1684 break;
1685 }
1686
1687 if ((do_loc || do_debug_loc || do_debug_ranges)
1688 && num_debug_info_entries == 0
1689 && debug_info_p != NULL)
1690 {
1691 switch (attribute)
1692 {
1693 case DW_AT_frame_base:
1694 have_frame_base = 1;
1695 case DW_AT_location:
1696 case DW_AT_string_length:
1697 case DW_AT_return_addr:
1698 case DW_AT_data_member_location:
1699 case DW_AT_vtable_elem_location:
1700 case DW_AT_segment:
1701 case DW_AT_static_link:
1702 case DW_AT_use_location:
1703 case DW_AT_GNU_call_site_value:
1704 case DW_AT_GNU_call_site_data_value:
1705 case DW_AT_GNU_call_site_target:
1706 case DW_AT_GNU_call_site_target_clobbered:
1707 if ((dwarf_version < 4
1708 && (form == DW_FORM_data4 || form == DW_FORM_data8))
1709 || form == DW_FORM_sec_offset)
1710 {
1711 /* Process location list. */
1712 unsigned int lmax = debug_info_p->max_loc_offsets;
1713 unsigned int num = debug_info_p->num_loc_offsets;
1714
1715 if (lmax == 0 || num >= lmax)
1716 {
1717 lmax += 1024;
1718 debug_info_p->loc_offsets = (dwarf_vma *)
1719 xcrealloc (debug_info_p->loc_offsets,
1720 lmax, sizeof (*debug_info_p->loc_offsets));
1721 debug_info_p->have_frame_base = (int *)
1722 xcrealloc (debug_info_p->have_frame_base,
1723 lmax, sizeof (*debug_info_p->have_frame_base));
1724 debug_info_p->max_loc_offsets = lmax;
1725 }
1726 if (this_set != NULL)
1727 uvalue += this_set->section_offsets [DW_SECT_LOC];
1728 debug_info_p->loc_offsets [num] = uvalue;
1729 debug_info_p->have_frame_base [num] = have_frame_base;
1730 debug_info_p->num_loc_offsets++;
1731 }
1732 break;
1733
1734 case DW_AT_low_pc:
1735 if (need_base_address)
1736 debug_info_p->base_address = uvalue;
1737 break;
1738
1739 case DW_AT_GNU_addr_base:
1740 debug_info_p->addr_base = uvalue;
1741 break;
1742
1743 case DW_AT_GNU_ranges_base:
1744 debug_info_p->ranges_base = uvalue;
1745 break;
1746
1747 case DW_AT_ranges:
1748 if ((dwarf_version < 4
1749 && (form == DW_FORM_data4 || form == DW_FORM_data8))
1750 || form == DW_FORM_sec_offset)
1751 {
1752 /* Process range list. */
1753 unsigned int lmax = debug_info_p->max_range_lists;
1754 unsigned int num = debug_info_p->num_range_lists;
1755
1756 if (lmax == 0 || num >= lmax)
1757 {
1758 lmax += 1024;
1759 debug_info_p->range_lists = (dwarf_vma *)
1760 xcrealloc (debug_info_p->range_lists,
1761 lmax, sizeof (*debug_info_p->range_lists));
1762 debug_info_p->max_range_lists = lmax;
1763 }
1764 debug_info_p->range_lists [num] = uvalue;
1765 debug_info_p->num_range_lists++;
1766 }
1767 break;
1768
1769 default:
1770 break;
1771 }
1772 }
1773
1774 if (do_loc || attribute == 0)
1775 return data;
1776
1777 /* For some attributes we can display further information. */
1778 printf ("\t");
1779
1780 switch (attribute)
1781 {
1782 case DW_AT_inline:
1783 switch (uvalue)
1784 {
1785 case DW_INL_not_inlined:
1786 printf (_("(not inlined)"));
1787 break;
1788 case DW_INL_inlined:
1789 printf (_("(inlined)"));
1790 break;
1791 case DW_INL_declared_not_inlined:
1792 printf (_("(declared as inline but ignored)"));
1793 break;
1794 case DW_INL_declared_inlined:
1795 printf (_("(declared as inline and inlined)"));
1796 break;
1797 default:
1798 printf (_(" (Unknown inline attribute value: %s)"),
1799 dwarf_vmatoa ("x", uvalue));
1800 break;
1801 }
1802 break;
1803
1804 case DW_AT_language:
1805 switch (uvalue)
1806 {
1807 /* Ordered by the numeric value of these constants. */
1808 case DW_LANG_C89: printf ("(ANSI C)"); break;
1809 case DW_LANG_C: printf ("(non-ANSI C)"); break;
1810 case DW_LANG_Ada83: printf ("(Ada)"); break;
1811 case DW_LANG_C_plus_plus: printf ("(C++)"); break;
1812 case DW_LANG_Cobol74: printf ("(Cobol 74)"); break;
1813 case DW_LANG_Cobol85: printf ("(Cobol 85)"); break;
1814 case DW_LANG_Fortran77: printf ("(FORTRAN 77)"); break;
1815 case DW_LANG_Fortran90: printf ("(Fortran 90)"); break;
1816 case DW_LANG_Pascal83: printf ("(ANSI Pascal)"); break;
1817 case DW_LANG_Modula2: printf ("(Modula 2)"); break;
1818 /* DWARF 2.1 values. */
1819 case DW_LANG_Java: printf ("(Java)"); break;
1820 case DW_LANG_C99: printf ("(ANSI C99)"); break;
1821 case DW_LANG_Ada95: printf ("(ADA 95)"); break;
1822 case DW_LANG_Fortran95: printf ("(Fortran 95)"); break;
1823 /* DWARF 3 values. */
1824 case DW_LANG_PLI: printf ("(PLI)"); break;
1825 case DW_LANG_ObjC: printf ("(Objective C)"); break;
1826 case DW_LANG_ObjC_plus_plus: printf ("(Objective C++)"); break;
1827 case DW_LANG_UPC: printf ("(Unified Parallel C)"); break;
1828 case DW_LANG_D: printf ("(D)"); break;
1829 /* DWARF 4 values. */
1830 case DW_LANG_Python: printf ("(Python)"); break;
1831 /* DWARF 5 values. */
1832 case DW_LANG_Go: printf ("(Go)"); break;
1833 /* MIPS extension. */
1834 case DW_LANG_Mips_Assembler: printf ("(MIPS assembler)"); break;
1835 /* UPC extension. */
1836 case DW_LANG_Upc: printf ("(Unified Parallel C)"); break;
1837 default:
1838 if (uvalue >= DW_LANG_lo_user && uvalue <= DW_LANG_hi_user)
1839 printf (_("(implementation defined: %s)"),
1840 dwarf_vmatoa ("x", uvalue));
1841 else
1842 printf (_("(Unknown: %s)"), dwarf_vmatoa ("x", uvalue));
1843 break;
1844 }
1845 break;
1846
1847 case DW_AT_encoding:
1848 switch (uvalue)
1849 {
1850 case DW_ATE_void: printf ("(void)"); break;
1851 case DW_ATE_address: printf ("(machine address)"); break;
1852 case DW_ATE_boolean: printf ("(boolean)"); break;
1853 case DW_ATE_complex_float: printf ("(complex float)"); break;
1854 case DW_ATE_float: printf ("(float)"); break;
1855 case DW_ATE_signed: printf ("(signed)"); break;
1856 case DW_ATE_signed_char: printf ("(signed char)"); break;
1857 case DW_ATE_unsigned: printf ("(unsigned)"); break;
1858 case DW_ATE_unsigned_char: printf ("(unsigned char)"); break;
1859 /* DWARF 2.1 values: */
1860 case DW_ATE_imaginary_float: printf ("(imaginary float)"); break;
1861 case DW_ATE_decimal_float: printf ("(decimal float)"); break;
1862 /* DWARF 3 values: */
1863 case DW_ATE_packed_decimal: printf ("(packed_decimal)"); break;
1864 case DW_ATE_numeric_string: printf ("(numeric_string)"); break;
1865 case DW_ATE_edited: printf ("(edited)"); break;
1866 case DW_ATE_signed_fixed: printf ("(signed_fixed)"); break;
1867 case DW_ATE_unsigned_fixed: printf ("(unsigned_fixed)"); break;
1868 /* HP extensions: */
1869 case DW_ATE_HP_float80: printf ("(HP_float80)"); break;
1870 case DW_ATE_HP_complex_float80: printf ("(HP_complex_float80)"); break;
1871 case DW_ATE_HP_float128: printf ("(HP_float128)"); break;
1872 case DW_ATE_HP_complex_float128:printf ("(HP_complex_float128)"); break;
1873 case DW_ATE_HP_floathpintel: printf ("(HP_floathpintel)"); break;
1874 case DW_ATE_HP_imaginary_float80: printf ("(HP_imaginary_float80)"); break;
1875 case DW_ATE_HP_imaginary_float128: printf ("(HP_imaginary_float128)"); break;
1876
1877 default:
1878 if (uvalue >= DW_ATE_lo_user
1879 && uvalue <= DW_ATE_hi_user)
1880 printf (_("(user defined type)"));
1881 else
1882 printf (_("(unknown type)"));
1883 break;
1884 }
1885 break;
1886
1887 case DW_AT_accessibility:
1888 switch (uvalue)
1889 {
1890 case DW_ACCESS_public: printf ("(public)"); break;
1891 case DW_ACCESS_protected: printf ("(protected)"); break;
1892 case DW_ACCESS_private: printf ("(private)"); break;
1893 default:
1894 printf (_("(unknown accessibility)"));
1895 break;
1896 }
1897 break;
1898
1899 case DW_AT_visibility:
1900 switch (uvalue)
1901 {
1902 case DW_VIS_local: printf ("(local)"); break;
1903 case DW_VIS_exported: printf ("(exported)"); break;
1904 case DW_VIS_qualified: printf ("(qualified)"); break;
1905 default: printf (_("(unknown visibility)")); break;
1906 }
1907 break;
1908
1909 case DW_AT_virtuality:
1910 switch (uvalue)
1911 {
1912 case DW_VIRTUALITY_none: printf ("(none)"); break;
1913 case DW_VIRTUALITY_virtual: printf ("(virtual)"); break;
1914 case DW_VIRTUALITY_pure_virtual:printf ("(pure_virtual)"); break;
1915 default: printf (_("(unknown virtuality)")); break;
1916 }
1917 break;
1918
1919 case DW_AT_identifier_case:
1920 switch (uvalue)
1921 {
1922 case DW_ID_case_sensitive: printf ("(case_sensitive)"); break;
1923 case DW_ID_up_case: printf ("(up_case)"); break;
1924 case DW_ID_down_case: printf ("(down_case)"); break;
1925 case DW_ID_case_insensitive: printf ("(case_insensitive)"); break;
1926 default: printf (_("(unknown case)")); break;
1927 }
1928 break;
1929
1930 case DW_AT_calling_convention:
1931 switch (uvalue)
1932 {
1933 case DW_CC_normal: printf ("(normal)"); break;
1934 case DW_CC_program: printf ("(program)"); break;
1935 case DW_CC_nocall: printf ("(nocall)"); break;
1936 default:
1937 if (uvalue >= DW_CC_lo_user
1938 && uvalue <= DW_CC_hi_user)
1939 printf (_("(user defined)"));
1940 else
1941 printf (_("(unknown convention)"));
1942 }
1943 break;
1944
1945 case DW_AT_ordering:
1946 switch (uvalue)
1947 {
1948 case -1: printf (_("(undefined)")); break;
1949 case 0: printf ("(row major)"); break;
1950 case 1: printf ("(column major)"); break;
1951 }
1952 break;
1953
1954 case DW_AT_frame_base:
1955 have_frame_base = 1;
1956 case DW_AT_location:
1957 case DW_AT_string_length:
1958 case DW_AT_return_addr:
1959 case DW_AT_data_member_location:
1960 case DW_AT_vtable_elem_location:
1961 case DW_AT_segment:
1962 case DW_AT_static_link:
1963 case DW_AT_use_location:
1964 case DW_AT_GNU_call_site_value:
1965 case DW_AT_GNU_call_site_data_value:
1966 case DW_AT_GNU_call_site_target:
1967 case DW_AT_GNU_call_site_target_clobbered:
1968 if ((dwarf_version < 4
1969 && (form == DW_FORM_data4 || form == DW_FORM_data8))
1970 || form == DW_FORM_sec_offset)
1971 printf (_("(location list)"));
1972 /* Fall through. */
1973 case DW_AT_allocated:
1974 case DW_AT_associated:
1975 case DW_AT_data_location:
1976 case DW_AT_stride:
1977 case DW_AT_upper_bound:
1978 case DW_AT_lower_bound:
1979 if (block_start)
1980 {
1981 int need_frame_base;
1982
1983 printf ("(");
1984 need_frame_base = decode_location_expression (block_start,
1985 pointer_size,
1986 offset_size,
1987 dwarf_version,
1988 uvalue,
1989 cu_offset, section);
1990 printf (")");
1991 if (need_frame_base && !have_frame_base)
1992 printf (_(" [without DW_AT_frame_base]"));
1993 }
1994 break;
1995
1996 case DW_AT_import:
1997 {
1998 if (form == DW_FORM_ref_sig8
1999 || form == DW_FORM_GNU_ref_alt)
2000 break;
2001
2002 if (form == DW_FORM_ref1
2003 || form == DW_FORM_ref2
2004 || form == DW_FORM_ref4
2005 || form == DW_FORM_ref_udata)
2006 uvalue += cu_offset;
2007
2008 if (uvalue >= section->size)
2009 warn (_("Offset %s used as value for DW_AT_import attribute of DIE at offset %lx is too big.\n"),
2010 dwarf_vmatoa ("x", uvalue),
2011 (unsigned long) (orig_data - section->start));
2012 else
2013 {
2014 unsigned long abbrev_number;
2015 abbrev_entry * entry;
2016
2017 abbrev_number = read_uleb128 (section->start + uvalue, NULL, end);
2018
2019 printf (_("[Abbrev Number: %ld"), abbrev_number);
2020 /* Don't look up abbrev for DW_FORM_ref_addr, as it very often will
2021 use different abbrev table, and we don't track .debug_info chunks
2022 yet. */
2023 if (form != DW_FORM_ref_addr)
2024 {
2025 for (entry = first_abbrev; entry != NULL; entry = entry->next)
2026 if (entry->entry == abbrev_number)
2027 break;
2028 if (entry != NULL)
2029 printf (" (%s)", get_TAG_name (entry->tag));
2030 }
2031 printf ("]");
2032 }
2033 }
2034 break;
2035
2036 default:
2037 break;
2038 }
2039
2040 return data;
2041 }
2042
2043 static const char *
2044 get_AT_name (unsigned long attribute)
2045 {
2046 const char *name;
2047
2048 if (attribute == 0)
2049 return "DW_AT value: 0";
2050
2051 /* One value is shared by the MIPS and HP extensions: */
2052 if (attribute == DW_AT_MIPS_fde)
2053 return "DW_AT_MIPS_fde or DW_AT_HP_unmodifiable";
2054
2055 name = get_DW_AT_name (attribute);
2056
2057 if (name == NULL)
2058 {
2059 static char buffer[100];
2060
2061 snprintf (buffer, sizeof (buffer), _("Unknown AT value: %lx"),
2062 attribute);
2063 return buffer;
2064 }
2065
2066 return name;
2067 }
2068
2069 static unsigned char *
2070 read_and_display_attr (unsigned long attribute,
2071 unsigned long form,
2072 unsigned char * data,
2073 unsigned char * end,
2074 dwarf_vma cu_offset,
2075 dwarf_vma pointer_size,
2076 dwarf_vma offset_size,
2077 int dwarf_version,
2078 debug_info * debug_info_p,
2079 int do_loc,
2080 struct dwarf_section * section,
2081 struct cu_tu_set * this_set)
2082 {
2083 if (!do_loc)
2084 printf (" %-18s:", get_AT_name (attribute));
2085 data = read_and_display_attr_value (attribute, form, data, end,
2086 cu_offset, pointer_size, offset_size,
2087 dwarf_version, debug_info_p,
2088 do_loc, section, this_set);
2089 if (!do_loc)
2090 printf ("\n");
2091 return data;
2092 }
2093
2094 /* Process the contents of a .debug_info section. If do_loc is non-zero
2095 then we are scanning for location lists and we do not want to display
2096 anything to the user. If do_types is non-zero, we are processing
2097 a .debug_types section instead of a .debug_info section. */
2098
2099 static int
2100 process_debug_info (struct dwarf_section *section,
2101 void *file,
2102 enum dwarf_section_display_enum abbrev_sec,
2103 int do_loc,
2104 int do_types)
2105 {
2106 unsigned char *start = section->start;
2107 unsigned char *end = start + section->size;
2108 unsigned char *section_begin;
2109 unsigned int unit;
2110 unsigned int num_units = 0;
2111
2112 if ((do_loc || do_debug_loc || do_debug_ranges)
2113 && num_debug_info_entries == 0
2114 && ! do_types)
2115 {
2116 dwarf_vma length;
2117
2118 /* First scan the section to get the number of comp units. */
2119 for (section_begin = start, num_units = 0; section_begin < end;
2120 num_units ++)
2121 {
2122 /* Read the first 4 bytes. For a 32-bit DWARF section, this
2123 will be the length. For a 64-bit DWARF section, it'll be
2124 the escape code 0xffffffff followed by an 8 byte length. */
2125 SAFE_BYTE_GET (length, section_begin, 4, end);
2126
2127 if (length == 0xffffffff)
2128 {
2129 SAFE_BYTE_GET (length, section_begin + 4, 8, end);
2130 section_begin += length + 12;
2131 }
2132 else if (length >= 0xfffffff0 && length < 0xffffffff)
2133 {
2134 warn (_("Reserved length value (0x%s) found in section %s\n"),
2135 dwarf_vmatoa ("x", length), section->name);
2136 return 0;
2137 }
2138 else
2139 section_begin += length + 4;
2140
2141 /* Negative values are illegal, they may even cause infinite
2142 looping. This can happen if we can't accurately apply
2143 relocations to an object file. */
2144 if ((signed long) length <= 0)
2145 {
2146 warn (_("Corrupt unit length (0x%s) found in section %s\n"),
2147 dwarf_vmatoa ("x", length), section->name);
2148 return 0;
2149 }
2150 }
2151
2152 if (num_units == 0)
2153 {
2154 error (_("No comp units in %s section ?"), section->name);
2155 return 0;
2156 }
2157
2158 /* Then allocate an array to hold the information. */
2159 debug_information = (debug_info *) cmalloc (num_units,
2160 sizeof (* debug_information));
2161 if (debug_information == NULL)
2162 {
2163 error (_("Not enough memory for a debug info array of %u entries"),
2164 num_units);
2165 return 0;
2166 }
2167 }
2168
2169 if (!do_loc)
2170 {
2171 if (dwarf_start_die == 0)
2172 printf (_("Contents of the %s section:\n\n"), section->name);
2173
2174 load_debug_section (str, file);
2175 load_debug_section (str_dwo, file);
2176 load_debug_section (str_index, file);
2177 load_debug_section (str_index_dwo, file);
2178 load_debug_section (debug_addr, file);
2179 }
2180
2181 load_debug_section (abbrev_sec, file);
2182 if (debug_displays [abbrev_sec].section.start == NULL)
2183 {
2184 warn (_("Unable to locate %s section!\n"),
2185 debug_displays [abbrev_sec].section.name);
2186 return 0;
2187 }
2188
2189 for (section_begin = start, unit = 0; start < end; unit++)
2190 {
2191 DWARF2_Internal_CompUnit compunit;
2192 unsigned char *hdrptr;
2193 unsigned char *tags;
2194 int level, last_level, saved_level;
2195 dwarf_vma cu_offset;
2196 int offset_size;
2197 int initial_length_size;
2198 dwarf_vma signature_high = 0;
2199 dwarf_vma signature_low = 0;
2200 dwarf_vma type_offset = 0;
2201 struct cu_tu_set *this_set;
2202 dwarf_vma abbrev_base;
2203 size_t abbrev_size;
2204
2205 hdrptr = start;
2206
2207 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 4, end);
2208
2209 if (compunit.cu_length == 0xffffffff)
2210 {
2211 SAFE_BYTE_GET_AND_INC (compunit.cu_length, hdrptr, 8, end);
2212 offset_size = 8;
2213 initial_length_size = 12;
2214 }
2215 else
2216 {
2217 offset_size = 4;
2218 initial_length_size = 4;
2219 }
2220
2221 SAFE_BYTE_GET_AND_INC (compunit.cu_version, hdrptr, 2, end);
2222
2223 cu_offset = start - section_begin;
2224
2225 this_set = find_cu_tu_set_v2 (cu_offset, do_types);
2226
2227 SAFE_BYTE_GET_AND_INC (compunit.cu_abbrev_offset, hdrptr, offset_size, end);
2228
2229 if (this_set == NULL)
2230 {
2231 abbrev_base = 0;
2232 abbrev_size = debug_displays [abbrev_sec].section.size;
2233 }
2234 else
2235 {
2236 abbrev_base = this_set->section_offsets [DW_SECT_ABBREV];
2237 abbrev_size = this_set->section_sizes [DW_SECT_ABBREV];
2238 }
2239
2240 SAFE_BYTE_GET_AND_INC (compunit.cu_pointer_size, hdrptr, 1, end);
2241
2242 if (do_types)
2243 {
2244 SAFE_BYTE_GET64 (hdrptr, &signature_high, &signature_low, end);
2245 hdrptr += 8;
2246 SAFE_BYTE_GET_AND_INC (type_offset, hdrptr, offset_size, end);
2247 }
2248
2249 if ((do_loc || do_debug_loc || do_debug_ranges)
2250 && num_debug_info_entries == 0
2251 && ! do_types)
2252 {
2253 debug_information [unit].cu_offset = cu_offset;
2254 debug_information [unit].pointer_size
2255 = compunit.cu_pointer_size;
2256 debug_information [unit].offset_size = offset_size;
2257 debug_information [unit].dwarf_version = compunit.cu_version;
2258 debug_information [unit].base_address = 0;
2259 debug_information [unit].addr_base = DEBUG_INFO_UNAVAILABLE;
2260 debug_information [unit].ranges_base = DEBUG_INFO_UNAVAILABLE;
2261 debug_information [unit].loc_offsets = NULL;
2262 debug_information [unit].have_frame_base = NULL;
2263 debug_information [unit].max_loc_offsets = 0;
2264 debug_information [unit].num_loc_offsets = 0;
2265 debug_information [unit].range_lists = NULL;
2266 debug_information [unit].max_range_lists= 0;
2267 debug_information [unit].num_range_lists = 0;
2268 }
2269
2270 if (!do_loc && dwarf_start_die == 0)
2271 {
2272 printf (_(" Compilation Unit @ offset 0x%s:\n"),
2273 dwarf_vmatoa ("x", cu_offset));
2274 printf (_(" Length: 0x%s (%s)\n"),
2275 dwarf_vmatoa ("x", compunit.cu_length),
2276 offset_size == 8 ? "64-bit" : "32-bit");
2277 printf (_(" Version: %d\n"), compunit.cu_version);
2278 printf (_(" Abbrev Offset: 0x%s\n"),
2279 dwarf_vmatoa ("x", compunit.cu_abbrev_offset));
2280 printf (_(" Pointer Size: %d\n"), compunit.cu_pointer_size);
2281 if (do_types)
2282 {
2283 char buf[64];
2284
2285 printf (_(" Signature: 0x%s\n"),
2286 dwarf_vmatoa64 (signature_high, signature_low,
2287 buf, sizeof (buf)));
2288 printf (_(" Type Offset: 0x%s\n"),
2289 dwarf_vmatoa ("x", type_offset));
2290 }
2291 if (this_set != NULL)
2292 {
2293 dwarf_vma *offsets = this_set->section_offsets;
2294 size_t *sizes = this_set->section_sizes;
2295
2296 printf (_(" Section contributions:\n"));
2297 printf (_(" .debug_abbrev.dwo: 0x%s 0x%s\n"),
2298 dwarf_vmatoa ("x", offsets [DW_SECT_ABBREV]),
2299 dwarf_vmatoa ("x", sizes [DW_SECT_ABBREV]));
2300 printf (_(" .debug_line.dwo: 0x%s 0x%s\n"),
2301 dwarf_vmatoa ("x", offsets [DW_SECT_LINE]),
2302 dwarf_vmatoa ("x", sizes [DW_SECT_LINE]));
2303 printf (_(" .debug_loc.dwo: 0x%s 0x%s\n"),
2304 dwarf_vmatoa ("x", offsets [DW_SECT_LOC]),
2305 dwarf_vmatoa ("x", sizes [DW_SECT_LOC]));
2306 printf (_(" .debug_str_offsets.dwo: 0x%s 0x%s\n"),
2307 dwarf_vmatoa ("x", offsets [DW_SECT_STR_OFFSETS]),
2308 dwarf_vmatoa ("x", sizes [DW_SECT_STR_OFFSETS]));
2309 }
2310 }
2311
2312 if (cu_offset + compunit.cu_length + initial_length_size
2313 > section->size)
2314 {
2315 warn (_("Debug info is corrupted, length of CU at %s"
2316 " extends beyond end of section (length = %s)\n"),
2317 dwarf_vmatoa ("x", cu_offset),
2318 dwarf_vmatoa ("x", compunit.cu_length));
2319 break;
2320 }
2321 tags = hdrptr;
2322 start += compunit.cu_length + initial_length_size;
2323
2324 if (compunit.cu_version != 2
2325 && compunit.cu_version != 3
2326 && compunit.cu_version != 4)
2327 {
2328 warn (_("CU at offset %s contains corrupt or "
2329 "unsupported version number: %d.\n"),
2330 dwarf_vmatoa ("x", cu_offset), compunit.cu_version);
2331 continue;
2332 }
2333
2334 free_abbrevs ();
2335
2336 /* Process the abbrevs used by this compilation unit. DWARF
2337 sections under Mach-O have non-zero addresses. */
2338 if (compunit.cu_abbrev_offset >= abbrev_size)
2339 warn (_("Debug info is corrupted, abbrev offset (%lx) is larger than abbrev section size (%lx)\n"),
2340 (unsigned long) compunit.cu_abbrev_offset,
2341 (unsigned long) abbrev_size);
2342 else
2343 process_abbrev_section
2344 (((unsigned char *) debug_displays [abbrev_sec].section.start
2345 + abbrev_base + compunit.cu_abbrev_offset),
2346 ((unsigned char *) debug_displays [abbrev_sec].section.start
2347 + abbrev_base + abbrev_size));
2348
2349 level = 0;
2350 last_level = level;
2351 saved_level = -1;
2352 while (tags < start)
2353 {
2354 unsigned int bytes_read;
2355 unsigned long abbrev_number;
2356 unsigned long die_offset;
2357 abbrev_entry *entry;
2358 abbrev_attr *attr;
2359 int do_printing = 1;
2360
2361 die_offset = tags - section_begin;
2362
2363 abbrev_number = read_uleb128 (tags, & bytes_read, start);
2364 tags += bytes_read;
2365
2366 /* A null DIE marks the end of a list of siblings or it may also be
2367 a section padding. */
2368 if (abbrev_number == 0)
2369 {
2370 /* Check if it can be a section padding for the last CU. */
2371 if (level == 0 && start == end)
2372 {
2373 unsigned char *chk;
2374
2375 for (chk = tags; chk < start; chk++)
2376 if (*chk != 0)
2377 break;
2378 if (chk == start)
2379 break;
2380 }
2381
2382 if (!do_loc && die_offset >= dwarf_start_die
2383 && (dwarf_cutoff_level == -1
2384 || level < dwarf_cutoff_level))
2385 printf (_(" <%d><%lx>: Abbrev Number: 0\n"),
2386 level, die_offset);
2387
2388 --level;
2389 if (level < 0)
2390 {
2391 static unsigned num_bogus_warns = 0;
2392
2393 if (num_bogus_warns < 3)
2394 {
2395 warn (_("Bogus end-of-siblings marker detected at offset %lx in %s section\n"),
2396 die_offset, section->name);
2397 num_bogus_warns ++;
2398 if (num_bogus_warns == 3)
2399 warn (_("Further warnings about bogus end-of-sibling markers suppressed\n"));
2400 }
2401 }
2402 if (dwarf_start_die != 0 && level < saved_level)
2403 return 1;
2404 continue;
2405 }
2406
2407 if (!do_loc)
2408 {
2409 if (dwarf_start_die != 0 && die_offset < dwarf_start_die)
2410 do_printing = 0;
2411 else
2412 {
2413 if (dwarf_start_die != 0 && die_offset == dwarf_start_die)
2414 saved_level = level;
2415 do_printing = (dwarf_cutoff_level == -1
2416 || level < dwarf_cutoff_level);
2417 if (do_printing)
2418 printf (_(" <%d><%lx>: Abbrev Number: %lu"),
2419 level, die_offset, abbrev_number);
2420 else if (dwarf_cutoff_level == -1
2421 || last_level < dwarf_cutoff_level)
2422 printf (_(" <%d><%lx>: ...\n"), level, die_offset);
2423 last_level = level;
2424 }
2425 }
2426
2427 /* Scan through the abbreviation list until we reach the
2428 correct entry. */
2429 for (entry = first_abbrev;
2430 entry && entry->entry != abbrev_number;
2431 entry = entry->next)
2432 continue;
2433
2434 if (entry == NULL)
2435 {
2436 if (!do_loc && do_printing)
2437 {
2438 printf ("\n");
2439 fflush (stdout);
2440 }
2441 warn (_("DIE at offset %lx refers to abbreviation number %lu which does not exist\n"),
2442 die_offset, abbrev_number);
2443 return 0;
2444 }
2445
2446 if (!do_loc && do_printing)
2447 printf (" (%s)\n", get_TAG_name (entry->tag));
2448
2449 switch (entry->tag)
2450 {
2451 default:
2452 need_base_address = 0;
2453 break;
2454 case DW_TAG_compile_unit:
2455 need_base_address = 1;
2456 break;
2457 case DW_TAG_entry_point:
2458 case DW_TAG_subprogram:
2459 need_base_address = 0;
2460 /* Assuming that there is no DW_AT_frame_base. */
2461 have_frame_base = 0;
2462 break;
2463 }
2464
2465 for (attr = entry->first_attr;
2466 attr && attr->attribute;
2467 attr = attr->next)
2468 {
2469 debug_info *arg;
2470
2471 if (! do_loc && do_printing)
2472 /* Show the offset from where the tag was extracted. */
2473 printf (" <%lx>", (unsigned long)(tags - section_begin));
2474
2475 arg = debug_information;
2476 if (debug_information)
2477 arg += unit;
2478
2479 tags = read_and_display_attr (attr->attribute,
2480 attr->form,
2481 tags,
2482 end,
2483 cu_offset,
2484 compunit.cu_pointer_size,
2485 offset_size,
2486 compunit.cu_version,
2487 arg,
2488 do_loc || ! do_printing,
2489 section,
2490 this_set);
2491 }
2492
2493 if (entry->children)
2494 ++level;
2495 }
2496 }
2497
2498 /* Set num_debug_info_entries here so that it can be used to check if
2499 we need to process .debug_loc and .debug_ranges sections. */
2500 if ((do_loc || do_debug_loc || do_debug_ranges)
2501 && num_debug_info_entries == 0
2502 && ! do_types)
2503 num_debug_info_entries = num_units;
2504
2505 if (!do_loc)
2506 printf ("\n");
2507
2508 return 1;
2509 }
2510
2511 /* Locate and scan the .debug_info section in the file and record the pointer
2512 sizes and offsets for the compilation units in it. Usually an executable
2513 will have just one pointer size, but this is not guaranteed, and so we try
2514 not to make any assumptions. Returns zero upon failure, or the number of
2515 compilation units upon success. */
2516
2517 static unsigned int
2518 load_debug_info (void * file)
2519 {
2520 /* Reset the last pointer size so that we can issue correct error
2521 messages if we are displaying the contents of more than one section. */
2522 last_pointer_size = 0;
2523 warned_about_missing_comp_units = FALSE;
2524
2525 /* If we have already tried and failed to load the .debug_info
2526 section then do not bother to repeat the task. */
2527 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
2528 return 0;
2529
2530 /* If we already have the information there is nothing else to do. */
2531 if (num_debug_info_entries > 0)
2532 return num_debug_info_entries;
2533
2534 /* If this is a DWARF package file, load the CU and TU indexes. */
2535 load_cu_tu_indexes (file);
2536
2537 if (load_debug_section (info, file)
2538 && process_debug_info (&debug_displays [info].section, file, abbrev, 1, 0))
2539 return num_debug_info_entries;
2540 else if (load_debug_section (info_dwo, file)
2541 && process_debug_info (&debug_displays [info_dwo].section, file,
2542 abbrev_dwo, 1, 0))
2543 return num_debug_info_entries;
2544
2545 num_debug_info_entries = DEBUG_INFO_UNAVAILABLE;
2546 return 0;
2547 }
2548
2549 static int
2550 display_debug_lines_raw (struct dwarf_section *section,
2551 unsigned char *data,
2552 unsigned char *end)
2553 {
2554 unsigned char *start = section->start;
2555
2556 printf (_("Raw dump of debug contents of section %s:\n\n"),
2557 section->name);
2558
2559 while (data < end)
2560 {
2561 DWARF2_Internal_LineInfo linfo;
2562 unsigned char *standard_opcodes;
2563 unsigned char *end_of_sequence;
2564 unsigned char *hdrptr;
2565 unsigned long hdroff;
2566 int initial_length_size;
2567 int offset_size;
2568 int i;
2569
2570 hdrptr = data;
2571 hdroff = hdrptr - start;
2572
2573 /* Check the length of the block. */
2574 SAFE_BYTE_GET_AND_INC (linfo.li_length, hdrptr, 4, end);
2575
2576 if (linfo.li_length == 0xffffffff)
2577 {
2578 /* This section is 64-bit DWARF 3. */
2579 SAFE_BYTE_GET_AND_INC (linfo.li_length, hdrptr, 8, end);
2580 offset_size = 8;
2581 initial_length_size = 12;
2582 }
2583 else
2584 {
2585 offset_size = 4;
2586 initial_length_size = 4;
2587 }
2588
2589 if (linfo.li_length + initial_length_size > section->size)
2590 {
2591 warn
2592 (_("The information in section %s appears to be corrupt - the section is too small\n"),
2593 section->name);
2594 return 0;
2595 }
2596
2597 /* Check its version number. */
2598 SAFE_BYTE_GET_AND_INC (linfo.li_version, hdrptr, 2, end);
2599 if (linfo.li_version != 2
2600 && linfo.li_version != 3
2601 && linfo.li_version != 4)
2602 {
2603 warn (_("Only DWARF version 2, 3 and 4 line info is currently supported.\n"));
2604 return 0;
2605 }
2606
2607 SAFE_BYTE_GET_AND_INC (linfo.li_prologue_length, hdrptr, offset_size, end);
2608 SAFE_BYTE_GET_AND_INC (linfo.li_min_insn_length, hdrptr, 1, end);
2609
2610 if (linfo.li_version >= 4)
2611 {
2612 SAFE_BYTE_GET_AND_INC (linfo.li_max_ops_per_insn, hdrptr, 1, end);
2613
2614 if (linfo.li_max_ops_per_insn == 0)
2615 {
2616 warn (_("Invalid maximum operations per insn.\n"));
2617 return 0;
2618 }
2619 }
2620 else
2621 linfo.li_max_ops_per_insn = 1;
2622
2623 SAFE_BYTE_GET_AND_INC (linfo.li_default_is_stmt, hdrptr, 1, end);
2624 SAFE_BYTE_GET_AND_INC (linfo.li_line_base, hdrptr, 1, end);
2625 SAFE_BYTE_GET_AND_INC (linfo.li_line_range, hdrptr, 1, end);
2626 SAFE_BYTE_GET_AND_INC (linfo.li_opcode_base, hdrptr, 1, end);
2627
2628 /* Sign extend the line base field. */
2629 linfo.li_line_base <<= 24;
2630 linfo.li_line_base >>= 24;
2631
2632 printf (_(" Offset: 0x%lx\n"), hdroff);
2633 printf (_(" Length: %ld\n"), (long) linfo.li_length);
2634 printf (_(" DWARF Version: %d\n"), linfo.li_version);
2635 printf (_(" Prologue Length: %d\n"), linfo.li_prologue_length);
2636 printf (_(" Minimum Instruction Length: %d\n"), linfo.li_min_insn_length);
2637 if (linfo.li_version >= 4)
2638 printf (_(" Maximum Ops per Instruction: %d\n"), linfo.li_max_ops_per_insn);
2639 printf (_(" Initial value of 'is_stmt': %d\n"), linfo.li_default_is_stmt);
2640 printf (_(" Line Base: %d\n"), linfo.li_line_base);
2641 printf (_(" Line Range: %d\n"), linfo.li_line_range);
2642 printf (_(" Opcode Base: %d\n"), linfo.li_opcode_base);
2643
2644 end_of_sequence = data + linfo.li_length + initial_length_size;
2645
2646 reset_state_machine (linfo.li_default_is_stmt);
2647
2648 /* Display the contents of the Opcodes table. */
2649 standard_opcodes = hdrptr;
2650
2651 printf (_("\n Opcodes:\n"));
2652
2653 for (i = 1; i < linfo.li_opcode_base; i++)
2654 printf (_(" Opcode %d has %d args\n"), i, standard_opcodes[i - 1]);
2655
2656 /* Display the contents of the Directory table. */
2657 data = standard_opcodes + linfo.li_opcode_base - 1;
2658
2659 if (*data == 0)
2660 printf (_("\n The Directory Table is empty.\n"));
2661 else
2662 {
2663 printf (_("\n The Directory Table:\n"));
2664
2665 while (*data != 0)
2666 {
2667 printf (" %s\n", data);
2668
2669 data += strnlen ((char *) data, end - data) + 1;
2670 }
2671 }
2672
2673 /* Skip the NUL at the end of the table. */
2674 data++;
2675
2676 /* Display the contents of the File Name table. */
2677 if (*data == 0)
2678 printf (_("\n The File Name Table is empty.\n"));
2679 else
2680 {
2681 printf (_("\n The File Name Table:\n"));
2682 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
2683
2684 while (*data != 0)
2685 {
2686 unsigned char *name;
2687 unsigned int bytes_read;
2688
2689 printf (" %d\t", ++state_machine_regs.last_file_entry);
2690 name = data;
2691 data += strnlen ((char *) data, end - data) + 1;
2692
2693 printf ("%s\t",
2694 dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
2695 data += bytes_read;
2696 printf ("%s\t",
2697 dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
2698 data += bytes_read;
2699 printf ("%s\t",
2700 dwarf_vmatoa ("u", read_uleb128 (data, & bytes_read, end)));
2701 data += bytes_read;
2702 printf ("%s\n", name);
2703
2704 if (data == end)
2705 {
2706 warn (_("Corrupt file name table entry\n"));
2707 break;
2708 }
2709 }
2710 }
2711
2712 /* Skip the NUL at the end of the table. */
2713 data++;
2714
2715 /* Now display the statements. */
2716 printf (_("\n Line Number Statements:\n"));
2717
2718 while (data < end_of_sequence)
2719 {
2720 unsigned char op_code;
2721 dwarf_signed_vma adv;
2722 dwarf_vma uladv;
2723 unsigned int bytes_read;
2724
2725 op_code = *data++;
2726
2727 if (op_code >= linfo.li_opcode_base)
2728 {
2729 op_code -= linfo.li_opcode_base;
2730 uladv = (op_code / linfo.li_line_range);
2731 if (linfo.li_max_ops_per_insn == 1)
2732 {
2733 uladv *= linfo.li_min_insn_length;
2734 state_machine_regs.address += uladv;
2735 printf (_(" Special opcode %d: "
2736 "advance Address by %s to 0x%s"),
2737 op_code, dwarf_vmatoa ("u", uladv),
2738 dwarf_vmatoa ("x", state_machine_regs.address));
2739 }
2740 else
2741 {
2742 state_machine_regs.address
2743 += ((state_machine_regs.op_index + uladv)
2744 / linfo.li_max_ops_per_insn)
2745 * linfo.li_min_insn_length;
2746 state_machine_regs.op_index
2747 = (state_machine_regs.op_index + uladv)
2748 % linfo.li_max_ops_per_insn;
2749 printf (_(" Special opcode %d: "
2750 "advance Address by %s to 0x%s[%d]"),
2751 op_code, dwarf_vmatoa ("u", uladv),
2752 dwarf_vmatoa ("x", state_machine_regs.address),
2753 state_machine_regs.op_index);
2754 }
2755 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
2756 state_machine_regs.line += adv;
2757 printf (_(" and Line by %s to %d\n"),
2758 dwarf_vmatoa ("d", adv), state_machine_regs.line);
2759 }
2760 else switch (op_code)
2761 {
2762 case DW_LNS_extended_op:
2763 data += process_extended_line_op (data, linfo.li_default_is_stmt, end);
2764 break;
2765
2766 case DW_LNS_copy:
2767 printf (_(" Copy\n"));
2768 break;
2769
2770 case DW_LNS_advance_pc:
2771 uladv = read_uleb128 (data, & bytes_read, end);
2772 data += bytes_read;
2773 if (linfo.li_max_ops_per_insn == 1)
2774 {
2775 uladv *= linfo.li_min_insn_length;
2776 state_machine_regs.address += uladv;
2777 printf (_(" Advance PC by %s to 0x%s\n"),
2778 dwarf_vmatoa ("u", uladv),
2779 dwarf_vmatoa ("x", state_machine_regs.address));
2780 }
2781 else
2782 {
2783 state_machine_regs.address
2784 += ((state_machine_regs.op_index + uladv)
2785 / linfo.li_max_ops_per_insn)
2786 * linfo.li_min_insn_length;
2787 state_machine_regs.op_index
2788 = (state_machine_regs.op_index + uladv)
2789 % linfo.li_max_ops_per_insn;
2790 printf (_(" Advance PC by %s to 0x%s[%d]\n"),
2791 dwarf_vmatoa ("u", uladv),
2792 dwarf_vmatoa ("x", state_machine_regs.address),
2793 state_machine_regs.op_index);
2794 }
2795 break;
2796
2797 case DW_LNS_advance_line:
2798 adv = read_sleb128 (data, & bytes_read, end);
2799 data += bytes_read;
2800 state_machine_regs.line += adv;
2801 printf (_(" Advance Line by %s to %d\n"),
2802 dwarf_vmatoa ("d", adv),
2803 state_machine_regs.line);
2804 break;
2805
2806 case DW_LNS_set_file:
2807 adv = read_uleb128 (data, & bytes_read, end);
2808 data += bytes_read;
2809 printf (_(" Set File Name to entry %s in the File Name Table\n"),
2810 dwarf_vmatoa ("d", adv));
2811 state_machine_regs.file = adv;
2812 break;
2813
2814 case DW_LNS_set_column:
2815 uladv = read_uleb128 (data, & bytes_read, end);
2816 data += bytes_read;
2817 printf (_(" Set column to %s\n"),
2818 dwarf_vmatoa ("u", uladv));
2819 state_machine_regs.column = uladv;
2820 break;
2821
2822 case DW_LNS_negate_stmt:
2823 adv = state_machine_regs.is_stmt;
2824 adv = ! adv;
2825 printf (_(" Set is_stmt to %s\n"), dwarf_vmatoa ("d", adv));
2826 state_machine_regs.is_stmt = adv;
2827 break;
2828
2829 case DW_LNS_set_basic_block:
2830 printf (_(" Set basic block\n"));
2831 state_machine_regs.basic_block = 1;
2832 break;
2833
2834 case DW_LNS_const_add_pc:
2835 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
2836 if (linfo.li_max_ops_per_insn)
2837 {
2838 uladv *= linfo.li_min_insn_length;
2839 state_machine_regs.address += uladv;
2840 printf (_(" Advance PC by constant %s to 0x%s\n"),
2841 dwarf_vmatoa ("u", uladv),
2842 dwarf_vmatoa ("x", state_machine_regs.address));
2843 }
2844 else
2845 {
2846 state_machine_regs.address
2847 += ((state_machine_regs.op_index + uladv)
2848 / linfo.li_max_ops_per_insn)
2849 * linfo.li_min_insn_length;
2850 state_machine_regs.op_index
2851 = (state_machine_regs.op_index + uladv)
2852 % linfo.li_max_ops_per_insn;
2853 printf (_(" Advance PC by constant %s to 0x%s[%d]\n"),
2854 dwarf_vmatoa ("u", uladv),
2855 dwarf_vmatoa ("x", state_machine_regs.address),
2856 state_machine_regs.op_index);
2857 }
2858 break;
2859
2860 case DW_LNS_fixed_advance_pc:
2861 SAFE_BYTE_GET_AND_INC (uladv, data, 2, end);
2862 state_machine_regs.address += uladv;
2863 state_machine_regs.op_index = 0;
2864 printf (_(" Advance PC by fixed size amount %s to 0x%s\n"),
2865 dwarf_vmatoa ("u", uladv),
2866 dwarf_vmatoa ("x", state_machine_regs.address));
2867 break;
2868
2869 case DW_LNS_set_prologue_end:
2870 printf (_(" Set prologue_end to true\n"));
2871 break;
2872
2873 case DW_LNS_set_epilogue_begin:
2874 printf (_(" Set epilogue_begin to true\n"));
2875 break;
2876
2877 case DW_LNS_set_isa:
2878 uladv = read_uleb128 (data, & bytes_read, end);
2879 data += bytes_read;
2880 printf (_(" Set ISA to %s\n"), dwarf_vmatoa ("u", uladv));
2881 break;
2882
2883 default:
2884 printf (_(" Unknown opcode %d with operands: "), op_code);
2885
2886 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
2887 {
2888 printf ("0x%s%s", dwarf_vmatoa ("x", read_uleb128 (data,
2889 &bytes_read, end)),
2890 i == 1 ? "" : ", ");
2891 data += bytes_read;
2892 }
2893 putchar ('\n');
2894 break;
2895 }
2896 }
2897 putchar ('\n');
2898 }
2899
2900 return 1;
2901 }
2902
2903 typedef struct
2904 {
2905 unsigned char *name;
2906 unsigned int directory_index;
2907 unsigned int modification_date;
2908 unsigned int length;
2909 } File_Entry;
2910
2911 /* Output a decoded representation of the .debug_line section. */
2912
2913 static int
2914 display_debug_lines_decoded (struct dwarf_section *section,
2915 unsigned char *data,
2916 unsigned char *end)
2917 {
2918 printf (_("Decoded dump of debug contents of section %s:\n\n"),
2919 section->name);
2920
2921 while (data < end)
2922 {
2923 /* This loop amounts to one iteration per compilation unit. */
2924 DWARF2_Internal_LineInfo linfo;
2925 unsigned char *standard_opcodes;
2926 unsigned char *end_of_sequence;
2927 unsigned char *hdrptr;
2928 int initial_length_size;
2929 int offset_size;
2930 int i;
2931 File_Entry *file_table = NULL;
2932 unsigned int n_files = 0;
2933 unsigned char **directory_table = NULL;
2934 unsigned int n_directories = 0;
2935
2936 hdrptr = data;
2937
2938 /* Extract information from the Line Number Program Header.
2939 (section 6.2.4 in the Dwarf3 doc). */
2940
2941 /* Get the length of this CU's line number information block. */
2942 SAFE_BYTE_GET_AND_INC (linfo.li_length, hdrptr, 4, end);
2943
2944 if (linfo.li_length == 0xffffffff)
2945 {
2946 /* This section is 64-bit DWARF 3. */
2947 SAFE_BYTE_GET_AND_INC (linfo.li_length, hdrptr, 8, end);
2948 offset_size = 8;
2949 initial_length_size = 12;
2950 }
2951 else
2952 {
2953 offset_size = 4;
2954 initial_length_size = 4;
2955 }
2956
2957 if (linfo.li_length + initial_length_size > section->size)
2958 {
2959 warn (_("The line info appears to be corrupt - "
2960 "the section is too small\n"));
2961 return 0;
2962 }
2963
2964 /* Get this CU's Line Number Block version number. */
2965 SAFE_BYTE_GET_AND_INC (linfo.li_version, hdrptr, 2, end);
2966 if (linfo.li_version != 2
2967 && linfo.li_version != 3
2968 && linfo.li_version != 4)
2969 {
2970 warn (_("Only DWARF version 2, 3 and 4 line info is currently "
2971 "supported.\n"));
2972 return 0;
2973 }
2974
2975 SAFE_BYTE_GET_AND_INC (linfo.li_prologue_length, hdrptr, offset_size, end);
2976 SAFE_BYTE_GET_AND_INC (linfo.li_min_insn_length, hdrptr, 1, end);
2977
2978 if (linfo.li_version >= 4)
2979 {
2980 SAFE_BYTE_GET_AND_INC (linfo.li_max_ops_per_insn, hdrptr, 1, end);
2981 if (linfo.li_max_ops_per_insn == 0)
2982 {
2983 warn (_("Invalid maximum operations per insn.\n"));
2984 return 0;
2985 }
2986 }
2987 else
2988 linfo.li_max_ops_per_insn = 1;
2989
2990 SAFE_BYTE_GET_AND_INC (linfo.li_default_is_stmt, hdrptr, 1, end);
2991 SAFE_BYTE_GET_AND_INC (linfo.li_line_base, hdrptr, 1, end);
2992 SAFE_BYTE_GET_AND_INC (linfo.li_line_range, hdrptr, 1, end);
2993 SAFE_BYTE_GET_AND_INC (linfo.li_opcode_base, hdrptr, 1, end);
2994
2995 /* Sign extend the line base field. */
2996 linfo.li_line_base <<= 24;
2997 linfo.li_line_base >>= 24;
2998
2999 /* Find the end of this CU's Line Number Information Block. */
3000 end_of_sequence = data + linfo.li_length + initial_length_size;
3001
3002 reset_state_machine (linfo.li_default_is_stmt);
3003
3004 /* Save a pointer to the contents of the Opcodes table. */
3005 standard_opcodes = hdrptr;
3006
3007 /* Traverse the Directory table just to count entries. */
3008 data = standard_opcodes + linfo.li_opcode_base - 1;
3009 if (*data != 0)
3010 {
3011 unsigned char *ptr_directory_table = data;
3012
3013 while (*data != 0)
3014 {
3015 data += strnlen ((char *) data, end - data) + 1;
3016 n_directories++;
3017 }
3018
3019 /* Go through the directory table again to save the directories. */
3020 directory_table = (unsigned char **)
3021 xmalloc (n_directories * sizeof (unsigned char *));
3022
3023 i = 0;
3024 while (*ptr_directory_table != 0)
3025 {
3026 directory_table[i] = ptr_directory_table;
3027 ptr_directory_table += strnlen ((char *) ptr_directory_table,
3028 ptr_directory_table - end) + 1;
3029 i++;
3030 }
3031 }
3032 /* Skip the NUL at the end of the table. */
3033 data++;
3034
3035 /* Traverse the File Name table just to count the entries. */
3036 if (*data != 0)
3037 {
3038 unsigned char *ptr_file_name_table = data;
3039
3040 while (*data != 0)
3041 {
3042 unsigned int bytes_read;
3043
3044 /* Skip Name, directory index, last modification time and length
3045 of file. */
3046 data += strnlen ((char *) data, end - data) + 1;
3047 read_uleb128 (data, & bytes_read, end);
3048 data += bytes_read;
3049 read_uleb128 (data, & bytes_read, end);
3050 data += bytes_read;
3051 read_uleb128 (data, & bytes_read, end);
3052 data += bytes_read;
3053
3054 n_files++;
3055 }
3056
3057 /* Go through the file table again to save the strings. */
3058 file_table = (File_Entry *) xmalloc (n_files * sizeof (File_Entry));
3059
3060 i = 0;
3061 while (*ptr_file_name_table != 0)
3062 {
3063 unsigned int bytes_read;
3064
3065 file_table[i].name = ptr_file_name_table;
3066 ptr_file_name_table += strnlen ((char *) ptr_file_name_table,
3067 end - ptr_file_name_table) + 1;
3068
3069 /* We are not interested in directory, time or size. */
3070 file_table[i].directory_index = read_uleb128 (ptr_file_name_table,
3071 & bytes_read, end);
3072 ptr_file_name_table += bytes_read;
3073 file_table[i].modification_date = read_uleb128 (ptr_file_name_table,
3074 & bytes_read, end);
3075 ptr_file_name_table += bytes_read;
3076 file_table[i].length = read_uleb128 (ptr_file_name_table, & bytes_read, end);
3077 ptr_file_name_table += bytes_read;
3078 i++;
3079 }
3080 i = 0;
3081
3082 /* Print the Compilation Unit's name and a header. */
3083 if (directory_table == NULL)
3084 {
3085 printf (_("CU: %s:\n"), file_table[0].name);
3086 printf (_("File name Line number Starting address\n"));
3087 }
3088 else
3089 {
3090 unsigned int ix = file_table[0].directory_index;
3091 const char *directory = ix ? (char *)directory_table[ix - 1] : ".";
3092
3093 if (do_wide || strlen (directory) < 76)
3094 printf (_("CU: %s/%s:\n"), directory, file_table[0].name);
3095 else
3096 printf ("%s:\n", file_table[0].name);
3097
3098 printf (_("File name Line number Starting address\n"));
3099 }
3100 }
3101
3102 /* Skip the NUL at the end of the table. */
3103 data++;
3104
3105 /* This loop iterates through the Dwarf Line Number Program. */
3106 while (data < end_of_sequence)
3107 {
3108 unsigned char op_code;
3109 int adv;
3110 unsigned long int uladv;
3111 unsigned int bytes_read;
3112 int is_special_opcode = 0;
3113
3114 op_code = *data++;
3115
3116 if (op_code >= linfo.li_opcode_base)
3117 {
3118 op_code -= linfo.li_opcode_base;
3119 uladv = (op_code / linfo.li_line_range);
3120 if (linfo.li_max_ops_per_insn == 1)
3121 {
3122 uladv *= linfo.li_min_insn_length;
3123 state_machine_regs.address += uladv;
3124 }
3125 else
3126 {
3127 state_machine_regs.address
3128 += ((state_machine_regs.op_index + uladv)
3129 / linfo.li_max_ops_per_insn)
3130 * linfo.li_min_insn_length;
3131 state_machine_regs.op_index
3132 = (state_machine_regs.op_index + uladv)
3133 % linfo.li_max_ops_per_insn;
3134 }
3135
3136 adv = (op_code % linfo.li_line_range) + linfo.li_line_base;
3137 state_machine_regs.line += adv;
3138 is_special_opcode = 1;
3139 }
3140 else switch (op_code)
3141 {
3142 case DW_LNS_extended_op:
3143 {
3144 unsigned int ext_op_code_len;
3145 unsigned char ext_op_code;
3146 unsigned char *op_code_data = data;
3147
3148 ext_op_code_len = read_uleb128 (op_code_data, &bytes_read,
3149 end_of_sequence);
3150 op_code_data += bytes_read;
3151
3152 if (ext_op_code_len == 0)
3153 {
3154 warn (_("badly formed extended line op encountered!\n"));
3155 break;
3156 }
3157 ext_op_code_len += bytes_read;
3158 ext_op_code = *op_code_data++;
3159
3160 switch (ext_op_code)
3161 {
3162 case DW_LNE_end_sequence:
3163 reset_state_machine (linfo.li_default_is_stmt);
3164 break;
3165 case DW_LNE_set_address:
3166 SAFE_BYTE_GET_AND_INC (state_machine_regs.address,
3167 op_code_data, ext_op_code_len - bytes_read - 1,
3168 end);
3169 state_machine_regs.op_index = 0;
3170 break;
3171 case DW_LNE_define_file:
3172 {
3173 file_table = (File_Entry *) xrealloc
3174 (file_table, (n_files + 1) * sizeof (File_Entry));
3175
3176 ++state_machine_regs.last_file_entry;
3177 /* Source file name. */
3178 file_table[n_files].name = op_code_data;
3179 op_code_data += strlen ((char *) op_code_data) + 1;
3180 /* Directory index. */
3181 file_table[n_files].directory_index =
3182 read_uleb128 (op_code_data, & bytes_read,
3183 end_of_sequence);
3184 op_code_data += bytes_read;
3185 /* Last modification time. */
3186 file_table[n_files].modification_date =
3187 read_uleb128 (op_code_data, & bytes_read,
3188 end_of_sequence);
3189 op_code_data += bytes_read;
3190 /* File length. */
3191 file_table[n_files].length =
3192 read_uleb128 (op_code_data, & bytes_read,
3193 end_of_sequence);
3194
3195 n_files++;
3196 break;
3197 }
3198 case DW_LNE_set_discriminator:
3199 case DW_LNE_HP_set_sequence:
3200 /* Simply ignored. */
3201 break;
3202
3203 default:
3204 printf (_("UNKNOWN (%u): length %d\n"),
3205 ext_op_code, ext_op_code_len - bytes_read);
3206 break;
3207 }
3208 data += ext_op_code_len;
3209 break;
3210 }
3211 case DW_LNS_copy:
3212 break;
3213
3214 case DW_LNS_advance_pc:
3215 uladv = read_uleb128 (data, & bytes_read, end);
3216 data += bytes_read;
3217 if (linfo.li_max_ops_per_insn == 1)
3218 {
3219 uladv *= linfo.li_min_insn_length;
3220 state_machine_regs.address += uladv;
3221 }
3222 else
3223 {
3224 state_machine_regs.address
3225 += ((state_machine_regs.op_index + uladv)
3226 / linfo.li_max_ops_per_insn)
3227 * linfo.li_min_insn_length;
3228 state_machine_regs.op_index
3229 = (state_machine_regs.op_index + uladv)
3230 % linfo.li_max_ops_per_insn;
3231 }
3232 break;
3233
3234 case DW_LNS_advance_line:
3235 adv = read_sleb128 (data, & bytes_read, end);
3236 data += bytes_read;
3237 state_machine_regs.line += adv;
3238 break;
3239
3240 case DW_LNS_set_file:
3241 adv = read_uleb128 (data, & bytes_read, end);
3242 data += bytes_read;
3243 state_machine_regs.file = adv;
3244 if (file_table[state_machine_regs.file - 1].directory_index == 0)
3245 {
3246 /* If directory index is 0, that means current directory. */
3247 printf ("\n./%s:[++]\n",
3248 file_table[state_machine_regs.file - 1].name);
3249 }
3250 else
3251 {
3252 /* The directory index starts counting at 1. */
3253 printf ("\n%s/%s:\n",
3254 directory_table[file_table[state_machine_regs.file - 1].directory_index - 1],
3255 file_table[state_machine_regs.file - 1].name);
3256 }
3257 break;
3258
3259 case DW_LNS_set_column:
3260 uladv = read_uleb128 (data, & bytes_read, end);
3261 data += bytes_read;
3262 state_machine_regs.column = uladv;
3263 break;
3264
3265 case DW_LNS_negate_stmt:
3266 adv = state_machine_regs.is_stmt;
3267 adv = ! adv;
3268 state_machine_regs.is_stmt = adv;
3269 break;
3270
3271 case DW_LNS_set_basic_block:
3272 state_machine_regs.basic_block = 1;
3273 break;
3274
3275 case DW_LNS_const_add_pc:
3276 uladv = ((255 - linfo.li_opcode_base) / linfo.li_line_range);
3277 if (linfo.li_max_ops_per_insn == 1)
3278 {
3279 uladv *= linfo.li_min_insn_length;
3280 state_machine_regs.address += uladv;
3281 }
3282 else
3283 {
3284 state_machine_regs.address
3285 += ((state_machine_regs.op_index + uladv)
3286 / linfo.li_max_ops_per_insn)
3287 * linfo.li_min_insn_length;
3288 state_machine_regs.op_index
3289 = (state_machine_regs.op_index + uladv)
3290 % linfo.li_max_ops_per_insn;
3291 }
3292 break;
3293
3294 case DW_LNS_fixed_advance_pc:
3295 SAFE_BYTE_GET_AND_INC (uladv, data, 2, end);
3296 state_machine_regs.address += uladv;
3297 state_machine_regs.op_index = 0;
3298 break;
3299
3300 case DW_LNS_set_prologue_end:
3301 break;
3302
3303 case DW_LNS_set_epilogue_begin:
3304 break;
3305
3306 case DW_LNS_set_isa:
3307 uladv = read_uleb128 (data, & bytes_read, end);
3308 data += bytes_read;
3309 printf (_(" Set ISA to %lu\n"), uladv);
3310 break;
3311
3312 default:
3313 printf (_(" Unknown opcode %d with operands: "), op_code);
3314
3315 for (i = standard_opcodes[op_code - 1]; i > 0 ; --i)
3316 {
3317 printf ("0x%s%s", dwarf_vmatoa ("x", read_uleb128 (data,
3318 &bytes_read, end)),
3319 i == 1 ? "" : ", ");
3320 data += bytes_read;
3321 }
3322 putchar ('\n');
3323 break;
3324 }
3325
3326 /* Only Special opcodes, DW_LNS_copy and DW_LNE_end_sequence adds a row
3327 to the DWARF address/line matrix. */
3328 if ((is_special_opcode) || (op_code == DW_LNE_end_sequence)
3329 || (op_code == DW_LNS_copy))
3330 {
3331 const unsigned int MAX_FILENAME_LENGTH = 35;
3332 char *fileName = (char *)file_table[state_machine_regs.file - 1].name;
3333 char *newFileName = NULL;
3334 size_t fileNameLength = strlen (fileName);
3335
3336 if ((fileNameLength > MAX_FILENAME_LENGTH) && (!do_wide))
3337 {
3338 newFileName = (char *) xmalloc (MAX_FILENAME_LENGTH + 1);
3339 /* Truncate file name */
3340 strncpy (newFileName,
3341 fileName + fileNameLength - MAX_FILENAME_LENGTH,
3342 MAX_FILENAME_LENGTH + 1);
3343 }
3344 else
3345 {
3346 newFileName = (char *) xmalloc (fileNameLength + 1);
3347 strncpy (newFileName, fileName, fileNameLength + 1);
3348 }
3349
3350 if (!do_wide || (fileNameLength <= MAX_FILENAME_LENGTH))
3351 {
3352 if (linfo.li_max_ops_per_insn == 1)
3353 printf ("%-35s %11d %#18" DWARF_VMA_FMT "x\n",
3354 newFileName, state_machine_regs.line,
3355 state_machine_regs.address);
3356 else
3357 printf ("%-35s %11d %#18" DWARF_VMA_FMT "x[%d]\n",
3358 newFileName, state_machine_regs.line,
3359 state_machine_regs.address,
3360 state_machine_regs.op_index);
3361 }
3362 else
3363 {
3364 if (linfo.li_max_ops_per_insn == 1)
3365 printf ("%s %11d %#18" DWARF_VMA_FMT "x\n",
3366 newFileName, state_machine_regs.line,
3367 state_machine_regs.address);
3368 else
3369 printf ("%s %11d %#18" DWARF_VMA_FMT "x[%d]\n",
3370 newFileName, state_machine_regs.line,
3371 state_machine_regs.address,
3372 state_machine_regs.op_index);
3373 }
3374
3375 if (op_code == DW_LNE_end_sequence)
3376 printf ("\n");
3377
3378 free (newFileName);
3379 }
3380 }
3381 free (file_table);
3382 file_table = NULL;
3383 free (directory_table);
3384 directory_table = NULL;
3385 putchar ('\n');
3386 }
3387
3388 return 1;
3389 }
3390
3391 static int
3392 display_debug_lines (struct dwarf_section *section, void *file ATTRIBUTE_UNUSED)
3393 {
3394 unsigned char *data = section->start;
3395 unsigned char *end = data + section->size;
3396 int retValRaw = 1;
3397 int retValDecoded = 1;
3398
3399 if (do_debug_lines == 0)
3400 do_debug_lines |= FLAG_DEBUG_LINES_RAW;
3401
3402 if (do_debug_lines & FLAG_DEBUG_LINES_RAW)
3403 retValRaw = display_debug_lines_raw (section, data, end);
3404
3405 if (do_debug_lines & FLAG_DEBUG_LINES_DECODED)
3406 retValDecoded = display_debug_lines_decoded (section, data, end);
3407
3408 if (!retValRaw || !retValDecoded)
3409 return 0;
3410
3411 return 1;
3412 }
3413
3414 static debug_info *
3415 find_debug_info_for_offset (unsigned long offset)
3416 {
3417 unsigned int i;
3418
3419 if (num_debug_info_entries == DEBUG_INFO_UNAVAILABLE)
3420 return NULL;
3421
3422 for (i = 0; i < num_debug_info_entries; i++)
3423 if (debug_information[i].cu_offset == offset)
3424 return debug_information + i;
3425
3426 return NULL;
3427 }
3428
3429 static int
3430 display_debug_pubnames (struct dwarf_section *section,
3431 void *file ATTRIBUTE_UNUSED)
3432 {
3433 DWARF2_Internal_PubNames names;
3434 unsigned char *start = section->start;
3435 unsigned char *end = start + section->size;
3436
3437 /* It does not matter if this load fails,
3438 we test for that later on. */
3439 load_debug_info (file);
3440
3441 printf (_("Contents of the %s section:\n\n"), section->name);
3442
3443 while (start < end)
3444 {
3445 unsigned char *data;
3446 unsigned long offset;
3447 int offset_size, initial_length_size;
3448
3449 data = start;
3450
3451 SAFE_BYTE_GET_AND_INC (names.pn_length, data, 4, end);
3452 if (names.pn_length == 0xffffffff)
3453 {
3454 SAFE_BYTE_GET_AND_INC (names.pn_length, data, 8, end);
3455 offset_size = 8;
3456 initial_length_size = 12;
3457 }
3458 else
3459 {
3460 offset_size = 4;
3461 initial_length_size = 4;
3462 }
3463
3464 SAFE_BYTE_GET_AND_INC (names.pn_version, data, 2, end);
3465 SAFE_BYTE_GET_AND_INC (names.pn_offset, data, offset_size, end);
3466
3467 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
3468 && num_debug_info_entries > 0
3469 && find_debug_info_for_offset (names.pn_offset) == NULL)
3470 warn (_(".debug_info offset of 0x%lx in %s section does not point to a CU header.\n"),
3471 (unsigned long) names.pn_offset, section->name);
3472
3473 SAFE_BYTE_GET_AND_INC (names.pn_size, data, offset_size, end);
3474
3475 start += names.pn_length + initial_length_size;
3476
3477 if (names.pn_version != 2 && names.pn_version != 3)
3478 {
3479 static int warned = 0;
3480
3481 if (! warned)
3482 {
3483 warn (_("Only DWARF 2 and 3 pubnames are currently supported\n"));
3484 warned = 1;
3485 }
3486
3487 continue;
3488 }
3489
3490 printf (_(" Length: %ld\n"),
3491 (long) names.pn_length);
3492 printf (_(" Version: %d\n"),
3493 names.pn_version);
3494 printf (_(" Offset into .debug_info section: 0x%lx\n"),
3495 (unsigned long) names.pn_offset);
3496 printf (_(" Size of area in .debug_info section: %ld\n"),
3497 (long) names.pn_size);
3498
3499 printf (_("\n Offset\tName\n"));
3500
3501 do
3502 {
3503 SAFE_BYTE_GET (offset, data, offset_size, end);
3504
3505 if (offset != 0)
3506 {
3507 data += offset_size;
3508 printf (" %-6lx\t%s\n", offset, data);
3509 data += strnlen ((char *) data, end - data) + 1;
3510 }
3511 }
3512 while (offset != 0);
3513 }
3514
3515 printf ("\n");
3516 return 1;
3517 }
3518
3519 static int
3520 display_debug_macinfo (struct dwarf_section *section,
3521 void *file ATTRIBUTE_UNUSED)
3522 {
3523 unsigned char *start = section->start;
3524 unsigned char *end = start + section->size;
3525 unsigned char *curr = start;
3526 unsigned int bytes_read;
3527 enum dwarf_macinfo_record_type op;
3528
3529 printf (_("Contents of the %s section:\n\n"), section->name);
3530
3531 while (curr < end)
3532 {
3533 unsigned int lineno;
3534 const unsigned char *string;
3535
3536 op = (enum dwarf_macinfo_record_type) *curr;
3537 curr++;
3538
3539 switch (op)
3540 {
3541 case DW_MACINFO_start_file:
3542 {
3543 unsigned int filenum;
3544
3545 lineno = read_uleb128 (curr, & bytes_read, end);
3546 curr += bytes_read;
3547 filenum = read_uleb128 (curr, & bytes_read, end);
3548 curr += bytes_read;
3549
3550 printf (_(" DW_MACINFO_start_file - lineno: %d filenum: %d\n"),
3551 lineno, filenum);
3552 }
3553 break;
3554
3555 case DW_MACINFO_end_file:
3556 printf (_(" DW_MACINFO_end_file\n"));
3557 break;
3558
3559 case DW_MACINFO_define:
3560 lineno = read_uleb128 (curr, & bytes_read, end);
3561 curr += bytes_read;
3562 string = curr;
3563 curr += strnlen ((char *) string, end - string) + 1;
3564 printf (_(" DW_MACINFO_define - lineno : %d macro : %s\n"),
3565 lineno, string);
3566 break;
3567
3568 case DW_MACINFO_undef:
3569 lineno = read_uleb128 (curr, & bytes_read, end);
3570 curr += bytes_read;
3571 string = curr;
3572 curr += strnlen ((char *) string, end - string) + 1;
3573 printf (_(" DW_MACINFO_undef - lineno : %d macro : %s\n"),
3574 lineno, string);
3575 break;
3576
3577 case DW_MACINFO_vendor_ext:
3578 {
3579 unsigned int constant;
3580
3581 constant = read_uleb128 (curr, & bytes_read, end);
3582 curr += bytes_read;
3583 string = curr;
3584 curr += strnlen ((char *) string, end - string) + 1;
3585 printf (_(" DW_MACINFO_vendor_ext - constant : %d string : %s\n"),
3586 constant, string);
3587 }
3588 break;
3589 }
3590 }
3591
3592 return 1;
3593 }
3594
3595 /* Given LINE_OFFSET into the .debug_line section, attempt to return
3596 filename and dirname corresponding to file name table entry with index
3597 FILEIDX. Return NULL on failure. */
3598
3599 static unsigned char *
3600 get_line_filename_and_dirname (dwarf_vma line_offset,
3601 dwarf_vma fileidx,
3602 unsigned char **dir_name)
3603 {
3604 struct dwarf_section *section = &debug_displays [line].section;
3605 unsigned char *hdrptr, *dirtable, *file_name;
3606 unsigned int offset_size, initial_length_size;
3607 unsigned int version, opcode_base, bytes_read;
3608 dwarf_vma length, diridx;
3609 const unsigned char * end;
3610
3611 *dir_name = NULL;
3612 if (section->start == NULL
3613 || line_offset >= section->size
3614 || fileidx == 0)
3615 return NULL;
3616
3617 hdrptr = section->start + line_offset;
3618 end = section->start + section->size;
3619
3620 SAFE_BYTE_GET_AND_INC (length, hdrptr, 4, end);
3621 if (length == 0xffffffff)
3622 {
3623 /* This section is 64-bit DWARF 3. */
3624 SAFE_BYTE_GET_AND_INC (length, hdrptr, 8, end);
3625 offset_size = 8;
3626 initial_length_size = 12;
3627 }
3628 else
3629 {
3630 offset_size = 4;
3631 initial_length_size = 4;
3632 }
3633 if (length + initial_length_size > section->size)
3634 return NULL;
3635
3636 SAFE_BYTE_GET_AND_INC (version, hdrptr, 2, end);
3637 if (version != 2 && version != 3 && version != 4)
3638 return NULL;
3639 hdrptr += offset_size + 1;/* Skip prologue_length and min_insn_length. */
3640 if (version >= 4)
3641 hdrptr++; /* Skip max_ops_per_insn. */
3642 hdrptr += 3; /* Skip default_is_stmt, line_base, line_range. */
3643
3644 SAFE_BYTE_GET_AND_INC (opcode_base, hdrptr, 1, end);
3645 if (opcode_base == 0)
3646 return NULL;
3647
3648 hdrptr += opcode_base - 1;
3649 dirtable = hdrptr;
3650 /* Skip over dirname table. */
3651 while (*hdrptr != '\0')
3652 hdrptr += strnlen ((char *) hdrptr, end - hdrptr) + 1;
3653 hdrptr++; /* Skip the NUL at the end of the table. */
3654 /* Now skip over preceding filename table entries. */
3655 for (; *hdrptr != '\0' && fileidx > 1; fileidx--)
3656 {
3657 hdrptr += strnlen ((char *) hdrptr, end - hdrptr) + 1;
3658 read_uleb128 (hdrptr, &bytes_read, end);
3659 hdrptr += bytes_read;
3660 read_uleb128 (hdrptr, &bytes_read, end);
3661 hdrptr += bytes_read;
3662 read_uleb128 (hdrptr, &bytes_read, end);
3663 hdrptr += bytes_read;
3664 }
3665 if (hdrptr == end || *hdrptr == '\0')
3666 return NULL;
3667 file_name = hdrptr;
3668 hdrptr += strnlen ((char *) hdrptr, end - hdrptr) + 1;
3669 diridx = read_uleb128 (hdrptr, &bytes_read, end);
3670 if (diridx == 0)
3671 return file_name;
3672 for (; *dirtable != '\0' && diridx > 1; diridx--)
3673 dirtable += strnlen ((char *) dirtable, end - dirtable) + 1;
3674 if (*dirtable == '\0')
3675 return NULL;
3676 *dir_name = dirtable;
3677 return file_name;
3678 }
3679
3680 static int
3681 display_debug_macro (struct dwarf_section *section,
3682 void *file)
3683 {
3684 unsigned char *start = section->start;
3685 unsigned char *end = start + section->size;
3686 unsigned char *curr = start;
3687 unsigned char *extended_op_buf[256];
3688 unsigned int bytes_read;
3689
3690 load_debug_section (str, file);
3691 load_debug_section (line, file);
3692
3693 printf (_("Contents of the %s section:\n\n"), section->name);
3694
3695 while (curr < end)
3696 {
3697 unsigned int lineno, version, flags;
3698 unsigned int offset_size = 4;
3699 const unsigned char *string;
3700 dwarf_vma line_offset = 0, sec_offset = curr - start, offset;
3701 unsigned char **extended_ops = NULL;
3702
3703 SAFE_BYTE_GET_AND_INC (version, curr, 2, end);
3704 if (version != 4)
3705 {
3706 error (_("Only GNU extension to DWARF 4 of %s is currently supported.\n"),
3707 section->name);
3708 return 0;
3709 }
3710
3711 SAFE_BYTE_GET_AND_INC (flags, curr, 1, end);
3712 if (flags & 1)
3713 offset_size = 8;
3714 printf (_(" Offset: 0x%lx\n"),
3715 (unsigned long) sec_offset);
3716 printf (_(" Version: %d\n"), version);
3717 printf (_(" Offset size: %d\n"), offset_size);
3718 if (flags & 2)
3719 {
3720 SAFE_BYTE_GET_AND_INC (line_offset, curr, offset_size, end);
3721 printf (_(" Offset into .debug_line: 0x%lx\n"),
3722 (unsigned long) line_offset);
3723 }
3724 if (flags & 4)
3725 {
3726 unsigned int i, count, op;
3727 dwarf_vma nargs, n;
3728
3729 SAFE_BYTE_GET_AND_INC (count, curr, 1, end);
3730
3731 memset (extended_op_buf, 0, sizeof (extended_op_buf));
3732 extended_ops = extended_op_buf;
3733 if (count)
3734 {
3735 printf (_(" Extension opcode arguments:\n"));
3736 for (i = 0; i < count; i++)
3737 {
3738 SAFE_BYTE_GET_AND_INC (op, curr, 1, end);
3739 extended_ops[op] = curr;
3740 nargs = read_uleb128 (curr, &bytes_read, end);
3741 curr += bytes_read;
3742 if (nargs == 0)
3743 printf (_(" DW_MACRO_GNU_%02x has no arguments\n"), op);
3744 else
3745 {
3746 printf (_(" DW_MACRO_GNU_%02x arguments: "), op);
3747 for (n = 0; n < nargs; n++)
3748 {
3749 unsigned int form;
3750
3751 SAFE_BYTE_GET_AND_INC (form, curr, 1, end);
3752 printf ("%s%s", get_FORM_name (form),
3753 n == nargs - 1 ? "\n" : ", ");
3754 switch (form)
3755 {
3756 case DW_FORM_data1:
3757 case DW_FORM_data2:
3758 case DW_FORM_data4:
3759 case DW_FORM_data8:
3760 case DW_FORM_sdata:
3761 case DW_FORM_udata:
3762 case DW_FORM_block:
3763 case DW_FORM_block1:
3764 case DW_FORM_block2:
3765 case DW_FORM_block4:
3766 case DW_FORM_flag:
3767 case DW_FORM_string:
3768 case DW_FORM_strp:
3769 case DW_FORM_sec_offset:
3770 break;
3771 default:
3772 error (_("Invalid extension opcode form %s\n"),
3773 get_FORM_name (form));
3774 return 0;
3775 }
3776 }
3777 }
3778 }
3779 }
3780 }
3781 printf ("\n");
3782
3783 while (1)
3784 {
3785 unsigned int op;
3786
3787 if (curr >= end)
3788 {
3789 error (_(".debug_macro section not zero terminated\n"));
3790 return 0;
3791 }
3792
3793 SAFE_BYTE_GET_AND_INC (op, curr, 1, end);
3794 if (op == 0)
3795 break;
3796
3797 switch (op)
3798 {
3799 case DW_MACRO_GNU_start_file:
3800 {
3801 unsigned int filenum;
3802 unsigned char *file_name = NULL, *dir_name = NULL;
3803
3804 lineno = read_uleb128 (curr, &bytes_read, end);
3805 curr += bytes_read;
3806 filenum = read_uleb128 (curr, &bytes_read, end);
3807 curr += bytes_read;
3808
3809 if ((flags & 2) == 0)
3810 error (_("DW_MACRO_GNU_start_file used, but no .debug_line offset provided.\n"));
3811 else
3812 file_name
3813 = get_line_filename_and_dirname (line_offset, filenum,
3814 &dir_name);
3815 if (file_name == NULL)
3816 printf (_(" DW_MACRO_GNU_start_file - lineno: %d filenum: %d\n"),
3817 lineno, filenum);
3818 else
3819 printf (_(" DW_MACRO_GNU_start_file - lineno: %d filenum: %d filename: %s%s%s\n"),
3820 lineno, filenum,
3821 dir_name != NULL ? (const char *) dir_name : "",
3822 dir_name != NULL ? "/" : "", file_name);
3823 }
3824 break;
3825
3826 case DW_MACRO_GNU_end_file:
3827 printf (_(" DW_MACRO_GNU_end_file\n"));
3828 break;
3829
3830 case DW_MACRO_GNU_define:
3831 lineno = read_uleb128 (curr, &bytes_read, end);
3832 curr += bytes_read;
3833 string = curr;
3834 curr += strnlen ((char *) string, end - string) + 1;
3835 printf (_(" DW_MACRO_GNU_define - lineno : %d macro : %s\n"),
3836 lineno, string);
3837 break;
3838
3839 case DW_MACRO_GNU_undef:
3840 lineno = read_uleb128 (curr, &bytes_read, end);
3841 curr += bytes_read;
3842 string = curr;
3843 curr += strnlen ((char *) string, end - string) + 1;
3844 printf (_(" DW_MACRO_GNU_undef - lineno : %d macro : %s\n"),
3845 lineno, string);
3846 break;
3847
3848 case DW_MACRO_GNU_define_indirect:
3849 lineno = read_uleb128 (curr, &bytes_read, end);
3850 curr += bytes_read;
3851 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3852 string = fetch_indirect_string (offset);
3853 printf (_(" DW_MACRO_GNU_define_indirect - lineno : %d macro : %s\n"),
3854 lineno, string);
3855 break;
3856
3857 case DW_MACRO_GNU_undef_indirect:
3858 lineno = read_uleb128 (curr, &bytes_read, end);
3859 curr += bytes_read;
3860 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3861 string = fetch_indirect_string (offset);
3862 printf (_(" DW_MACRO_GNU_undef_indirect - lineno : %d macro : %s\n"),
3863 lineno, string);
3864 break;
3865
3866 case DW_MACRO_GNU_transparent_include:
3867 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3868 printf (_(" DW_MACRO_GNU_transparent_include - offset : 0x%lx\n"),
3869 (unsigned long) offset);
3870 break;
3871
3872 case DW_MACRO_GNU_define_indirect_alt:
3873 lineno = read_uleb128 (curr, &bytes_read, end);
3874 curr += bytes_read;
3875 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3876 printf (_(" DW_MACRO_GNU_define_indirect_alt - lineno : %d macro offset : 0x%lx\n"),
3877 lineno, (unsigned long) offset);
3878 break;
3879
3880 case DW_MACRO_GNU_undef_indirect_alt:
3881 lineno = read_uleb128 (curr, &bytes_read, end);
3882 curr += bytes_read;
3883 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3884 printf (_(" DW_MACRO_GNU_undef_indirect_alt - lineno : %d macro offset : 0x%lx\n"),
3885 lineno, (unsigned long) offset);
3886 break;
3887
3888 case DW_MACRO_GNU_transparent_include_alt:
3889 SAFE_BYTE_GET_AND_INC (offset, curr, offset_size, end);
3890 printf (_(" DW_MACRO_GNU_transparent_include_alt - offset : 0x%lx\n"),
3891 (unsigned long) offset);
3892 break;
3893
3894 default:
3895 if (extended_ops == NULL || extended_ops[op] == NULL)
3896 {
3897 error (_(" Unknown macro opcode %02x seen\n"), op);
3898 return 0;
3899 }
3900 else
3901 {
3902 /* Skip over unhandled opcodes. */
3903 dwarf_vma nargs, n;
3904 unsigned char *desc = extended_ops[op];
3905 nargs = read_uleb128 (desc, &bytes_read, end);
3906 desc += bytes_read;
3907 if (nargs == 0)
3908 {
3909 printf (_(" DW_MACRO_GNU_%02x\n"), op);
3910 break;
3911 }
3912 printf (_(" DW_MACRO_GNU_%02x -"), op);
3913 for (n = 0; n < nargs; n++)
3914 {
3915 int val;
3916
3917 SAFE_BYTE_GET_AND_INC (val, desc, 1, end);
3918 curr
3919 = read_and_display_attr_value (0, val,
3920 curr, end, 0, 0, offset_size,
3921 version, NULL, 0, NULL,
3922 NULL);
3923 if (n != nargs - 1)
3924 printf (",");
3925 }
3926 printf ("\n");
3927 }
3928 break;
3929 }
3930 }
3931
3932 printf ("\n");
3933 }
3934
3935 return 1;
3936 }
3937
3938 static int
3939 display_debug_abbrev (struct dwarf_section *section,
3940 void *file ATTRIBUTE_UNUSED)
3941 {
3942 abbrev_entry *entry;
3943 unsigned char *start = section->start;
3944 unsigned char *end = start + section->size;
3945
3946 printf (_("Contents of the %s section:\n\n"), section->name);
3947
3948 do
3949 {
3950 unsigned char *last;
3951
3952 free_abbrevs ();
3953
3954 last = start;
3955 start = process_abbrev_section (start, end);
3956
3957 if (first_abbrev == NULL)
3958 continue;
3959
3960 printf (_(" Number TAG (0x%lx)\n"), (long) (last - section->start));
3961
3962 for (entry = first_abbrev; entry; entry = entry->next)
3963 {
3964 abbrev_attr *attr;
3965
3966 printf (" %ld %s [%s]\n",
3967 entry->entry,
3968 get_TAG_name (entry->tag),
3969 entry->children ? _("has children") : _("no children"));
3970
3971 for (attr = entry->first_attr; attr; attr = attr->next)
3972 printf (" %-18s %s\n",
3973 get_AT_name (attr->attribute),
3974 get_FORM_name (attr->form));
3975 }
3976 }
3977 while (start);
3978
3979 printf ("\n");
3980
3981 return 1;
3982 }
3983
3984 /* Display a location list from a normal (ie, non-dwo) .debug_loc section. */
3985
3986 static void
3987 display_loc_list (struct dwarf_section *section,
3988 unsigned char **start_ptr,
3989 int debug_info_entry,
3990 unsigned long offset,
3991 unsigned long base_address,
3992 int has_frame_base)
3993 {
3994 unsigned char *start = *start_ptr;
3995 unsigned char *section_end = section->start + section->size;
3996 unsigned long cu_offset = debug_information [debug_info_entry].cu_offset;
3997 unsigned int pointer_size = debug_information [debug_info_entry].pointer_size;
3998 unsigned int offset_size = debug_information [debug_info_entry].offset_size;
3999 int dwarf_version = debug_information [debug_info_entry].dwarf_version;
4000
4001 dwarf_vma begin;
4002 dwarf_vma end;
4003 unsigned short length;
4004 int need_frame_base;
4005
4006 while (1)
4007 {
4008 if (start + 2 * pointer_size > section_end)
4009 {
4010 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4011 offset);
4012 break;
4013 }
4014
4015 printf (" %8.8lx ", offset + (start - *start_ptr));
4016
4017 /* Note: we use sign extension here in order to be sure that we can detect
4018 the -1 escape value. Sign extension into the top 32 bits of a 32-bit
4019 address will not affect the values that we display since we always show
4020 hex values, and always the bottom 32-bits. */
4021 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, section_end);
4022 SAFE_BYTE_GET_AND_INC (end, start, pointer_size, section_end);
4023
4024 if (begin == 0 && end == 0)
4025 {
4026 printf (_("<End of list>\n"));
4027 break;
4028 }
4029
4030 /* Check base address specifiers. */
4031 if (begin == (dwarf_vma) -1 && end != (dwarf_vma) -1)
4032 {
4033 base_address = end;
4034 print_dwarf_vma (begin, pointer_size);
4035 print_dwarf_vma (end, pointer_size);
4036 printf (_("(base address)\n"));
4037 continue;
4038 }
4039
4040 if (start + 2 > section_end)
4041 {
4042 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4043 offset);
4044 break;
4045 }
4046
4047 SAFE_BYTE_GET_AND_INC (length, start, 2, section_end);
4048
4049 if (start + length > section_end)
4050 {
4051 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4052 offset);
4053 break;
4054 }
4055
4056 print_dwarf_vma (begin + base_address, pointer_size);
4057 print_dwarf_vma (end + base_address, pointer_size);
4058
4059 putchar ('(');
4060 need_frame_base = decode_location_expression (start,
4061 pointer_size,
4062 offset_size,
4063 dwarf_version,
4064 length,
4065 cu_offset, section);
4066 putchar (')');
4067
4068 if (need_frame_base && !has_frame_base)
4069 printf (_(" [without DW_AT_frame_base]"));
4070
4071 if (begin == end)
4072 fputs (_(" (start == end)"), stdout);
4073 else if (begin > end)
4074 fputs (_(" (start > end)"), stdout);
4075
4076 putchar ('\n');
4077
4078 start += length;
4079 }
4080
4081 *start_ptr = start;
4082 }
4083
4084 /* Print a .debug_addr table index in decimal, surrounded by square brackets,
4085 right-adjusted in a field of length LEN, and followed by a space. */
4086
4087 static void
4088 print_addr_index (unsigned int idx, unsigned int len)
4089 {
4090 static char buf[15];
4091 snprintf (buf, sizeof (buf), "[%d]", idx);
4092 printf ("%*s ", len, buf);
4093 }
4094
4095 /* Display a location list from a .dwo section. It uses address indexes rather
4096 than embedded addresses. This code closely follows display_loc_list, but the
4097 two are sufficiently different that combining things is very ugly. */
4098
4099 static void
4100 display_loc_list_dwo (struct dwarf_section *section,
4101 unsigned char **start_ptr,
4102 int debug_info_entry,
4103 unsigned long offset,
4104 int has_frame_base)
4105 {
4106 unsigned char *start = *start_ptr;
4107 unsigned char *section_end = section->start + section->size;
4108 unsigned long cu_offset = debug_information [debug_info_entry].cu_offset;
4109 unsigned int pointer_size = debug_information [debug_info_entry].pointer_size;
4110 unsigned int offset_size = debug_information [debug_info_entry].offset_size;
4111 int dwarf_version = debug_information [debug_info_entry].dwarf_version;
4112 int entry_type;
4113 unsigned short length;
4114 int need_frame_base;
4115 unsigned int idx;
4116 unsigned int bytes_read;
4117
4118 while (1)
4119 {
4120 printf (" %8.8lx ", offset + (start - *start_ptr));
4121
4122 if (start >= section_end)
4123 {
4124 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4125 offset);
4126 break;
4127 }
4128
4129 SAFE_BYTE_GET_AND_INC (entry_type, start, 1, section_end);
4130 switch (entry_type)
4131 {
4132 case 0: /* A terminating entry. */
4133 *start_ptr = start;
4134 printf (_("<End of list>\n"));
4135 return;
4136 case 1: /* A base-address entry. */
4137 idx = read_uleb128 (start, &bytes_read, section_end);
4138 start += bytes_read;
4139 print_addr_index (idx, 8);
4140 printf (" ");
4141 printf (_("(base address selection entry)\n"));
4142 continue;
4143 case 2: /* A start/end entry. */
4144 idx = read_uleb128 (start, &bytes_read, section_end);
4145 start += bytes_read;
4146 print_addr_index (idx, 8);
4147 idx = read_uleb128 (start, &bytes_read, section_end);
4148 start += bytes_read;
4149 print_addr_index (idx, 8);
4150 break;
4151 case 3: /* A start/length entry. */
4152 idx = read_uleb128 (start, &bytes_read, section_end);
4153 start += bytes_read;
4154 print_addr_index (idx, 8);
4155 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
4156 printf ("%08x ", idx);
4157 break;
4158 case 4: /* An offset pair entry. */
4159 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
4160 printf ("%08x ", idx);
4161 SAFE_BYTE_GET_AND_INC (idx, start, 4, section_end);
4162 printf ("%08x ", idx);
4163 break;
4164 default:
4165 warn (_("Unknown location list entry type 0x%x.\n"), entry_type);
4166 *start_ptr = start;
4167 return;
4168 }
4169
4170 if (start + 2 > section_end)
4171 {
4172 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4173 offset);
4174 break;
4175 }
4176
4177 SAFE_BYTE_GET_AND_INC (length, start, 2, section_end);
4178 if (start + length > section_end)
4179 {
4180 warn (_("Location list starting at offset 0x%lx is not terminated.\n"),
4181 offset);
4182 break;
4183 }
4184
4185 putchar ('(');
4186 need_frame_base = decode_location_expression (start,
4187 pointer_size,
4188 offset_size,
4189 dwarf_version,
4190 length,
4191 cu_offset, section);
4192 putchar (')');
4193
4194 if (need_frame_base && !has_frame_base)
4195 printf (_(" [without DW_AT_frame_base]"));
4196
4197 putchar ('\n');
4198
4199 start += length;
4200 }
4201
4202 *start_ptr = start;
4203 }
4204
4205 /* Sort array of indexes in ascending order of loc_offsets[idx]. */
4206
4207 static dwarf_vma *loc_offsets;
4208
4209 static int
4210 loc_offsets_compar (const void *ap, const void *bp)
4211 {
4212 dwarf_vma a = loc_offsets[*(const unsigned int *) ap];
4213 dwarf_vma b = loc_offsets[*(const unsigned int *) bp];
4214
4215 return (a > b) - (b > a);
4216 }
4217
4218 static int
4219 display_debug_loc (struct dwarf_section *section, void *file)
4220 {
4221 unsigned char *start = section->start;
4222 unsigned long bytes;
4223 unsigned char *section_begin = start;
4224 unsigned int num_loc_list = 0;
4225 unsigned long last_offset = 0;
4226 unsigned int first = 0;
4227 unsigned int i;
4228 unsigned int j;
4229 unsigned int k;
4230 int seen_first_offset = 0;
4231 int locs_sorted = 1;
4232 unsigned char *next;
4233 unsigned int *array = NULL;
4234 const char *suffix = strrchr (section->name, '.');
4235 int is_dwo = 0;
4236
4237 if (suffix && strcmp (suffix, ".dwo") == 0)
4238 is_dwo = 1;
4239
4240 bytes = section->size;
4241
4242 if (bytes == 0)
4243 {
4244 printf (_("\nThe %s section is empty.\n"), section->name);
4245 return 0;
4246 }
4247
4248 if (load_debug_info (file) == 0)
4249 {
4250 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
4251 section->name);
4252 return 0;
4253 }
4254
4255 /* Check the order of location list in .debug_info section. If
4256 offsets of location lists are in the ascending order, we can
4257 use `debug_information' directly. */
4258 for (i = 0; i < num_debug_info_entries; i++)
4259 {
4260 unsigned int num;
4261
4262 num = debug_information [i].num_loc_offsets;
4263 if (num > num_loc_list)
4264 num_loc_list = num;
4265
4266 /* Check if we can use `debug_information' directly. */
4267 if (locs_sorted && num != 0)
4268 {
4269 if (!seen_first_offset)
4270 {
4271 /* This is the first location list. */
4272 last_offset = debug_information [i].loc_offsets [0];
4273 first = i;
4274 seen_first_offset = 1;
4275 j = 1;
4276 }
4277 else
4278 j = 0;
4279
4280 for (; j < num; j++)
4281 {
4282 if (last_offset >
4283 debug_information [i].loc_offsets [j])
4284 {
4285 locs_sorted = 0;
4286 break;
4287 }
4288 last_offset = debug_information [i].loc_offsets [j];
4289 }
4290 }
4291 }
4292
4293 if (!seen_first_offset)
4294 error (_("No location lists in .debug_info section!\n"));
4295
4296 /* DWARF sections under Mach-O have non-zero addresses. */
4297 if (debug_information [first].num_loc_offsets > 0
4298 && debug_information [first].loc_offsets [0] != section->address)
4299 warn (_("Location lists in %s section start at 0x%s\n"),
4300 section->name,
4301 dwarf_vmatoa ("x", debug_information [first].loc_offsets [0]));
4302
4303 if (!locs_sorted)
4304 array = (unsigned int *) xcmalloc (num_loc_list, sizeof (unsigned int));
4305 printf (_("Contents of the %s section:\n\n"), section->name);
4306 printf (_(" Offset Begin End Expression\n"));
4307
4308 seen_first_offset = 0;
4309 for (i = first; i < num_debug_info_entries; i++)
4310 {
4311 unsigned long offset;
4312 unsigned long base_address;
4313 int has_frame_base;
4314
4315 if (!locs_sorted)
4316 {
4317 for (k = 0; k < debug_information [i].num_loc_offsets; k++)
4318 array[k] = k;
4319 loc_offsets = debug_information [i].loc_offsets;
4320 qsort (array, debug_information [i].num_loc_offsets,
4321 sizeof (*array), loc_offsets_compar);
4322 }
4323
4324 for (k = 0; k < debug_information [i].num_loc_offsets; k++)
4325 {
4326 j = locs_sorted ? k : array[k];
4327 if (k
4328 && debug_information [i].loc_offsets [locs_sorted
4329 ? k - 1 : array [k - 1]]
4330 == debug_information [i].loc_offsets [j])
4331 continue;
4332 has_frame_base = debug_information [i].have_frame_base [j];
4333 /* DWARF sections under Mach-O have non-zero addresses. */
4334 offset = debug_information [i].loc_offsets [j] - section->address;
4335 next = section_begin + offset;
4336 base_address = debug_information [i].base_address;
4337
4338 if (!seen_first_offset)
4339 seen_first_offset = 1;
4340 else
4341 {
4342 if (start < next)
4343 warn (_("There is a hole [0x%lx - 0x%lx] in .debug_loc section.\n"),
4344 (unsigned long) (start - section_begin),
4345 (unsigned long) (next - section_begin));
4346 else if (start > next)
4347 warn (_("There is an overlap [0x%lx - 0x%lx] in .debug_loc section.\n"),
4348 (unsigned long) (start - section_begin),
4349 (unsigned long) (next - section_begin));
4350 }
4351 start = next;
4352
4353 if (offset >= bytes)
4354 {
4355 warn (_("Offset 0x%lx is bigger than .debug_loc section size.\n"),
4356 offset);
4357 continue;
4358 }
4359
4360 if (is_dwo)
4361 display_loc_list_dwo (section, &start, i, offset, has_frame_base);
4362 else
4363 display_loc_list (section, &start, i, offset, base_address,
4364 has_frame_base);
4365 }
4366 }
4367
4368 if (start < section->start + section->size)
4369 warn (_("There are %ld unused bytes at the end of section %s\n"),
4370 (long) (section->start + section->size - start), section->name);
4371 putchar ('\n');
4372 free (array);
4373 return 1;
4374 }
4375
4376 static int
4377 display_debug_str (struct dwarf_section *section,
4378 void *file ATTRIBUTE_UNUSED)
4379 {
4380 unsigned char *start = section->start;
4381 unsigned long bytes = section->size;
4382 dwarf_vma addr = section->address;
4383
4384 if (bytes == 0)
4385 {
4386 printf (_("\nThe %s section is empty.\n"), section->name);
4387 return 0;
4388 }
4389
4390 printf (_("Contents of the %s section:\n\n"), section->name);
4391
4392 while (bytes)
4393 {
4394 int j;
4395 int k;
4396 int lbytes;
4397
4398 lbytes = (bytes > 16 ? 16 : bytes);
4399
4400 printf (" 0x%8.8lx ", (unsigned long) addr);
4401
4402 for (j = 0; j < 16; j++)
4403 {
4404 if (j < lbytes)
4405 printf ("%2.2x", start[j]);
4406 else
4407 printf (" ");
4408
4409 if ((j & 3) == 3)
4410 printf (" ");
4411 }
4412
4413 for (j = 0; j < lbytes; j++)
4414 {
4415 k = start[j];
4416 if (k >= ' ' && k < 0x80)
4417 printf ("%c", k);
4418 else
4419 printf (".");
4420 }
4421
4422 putchar ('\n');
4423
4424 start += lbytes;
4425 addr += lbytes;
4426 bytes -= lbytes;
4427 }
4428
4429 putchar ('\n');
4430
4431 return 1;
4432 }
4433
4434 static int
4435 display_debug_info (struct dwarf_section *section, void *file)
4436 {
4437 return process_debug_info (section, file, section->abbrev_sec, 0, 0);
4438 }
4439
4440 static int
4441 display_debug_types (struct dwarf_section *section, void *file)
4442 {
4443 return process_debug_info (section, file, section->abbrev_sec, 0, 1);
4444 }
4445
4446 static int
4447 display_trace_info (struct dwarf_section *section, void *file)
4448 {
4449 return process_debug_info (section, file, section->abbrev_sec, 0, 0);
4450 }
4451
4452 static int
4453 display_debug_aranges (struct dwarf_section *section,
4454 void *file ATTRIBUTE_UNUSED)
4455 {
4456 unsigned char *start = section->start;
4457 unsigned char *end = start + section->size;
4458
4459 printf (_("Contents of the %s section:\n\n"), section->name);
4460
4461 /* It does not matter if this load fails,
4462 we test for that later on. */
4463 load_debug_info (file);
4464
4465 while (start < end)
4466 {
4467 unsigned char *hdrptr;
4468 DWARF2_Internal_ARange arange;
4469 unsigned char *addr_ranges;
4470 dwarf_vma length;
4471 dwarf_vma address;
4472 unsigned char address_size;
4473 int excess;
4474 int offset_size;
4475 int initial_length_size;
4476
4477 hdrptr = start;
4478
4479 SAFE_BYTE_GET_AND_INC (arange.ar_length, hdrptr, 4, end);
4480 if (arange.ar_length == 0xffffffff)
4481 {
4482 SAFE_BYTE_GET_AND_INC (arange.ar_length, hdrptr, 8, end);
4483 offset_size = 8;
4484 initial_length_size = 12;
4485 }
4486 else
4487 {
4488 offset_size = 4;
4489 initial_length_size = 4;
4490 }
4491
4492 SAFE_BYTE_GET_AND_INC (arange.ar_version, hdrptr, 2, end);
4493 SAFE_BYTE_GET_AND_INC (arange.ar_info_offset, hdrptr, offset_size, end);
4494
4495 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE
4496 && num_debug_info_entries > 0
4497 && find_debug_info_for_offset (arange.ar_info_offset) == NULL)
4498 warn (_(".debug_info offset of 0x%lx in %s section does not point to a CU header.\n"),
4499 (unsigned long) arange.ar_info_offset, section->name);
4500
4501 SAFE_BYTE_GET_AND_INC (arange.ar_pointer_size, hdrptr, 1, end);
4502 SAFE_BYTE_GET_AND_INC (arange.ar_segment_size, hdrptr, 1, end);
4503
4504 if (arange.ar_version != 2 && arange.ar_version != 3)
4505 {
4506 warn (_("Only DWARF 2 and 3 aranges are currently supported.\n"));
4507 break;
4508 }
4509
4510 printf (_(" Length: %ld\n"),
4511 (long) arange.ar_length);
4512 printf (_(" Version: %d\n"), arange.ar_version);
4513 printf (_(" Offset into .debug_info: 0x%lx\n"),
4514 (unsigned long) arange.ar_info_offset);
4515 printf (_(" Pointer Size: %d\n"), arange.ar_pointer_size);
4516 printf (_(" Segment Size: %d\n"), arange.ar_segment_size);
4517
4518 address_size = arange.ar_pointer_size + arange.ar_segment_size;
4519
4520 if (address_size == 0)
4521 {
4522 error (_("Invalid address size in %s section!\n"),
4523 section->name);
4524 break;
4525 }
4526
4527 /* The DWARF spec does not require that the address size be a power
4528 of two, but we do. This will have to change if we ever encounter
4529 an uneven architecture. */
4530 if ((address_size & (address_size - 1)) != 0)
4531 {
4532 warn (_("Pointer size + Segment size is not a power of two.\n"));
4533 break;
4534 }
4535
4536 if (address_size > 4)
4537 printf (_("\n Address Length\n"));
4538 else
4539 printf (_("\n Address Length\n"));
4540
4541 addr_ranges = hdrptr;
4542
4543 /* Must pad to an alignment boundary that is twice the address size. */
4544 excess = (hdrptr - start) % (2 * address_size);
4545 if (excess)
4546 addr_ranges += (2 * address_size) - excess;
4547
4548 start += arange.ar_length + initial_length_size;
4549
4550 while (addr_ranges + 2 * address_size <= start)
4551 {
4552 SAFE_BYTE_GET_AND_INC (address, addr_ranges, address_size, end);
4553 SAFE_BYTE_GET_AND_INC (length, addr_ranges, address_size, end);
4554
4555 printf (" ");
4556 print_dwarf_vma (address, address_size);
4557 print_dwarf_vma (length, address_size);
4558 putchar ('\n');
4559 }
4560 }
4561
4562 printf ("\n");
4563
4564 return 1;
4565 }
4566
4567 /* Comparison function for qsort. */
4568 static int
4569 comp_addr_base (const void * v0, const void * v1)
4570 {
4571 debug_info * info0 = (debug_info *) v0;
4572 debug_info * info1 = (debug_info *) v1;
4573 return info0->addr_base - info1->addr_base;
4574 }
4575
4576 /* Display the debug_addr section. */
4577 static int
4578 display_debug_addr (struct dwarf_section *section,
4579 void *file)
4580 {
4581 debug_info **debug_addr_info;
4582 unsigned char *entry;
4583 unsigned char *end;
4584 unsigned int i;
4585 unsigned int count;
4586
4587 if (section->size == 0)
4588 {
4589 printf (_("\nThe %s section is empty.\n"), section->name);
4590 return 0;
4591 }
4592
4593 if (load_debug_info (file) == 0)
4594 {
4595 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
4596 section->name);
4597 return 0;
4598 }
4599
4600 printf (_("Contents of the %s section:\n\n"), section->name);
4601
4602 debug_addr_info = (debug_info **) xmalloc ((num_debug_info_entries + 1)
4603 * sizeof (debug_info *));
4604
4605 count = 0;
4606 for (i = 0; i < num_debug_info_entries; i++)
4607 {
4608 if (debug_information [i].addr_base != DEBUG_INFO_UNAVAILABLE)
4609 debug_addr_info [count++] = &debug_information [i];
4610 }
4611
4612 /* Add a sentinel to make iteration convenient. */
4613 debug_addr_info [count] = (debug_info *) xmalloc (sizeof (debug_info));
4614 debug_addr_info [count]->addr_base = section->size;
4615
4616 qsort (debug_addr_info, count, sizeof (debug_info *), comp_addr_base);
4617 for (i = 0; i < count; i++)
4618 {
4619 unsigned int idx;
4620 unsigned int address_size = debug_addr_info [i]->pointer_size;
4621
4622 printf (_(" For compilation unit at offset 0x%s:\n"),
4623 dwarf_vmatoa ("x", debug_addr_info [i]->cu_offset));
4624
4625 printf (_("\tIndex\tAddress\n"));
4626 entry = section->start + debug_addr_info [i]->addr_base;
4627 end = section->start + debug_addr_info [i + 1]->addr_base;
4628 idx = 0;
4629 while (entry < end)
4630 {
4631 dwarf_vma base = byte_get (entry, address_size);
4632 printf (_("\t%d:\t"), idx);
4633 print_dwarf_vma (base, address_size);
4634 printf ("\n");
4635 entry += address_size;
4636 idx++;
4637 }
4638 }
4639 printf ("\n");
4640
4641 free (debug_addr_info);
4642 return 1;
4643 }
4644
4645 /* Display the .debug_str_offsets and .debug_str_offsets.dwo sections. */
4646 static int
4647 display_debug_str_offsets (struct dwarf_section *section,
4648 void *file ATTRIBUTE_UNUSED)
4649 {
4650 if (section->size == 0)
4651 {
4652 printf (_("\nThe %s section is empty.\n"), section->name);
4653 return 0;
4654 }
4655 /* TODO: Dump the contents. This is made somewhat difficult by not knowing
4656 what the offset size is for this section. */
4657 return 1;
4658 }
4659
4660 /* Each debug_information[x].range_lists[y] gets this representation for
4661 sorting purposes. */
4662
4663 struct range_entry
4664 {
4665 /* The debug_information[x].range_lists[y] value. */
4666 unsigned long ranges_offset;
4667
4668 /* Original debug_information to find parameters of the data. */
4669 debug_info *debug_info_p;
4670 };
4671
4672 /* Sort struct range_entry in ascending order of its RANGES_OFFSET. */
4673
4674 static int
4675 range_entry_compar (const void *ap, const void *bp)
4676 {
4677 const struct range_entry *a_re = (const struct range_entry *) ap;
4678 const struct range_entry *b_re = (const struct range_entry *) bp;
4679 const unsigned long a = a_re->ranges_offset;
4680 const unsigned long b = b_re->ranges_offset;
4681
4682 return (a > b) - (b > a);
4683 }
4684
4685 static int
4686 display_debug_ranges (struct dwarf_section *section,
4687 void *file ATTRIBUTE_UNUSED)
4688 {
4689 unsigned char *start = section->start;
4690 unsigned char *last_start = start;
4691 unsigned long bytes = section->size;
4692 unsigned char *section_begin = start;
4693 unsigned char *finish = start + bytes;
4694 unsigned int num_range_list, i;
4695 struct range_entry *range_entries, *range_entry_fill;
4696
4697 if (bytes == 0)
4698 {
4699 printf (_("\nThe %s section is empty.\n"), section->name);
4700 return 0;
4701 }
4702
4703 if (load_debug_info (file) == 0)
4704 {
4705 warn (_("Unable to load/parse the .debug_info section, so cannot interpret the %s section.\n"),
4706 section->name);
4707 return 0;
4708 }
4709
4710 num_range_list = 0;
4711 for (i = 0; i < num_debug_info_entries; i++)
4712 num_range_list += debug_information [i].num_range_lists;
4713
4714 if (num_range_list == 0)
4715 {
4716 /* This can happen when the file was compiled with -gsplit-debug
4717 which removes references to range lists from the primary .o file. */
4718 printf (_("No range lists in .debug_info section.\n"));
4719 return 1;
4720 }
4721
4722 range_entries = (struct range_entry *)
4723 xmalloc (sizeof (*range_entries) * num_range_list);
4724 range_entry_fill = range_entries;
4725
4726 for (i = 0; i < num_debug_info_entries; i++)
4727 {
4728 debug_info *debug_info_p = &debug_information[i];
4729 unsigned int j;
4730
4731 for (j = 0; j < debug_info_p->num_range_lists; j++)
4732 {
4733 range_entry_fill->ranges_offset = debug_info_p->range_lists[j];
4734 range_entry_fill->debug_info_p = debug_info_p;
4735 range_entry_fill++;
4736 }
4737 }
4738
4739 qsort (range_entries, num_range_list, sizeof (*range_entries),
4740 range_entry_compar);
4741
4742 /* DWARF sections under Mach-O have non-zero addresses. */
4743 if (dwarf_check != 0 && range_entries[0].ranges_offset != section->address)
4744 warn (_("Range lists in %s section start at 0x%lx\n"),
4745 section->name, range_entries[0].ranges_offset);
4746
4747 printf (_("Contents of the %s section:\n\n"), section->name);
4748 printf (_(" Offset Begin End\n"));
4749
4750 for (i = 0; i < num_range_list; i++)
4751 {
4752 struct range_entry *range_entry = &range_entries[i];
4753 debug_info *debug_info_p = range_entry->debug_info_p;
4754 unsigned int pointer_size;
4755 unsigned long offset;
4756 unsigned char *next;
4757 unsigned long base_address;
4758
4759 pointer_size = debug_info_p->pointer_size;
4760
4761 /* DWARF sections under Mach-O have non-zero addresses. */
4762 offset = range_entry->ranges_offset - section->address;
4763 next = section_begin + offset;
4764 base_address = debug_info_p->base_address;
4765
4766 if (dwarf_check != 0 && i > 0)
4767 {
4768 if (start < next)
4769 warn (_("There is a hole [0x%lx - 0x%lx] in %s section.\n"),
4770 (unsigned long) (start - section_begin),
4771 (unsigned long) (next - section_begin), section->name);
4772 else if (start > next)
4773 {
4774 if (next == last_start)
4775 continue;
4776 warn (_("There is an overlap [0x%lx - 0x%lx] in %s section.\n"),
4777 (unsigned long) (start - section_begin),
4778 (unsigned long) (next - section_begin), section->name);
4779 }
4780 }
4781 start = next;
4782 last_start = next;
4783
4784 while (start < finish)
4785 {
4786 dwarf_vma begin;
4787 dwarf_vma end;
4788
4789 /* Note: we use sign extension here in order to be sure that
4790 we can detect the -1 escape value. Sign extension into the
4791 top 32 bits of a 32-bit address will not affect the values
4792 that we display since we always show hex values, and always
4793 the bottom 32-bits. */
4794 SAFE_BYTE_GET_AND_INC (begin, start, pointer_size, finish);
4795 if (start >= finish)
4796 break;
4797 SAFE_SIGNED_BYTE_GET_AND_INC (end, start, pointer_size, finish);
4798
4799 printf (" %8.8lx ", offset);
4800
4801 if (begin == 0 && end == 0)
4802 {
4803 printf (_("<End of list>\n"));
4804 break;
4805 }
4806
4807 /* Check base address specifiers. */
4808 if (begin == (dwarf_vma) -1 && end != (dwarf_vma) -1)
4809 {
4810 base_address = end;
4811 print_dwarf_vma (begin, pointer_size);
4812 print_dwarf_vma (end, pointer_size);
4813 printf ("(base address)\n");
4814 continue;
4815 }
4816
4817 print_dwarf_vma (begin + base_address, pointer_size);
4818 print_dwarf_vma (end + base_address, pointer_size);
4819
4820 if (begin == end)
4821 fputs (_("(start == end)"), stdout);
4822 else if (begin > end)
4823 fputs (_("(start > end)"), stdout);
4824
4825 putchar ('\n');
4826 }
4827 }
4828 putchar ('\n');
4829
4830 free (range_entries);
4831
4832 return 1;
4833 }
4834
4835 typedef struct Frame_Chunk
4836 {
4837 struct Frame_Chunk *next;
4838 unsigned char *chunk_start;
4839 int ncols;
4840 /* DW_CFA_{undefined,same_value,offset,register,unreferenced} */
4841 short int *col_type;
4842 int *col_offset;
4843 char *augmentation;
4844 unsigned int code_factor;
4845 int data_factor;
4846 unsigned long pc_begin;
4847 unsigned long pc_range;
4848 int cfa_reg;
4849 int cfa_offset;
4850 int ra;
4851 unsigned char fde_encoding;
4852 unsigned char cfa_exp;
4853 unsigned char ptr_size;
4854 unsigned char segment_size;
4855 }
4856 Frame_Chunk;
4857
4858 static const char *const *dwarf_regnames;
4859 static unsigned int dwarf_regnames_count;
4860
4861 /* A marker for a col_type that means this column was never referenced
4862 in the frame info. */
4863 #define DW_CFA_unreferenced (-1)
4864
4865 /* Return 0 if not more space is needed, 1 if more space is needed,
4866 -1 for invalid reg. */
4867
4868 static int
4869 frame_need_space (Frame_Chunk *fc, unsigned int reg)
4870 {
4871 int prev = fc->ncols;
4872
4873 if (reg < (unsigned int) fc->ncols)
4874 return 0;
4875
4876 if (dwarf_regnames_count
4877 && reg > dwarf_regnames_count)
4878 return -1;
4879
4880 fc->ncols = reg + 1;
4881 fc->col_type = (short int *) xcrealloc (fc->col_type, fc->ncols,
4882 sizeof (short int));
4883 fc->col_offset = (int *) xcrealloc (fc->col_offset, fc->ncols, sizeof (int));
4884
4885 while (prev < fc->ncols)
4886 {
4887 fc->col_type[prev] = DW_CFA_unreferenced;
4888 fc->col_offset[prev] = 0;
4889 prev++;
4890 }
4891 return 1;
4892 }
4893
4894 static const char *const dwarf_regnames_i386[] =
4895 {
4896 "eax", "ecx", "edx", "ebx",
4897 "esp", "ebp", "esi", "edi",
4898 "eip", "eflags", NULL,
4899 "st0", "st1", "st2", "st3",
4900 "st4", "st5", "st6", "st7",
4901 NULL, NULL,
4902 "xmm0", "xmm1", "xmm2", "xmm3",
4903 "xmm4", "xmm5", "xmm6", "xmm7",
4904 "mm0", "mm1", "mm2", "mm3",
4905 "mm4", "mm5", "mm6", "mm7",
4906 "fcw", "fsw", "mxcsr",
4907 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
4908 "tr", "ldtr"
4909 };
4910
4911 void
4912 init_dwarf_regnames_i386 (void)
4913 {
4914 dwarf_regnames = dwarf_regnames_i386;
4915 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_i386);
4916 }
4917
4918 static const char *const dwarf_regnames_x86_64[] =
4919 {
4920 "rax", "rdx", "rcx", "rbx",
4921 "rsi", "rdi", "rbp", "rsp",
4922 "r8", "r9", "r10", "r11",
4923 "r12", "r13", "r14", "r15",
4924 "rip",
4925 "xmm0", "xmm1", "xmm2", "xmm3",
4926 "xmm4", "xmm5", "xmm6", "xmm7",
4927 "xmm8", "xmm9", "xmm10", "xmm11",
4928 "xmm12", "xmm13", "xmm14", "xmm15",
4929 "st0", "st1", "st2", "st3",
4930 "st4", "st5", "st6", "st7",
4931 "mm0", "mm1", "mm2", "mm3",
4932 "mm4", "mm5", "mm6", "mm7",
4933 "rflags",
4934 "es", "cs", "ss", "ds", "fs", "gs", NULL, NULL,
4935 "fs.base", "gs.base", NULL, NULL,
4936 "tr", "ldtr",
4937 "mxcsr", "fcw", "fsw"
4938 };
4939
4940 void
4941 init_dwarf_regnames_x86_64 (void)
4942 {
4943 dwarf_regnames = dwarf_regnames_x86_64;
4944 dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_x86_64);
4945 }
4946
4947 void
4948 init_dwarf_regnames (unsigned int e_machine)
4949 {
4950 switch (e_machine)
4951 {
4952 case EM_386:
4953 case EM_486:
4954 init_dwarf_regnames_i386 ();
4955 break;
4956
4957 case EM_X86_64:
4958 case EM_L1OM:
4959 case EM_K1OM:
4960 init_dwarf_regnames_x86_64 ();
4961 break;
4962
4963 default:
4964 break;
4965 }
4966 }
4967
4968 static const char *
4969 regname (unsigned int regno, int row)
4970 {
4971 static char reg[64];
4972 if (dwarf_regnames
4973 && regno < dwarf_regnames_count
4974 && dwarf_regnames [regno] != NULL)
4975 {
4976 if (row)
4977 return dwarf_regnames [regno];
4978 snprintf (reg, sizeof (reg), "r%d (%s)", regno,
4979 dwarf_regnames [regno]);
4980 }
4981 else
4982 snprintf (reg, sizeof (reg), "r%d", regno);
4983 return reg;
4984 }
4985
4986 static void
4987 frame_display_row (Frame_Chunk *fc, int *need_col_headers, int *max_regs)
4988 {
4989 int r;
4990 char tmp[100];
4991
4992 if (*max_regs < fc->ncols)
4993 *max_regs = fc->ncols;
4994
4995 if (*need_col_headers)
4996 {
4997 static const char *sloc = " LOC";
4998
4999 *need_col_headers = 0;
5000
5001 printf ("%-*s CFA ", eh_addr_size * 2, sloc);
5002
5003 for (r = 0; r < *max_regs; r++)
5004 if (fc->col_type[r] != DW_CFA_unreferenced)
5005 {
5006 if (r == fc->ra)
5007 printf ("ra ");
5008 else
5009 printf ("%-5s ", regname (r, 1));
5010 }
5011
5012 printf ("\n");
5013 }
5014
5015 printf ("%0*lx ", eh_addr_size * 2, fc->pc_begin);
5016 if (fc->cfa_exp)
5017 strcpy (tmp, "exp");
5018 else
5019 sprintf (tmp, "%s%+d", regname (fc->cfa_reg, 1), fc->cfa_offset);
5020 printf ("%-8s ", tmp);
5021
5022 for (r = 0; r < fc->ncols; r++)
5023 {
5024 if (fc->col_type[r] != DW_CFA_unreferenced)
5025 {
5026 switch (fc->col_type[r])
5027 {
5028 case DW_CFA_undefined:
5029 strcpy (tmp, "u");
5030 break;
5031 case DW_CFA_same_value:
5032 strcpy (tmp, "s");
5033 break;
5034 case DW_CFA_offset:
5035 sprintf (tmp, "c%+d", fc->col_offset[r]);
5036 break;
5037 case DW_CFA_val_offset:
5038 sprintf (tmp, "v%+d", fc->col_offset[r]);
5039 break;
5040 case DW_CFA_register:
5041 sprintf (tmp, "%s", regname (fc->col_offset[r], 0));
5042 break;
5043 case DW_CFA_expression:
5044 strcpy (tmp, "exp");
5045 break;
5046 case DW_CFA_val_expression:
5047 strcpy (tmp, "vexp");
5048 break;
5049 default:
5050 strcpy (tmp, "n/a");
5051 break;
5052 }
5053 printf ("%-5s ", tmp);
5054 }
5055 }
5056 printf ("\n");
5057 }
5058
5059 #define GET(VAR, N) SAFE_BYTE_GET_AND_INC (VAR, start, N, end);
5060 #define LEB() read_uleb128 (start, & length_return, end); start += length_return
5061 #define SLEB() read_sleb128 (start, & length_return, end); start += length_return
5062
5063 static int
5064 display_debug_frames (struct dwarf_section *section,
5065 void *file ATTRIBUTE_UNUSED)
5066 {
5067 unsigned char *start = section->start;
5068 unsigned char *end = start + section->size;
5069 unsigned char *section_start = start;
5070 Frame_Chunk *chunks = 0;
5071 Frame_Chunk *remembered_state = 0;
5072 Frame_Chunk *rs;
5073 int is_eh = strcmp (section->name, ".eh_frame") == 0;
5074 unsigned int length_return;
5075 int max_regs = 0;
5076 const char *bad_reg = _("bad register: ");
5077 int saved_eh_addr_size = eh_addr_size;
5078
5079 printf (_("Contents of the %s section:\n"), section->name);
5080
5081 while (start < end)
5082 {
5083 unsigned char *saved_start;
5084 unsigned char *block_end;
5085 unsigned long length;
5086 unsigned long cie_id;
5087 Frame_Chunk *fc;
5088 Frame_Chunk *cie;
5089 int need_col_headers = 1;
5090 unsigned char *augmentation_data = NULL;
5091 unsigned long augmentation_data_len = 0;
5092 int encoded_ptr_size = saved_eh_addr_size;
5093 int offset_size;
5094 int initial_length_size;
5095
5096 saved_start = start;
5097
5098 SAFE_BYTE_GET_AND_INC (length, start, 4, end);
5099 if (length == 0)
5100 {
5101 printf ("\n%08lx ZERO terminator\n\n",
5102 (unsigned long)(saved_start - section_start));
5103 continue;
5104 }
5105
5106 if (length == 0xffffffff)
5107 {
5108 SAFE_BYTE_GET_AND_INC (length, start, 8, end);
5109 offset_size = 8;
5110 initial_length_size = 12;
5111 }
5112 else
5113 {
5114 offset_size = 4;
5115 initial_length_size = 4;
5116 }
5117
5118 block_end = saved_start + length + initial_length_size;
5119 if (block_end > end)
5120 {
5121 warn ("Invalid length %#08lx in FDE at %#08lx\n",
5122 length, (unsigned long)(saved_start - section_start));
5123 block_end = end;
5124 }
5125
5126 SAFE_BYTE_GET_AND_INC (cie_id, start, offset_size, end);
5127
5128 if (is_eh ? (cie_id == 0) : (cie_id == DW_CIE_ID))
5129 {
5130 int version;
5131
5132 fc = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
5133 memset (fc, 0, sizeof (Frame_Chunk));
5134
5135 fc->next = chunks;
5136 chunks = fc;
5137 fc->chunk_start = saved_start;
5138 fc->ncols = 0;
5139 fc->col_type = (short int *) xmalloc (sizeof (short int));
5140 fc->col_offset = (int *) xmalloc (sizeof (int));
5141 frame_need_space (fc, max_regs - 1);
5142
5143 version = *start++;
5144
5145 fc->augmentation = (char *) start;
5146 start = (unsigned char *) strchr ((char *) start, '\0') + 1;
5147
5148 if (strcmp (fc->augmentation, "eh") == 0)
5149 start += eh_addr_size;
5150
5151 if (version >= 4)
5152 {
5153 GET (fc->ptr_size, 1);
5154 GET (fc->segment_size, 1);
5155 eh_addr_size = fc->ptr_size;
5156 }
5157 else
5158 {
5159 fc->ptr_size = eh_addr_size;
5160 fc->segment_size = 0;
5161 }
5162 fc->code_factor = LEB ();
5163 fc->data_factor = SLEB ();
5164 if (version == 1)
5165 {
5166 GET (fc->ra, 1);
5167 }
5168 else
5169 {
5170 fc->ra = LEB ();
5171 }
5172
5173 if (fc->augmentation[0] == 'z')
5174 {
5175 augmentation_data_len = LEB ();
5176 augmentation_data = start;
5177 start += augmentation_data_len;
5178 }
5179 cie = fc;
5180
5181 if (do_debug_frames_interp)
5182 printf ("\n%08lx %08lx %08lx CIE \"%s\" cf=%d df=%d ra=%d\n",
5183 (unsigned long)(saved_start - section_start), length, cie_id,
5184 fc->augmentation, fc->code_factor, fc->data_factor,
5185 fc->ra);
5186 else
5187 {
5188 printf ("\n%08lx %08lx %08lx CIE\n",
5189 (unsigned long)(saved_start - section_start), length, cie_id);
5190 printf (" Version: %d\n", version);
5191 printf (" Augmentation: \"%s\"\n", fc->augmentation);
5192 if (version >= 4)
5193 {
5194 printf (" Pointer Size: %u\n", fc->ptr_size);
5195 printf (" Segment Size: %u\n", fc->segment_size);
5196 }
5197 printf (" Code alignment factor: %u\n", fc->code_factor);
5198 printf (" Data alignment factor: %d\n", fc->data_factor);
5199 printf (" Return address column: %d\n", fc->ra);
5200
5201 if (augmentation_data_len)
5202 {
5203 unsigned long i;
5204 printf (" Augmentation data: ");
5205 for (i = 0; i < augmentation_data_len; ++i)
5206 printf (" %02x", augmentation_data[i]);
5207 putchar ('\n');
5208 }
5209 putchar ('\n');
5210 }
5211
5212 if (augmentation_data_len)
5213 {
5214 unsigned char *p, *q;
5215 p = (unsigned char *) fc->augmentation + 1;
5216 q = augmentation_data;
5217
5218 while (1)
5219 {
5220 if (*p == 'L')
5221 q++;
5222 else if (*p == 'P')
5223 q += 1 + size_of_encoded_value (*q);
5224 else if (*p == 'R')
5225 fc->fde_encoding = *q++;
5226 else if (*p == 'S')
5227 ;
5228 else
5229 break;
5230 p++;
5231 }
5232
5233 if (fc->fde_encoding)
5234 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
5235 }
5236
5237 frame_need_space (fc, fc->ra);
5238 }
5239 else
5240 {
5241 unsigned char *look_for;
5242 static Frame_Chunk fde_fc;
5243 unsigned long segment_selector;
5244
5245 fc = & fde_fc;
5246 memset (fc, 0, sizeof (Frame_Chunk));
5247
5248 look_for = is_eh ? start - 4 - cie_id : section_start + cie_id;
5249
5250 for (cie = chunks; cie ; cie = cie->next)
5251 if (cie->chunk_start == look_for)
5252 break;
5253
5254 if (!cie)
5255 {
5256 warn ("Invalid CIE pointer %#08lx in FDE at %#08lx\n",
5257 cie_id, (unsigned long)(saved_start - section_start));
5258 fc->ncols = 0;
5259 fc->col_type = (short int *) xmalloc (sizeof (short int));
5260 fc->col_offset = (int *) xmalloc (sizeof (int));
5261 frame_need_space (fc, max_regs - 1);
5262 cie = fc;
5263 fc->augmentation = "";
5264 fc->fde_encoding = 0;
5265 fc->ptr_size = eh_addr_size;
5266 fc->segment_size = 0;
5267 }
5268 else
5269 {
5270 fc->ncols = cie->ncols;
5271 fc->col_type = (short int *) xcmalloc (fc->ncols, sizeof (short int));
5272 fc->col_offset = (int *) xcmalloc (fc->ncols, sizeof (int));
5273 memcpy (fc->col_type, cie->col_type, fc->ncols * sizeof (short int));
5274 memcpy (fc->col_offset, cie->col_offset, fc->ncols * sizeof (int));
5275 fc->augmentation = cie->augmentation;
5276 fc->ptr_size = cie->ptr_size;
5277 eh_addr_size = cie->ptr_size;
5278 fc->segment_size = cie->segment_size;
5279 fc->code_factor = cie->code_factor;
5280 fc->data_factor = cie->data_factor;
5281 fc->cfa_reg = cie->cfa_reg;
5282 fc->cfa_offset = cie->cfa_offset;
5283 fc->ra = cie->ra;
5284 frame_need_space (fc, max_regs - 1);
5285 fc->fde_encoding = cie->fde_encoding;
5286 }
5287
5288 if (fc->fde_encoding)
5289 encoded_ptr_size = size_of_encoded_value (fc->fde_encoding);
5290
5291 segment_selector = 0;
5292 if (fc->segment_size)
5293 {
5294 SAFE_BYTE_GET_AND_INC (segment_selector, start, fc->segment_size, end);
5295 }
5296 fc->pc_begin = get_encoded_value (start, fc->fde_encoding, section);
5297 start += encoded_ptr_size;
5298
5299 /* FIXME: It appears that sometimes the final pc_range value is
5300 encoded in less than encoded_ptr_size bytes. See the x86_64
5301 run of the "objcopy on compressed debug sections" test for an
5302 example of this. */
5303 SAFE_BYTE_GET_AND_INC (fc->pc_range, start, encoded_ptr_size, end);
5304
5305 if (cie->augmentation[0] == 'z')
5306 {
5307 augmentation_data_len = LEB ();
5308 augmentation_data = start;
5309 start += augmentation_data_len;
5310 }
5311
5312 printf ("\n%08lx %08lx %08lx FDE cie=%08lx pc=",
5313 (unsigned long)(saved_start - section_start), length, cie_id,
5314 (unsigned long)(cie->chunk_start - section_start));
5315 if (fc->segment_size)
5316 printf ("%04lx:", segment_selector);
5317 printf ("%08lx..%08lx\n", fc->pc_begin, fc->pc_begin + fc->pc_range);
5318 if (! do_debug_frames_interp && augmentation_data_len)
5319 {
5320 unsigned long i;
5321
5322 printf (" Augmentation data: ");
5323 for (i = 0; i < augmentation_data_len; ++i)
5324 printf (" %02x", augmentation_data[i]);
5325 putchar ('\n');
5326 putchar ('\n');
5327 }
5328 }
5329
5330 /* At this point, fc is the current chunk, cie (if any) is set, and
5331 we're about to interpret instructions for the chunk. */
5332 /* ??? At present we need to do this always, since this sizes the
5333 fc->col_type and fc->col_offset arrays, which we write into always.
5334 We should probably split the interpreted and non-interpreted bits
5335 into two different routines, since there's so much that doesn't
5336 really overlap between them. */
5337 if (1 || do_debug_frames_interp)
5338 {
5339 /* Start by making a pass over the chunk, allocating storage
5340 and taking note of what registers are used. */
5341 unsigned char *tmp = start;
5342
5343 while (start < block_end)
5344 {
5345 unsigned op, opa;
5346 unsigned long reg, temp;
5347
5348 op = *start++;
5349 opa = op & 0x3f;
5350 if (op & 0xc0)
5351 op &= 0xc0;
5352
5353 /* Warning: if you add any more cases to this switch, be
5354 sure to add them to the corresponding switch below. */
5355 switch (op)
5356 {
5357 case DW_CFA_advance_loc:
5358 break;
5359 case DW_CFA_offset:
5360 LEB ();
5361 if (frame_need_space (fc, opa) >= 0)
5362 fc->col_type[opa] = DW_CFA_undefined;
5363 break;
5364 case DW_CFA_restore:
5365 if (frame_need_space (fc, opa) >= 0)
5366 fc->col_type[opa] = DW_CFA_undefined;
5367 break;
5368 case DW_CFA_set_loc:
5369 start += encoded_ptr_size;
5370 break;
5371 case DW_CFA_advance_loc1:
5372 start += 1;
5373 break;
5374 case DW_CFA_advance_loc2:
5375 start += 2;
5376 break;
5377 case DW_CFA_advance_loc4:
5378 start += 4;
5379 break;
5380 case DW_CFA_offset_extended:
5381 case DW_CFA_val_offset:
5382 reg = LEB (); LEB ();
5383 if (frame_need_space (fc, reg) >= 0)
5384 fc->col_type[reg] = DW_CFA_undefined;
5385 break;
5386 case DW_CFA_restore_extended:
5387 reg = LEB ();
5388 frame_need_space (fc, reg);
5389 if (frame_need_space (fc, reg) >= 0)
5390 fc->col_type[reg] = DW_CFA_undefined;
5391 break;
5392 case DW_CFA_undefined:
5393 reg = LEB ();
5394 if (frame_need_space (fc, reg) >= 0)
5395 fc->col_type[reg] = DW_CFA_undefined;
5396 break;
5397 case DW_CFA_same_value:
5398 reg = LEB ();
5399 if (frame_need_space (fc, reg) >= 0)
5400 fc->col_type[reg] = DW_CFA_undefined;
5401 break;
5402 case DW_CFA_register:
5403 reg = LEB (); LEB ();
5404 if (frame_need_space (fc, reg) >= 0)
5405 fc->col_type[reg] = DW_CFA_undefined;
5406 break;
5407 case DW_CFA_def_cfa:
5408 LEB (); LEB ();
5409 break;
5410 case DW_CFA_def_cfa_register:
5411 LEB ();
5412 break;
5413 case DW_CFA_def_cfa_offset:
5414 LEB ();
5415 break;
5416 case DW_CFA_def_cfa_expression:
5417 temp = LEB ();
5418 start += temp;
5419 break;
5420 case DW_CFA_expression:
5421 case DW_CFA_val_expression:
5422 reg = LEB ();
5423 temp = LEB ();
5424 start += temp;
5425 if (frame_need_space (fc, reg) >= 0)
5426 fc->col_type[reg] = DW_CFA_undefined;
5427 break;
5428 case DW_CFA_offset_extended_sf:
5429 case DW_CFA_val_offset_sf:
5430 reg = LEB (); SLEB ();
5431 if (frame_need_space (fc, reg) >= 0)
5432 fc->col_type[reg] = DW_CFA_undefined;
5433 break;
5434 case DW_CFA_def_cfa_sf:
5435 LEB (); SLEB ();
5436 break;
5437 case DW_CFA_def_cfa_offset_sf:
5438 SLEB ();
5439 break;
5440 case DW_CFA_MIPS_advance_loc8:
5441 start += 8;
5442 break;
5443 case DW_CFA_GNU_args_size:
5444 LEB ();
5445 break;
5446 case DW_CFA_GNU_negative_offset_extended:
5447 reg = LEB (); LEB ();
5448 if (frame_need_space (fc, reg) >= 0)
5449 fc->col_type[reg] = DW_CFA_undefined;
5450 break;
5451 default:
5452 break;
5453 }
5454 }
5455 start = tmp;
5456 }
5457
5458 /* Now we know what registers are used, make a second pass over
5459 the chunk, this time actually printing out the info. */
5460
5461 while (start < block_end)
5462 {
5463 unsigned op, opa;
5464 unsigned long ul, reg, roffs;
5465 long l, ofs;
5466 dwarf_vma vma;
5467 const char *reg_prefix = "";
5468
5469 op = *start++;
5470 opa = op & 0x3f;
5471 if (op & 0xc0)
5472 op &= 0xc0;
5473
5474 /* Warning: if you add any more cases to this switch, be
5475 sure to add them to the corresponding switch above. */
5476 switch (op)
5477 {
5478 case DW_CFA_advance_loc:
5479 if (do_debug_frames_interp)
5480 frame_display_row (fc, &need_col_headers, &max_regs);
5481 else
5482 printf (" DW_CFA_advance_loc: %d to %08lx\n",
5483 opa * fc->code_factor,
5484 fc->pc_begin + opa * fc->code_factor);
5485 fc->pc_begin += opa * fc->code_factor;
5486 break;
5487
5488 case DW_CFA_offset:
5489 roffs = LEB ();
5490 if (opa >= (unsigned int) fc->ncols)
5491 reg_prefix = bad_reg;
5492 if (! do_debug_frames_interp || *reg_prefix != '\0')
5493 printf (" DW_CFA_offset: %s%s at cfa%+ld\n",
5494 reg_prefix, regname (opa, 0),
5495 roffs * fc->data_factor);
5496 if (*reg_prefix == '\0')
5497 {
5498 fc->col_type[opa] = DW_CFA_offset;
5499 fc->col_offset[opa] = roffs * fc->data_factor;
5500 }
5501 break;
5502
5503 case DW_CFA_restore:
5504 if (opa >= (unsigned int) cie->ncols
5505 || opa >= (unsigned int) fc->ncols)
5506 reg_prefix = bad_reg;
5507 if (! do_debug_frames_interp || *reg_prefix != '\0')
5508 printf (" DW_CFA_restore: %s%s\n",
5509 reg_prefix, regname (opa, 0));
5510 if (*reg_prefix == '\0')
5511 {
5512 fc->col_type[opa] = cie->col_type[opa];
5513 fc->col_offset[opa] = cie->col_offset[opa];
5514 if (do_debug_frames_interp
5515 && fc->col_type[opa] == DW_CFA_unreferenced)
5516 fc->col_type[opa] = DW_CFA_undefined;
5517 }
5518 break;
5519
5520 case DW_CFA_set_loc:
5521 vma = get_encoded_value (start, fc->fde_encoding, section);
5522 start += encoded_ptr_size;
5523 if (do_debug_frames_interp)
5524 frame_display_row (fc, &need_col_headers, &max_regs);
5525 else
5526 printf (" DW_CFA_set_loc: %08lx\n", (unsigned long)vma);
5527 fc->pc_begin = vma;
5528 break;
5529
5530 case DW_CFA_advance_loc1:
5531 SAFE_BYTE_GET_AND_INC (ofs, start, 1, end);
5532 if (do_debug_frames_interp)
5533 frame_display_row (fc, &need_col_headers, &max_regs);
5534 else
5535 printf (" DW_CFA_advance_loc1: %ld to %08lx\n",
5536 ofs * fc->code_factor,
5537 fc->pc_begin + ofs * fc->code_factor);
5538 fc->pc_begin += ofs * fc->code_factor;
5539 break;
5540
5541 case DW_CFA_advance_loc2:
5542 SAFE_BYTE_GET_AND_INC (ofs, start, 2, end);
5543 if (do_debug_frames_interp)
5544 frame_display_row (fc, &need_col_headers, &max_regs);
5545 else
5546 printf (" DW_CFA_advance_loc2: %ld to %08lx\n",
5547 ofs * fc->code_factor,
5548 fc->pc_begin + ofs * fc->code_factor);
5549 fc->pc_begin += ofs * fc->code_factor;
5550 break;
5551
5552 case DW_CFA_advance_loc4:
5553 SAFE_BYTE_GET_AND_INC (ofs, start, 4, end);
5554 if (do_debug_frames_interp)
5555 frame_display_row (fc, &need_col_headers, &max_regs);
5556 else
5557 printf (" DW_CFA_advance_loc4: %ld to %08lx\n",
5558 ofs * fc->code_factor,
5559 fc->pc_begin + ofs * fc->code_factor);
5560 fc->pc_begin += ofs * fc->code_factor;
5561 break;
5562
5563 case DW_CFA_offset_extended:
5564 reg = LEB ();
5565 roffs = LEB ();
5566 if (reg >= (unsigned int) fc->ncols)
5567 reg_prefix = bad_reg;
5568 if (! do_debug_frames_interp || *reg_prefix != '\0')
5569 printf (" DW_CFA_offset_extended: %s%s at cfa%+ld\n",
5570 reg_prefix, regname (reg, 0),
5571 roffs * fc->data_factor);
5572 if (*reg_prefix == '\0')
5573 {
5574 fc->col_type[reg] = DW_CFA_offset;
5575 fc->col_offset[reg] = roffs * fc->data_factor;
5576 }
5577 break;
5578
5579 case DW_CFA_val_offset:
5580 reg = LEB ();
5581 roffs = LEB ();
5582 if (reg >= (unsigned int) fc->ncols)
5583 reg_prefix = bad_reg;
5584 if (! do_debug_frames_interp || *reg_prefix != '\0')
5585 printf (" DW_CFA_val_offset: %s%s at cfa%+ld\n",
5586 reg_prefix, regname (reg, 0),
5587 roffs * fc->data_factor);
5588 if (*reg_prefix == '\0')
5589 {
5590 fc->col_type[reg] = DW_CFA_val_offset;
5591 fc->col_offset[reg] = roffs * fc->data_factor;
5592 }
5593 break;
5594
5595 case DW_CFA_restore_extended:
5596 reg = LEB ();
5597 if (reg >= (unsigned int) cie->ncols
5598 || reg >= (unsigned int) fc->ncols)
5599 reg_prefix = bad_reg;
5600 if (! do_debug_frames_interp || *reg_prefix != '\0')
5601 printf (" DW_CFA_restore_extended: %s%s\n",
5602 reg_prefix, regname (reg, 0));
5603 if (*reg_prefix == '\0')
5604 {
5605 fc->col_type[reg] = cie->col_type[reg];
5606 fc->col_offset[reg] = cie->col_offset[reg];
5607 }
5608 break;
5609
5610 case DW_CFA_undefined:
5611 reg = LEB ();
5612 if (reg >= (unsigned int) fc->ncols)
5613 reg_prefix = bad_reg;
5614 if (! do_debug_frames_interp || *reg_prefix != '\0')
5615 printf (" DW_CFA_undefined: %s%s\n",
5616 reg_prefix, regname (reg, 0));
5617 if (*reg_prefix == '\0')
5618 {
5619 fc->col_type[reg] = DW_CFA_undefined;
5620 fc->col_offset[reg] = 0;
5621 }
5622 break;
5623
5624 case DW_CFA_same_value:
5625 reg = LEB ();
5626 if (reg >= (unsigned int) fc->ncols)
5627 reg_prefix = bad_reg;
5628 if (! do_debug_frames_interp || *reg_prefix != '\0')
5629 printf (" DW_CFA_same_value: %s%s\n",
5630 reg_prefix, regname (reg, 0));
5631 if (*reg_prefix == '\0')
5632 {
5633 fc->col_type[reg] = DW_CFA_same_value;
5634 fc->col_offset[reg] = 0;
5635 }
5636 break;
5637
5638 case DW_CFA_register:
5639 reg = LEB ();
5640 roffs = LEB ();
5641 if (reg >= (unsigned int) fc->ncols)
5642 reg_prefix = bad_reg;
5643 if (! do_debug_frames_interp || *reg_prefix != '\0')
5644 {
5645 printf (" DW_CFA_register: %s%s in ",
5646 reg_prefix, regname (reg, 0));
5647 puts (regname (roffs, 0));
5648 }
5649 if (*reg_prefix == '\0')
5650 {
5651 fc->col_type[reg] = DW_CFA_register;
5652 fc->col_offset[reg] = roffs;
5653 }
5654 break;
5655
5656 case DW_CFA_remember_state:
5657 if (! do_debug_frames_interp)
5658 printf (" DW_CFA_remember_state\n");
5659 rs = (Frame_Chunk *) xmalloc (sizeof (Frame_Chunk));
5660 rs->ncols = fc->ncols;
5661 rs->col_type = (short int *) xcmalloc (rs->ncols,
5662 sizeof (short int));
5663 rs->col_offset = (int *) xcmalloc (rs->ncols, sizeof (int));
5664 memcpy (rs->col_type, fc->col_type, rs->ncols);
5665 memcpy (rs->col_offset, fc->col_offset, rs->ncols * sizeof (int));
5666 rs->next = remembered_state;
5667 remembered_state = rs;
5668 break;
5669
5670 case DW_CFA_restore_state:
5671 if (! do_debug_frames_interp)
5672 printf (" DW_CFA_restore_state\n");
5673 rs = remembered_state;
5674 if (rs)
5675 {
5676 remembered_state = rs->next;
5677 frame_need_space (fc, rs->ncols - 1);
5678 memcpy (fc->col_type, rs->col_type, rs->ncols);
5679 memcpy (fc->col_offset, rs->col_offset,
5680 rs->ncols * sizeof (int));
5681 free (rs->col_type);
5682 free (rs->col_offset);
5683 free (rs);
5684 }
5685 else if (do_debug_frames_interp)
5686 printf ("Mismatched DW_CFA_restore_state\n");
5687 break;
5688
5689 case DW_CFA_def_cfa:
5690 fc->cfa_reg = LEB ();
5691 fc->cfa_offset = LEB ();
5692 fc->cfa_exp = 0;
5693 if (! do_debug_frames_interp)
5694 printf (" DW_CFA_def_cfa: %s ofs %d\n",
5695 regname (fc->cfa_reg, 0), fc->cfa_offset);
5696 break;
5697
5698 case DW_CFA_def_cfa_register:
5699 fc->cfa_reg = LEB ();
5700 fc->cfa_exp = 0;
5701 if (! do_debug_frames_interp)
5702 printf (" DW_CFA_def_cfa_register: %s\n",
5703 regname (fc->cfa_reg, 0));
5704 break;
5705
5706 case DW_CFA_def_cfa_offset:
5707 fc->cfa_offset = LEB ();
5708 if (! do_debug_frames_interp)
5709 printf (" DW_CFA_def_cfa_offset: %d\n", fc->cfa_offset);
5710 break;
5711
5712 case DW_CFA_nop:
5713 if (! do_debug_frames_interp)
5714 printf (" DW_CFA_nop\n");
5715 break;
5716
5717 case DW_CFA_def_cfa_expression:
5718 ul = LEB ();
5719 if (! do_debug_frames_interp)
5720 {
5721 printf (" DW_CFA_def_cfa_expression (");
5722 decode_location_expression (start, eh_addr_size, 0, -1,
5723 ul, 0, section);
5724 printf (")\n");
5725 }
5726 fc->cfa_exp = 1;
5727 start += ul;
5728 break;
5729
5730 case DW_CFA_expression:
5731 reg = LEB ();
5732 ul = LEB ();
5733 if (reg >= (unsigned int) fc->ncols)
5734 reg_prefix = bad_reg;
5735 if (! do_debug_frames_interp || *reg_prefix != '\0')
5736 {
5737 printf (" DW_CFA_expression: %s%s (",
5738 reg_prefix, regname (reg, 0));
5739 decode_location_expression (start, eh_addr_size, 0, -1,
5740 ul, 0, section);
5741 printf (")\n");
5742 }
5743 if (*reg_prefix == '\0')
5744 fc->col_type[reg] = DW_CFA_expression;
5745 start += ul;
5746 break;
5747
5748 case DW_CFA_val_expression:
5749 reg = LEB ();
5750 ul = LEB ();
5751 if (reg >= (unsigned int) fc->ncols)
5752 reg_prefix = bad_reg;
5753 if (! do_debug_frames_interp || *reg_prefix != '\0')
5754 {
5755 printf (" DW_CFA_val_expression: %s%s (",
5756 reg_prefix, regname (reg, 0));
5757 decode_location_expression (start, eh_addr_size, 0, -1,
5758 ul, 0, section);
5759 printf (")\n");
5760 }
5761 if (*reg_prefix == '\0')
5762 fc->col_type[reg] = DW_CFA_val_expression;
5763 start += ul;
5764 break;
5765
5766 case DW_CFA_offset_extended_sf:
5767 reg = LEB ();
5768 l = SLEB ();
5769 if (frame_need_space (fc, reg) < 0)
5770 reg_prefix = bad_reg;
5771 if (! do_debug_frames_interp || *reg_prefix != '\0')
5772 printf (" DW_CFA_offset_extended_sf: %s%s at cfa%+ld\n",
5773 reg_prefix, regname (reg, 0),
5774 l * fc->data_factor);
5775 if (*reg_prefix == '\0')
5776 {
5777 fc->col_type[reg] = DW_CFA_offset;
5778 fc->col_offset[reg] = l * fc->data_factor;
5779 }
5780 break;
5781
5782 case DW_CFA_val_offset_sf:
5783 reg = LEB ();
5784 l = SLEB ();
5785 if (frame_need_space (fc, reg) < 0)
5786 reg_prefix = bad_reg;
5787 if (! do_debug_frames_interp || *reg_prefix != '\0')
5788 printf (" DW_CFA_val_offset_sf: %s%s at cfa%+ld\n",
5789 reg_prefix, regname (reg, 0),
5790 l * fc->data_factor);
5791 if (*reg_prefix == '\0')
5792 {
5793 fc->col_type[reg] = DW_CFA_val_offset;
5794 fc->col_offset[reg] = l * fc->data_factor;
5795 }
5796 break;
5797
5798 case DW_CFA_def_cfa_sf:
5799 fc->cfa_reg = LEB ();
5800 fc->cfa_offset = SLEB ();
5801 fc->cfa_offset = fc->cfa_offset * fc->data_factor;
5802 fc->cfa_exp = 0;
5803 if (! do_debug_frames_interp)
5804 printf (" DW_CFA_def_cfa_sf: %s ofs %d\n",
5805 regname (fc->cfa_reg, 0), fc->cfa_offset);
5806 break;
5807
5808 case DW_CFA_def_cfa_offset_sf:
5809 fc->cfa_offset = SLEB ();
5810 fc->cfa_offset = fc->cfa_offset * fc->data_factor;
5811 if (! do_debug_frames_interp)
5812 printf (" DW_CFA_def_cfa_offset_sf: %d\n", fc->cfa_offset);
5813 break;
5814
5815 case DW_CFA_MIPS_advance_loc8:
5816 SAFE_BYTE_GET_AND_INC (ofs, start, 8, end);
5817 if (do_debug_frames_interp)
5818 frame_display_row (fc, &need_col_headers, &max_regs);
5819 else
5820 printf (" DW_CFA_MIPS_advance_loc8: %ld to %08lx\n",
5821 ofs * fc->code_factor,
5822 fc->pc_begin + ofs * fc->code_factor);
5823 fc->pc_begin += ofs * fc->code_factor;
5824 break;
5825
5826 case DW_CFA_GNU_window_save:
5827 if (! do_debug_frames_interp)
5828 printf (" DW_CFA_GNU_window_save\n");
5829 break;
5830
5831 case DW_CFA_GNU_args_size:
5832 ul = LEB ();
5833 if (! do_debug_frames_interp)
5834 printf (" DW_CFA_GNU_args_size: %ld\n", ul);
5835 break;
5836
5837 case DW_CFA_GNU_negative_offset_extended:
5838 reg = LEB ();
5839 l = - LEB ();
5840 if (frame_need_space (fc, reg) < 0)
5841 reg_prefix = bad_reg;
5842 if (! do_debug_frames_interp || *reg_prefix != '\0')
5843 printf (" DW_CFA_GNU_negative_offset_extended: %s%s at cfa%+ld\n",
5844 reg_prefix, regname (reg, 0),
5845 l * fc->data_factor);
5846 if (*reg_prefix == '\0')
5847 {
5848 fc->col_type[reg] = DW_CFA_offset;
5849 fc->col_offset[reg] = l * fc->data_factor;
5850 }
5851 break;
5852
5853 default:
5854 if (op >= DW_CFA_lo_user && op <= DW_CFA_hi_user)
5855 printf (_(" DW_CFA_??? (User defined call frame op: %#x)\n"), op);
5856 else
5857 warn (_("unsupported or unknown Dwarf Call Frame Instruction number: %#x\n"), op);
5858 start = block_end;
5859 }
5860 }
5861
5862 if (do_debug_frames_interp)
5863 frame_display_row (fc, &need_col_headers, &max_regs);
5864
5865 start = block_end;
5866 eh_addr_size = saved_eh_addr_size;
5867 }
5868
5869 printf ("\n");
5870
5871 return 1;
5872 }
5873
5874 #undef GET
5875 #undef LEB
5876 #undef SLEB
5877
5878 static int
5879 display_gdb_index (struct dwarf_section *section,
5880 void *file ATTRIBUTE_UNUSED)
5881 {
5882 unsigned char *start = section->start;
5883 uint32_t version;
5884 uint32_t cu_list_offset, tu_list_offset;
5885 uint32_t address_table_offset, symbol_table_offset, constant_pool_offset;
5886 unsigned int cu_list_elements, tu_list_elements;
5887 unsigned int address_table_size, symbol_table_slots;
5888 unsigned char *cu_list, *tu_list;
5889 unsigned char *address_table, *symbol_table, *constant_pool;
5890 unsigned int i;
5891
5892 /* The documentation for the format of this file is in gdb/dwarf2read.c. */
5893
5894 printf (_("Contents of the %s section:\n"), section->name);
5895
5896 if (section->size < 6 * sizeof (uint32_t))
5897 {
5898 warn (_("Truncated header in the %s section.\n"), section->name);
5899 return 0;
5900 }
5901
5902 version = byte_get_little_endian (start, 4);
5903 printf (_("Version %ld\n"), (long) version);
5904
5905 /* Prior versions are obsolete, and future versions may not be
5906 backwards compatible. */
5907 if (version < 3 || version > 8)
5908 {
5909 warn (_("Unsupported version %lu.\n"), (unsigned long) version);
5910 return 0;
5911 }
5912 if (version < 4)
5913 warn (_("The address table data in version 3 may be wrong.\n"));
5914 if (version < 5)
5915 warn (_("Version 4 does not support case insensitive lookups.\n"));
5916 if (version < 6)
5917 warn (_("Version 5 does not include inlined functions.\n"));
5918 if (version < 7)
5919 warn (_("Version 6 does not include symbol attributes.\n"));
5920 /* Version 7 indices generated by Gold have bad type unit references,
5921 PR binutils/15021. But we don't know if the index was generated by
5922 Gold or not, so to avoid worrying users with gdb-generated indices
5923 we say nothing for version 7 here. */
5924
5925 cu_list_offset = byte_get_little_endian (start + 4, 4);
5926 tu_list_offset = byte_get_little_endian (start + 8, 4);
5927 address_table_offset = byte_get_little_endian (start + 12, 4);
5928 symbol_table_offset = byte_get_little_endian (start + 16, 4);
5929 constant_pool_offset = byte_get_little_endian (start + 20, 4);
5930
5931 if (cu_list_offset > section->size
5932 || tu_list_offset > section->size
5933 || address_table_offset > section->size
5934 || symbol_table_offset > section->size
5935 || constant_pool_offset > section->size)
5936 {
5937 warn (_("Corrupt header in the %s section.\n"), section->name);
5938 return 0;
5939 }
5940
5941 cu_list_elements = (tu_list_offset - cu_list_offset) / 8;
5942 tu_list_elements = (address_table_offset - tu_list_offset) / 8;
5943 address_table_size = symbol_table_offset - address_table_offset;
5944 symbol_table_slots = (constant_pool_offset - symbol_table_offset) / 8;
5945
5946 cu_list = start + cu_list_offset;
5947 tu_list = start + tu_list_offset;
5948 address_table = start + address_table_offset;
5949 symbol_table = start + symbol_table_offset;
5950 constant_pool = start + constant_pool_offset;
5951
5952 printf (_("\nCU table:\n"));
5953 for (i = 0; i < cu_list_elements; i += 2)
5954 {
5955 uint64_t cu_offset = byte_get_little_endian (cu_list + i * 8, 8);
5956 uint64_t cu_length = byte_get_little_endian (cu_list + i * 8 + 8, 8);
5957
5958 printf (_("[%3u] 0x%lx - 0x%lx\n"), i / 2,
5959 (unsigned long) cu_offset,
5960 (unsigned long) (cu_offset + cu_length - 1));
5961 }
5962
5963 printf (_("\nTU table:\n"));
5964 for (i = 0; i < tu_list_elements; i += 3)
5965 {
5966 uint64_t tu_offset = byte_get_little_endian (tu_list + i * 8, 8);
5967 uint64_t type_offset = byte_get_little_endian (tu_list + i * 8 + 8, 8);
5968 uint64_t signature = byte_get_little_endian (tu_list + i * 8 + 16, 8);
5969
5970 printf (_("[%3u] 0x%lx 0x%lx "), i / 3,
5971 (unsigned long) tu_offset,
5972 (unsigned long) type_offset);
5973 print_dwarf_vma (signature, 8);
5974 printf ("\n");
5975 }
5976
5977 printf (_("\nAddress table:\n"));
5978 for (i = 0; i < address_table_size; i += 2 * 8 + 4)
5979 {
5980 uint64_t low = byte_get_little_endian (address_table + i, 8);
5981 uint64_t high = byte_get_little_endian (address_table + i + 8, 8);
5982 uint32_t cu_index = byte_get_little_endian (address_table + i + 16, 4);
5983
5984 print_dwarf_vma (low, 8);
5985 print_dwarf_vma (high, 8);
5986 printf (_("%lu\n"), (unsigned long) cu_index);
5987 }
5988
5989 printf (_("\nSymbol table:\n"));
5990 for (i = 0; i < symbol_table_slots; ++i)
5991 {
5992 uint32_t name_offset = byte_get_little_endian (symbol_table + i * 8, 4);
5993 uint32_t cu_vector_offset = byte_get_little_endian (symbol_table + i * 8 + 4, 4);
5994 uint32_t num_cus, cu;
5995
5996 if (name_offset != 0
5997 || cu_vector_offset != 0)
5998 {
5999 unsigned int j;
6000
6001 printf ("[%3u] %s:", i, constant_pool + name_offset);
6002 num_cus = byte_get_little_endian (constant_pool + cu_vector_offset, 4);
6003 if (num_cus > 1)
6004 printf ("\n");
6005 for (j = 0; j < num_cus; ++j)
6006 {
6007 int is_static;
6008 gdb_index_symbol_kind kind;
6009
6010 cu = byte_get_little_endian (constant_pool + cu_vector_offset + 4 + j * 4, 4);
6011 is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu);
6012 kind = GDB_INDEX_SYMBOL_KIND_VALUE (cu);
6013 cu = GDB_INDEX_CU_VALUE (cu);
6014 /* Convert to TU number if it's for a type unit. */
6015 if (cu >= cu_list_elements / 2)
6016 printf ("%cT%lu", num_cus > 1 ? '\t' : ' ',
6017 (unsigned long) (cu - cu_list_elements / 2));
6018 else
6019 printf ("%c%lu", num_cus > 1 ? '\t' : ' ', (unsigned long) cu);
6020
6021 switch (kind)
6022 {
6023 case GDB_INDEX_SYMBOL_KIND_NONE:
6024 printf (_(" [no symbol information]"));
6025 break;
6026 case GDB_INDEX_SYMBOL_KIND_TYPE:
6027 printf (is_static
6028 ? _(" [static type]")
6029 : _(" [global type]"));
6030 break;
6031 case GDB_INDEX_SYMBOL_KIND_VARIABLE:
6032 printf (is_static
6033 ? _(" [static variable]")
6034 : _(" [global variable]"));
6035 break;
6036 case GDB_INDEX_SYMBOL_KIND_FUNCTION:
6037 printf (is_static
6038 ? _(" [static function]")
6039 : _(" [global function]"));
6040 break;
6041 case GDB_INDEX_SYMBOL_KIND_OTHER:
6042 printf (is_static
6043 ? _(" [static other]")
6044 : _(" [global other]"));
6045 break;
6046 default:
6047 printf (is_static
6048 ? _(" [static unknown: %d]")
6049 : _(" [global unknown: %d]"),
6050 kind);
6051 break;
6052 }
6053 if (num_cus > 1)
6054 printf ("\n");
6055 }
6056 if (num_cus <= 1)
6057 printf ("\n");
6058 }
6059 }
6060
6061 return 1;
6062 }
6063
6064 /* Pre-allocate enough space for the CU/TU sets needed. */
6065
6066 static void
6067 prealloc_cu_tu_list (unsigned int nshndx)
6068 {
6069 if (shndx_pool == NULL)
6070 {
6071 shndx_pool_size = nshndx;
6072 shndx_pool_used = 0;
6073 shndx_pool = (unsigned int *) xcmalloc (shndx_pool_size,
6074 sizeof (unsigned int));
6075 }
6076 else
6077 {
6078 shndx_pool_size = shndx_pool_used + nshndx;
6079 shndx_pool = (unsigned int *) xcrealloc (shndx_pool, shndx_pool_size,
6080 sizeof (unsigned int));
6081 }
6082 }
6083
6084 static void
6085 add_shndx_to_cu_tu_entry (unsigned int shndx)
6086 {
6087 if (shndx_pool_used >= shndx_pool_size)
6088 {
6089 error (_("Internal error: out of space in the shndx pool.\n"));
6090 return;
6091 }
6092 shndx_pool [shndx_pool_used++] = shndx;
6093 }
6094
6095 static void
6096 end_cu_tu_entry (void)
6097 {
6098 if (shndx_pool_used >= shndx_pool_size)
6099 {
6100 error (_("Internal error: out of space in the shndx pool.\n"));
6101 return;
6102 }
6103 shndx_pool [shndx_pool_used++] = 0;
6104 }
6105
6106 /* Return the short name of a DWARF section given by a DW_SECT enumerator. */
6107
6108 static const char *
6109 get_DW_SECT_short_name (unsigned int dw_sect)
6110 {
6111 static char buf[16];
6112
6113 switch (dw_sect)
6114 {
6115 case DW_SECT_INFO:
6116 return "info";
6117 case DW_SECT_TYPES:
6118 return "types";
6119 case DW_SECT_ABBREV:
6120 return "abbrev";
6121 case DW_SECT_LINE:
6122 return "line";
6123 case DW_SECT_LOC:
6124 return "loc";
6125 case DW_SECT_STR_OFFSETS:
6126 return "str_off";
6127 case DW_SECT_MACINFO:
6128 return "macinfo";
6129 case DW_SECT_MACRO:
6130 return "macro";
6131 default:
6132 break;
6133 }
6134
6135 snprintf (buf, sizeof (buf), "%d", dw_sect);
6136 return buf;
6137 }
6138
6139 /* Process a CU or TU index. If DO_DISPLAY is true, print the contents.
6140 These sections are extensions for Fission.
6141 See http://gcc.gnu.org/wiki/DebugFissionDWP. */
6142
6143 static int
6144 process_cu_tu_index (struct dwarf_section *section, int do_display)
6145 {
6146 unsigned char *phdr = section->start;
6147 unsigned char *limit = phdr + section->size;
6148 unsigned char *phash;
6149 unsigned char *pindex;
6150 unsigned char *ppool;
6151 unsigned int version;
6152 unsigned int ncols = 0;
6153 unsigned int nused;
6154 unsigned int nslots;
6155 unsigned int i;
6156 unsigned int j;
6157 dwarf_vma signature_high;
6158 dwarf_vma signature_low;
6159 char buf[64];
6160
6161 version = byte_get (phdr, 4);
6162 if (version >= 2)
6163 ncols = byte_get (phdr + 4, 4);
6164 nused = byte_get (phdr + 8, 4);
6165 nslots = byte_get (phdr + 12, 4);
6166 phash = phdr + 16;
6167 pindex = phash + nslots * 8;
6168 ppool = pindex + nslots * 4;
6169
6170 if (do_display)
6171 {
6172 printf (_("Contents of the %s section:\n\n"), section->name);
6173 printf (_(" Version: %d\n"), version);
6174 if (version >= 2)
6175 printf (_(" Number of columns: %d\n"), ncols);
6176 printf (_(" Number of used entries: %d\n"), nused);
6177 printf (_(" Number of slots: %d\n\n"), nslots);
6178 }
6179
6180 if (ppool > limit)
6181 {
6182 warn (_("Section %s too small for %d hash table entries\n"),
6183 section->name, nslots);
6184 return 0;
6185 }
6186
6187 if (version == 1)
6188 {
6189 if (!do_display)
6190 prealloc_cu_tu_list ((limit - ppool) / 4);
6191 for (i = 0; i < nslots; i++)
6192 {
6193 unsigned char *shndx_list;
6194 unsigned int shndx;
6195
6196 byte_get_64 (phash, &signature_high, &signature_low);
6197 if (signature_high != 0 || signature_low != 0)
6198 {
6199 j = byte_get (pindex, 4);
6200 shndx_list = ppool + j * 4;
6201 if (do_display)
6202 printf (_(" [%3d] Signature: 0x%s Sections: "),
6203 i, dwarf_vmatoa64 (signature_high, signature_low,
6204 buf, sizeof (buf)));
6205 for (;;)
6206 {
6207 if (shndx_list >= limit)
6208 {
6209 warn (_("Section %s too small for shndx pool\n"),
6210 section->name);
6211 return 0;
6212 }
6213 shndx = byte_get (shndx_list, 4);
6214 if (shndx == 0)
6215 break;
6216 if (do_display)
6217 printf (" %d", shndx);
6218 else
6219 add_shndx_to_cu_tu_entry (shndx);
6220 shndx_list += 4;
6221 }
6222 if (do_display)
6223 printf ("\n");
6224 else
6225 end_cu_tu_entry ();
6226 }
6227 phash += 8;
6228 pindex += 4;
6229 }
6230 }
6231 else if (version == 2)
6232 {
6233 unsigned int val;
6234 unsigned int dw_sect;
6235 unsigned char *ph = phash;
6236 unsigned char *pi = pindex;
6237 unsigned char *poffsets = ppool + ncols * 4;
6238 unsigned char *psizes = poffsets + nused * ncols * 4;
6239 unsigned char *pend = psizes + nused * ncols * 4;
6240 bfd_boolean is_tu_index;
6241 struct cu_tu_set *this_set = NULL;
6242 unsigned int row;
6243 unsigned char *prow;
6244
6245 is_tu_index = strcmp (section->name, ".debug_tu_index") == 0;
6246
6247 if (pend > limit)
6248 {
6249 warn (_("Section %s too small for offset and size tables\n"),
6250 section->name);
6251 return 0;
6252 }
6253
6254 if (do_display)
6255 {
6256 printf (_(" Offset table\n"));
6257 printf (" slot %-16s ",
6258 is_tu_index ? _("signature") : _("dwo_id"));
6259 }
6260 else
6261 {
6262 if (is_tu_index)
6263 {
6264 tu_count = nused;
6265 tu_sets = xcmalloc (nused, sizeof (struct cu_tu_set));
6266 this_set = tu_sets;
6267 }
6268 else
6269 {
6270 cu_count = nused;
6271 cu_sets = xcmalloc (nused, sizeof (struct cu_tu_set));
6272 this_set = cu_sets;
6273 }
6274 }
6275 if (do_display)
6276 {
6277 for (j = 0; j < ncols; j++)
6278 {
6279 dw_sect = byte_get (ppool + j * 4, 4);
6280 printf (" %8s", get_DW_SECT_short_name (dw_sect));
6281 }
6282 printf ("\n");
6283 }
6284 for (i = 0; i < nslots; i++)
6285 {
6286 byte_get_64 (ph, &signature_high, &signature_low);
6287 row = byte_get (pi, 4);
6288 if (row != 0)
6289 {
6290 if (!do_display)
6291 memcpy (&this_set[row - 1].signature, ph, sizeof (uint64_t));
6292 prow = poffsets + (row - 1) * ncols * 4;
6293 if (do_display)
6294 printf (_(" [%3d] 0x%s"),
6295 i, dwarf_vmatoa64 (signature_high, signature_low,
6296 buf, sizeof (buf)));
6297 for (j = 0; j < ncols; j++)
6298 {
6299 val = byte_get (prow + j * 4, 4);
6300 if (do_display)
6301 printf (" %8d", val);
6302 else
6303 {
6304 dw_sect = byte_get (ppool + j * 4, 4);
6305 this_set [row - 1].section_offsets [dw_sect] = val;
6306 }
6307 }
6308 if (do_display)
6309 printf ("\n");
6310 }
6311 ph += 8;
6312 pi += 4;
6313 }
6314
6315 ph = phash;
6316 pi = pindex;
6317 if (do_display)
6318 {
6319 printf ("\n");
6320 printf (_(" Size table\n"));
6321 printf (" slot %-16s ",
6322 is_tu_index ? _("signature") : _("dwo_id"));
6323 }
6324 for (j = 0; j < ncols; j++)
6325 {
6326 val = byte_get (ppool + j * 4, 4);
6327 if (do_display)
6328 printf (" %8s", get_DW_SECT_short_name (val));
6329 }
6330 if (do_display)
6331 printf ("\n");
6332 for (i = 0; i < nslots; i++)
6333 {
6334 byte_get_64 (ph, &signature_high, &signature_low);
6335 row = byte_get (pi, 4);
6336 if (row != 0)
6337 {
6338 prow = psizes + (row - 1) * ncols * 4;
6339 if (do_display)
6340 printf (_(" [%3d] 0x%s"),
6341 i, dwarf_vmatoa64 (signature_high, signature_low,
6342 buf, sizeof (buf)));
6343 for (j = 0; j < ncols; j++)
6344 {
6345 val = byte_get (prow + j * 4, 4);
6346 if (do_display)
6347 printf (" %8d", val);
6348 else
6349 {
6350 dw_sect = byte_get (ppool + j * 4, 4);
6351 this_set [row - 1].section_sizes [dw_sect] = val;
6352 }
6353 }
6354 if (do_display)
6355 printf ("\n");
6356 }
6357 ph += 8;
6358 pi += 4;
6359 }
6360 }
6361 else if (do_display)
6362 printf (_(" Unsupported version\n"));
6363
6364 if (do_display)
6365 printf ("\n");
6366
6367 return 1;
6368 }
6369
6370 /* Load the CU and TU indexes if present. This will build a list of
6371 section sets that we can use to associate a .debug_info.dwo section
6372 with its associated .debug_abbrev.dwo section in a .dwp file. */
6373
6374 static void
6375 load_cu_tu_indexes (void *file)
6376 {
6377 /* If we have already loaded (or tried to load) the CU and TU indexes
6378 then do not bother to repeat the task. */
6379 if (cu_tu_indexes_read)
6380 return;
6381
6382 if (load_debug_section (dwp_cu_index, file))
6383 process_cu_tu_index (&debug_displays [dwp_cu_index].section, 0);
6384
6385 if (load_debug_section (dwp_tu_index, file))
6386 process_cu_tu_index (&debug_displays [dwp_tu_index].section, 0);
6387
6388 cu_tu_indexes_read = 1;
6389 }
6390
6391 /* Find the set of sections that includes section SHNDX. */
6392
6393 unsigned int *
6394 find_cu_tu_set (void *file, unsigned int shndx)
6395 {
6396 unsigned int i;
6397
6398 load_cu_tu_indexes (file);
6399
6400 /* Find SHNDX in the shndx pool. */
6401 for (i = 0; i < shndx_pool_used; i++)
6402 if (shndx_pool [i] == shndx)
6403 break;
6404
6405 if (i >= shndx_pool_used)
6406 return NULL;
6407
6408 /* Now backup to find the first entry in the set. */
6409 while (i > 0 && shndx_pool [i - 1] != 0)
6410 i--;
6411
6412 return shndx_pool + i;
6413 }
6414
6415 /* Display a .debug_cu_index or .debug_tu_index section. */
6416
6417 static int
6418 display_cu_index (struct dwarf_section *section, void *file ATTRIBUTE_UNUSED)
6419 {
6420 return process_cu_tu_index (section, 1);
6421 }
6422
6423 static int
6424 display_debug_not_supported (struct dwarf_section *section,
6425 void *file ATTRIBUTE_UNUSED)
6426 {
6427 printf (_("Displaying the debug contents of section %s is not yet supported.\n"),
6428 section->name);
6429
6430 return 1;
6431 }
6432
6433 void *
6434 cmalloc (size_t nmemb, size_t size)
6435 {
6436 /* Check for overflow. */
6437 if (nmemb >= ~(size_t) 0 / size)
6438 return NULL;
6439 else
6440 return malloc (nmemb * size);
6441 }
6442
6443 void *
6444 xcmalloc (size_t nmemb, size_t size)
6445 {
6446 /* Check for overflow. */
6447 if (nmemb >= ~(size_t) 0 / size)
6448 return NULL;
6449 else
6450 return xmalloc (nmemb * size);
6451 }
6452
6453 void *
6454 xcrealloc (void *ptr, size_t nmemb, size_t size)
6455 {
6456 /* Check for overflow. */
6457 if (nmemb >= ~(size_t) 0 / size)
6458 return NULL;
6459 else
6460 return xrealloc (ptr, nmemb * size);
6461 }
6462
6463 void
6464 free_debug_memory (void)
6465 {
6466 unsigned int i;
6467
6468 free_abbrevs ();
6469
6470 for (i = 0; i < max; i++)
6471 free_debug_section ((enum dwarf_section_display_enum) i);
6472
6473 if (debug_information != NULL)
6474 {
6475 if (num_debug_info_entries != DEBUG_INFO_UNAVAILABLE)
6476 {
6477 for (i = 0; i < num_debug_info_entries; i++)
6478 {
6479 if (!debug_information [i].max_loc_offsets)
6480 {
6481 free (debug_information [i].loc_offsets);
6482 free (debug_information [i].have_frame_base);
6483 }
6484 if (!debug_information [i].max_range_lists)
6485 free (debug_information [i].range_lists);
6486 }
6487 }
6488
6489 free (debug_information);
6490 debug_information = NULL;
6491 num_debug_info_entries = 0;
6492 }
6493 }
6494
6495 void
6496 dwarf_select_sections_by_names (const char *names)
6497 {
6498 typedef struct
6499 {
6500 const char * option;
6501 int * variable;
6502 int val;
6503 }
6504 debug_dump_long_opts;
6505
6506 static const debug_dump_long_opts opts_table [] =
6507 {
6508 /* Please keep this table alpha- sorted. */
6509 { "Ranges", & do_debug_ranges, 1 },
6510 { "abbrev", & do_debug_abbrevs, 1 },
6511 { "addr", & do_debug_addr, 1 },
6512 { "aranges", & do_debug_aranges, 1 },
6513 { "cu_index", & do_debug_cu_index, 1 },
6514 { "decodedline", & do_debug_lines, FLAG_DEBUG_LINES_DECODED },
6515 { "frames", & do_debug_frames, 1 },
6516 { "frames-interp", & do_debug_frames_interp, 1 },
6517 /* The special .gdb_index section. */
6518 { "gdb_index", & do_gdb_index, 1 },
6519 { "info", & do_debug_info, 1 },
6520 { "line", & do_debug_lines, FLAG_DEBUG_LINES_RAW }, /* For backwards compatibility. */
6521 { "loc", & do_debug_loc, 1 },
6522 { "macro", & do_debug_macinfo, 1 },
6523 { "pubnames", & do_debug_pubnames, 1 },
6524 { "pubtypes", & do_debug_pubtypes, 1 },
6525 /* This entry is for compatability
6526 with earlier versions of readelf. */
6527 { "ranges", & do_debug_aranges, 1 },
6528 { "rawline", & do_debug_lines, FLAG_DEBUG_LINES_RAW },
6529 { "str", & do_debug_str, 1 },
6530 /* These trace_* sections are used by Itanium VMS. */
6531 { "trace_abbrev", & do_trace_abbrevs, 1 },
6532 { "trace_aranges", & do_trace_aranges, 1 },
6533 { "trace_info", & do_trace_info, 1 },
6534 { NULL, NULL, 0 }
6535 };
6536
6537 const char *p;
6538
6539 p = names;
6540 while (*p)
6541 {
6542 const debug_dump_long_opts * entry;
6543
6544 for (entry = opts_table; entry->option; entry++)
6545 {
6546 size_t len = strlen (entry->option);
6547
6548 if (strncmp (p, entry->option, len) == 0
6549 && (p[len] == ',' || p[len] == '\0'))
6550 {
6551 * entry->variable |= entry->val;
6552
6553 /* The --debug-dump=frames-interp option also
6554 enables the --debug-dump=frames option. */
6555 if (do_debug_frames_interp)
6556 do_debug_frames = 1;
6557
6558 p += len;
6559 break;
6560 }
6561 }
6562
6563 if (entry->option == NULL)
6564 {
6565 warn (_("Unrecognized debug option '%s'\n"), p);
6566 p = strchr (p, ',');
6567 if (p == NULL)
6568 break;
6569 }
6570
6571 if (*p == ',')
6572 p++;
6573 }
6574 }
6575
6576 void
6577 dwarf_select_sections_by_letters (const char *letters)
6578 {
6579 unsigned int lindex = 0;
6580
6581 while (letters[lindex])
6582 switch (letters[lindex++])
6583 {
6584 case 'i':
6585 do_debug_info = 1;
6586 break;
6587
6588 case 'a':
6589 do_debug_abbrevs = 1;
6590 break;
6591
6592 case 'l':
6593 do_debug_lines |= FLAG_DEBUG_LINES_RAW;
6594 break;
6595
6596 case 'L':
6597 do_debug_lines |= FLAG_DEBUG_LINES_DECODED;
6598 break;
6599
6600 case 'p':
6601 do_debug_pubnames = 1;
6602 break;
6603
6604 case 't':
6605 do_debug_pubtypes = 1;
6606 break;
6607
6608 case 'r':
6609 do_debug_aranges = 1;
6610 break;
6611
6612 case 'R':
6613 do_debug_ranges = 1;
6614 break;
6615
6616 case 'F':
6617 do_debug_frames_interp = 1;
6618 case 'f':
6619 do_debug_frames = 1;
6620 break;
6621
6622 case 'm':
6623 do_debug_macinfo = 1;
6624 break;
6625
6626 case 's':
6627 do_debug_str = 1;
6628 break;
6629
6630 case 'o':
6631 do_debug_loc = 1;
6632 break;
6633
6634 default:
6635 warn (_("Unrecognized debug option '%s'\n"), optarg);
6636 break;
6637 }
6638 }
6639
6640 void
6641 dwarf_select_sections_all (void)
6642 {
6643 do_debug_info = 1;
6644 do_debug_abbrevs = 1;
6645 do_debug_lines = FLAG_DEBUG_LINES_RAW;
6646 do_debug_pubnames = 1;
6647 do_debug_pubtypes = 1;
6648 do_debug_aranges = 1;
6649 do_debug_ranges = 1;
6650 do_debug_frames = 1;
6651 do_debug_macinfo = 1;
6652 do_debug_str = 1;
6653 do_debug_loc = 1;
6654 do_gdb_index = 1;
6655 do_trace_info = 1;
6656 do_trace_abbrevs = 1;
6657 do_trace_aranges = 1;
6658 do_debug_addr = 1;
6659 do_debug_cu_index = 1;
6660 }
6661
6662 struct dwarf_section_display debug_displays[] =
6663 {
6664 { { ".debug_abbrev", ".zdebug_abbrev", NULL, NULL, 0, 0, 0 },
6665 display_debug_abbrev, &do_debug_abbrevs, 0 },
6666 { { ".debug_aranges", ".zdebug_aranges", NULL, NULL, 0, 0, 0 },
6667 display_debug_aranges, &do_debug_aranges, 1 },
6668 { { ".debug_frame", ".zdebug_frame", NULL, NULL, 0, 0, 0 },
6669 display_debug_frames, &do_debug_frames, 1 },
6670 { { ".debug_info", ".zdebug_info", NULL, NULL, 0, 0, abbrev },
6671 display_debug_info, &do_debug_info, 1 },
6672 { { ".debug_line", ".zdebug_line", NULL, NULL, 0, 0, 0 },
6673 display_debug_lines, &do_debug_lines, 1 },
6674 { { ".debug_pubnames", ".zdebug_pubnames", NULL, NULL, 0, 0, 0 },
6675 display_debug_pubnames, &do_debug_pubnames, 0 },
6676 { { ".eh_frame", "", NULL, NULL, 0, 0, 0 },
6677 display_debug_frames, &do_debug_frames, 1 },
6678 { { ".debug_macinfo", ".zdebug_macinfo", NULL, NULL, 0, 0, 0 },
6679 display_debug_macinfo, &do_debug_macinfo, 0 },
6680 { { ".debug_macro", ".zdebug_macro", NULL, NULL, 0, 0, 0 },
6681 display_debug_macro, &do_debug_macinfo, 1 },
6682 { { ".debug_str", ".zdebug_str", NULL, NULL, 0, 0, 0 },
6683 display_debug_str, &do_debug_str, 0 },
6684 { { ".debug_loc", ".zdebug_loc", NULL, NULL, 0, 0, 0 },
6685 display_debug_loc, &do_debug_loc, 1 },
6686 { { ".debug_pubtypes", ".zdebug_pubtypes", NULL, NULL, 0, 0, 0 },
6687 display_debug_pubnames, &do_debug_pubtypes, 0 },
6688 { { ".debug_ranges", ".zdebug_ranges", NULL, NULL, 0, 0, 0 },
6689 display_debug_ranges, &do_debug_ranges, 1 },
6690 { { ".debug_static_func", ".zdebug_static_func", NULL, NULL, 0, 0, 0 },
6691 display_debug_not_supported, NULL, 0 },
6692 { { ".debug_static_vars", ".zdebug_static_vars", NULL, NULL, 0, 0, 0 },
6693 display_debug_not_supported, NULL, 0 },
6694 { { ".debug_types", ".zdebug_types", NULL, NULL, 0, 0, abbrev },
6695 display_debug_types, &do_debug_info, 1 },
6696 { { ".debug_weaknames", ".zdebug_weaknames", NULL, NULL, 0, 0, 0 },
6697 display_debug_not_supported, NULL, 0 },
6698 { { ".gdb_index", "", NULL, NULL, 0, 0, 0 },
6699 display_gdb_index, &do_gdb_index, 0 },
6700 { { ".trace_info", "", NULL, NULL, 0, 0, trace_abbrev },
6701 display_trace_info, &do_trace_info, 1 },
6702 { { ".trace_abbrev", "", NULL, NULL, 0, 0, 0 },
6703 display_debug_abbrev, &do_trace_abbrevs, 0 },
6704 { { ".trace_aranges", "", NULL, NULL, 0, 0, 0 },
6705 display_debug_aranges, &do_trace_aranges, 0 },
6706 { { ".debug_info.dwo", ".zdebug_info.dwo", NULL, NULL, 0, 0, abbrev_dwo },
6707 display_debug_info, &do_debug_info, 1 },
6708 { { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo", NULL, NULL, 0, 0, 0 },
6709 display_debug_abbrev, &do_debug_abbrevs, 0 },
6710 { { ".debug_types.dwo", ".zdebug_types.dwo", NULL, NULL, 0, 0, abbrev_dwo },
6711 display_debug_types, &do_debug_info, 1 },
6712 { { ".debug_line.dwo", ".zdebug_line.dwo", NULL, NULL, 0, 0, 0 },
6713 display_debug_lines, &do_debug_lines, 1 },
6714 { { ".debug_loc.dwo", ".zdebug_loc.dwo", NULL, NULL, 0, 0, 0 },
6715 display_debug_loc, &do_debug_loc, 1 },
6716 { { ".debug_macro.dwo", ".zdebug_macro.dwo", NULL, NULL, 0, 0, 0 },
6717 display_debug_macro, &do_debug_macinfo, 1 },
6718 { { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo", NULL, NULL, 0, 0, 0 },
6719 display_debug_macinfo, &do_debug_macinfo, 0 },
6720 { { ".debug_str.dwo", ".zdebug_str.dwo", NULL, NULL, 0, 0, 0 },
6721 display_debug_str, &do_debug_str, 1 },
6722 { { ".debug_str_offsets", ".zdebug_str_offsets", NULL, NULL, 0, 0, 0 },
6723 display_debug_str_offsets, NULL, 0 },
6724 { { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo", NULL, NULL, 0, 0, 0 },
6725 display_debug_str_offsets, NULL, 0 },
6726 { { ".debug_addr", ".zdebug_addr", NULL, NULL, 0, 0, 0 },
6727 display_debug_addr, &do_debug_addr, 1 },
6728 { { ".debug_cu_index", "", NULL, NULL, 0, 0, 0 },
6729 display_cu_index, &do_debug_cu_index, 0 },
6730 { { ".debug_tu_index", "", NULL, NULL, 0, 0, 0 },
6731 display_cu_index, &do_debug_cu_index, 0 },
6732 };
This page took 0.256256 seconds and 4 git commands to generate.