Skip to content

Commit 6c1ddbb

Browse files
committedJan 11, 2016
[LibCallSimplifier] don't allow sqrt transform unless all ops are unsafe
Fix the FIXME added with: http://reviews.llvm.org/rL257400 llvm-svn: 257404
1 parent 38c202e commit 6c1ddbb

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
 

‎llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1422,10 +1422,10 @@ Value *LibCallSimplifier::optimizeSqrt(CallInst *CI, IRBuilder<> &B) {
14221422
// variations of this pattern because instcombine's visitFMUL and/or the
14231423
// reassociation pass should give us this form.
14241424
Value *OtherMul0, *OtherMul1;
1425-
// FIXME: This multiply must be unsafe to allow this transform.
14261425
if (match(Op0, m_FMul(m_Value(OtherMul0), m_Value(OtherMul1)))) {
14271426
// Pattern: sqrt((x * y) * z)
1428-
if (OtherMul0 == OtherMul1) {
1427+
if (OtherMul0 == OtherMul1 &&
1428+
cast<Instruction>(Op0)->hasUnsafeAlgebra()) {
14291429
// Matched: sqrt((x * x) * z)
14301430
RepeatOp = OtherMul0;
14311431
OtherOp = Op1;

‎llvm/test/Transforms/InstCombine/fast-math.ll

+15
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,21 @@ define double @sqrt_intrinsic_three_args6(double %x, double %y) {
649649
; CHECK-NEXT: ret double %1
650650
}
651651

652+
; If any operation is not 'fast', we can't simplify.
653+
654+
define double @sqrt_intrinsic_not_so_fast(double %x, double %y) {
655+
%mul = fmul double %x, %x
656+
%mul2 = fmul fast double %mul, %y
657+
%sqrt = call fast double @llvm.sqrt.f64(double %mul2)
658+
ret double %sqrt
659+
660+
; CHECK-LABEL: sqrt_intrinsic_not_so_fast(
661+
; CHECK-NEXT: %mul = fmul double %x, %x
662+
; CHECK-NEXT: %mul2 = fmul fast double %mul, %y
663+
; CHECK-NEXT: %sqrt = call fast double @llvm.sqrt.f64(double %mul2)
664+
; CHECK-NEXT: ret double %sqrt
665+
}
666+
652667
define double @sqrt_intrinsic_arg_4th(double %x) {
653668
%mul = fmul fast double %x, %x
654669
%mul2 = fmul fast double %mul, %mul

0 commit comments

Comments
 (0)
Please sign in to comment.