[PATCH] D13441: Fix pr25040 - Handle vectors of i1s in recently added implication code
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 6 12:02:00 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL249442: Fix pr25040 - Handle vectors of i1s in recently added implication code (authored by reames).
Changed prior to commit:
http://reviews.llvm.org/D13441?vs=36531&id=36643#toc
Repository:
rL LLVM
http://reviews.llvm.org/D13441
Files:
llvm/trunk/lib/Analysis/InstructionSimplify.cpp
llvm/trunk/test/Transforms/InstSimplify/implies.ll
Index: llvm/trunk/test/Transforms/InstSimplify/implies.ll
===================================================================
--- llvm/trunk/test/Transforms/InstSimplify/implies.ll
+++ llvm/trunk/test/Transforms/InstSimplify/implies.ll
@@ -75,3 +75,19 @@
%res = icmp ule i1 %var30, %var29
ret i1 %res
}
+
+; A ==> A for vectors
+define <4 x i1> @test5(<4 x i1> %vec) {
+; CHECK-LABEL: @test5
+; CHECK: ret <4 x i1> <i1 true, i1 true, i1 true, i1 true>
+ %res = icmp ule <4 x i1> %vec, %vec
+ ret <4 x i1> %res
+}
+
+; Don't crash on vector inputs - pr25040
+define <4 x i1> @test6(<4 x i1> %a, <4 x i1> %b) {
+; CHECK-LABEL: @test6
+; CHECK: ret <4 x i1> %res
+ %res = icmp ule <4 x i1> %a, %b
+ ret <4 x i1> %res
+}
Index: llvm/trunk/lib/Analysis/InstructionSimplify.cpp
===================================================================
--- llvm/trunk/lib/Analysis/InstructionSimplify.cpp
+++ llvm/trunk/lib/Analysis/InstructionSimplify.cpp
@@ -2129,19 +2129,26 @@
}
/// Return true if B is known to be implied by A. A & B must be i1 (boolean)
-/// values. Note that the truth table for implication is the same as <=u on i1
-/// values (but not <=s!). The truth table for both is:
+/// values or a vector of such values. Note that the truth table for
+/// implication is the same as <=u on i1 values (but not <=s!). The truth
+/// table for both is:
/// | T | F (B)
/// T | T | F
/// F | T | T
/// (A)
static bool implies(Value *A, Value *B) {
- // TODO: Consider extending this to vector of i1?
- assert(A->getType()->isIntegerTy(1) && B->getType()->isIntegerTy(1));
+ assert(A->getType() == B->getType() && "mismatched type");
+ Type *OpTy = A->getType();
+ assert(OpTy->getScalarType()->isIntegerTy(1));
// A ==> A by definition
if (A == B) return true;
+ if (OpTy->isVectorTy())
+ // TODO: extending the code below to handle vectors
+ return false;
+ assert(OpTy->isIntegerTy(1) && "implied by above");
+
ICmpInst::Predicate APred, BPred;
Value *I;
Value *L;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13441.36643.patch
Type: text/x-patch
Size: 2029 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151006/e8b9c7d0/attachment.bin>
More information about the llvm-commits
mailing list