[PATCH] D29075: Canonicalize guards for NOT OR condition
Max Kazantsev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 24 20:51:54 PST 2017
mkazantsev updated this revision to Diff 85692.
mkazantsev added a comment.
Rebase
https://reviews.llvm.org/D29075
Files:
lib/Transforms/InstCombine/InstCombineCalls.cpp
test/Transforms/InstCombine/call-guard.ll
Index: test/Transforms/InstCombine/call-guard.ll
===================================================================
--- test/Transforms/InstCombine/call-guard.ll
+++ test/Transforms/InstCombine/call-guard.ll
@@ -38,3 +38,16 @@
call void(i1, ...) @llvm.experimental.guard( i1 %C )[ "deopt"() ]
ret void
}
+
+define void @test_guard_not_or(i1 %A, i1 %B) {
+; CHECK-LABEL: @test_guard_not_or(
+; CHECK-NEXT: %1 = xor i1 %A, true
+; CHECK-NEXT: call void (i1, ...) @llvm.experimental.guard(i1 %1) [ "deopt"() ]
+; CHECK-NEXT: %2 = xor i1 %B, true
+; CHECK-NEXT: call void (i1, ...) @llvm.experimental.guard(i1 %2) [ "deopt"() ]
+; CHECK-NEXT: ret void
+ %C = or i1 %A, %B
+ %D = xor i1 %C, true
+ call void(i1, ...) @llvm.experimental.guard( i1 %D )[ "deopt"() ]
+ ret void
+}
Index: lib/Transforms/InstCombine/InstCombineCalls.cpp
===================================================================
--- lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -2894,6 +2894,17 @@
GuardB->setCallingConv(II->getCallingConv());
return eraseInstFromFunction(*II);
}
+
+ // guard(!(a || b)) -> guard(!a); guard(!b);
+ if (match(IIOperand, m_Not(m_Or(m_Value(A), m_Value(B))))) {
+ CallInst *GuardA = Builder->CreateCall(GuardIntrinsic, Builder->CreateNot(A),
+ {DeoptOB}, II->getName());
+ CallInst *GuardB = Builder->CreateCall(GuardIntrinsic, Builder->CreateNot(B),
+ {DeoptOB}, II->getName());
+ GuardA->setCallingConv(II->getCallingConv());
+ GuardB->setCallingConv(II->getCallingConv());
+ return eraseInstFromFunction(*II);
+ }
break;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29075.85692.patch
Type: text/x-patch
Size: 1763 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170125/cee77b06/attachment.bin>
More information about the llvm-commits
mailing list