[llvm] r257481 - Add/edit tests to include instruction-level FMF on calls

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 12 08:50:18 PST 2016


Author: spatel
Date: Tue Jan 12 10:50:17 2016
New Revision: 257481

URL: http://llvm.org/viewvc/llvm-project?rev=257481&view=rev
Log:
Add/edit tests to include instruction-level FMF on calls
Prepatory patch before changing LibCallSimplifier to use the FMF.
Also, tighten the CHECK lines and give the tests more meaningful names.
Similar changes to:
http://reviews.llvm.org/rL257414


Modified:
    llvm/trunk/test/Transforms/InstCombine/pow-exp.ll

Modified: llvm/trunk/test/Transforms/InstCombine/pow-exp.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/pow-exp.ll?rev=257481&r1=257480&r2=257481&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/pow-exp.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/pow-exp.ll Tue Jan 12 10:50:17 2016
@@ -1,28 +1,40 @@
 ; RUN: opt < %s -instcombine -S | FileCheck %s
 
-define double @mypow(double %x, double %y) #0 {
-entry:
+define double @pow_exp(double %x, double %y) #0 {
+  %call = call fast double @exp(double %x) #0
+  %pow = call fast double @llvm.pow.f64(double %call, double %y)
+  ret double %pow
+}
+
+; CHECK-LABEL: define double @pow_exp(
+; CHECK-NEXT:  %mul = fmul fast double %x, %y
+; CHECK-NEXT:  %exp = call fast double @exp(double %mul)
+; CHECK-NEXT:  ret double %exp
+
+; FIXME: This should not be transformed because the 'exp' call is not fast.
+define double @pow_exp_not_fast(double %x, double %y) #0 {
   %call = call double @exp(double %x)
-  %pow = call double @llvm.pow.f64(double %call, double %y)
+  %pow = call fast double @llvm.pow.f64(double %call, double %y)
   ret double %pow
 }
 
-; CHECK-LABEL: define double @mypow(
-; CHECK:   %mul = fmul fast double %x, %y
-; CHECK:   %exp = call fast double @exp(double %mul) #0
-; CHECK:   ret double %exp
-; CHECK: }
-
-define double @test2(double ()* %fptr, double %p1) #0 {
-  %call1 = call double %fptr()
-  %pow = call double @llvm.pow.f64(double %call1, double %p1)
+; CHECK-LABEL: define double @pow_exp_not_fast(
+; CHECK-NEXT:  %call = call double @exp(double %x)
+; CHECK-NEXT:  %mul = fmul fast double %x, %y
+; CHECK-NEXT:  %exp = call fast double @exp(double %mul)
+; CHECK-NEXT:  ret double %exp
+
+define double @function_pointer(double ()* %fptr, double %p1) #0 {
+  %call1 = call fast double %fptr()
+  %pow = call fast double @llvm.pow.f64(double %call1, double %p1)
   ret double %pow
 }
 
-; CHECK-LABEL: @test2
-; CHECK: llvm.pow.f64
+; CHECK-LABEL: @function_pointer
+; CHECK-NEXT:  %call1 = call fast double %fptr()
+; CHECK-NEXT:  %pow = call fast double @llvm.pow.f64(double %call1, double %p1)
 
-declare double @exp(double) #1
+declare double @exp(double)
 declare double @llvm.pow.f64(double, double)
-attributes #0 = { "unsafe-fp-math"="true" }
-attributes #1 = { "unsafe-fp-math"="true" }
+attributes #0 = { "unsafe-fp-math"="true" nounwind readnone }
+




More information about the llvm-commits mailing list