| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 1 | ; RUN: llc -mtriple=x86_64-apple-darwin -O0 -filetype=obj -o %t < %s |
| Eli Bendersky | e6abe83 | 2013-01-25 21:44:53 +0000 | [diff] [blame] | 2 | ; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 3 | ; <rdar://problem/12566646> |
| 4 | |
| 5 | %struct.foo = type { i32, [1 x i32] } |
| 6 | %struct.bar = type { i32, [0 x i32] } |
| 7 | |
| 8 | define i32 @func() nounwind uwtable ssp { |
| 9 | entry: |
| 10 | %my_foo = alloca %struct.foo, align 4 |
| 11 | %my_bar = alloca %struct.bar, align 4 |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 12 | call void @llvm.dbg.declare(metadata %struct.foo* %my_foo, metadata !10, metadata !MDExpression()), !dbg !19 |
| 13 | call void @llvm.dbg.declare(metadata %struct.bar* %my_bar, metadata !20, metadata !MDExpression()), !dbg !28 |
| David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 14 | %a = getelementptr inbounds %struct.foo, %struct.foo* %my_foo, i32 0, i32 0, !dbg !29 |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 15 | store i32 3, i32* %a, align 4, !dbg !29 |
| David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 16 | %a1 = getelementptr inbounds %struct.bar, %struct.bar* %my_bar, i32 0, i32 0, !dbg !30 |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 17 | store i32 5, i32* %a1, align 4, !dbg !30 |
| David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 18 | %a2 = getelementptr inbounds %struct.foo, %struct.foo* %my_foo, i32 0, i32 0, !dbg !31 |
| David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 19 | %0 = load i32, i32* %a2, align 4, !dbg !31 |
| David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 20 | %a3 = getelementptr inbounds %struct.bar, %struct.bar* %my_bar, i32 0, i32 0, !dbg !31 |
| David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 21 | %1 = load i32, i32* %a3, align 4, !dbg !31 |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 22 | %add = add nsw i32 %0, %1, !dbg !31 |
| 23 | ret i32 %add, !dbg !31 |
| 24 | } |
| 25 | |
| Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 26 | declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 27 | |
| David Blaikie | eb1a272 | 2014-06-13 22:18:23 +0000 | [diff] [blame] | 28 | ; CHECK: DW_TAG_base_type |
| 29 | ; CHECK-NEXT: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "int") |
| Frederic Riss | 878065b | 2014-09-04 19:39:20 +0000 | [diff] [blame] | 30 | ; CHECK-NEXT: DW_AT_encoding [DW_FORM_data1] (DW_ATE_signed) |
| David Blaikie | eb1a272 | 2014-06-13 22:18:23 +0000 | [diff] [blame] | 31 | ; CHECK-NEXT: DW_AT_byte_size [DW_FORM_data1] (0x04) |
| 32 | |
| Manman Ren | f4c339e | 2013-10-29 22:49:29 +0000 | [diff] [blame] | 33 | ; int foo::b[1]: |
| 34 | ; CHECK: DW_TAG_structure_type |
| 35 | ; CHECK: DW_AT_name{{.*}}"foo" |
| 36 | ; CHECK: DW_TAG_member |
| 37 | ; CHECK: DW_TAG_member |
| 38 | ; CHECK-NEXT: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "b") |
| Eric Christopher | e31e072 | 2013-09-04 22:21:24 +0000 | [diff] [blame] | 39 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| Manman Ren | f4c339e | 2013-10-29 22:49:29 +0000 | [diff] [blame] | 40 | |
| 41 | ; int[1]: |
| 42 | ; CHECK: DW_TAG_array_type [{{.*}}] * |
| 43 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| 44 | ; CHECK: DW_TAG_subrange_type [{{.*}}] |
| Eric Christopher | e31e072 | 2013-09-04 22:21:24 +0000 | [diff] [blame] | 45 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| David Blaikie | 32b0f36 | 2014-10-01 00:56:55 +0000 | [diff] [blame] | 46 | ; CHECK-NEXT: DW_AT_count [DW_FORM_data1] (0x01) |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 47 | |
| Manman Ren | f4c339e | 2013-10-29 22:49:29 +0000 | [diff] [blame] | 48 | ; int bar::b[0]: |
| 49 | ; CHECK: DW_TAG_structure_type |
| 50 | ; CHECK: DW_AT_name{{.*}}"bar" |
| 51 | ; CHECK: DW_TAG_member |
| 52 | ; CHECK: DW_TAG_member |
| Eric Christopher | e31e072 | 2013-09-04 22:21:24 +0000 | [diff] [blame] | 53 | ; CHECK-NEXT: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "b") |
| 54 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 55 | |
| 56 | ; int[0]: |
| Manman Ren | f4c339e | 2013-10-29 22:49:29 +0000 | [diff] [blame] | 57 | ; CHECK: DW_TAG_array_type [{{.*}}] * |
| Eric Christopher | e31e072 | 2013-09-04 22:21:24 +0000 | [diff] [blame] | 58 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| David Blaikie | 32b0f36 | 2014-10-01 00:56:55 +0000 | [diff] [blame] | 59 | ; CHECK: DW_TAG_subrange_type |
| Eric Christopher | e31e072 | 2013-09-04 22:21:24 +0000 | [diff] [blame] | 60 | ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] |
| David Blaikie | 32b0f36 | 2014-10-01 00:56:55 +0000 | [diff] [blame] | 61 | ; CHECK: DW_AT_count [DW_FORM_data1] (0x00) |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 62 | |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 63 | !llvm.dbg.cu = !{!0} |
| Manman Ren | 409558f | 2013-11-22 21:49:45 +0000 | [diff] [blame] | 64 | !llvm.module.flags = !{!33} |
| Bill Wendling | bfc0e57 | 2012-12-04 06:20:49 +0000 | [diff] [blame] | 65 | |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 66 | !0 = !MDCompileUnit(language: DW_LANG_C99, producer: "clang version 3.3 (trunk 169136)", isOptimized: false, emissionKind: 0, file: !32, enums: !1, retainedTypes: !1, subprograms: !3, globals: !1, imports: !1) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 67 | !1 = !{} |
| 68 | !3 = !{!5} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 69 | !5 = !MDSubprogram(name: "func", line: 11, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, scopeLine: 11, file: !6, scope: !6, type: !7, function: i32 ()* @func, variables: !1) |
| 70 | !6 = !MDFile(filename: "test.c", directory: "/Volumes/Sandbox/llvm") |
| 71 | !7 = !MDSubroutineType(types: !8) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 72 | !8 = !{!9} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 73 | !9 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) |
| 74 | !10 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "my_foo", line: 12, scope: !11, file: !6, type: !12) |
| 75 | !11 = distinct !MDLexicalBlock(line: 11, column: 0, file: !6, scope: !5) |
| 76 | !12 = !MDCompositeType(tag: DW_TAG_structure_type, name: "foo", line: 1, size: 64, align: 32, file: !32, elements: !13) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 77 | !13 = !{!14, !15} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 78 | !14 = !MDDerivedType(tag: DW_TAG_member, name: "a", line: 2, size: 32, align: 32, file: !32, scope: !12, baseType: !9) |
| 79 | !15 = !MDDerivedType(tag: DW_TAG_member, name: "b", line: 3, size: 32, align: 32, offset: 32, file: !32, scope: !12, baseType: !16) |
| 80 | !16 = !MDCompositeType(tag: DW_TAG_array_type, size: 32, align: 32, baseType: !9, elements: !17) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 81 | !17 = !{!18} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 82 | !18 = !MDSubrange(count: 1) |
| Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 83 | !19 = !MDLocation(line: 12, scope: !11) |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 84 | !20 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "my_bar", line: 13, scope: !11, file: !6, type: !21) |
| 85 | !21 = !MDCompositeType(tag: DW_TAG_structure_type, name: "bar", line: 6, size: 32, align: 32, file: !32, elements: !22) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 86 | !22 = !{!23, !24} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 87 | !23 = !MDDerivedType(tag: DW_TAG_member, name: "a", line: 7, size: 32, align: 32, file: !32, scope: !21, baseType: !9) |
| 88 | !24 = !MDDerivedType(tag: DW_TAG_member, name: "b", line: 8, align: 32, offset: 32, file: !32, scope: !21, baseType: !25) |
| 89 | !25 = !MDCompositeType(tag: DW_TAG_array_type, align: 32, baseType: !9, elements: !26) |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 90 | !26 = !{!27} |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 91 | !27 = !MDSubrange(count: 0) |
| Duncan P. N. Exon Smith | 9885469 | 2015-01-14 22:27:36 +0000 | [diff] [blame] | 92 | !28 = !MDLocation(line: 13, scope: !11) |
| 93 | !29 = !MDLocation(line: 15, scope: !11) |
| 94 | !30 = !MDLocation(line: 16, scope: !11) |
| 95 | !31 = !MDLocation(line: 17, scope: !11) |
| Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame^] | 96 | !32 = !MDFile(filename: "test.c", directory: "/Volumes/Sandbox/llvm") |
| 97 | !33 = !{i32 1, !"Debug Info Version", i32 3} |