]> granicus.if.org Git - llvm/commitdiff
[InstSimplify] Teach fsub -0.0, (fneg X) ==> X about unary fneg
authorCameron McInally <cameron.mcinally@nyu.edu>
Mon, 20 May 2019 13:13:35 +0000 (13:13 +0000)
committerCameron McInally <cameron.mcinally@nyu.edu>
Mon, 20 May 2019 13:13:35 +0000 (13:13 +0000)
Differential Revision: https://reviews.llvm.org/D62077

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361151 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstructionSimplify.cpp
test/Transforms/InstSimplify/floating-point-arithmetic.ll

index f97daec955633c7614d5d3dd15274b0760ed5dd4..e7f96b11b0aa9fa641c73059271ccaeb595b6d6f 100644 (file)
@@ -4404,9 +4404,10 @@ static Value *SimplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF,
     return Op0;
 
   // fsub -0.0, (fsub -0.0, X) ==> X
+  // fsub -0.0, (fneg X) ==> X
   Value *X;
   if (match(Op0, m_NegZeroFP()) &&
-      match(Op1, m_FSub(m_NegZeroFP(), m_Value(X))))
+      match(Op1, m_FNeg(m_Value(X))))
     return X;
 
   // fsub 0.0, (fsub 0.0, X) ==> X if signed zeros are ignored.
index ee8a6451fe726ec469340a08dd32acce6225a73c..ee097ffab094516dab411d4c05a8ac7edfc9b5c6 100644 (file)
@@ -60,9 +60,7 @@ define float @fsub_-0_-0_x(float %a) {
 ; fsub -0.0, (fneg X) ==> X
 define float @fneg_x(float %a) {
 ; CHECK-LABEL: @fneg_x(
-; CHECK-NEXT:    %t1 = fneg float %a
-; CHECK-NEXT:    %ret = fsub float -0.000000e+00, %t1
-; CHECK-NEXT:    ret float %ret
+; CHECK-NEXT:    ret float [[A:%.*]]
 ;
   %t1 = fneg float %a
   %ret = fsub float -0.0, %t1
@@ -80,9 +78,7 @@ define <2 x float> @fsub_-0_-0_x_vec(<2 x float> %a) {
 
 define <2 x float> @fneg_x_vec(<2 x float> %a) {
 ; CHECK-LABEL: @fneg_x_vec(
-; CHECK-NEXT:    %t1 = fneg <2 x float> %a
-; CHECK-NEXT:    %ret = fsub <2 x float> <float -0.000000e+00, float -0.000000e+00>, %t1
-; CHECK-NEXT:    ret <2 x float> %ret
+; CHECK-NEXT:    ret <2 x float> [[A:%.*]]
 ;
   %t1 = fneg <2 x float> %a
   %ret = fsub <2 x float> <float -0.0, float -0.0>, %t1
@@ -100,9 +96,7 @@ define <2 x float> @fsub_-0_-0_x_vec_undef_elts(<2 x float> %a) {
 
 define <2 x float> @fneg_x_vec_undef_elts(<2 x float> %a) {
 ; CHECK-LABEL: @fneg_x_vec_undef_elts(
-; CHECK-NEXT:    %t1 = fneg <2 x float> %a
-; CHECK-NEXT:    %ret = fsub <2 x float> <float -0.000000e+00, float undef>, %t1
-; CHECK-NEXT:    ret <2 x float> %ret
+; CHECK-NEXT:    ret <2 x float> [[A:%.*]]
 ;
   %t1 = fneg <2 x float> %a
   %ret = fsub <2 x float> <float -0.0, float undef>, %t1