2018-02-13 03:14:01 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
2011-03-30 23:42:35 +08:00
|
|
|
; RUN: opt -S -instcombine < %s | FileCheck %s
|
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
define float @exact_inverse(float %x) {
|
|
|
|
; CHECK-LABEL: @exact_inverse(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul float [[X:%.*]], 1.250000e-01
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv float %x, 8.0
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
|
|
|
; Min normal float = 1.17549435E-38
|
|
|
|
|
|
|
|
define float @exact_inverse2(float %x) {
|
|
|
|
; CHECK-LABEL: @exact_inverse2(
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul float [[X:%.*]], 0x47D0000000000000
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2011-03-30 23:42:35 +08:00
|
|
|
%div = fdiv float %x, 0x3810000000000000
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
; Max exponent = 1.70141183E+38; don't transform to multiply with denormal.
|
|
|
|
|
|
|
|
define float @exact_inverse_but_denorm(float %x) {
|
|
|
|
; CHECK-LABEL: @exact_inverse_but_denorm(
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv float [[X:%.*]], 0x47E0000000000000
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2011-03-30 23:42:35 +08:00
|
|
|
%div = fdiv float %x, 0x47E0000000000000
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
; Denormal = float 1.40129846E-45; inverse can't be represented.
|
|
|
|
|
|
|
|
define float @not_exact_inverse2(float %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_inverse2(
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv float [[X:%.*]], 0x36A0000000000000
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2011-03-30 23:42:35 +08:00
|
|
|
%div = fdiv float %x, 0x36A0000000000000
|
|
|
|
ret float %div
|
|
|
|
}
|
2014-01-17 05:07:52 +08:00
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
; Fast math allows us to replace this fdiv.
|
|
|
|
|
|
|
|
define float @not_exact_but_allow_recip(float %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_but_allow_recip(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul arcp float [[X:%.*]], 0x3FD5555560000000
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv arcp float %x, 3.0
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
|
|
|
; Fast math allows us to replace this fdiv, but we don't to avoid a denormal.
|
|
|
|
; TODO: What if the function attributes tell us that denormals are flushed?
|
|
|
|
|
|
|
|
define float @not_exact_but_allow_recip_but_denorm(float %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_but_allow_recip_but_denorm(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv arcp float [[X:%.*]], 0x47E0000100000000
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2018-02-15 03:54:51 +08:00
|
|
|
%div = fdiv arcp float %x, 0x47E0000100000000
|
2014-01-17 05:07:52 +08:00
|
|
|
ret float %div
|
|
|
|
}
|
2014-01-20 15:44:53 +08:00
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
define <2 x float> @exact_inverse_splat(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @exact_inverse_splat(
|
2018-02-15 21:55:52 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul <2 x float> [[X:%.*]], <float 2.500000e-01, float 2.500000e-01>
|
2018-02-15 03:54:51 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv <2 x float> %x, <float 4.0, float 4.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-15 21:55:52 +08:00
|
|
|
; Fast math allows us to replace this fdiv.
|
|
|
|
|
|
|
|
define <2 x float> @not_exact_but_allow_recip_splat(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_but_allow_recip_splat(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul arcp <2 x float> [[X:%.*]], <float 0x3FD5555560000000, float 0x3FD5555560000000>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv arcp <2 x float> %x, <float 3.0, float 3.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-15 03:54:51 +08:00
|
|
|
define <2 x float> @exact_inverse_vec(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @exact_inverse_vec(
|
2018-02-21 00:08:15 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul <2 x float> [[X:%.*]], <float 2.500000e-01, float 1.250000e-01>
|
2018-02-15 03:54:51 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv <2 x float> %x, <float 4.0, float 8.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @not_exact_inverse_splat(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_inverse_splat(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv <2 x float> [[X:%.*]], <float 3.000000e+00, float 3.000000e+00>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv <2 x float> %x, <float 3.0, float 3.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @not_exact_inverse_vec(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_inverse_vec(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv <2 x float> [[X:%.*]], <float 4.000000e+00, float 3.000000e+00>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv <2 x float> %x, <float 4.0, float 3.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-21 00:08:15 +08:00
|
|
|
define <2 x float> @not_exact_inverse_vec_arcp(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_inverse_vec_arcp(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fmul arcp <2 x float> [[X:%.*]], <float 2.500000e-01, float 0x3FD5555560000000>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv arcp <2 x float> %x, <float 4.0, float 3.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-27 07:23:02 +08:00
|
|
|
define <2 x float> @not_exact_inverse_vec_arcp_with_undef_elt(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @not_exact_inverse_vec_arcp_with_undef_elt(
|
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv arcp <2 x float> [[X:%.*]], <float undef, float 3.000000e+00>
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%div = fdiv arcp <2 x float> %x, <float undef, float 3.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-16 00:28:15 +08:00
|
|
|
; (X / Y) / Z --> X / (Y * Z)
|
|
|
|
|
|
|
|
define float @div_with_div_numerator(float %x, float %y, float %z) {
|
|
|
|
; CHECK-LABEL: @div_with_div_numerator(
|
2018-02-27 00:02:45 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc arcp float [[Y:%.*]], [[Z:%.*]]
|
|
|
|
; CHECK-NEXT: [[DIV2:%.*]] = fdiv reassoc arcp float [[X:%.*]], [[TMP1]]
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: ret float [[DIV2]]
|
|
|
|
;
|
2018-02-17 01:46:50 +08:00
|
|
|
%div1 = fdiv ninf float %x, %y
|
2018-02-27 00:02:45 +08:00
|
|
|
%div2 = fdiv arcp reassoc float %div1, %z
|
2018-02-16 00:28:15 +08:00
|
|
|
ret float %div2
|
|
|
|
}
|
|
|
|
|
|
|
|
; Z / (X / Y) --> (Z * Y) / X
|
|
|
|
|
|
|
|
define <2 x float> @div_with_div_denominator(<2 x float> %x, <2 x float> %y, <2 x float> %z) {
|
|
|
|
; CHECK-LABEL: @div_with_div_denominator(
|
2018-02-27 00:02:45 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc arcp <2 x float> [[Y:%.*]], [[Z:%.*]]
|
|
|
|
; CHECK-NEXT: [[DIV2:%.*]] = fdiv reassoc arcp <2 x float> [[TMP1]], [[X:%.*]]
|
2018-02-16 00:28:15 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV2]]
|
|
|
|
;
|
2018-02-17 01:46:50 +08:00
|
|
|
%div1 = fdiv nnan <2 x float> %x, %y
|
2018-02-27 00:02:45 +08:00
|
|
|
%div2 = fdiv arcp reassoc <2 x float> %z, %div1
|
2018-02-16 00:28:15 +08:00
|
|
|
ret <2 x float> %div2
|
|
|
|
}
|
|
|
|
|
|
|
|
; Don't create an extra multiply if we can't eliminate the first div.
|
|
|
|
|
|
|
|
declare void @use_f32(float)
|
|
|
|
|
|
|
|
define float @div_with_div_numerator_extra_use(float %x, float %y, float %z) {
|
|
|
|
; CHECK-LABEL: @div_with_div_numerator_extra_use(
|
|
|
|
; CHECK-NEXT: [[DIV1:%.*]] = fdiv float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[DIV2:%.*]] = fdiv fast float [[DIV1]], [[Z:%.*]]
|
|
|
|
; CHECK-NEXT: call void @use_f32(float [[DIV1]])
|
|
|
|
; CHECK-NEXT: ret float [[DIV2]]
|
|
|
|
;
|
|
|
|
%div1 = fdiv float %x, %y
|
2014-01-20 15:44:53 +08:00
|
|
|
%div2 = fdiv fast float %div1, %z
|
2018-02-16 00:28:15 +08:00
|
|
|
call void @use_f32(float %div1)
|
2014-01-20 15:44:53 +08:00
|
|
|
ret float %div2
|
|
|
|
}
|
|
|
|
|
2018-02-16 00:28:15 +08:00
|
|
|
define float @div_with_div_denominator_extra_use(float %x, float %y, float %z) {
|
|
|
|
; CHECK-LABEL: @div_with_div_denominator_extra_use(
|
|
|
|
; CHECK-NEXT: [[DIV1:%.*]] = fdiv float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[DIV2:%.*]] = fdiv fast float [[Z:%.*]], [[DIV1]]
|
|
|
|
; CHECK-NEXT: call void @use_f32(float [[DIV1]])
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: ret float [[DIV2]]
|
|
|
|
;
|
2018-02-16 00:28:15 +08:00
|
|
|
%div1 = fdiv float %x, %y
|
2014-01-20 15:44:53 +08:00
|
|
|
%div2 = fdiv fast float %z, %div1
|
2018-02-16 00:28:15 +08:00
|
|
|
call void @use_f32(float %div1)
|
2014-01-20 15:44:53 +08:00
|
|
|
ret float %div2
|
|
|
|
}
|
2017-01-11 07:08:54 +08:00
|
|
|
|
2018-02-21 06:46:38 +08:00
|
|
|
define float @fneg_fneg(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @fneg_fneg(
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2017-01-11 07:08:54 +08:00
|
|
|
%x.fneg = fsub float -0.0, %x
|
|
|
|
%y.fneg = fsub float -0.0, %y
|
|
|
|
%div = fdiv float %x.fneg, %y.fneg
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
2018-02-13 03:14:01 +08:00
|
|
|
; The test above shows that no FMF are needed, but show that we are not dropping FMF.
|
|
|
|
|
2018-02-21 06:46:38 +08:00
|
|
|
define float @fneg_fneg_fast(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @fneg_fneg_fast(
|
2018-02-13 03:14:01 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv fast float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
2017-01-11 07:08:54 +08:00
|
|
|
%x.fneg = fsub float -0.0, %x
|
|
|
|
%y.fneg = fsub float -0.0, %y
|
|
|
|
%div = fdiv fast float %x.fneg, %y.fneg
|
|
|
|
ret float %div
|
|
|
|
}
|
2018-02-13 03:14:01 +08:00
|
|
|
|
2018-02-21 06:46:38 +08:00
|
|
|
define <2 x float> @fneg_fneg_vec(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @fneg_fneg_vec(
|
2018-02-21 07:29:05 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv <2 x float> [[X:%.*]], [[Y:%.*]]
|
2018-02-21 06:46:38 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%xneg = fsub <2 x float> <float -0.0, float -0.0>, %x
|
|
|
|
%yneg = fsub <2 x float> <float -0.0, float -0.0>, %y
|
|
|
|
%div = fdiv <2 x float> %xneg, %yneg
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-27 07:23:02 +08:00
|
|
|
define <2 x float> @fneg_fneg_vec_undef_elts(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @fneg_fneg_vec_undef_elts(
|
2018-04-05 23:36:55 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv <2 x float> [[X:%.*]], [[Y:%.*]]
|
2018-02-27 07:23:02 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%xneg = fsub <2 x float> <float undef, float -0.0>, %x
|
|
|
|
%yneg = fsub <2 x float> <float -0.0, float undef>, %y
|
|
|
|
%div = fdiv <2 x float> %xneg, %yneg
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-21 07:34:43 +08:00
|
|
|
define float @fneg_dividend_constant_divisor(float %x) {
|
|
|
|
; CHECK-LABEL: @fneg_dividend_constant_divisor(
|
2018-02-21 07:51:16 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv nsz float [[X:%.*]], -3.000000e+00
|
2018-02-21 07:34:43 +08:00
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
|
|
|
%neg = fsub float -0.0, %x
|
2018-02-21 07:51:16 +08:00
|
|
|
%div = fdiv nsz float %neg, 3.0
|
2018-02-21 07:34:43 +08:00
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @fneg_divisor_constant_dividend(float %x) {
|
|
|
|
; CHECK-LABEL: @fneg_divisor_constant_dividend(
|
2018-02-21 08:01:45 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv nnan float 3.000000e+00, [[X:%.*]]
|
2018-02-21 07:34:43 +08:00
|
|
|
; CHECK-NEXT: ret float [[DIV]]
|
|
|
|
;
|
|
|
|
%neg = fsub float -0.0, %x
|
2018-02-21 07:51:16 +08:00
|
|
|
%div = fdiv nnan float -3.0, %neg
|
2018-02-21 07:34:43 +08:00
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @fneg_dividend_constant_divisor_vec(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @fneg_dividend_constant_divisor_vec(
|
2018-02-21 07:51:16 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv ninf <2 x float> [[X:%.*]], <float -3.000000e+00, float 8.000000e+00>
|
2018-02-21 07:34:43 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%neg = fsub <2 x float> <float -0.0, float -0.0>, %x
|
2018-02-21 07:51:16 +08:00
|
|
|
%div = fdiv ninf <2 x float> %neg, <float 3.0, float -8.0>
|
2018-02-21 07:34:43 +08:00
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-27 07:23:02 +08:00
|
|
|
define <2 x float> @fneg_dividend_constant_divisor_vec_undef_elt(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @fneg_dividend_constant_divisor_vec_undef_elt(
|
2018-04-05 23:36:55 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv ninf <2 x float> [[X:%.*]], <float -3.000000e+00, float 8.000000e+00>
|
2018-02-27 07:23:02 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%neg = fsub <2 x float> <float undef, float -0.0>, %x
|
|
|
|
%div = fdiv ninf <2 x float> %neg, <float 3.0, float -8.0>
|
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-21 07:34:43 +08:00
|
|
|
define <2 x float> @fneg_divisor_constant_dividend_vec(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @fneg_divisor_constant_dividend_vec(
|
2018-02-21 08:01:45 +08:00
|
|
|
; CHECK-NEXT: [[DIV:%.*]] = fdiv afn <2 x float> <float 3.000000e+00, float -5.000000e+00>, [[X:%.*]]
|
2018-02-21 07:34:43 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[DIV]]
|
|
|
|
;
|
|
|
|
%neg = fsub <2 x float> <float -0.0, float -0.0>, %x
|
2018-02-21 07:51:16 +08:00
|
|
|
%div = fdiv afn <2 x float> <float -3.0, float 5.0>, %neg
|
2018-02-21 07:34:43 +08:00
|
|
|
ret <2 x float> %div
|
|
|
|
}
|
|
|
|
|
2018-02-13 03:23:39 +08:00
|
|
|
; X / (X * Y) --> 1.0 / Y
|
|
|
|
|
|
|
|
define float @div_factor(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @div_factor(
|
2018-02-13 03:39:21 +08:00
|
|
|
; CHECK-NEXT: [[D:%.*]] = fdiv reassoc nnan float 1.000000e+00, [[Y:%.*]]
|
2018-02-13 03:23:39 +08:00
|
|
|
; CHECK-NEXT: ret float [[D]]
|
|
|
|
;
|
|
|
|
%m = fmul float %x, %y
|
|
|
|
%d = fdiv nnan reassoc float %x, %m
|
|
|
|
ret float %d;
|
|
|
|
}
|
|
|
|
|
|
|
|
; We can't do the transform without 'nnan' because if x is NAN and y is a number, this should return NAN.
|
|
|
|
|
|
|
|
define float @div_factor_too_strict(float %x, float %y) {
|
|
|
|
; CHECK-LABEL: @div_factor_too_strict(
|
|
|
|
; CHECK-NEXT: [[M:%.*]] = fmul float [[X:%.*]], [[Y:%.*]]
|
|
|
|
; CHECK-NEXT: [[D:%.*]] = fdiv reassoc float [[X]], [[M]]
|
|
|
|
; CHECK-NEXT: ret float [[D]]
|
|
|
|
;
|
|
|
|
%m = fmul float %x, %y
|
|
|
|
%d = fdiv reassoc float %x, %m
|
|
|
|
ret float %d
|
|
|
|
}
|
|
|
|
|
|
|
|
; Commute, verify vector types, and show that we are not dropping extra FMF.
|
|
|
|
; X / (Y * X) --> 1.0 / Y
|
|
|
|
|
|
|
|
define <2 x float> @div_factor_commute(<2 x float> %x, <2 x float> %y) {
|
|
|
|
; CHECK-LABEL: @div_factor_commute(
|
2018-02-13 03:39:21 +08:00
|
|
|
; CHECK-NEXT: [[D:%.*]] = fdiv reassoc nnan ninf nsz <2 x float> <float 1.000000e+00, float 1.000000e+00>, [[Y:%.*]]
|
2018-02-13 03:23:39 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[D]]
|
|
|
|
;
|
|
|
|
%m = fmul <2 x float> %y, %x
|
|
|
|
%d = fdiv nnan ninf nsz reassoc <2 x float> %x, %m
|
|
|
|
ret <2 x float> %d
|
|
|
|
}
|
|
|
|
|
2018-02-20 05:13:39 +08:00
|
|
|
; C1/(X*C2) => (C1/C2) / X
|
|
|
|
|
|
|
|
define <2 x float> @div_constant_dividend1(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @div_constant_dividend1(
|
2018-02-20 05:46:52 +08:00
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fdiv reassoc arcp <2 x float> <float 5.000000e+00, float 1.000000e+00>, [[X:%.*]]
|
2018-02-20 05:13:39 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[T2]]
|
|
|
|
;
|
|
|
|
%t1 = fmul <2 x float> %x, <float 3.0e0, float 7.0e0>
|
2018-02-20 05:46:52 +08:00
|
|
|
%t2 = fdiv arcp reassoc <2 x float> <float 15.0e0, float 7.0e0>, %t1
|
|
|
|
ret <2 x float> %t2
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @div_constant_dividend1_arcp_only(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @div_constant_dividend1_arcp_only(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fmul <2 x float> [[X:%.*]], <float 3.000000e+00, float 7.000000e+00>
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fdiv arcp <2 x float> <float 1.500000e+01, float 7.000000e+00>, [[T1]]
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[T2]]
|
|
|
|
;
|
|
|
|
%t1 = fmul <2 x float> %x, <float 3.0e0, float 7.0e0>
|
|
|
|
%t2 = fdiv arcp <2 x float> <float 15.0e0, float 7.0e0>, %t1
|
2018-02-20 05:13:39 +08:00
|
|
|
ret <2 x float> %t2
|
|
|
|
}
|
|
|
|
|
|
|
|
; C1/(X/C2) => (C1*C2) / X
|
|
|
|
|
|
|
|
define <2 x float> @div_constant_dividend2(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @div_constant_dividend2(
|
2018-02-20 05:46:52 +08:00
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fdiv reassoc arcp <2 x float> <float 4.500000e+01, float 4.900000e+01>, [[X:%.*]]
|
|
|
|
; CHECK-NEXT: ret <2 x float> [[T2]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv <2 x float> %x, <float 3.0e0, float -7.0e0>
|
|
|
|
%t2 = fdiv arcp reassoc <2 x float> <float 15.0e0, float -7.0e0>, %t1
|
|
|
|
ret <2 x float> %t2
|
|
|
|
}
|
|
|
|
|
|
|
|
define <2 x float> @div_constant_dividend2_reassoc_only(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @div_constant_dividend2_reassoc_only(
|
|
|
|
; CHECK-NEXT: [[T1:%.*]] = fdiv <2 x float> [[X:%.*]], <float 3.000000e+00, float -7.000000e+00>
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fdiv reassoc <2 x float> <float 1.500000e+01, float -7.000000e+00>, [[T1]]
|
2018-02-20 05:13:39 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[T2]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv <2 x float> %x, <float 3.0e0, float -7.0e0>
|
2018-02-20 05:46:52 +08:00
|
|
|
%t2 = fdiv reassoc <2 x float> <float 15.0e0, float -7.0e0>, %t1
|
2018-02-20 05:13:39 +08:00
|
|
|
ret <2 x float> %t2
|
|
|
|
}
|
|
|
|
|
|
|
|
; C1/(C2/X) => (C1/C2) * X
|
|
|
|
; This tests the combination of 2 folds: (C1 * X) / C2 --> (C1 / C2) * X
|
|
|
|
|
|
|
|
define <2 x float> @div_constant_dividend3(<2 x float> %x) {
|
|
|
|
; CHECK-LABEL: @div_constant_dividend3(
|
2018-02-27 00:02:45 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = fmul reassoc arcp <2 x float> [[X:%.*]], <float 1.500000e+01, float -7.000000e+00>
|
|
|
|
; CHECK-NEXT: [[T2:%.*]] = fmul reassoc arcp <2 x float> [[TMP1]], <float 0x3FD5555560000000, float 0x3FC24924A0000000>
|
2018-02-20 05:13:39 +08:00
|
|
|
; CHECK-NEXT: ret <2 x float> [[T2]]
|
|
|
|
;
|
|
|
|
%t1 = fdiv <2 x float> <float 3.0e0, float 7.0e0>, %x
|
2018-02-20 05:46:52 +08:00
|
|
|
%t2 = fdiv arcp reassoc <2 x float> <float 15.0e0, float -7.0e0>, %t1
|
2018-02-20 05:13:39 +08:00
|
|
|
ret <2 x float> %t2
|
|
|
|
}
|
|
|
|
|