llvm-project/llvm/test/CodeGen/X86/change-unsafe-fp-math.ll
paperchalice 613222ec33
[DAGCombiner] Remove UnsafeFPMath usage in visitFSUBForFMACombine etc. (#145637)
Remove `UnsafeFPMath` in `visitFMULForFMADistributiveCombine`,
`visitFSUBForFMACombine` and `visitFDIV`.
All affected tests are fixed by add fast math flags manually.
Propagate fast math flags when lowering fdiv in NVPTX backend, so it can
produce optimized dag when `unsafe-fp-math` is absent.
2025-06-30 08:41:23 +08:00

71 lines
2.0 KiB
LLVM

; Check that we can enable/disable UnsafeFPMath via function attributes. An
; attribute on one function should not magically apply to the next one.
; RUN: llc < %s -mtriple=x86_64-unknown-unknown \
; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=SAFE
; RUN: llc < %s -mtriple=x86_64-unknown-unknown \
; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=UNSAFE
; The div in these functions should be converted to a mul when unsafe-fp-math
; is enabled.
; CHECK-LABEL: unsafe_fp_math_default0:
define double @unsafe_fp_math_default0(double %x) {
; UNSAFE: mulsd
%div = fdiv arcp double %x, 3.0
ret double %div
}
; CHECK-LABEL: safe_fp_math_default0:
define double @safe_fp_math_default0(double %x) {
; SAFE: divsd
%div = fdiv double %x, 3.0
ret double %div
}
; CHECK-LABEL: unsafe_fp_math_off:
define double @unsafe_fp_math_off(double %x) {
; SAFE: divsd
; UNSAFE: divsd
%div = fdiv double %x, 3.0
ret double %div
}
; CHECK-LABEL: unsafe_fp_math_default1:
define double @unsafe_fp_math_default1(double %x) {
; With unsafe math enabled, can change this div to a mul.
; UNSAFE: mulsd
%div = fdiv arcp double %x, 3.0
ret double %div
}
; CHECK-LABEL: safe_fp_math_default1:
define double @safe_fp_math_default1(double %x) {
; With unsafe math enabled, can change this div to a mul.
; SAFE: divsd
%div = fdiv double %x, 3.0
ret double %div
}
; CHECK-LABEL: unsafe_fp_math_on:
define double @unsafe_fp_math_on(double %x) {
; SAFE: mulsd
; UNSAFE: mulsd
%div = fdiv arcp double %x, 3.0
ret double %div
}
; CHECK-LABEL: unsafe_fp_math_default2:
define double @unsafe_fp_math_default2(double %x) {
; With unsafe math enabled, can change this div to a mul.
; UNSAFE: mulsd
%div = fdiv arcp double %x, 3.0
ret double %div
}
; CHECK-LABEL: safe_fp_math_default2:
define double @safe_fp_math_default2(double %x) {
; With unsafe math enabled, can change this div to a mul.
; SAFE: divsd
%div = fdiv double %x, 3.0
ret double %div
}