1 //===- Local.cpp - Unit tests for Local -----------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Transforms/Utils/Local.h"
10 #include "llvm/Analysis/DomTreeUpdater.h"
11 #include "llvm/Analysis/PostDominators.h"
12 #include "llvm/AsmParser/Parser.h"
13 #include "llvm/IR/BasicBlock.h"
14 #include "llvm/IR/DIBuilder.h"
15 #include "llvm/IR/IRBuilder.h"
16 #include "llvm/IR/Instructions.h"
17 #include "llvm/IR/IntrinsicInst.h"
18 #include "llvm/IR/LLVMContext.h"
19 #include "llvm/IR/Verifier.h"
20 #include "llvm/Support/SourceMgr.h"
21 #include "gtest/gtest.h"
25 TEST(Local
, RecursivelyDeleteDeadPHINodes
) {
28 IRBuilder
<> builder(C
);
31 BasicBlock
*bb0
= BasicBlock::Create(C
);
32 BasicBlock
*bb1
= BasicBlock::Create(C
);
34 builder
.SetInsertPoint(bb0
);
35 PHINode
*phi
= builder
.CreatePHI(Type::getInt32Ty(C
), 2);
36 BranchInst
*br0
= builder
.CreateCondBr(builder
.getTrue(), bb0
, bb1
);
38 builder
.SetInsertPoint(bb1
);
39 BranchInst
*br1
= builder
.CreateBr(bb0
);
41 phi
->addIncoming(phi
, bb0
);
42 phi
->addIncoming(phi
, bb1
);
44 // The PHI will be removed
45 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi
));
47 // Make sure the blocks only contain the branches
48 EXPECT_EQ(&bb0
->front(), br0
);
49 EXPECT_EQ(&bb1
->front(), br1
);
51 builder
.SetInsertPoint(bb0
);
52 phi
= builder
.CreatePHI(Type::getInt32Ty(C
), 0);
54 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi
));
56 builder
.SetInsertPoint(bb0
);
57 phi
= builder
.CreatePHI(Type::getInt32Ty(C
), 0);
58 builder
.CreateAdd(phi
, phi
);
60 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi
));
62 bb0
->dropAllReferences();
63 bb1
->dropAllReferences();
68 TEST(Local
, RemoveDuplicatePHINodes
) {
72 std::unique_ptr
<Function
> F(
73 Function::Create(FunctionType::get(B
.getVoidTy(), false),
74 GlobalValue::ExternalLinkage
, "F"));
75 BasicBlock
*Entry(BasicBlock::Create(C
, "", F
.get()));
76 BasicBlock
*BB(BasicBlock::Create(C
, "", F
.get()));
77 BranchInst::Create(BB
, Entry
);
81 AssertingVH
<PHINode
> P1
= B
.CreatePHI(Type::getInt32Ty(C
), 2);
82 P1
->addIncoming(B
.getInt32(42), Entry
);
84 PHINode
*P2
= B
.CreatePHI(Type::getInt32Ty(C
), 2);
85 P2
->addIncoming(B
.getInt32(42), Entry
);
87 AssertingVH
<PHINode
> P3
= B
.CreatePHI(Type::getInt32Ty(C
), 2);
88 P3
->addIncoming(B
.getInt32(42), Entry
);
89 P3
->addIncoming(B
.getInt32(23), BB
);
91 PHINode
*P4
= B
.CreatePHI(Type::getInt32Ty(C
), 2);
92 P4
->addIncoming(B
.getInt32(42), Entry
);
93 P4
->addIncoming(B
.getInt32(23), BB
);
95 P1
->addIncoming(P3
, BB
);
96 P2
->addIncoming(P4
, BB
);
97 BranchInst::Create(BB
, BB
);
99 // Verify that we can eliminate PHIs that become duplicates after chaning PHIs
101 EXPECT_TRUE(EliminateDuplicatePHINodes(BB
));
102 EXPECT_EQ(3U, BB
->size());
105 static std::unique_ptr
<Module
> parseIR(LLVMContext
&C
, const char *IR
) {
107 std::unique_ptr
<Module
> Mod
= parseAssemblyString(IR
, Err
, C
);
109 Err
.print("UtilsTests", errs());
113 TEST(Local
, ReplaceDbgDeclare
) {
116 // Original C source to get debug info for a local variable:
117 // void f() { int x; }
118 std::unique_ptr
<Module
> M
= parseIR(C
,
120 define void @f() !dbg !8 {
122 %x = alloca i32, align 4
123 call void @llvm.dbg.declare(metadata i32* %x, metadata !11, metadata !DIExpression()), !dbg !13
124 call void @llvm.dbg.declare(metadata i32* %x, metadata !11, metadata !DIExpression()), !dbg !13
127 declare void @llvm.dbg.declare(metadata, metadata, metadata)
129 !llvm.module.flags = !{!3, !4}
130 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version
6.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
131 !1 = !DIFile(filename: "t2
.c
", directory: "foo
")
133 !3 = !{i32 2, !"Dwarf Version
", i32 4}
134 !4 = !{i32 2, !"Debug Info Version
", i32 3}
135 !8 = distinct !DISubprogram(name: "f
", scope: !1, file: !1, line: 1, type: !9, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: false, unit: !0, retainedNodes: !2)
136 !9 = !DISubroutineType(types: !10)
138 !11 = !DILocalVariable(name: "x
", scope: !8, file: !1, line: 2, type: !12)
139 !12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
140 !13 = !DILocation(line: 2, column: 7, scope: !8)
141 !14 = !DILocation(line: 3, column: 1, scope: !8)
143 auto *GV
= M
->getNamedValue("f");
145 auto *F
= dyn_cast
<Function
>(GV
);
147 Instruction
*Inst
= &F
->front().front();
148 auto *AI
= dyn_cast
<AllocaInst
>(Inst
);
150 Inst
= Inst
->getNextNode()->getNextNode();
152 auto *DII
= dyn_cast
<DbgDeclareInst
>(Inst
);
154 Value
*NewBase
= Constant::getNullValue(Type::getInt32PtrTy(C
));
156 replaceDbgDeclare(AI
, NewBase
, DII
, DIB
, DIExpression::ApplyOffset
, 0);
158 // There should be exactly two dbg.declares.
160 for (const Instruction
&I
: F
->front())
161 if (isa
<DbgDeclareInst
>(I
))
163 EXPECT_EQ(2, Declares
);
166 /// Build the dominator tree for the function and run the Test.
167 static void runWithDomTree(
168 Module
&M
, StringRef FuncName
,
169 function_ref
<void(Function
&F
, DominatorTree
*DT
)> Test
) {
170 auto *F
= M
.getFunction(FuncName
);
171 ASSERT_NE(F
, nullptr) << "Could not find " << FuncName
;
172 // Compute the dominator tree for the function.
173 DominatorTree
DT(*F
);
177 TEST(Local
, MergeBasicBlockIntoOnlyPred
) {
179 std::unique_ptr
<Module
> M
;
180 auto resetIR
= [&]() {
183 define i32 @f(i8* %str) {
186 bb2.i: ; preds = %bb4.i, %entry
187 br i1 false, label %bb4.i, label %base2flt.exit204
188 bb4.i: ; preds = %bb2.i
189 br i1 false, label %base2flt.exit204, label %bb2.i
190 bb10.i196.bb7.i197_crit_edge: ; No predecessors!
192 bb7.i197: ; preds = %bb10.i196.bb7.i197_crit_edge
193 %.reg2mem.0 = phi i32 [ %.reg2mem.0, %bb10.i196.bb7.i197_crit_edge ]
194 br i1 undef, label %base2flt.exit204, label %base2flt.exit204
195 base2flt.exit204: ; preds = %bb7.i197, %bb7.i197, %bb2.i, %bb4.i
201 auto resetIRReplaceEntry
= [&]() {
207 bb2.i: ; preds = %entry
213 auto Test
= [&](Function
&F
, DomTreeUpdater
&DTU
) {
214 for (Function::iterator I
= F
.begin(), E
= F
.end(); I
!= E
;) {
215 BasicBlock
*BB
= &*I
++;
216 BasicBlock
*SinglePred
= BB
->getSinglePredecessor();
217 if (!SinglePred
|| SinglePred
== BB
|| BB
->hasAddressTaken())
219 BranchInst
*Term
= dyn_cast
<BranchInst
>(SinglePred
->getTerminator());
220 if (Term
&& !Term
->isConditional())
221 MergeBasicBlockIntoOnlyPred(BB
, &DTU
);
223 if (DTU
.hasDomTree()) {
224 EXPECT_TRUE(DTU
.getDomTree().verify());
226 if (DTU
.hasPostDomTree()) {
227 EXPECT_TRUE(DTU
.getPostDomTree().verify());
231 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
234 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
235 PostDominatorTree PDT
= PostDominatorTree(F
);
236 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
240 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
243 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
244 DomTreeUpdater
DTU(*DT
, DomTreeUpdater::UpdateStrategy::Eager
);
248 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
251 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
252 PostDominatorTree PDT
= PostDominatorTree(F
);
253 DomTreeUpdater
DTU(PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
257 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with
260 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
261 PostDominatorTree PDT
= PostDominatorTree(F
);
262 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
266 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with
269 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
270 PostDominatorTree PDT
= PostDominatorTree(F
);
271 DomTreeUpdater
DTU(PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
275 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with DT.
277 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
278 DomTreeUpdater
DTU(*DT
, DomTreeUpdater::UpdateStrategy::Lazy
);
282 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
284 resetIRReplaceEntry();
285 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
286 PostDominatorTree PDT
= PostDominatorTree(F
);
287 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
291 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
293 resetIRReplaceEntry();
294 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
295 DomTreeUpdater
DTU(*DT
, DomTreeUpdater::UpdateStrategy::Eager
);
299 // Test MergeBasicBlockIntoOnlyPred working under Eager UpdateStrategy with
301 resetIRReplaceEntry();
302 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
303 PostDominatorTree PDT
= PostDominatorTree(F
);
304 DomTreeUpdater
DTU(PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
308 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with
310 resetIRReplaceEntry();
311 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
312 PostDominatorTree PDT
= PostDominatorTree(F
);
313 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
317 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with
319 resetIRReplaceEntry();
320 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
321 PostDominatorTree PDT
= PostDominatorTree(F
);
322 DomTreeUpdater
DTU(PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
326 // Test MergeBasicBlockIntoOnlyPred working under Lazy UpdateStrategy with DT.
327 resetIRReplaceEntry();
328 runWithDomTree(*M
, "f", [&](Function
&F
, DominatorTree
*DT
) {
329 DomTreeUpdater
DTU(*DT
, DomTreeUpdater::UpdateStrategy::Lazy
);
334 TEST(Local
, ConstantFoldTerminator
) {
337 std::unique_ptr
<Module
> M
= parseIR(C
,
339 define void @br_same_dest() {
341 br i1 false, label %bb0, label %bb0
346 define void @br_different_dest() {
348 br i1 true, label %bb0, label %bb1
357 define void @switch_2_different_dest() {
359 switch i32 0, label %default [ i32 0, label %bb0 ]
365 define void @switch_2_different_dest_default() {
367 switch i32 1, label %default [ i32 0, label %bb0 ]
373 define void @switch_3_different_dest() {
375 switch i32 0, label %default [ i32 0, label %bb0
385 define void @switch_variable_2_default_dest(i32 %arg) {
387 switch i32 %arg, label %default [ i32 0, label %default ]
392 define void @switch_constant_2_default_dest() {
394 switch i32 1, label %default [ i32 0, label %default ]
399 define void @switch_constant_3_repeated_dest() {
401 switch i32 0, label %default [ i32 0, label %bb0
409 define void @indirectbr() {
411 indirectbr i8* blockaddress(@indirectbr, %bb0), [label %bb0, label %bb1]
418 define void @indirectbr_repeated() {
420 indirectbr i8* blockaddress(@indirectbr_repeated, %bb0), [label %bb0, label %bb0]
425 define void @indirectbr_unreachable() {
427 indirectbr i8* blockaddress(@indirectbr_unreachable, %bb0), [label %bb1]
435 auto CFAllTerminatorsEager
= [&](Function
&F
, DominatorTree
*DT
) {
436 PostDominatorTree PDT
= PostDominatorTree(F
);
437 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
438 for (Function::iterator I
= F
.begin(), E
= F
.end(); I
!= E
;) {
439 BasicBlock
*BB
= &*I
++;
440 ConstantFoldTerminator(BB
, true, nullptr, &DTU
);
443 EXPECT_TRUE(DTU
.getDomTree().verify());
444 EXPECT_TRUE(DTU
.getPostDomTree().verify());
447 auto CFAllTerminatorsLazy
= [&](Function
&F
, DominatorTree
*DT
) {
448 PostDominatorTree PDT
= PostDominatorTree(F
);
449 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
450 for (Function::iterator I
= F
.begin(), E
= F
.end(); I
!= E
;) {
451 BasicBlock
*BB
= &*I
++;
452 ConstantFoldTerminator(BB
, true, nullptr, &DTU
);
455 EXPECT_TRUE(DTU
.getDomTree().verify());
456 EXPECT_TRUE(DTU
.getPostDomTree().verify());
459 // Test ConstantFoldTerminator under Eager UpdateStrategy.
460 runWithDomTree(*M
, "br_same_dest", CFAllTerminatorsEager
);
461 runWithDomTree(*M
, "br_different_dest", CFAllTerminatorsEager
);
462 runWithDomTree(*M
, "switch_2_different_dest", CFAllTerminatorsEager
);
463 runWithDomTree(*M
, "switch_2_different_dest_default", CFAllTerminatorsEager
);
464 runWithDomTree(*M
, "switch_3_different_dest", CFAllTerminatorsEager
);
465 runWithDomTree(*M
, "switch_variable_2_default_dest", CFAllTerminatorsEager
);
466 runWithDomTree(*M
, "switch_constant_2_default_dest", CFAllTerminatorsEager
);
467 runWithDomTree(*M
, "switch_constant_3_repeated_dest", CFAllTerminatorsEager
);
468 runWithDomTree(*M
, "indirectbr", CFAllTerminatorsEager
);
469 runWithDomTree(*M
, "indirectbr_repeated", CFAllTerminatorsEager
);
470 runWithDomTree(*M
, "indirectbr_unreachable", CFAllTerminatorsEager
);
472 // Test ConstantFoldTerminator under Lazy UpdateStrategy.
473 runWithDomTree(*M
, "br_same_dest", CFAllTerminatorsLazy
);
474 runWithDomTree(*M
, "br_different_dest", CFAllTerminatorsLazy
);
475 runWithDomTree(*M
, "switch_2_different_dest", CFAllTerminatorsLazy
);
476 runWithDomTree(*M
, "switch_2_different_dest_default", CFAllTerminatorsLazy
);
477 runWithDomTree(*M
, "switch_3_different_dest", CFAllTerminatorsLazy
);
478 runWithDomTree(*M
, "switch_variable_2_default_dest", CFAllTerminatorsLazy
);
479 runWithDomTree(*M
, "switch_constant_2_default_dest", CFAllTerminatorsLazy
);
480 runWithDomTree(*M
, "switch_constant_3_repeated_dest", CFAllTerminatorsLazy
);
481 runWithDomTree(*M
, "indirectbr", CFAllTerminatorsLazy
);
482 runWithDomTree(*M
, "indirectbr_repeated", CFAllTerminatorsLazy
);
483 runWithDomTree(*M
, "indirectbr_unreachable", CFAllTerminatorsLazy
);
486 struct SalvageDebugInfoTest
: ::testing::Test
{
488 std::unique_ptr
<Module
> M
;
489 Function
*F
= nullptr;
494 define void @f() !dbg !8 {
498 call void @llvm.dbg.value(metadata i32 %x, metadata !11, metadata !DIExpression()), !dbg !13
499 call void @llvm.dbg.value(metadata i32 %y, metadata !11, metadata !DIExpression()), !dbg !13
502 declare void @llvm.dbg.value(metadata, metadata, metadata)
504 !llvm.module.flags = !{!3, !4}
505 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version
6.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
506 !1 = !DIFile(filename: "t2
.c
", directory: "foo
")
508 !3 = !{i32 2, !"Dwarf Version
", i32 4}
509 !4 = !{i32 2, !"Debug Info Version
", i32 3}
510 !8 = distinct !DISubprogram(name: "f
", scope: !1, file: !1, line: 1, type: !9, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: false, unit: !0, retainedNodes: !2)
511 !9 = !DISubroutineType(types: !10)
513 !11 = !DILocalVariable(name: "x
", scope: !8, file: !1, line: 2, type: !12)
514 !12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
515 !13 = !DILocation(line: 2, column: 7, scope: !8)
516 !14 = !DILocation(line: 3, column: 1, scope: !8)
519 auto *GV
= M
->getNamedValue("f");
521 F
= dyn_cast
<Function
>(GV
);
525 bool doesDebugValueDescribeX(const DbgValueInst
&DI
) {
526 const auto &CI
= *cast
<ConstantInt
>(DI
.getValue());
528 return DI
.getExpression()->getElements().equals(
529 {dwarf::DW_OP_plus_uconst
, 1, dwarf::DW_OP_stack_value
});
530 else if (CI
.isOneValue())
531 return DI
.getExpression()->getElements().empty();
535 bool doesDebugValueDescribeY(const DbgValueInst
&DI
) {
536 const auto &CI
= *cast
<ConstantInt
>(DI
.getValue());
538 return DI
.getExpression()->getElements().equals(
539 {dwarf::DW_OP_plus_uconst
, 1, dwarf::DW_OP_plus_uconst
, 2,
540 dwarf::DW_OP_stack_value
});
541 else if (CI
.isOneValue())
542 return DI
.getExpression()->getElements().equals(
543 {dwarf::DW_OP_plus_uconst
, 2, dwarf::DW_OP_stack_value
});
547 void verifyDebugValuesAreSalvaged() {
548 // Check that the debug values for %x and %y are preserved.
551 for (const Instruction
&I
: F
->front()) {
552 auto DI
= dyn_cast
<DbgValueInst
>(&I
);
554 // The function should only contain debug values and a terminator.
555 ASSERT_TRUE(I
.isTerminator());
558 EXPECT_EQ(DI
->getVariable()->getName(), "x");
559 FoundX
|= doesDebugValueDescribeX(*DI
);
560 FoundY
|= doesDebugValueDescribeY(*DI
);
567 TEST_F(SalvageDebugInfoTest
, RecursiveInstDeletion
) {
568 Instruction
*Inst
= &F
->front().front();
569 Inst
= Inst
->getNextNode(); // Get %y = add ...
571 bool Deleted
= RecursivelyDeleteTriviallyDeadInstructions(Inst
);
572 ASSERT_TRUE(Deleted
);
573 verifyDebugValuesAreSalvaged();
576 TEST_F(SalvageDebugInfoTest
, RecursiveBlockSimplification
) {
577 BasicBlock
*BB
= &F
->front();
579 bool Deleted
= SimplifyInstructionsInBlock(BB
);
580 ASSERT_TRUE(Deleted
);
581 verifyDebugValuesAreSalvaged();
584 TEST(Local
, ChangeToUnreachable
) {
587 std::unique_ptr
<Module
> M
= parseIR(Ctx
,
589 define internal void @foo() !dbg !6 {
595 !llvm.debugify = !{!3, !4}
596 !llvm.module.flags = !{!5}
598 !0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify
", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
599 !1 = !DIFile(filename: "test
.ll
", directory: "/")
603 !5 = !{i32 2, !"Debug Info Version
", i32 3}
604 !6 = distinct !DISubprogram(name: "foo
", linkageName: "foo
", scope: null, file: !1, line: 1, type: !7, isLocal: true, isDefinition: true, scopeLine: 1, isOptimized: true, unit: !0, retainedNodes: !2)
605 !7 = !DISubroutineType(types: !2)
606 !8 = !DILocation(line: 1, column: 1, scope: !6)
609 bool BrokenDebugInfo
= true;
610 verifyModule(*M
, &errs(), &BrokenDebugInfo
);
611 ASSERT_FALSE(BrokenDebugInfo
);
613 Function
&F
= *cast
<Function
>(M
->getNamedValue("foo"));
615 BasicBlock
&BB
= F
.front();
616 Instruction
&A
= BB
.front();
617 DebugLoc DLA
= A
.getDebugLoc();
619 ASSERT_TRUE(isa
<ReturnInst
>(&A
));
620 // One instruction should be affected.
621 EXPECT_EQ(changeToUnreachable(&A
, /*UseLLVMTrap*/false), 1U);
623 Instruction
&B
= BB
.front();
625 // There should be an uncreachable instruction.
626 ASSERT_TRUE(isa
<UnreachableInst
>(&B
));
628 DebugLoc DLB
= B
.getDebugLoc();
632 TEST(Local
, ReplaceAllDbgUsesWith
) {
633 using namespace llvm::dwarf
;
637 // Note: The datalayout simulates Darwin/x86_64.
638 std::unique_ptr
<Module
> M
= parseIR(Ctx
,
640 target datalayout = "e
-m
:o
-i63
:64-f80
:128-n8
:16:32:64-S128
"
642 declare i32 @escape(i32)
644 define void @f() !dbg !6 {
646 %a = add i32 0, 1, !dbg !15
647 call void @llvm.dbg.value(metadata i32 %a, metadata !9, metadata !DIExpression()), !dbg !15
649 %b = add i64 0, 1, !dbg !16
650 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression()), !dbg !16
651 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression(DW_OP_lit0, DW_OP_mul)), !dbg !16
652 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression(DW_OP_lit0, DW_OP_mul, DW_OP_stack_value)), !dbg !16
653 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression(DW_OP_LLVM_fragment, 0, 8)), !dbg !16
654 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression(DW_OP_lit0, DW_OP_mul, DW_OP_LLVM_fragment, 0, 8)), !dbg !16
655 call void @llvm.dbg.value(metadata i64 %b, metadata !11, metadata !DIExpression(DW_OP_lit0, DW_OP_mul, DW_OP_stack_value, DW_OP_LLVM_fragment, 0, 8)), !dbg !16
657 %c = inttoptr i64 0 to i64*, !dbg !17
658 call void @llvm.dbg.declare(metadata i64* %c, metadata !13, metadata !DIExpression()), !dbg !17
660 %d = inttoptr i64 0 to i32*, !dbg !18
661 call void @llvm.dbg.addr(metadata i32* %d, metadata !20, metadata !DIExpression()), !dbg !18
663 %e = add <2 x i16> zeroinitializer, zeroinitializer
664 call void @llvm.dbg.value(metadata <2 x i16> %e, metadata !14, metadata !DIExpression()), !dbg !18
666 %f = call i32 @escape(i32 0)
667 call void @llvm.dbg.value(metadata i32 %f, metadata !9, metadata !DIExpression()), !dbg !15
669 %barrier = call i32 @escape(i32 0)
671 %g = call i32 @escape(i32 %f)
672 call void @llvm.dbg.value(metadata i32 %g, metadata !9, metadata !DIExpression()), !dbg !15
677 declare void @llvm.dbg.addr(metadata, metadata, metadata)
678 declare void @llvm.dbg.declare(metadata, metadata, metadata)
679 declare void @llvm.dbg.value(metadata, metadata, metadata)
682 !llvm.module.flags = !{!5}
684 !0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify
", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
685 !1 = !DIFile(filename: "/Users
/vsk
/Desktop
/foo
.ll
", directory: "/")
687 !5 = !{i32 2, !"Debug Info Version
", i32 3}
688 !6 = distinct !DISubprogram(name: "f
", linkageName: "f
", scope: null, file: !1, line: 1, type: !7, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: true, unit: !0, retainedNodes: !8)
689 !7 = !DISubroutineType(types: !2)
690 !8 = !{!9, !11, !13, !14}
691 !9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
692 !10 = !DIBasicType(name: "ty32
", size: 32, encoding: DW_ATE_signed)
693 !11 = !DILocalVariable(name: "2", scope: !6, file: !1, line: 2, type: !12)
694 !12 = !DIBasicType(name: "ty64
", size: 64, encoding: DW_ATE_signed)
695 !13 = !DILocalVariable(name: "3", scope: !6, file: !1, line: 3, type: !12)
696 !14 = !DILocalVariable(name: "4", scope: !6, file: !1, line: 4, type: !10)
697 !15 = !DILocation(line: 1, column: 1, scope: !6)
698 !16 = !DILocation(line: 2, column: 1, scope: !6)
699 !17 = !DILocation(line: 3, column: 1, scope: !6)
700 !18 = !DILocation(line: 4, column: 1, scope: !6)
701 !19 = !DILocation(line: 5, column: 1, scope: !6)
702 !20 = !DILocalVariable(name: "5", scope: !6, file: !1, line: 5, type: !10)
705 bool BrokenDebugInfo
= true;
706 verifyModule(*M
, &errs(), &BrokenDebugInfo
);
707 ASSERT_FALSE(BrokenDebugInfo
);
709 Function
&F
= *cast
<Function
>(M
->getNamedValue("f"));
712 BasicBlock
&BB
= F
.front();
713 Instruction
&A
= BB
.front();
714 Instruction
&B
= *A
.getNextNonDebugInstruction();
715 Instruction
&C
= *B
.getNextNonDebugInstruction();
716 Instruction
&D
= *C
.getNextNonDebugInstruction();
717 Instruction
&E
= *D
.getNextNonDebugInstruction();
718 Instruction
&F_
= *E
.getNextNonDebugInstruction();
719 Instruction
&Barrier
= *F_
.getNextNonDebugInstruction();
720 Instruction
&G
= *Barrier
.getNextNonDebugInstruction();
722 // Simulate i32 <-> i64* conversion. Expect no updates: the datalayout says
723 // pointers are 64 bits, so the conversion would be lossy.
724 EXPECT_FALSE(replaceAllDbgUsesWith(A
, C
, C
, DT
));
725 EXPECT_FALSE(replaceAllDbgUsesWith(C
, A
, A
, DT
));
727 // Simulate i32 <-> <2 x i16> conversion. This is unsupported.
728 EXPECT_FALSE(replaceAllDbgUsesWith(E
, A
, A
, DT
));
729 EXPECT_FALSE(replaceAllDbgUsesWith(A
, E
, E
, DT
));
731 // Simulate i32* <-> i64* conversion.
732 EXPECT_TRUE(replaceAllDbgUsesWith(D
, C
, C
, DT
));
734 SmallVector
<DbgVariableIntrinsic
*, 2> CDbgVals
;
735 findDbgUsers(CDbgVals
, &C
);
736 EXPECT_EQ(2U, CDbgVals
.size());
737 EXPECT_TRUE(any_of(CDbgVals
, [](DbgVariableIntrinsic
*DII
) {
738 return isa
<DbgAddrIntrinsic
>(DII
);
740 EXPECT_TRUE(any_of(CDbgVals
, [](DbgVariableIntrinsic
*DII
) {
741 return isa
<DbgDeclareInst
>(DII
);
744 EXPECT_TRUE(replaceAllDbgUsesWith(C
, D
, D
, DT
));
746 SmallVector
<DbgVariableIntrinsic
*, 2> DDbgVals
;
747 findDbgUsers(DDbgVals
, &D
);
748 EXPECT_EQ(2U, DDbgVals
.size());
749 EXPECT_TRUE(any_of(DDbgVals
, [](DbgVariableIntrinsic
*DII
) {
750 return isa
<DbgAddrIntrinsic
>(DII
);
752 EXPECT_TRUE(any_of(DDbgVals
, [](DbgVariableIntrinsic
*DII
) {
753 return isa
<DbgDeclareInst
>(DII
);
756 // Introduce a use-before-def. Check that the dbg.value for %a is salvaged.
757 EXPECT_TRUE(replaceAllDbgUsesWith(A
, F_
, F_
, DT
));
759 auto *ADbgVal
= cast
<DbgValueInst
>(A
.getNextNode());
760 EXPECT_EQ(ConstantInt::get(A
.getType(), 0), ADbgVal
->getVariableLocation());
762 // Introduce a use-before-def. Check that the dbg.values for %f are deleted.
763 EXPECT_TRUE(replaceAllDbgUsesWith(F_
, G
, G
, DT
));
765 SmallVector
<DbgValueInst
*, 1> FDbgVals
;
766 findDbgValues(FDbgVals
, &F
);
767 EXPECT_EQ(0U, FDbgVals
.size());
769 // Simulate i32 -> i64 conversion to test sign-extension. Here are some
770 // interesting cases to handle:
771 // 1) debug user has empty DIExpression
772 // 2) debug user has non-empty, non-stack-value'd DIExpression
773 // 3) debug user has non-empty, stack-value'd DIExpression
774 // 4-6) like (1-3), but with a fragment
775 EXPECT_TRUE(replaceAllDbgUsesWith(B
, A
, A
, DT
));
777 SmallVector
<DbgValueInst
*, 8> ADbgVals
;
778 findDbgValues(ADbgVals
, &A
);
779 EXPECT_EQ(6U, ADbgVals
.size());
781 // Check that %a has a dbg.value with a DIExpression matching \p Ops.
782 auto hasADbgVal
= [&](ArrayRef
<uint64_t> Ops
) {
783 return any_of(ADbgVals
, [&](DbgValueInst
*DVI
) {
784 assert(DVI
->getVariable()->getName() == "2");
785 return DVI
->getExpression()->getElements() == Ops
;
789 // Case 1: The original expr is empty, so no deref is needed.
790 EXPECT_TRUE(hasADbgVal({DW_OP_LLVM_convert
, 32, DW_ATE_signed
,
791 DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
792 DW_OP_stack_value
}));
794 // Case 2: Perform an address calculation with the original expr, deref it,
795 // then sign-extend the result.
796 EXPECT_TRUE(hasADbgVal({DW_OP_lit0
, DW_OP_mul
, DW_OP_deref
,
797 DW_OP_LLVM_convert
, 32, DW_ATE_signed
,
798 DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
799 DW_OP_stack_value
}));
801 // Case 3: Insert the sign-extension logic before the DW_OP_stack_value.
802 EXPECT_TRUE(hasADbgVal({DW_OP_lit0
, DW_OP_mul
, DW_OP_LLVM_convert
, 32,
803 DW_ATE_signed
, DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
804 DW_OP_stack_value
}));
806 // Cases 4-6: Just like cases 1-3, but preserve the fragment at the end.
807 EXPECT_TRUE(hasADbgVal({DW_OP_LLVM_convert
, 32, DW_ATE_signed
,
808 DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
809 DW_OP_stack_value
, DW_OP_LLVM_fragment
, 0, 8}));
811 EXPECT_TRUE(hasADbgVal({DW_OP_lit0
, DW_OP_mul
, DW_OP_deref
,
812 DW_OP_LLVM_convert
, 32, DW_ATE_signed
,
813 DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
814 DW_OP_stack_value
, DW_OP_LLVM_fragment
, 0, 8}));
816 EXPECT_TRUE(hasADbgVal({DW_OP_lit0
, DW_OP_mul
, DW_OP_LLVM_convert
, 32,
817 DW_ATE_signed
, DW_OP_LLVM_convert
, 64, DW_ATE_signed
,
818 DW_OP_stack_value
, DW_OP_LLVM_fragment
, 0, 8}));
820 verifyModule(*M
, &errs(), &BrokenDebugInfo
);
821 ASSERT_FALSE(BrokenDebugInfo
);
824 TEST(Local
, RemoveUnreachableBlocks
) {
827 std::unique_ptr
<Module
> M
= parseIR(C
,
829 define void @br_simple() {
838 define void @br_self_loop() {
842 br i1 true, label %bb1, label %bb0
844 br i1 true, label %bb0, label %bb2
849 define void @br_constant() {
853 br i1 true, label %bb1, label %bb2
855 br i1 true, label %bb0, label %bb2
860 define void @br_loop() {
871 declare i32 @__gxx_personality_v0(...)
873 define void @invoke_terminator() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
875 br i1 undef, label %invoke.block, label %exit
878 %cond = invoke zeroext i1 @invokable()
879 to label %continue.block unwind label %lpad.block
882 br i1 %cond, label %if.then, label %if.end
891 %lp = landingpad { i8*, i32 }
899 declare i1 @invokable()
902 auto runEager
= [&](Function
&F
, DominatorTree
*DT
) {
903 PostDominatorTree PDT
= PostDominatorTree(F
);
904 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Eager
);
905 removeUnreachableBlocks(F
, &DTU
);
906 EXPECT_TRUE(DTU
.getDomTree().verify());
907 EXPECT_TRUE(DTU
.getPostDomTree().verify());
910 auto runLazy
= [&](Function
&F
, DominatorTree
*DT
) {
911 PostDominatorTree PDT
= PostDominatorTree(F
);
912 DomTreeUpdater
DTU(*DT
, PDT
, DomTreeUpdater::UpdateStrategy::Lazy
);
913 removeUnreachableBlocks(F
, &DTU
);
914 EXPECT_TRUE(DTU
.getDomTree().verify());
915 EXPECT_TRUE(DTU
.getPostDomTree().verify());
918 // Test removeUnreachableBlocks under Eager UpdateStrategy.
919 runWithDomTree(*M
, "br_simple", runEager
);
920 runWithDomTree(*M
, "br_self_loop", runEager
);
921 runWithDomTree(*M
, "br_constant", runEager
);
922 runWithDomTree(*M
, "br_loop", runEager
);
923 runWithDomTree(*M
, "invoke_terminator", runEager
);
925 // Test removeUnreachableBlocks under Lazy UpdateStrategy.
926 runWithDomTree(*M
, "br_simple", runLazy
);
927 runWithDomTree(*M
, "br_self_loop", runLazy
);
928 runWithDomTree(*M
, "br_constant", runLazy
);
929 runWithDomTree(*M
, "br_loop", runLazy
);
930 runWithDomTree(*M
, "invoke_terminator", runLazy
);
942 auto checkRUBlocksRetVal
= [&](Function
&F
, DominatorTree
*DT
) {
943 DomTreeUpdater
DTU(DT
, DomTreeUpdater::UpdateStrategy::Lazy
);
944 EXPECT_TRUE(removeUnreachableBlocks(F
, &DTU
));
945 EXPECT_FALSE(removeUnreachableBlocks(F
, &DTU
));
946 EXPECT_TRUE(DTU
.getDomTree().verify());
949 runWithDomTree(*M
, "f", checkRUBlocksRetVal
);