1 ; RUN: opt < %s -S -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -hoist-common-insts=true | FileCheck %s
3 ; SimplifyCFG can hoist any common code in the 'then' and 'else' blocks to
4 ; the 'if' basic block.
6 ; For the special case, when hoisting the terminator instruction, its debug
7 ; location keep references to its basic block, causing the debug information
8 ; to become ambiguous. It causes the debugger to display unreached lines.
10 ; Check that hoisted instructions get unknown-location line numbers -- there
11 ; is no correct line number for code that has been common'd in this way.
14 ; clang -S -g -gno-column-info -O2 -emit-llvm pr39187.cpp -o pr39187-g.ll -mllvm -opt-bisect-limit=10
18 ; volatile int foo = 0;
21 ; bool cond = foo == 4;
28 ; volatile bool face = cond;
30 ; return face ? beards : 0;
34 ; CHECK: %foo = alloca i32, align 4
35 ; CHECK: %face = alloca i8, align 1
36 ; CHECK: store volatile i32 0, ptr %foo, align 4
37 ; CHECK: %foo.0. = load volatile i32, ptr %foo, align 4, !dbg !16
38 ; CHECK: %cmp = icmp eq i32 %foo.0., 4, !dbg !16
39 ; CHECK: %frombool = zext i1 %cmp to i8, !dbg !16
40 ; CHECK: call void @llvm.dbg.value(metadata i8 %frombool, metadata !13, metadata !DIExpression()), !dbg !16
41 ; CHECK: call void @llvm.dbg.value(metadata i32 0, metadata !15, metadata !DIExpression()), !dbg !17
42 ; CHECK: %. = select i1 %cmp, i32 8, i32 4, !dbg ![[MERGEDLOC:[0-9]+]]
43 ; CHECK: ![[MERGEDLOC]] = !DILocation(line: 0, scope: !7)
45 ; ModuleID = 'pr39187.cpp'
46 source_filename = "pr39187.cpp"
47 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
48 target triple = "x86_64-pc-linux-gnu"
50 ; Function Attrs: norecurse nounwind uwtable
51 define dso_local i32 @main() local_unnamed_addr #0 !dbg !7 {
53 %foo = alloca i32, align 4
54 %face = alloca i8, align 1
55 store volatile i32 0, ptr %foo, align 4
56 %foo.0. = load volatile i32, ptr %foo, align 4, !dbg !26
57 %cmp = icmp eq i32 %foo.0., 4, !dbg !26
58 %frombool = zext i1 %cmp to i8, !dbg !26
59 call void @llvm.dbg.value(metadata i8 %frombool, metadata !15, metadata !DIExpression()), !dbg !26
60 call void @llvm.dbg.value(metadata i32 0, metadata !17, metadata !DIExpression()), !dbg !27
61 br i1 %cmp, label %if.then, label %if.else
63 if.then: ; preds = %entry
64 call void @llvm.dbg.value(metadata i32 8, metadata !14, metadata !DIExpression()), !dbg !25
65 br label %if.end, !dbg !25
67 if.else: ; preds = %entry
68 call void @llvm.dbg.value(metadata i32 4, metadata !14, metadata !DIExpression()), !dbg !27
69 br label %if.end, !dbg !27
71 if.end: ; preds = %if.else, %if.then
72 %beards.0 = phi i32 [ 8, %if.then ], [ 4, %if.else ]
73 store volatile i8 %frombool, ptr %face, align 1
74 %face.0. = load volatile i8, ptr %face, align 1
75 %0 = and i8 %face.0., 1
76 %tobool3 = icmp eq i8 %0, 0
77 %cond4 = select i1 %tobool3, i32 0, i32 %beards.0
81 ; Function Attrs: nounwind readnone speculatable
82 declare void @llvm.dbg.value(metadata, metadata, metadata) #2
85 !llvm.module.flags = !{!3, !4, !5}
88 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 8.0.0 (trunk 346301)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
89 !1 = !DIFile(filename: "pr39187.cpp", directory: ".")
91 !3 = !{i32 2, !"Dwarf Version", i32 4}
92 !4 = !{i32 2, !"Debug Info Version", i32 3}
93 !5 = !{i32 1, !"wchar_size", i32 4}
94 !6 = !{!"clang version 8.0.0 (trunk 346301)"}
95 !7 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 1, type: !8, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !11)
96 !8 = !DISubroutineType(types: !9)
98 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
99 !11 = !{!14, !15, !17}
100 !14 = !DILocalVariable(name: "beards", scope: !7, file: !1, line: 4, type: !10)
101 !15 = !DILocalVariable(name: "cond", scope: !7, file: !1, line: 5, type: !16)
102 !16 = !DIBasicType(name: "bool", size: 8, encoding: DW_ATE_boolean)
103 !17 = !DILocalVariable(name: "bar", scope: !7, file: !1, line: 6, type: !10)
104 !25 = !DILocation(line: 4, scope: !7)
105 !26 = !DILocation(line: 5, scope: !7)
106 !27 = !DILocation(line: 6, scope: !7)