[llvm] [CodeGen] Provide `MachineFunction::hasUnsafeFPMath` (PR #127488)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 00:31:13 PST 2025
================
@@ -16878,6 +16870,16 @@ SDValue DAGCombiner::visitFMULForFMADistributiveCombine(SDNode *N) {
if (!hasNoInfs(Options, FAdd))
return SDValue();
+ // Returns true if floating point contraction is allowed on the FMUL-SDValue
+ // `N`
+ auto isContractableFMUL = [this](const TargetOptions &Options, SDValue N) {
+ assert(N.getOpcode() == ISD::FMUL);
+
+ return Options.AllowFPOpFusion == FPOpFusion::Fast ||
+ DAG.getMachineFunction().hasUnsafeFPMath() ||
----------------
arsenm wrote:
This is one of the most egregious uses of the unsafe-fp-math. It is interpreted inconsistently and confusingly. In this case, we already have the global fusion option and the contract flag.
In a separate PR, can you drop the usage of unsafe fp math here?
https://github.com/llvm/llvm-project/pull/127488
More information about the llvm-commits
mailing list