Home
last modified time | relevance | path

Searched refs:UnsafeFPMath (Results 1 – 25 of 28) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetOptions.h116 : UnsafeFPMath(false), NoInfsFPMath(false), NoNaNsFPMath(false), in TargetOptions()
150 unsigned UnsafeFPMath : 1; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetOptionsImpl.cpp46 return !UnsafeFPMath && HonorSignDependentRoundingFPMathOption; in HonorSignDependentRoundingFPMath()
H A DCommandFlags.cpp487 Options.UnsafeFPMath = getEnableUnsafeFPMath(); in InitTargetOptionsFromCodeGenFlags()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp62 RESET_OPTION(UnsafeFPMath, "unsafe-fp-math"); in resetTargetOptions()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp253 (Options.UnsafeFPMath || isTargetDarwin())) in initSubtargetFeatures()
H A DARMSubtarget.h459 bool UnsafeFPMath = false; variable
H A DARMAsmPrinter.cpp674 else if (!TM.Options.UnsafeFPMath) in emitAttributes()
709 else if (!TM.Options.UnsafeFPMath) { in emitAttributes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructions.td111 def UnsafeFPMath : Predicate<"TM.Options.UnsafeFPMath">;
H A DAMDGPUTargetTransformInfo.cpp638 Options.UnsafeFPMath || in getArithmeticInstrCost()
H A DSIInstructions.td828 let OtherPredicates = [UnsafeFPMath] in {
848 } // End OtherPredicates = [UnsafeFPMath]
H A DAMDGPULegalizerInfo.cpp3192 bool AllowInaccurateRcp = MF.getTarget().Options.UnsafeFPMath || in legalizeFastUnsafeFDIV()
3241 bool AllowInaccurateRcp = MF.getTarget().Options.UnsafeFPMath || in legalizeFastUnsafeFDIV64()
H A DSIISelLowering.cpp8324 DAG.getTarget().Options.UnsafeFPMath; in lowerFastUnsafeFDIV64()
10263 if ((Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath || in getFusedOpcode()
10583 if (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath || in performFMACombine()
H A DAMDGPUISelLowering.cpp2720 if (getTargetMachine().Options.UnsafeFPMath) { in LowerFP_TO_FP16()
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAArch64.cpp255 if (Opts.UnsafeFPMath) in getTargetDefines()
H A DARM.cpp843 if (Opts.UnsafeFPMath) in getTargetDefines()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.td295 def UnsafeFPMath : StrBoolAttr<"unsafe-fp-math">;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp541 Options.UnsafeFPMath = LangOpts.UnsafeFPMath; in initTargetOptions()
H A DCGCall.cpp1817 if (LangOpts.UnsafeFPMath) in getDefaultFunctionAttributes()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def201 COMPATIBLE_LANGOPT(UnsafeFPMath , 1, 0, "Unsafe Floating Point Math")
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13029 Options.UnsafeFPMath || HasFMAD); in visitFADDForFMACombine()
13551 bool HasFMAD = Options.UnsafeFPMath && in visitFMULForFMADistributiveCombine()
13944 if (Options.UnsafeFPMath || Flags.hasAllowReassociation()) { in visitFMUL()
14059 bool UnsafeFPMath = in visitFMA() local
14083 if (UnsafeFPMath) { in visitFMA()
14100 if (UnsafeFPMath) { in visitFMA()
14141 if (UnsafeFPMath) { in visitFMA()
14177 bool UnsafeMath = DAG.getTarget().Options.UnsafeFPMath; in combineRepeatedFPDivisors()
14275 if (Options.UnsafeFPMath || Flags.hasAllowReciprocal()) { in visitFDIV()
14369 (Options.UnsafeFPMath || Flags.hasAllowReassociation())) in visitFDIV()
[all …]
H A DLegalizeDAG.cpp3188 if (!TLI.useSoftFloat() && TM.Options.UnsafeFPMath) { in ExpandNode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp97 if (getTargetMachine().Options.UnsafeFPMath) in getDivF32Level()
110 return !getTargetMachine().Options.UnsafeFPMath; in usePrecSqrtF32()
4389 if (MF.getTarget().Options.UnsafeFPMath) in allowUnsafeFPMath()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp397 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() && in PPCTargetLowering()
402 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() && in PPCTargetLowering()
515 if (TM.Options.UnsafeFPMath) { in PPCTargetLowering()
966 if (TM.Options.UnsafeFPMath) { in PPCTargetLowering()
8493 !DAG.getTarget().Options.UnsafeFPMath) { in LowerINT_TO_FP()
16357 (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath)); in isProfitableToHoist()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp4548 return Options.UnsafeFPMath || in isCombineInstrCandidateFP()
4627 return Inst.getParent()->getParent()->getTarget().Options.UnsafeFPMath; in isAssociativeAndCommutative()
H A DAArch64ISelLowering.cpp7452 if (DAG.getTarget().Options.UnsafeFPMath) { in LowerSELECT_CC()
11372 Options.UnsafeFPMath)); in isProfitableToHoist()

12