Eric Christopher | 09d1c0f | 2014-03-14 21:20:07 +0000 | [diff] [blame] | 1 | ; RUN: llc -split-dwarf=Enable -O0 %s -mtriple=x86_64-unknown-linux-gnu -filetype=obj -o %t |
Eli Bendersky | e6abe83 | 2013-01-25 21:44:53 +0000 | [diff] [blame] | 2 | ; RUN: llvm-dwarfdump -debug-dump=all %t | FileCheck %s |
Eric Christopher | 55863be | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 3 | ; RUN: llvm-readobj --relocations %t | FileCheck --check-prefix=OBJ %s |
David Blaikie | 2047410 | 2014-02-25 22:46:44 +0000 | [diff] [blame] | 4 | ; RUN: llvm-objdump -h %t | FileCheck --check-prefix=HDR %s |
Eric Christopher | 9c2ecd9 | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 5 | |
| 6 | @a = common global i32 0, align 4 |
| 7 | |
| 8 | !llvm.dbg.cu = !{!0} |
Manman Ren | 409558f | 2013-11-22 21:49:45 +0000 | [diff] [blame] | 9 | !llvm.module.flags = !{!9} |
Eric Christopher | 9c2ecd9 | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 10 | |
David Blaikie | 5e390e4 | 2014-02-04 01:23:52 +0000 | [diff] [blame] | 11 | !0 = metadata !{i32 786449, metadata !8, i32 12, metadata !"clang version 3.3 (trunk 169021) (llvm/trunk 169020)", i1 false, metadata !"", i32 0, metadata !1, metadata !1, metadata !1, metadata !3, metadata !1, metadata !"baz.dwo"} ; [ DW_TAG_compile_unit ] [/usr/local/google/home/echristo/tmp/baz.c] [DW_LANG_C99] |
| 12 | !1 = metadata !{} |
David Blaikie | 33111df | 2013-02-02 05:56:24 +0000 | [diff] [blame] | 13 | !3 = metadata !{metadata !5} |
David Blaikie | 47922fb | 2013-03-11 22:37:40 +0000 | [diff] [blame] | 14 | !5 = metadata !{i32 786484, i32 0, null, metadata !"a", metadata !"a", metadata !"", metadata !6, i32 1, metadata !7, i32 0, i32 1, i32* @a, null} ; [ DW_TAG_variable ] [a] [line 1] [def] |
David Blaikie | 5692e72 | 2013-03-28 02:44:59 +0000 | [diff] [blame] | 15 | !6 = metadata !{i32 786473, metadata !8} ; [ DW_TAG_file_type ] |
| 16 | !7 = metadata !{i32 786468, null, null, metadata !"int", i32 0, i64 32, i64 32, i64 0, i32 0, i32 5} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed] |
David Blaikie | 8fb8224 | 2013-03-17 21:13:55 +0000 | [diff] [blame] | 17 | !8 = metadata !{metadata !"baz.c", metadata !"/usr/local/google/home/echristo/tmp"} |
Eric Christopher | 9c2ecd9 | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 18 | |
| 19 | ; Check that the skeleton compile unit contains the proper attributes: |
| 20 | ; This DIE has the following attributes: DW_AT_comp_dir, DW_AT_stmt_list, |
| 21 | ; DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges, DW_AT_dwo_name, DW_AT_dwo_id, |
| 22 | ; DW_AT_ranges_base, DW_AT_addr_base. |
| 23 | |
Eric Christopher | 6a421a9 | 2013-02-05 07:32:00 +0000 | [diff] [blame] | 24 | ; CHECK: .debug_abbrev contents: |
| 25 | ; CHECK: Abbrev table for offset: 0x00000000 |
| 26 | ; CHECK: [1] DW_TAG_compile_unit DW_CHILDREN_no |
David Blaikie | 38fe634 | 2014-01-09 04:28:46 +0000 | [diff] [blame] | 27 | ; CHECK: DW_AT_stmt_list DW_FORM_sec_offset |
Eric Christopher | 6a421a9 | 2013-02-05 07:32:00 +0000 | [diff] [blame] | 28 | ; CHECK: DW_AT_GNU_dwo_name DW_FORM_strp |
Eric Christopher | 6a421a9 | 2013-02-05 07:32:00 +0000 | [diff] [blame] | 29 | ; CHECK: DW_AT_comp_dir DW_FORM_strp |
Eric Christopher | 60eb769 | 2013-08-12 20:27:48 +0000 | [diff] [blame] | 30 | ; CHECK: DW_AT_GNU_dwo_id DW_FORM_data8 |
Eric Christopher | 6a421a9 | 2013-02-05 07:32:00 +0000 | [diff] [blame] | 31 | |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 32 | ; Check that we're using the right forms. |
| 33 | ; CHECK: .debug_abbrev.dwo contents: |
| 34 | ; CHECK: Abbrev table for offset: 0x00000000 |
| 35 | ; CHECK: [1] DW_TAG_compile_unit DW_CHILDREN_yes |
| 36 | ; CHECK: DW_AT_producer DW_FORM_GNU_str_index |
| 37 | ; CHECK: DW_AT_language DW_FORM_data2 |
| 38 | ; CHECK: DW_AT_name DW_FORM_GNU_str_index |
Eric Christopher | 52ce718 | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 39 | ; CHECK-NOT: DW_AT_low_pc |
| 40 | ; CHECK-NOT: DW_AT_stmt_list |
| 41 | ; CHECK-NOT: DW_AT_comp_dir |
Eric Christopher | 7a2cdf7 | 2013-02-05 07:31:55 +0000 | [diff] [blame] | 42 | ; CHECK: DW_AT_GNU_dwo_id DW_FORM_data8 |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 43 | |
Manman Ren | f6b936b | 2013-10-29 05:49:41 +0000 | [diff] [blame] | 44 | ; CHECK: [2] DW_TAG_variable DW_CHILDREN_no |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 45 | ; CHECK: DW_AT_name DW_FORM_GNU_str_index |
| 46 | ; CHECK: DW_AT_type DW_FORM_ref4 |
| 47 | ; CHECK: DW_AT_external DW_FORM_flag_present |
| 48 | ; CHECK: DW_AT_decl_file DW_FORM_data1 |
| 49 | ; CHECK: DW_AT_decl_line DW_FORM_data1 |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 50 | ; CHECK: DW_AT_location DW_FORM_exprloc |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 51 | |
Manman Ren | f6b936b | 2013-10-29 05:49:41 +0000 | [diff] [blame] | 52 | ; CHECK: [3] DW_TAG_base_type DW_CHILDREN_no |
| 53 | ; CHECK: DW_AT_name DW_FORM_GNU_str_index |
| 54 | ; CHECK: DW_AT_encoding DW_FORM_data1 |
| 55 | ; CHECK: DW_AT_byte_size DW_FORM_data1 |
| 56 | |
David Blaikie | 622dce4 | 2014-01-08 23:29:59 +0000 | [diff] [blame] | 57 | ; CHECK: .debug_info contents: |
| 58 | ; CHECK: DW_TAG_compile_unit |
David Blaikie | 96dea05 | 2014-03-24 21:31:35 +0000 | [diff] [blame] | 59 | ; CHECK-NEXT: DW_AT_stmt_list [DW_FORM_sec_offset] (0x00000000) |
| 60 | ; CHECK-NEXT: DW_AT_GNU_dwo_name [DW_FORM_strp] ( .debug_str[0x00000000] = "baz.dwo") |
| 61 | ; CHECK-NEXT: DW_AT_comp_dir [DW_FORM_strp] ( .debug_str[0x00000008] = "/usr/local/google/home/echristo/tmp") |
David Blaikie | 96dea05 | 2014-03-24 21:31:35 +0000 | [diff] [blame] | 62 | ; CHECK-NEXT: DW_AT_GNU_dwo_id [DW_FORM_data8] (0x1f1f859683d49324) |
David Blaikie | 622dce4 | 2014-01-08 23:29:59 +0000 | [diff] [blame] | 63 | |
Eric Christopher | da4b219 | 2013-01-02 23:52:13 +0000 | [diff] [blame] | 64 | ; Check that the rest of the compile units have information. |
Eric Christopher | da4b219 | 2013-01-02 23:52:13 +0000 | [diff] [blame] | 65 | ; CHECK: .debug_info.dwo contents: |
| 66 | ; CHECK: DW_TAG_compile_unit |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 67 | ; CHECK: DW_AT_producer [DW_FORM_GNU_str_index] ( indexed (00000000) string = "clang version 3.3 (trunk 169021) (llvm/trunk 169020)") |
Frederic Riss | 878065b | 2014-09-04 19:39:20 +0000 | [diff] [blame] | 68 | ; CHECK: DW_AT_language [DW_FORM_data2] (DW_LANG_C99) |
Eric Christopher | 2cbd576 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 69 | ; CHECK: DW_AT_name [DW_FORM_GNU_str_index] ( indexed (00000001) string = "baz.c") |
Eric Christopher | 52ce718 | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 70 | ; CHECK-NOT: DW_AT_low_pc |
| 71 | ; CHECK-NOT: DW_AT_stmt_list |
| 72 | ; CHECK-NOT: DW_AT_comp_dir |
Eric Christopher | 420569b | 2014-02-20 02:50:45 +0000 | [diff] [blame] | 73 | ; CHECK: DW_AT_GNU_dwo_id [DW_FORM_data8] (0x1f1f859683d49324) |
Eric Christopher | da4b219 | 2013-01-02 23:52:13 +0000 | [diff] [blame] | 74 | ; CHECK: DW_TAG_variable |
Eric Christopher | 52ce718 | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 75 | ; CHECK: DW_AT_name [DW_FORM_GNU_str_index] ( indexed (00000002) string = "a") |
Manman Ren | f6b936b | 2013-10-29 05:49:41 +0000 | [diff] [blame] | 76 | ; CHECK: DW_AT_type [DW_FORM_ref4] (cu + 0x{{[0-9a-f]*}} => {[[TYPE:0x[0-9a-f]*]]}) |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 77 | ; CHECK: DW_AT_external [DW_FORM_flag_present] (true) |
| 78 | ; CHECK: DW_AT_decl_file [DW_FORM_data1] (0x01) |
Frederic Riss | 0982e69 | 2014-09-05 07:21:50 +0000 | [diff] [blame^] | 79 | ; CHECK: DW_AT_decl_line [DW_FORM_data1] (1) |
Eric Christopher | 4a74104 | 2014-02-16 08:46:55 +0000 | [diff] [blame] | 80 | ; CHECK: DW_AT_location [DW_FORM_exprloc] (<0x2> fb 00 ) |
Manman Ren | f6b936b | 2013-10-29 05:49:41 +0000 | [diff] [blame] | 81 | ; CHECK: [[TYPE]]: DW_TAG_base_type |
| 82 | ; CHECK: DW_AT_name [DW_FORM_GNU_str_index] ( indexed (00000003) string = "int") |
Eric Christopher | e9ec245 | 2013-01-18 22:11:33 +0000 | [diff] [blame] | 83 | |
David Blaikie | 622dce4 | 2014-01-08 23:29:59 +0000 | [diff] [blame] | 84 | ; CHECK: .debug_str contents: |
| 85 | ; CHECK: 0x00000000: "baz.dwo" |
| 86 | ; CHECK: 0x00000008: "/usr/local/google/home/echristo/tmp" |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 87 | |
| 88 | ; CHECK: .debug_str.dwo contents: |
| 89 | ; CHECK: 0x00000000: "clang version 3.3 (trunk 169021) (llvm/trunk 169020)" |
| 90 | ; CHECK: 0x00000035: "baz.c" |
Eric Christopher | 52ce718 | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 91 | ; CHECK: 0x0000003b: "a" |
| 92 | ; CHECK: 0x0000003d: "int" |
Eric Christopher | 962c908 | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 93 | |
| 94 | ; CHECK: .debug_str_offsets.dwo contents: |
| 95 | ; CHECK: 0x00000000: 00000000 |
| 96 | ; CHECK: 0x00000004: 00000035 |
| 97 | ; CHECK: 0x00000008: 0000003b |
Eric Christopher | 52ce718 | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 98 | ; CHECK: 0x0000000c: 0000003d |
Eric Christopher | 55863be | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 99 | |
| 100 | ; Object file checks |
| 101 | ; For x86-64-linux we should have this set of relocations for the debug info section |
| 102 | ; |
| 103 | ; OBJ: .debug_info |
| 104 | ; OBJ-NEXT: R_X86_64_32 .debug_abbrev |
David Blaikie | 38fe634 | 2014-01-09 04:28:46 +0000 | [diff] [blame] | 105 | ; OBJ-NEXT: R_X86_64_32 .debug_line |
Eric Christopher | 55863be | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 106 | ; OBJ-NEXT: R_X86_64_32 .debug_str |
Eric Christopher | 55863be | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 107 | ; OBJ-NEXT: R_X86_64_32 .debug_str |
David Blaikie | 330ec97 | 2014-03-21 20:27:21 +0000 | [diff] [blame] | 108 | ; OBJ-NEXT: R_X86_64_32 .debug_addr |
Eric Christopher | 55863be | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 109 | ; OBJ-NEXT: } |
Eric Christopher | d866720 | 2013-12-30 17:22:27 +0000 | [diff] [blame] | 110 | |
David Blaikie | 2047410 | 2014-02-25 22:46:44 +0000 | [diff] [blame] | 111 | ; HDR-NOT: .debug_aranges |
David Blaikie | 3c9a3cc | 2014-03-24 20:53:02 +0000 | [diff] [blame] | 112 | ; HDR-NOT: .rela.{{.*}}.dwo |
David Blaikie | 2047410 | 2014-02-25 22:46:44 +0000 | [diff] [blame] | 113 | |
Manman Ren | 409558f | 2013-11-22 21:49:45 +0000 | [diff] [blame] | 114 | !9 = metadata !{i32 1, metadata !"Debug Info Version", i32 1} |