]> granicus.if.org Git - llvm/commitdiff
[InstSimplify] move one and add more tests for potential negation folds
authorSanjay Patel <spatel@rotateright.com>
Wed, 19 Oct 2016 18:42:12 +0000 (18:42 +0000)
committerSanjay Patel <spatel@rotateright.com>
Wed, 19 Oct 2016 18:42:12 +0000 (18:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284627 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstSimplify/AndOrXor.ll
test/Transforms/InstSimplify/negate.ll [new file with mode: 0644]

index e66601cab3fbbde43b7d835797b5c5b525c15c07..c6959d72961d163f8708d2a3541d31d4247071f3 100644 (file)
@@ -29,15 +29,6 @@ define i64 @pow2b(i32 %x) {
   ret i64 %e2
 }
 
-define i32 @sub_neg_nuw(i32 %x, i32 %y) {
-; CHECK-LABEL: @sub_neg_nuw(
-; CHECK-NEXT:    ret i32 %x
-;
-  %neg = sub nuw i32 0, %y
-  %sub = sub i32 %x, %neg
-  ret i32 %sub
-}
-
 define i1 @and_of_icmps0(i32 %b) {
 ; CHECK-LABEL: @and_of_icmps0(
 ; CHECK-NEXT:    ret i1 false
diff --git a/test/Transforms/InstSimplify/negate.ll b/test/Transforms/InstSimplify/negate.ll
new file mode 100644 (file)
index 0000000..9eeb53e
--- /dev/null
@@ -0,0 +1,63 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; RUN: opt < %s -instsimplify -S | FileCheck %s
+
+define i32 @negate_nuw(i32 %x) {
+; CHECK-LABEL: @negate_nuw(
+; CHECK-NEXT:    ret i32 0
+;
+  %neg = sub nuw i32 0, %x
+  ret i32 %neg
+}
+
+define <2 x i32> @negate_nuw_vec(<2 x i32> %x) {
+; CHECK-LABEL: @negate_nuw_vec(
+; CHECK-NEXT:    ret <2 x i32> zeroinitializer
+;
+  %neg = sub nuw <2 x i32> zeroinitializer, %x
+  ret <2 x i32> %neg
+}
+
+define i8 @negate_zero_or_minsigned_nsw(i8 %x) {
+; CHECK-LABEL: @negate_zero_or_minsigned_nsw(
+; CHECK-NEXT:    [[SIGNBIT:%.*]] = and i8 %x, -128
+; CHECK-NEXT:    [[NEG:%.*]] = sub nsw i8 0, [[SIGNBIT]]
+; CHECK-NEXT:    ret i8 [[NEG]]
+;
+  %signbit = and i8 %x, 128
+  %neg = sub nsw i8 0, %signbit
+  ret i8 %neg
+}
+
+define <2 x i8> @negate_zero_or_minsigned_nsw_vec(<2 x i8> %x) {
+; CHECK-LABEL: @negate_zero_or_minsigned_nsw_vec(
+; CHECK-NEXT:    [[SIGNBIT:%.*]] = shl <2 x i8> %x, <i8 7, i8 7>
+; CHECK-NEXT:    [[NEG:%.*]] = sub nsw <2 x i8> zeroinitializer, [[SIGNBIT]]
+; CHECK-NEXT:    ret <2 x i8> [[NEG]]
+;
+  %signbit = shl <2 x i8> %x, <i8 7, i8 7>
+  %neg = sub nsw <2 x i8> zeroinitializer, %signbit
+  ret <2 x i8> %neg
+}
+
+define i8 @negate_zero_or_minsigned(i8 %x) {
+; CHECK-LABEL: @negate_zero_or_minsigned(
+; CHECK-NEXT:    [[SIGNBIT:%.*]] = shl i8 %x, 7
+; CHECK-NEXT:    [[NEG:%.*]] = sub i8 0, [[SIGNBIT]]
+; CHECK-NEXT:    ret i8 [[NEG]]
+;
+  %signbit = shl i8 %x, 7
+  %neg = sub i8 0, %signbit
+  ret i8 %neg
+}
+
+define <2 x i8> @negate_zero_or_minsigned_vec(<2 x i8> %x) {
+; CHECK-LABEL: @negate_zero_or_minsigned_vec(
+; CHECK-NEXT:    [[SIGNBIT:%.*]] = and <2 x i8> %x, <i8 -128, i8 -128>
+; CHECK-NEXT:    [[NEG:%.*]] = sub <2 x i8> zeroinitializer, [[SIGNBIT]]
+; CHECK-NEXT:    ret <2 x i8> [[NEG]]
+;
+  %signbit = and <2 x i8> %x, <i8 128, i8 128>
+  %neg = sub <2 x i8> zeroinitializer, %signbit
+  ret <2 x i8> %neg
+}
+