2016-11-21 23:28:21 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64 -mattr=+sse2 | FileCheck %s --check-prefix=CHECK --check-prefix=SSE
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64 -mattr=+avx | FileCheck %s --check-prefix=CHECK --check-prefix=AVX --check-prefix=AVX1
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64 -mattr=+avx512f | FileCheck %s --check-prefix=CHECK --check-prefix=AVX --check-prefix=AVX512
|
2016-10-05 04:46:43 +08:00
|
|
|
|
|
|
|
declare double @__sqrt_finite(double)
|
|
|
|
declare float @__sqrtf_finite(float)
|
|
|
|
declare x86_fp80 @__sqrtl_finite(x86_fp80)
|
|
|
|
declare float @llvm.sqrt.f32(float)
|
|
|
|
declare <4 x float> @llvm.sqrt.v4f32(<4 x float>)
|
|
|
|
declare <8 x float> @llvm.sqrt.v8f32(<8 x float>)
|
2018-05-07 01:45:40 +08:00
|
|
|
declare <16 x float> @llvm.sqrt.v16f32(<16 x float>)
|
2016-10-05 04:46:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
define double @finite_f64_no_estimate(double %d) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: finite_f64_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtsd %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-LABEL: finite_f64_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; AVX: # %bb.0:
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-NEXT: vsqrtsd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call double @__sqrt_finite(double %d) #2
|
2013-05-27 23:44:35 +08:00
|
|
|
ret double %call
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
; No estimates for doubles.
|
|
|
|
|
|
|
|
define double @finite_f64_estimate(double %d) #1 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: finite_f64_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtsd %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-LABEL: finite_f64_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; AVX: # %bb.0:
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-NEXT: vsqrtsd %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call double @__sqrt_finite(double %d) #2
|
|
|
|
ret double %call
|
|
|
|
}
|
2013-05-27 23:44:35 +08:00
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define float @finite_f32_no_estimate(float %f) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: finite_f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtss %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-LABEL: finite_f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; AVX: # %bb.0:
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-NEXT: vsqrtss %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call float @__sqrtf_finite(float %f) #2
|
2013-05-27 23:44:35 +08:00
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
2019-11-07 02:26:43 +08:00
|
|
|
define float @finite_f32_estimate_ieee(float %f) #1 {
|
|
|
|
; SSE-LABEL: finite_f32_estimate_ieee:
|
|
|
|
; SSE: # %bb.0:
|
2020-04-01 16:17:36 +08:00
|
|
|
; SSE-NEXT: sqrtss %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX-LABEL: finite_f32_estimate_ieee:
|
|
|
|
; AVX: # %bb.0:
|
|
|
|
; AVX-NEXT: vsqrtss %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call float @__sqrtf_finite(float %f) #2
|
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @finite_f32_estimate_ieee_ninf(float %f) #1 {
|
|
|
|
; SSE-LABEL: finite_f32_estimate_ieee_ninf:
|
|
|
|
; SSE: # %bb.0:
|
2019-11-07 02:26:43 +08:00
|
|
|
; SSE-NEXT: rsqrtss %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movaps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: movss {{.*#+}} xmm3 = mem[0],zero,zero,zero
|
|
|
|
; SSE-NEXT: mulss %xmm2, %xmm3
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: addss {{.*}}(%rip), %xmm2
|
|
|
|
; SSE-NEXT: andps {{.*}}(%rip), %xmm0
|
|
|
|
; SSE-NEXT: mulss %xmm3, %xmm2
|
|
|
|
; SSE-NEXT: cmpltss {{.*}}(%rip), %xmm0
|
|
|
|
; SSE-NEXT: andnps %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX1-LABEL: finite_f32_estimate_ieee_ninf:
|
2019-11-07 02:26:43 +08:00
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vaddss {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX1-NEXT: vandps {{.*}}(%rip), %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vcmpltss {{.*}}(%rip), %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vandnps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX512-LABEL: finite_f32_estimate_ieee_ninf:
|
2019-11-07 02:26:43 +08:00
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX512-NEXT: vfmadd213ss {{.*#+}} xmm1 = (xmm2 * xmm1) + mem
|
|
|
|
; AVX512-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm2 = [NaN,NaN,NaN,NaN]
|
|
|
|
; AVX512-NEXT: vandps %xmm2, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: vcmpltss {{.*}}(%rip), %xmm0, %k1
|
|
|
|
; AVX512-NEXT: vxorps %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: vmovss %xmm0, %xmm1, %xmm1 {%k1}
|
|
|
|
; AVX512-NEXT: vmovaps %xmm1, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2020-04-01 16:17:36 +08:00
|
|
|
%call = tail call ninf float @__sqrtf_finite(float %f) #2
|
2019-11-07 02:26:43 +08:00
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @finite_f32_estimate_daz(float %f) #4 {
|
|
|
|
; SSE-LABEL: finite_f32_estimate_daz:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2020-04-01 16:17:36 +08:00
|
|
|
; SSE-NEXT: sqrtss %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX-LABEL: finite_f32_estimate_daz:
|
|
|
|
; AVX: # %bb.0:
|
|
|
|
; AVX-NEXT: vsqrtss %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call float @__sqrtf_finite(float %f) #2
|
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @finite_f32_estimate_daz_ninf(float %f) #4 {
|
|
|
|
; SSE-LABEL: finite_f32_estimate_daz_ninf:
|
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: rsqrtss %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movaps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: movss {{.*#+}} xmm3 = mem[0],zero,zero,zero
|
|
|
|
; SSE-NEXT: mulss %xmm2, %xmm3
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: addss {{.*}}(%rip), %xmm2
|
|
|
|
; SSE-NEXT: mulss %xmm3, %xmm2
|
|
|
|
; SSE-NEXT: xorps %xmm1, %xmm1
|
|
|
|
; SSE-NEXT: cmpeqss %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: andnps %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX1-LABEL: finite_f32_estimate_daz_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vaddss {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vxorps %xmm2, %xmm2, %xmm2
|
|
|
|
; AVX1-NEXT: vcmpeqss %xmm2, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vandnps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX512-LABEL: finite_f32_estimate_daz_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX512-NEXT: vfmadd213ss {{.*#+}} xmm1 = (xmm2 * xmm1) + mem
|
|
|
|
; AVX512-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX512-NEXT: vxorps %xmm2, %xmm2, %xmm2
|
|
|
|
; AVX512-NEXT: vcmpeqss %xmm2, %xmm0, %k1
|
2019-09-27 06:56:06 +08:00
|
|
|
; AVX512-NEXT: vmovss %xmm2, %xmm1, %xmm1 {%k1}
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vmovaps %xmm1, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2020-04-01 16:17:36 +08:00
|
|
|
%call = tail call ninf float @__sqrtf_finite(float %f) #2
|
2016-10-05 04:46:43 +08:00
|
|
|
ret float %call
|
|
|
|
}
|
2013-05-27 23:44:35 +08:00
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define x86_fp80 @finite_f80_no_estimate(x86_fp80 %ld) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; CHECK-LABEL: finite_f80_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; CHECK: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%rsp)
|
|
|
|
; CHECK-NEXT: fsqrt
|
|
|
|
; CHECK-NEXT: retq
|
2016-10-05 04:46:43 +08:00
|
|
|
%call = tail call x86_fp80 @__sqrtl_finite(x86_fp80 %ld) #2
|
2013-05-27 23:44:35 +08:00
|
|
|
ret x86_fp80 %call
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
; Don't die on the impossible.
|
2014-10-25 01:59:18 +08:00
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define x86_fp80 @finite_f80_estimate_but_no(x86_fp80 %ld) #1 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; CHECK-LABEL: finite_f80_estimate_but_no:
|
2017-12-05 01:18:51 +08:00
|
|
|
; CHECK: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%rsp)
|
|
|
|
; CHECK-NEXT: fsqrt
|
|
|
|
; CHECK-NEXT: retq
|
2016-10-05 04:46:43 +08:00
|
|
|
%call = tail call x86_fp80 @__sqrtl_finite(x86_fp80 %ld) #2
|
|
|
|
ret x86_fp80 %call
|
|
|
|
}
|
2014-10-25 01:59:18 +08:00
|
|
|
|
2018-01-20 06:47:49 +08:00
|
|
|
; PR34994 - https://bugs.llvm.org/show_bug.cgi?id=34994
|
|
|
|
|
|
|
|
define float @sqrtf_check_denorms(float %x) #3 {
|
|
|
|
; SSE-LABEL: sqrtf_check_denorms:
|
|
|
|
; SSE: # %bb.0:
|
2020-04-01 16:17:36 +08:00
|
|
|
; SSE-NEXT: sqrtss %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX-LABEL: sqrtf_check_denorms:
|
|
|
|
; AVX: # %bb.0:
|
|
|
|
; AVX-NEXT: vsqrtss %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call float @__sqrtf_finite(float %x) #2
|
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define float @sqrtf_check_denorms_ninf(float %x) #3 {
|
|
|
|
; SSE-LABEL: sqrtf_check_denorms_ninf:
|
|
|
|
; SSE: # %bb.0:
|
2018-01-20 06:47:49 +08:00
|
|
|
; SSE-NEXT: rsqrtss %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movaps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: movss {{.*#+}} xmm3 = mem[0],zero,zero,zero
|
|
|
|
; SSE-NEXT: mulss %xmm2, %xmm3
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: addss {{.*}}(%rip), %xmm2
|
2018-02-02 00:57:18 +08:00
|
|
|
; SSE-NEXT: andps {{.*}}(%rip), %xmm0
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulss %xmm3, %xmm2
|
2018-02-02 00:57:18 +08:00
|
|
|
; SSE-NEXT: cmpltss {{.*}}(%rip), %xmm0
|
2018-01-20 06:47:49 +08:00
|
|
|
; SSE-NEXT: andnps %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX1-LABEL: sqrtf_check_denorms_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vaddss {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX1-NEXT: vandps {{.*}}(%rip), %xmm0, %xmm0
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vcmpltss {{.*}}(%rip), %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vandnps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX512-LABEL: sqrtf_check_denorms_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX512-NEXT: vfmadd213ss {{.*#+}} xmm1 = (xmm2 * xmm1) + mem
|
|
|
|
; AVX512-NEXT: vmulss {{.*}}(%rip), %xmm2, %xmm2
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm2 = [NaN,NaN,NaN,NaN]
|
|
|
|
; AVX512-NEXT: vandps %xmm2, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: vcmpltss {{.*}}(%rip), %xmm0, %k1
|
|
|
|
; AVX512-NEXT: vxorps %xmm0, %xmm0, %xmm0
|
2019-09-27 06:56:06 +08:00
|
|
|
; AVX512-NEXT: vmovss %xmm0, %xmm1, %xmm1 {%k1}
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vmovaps %xmm1, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2020-04-01 16:17:36 +08:00
|
|
|
%call = tail call ninf float @__sqrtf_finite(float %x) #2
|
2018-01-20 06:47:49 +08:00
|
|
|
ret float %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define <4 x float> @sqrt_v4f32_check_denorms(<4 x float> %x) #3 {
|
|
|
|
; SSE-LABEL: sqrt_v4f32_check_denorms:
|
|
|
|
; SSE: # %bb.0:
|
2020-04-01 16:17:36 +08:00
|
|
|
; SSE-NEXT: sqrtps %xmm0, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX-LABEL: sqrt_v4f32_check_denorms:
|
|
|
|
; AVX: # %bb.0:
|
|
|
|
; AVX-NEXT: vsqrtps %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
|
|
|
%call = tail call <4 x float> @llvm.sqrt.v4f32(<4 x float> %x) #2
|
|
|
|
ret <4 x float> %call
|
|
|
|
}
|
|
|
|
|
|
|
|
define <4 x float> @sqrt_v4f32_check_denorms_ninf(<4 x float> %x) #3 {
|
|
|
|
; SSE-LABEL: sqrt_v4f32_check_denorms_ninf:
|
|
|
|
; SSE: # %bb.0:
|
2018-02-02 00:57:18 +08:00
|
|
|
; SSE-NEXT: rsqrtps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: movaps %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm1
|
2018-10-29 12:52:04 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm3 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
2018-02-02 00:57:18 +08:00
|
|
|
; SSE-NEXT: mulps %xmm1, %xmm3
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: addps {{.*}}(%rip), %xmm1
|
|
|
|
; SSE-NEXT: andps {{.*}}(%rip), %xmm0
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulps %xmm3, %xmm1
|
2018-10-02 17:08:51 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm2 = [1.17549435E-38,1.17549435E-38,1.17549435E-38,1.17549435E-38]
|
2018-02-02 00:57:18 +08:00
|
|
|
; SSE-NEXT: cmpleps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: andps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: movaps %xmm1, %xmm0
|
2018-01-20 06:47:49 +08:00
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX1-LABEL: sqrt_v4f32_check_denorms_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtps %xmm0, %xmm1
|
|
|
|
; AVX1-NEXT: vmulps %xmm1, %xmm0, %xmm2
|
|
|
|
; AVX1-NEXT: vmulps {{.*}}(%rip), %xmm2, %xmm3
|
|
|
|
; AVX1-NEXT: vmulps %xmm1, %xmm2, %xmm1
|
|
|
|
; AVX1-NEXT: vaddps {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vandps {{.*}}(%rip), %xmm0, %xmm0
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulps %xmm1, %xmm3, %xmm1
|
2018-10-02 17:08:51 +08:00
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} xmm2 = [1.17549435E-38,1.17549435E-38,1.17549435E-38,1.17549435E-38]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vcmpleps %xmm0, %xmm2, %xmm0
|
|
|
|
; AVX1-NEXT: vandps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
2020-04-01 16:17:36 +08:00
|
|
|
; AVX512-LABEL: sqrt_v4f32_check_denorms_ninf:
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtps %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulps %xmm1, %xmm0, %xmm2
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm3 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vfmadd231ps {{.*#+}} xmm3 = (xmm2 * xmm1) + xmm3
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm1 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vmulps %xmm1, %xmm2, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX512-NEXT: vmulps %xmm3, %xmm1, %xmm1
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm2 = [NaN,NaN,NaN,NaN]
|
|
|
|
; AVX512-NEXT: vandps %xmm2, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm2 = [1.17549435E-38,1.17549435E-38,1.17549435E-38,1.17549435E-38]
|
|
|
|
; AVX512-NEXT: vcmpleps %xmm0, %xmm2, %xmm0
|
|
|
|
; AVX512-NEXT: vandps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2020-04-01 16:17:36 +08:00
|
|
|
%call = tail call ninf <4 x float> @llvm.sqrt.v4f32(<4 x float> %x) #2
|
2018-01-20 06:47:49 +08:00
|
|
|
ret <4 x float> %call
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define float @f32_no_estimate(float %x) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtss %xmm0, %xmm1
|
|
|
|
; SSE-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero
|
|
|
|
; SSE-NEXT: divss %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-LABEL: f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; AVX: # %bb.0:
|
2016-10-05 04:46:43 +08:00
|
|
|
; AVX-NEXT: vsqrtss %xmm0, %xmm0, %xmm0
|
|
|
|
; AVX-NEXT: vmovss {{.*#+}} xmm1 = mem[0],zero,zero,zero
|
|
|
|
; AVX-NEXT: vdivss %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX-NEXT: retq
|
2014-10-25 01:02:16 +08:00
|
|
|
%sqrt = tail call float @llvm.sqrt.f32(float %x)
|
|
|
|
%div = fdiv fast float 1.0, %sqrt
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define float @f32_estimate(float %x) #1 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: f32_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: rsqrtss %xmm0, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: addss {{.*}}(%rip), %xmm0
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: mulss {{.*}}(%rip), %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulss %xmm1, %xmm0
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-LABEL: f32_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vmulss %xmm1, %xmm0, %xmm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vaddss {{.*}}(%rip), %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vmulss {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vmulss %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: f32_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtss %xmm0, %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulss %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX512-NEXT: vfmadd213ss {{.*#+}} xmm0 = (xmm1 * xmm0) + mem
|
|
|
|
; AVX512-NEXT: vmulss {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX512-NEXT: vmulss %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2016-10-05 04:46:43 +08:00
|
|
|
%sqrt = tail call float @llvm.sqrt.f32(float %x)
|
|
|
|
%div = fdiv fast float 1.0, %sqrt
|
|
|
|
ret float %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <4 x float> @v4f32_no_estimate(<4 x float> %x) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: v4f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtps %xmm0, %xmm1
|
2018-10-29 12:52:04 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm0 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: divps %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-LABEL: v4f32_no_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vsqrtps %xmm0, %xmm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} xmm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vdivps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v4f32_no_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vsqrtps %xmm0, %xmm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vdivps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX512-NEXT: retq
|
2014-10-25 01:02:16 +08:00
|
|
|
%sqrt = tail call <4 x float> @llvm.sqrt.v4f32(<4 x float> %x)
|
|
|
|
%div = fdiv fast <4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <4 x float> %div
|
|
|
|
}
|
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
define <4 x float> @v4f32_estimate(<4 x float> %x) #1 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: v4f32_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: rsqrtps %xmm0, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulps %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: mulps %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: addps {{.*}}(%rip), %xmm0
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: mulps {{.*}}(%rip), %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulps %xmm1, %xmm0
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-LABEL: v4f32_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtps %xmm0, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulps %xmm1, %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vmulps %xmm1, %xmm0, %xmm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vaddps {{.*}}(%rip), %xmm0, %xmm0
|
|
|
|
; AVX1-NEXT: vmulps {{.*}}(%rip), %xmm1, %xmm1
|
|
|
|
; AVX1-NEXT: vmulps %xmm0, %xmm1, %xmm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v4f32_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtps %xmm0, %xmm1
|
|
|
|
; AVX512-NEXT: vmulps %xmm1, %xmm0, %xmm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm2 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
2020-02-28 12:53:17 +08:00
|
|
|
; AVX512-NEXT: vfmadd231ps {{.*#+}} xmm2 = (xmm1 * xmm0) + xmm2
|
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} xmm0 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vmulps %xmm0, %xmm1, %xmm0
|
2020-02-28 12:53:17 +08:00
|
|
|
; AVX512-NEXT: vmulps %xmm2, %xmm0, %xmm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: retq
|
2016-10-05 04:46:43 +08:00
|
|
|
%sqrt = tail call <4 x float> @llvm.sqrt.v4f32(<4 x float> %x)
|
|
|
|
%div = fdiv fast <4 x float> <float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <4 x float> %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x float> @v8f32_no_estimate(<8 x float> %x) #0 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: v8f32_no_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: sqrtps %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: sqrtps %xmm0, %xmm3
|
2018-10-29 12:52:04 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: movaps %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: divps %xmm3, %xmm0
|
|
|
|
; SSE-NEXT: divps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-LABEL: v8f32_no_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vsqrtps %ymm0, %ymm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} ymm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vdivps %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v8f32_no_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vsqrtps %ymm0, %ymm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} ymm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vdivps %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX512-NEXT: retq
|
2016-10-05 04:46:43 +08:00
|
|
|
%sqrt = tail call <8 x float> @llvm.sqrt.v8f32(<8 x float> %x)
|
|
|
|
%div = fdiv fast <8 x float> <float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <8 x float> %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x float> @v8f32_estimate(<8 x float> %x) #1 {
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-LABEL: v8f32_estimate:
|
2017-12-05 01:18:51 +08:00
|
|
|
; SSE: # %bb.0:
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: rsqrtps %xmm0, %xmm2
|
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm3 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm0
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: mulps %xmm3, %xmm2
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm4 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
|
|
|
; SSE-NEXT: addps %xmm4, %xmm0
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm0
|
|
|
|
; SSE-NEXT: rsqrtps %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm3
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: mulps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: addps %xmm4, %xmm1
|
|
|
|
; SSE-NEXT: mulps %xmm3, %xmm1
|
2016-11-21 23:28:21 +08:00
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-LABEL: v8f32_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtps %ymm0, %ymm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulps %ymm1, %ymm0, %ymm0
|
|
|
|
; AVX1-NEXT: vmulps %ymm1, %ymm0, %ymm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vaddps {{.*}}(%rip), %ymm0, %ymm0
|
|
|
|
; AVX1-NEXT: vmulps {{.*}}(%rip), %ymm1, %ymm1
|
|
|
|
; AVX1-NEXT: vmulps %ymm0, %ymm1, %ymm0
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v8f32_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vrsqrtps %ymm0, %ymm1
|
|
|
|
; AVX512-NEXT: vmulps %ymm1, %ymm0, %ymm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} ymm2 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
2020-02-28 12:53:17 +08:00
|
|
|
; AVX512-NEXT: vfmadd231ps {{.*#+}} ymm2 = (ymm1 * ymm0) + ymm2
|
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} ymm0 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vmulps %ymm0, %ymm1, %ymm0
|
2020-02-28 12:53:17 +08:00
|
|
|
; AVX512-NEXT: vmulps %ymm2, %ymm0, %ymm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: retq
|
2014-10-25 01:59:18 +08:00
|
|
|
%sqrt = tail call <8 x float> @llvm.sqrt.v8f32(<8 x float> %x)
|
|
|
|
%div = fdiv fast <8 x float> <float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <8 x float> %div
|
|
|
|
}
|
2014-10-25 01:02:16 +08:00
|
|
|
|
2018-05-07 01:45:40 +08:00
|
|
|
define <16 x float> @v16f32_no_estimate(<16 x float> %x) #0 {
|
|
|
|
; SSE-LABEL: v16f32_no_estimate:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: sqrtps %xmm3, %xmm4
|
|
|
|
; SSE-NEXT: sqrtps %xmm2, %xmm5
|
|
|
|
; SSE-NEXT: sqrtps %xmm1, %xmm2
|
|
|
|
; SSE-NEXT: sqrtps %xmm0, %xmm1
|
2018-10-29 12:52:04 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm3 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; SSE-NEXT: movaps %xmm3, %xmm0
|
|
|
|
; SSE-NEXT: divps %xmm1, %xmm0
|
|
|
|
; SSE-NEXT: movaps %xmm3, %xmm1
|
|
|
|
; SSE-NEXT: divps %xmm2, %xmm1
|
|
|
|
; SSE-NEXT: movaps %xmm3, %xmm2
|
|
|
|
; SSE-NEXT: divps %xmm5, %xmm2
|
|
|
|
; SSE-NEXT: divps %xmm4, %xmm3
|
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-LABEL: v16f32_no_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vsqrtps %ymm1, %ymm1
|
|
|
|
; AVX1-NEXT: vsqrtps %ymm0, %ymm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} ymm2 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vdivps %ymm0, %ymm2, %ymm0
|
|
|
|
; AVX1-NEXT: vdivps %ymm1, %ymm2, %ymm1
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v16f32_no_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
|
|
|
; AVX512-NEXT: vsqrtps %zmm0, %zmm0
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX512-NEXT: vbroadcastss {{.*#+}} zmm1 = [1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0,1.0E+0]
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: vdivps %zmm0, %zmm1, %zmm0
|
|
|
|
; AVX512-NEXT: retq
|
|
|
|
%sqrt = tail call <16 x float> @llvm.sqrt.v16f32(<16 x float> %x)
|
|
|
|
%div = fdiv fast <16 x float> <float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <16 x float> %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define <16 x float> @v16f32_estimate(<16 x float> %x) #1 {
|
|
|
|
; SSE-LABEL: v16f32_estimate:
|
|
|
|
; SSE: # %bb.0:
|
|
|
|
; SSE-NEXT: rsqrtps %xmm0, %xmm5
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm4 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
2018-05-07 01:45:40 +08:00
|
|
|
; SSE-NEXT: mulps %xmm5, %xmm0
|
|
|
|
; SSE-NEXT: mulps %xmm5, %xmm0
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: movaps %xmm5, %xmm6
|
|
|
|
; SSE-NEXT: mulps %xmm4, %xmm6
|
|
|
|
; SSE-NEXT: movaps {{.*#+}} xmm5 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
|
|
|
; SSE-NEXT: addps %xmm5, %xmm0
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm0
|
|
|
|
; SSE-NEXT: rsqrtps %xmm1, %xmm6
|
2018-05-07 01:45:40 +08:00
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm1
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm1
|
|
|
|
; SSE-NEXT: mulps %xmm4, %xmm6
|
|
|
|
; SSE-NEXT: addps %xmm5, %xmm1
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm1
|
|
|
|
; SSE-NEXT: rsqrtps %xmm2, %xmm6
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: mulps %xmm4, %xmm6
|
|
|
|
; SSE-NEXT: addps %xmm5, %xmm2
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm2
|
|
|
|
; SSE-NEXT: rsqrtps %xmm3, %xmm6
|
2018-05-07 01:45:40 +08:00
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm4
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm3
|
|
|
|
; SSE-NEXT: mulps %xmm6, %xmm3
|
|
|
|
; SSE-NEXT: addps %xmm5, %xmm3
|
|
|
|
; SSE-NEXT: mulps %xmm4, %xmm3
|
2018-05-07 01:45:40 +08:00
|
|
|
; SSE-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX1-LABEL: v16f32_estimate:
|
|
|
|
; AVX1: # %bb.0:
|
|
|
|
; AVX1-NEXT: vrsqrtps %ymm0, %ymm2
|
2018-10-29 12:52:04 +08:00
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} ymm3 = [-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1,-5.0E-1]
|
[x86] use instruction-level fast-math-flags to drive MachineCombiner
The code changes here are hopefully straightforward:
1. Use MachineInstruction flags to decide if FP ops can be reassociated
(use both "reassoc" and "nsz" to be consistent with IR transforms;
we probably don't need "nsz", but that's a safer interpretation of
the FMF).
2. Check that both nodes allow reassociation to change instructions.
This is a stronger requirement than we've usually implemented in
IR/DAG, but this is needed to solve the motivating bug (see below),
and it seems unlikely to impede optimization at this late stage.
3. Intersect/propagate MachineIR flags to enable further reassociation
in MachineCombiner.
We managed to make MachineCombiner flexible enough that no changes are
needed to that pass itself. So this patch should only affect x86
(assuming no other targets have implemented the hooks using MachineIR
flags yet).
The motivating example in PR43609 is another case of fast-math transforms
interacting badly with special FP ops created during lowering:
https://bugs.llvm.org/show_bug.cgi?id=43609
The special fadd ops used for converting int to FP assume that they will
not be altered, so those are created without FMF.
However, the MachineCombiner pass was being enabled for FP ops using the
global/function-level TargetOption for "UnsafeFPMath". We managed to run
instruction/node-level FMF all the way down to MachineIR sometime in the
last 1-2 years though, so we can do better now.
The test diffs require some explanation:
1. llvm/test/CodeGen/X86/fmf-flags.ll - no target option for unsafe math was
specified here, so MachineCombiner kicks in where it did not previously;
to make it behave consistently, we need to specify a CPU schedule model,
so use the default model, and there are no code diffs.
2. llvm/test/CodeGen/X86/machine-combiner.ll - replace the target option for
unsafe math with the equivalent IR-level flags, and there are no code diffs;
we can't remove the NaN/nsz options because those are still used to drive
x86 fmin/fmax codegen (special SDAG opcodes).
3. llvm/test/CodeGen/X86/pow.ll - similar to #1
4. llvm/test/CodeGen/X86/sqrt-fastmath.ll - similar to #1, but MachineCombiner
does some reassociation of the estimate sequence ops; presumably these are
perf wins based on latency/throughput (and we get some reduction of move
instructions too); I'm not sure how it affects numerical accuracy, but the
test reflects reality better now because we would expect MachineCombiner to
be enabled if the IR was generated via something like "-ffast-math" with clang.
5. llvm/test/CodeGen/X86/vec_int_to_fp.ll - this is the test added to model PR43609;
the fadds are not reassociated now, so we should get the expected results.
6. llvm/test/CodeGen/X86/vector-reduce-fadd-fast.ll - similar to #1
7. llvm/test/CodeGen/X86/vector-reduce-fmul-fast.ll - similar to #1
Differential Revision: https://reviews.llvm.org/D74851
2020-02-28 04:19:37 +08:00
|
|
|
; AVX1-NEXT: vmulps %ymm3, %ymm2, %ymm4
|
|
|
|
; AVX1-NEXT: vmulps %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-NEXT: vmulps %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-NEXT: vmovaps {{.*#+}} ymm2 = [-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0,-3.0E+0]
|
|
|
|
; AVX1-NEXT: vaddps %ymm2, %ymm0, %ymm0
|
|
|
|
; AVX1-NEXT: vmulps %ymm0, %ymm4, %ymm0
|
|
|
|
; AVX1-NEXT: vrsqrtps %ymm1, %ymm4
|
|
|
|
; AVX1-NEXT: vmulps %ymm3, %ymm4, %ymm3
|
|
|
|
; AVX1-NEXT: vmulps %ymm4, %ymm1, %ymm1
|
|
|
|
; AVX1-NEXT: vmulps %ymm4, %ymm1, %ymm1
|
|
|
|
; AVX1-NEXT: vaddps %ymm2, %ymm1, %ymm1
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX1-NEXT: vmulps %ymm1, %ymm3, %ymm1
|
|
|
|
; AVX1-NEXT: retq
|
|
|
|
;
|
|
|
|
; AVX512-LABEL: v16f32_estimate:
|
|
|
|
; AVX512: # %bb.0:
|
2018-05-07 01:48:21 +08:00
|
|
|
; AVX512-NEXT: vrsqrt14ps %zmm0, %zmm1
|
|
|
|
; AVX512-NEXT: vmulps %zmm1, %zmm0, %zmm0
|
|
|
|
; AVX512-NEXT: vfmadd213ps {{.*#+}} zmm0 = (zmm1 * zmm0) + mem
|
|
|
|
; AVX512-NEXT: vmulps {{.*}}(%rip){1to16}, %zmm1, %zmm1
|
|
|
|
; AVX512-NEXT: vmulps %zmm0, %zmm1, %zmm0
|
2018-05-07 01:45:40 +08:00
|
|
|
; AVX512-NEXT: retq
|
|
|
|
%sqrt = tail call <16 x float> @llvm.sqrt.v16f32(<16 x float> %x)
|
|
|
|
%div = fdiv fast <16 x float> <float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0, float 1.0>, %sqrt
|
|
|
|
ret <16 x float> %div
|
|
|
|
}
|
|
|
|
|
2014-10-25 01:02:16 +08:00
|
|
|
|
2016-10-05 04:46:43 +08:00
|
|
|
attributes #0 = { "unsafe-fp-math"="true" "reciprocal-estimates"="!sqrtf,!vec-sqrtf,!divf,!vec-divf" }
|
|
|
|
attributes #1 = { "unsafe-fp-math"="true" "reciprocal-estimates"="sqrt,vec-sqrt" }
|
|
|
|
attributes #2 = { nounwind readnone }
|
2018-01-20 06:47:49 +08:00
|
|
|
attributes #3 = { "unsafe-fp-math"="true" "reciprocal-estimates"="sqrt,vec-sqrt" "denormal-fp-math"="ieee" }
|
2019-11-07 02:26:43 +08:00
|
|
|
attributes #4 = { "unsafe-fp-math"="true" "reciprocal-estimates"="sqrt,vec-sqrt" "denormal-fp-math"="ieee,preserve-sign" }
|