Skip to content

Commit

Permalink
[PredicateInfo] Do not process unreachable operands.
Browse files Browse the repository at this point in the history
Summary: We should excluded unreachable operands from processing as their DFS visitation order is undefined. When `renameUses` function sorts `OpsToRename` (https://fburl.com/d2wubn60), the comparator assumes that the parent block of the operand has a corresponding dominator tree node. This is not the case for unreachable operands and crashes the compiler.

Reviewers: dberlin, mgrang, davide

Subscribers: efriedma, hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D61154

llvm-svn: 360796
  • Loading branch information
taewookoh authored and MrSidims committed May 24, 2019
1 parent 52374a0 commit 29f76bf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/lib/Transforms/Utils/PredicateInfo.cpp
Expand Up @@ -473,7 +473,8 @@ void PredicateInfo::buildPredicateInfo() {
}
for (auto &Assume : AC.assumptions()) {
if (auto *II = dyn_cast_or_null<IntrinsicInst>(Assume))
processAssume(II, II->getParent(), OpsToRename);
if (DT.isReachableFromEntry(II->getParent()))
processAssume(II, II->getParent(), OpsToRename);
}
// Now rename all our operations.
renameUses(OpsToRename);
Expand Down
25 changes: 25 additions & 0 deletions llvm/test/Transforms/Util/PredicateInfo/unreachable.ll
@@ -0,0 +1,25 @@
; RUN: opt -print-predicateinfo < %s 2>&1 | FileCheck %s

declare void @foo()
declare void @llvm.assume(i1)

define void @bar(i32* %p) {
entry:
; CHECK-LABEL: @bar
br label %end

unreachable1:
%v1 = load i32, i32* %p, align 4
%c1 = icmp eq i32 %v1, 0
call void @llvm.assume(i1 %c1)
br label %unreachable2

unreachable2:
%v2 = load i32, i32* %p, align 4
%c2 = icmp eq i32 %v2, 0
call void @llvm.assume(i1 %c2)
br label %end

end:
ret void
}

0 comments on commit 29f76bf

Please sign in to comment.