Adrian Prantl | 4d36525 | 2015-01-30 01:55:25 +0000 | [diff] [blame] | 1 | ; RUN: opt -inline -S < %s | FileCheck %s |
| 2 | ; struct A { |
| 3 | ; int arg0; |
| 4 | ; double arg1[2]; |
| 5 | ; } a, b; |
| 6 | ; |
| 7 | ; void fn3(A p1) { |
| 8 | ; if (p1.arg0) |
| 9 | ; a = p1; |
| 10 | ; } |
| 11 | ; |
| 12 | ; void fn4() { fn3(b); } |
| 13 | ; |
| 14 | ; void fn5() { |
| 15 | ; while (1) |
| 16 | ; fn4(); |
| 17 | ; } |
| 18 | ; ModuleID = 'test.cpp' |
| 19 | target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128" |
| 20 | target triple = "aarch64-apple-darwin" |
| 21 | |
| 22 | %struct.A = type { i32, [2 x double] } |
| 23 | |
| 24 | @a = global %struct.A zeroinitializer, align 8 |
| 25 | @b = global %struct.A zeroinitializer, align 8 |
| 26 | |
| 27 | ; Function Attrs: nounwind |
| 28 | declare void @_Z3fn31A(%struct.A* nocapture readonly %p1) #0 |
| 29 | |
| 30 | ; Function Attrs: nounwind readnone |
| 31 | declare void @llvm.dbg.declare(metadata, metadata, metadata) #1 |
| 32 | |
| 33 | ; Function Attrs: nounwind |
| 34 | declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i32, i1) #2 |
| 35 | |
| 36 | ; Function Attrs: nounwind |
| 37 | define void @_Z3fn4v() #0 { |
| 38 | entry: |
| 39 | ; Test that the dbg.declare is moved together with the alloca. |
| 40 | ; CHECK: define void @_Z3fn5v() |
| 41 | ; CHECK-NEXT: entry: |
| 42 | ; CHECK-NEXT: %agg.tmp.sroa.3.i = alloca [20 x i8], align 4 |
Adrian Prantl | 3e2659e | 2015-01-30 19:37:48 +0000 | [diff] [blame^] | 43 | ; CHECK-NEXT: call void @llvm.dbg.declare(metadata [20 x i8]* %agg.tmp.sroa.3.i, |
Adrian Prantl | 4d36525 | 2015-01-30 01:55:25 +0000 | [diff] [blame] | 44 | %agg.tmp.sroa.3 = alloca [20 x i8], align 4 |
| 45 | tail call void @llvm.dbg.declare(metadata [20 x i8]* %agg.tmp.sroa.3, metadata !46, metadata !48), !dbg !49 |
| 46 | %agg.tmp.sroa.0.0.copyload = load i32* getelementptr inbounds (%struct.A* @b, i64 0, i32 0), align 8, !dbg !50 |
| 47 | tail call void @llvm.dbg.value(metadata i32 %agg.tmp.sroa.0.0.copyload, i64 0, metadata !46, metadata !51), !dbg !49 |
| 48 | %agg.tmp.sroa.3.0..sroa_idx = getelementptr inbounds [20 x i8]* %agg.tmp.sroa.3, i64 0, i64 0, !dbg !50 |
| 49 | call void @llvm.memcpy.p0i8.p0i8.i64(i8* %agg.tmp.sroa.3.0..sroa_idx, i8* getelementptr (i8* bitcast (%struct.A* @b to i8*), i64 4), i64 20, i32 4, i1 false), !dbg !50 |
| 50 | tail call void @llvm.dbg.declare(metadata %struct.A* undef, metadata !46, metadata !31) #2, !dbg !49 |
| 51 | %tobool.i = icmp eq i32 %agg.tmp.sroa.0.0.copyload, 0, !dbg !52 |
| 52 | br i1 %tobool.i, label %_Z3fn31A.exit, label %if.then.i, !dbg !53 |
| 53 | |
| 54 | if.then.i: ; preds = %entry |
| 55 | store i32 %agg.tmp.sroa.0.0.copyload, i32* getelementptr inbounds (%struct.A* @a, i64 0, i32 0), align 8, !dbg !54 |
| 56 | call void @llvm.memcpy.p0i8.p0i8.i64(i8* getelementptr (i8* bitcast (%struct.A* @a to i8*), i64 4), i8* %agg.tmp.sroa.3.0..sroa_idx, i64 20, i32 4, i1 false), !dbg !54 |
| 57 | br label %_Z3fn31A.exit, !dbg !54 |
| 58 | |
| 59 | _Z3fn31A.exit: ; preds = %entry, %if.then.i |
| 60 | ret void, !dbg !50 |
| 61 | } |
| 62 | |
| 63 | ; Function Attrs: noreturn nounwind |
| 64 | define void @_Z3fn5v() #3 { |
| 65 | entry: |
| 66 | br label %while.body, !dbg !55 |
| 67 | |
| 68 | while.body: ; preds = %entry, %while.body |
| 69 | call void @_Z3fn4v(), !dbg !56 |
| 70 | br label %while.body, !dbg !55 |
| 71 | } |
| 72 | |
| 73 | ; Function Attrs: nounwind readnone |
| 74 | declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1 |
| 75 | |
| 76 | attributes #0 = { nounwind } |
| 77 | attributes #1 = { nounwind readnone } |
| 78 | attributes #2 = { nounwind } |
| 79 | attributes #3 = { noreturn nounwind } |
| 80 | |
| 81 | !llvm.dbg.cu = !{!0} |
| 82 | !llvm.module.flags = !{!28, !29} |
| 83 | !llvm.ident = !{!30} |
| 84 | |
| 85 | !0 = !{!"0x11\004\00clang version 3.7.0 (trunk 227480) (llvm/trunk 227517)\001\00\000\00\001", !1, !2, !3, !14, !25, !2} ; [ DW_TAG_compile_unit ] [/<stdin>] [DW_LANG_C_plus_plus] |
| 86 | !1 = !{!"<stdin>", !""} |
| 87 | !2 = !{} |
| 88 | !3 = !{!4} |
| 89 | !4 = !{!"0x13\00A\001\00192\0064\000\000\000", !5, null, null, !6, null, null, !"_ZTS1A"} ; [ DW_TAG_structure_type ] [A] [line 1, size 192, align 64, offset 0] [def] [from ] |
| 90 | !5 = !{!"test.cpp", !""} |
| 91 | !6 = !{!7, !9} |
| 92 | !7 = !{!"0xd\00arg0\002\0032\0032\000\000", !5, !"_ZTS1A", !8} ; [ DW_TAG_member ] [arg0] [line 2, size 32, align 32, offset 0] [from int] |
| 93 | !8 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed] |
| 94 | !9 = !{!"0xd\00arg1\003\00128\0064\0064\000", !5, !"_ZTS1A", !10} ; [ DW_TAG_member ] [arg1] [line 3, size 128, align 64, offset 64] [from ] |
| 95 | !10 = !{!"0x1\00\000\00128\0064\000\000\000", null, null, !11, !12, null, null, null} ; [ DW_TAG_array_type ] [line 0, size 128, align 64, offset 0] [from double] |
| 96 | !11 = !{!"0x24\00double\000\0064\0064\000\000\004", null, null} ; [ DW_TAG_base_type ] [double] [line 0, size 64, align 64, offset 0, enc DW_ATE_float] |
| 97 | !12 = !{!13} |
| 98 | !13 = !{!"0x21\000\002"} ; [ DW_TAG_subrange_type ] [0, 1] |
| 99 | !14 = !{!15, !21, !24} |
| 100 | !15 = !{!"0x2e\00fn3\00fn3\00_Z3fn31A\006\000\001\000\000\00256\001\006", !5, !16, !17, null, void (%struct.A*)* @_Z3fn31A, null, null, !19} ; [ DW_TAG_subprogram ] [line 6] [def] [fn3] |
| 101 | !16 = !{!"0x29", !5} ; [ DW_TAG_file_type ] [/test.cpp] |
| 102 | !17 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !18, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ] |
| 103 | !18 = !{null, !"_ZTS1A"} |
| 104 | !19 = !{!20} |
| 105 | !20 = !{!"0x101\00p1\0016777222\000", !15, !16, !"_ZTS1A"} ; [ DW_TAG_arg_variable ] [p1] [line 6] |
| 106 | !21 = !{!"0x2e\00fn4\00fn4\00_Z3fn4v\0011\000\001\000\000\00256\001\0011", !5, !16, !22, null, void ()* @_Z3fn4v, null, null, !2} ; [ DW_TAG_subprogram ] [line 11] [def] [fn4] |
| 107 | !22 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !23, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ] |
| 108 | !23 = !{null} |
| 109 | !24 = !{!"0x2e\00fn5\00fn5\00_Z3fn5v\0013\000\001\000\000\00256\001\0013", !5, !16, !22, null, void ()* @_Z3fn5v, null, null, !2} ; [ DW_TAG_subprogram ] [line 13] [def] [fn5] |
| 110 | !25 = !{!26, !27} |
| 111 | !26 = !{!"0x34\00a\00a\00\004\000\001", null, !16, !"_ZTS1A", %struct.A* @a, null} ; [ DW_TAG_variable ] [a] [line 4] [def] |
| 112 | !27 = !{!"0x34\00b\00b\00\004\000\001", null, !16, !"_ZTS1A", %struct.A* @b, null} ; [ DW_TAG_variable ] [b] [line 4] [def] |
| 113 | !28 = !{i32 2, !"Dwarf Version", i32 4} |
| 114 | !29 = !{i32 2, !"Debug Info Version", i32 2} |
| 115 | !30 = !{!"clang version 3.7.0 (trunk 227480) (llvm/trunk 227517)"} |
| 116 | !31 = !{!"0x102\006"} ; [ DW_TAG_expression ] [DW_OP_deref] |
| 117 | !32 = !MDLocation(line: 6, scope: !15) |
| 118 | !33 = !MDLocation(line: 7, scope: !34) |
| 119 | !34 = !{!"0xb\007\000\000", !5, !15} ; [ DW_TAG_lexical_block ] [/test.cpp] |
| 120 | !35 = !{!36, !37, i64 0} |
| 121 | !36 = !{!"_ZTS1A", !37, i64 0, !38, i64 8} |
| 122 | !37 = !{!"int", !38, i64 0} |
| 123 | !38 = !{!"omnipotent char", !39, i64 0} |
| 124 | !39 = !{!"Simple C/C++ TBAA"} |
| 125 | !40 = !MDLocation(line: 7, scope: !15) |
| 126 | !41 = !MDLocation(line: 8, scope: !34) |
| 127 | !42 = !{i64 0, i64 4, !43, i64 8, i64 16, !44} |
| 128 | !43 = !{!37, !37, i64 0} |
| 129 | !44 = !{!38, !38, i64 0} |
| 130 | !45 = !MDLocation(line: 9, scope: !15) |
| 131 | !46 = !{!"0x101\00p1\0016777222\000", !15, !16, !"_ZTS1A", !47} ; [ DW_TAG_arg_variable ] [p1] [line 6] |
| 132 | !47 = distinct !MDLocation(line: 11, scope: !21) |
| 133 | !48 = !{!"0x102\00147\004\0020"} ; [ DW_TAG_expression ] [DW_OP_piece offset=4, size=20] |
| 134 | !49 = !MDLocation(line: 6, scope: !15, inlinedAt: !47) |
| 135 | !50 = !MDLocation(line: 11, scope: !21) |
| 136 | !51 = !{!"0x102\00147\000\004"} ; [ DW_TAG_expression ] [DW_OP_piece offset=0, size=4] |
| 137 | !52 = !MDLocation(line: 7, scope: !34, inlinedAt: !47) |
| 138 | !53 = !MDLocation(line: 7, scope: !15, inlinedAt: !47) |
| 139 | !54 = !MDLocation(line: 8, scope: !34, inlinedAt: !47) |
| 140 | !55 = !MDLocation(line: 14, scope: !24) |
| 141 | !56 = !MDLocation(line: 15, scope: !24) |