[PATCH] D29075: Canonicalize guards for NOT OR condition
Max Kazantsev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 25 02:21:56 PST 2017
mkazantsev updated this revision to Diff 85721.
mkazantsev marked an inline comment as done.
mkazantsev added a comment.
Some reformating, renamed test.
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
@@ -48,3 +48,29 @@
call cc99 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
+}
+
+define void @test_guard_not_or_non_default_cc(i1 %A, i1 %B) {
+; CHECK-LABEL: @test_guard_not_or_non_default_cc(
+; CHECK-NEXT: %1 = xor i1 %A, true
+; CHECK-NEXT: call cc99 void (i1, ...) @llvm.experimental.guard(i1 %1) [ "deopt"() ]
+; CHECK-NEXT: %2 = xor i1 %B, true
+; CHECK-NEXT: call cc99 void (i1, ...) @llvm.experimental.guard(i1 %2) [ "deopt"() ]
+; CHECK-NEXT: ret void
+ %C = or i1 %A, %B
+ %D = xor i1 %C, true
+ call cc99 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
@@ -2895,6 +2895,18 @@
GuardB->setCallingConv(CC);
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());
+ auto CC = II->getCallingConv();
+ GuardA->setCallingConv(CC);
+ GuardB->setCallingConv(CC);
+ return eraseInstFromFunction(*II);
+ }
break;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29075.85721.patch
Type: text/x-patch
Size: 2218 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170125/639d1ac4/attachment.bin>
More information about the llvm-commits
mailing list