cos-1.ll 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ; Test that the cos library call simplifier works correctly.
  2. ;
  3. ; RUN: opt < %s -instcombine -S | FileCheck %s -check-prefix=NO-FLOAT-SHRINK
  4. ; RUN: opt < %s -instcombine -enable-double-float-shrink -S | FileCheck %s -check-prefix=DO-FLOAT-SHRINK
  5. target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
  6. declare double @cos(double)
  7. ; Check cos(-x) -> cos(x);
  8. define double @test_simplify1(double %d) {
  9. ; NO-FLOAT-SHRINK-LABEL: @test_simplify1(
  10. %neg = fsub double -0.000000e+00, %d
  11. %cos = call double @cos(double %neg)
  12. ; NO-FLOAT-SHRINK: call double @cos(double %d)
  13. ret double %cos
  14. }
  15. define float @test_simplify2(float %f) {
  16. ; DO-FLOAT-SHRINK-LABEL: @test_simplify2(
  17. %conv1 = fpext float %f to double
  18. %neg = fsub double -0.000000e+00, %conv1
  19. %cos = call double @cos(double %neg)
  20. %conv2 = fptrunc double %cos to float
  21. ; DO-FLOAT-SHRINK: call float @cosf(float %f)
  22. ret float %conv2
  23. }
  24. define float @test_simplify3(float %f) {
  25. ; NO-FLOAT-SHRINK-LABEL: @test_simplify3(
  26. %conv1 = fpext float %f to double
  27. %neg = fsub double -0.000000e+00, %conv1
  28. %cos = call double @cos(double %neg)
  29. ; NO-FLOAT-SHRINK: call double @cos(double %conv1)
  30. %conv2 = fptrunc double %cos to float
  31. ret float %conv2
  32. }