2017-12-17 01:18:15 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
2013-01-16 05:09:32 +08:00
|
|
|
; RUN: opt -S -instcombine < %s | FileCheck %s
|
|
|
|
|
|
|
|
; (-0.0 - X) * C => X * -C
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_constant(float %x) {
|
|
|
|
; CHECK-LABEL: @neg_constant(
|
2018-02-22 06:48:28 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul ninf float [[X:%.*]], -2.000000e+01
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub = fsub float -0.0, %x
|
2018-02-22 06:48:28 +08:00
|
|
|
%mul = fmul ninf float %sub, 2.0e+1
|
2013-01-16 05:09:32 +08:00
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2018-04-05 23:07:35 +08:00
|
|
|
define <2 x float> @neg_constant_vec(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @neg_constant_vec(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul ninf <2 x float> [[X:%.*]], <float -2.000000e+00, float -3.000000e+00>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub = fsub <2 x float> <float -0.0, float -0.0>, %x
|
|
|
|
%mul = fmul ninf <2 x float> %sub, <float 2.0, float 3.0>
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @neg_constant_vec_undef(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @neg_constant_vec_undef(
|
2018-04-05 23:36:55 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul ninf <2 x float> [[X:%.*]], <float -2.000000e+00, float -3.000000e+00>
|
2018-04-05 23:07:35 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub = fsub <2 x float> <float undef, float -0.0>, %x
|
|
|
|
%mul = fmul ninf <2 x float> %sub, <float 2.0, float 3.0>
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
2013-01-16 05:09:32 +08:00
|
|
|
; (0.0 - X) * C => X * -C
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_nsz_constant(float %x) {
|
|
|
|
; CHECK-LABEL: @neg_nsz_constant(
|
2018-02-22 06:48:28 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul nnan float [[X:%.*]], -2.000000e+01
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub = fsub nsz float 0.0, %x
|
2018-02-22 06:48:28 +08:00
|
|
|
%mul = fmul nnan float %sub, 2.0e+1
|
2013-01-16 05:09:32 +08:00
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
; (-0.0 - X) * (-0.0 - Y) => X * Y
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_neg(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_neg(
|
2018-02-22 06:48:28 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul arcp float [[X:%.*]], [[Y:%.*]]
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub1 = fsub float -0.0, %x
|
|
|
|
%sub2 = fsub float -0.0, %y
|
2018-02-22 06:48:28 +08:00
|
|
|
%mul = fmul arcp float %sub1, %sub2
|
2013-01-16 05:09:32 +08:00
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2018-04-05 23:07:35 +08:00
|
|
|
define <2 x float> @neg_neg_vec(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @neg_neg_vec(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul arcp <2 x float> [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub1 = fsub <2 x float> <float -0.0, float -0.0>, %x
|
|
|
|
%sub2 = fsub <2 x float> <float -0.0, float -0.0>, %y
|
|
|
|
%mul = fmul arcp <2 x float> %sub1, %sub2
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @neg_neg_vec_undef(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @neg_neg_vec_undef(
|
2018-04-05 23:36:55 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul arcp <2 x float> [[X:%.*]], [[Y:%.*]]
|
2018-04-05 23:07:35 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub1 = fsub <2 x float> <float -0.0, float undef>, %x
|
|
|
|
%sub2 = fsub <2 x float> <float undef, float -0.0>, %y
|
|
|
|
%mul = fmul arcp <2 x float> %sub1, %sub2
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
2013-01-16 05:09:32 +08:00
|
|
|
; (0.0 - X) * (0.0 - Y) => X * Y
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_neg_nsz(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_neg_nsz(
|
2018-02-22 06:48:28 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul afn float [[X:%.*]], [[Y:%.*]]
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub1 = fsub nsz float 0.0, %x
|
|
|
|
%sub2 = fsub nsz float 0.0, %y
|
2018-02-22 06:48:28 +08:00
|
|
|
%mul = fmul afn float %sub1, %sub2
|
2013-01-16 05:09:32 +08:00
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2018-02-22 22:27:16 +08:00
|
|
|
declare void @use_f32(float)
|
|
|
|
|
|
|
|
define float @neg_neg_multi_use(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_neg_multi_use(
|
|
|
|
; CHECK-NEXT: [[NX:%.*]] = fsub float -0.000000e+00, [[X:%.*]]
|
|
|
|
; CHECK-NEXT: [[NY:%.*]] = fsub float -0.000000e+00, [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul afn float [[X]], [[Y]]
|
|
|
|
; CHECK-NEXT: call void @use_f32(float [[NX]])
|
|
|
|
; CHECK-NEXT: call void @use_f32(float [[NY]])
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%nx = fsub float -0.0, %x
|
|
|
|
%ny = fsub float -0.0, %y
|
2018-02-22 22:27:16 +08:00
|
|
|
%mul = fmul afn float %nx, %ny
|
|
|
|
call void @use_f32(float %nx)
|
|
|
|
call void @use_f32(float %ny)
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2013-01-16 05:09:32 +08:00
|
|
|
; (-0.0 - X) * Y => -0.0 - (X * Y)
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_sink(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_sink(
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub float -0.000000e+00, [[TMP1]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub = fsub float -0.0, %x
|
|
|
|
%mul = fmul float %sub, %y
|
2013-01-16 05:09:32 +08:00
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2018-04-05 23:07:35 +08:00
|
|
|
define <2 x float> @neg_sink_vec(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @neg_sink_vec(
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul <2 x float> [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub <2 x float> <float -0.000000e+00, float -0.000000e+00>, [[TMP1]]
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub = fsub <2 x float> <float -0.0, float -0.0>, %x
|
|
|
|
%mul = fmul <2 x float> %sub, %y
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @neg_sink_vec_undef(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @neg_sink_vec_undef(
|
2018-04-05 23:36:55 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul <2 x float> [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub <2 x float> <float -0.000000e+00, float -0.000000e+00>, [[TMP1]]
|
2018-04-05 23:07:35 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[MUL]]
|
|
|
|
;
|
|
|
|
%sub = fsub <2 x float> <float undef, float -0.0>, %x
|
|
|
|
%mul = fmul <2 x float> %sub, %y
|
|
|
|
ret <2 x float> %mul
|
|
|
|
}
|
|
|
|
|
2013-01-16 05:09:32 +08:00
|
|
|
; (0.0 - X) * Y => 0.0 - (X * Y)
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_sink_nsz(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_sink_nsz(
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub float -0.000000e+00, [[TMP1]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub1 = fsub nsz float 0.0, %x
|
2013-01-16 05:09:32 +08:00
|
|
|
%mul = fmul float %sub1, %y
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
; "(-0.0 - X) * Y => -0.0 - (X * Y)" is disabled if expression "-0.0 - X"
|
|
|
|
; has multiple uses.
|
2018-02-22 22:27:16 +08:00
|
|
|
define float @neg_sink_multi_use(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @neg_sink_multi_use(
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: [[SUB1:%.*]] = fsub float -0.000000e+00, [[X:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul float [[SUB1]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul float [[MUL]], [[SUB1]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
2018-04-05 23:07:35 +08:00
|
|
|
%sub1 = fsub float -0.0, %x
|
2013-01-16 05:09:32 +08:00
|
|
|
%mul = fmul float %sub1, %y
|
|
|
|
%mul2 = fmul float %mul, %sub1
|
|
|
|
ret float %mul2
|
|
|
|
}
|
2013-09-30 22:18:35 +08:00
|
|
|
|
|
|
|
; Don't crash when attempting to cast a constant FMul to an instruction.
|
|
|
|
define void @test8(i32* %inout) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @test8(
|
|
|
|
; CHECK-NEXT: entry:
|
|
|
|
; CHECK-NEXT: br label [[FOR_COND:%.*]]
|
|
|
|
; CHECK: for.cond:
|
|
|
|
; CHECK-NEXT: [[LOCAL_VAR_7_0:%.*]] = phi <4 x float> [ <float -0.000000e+00, float -0.000000e+00, float -0.000000e+00, float -0.000000e+00>, [[ENTRY:%.*]] ], [ [[TMP0:%.*]], [[FOR_BODY:%.*]] ]
|
|
|
|
; CHECK-NEXT: br i1 undef, label [[FOR_BODY]], label [[FOR_END:%.*]]
|
|
|
|
; CHECK: for.body:
|
|
|
|
; CHECK-NEXT: [[TMP0]] = insertelement <4 x float> [[LOCAL_VAR_7_0]], float 0.000000e+00, i32 2
|
|
|
|
; CHECK-NEXT: br label [[FOR_COND]]
|
|
|
|
; CHECK: for.end:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
2013-09-30 22:18:35 +08:00
|
|
|
entry:
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load i32, i32* %inout, align 4
|
2013-09-30 22:18:35 +08:00
|
|
|
%conv = uitofp i32 %0 to float
|
|
|
|
%vecinit = insertelement <4 x float> <float 0.000000e+00, float 0.000000e+00, float 0.000000e+00, float undef>, float %conv, i32 3
|
|
|
|
%sub = fsub <4 x float> <float -0.000000e+00, float -0.000000e+00, float -0.000000e+00, float -0.000000e+00>, %vecinit
|
|
|
|
%1 = shufflevector <4 x float> %sub, <4 x float> undef, <4 x i32> <i32 1, i32 1, i32 1, i32 1>
|
|
|
|
%mul = fmul <4 x float> zeroinitializer, %1
|
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.cond: ; preds = %for.body, %entry
|
|
|
|
%local_var_7.0 = phi <4 x float> [ %mul, %entry ], [ %2, %for.body ]
|
|
|
|
br i1 undef, label %for.body, label %for.end
|
|
|
|
|
|
|
|
for.body: ; preds = %for.cond
|
|
|
|
%2 = insertelement <4 x float> %local_var_7.0, float 0.000000e+00, i32 2
|
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.end: ; preds = %for.cond
|
|
|
|
ret void
|
|
|
|
}
|
2014-01-17 04:36:42 +08:00
|
|
|
|
|
|
|
; X * -1.0 => -0.0 - X
|
|
|
|
define float @test9(float %x) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @test9(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub float -0.000000e+00, [[X:%.*]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2014-01-17 04:36:42 +08:00
|
|
|
%mul = fmul float %x, -1.0
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2014-01-19 00:43:14 +08:00
|
|
|
; PR18532
|
|
|
|
define <4 x float> @test10(<4 x float> %x) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @test10(
|
2018-03-01 06:30:04 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub arcp afn <4 x float> <float -0.000000e+00, float -0.000000e+00, float -0.000000e+00, float -0.000000e+00>, [[X:%.*]]
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-NEXT: ret <4 x float> [[MUL]]
|
|
|
|
;
|
2018-03-01 06:30:04 +08:00
|
|
|
%mul = fmul arcp afn <4 x float> %x, <float -1.0, float -1.0, float -1.0, float -1.0>
|
2014-01-19 00:43:14 +08:00
|
|
|
ret <4 x float> %mul
|
|
|
|
}
|
2014-01-20 15:44:53 +08:00
|
|
|
|
|
|
|
define float @test11(float %x, float %y) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @test11(
|
|
|
|
; CHECK-NEXT: [[B:%.*]] = fadd fast float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[C:%.*]] = fadd fast float [[B]], 3.000000e+00
|
|
|
|
; CHECK-NEXT: ret float [[C]]
|
|
|
|
;
|
2014-01-20 15:44:53 +08:00
|
|
|
%a = fadd fast float %x, 1.0
|
|
|
|
%b = fadd fast float %y, 2.0
|
|
|
|
%c = fadd fast float %a, %b
|
|
|
|
ret float %c
|
|
|
|
}
|
2014-10-03 05:10:54 +08:00
|
|
|
|
|
|
|
declare double @llvm.sqrt.f64(double)
|
|
|
|
|
2017-12-17 01:18:15 +08:00
|
|
|
; With unsafe/fast math, sqrt(X) * sqrt(X) is just X,
|
2014-10-03 05:10:54 +08:00
|
|
|
; but make sure another use of the sqrt is intact.
|
|
|
|
; Note that the remaining fmul is altered but is not 'fast'
|
2017-12-17 01:18:15 +08:00
|
|
|
; itself because it was not marked 'fast' originally.
|
2014-10-03 05:10:54 +08:00
|
|
|
; Thus, we have an overall fast result, but no more indication of
|
|
|
|
; 'fast'ness in the code.
|
2014-10-03 05:12:04 +08:00
|
|
|
define double @sqrt_squared2(double %f) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @sqrt_squared2(
|
|
|
|
; CHECK-NEXT: [[SQRT:%.*]] = call double @llvm.sqrt.f64(double [[F:%.*]])
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul double [[SQRT]], [[F]]
|
|
|
|
; CHECK-NEXT: ret double [[MUL2]]
|
|
|
|
;
|
2014-10-03 05:10:54 +08:00
|
|
|
%sqrt = call double @llvm.sqrt.f64(double %f)
|
|
|
|
%mul1 = fmul fast double %sqrt, %sqrt
|
|
|
|
%mul2 = fmul double %mul1, %sqrt
|
|
|
|
ret double %mul2
|
|
|
|
}
|
2016-01-30 13:02:00 +08:00
|
|
|
|
|
|
|
declare float @llvm.fabs.f32(float) nounwind readnone
|
|
|
|
|
|
|
|
define float @fabs_squared(float %x) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @fabs_squared(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul float [[X:%.*]], [[X]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2016-01-30 13:02:00 +08:00
|
|
|
%x.fabs = call float @llvm.fabs.f32(float %x)
|
|
|
|
%mul = fmul float %x.fabs, %x.fabs
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fabs_squared_fast(float %x) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @fabs_squared_fast(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul fast float [[X:%.*]], [[X]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2016-01-30 13:02:00 +08:00
|
|
|
%x.fabs = call float @llvm.fabs.f32(float %x)
|
|
|
|
%mul = fmul fast float %x.fabs, %x.fabs
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fabs_x_fabs(float %x, float %y) {
|
2017-12-17 01:18:15 +08:00
|
|
|
; CHECK-LABEL: @fabs_x_fabs(
|
|
|
|
; CHECK-NEXT: [[X_FABS:%.*]] = call float @llvm.fabs.f32(float [[X:%.*]])
|
|
|
|
; CHECK-NEXT: [[Y_FABS:%.*]] = call float @llvm.fabs.f32(float [[Y:%.*]])
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul float [[X_FABS]], [[Y_FABS]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2016-01-30 13:02:00 +08:00
|
|
|
%x.fabs = call float @llvm.fabs.f32(float %x)
|
|
|
|
%y.fabs = call float @llvm.fabs.f32(float %y)
|
|
|
|
%mul = fmul float %x.fabs, %y.fabs
|
|
|
|
ret float %mul
|
|
|
|
}
|
2018-03-01 23:30:44 +08:00
|
|
|
|
|
|
|
; (X*Y) * X => (X*X) * Y
|
2018-03-02 08:14:51 +08:00
|
|
|
; The transform only requires 'reassoc', but test other FMF in
|
|
|
|
; the commuted variants to make sure FMF propagates as expected.
|
2018-03-01 23:30:44 +08:00
|
|
|
|
|
|
|
define float @reassoc_common_operand1(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @reassoc_common_operand1(
|
2018-03-02 08:14:51 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc float [[X:%.*]], [[X]]
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul reassoc float [[TMP1]], [[Y:%.*]]
|
2018-03-01 23:30:44 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
|
|
|
%mul1 = fmul float %x, %y
|
2018-03-02 08:14:51 +08:00
|
|
|
%mul2 = fmul reassoc float %mul1, %x
|
2018-03-01 23:30:44 +08:00
|
|
|
ret float %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; (Y*X) * X => (X*X) * Y
|
|
|
|
|
|
|
|
define float @reassoc_common_operand2(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @reassoc_common_operand2(
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[X:%.*]], [[X]]
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul fast float [[TMP1]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
|
|
|
%mul1 = fmul float %y, %x
|
|
|
|
%mul2 = fmul fast float %mul1, %x
|
|
|
|
ret float %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; X * (X*Y) => (X*X) * Y
|
|
|
|
|
|
|
|
define float @reassoc_common_operand3(float %x1, float %y) {
|
|
|
|
; CHECK-LABEL: @reassoc_common_operand3(
|
|
|
|
; CHECK-NEXT: [[X:%.*]] = fdiv float [[X1:%.*]], 3.000000e+00
|
2018-03-02 08:14:51 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc nnan float [[X]], [[X]]
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul reassoc nnan float [[TMP1]], [[Y:%.*]]
|
2018-03-01 23:30:44 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
|
|
|
%x = fdiv float %x1, 3.0 ; thwart complexity-based canonicalization
|
|
|
|
%mul1 = fmul float %x, %y
|
2018-03-02 08:14:51 +08:00
|
|
|
%mul2 = fmul reassoc nnan float %x, %mul1
|
2018-03-01 23:30:44 +08:00
|
|
|
ret float %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; X * (Y*X) => (X*X) * Y
|
|
|
|
|
|
|
|
define float @reassoc_common_operand4(float %x1, float %y) {
|
|
|
|
; CHECK-LABEL: @reassoc_common_operand4(
|
|
|
|
; CHECK-NEXT: [[X:%.*]] = fdiv float [[X1:%.*]], 3.000000e+00
|
2018-03-02 08:14:51 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc ninf float [[X]], [[X]]
|
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul reassoc ninf float [[TMP1]], [[Y:%.*]]
|
2018-03-01 23:30:44 +08:00
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
|
|
|
%x = fdiv float %x1, 3.0 ; thwart complexity-based canonicalization
|
|
|
|
%mul1 = fmul float %y, %x
|
2018-03-02 08:14:51 +08:00
|
|
|
%mul2 = fmul reassoc ninf float %x, %mul1
|
2018-03-01 23:30:44 +08:00
|
|
|
ret float %mul2
|
|
|
|
}
|
|
|
|
|
|
|
|
; No change if the first fmul has another use.
|
|
|
|
|
|
|
|
define float @reassoc_common_operand_multi_use(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @reassoc_common_operand_multi_use(
|
|
|
|
; CHECK-NEXT: [[MUL1:%.*]] = fmul float [[X:%.*]], [[Y:%.*]]
|
2018-03-02 07:39:24 +08:00
|
|
|
; CHECK-NEXT: [[MUL2:%.*]] = fmul fast float [[MUL1]], [[X]]
|
2018-03-01 23:30:44 +08:00
|
|
|
; CHECK-NEXT: call void @use_f32(float [[MUL1]])
|
|
|
|
; CHECK-NEXT: ret float [[MUL2]]
|
|
|
|
;
|
|
|
|
%mul1 = fmul float %x, %y
|
2018-03-02 07:39:24 +08:00
|
|
|
%mul2 = fmul fast float %mul1, %x
|
2018-03-01 23:30:44 +08:00
|
|
|
call void @use_f32(float %mul1)
|
|
|
|
ret float %mul2
|
|
|
|
}
|
|
|
|
|
2018-03-03 03:26:13 +08:00
|
|
|
declare float @llvm.log2.f32(float)
|
|
|
|
|
2018-03-03 04:32:46 +08:00
|
|
|
; log2(Y * 0.5) * X = log2(Y) * X - X
|
2018-03-03 03:26:13 +08:00
|
|
|
|
|
|
|
define float @log2half(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @log2half(
|
|
|
|
; CHECK-NEXT: [[LOG2:%.*]] = call fast float @llvm.log2.f32(float [[Y:%.*]])
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[LOG2]], [[X:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub fast float [[TMP1]], [[X]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
2018-03-03 04:32:46 +08:00
|
|
|
%halfy = fmul float %y, 0.5
|
|
|
|
%log2 = call float @llvm.log2.f32(float %halfy)
|
2018-03-03 03:26:13 +08:00
|
|
|
%mul = fmul fast float %log2, %x
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @log2half_commute(float %x1, float %y) {
|
|
|
|
; CHECK-LABEL: @log2half_commute(
|
|
|
|
; CHECK-NEXT: [[X:%.*]] = fdiv float [[X1:%.*]], 7.000000e+00
|
|
|
|
; CHECK-NEXT: [[LOG2:%.*]] = call fast float @llvm.log2.f32(float [[Y:%.*]])
|
2018-03-03 04:32:46 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[LOG2]], [[X]]
|
2018-03-03 03:26:13 +08:00
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fsub fast float [[TMP1]], [[X]]
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
|
|
|
%x = fdiv float %x1, 7.0 ; thwart complexity-based canonicalization
|
2018-03-03 04:32:46 +08:00
|
|
|
%halfy = fmul float %y, 0.5
|
|
|
|
%log2 = call float @llvm.log2.f32(float %halfy)
|
2018-03-03 03:26:13 +08:00
|
|
|
%mul = fmul fast float %x, %log2
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
2018-03-13 07:10:08 +08:00
|
|
|
; C1/X * C2 => (C1*C2) / X
|
|
|
|
|
|
|
|
define float @fdiv_constant_numerator_fmul(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_numerator_fmul(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fdiv reassoc float 1.200000e+07, [[X:%.*]]
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
;
|
|
|
|
%t1 = fdiv float 2.0e+3, %x
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t1, 6.0e+3
|
2018-03-13 07:10:08 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; C1/X * C2 => (C1*C2) / X is disabled if C1/X has multiple uses
|
|
|
|
|
|
|
|
@fmul2_external = external global float
|
|
|
|
|
|
|
|
define float @fdiv_constant_numerator_fmul_extra_use(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_numerator_fmul_extra_use(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv fast float 1.000000e+00, [[X:%.*]]
|
|
|
|
; CHECK-NEXT: store float [[DIV]], float* @fmul2_external, align 4
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul fast float [[DIV]], 2.000000e+00
|
|
|
|
; CHECK-NEXT: ret float [[MUL]]
|
|
|
|
;
|
|
|
|
%div = fdiv fast float 1.0, %x
|
|
|
|
store float %div, float* @fmul2_external
|
|
|
|
%mul = fmul fast float %div, 2.0
|
|
|
|
ret float %mul
|
|
|
|
}
|
|
|
|
|
|
|
|
; X/C1 * C2 => X * (C2/C1) (if C2/C1 is normal FP)
|
|
|
|
|
|
|
|
define float @fdiv_constant_denominator_fmul(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul reassoc float [[X:%.*]], 3.000000e+00
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
;
|
|
|
|
%t1 = fdiv float %x, 2.0e+3
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t1, 6.0e+3
|
2018-03-13 07:10:08 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
define <4 x float> @fdiv_constant_denominator_fmul_vec(<4 x float> %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul_vec(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul reassoc <4 x float> [[X:%.*]], <float 3.000000e+00, float 2.000000e+00, float 1.000000e+00, float 1.000000e+00>
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: ret <4 x float> [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
;
|
|
|
|
%t1 = fdiv <4 x float> %x, <float 2.0e+3, float 3.0e+3, float 2.0e+3, float 1.0e+3>
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc <4 x float> %t1, <float 6.0e+3, float 6.0e+3, float 2.0e+3, float 1.0e+3>
|
2018-03-13 07:10:08 +08:00
|
|
|
ret <4 x float> %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; Make sure fmul with constant expression doesn't assert.
|
|
|
|
|
|
|
|
define <4 x float> @fdiv_constant_denominator_fmul_vec_constexpr(<4 x float> %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul_vec_constexpr(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul reassoc <4 x float> [[X:%.*]], <float 3.000000e+00, float 2.000000e+00, float 1.000000e+00, float 1.000000e+00>
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: ret <4 x float> [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
;
|
|
|
|
%constExprMul = bitcast i128 trunc (i160 bitcast (<5 x float> <float 6.0e+3, float 6.0e+3, float 2.0e+3, float 1.0e+3, float undef> to i160) to i128) to <4 x float>
|
|
|
|
%t1 = fdiv <4 x float> %x, <float 2.0e+3, float 3.0e+3, float 2.0e+3, float 1.0e+3>
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc <4 x float> %t1, %constExprMul
|
2018-03-13 07:10:08 +08:00
|
|
|
ret <4 x float> %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; Rule "X/C1 * C2 => X * (C2/C1) is not applicable if C2/C1 is abnormal
|
|
|
|
; 0x3810000000000000 == FLT_MIN
|
|
|
|
|
|
|
|
define float @fdiv_constant_denominator_fmul_denorm(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul_denorm(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fdiv float [[X:%.*]], 2.000000e+03
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul fast float [[T1]], 0x3810000000000000
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv float %x, 2.0e+3
|
|
|
|
%t3 = fmul fast float %t1, 0x3810000000000000
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; X / C1 * C2 => X / (C2/C1) if C1/C2 is abnormal, but C2/C1 is a normal value.
|
|
|
|
; TODO: We don't convert the fast fdiv to fmul because that would be multiplication
|
|
|
|
; by a denormal, but we could do better when we know that denormals are not a problem.
|
|
|
|
|
|
|
|
define float @fdiv_constant_denominator_fmul_denorm_try_harder(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul_denorm_try_harder(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fdiv reassoc float [[X:%.*]], 0x47E8000000000000
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
;
|
|
|
|
%t1 = fdiv float %x, 3.0
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t1, 0x3810000000000000
|
2018-03-13 07:10:08 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
2018-03-13 22:46:32 +08:00
|
|
|
; Negative test: we should not have 2 divisions instead of the 1 we started with.
|
2018-03-13 07:10:08 +08:00
|
|
|
|
|
|
|
define float @fdiv_constant_denominator_fmul_denorm_try_harder_extra_use(float %x) {
|
|
|
|
; CHECK-LABEL: @fdiv_constant_denominator_fmul_denorm_try_harder_extra_use(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fdiv float [[X:%.*]], 3.000000e+00
|
2018-03-13 22:46:32 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul fast float [[T1]], 0x3810000000000000
|
|
|
|
; CHECK-NEXT: [[R:%.*]] = fadd float [[T1]], [[T3]]
|
2018-03-13 07:10:08 +08:00
|
|
|
; CHECK-NEXT: ret float [[R]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv float %x, 3.0e+0
|
|
|
|
%t3 = fmul fast float %t1, 0x3810000000000000
|
|
|
|
%r = fadd float %t1, %t3
|
|
|
|
ret float %r
|
|
|
|
}
|
|
|
|
|
2018-03-22 05:28:19 +08:00
|
|
|
; (X + C1) * C2 --> (X * C2) + C1*C2
|
|
|
|
|
|
|
|
define float @fmul_fadd_distribute(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fadd_distribute(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc float [[X:%.*]], 3.000000e+00
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd reassoc float [[TMP1]], 6.000000e+00
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t2 = fadd float %x, 2.0
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t2, 3.0
|
2018-03-22 05:28:19 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; (X - C1) * C2 --> (X * C2) - C1*C2
|
|
|
|
|
|
|
|
define float @fmul_fsub_distribute1(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_distribute1(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc float [[X:%.*]], 3.000000e+00
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd reassoc float [[TMP1]], -6.000000e+00
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t2 = fsub float %x, 2.0
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t2, 3.0
|
2018-03-22 05:28:19 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; (C1 - X) * C2 --> C1*C2 - (X * C2)
|
|
|
|
|
|
|
|
define float @fmul_fsub_distribute2(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_distribute2(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc float [[X:%.*]], 3.000000e+00
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fsub reassoc float 6.000000e+00, [[TMP1]]
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t2 = fsub float 2.0, %x
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc float %t2, 3.0
|
2018-03-22 05:28:19 +08:00
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
2018-04-04 06:19:19 +08:00
|
|
|
; FIXME: This should only need 'reassoc'.
|
2018-03-22 05:28:19 +08:00
|
|
|
; ((X*C1) + C2) * C3 => (X * (C1*C3)) + (C2*C3)
|
|
|
|
|
|
|
|
define float @fmul_fadd_fmul_distribute(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fadd_fmul_distribute(
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[X:%.*]], 3.000000e+01
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd fast float [[TMP1]], 1.000000e+01
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fadd float %t1, 2.0
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fmul_fadd_distribute_extra_use(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fadd_distribute_extra_use(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fmul float [[X:%.*]], 6.000000e+00
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fadd float [[T1]], 2.000000e+00
|
2018-03-26 22:25:43 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul fast float [[T2]], 5.000000e+00
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: call void @use_f32(float [[T2]])
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fadd float %t1, 2.0
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
call void @use_f32(float %t2)
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; (X/C1 + C2) * C3 => X/(C1/C3) + C2*C3
|
|
|
|
; 0x10000000000000 = DBL_MIN
|
|
|
|
; TODO: We don't convert the fast fdiv to fmul because that would be multiplication
|
|
|
|
; by a denormal, but we could do better when we know that denormals are not a problem.
|
|
|
|
|
|
|
|
define double @fmul_fadd_fdiv_distribute2(double %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fadd_fdiv_distribute2(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fdiv reassoc double [[X:%.*]], 0x7FE8000000000000
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd reassoc double [[TMP1]], 0x34000000000000
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: ret double [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv double %x, 3.0
|
|
|
|
%t2 = fadd double %t1, 5.0
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc double %t2, 0x10000000000000
|
2018-03-22 05:28:19 +08:00
|
|
|
ret double %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; 5.0e-1 * DBL_MIN yields denormal, so "(f1*3.0 + 5.0e-1) * DBL_MIN" cannot
|
|
|
|
; be simplified into f1 * (3.0*DBL_MIN) + (5.0e-1*DBL_MIN)
|
|
|
|
|
|
|
|
define double @fmul_fadd_fdiv_distribute3(double %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fadd_fdiv_distribute3(
|
2018-04-04 06:19:19 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fdiv reassoc double [[X:%.*]], 0x7FE8000000000000
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd reassoc double [[TMP1]], 0x34000000000000
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: ret double [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv double %x, 3.0
|
|
|
|
%t2 = fadd double %t1, 5.0
|
2018-04-04 06:19:19 +08:00
|
|
|
%t3 = fmul reassoc double %t2, 0x10000000000000
|
2018-03-22 05:28:19 +08:00
|
|
|
ret double %t3
|
|
|
|
}
|
|
|
|
|
2018-04-04 06:19:19 +08:00
|
|
|
; FIXME: This should only need 'reassoc'.
|
2018-03-22 05:28:19 +08:00
|
|
|
; (C2 - (X*C1)) * C3 => (C2*C3) - (X * (C1*C3))
|
|
|
|
|
|
|
|
define float @fmul_fsub_fmul_distribute(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_fmul_distribute(
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[X:%.*]], 3.000000e+01
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fsub fast float 1.000000e+01, [[TMP1]]
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fsub float 2.0, %t1
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fmul_fsub_fmul_distribute_extra_use(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_fmul_distribute_extra_use(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fmul float [[X:%.*]], 6.000000e+00
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fsub float 2.000000e+00, [[T1]]
|
2018-03-26 22:25:43 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul fast float [[T2]], 5.000000e+00
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: call void @use_f32(float [[T2]])
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fsub float 2.0, %t1
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
call void @use_f32(float %t2)
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
2018-04-04 06:19:19 +08:00
|
|
|
; FIXME: This should only need 'reassoc'.
|
2018-03-22 05:28:19 +08:00
|
|
|
; ((X*C1) - C2) * C3 => (X * (C1*C3)) - C2*C3
|
|
|
|
|
|
|
|
define float @fmul_fsub_fmul_distribute2(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_fmul_distribute2(
|
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul fast float [[X:%.*]], 3.000000e+01
|
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fadd fast float [[TMP1]], -1.000000e+01
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fsub float %t1, 2.0
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fmul_fsub_fmul_distribute2_extra_use(float %x) {
|
|
|
|
; CHECK-LABEL: @fmul_fsub_fmul_distribute2_extra_use(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fmul float [[X:%.*]], 6.000000e+00
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fsub float 2.000000e+00, [[T1]]
|
2018-03-26 22:25:43 +08:00
|
|
|
; CHECK-NEXT: [[T3:%.*]] = fmul fast float [[T2]], 5.000000e+00
|
2018-03-22 05:28:19 +08:00
|
|
|
; CHECK-NEXT: call void @use_f32(float [[T2]])
|
|
|
|
; CHECK-NEXT: ret float [[T3]]
|
|
|
|
;
|
|
|
|
%t1 = fmul float %x, 6.0
|
|
|
|
%t2 = fsub float 2.0, %t1
|
|
|
|
%t3 = fmul fast float %t2, 5.0
|
|
|
|
call void @use_f32(float %t2)
|
|
|
|
ret float %t3
|
|
|
|
}
|
|
|
|
|
|
|
|
; "(X*Y) * X => (X*X) * Y" is disabled if "X*Y" has multiple uses
|
|
|
|
|
|
|
|
define float @common_factor(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @common_factor(
|
|
|
|
; CHECK-NEXT: [[MUL:%.*]] = fmul float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[MUL1:%.*]] = fmul fast float [[MUL]], [[X]]
|
|
|
|
; CHECK-NEXT: [[ADD:%.*]] = fadd float [[MUL1]], [[MUL]]
|
|
|
|
; CHECK-NEXT: ret float [[ADD]]
|
|
|
|
;
|
|
|
|
%mul = fmul float %x, %y
|
|
|
|
%mul1 = fmul fast float %mul, %x
|
|
|
|
%add = fadd float %mul1, %mul
|
|
|
|
ret float %add
|
|
|
|
}
|
|
|
|
|