/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMachineFunction.h | 39 bool NoSignedZerosFPMath; variable 69 return NoSignedZerosFPMath; in hasNoSignedZerosFPMath()
|
D | AMDGPUMachineFunction.cpp | 23 NoSignedZerosFPMath(MF.getTarget().Options.NoSignedZerosFPMath), in AMDGPUMachineFunction()
|
D | SIMachineFunctionInfo.cpp | 485 NoSignedZerosFPMath(MFI.hasNoSignedZerosFPMath()), in SIMachineFunctionInfo() 507 NoSignedZerosFPMath = YamlMFI.NoSignedZerosFPMath; in initializeBaseYamlFields()
|
D | SIMachineFunctionInfo.h | 273 bool NoSignedZerosFPMath = false; 301 YamlIO.mapOptional("noSignedZerosFPMath", MFI.NoSignedZerosFPMath, false);
|
D | AMDGPUISelLowering.h | 150 if (getTargetMachine().Options.NoSignedZerosFPMath) in mayIgnoreSignedZero()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMachineFunction.h | 51 bool NoSignedZerosFPMath = false; variable 81 return NoSignedZerosFPMath; in hasNoSignedZerosFPMath()
|
D | AMDGPUMachineFunction.cpp | 20 NoSignedZerosFPMath(MF.getTarget().Options.NoSignedZerosFPMath) { in AMDGPUMachineFunction()
|
D | SIMachineFunctionInfo.cpp | 550 NoSignedZerosFPMath(MFI.hasNoSignedZerosFPMath()), in SIMachineFunctionInfo() 573 NoSignedZerosFPMath = YamlMFI.NoSignedZerosFPMath; in initializeBaseYamlFields()
|
D | SIMachineFunctionInfo.h | 282 bool NoSignedZerosFPMath = false; 312 YamlIO.mapOptional("noSignedZerosFPMath", MFI.NoSignedZerosFPMath, false);
|
D | AMDGPUISelLowering.h | 149 if (getTargetMachine().Options.NoSignedZerosFPMath) in mayIgnoreSignedZero()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | TargetOptions.h | 111 NoSignedZerosFPMath(false), in TargetOptions() 161 unsigned NoSignedZerosFPMath : 1; variable
|
/external/llvm-project/llvm/include/llvm/Target/ |
D | TargetOptions.h | 126 NoTrappingFPMath(true), NoSignedZerosFPMath(false), in TargetOptions() 177 unsigned NoSignedZerosFPMath : 1; variable
|
/external/llvm-project/llvm/lib/Target/ |
D | TargetMachine.cpp | 65 RESET_OPTION(NoSignedZerosFPMath, "no-signed-zeros-fp-math"); in resetTargetOptions()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
D | TargetMachine.cpp | 65 RESET_OPTION(NoSignedZerosFPMath, "no-signed-zeros-fp-math"); in resetTargetOptions()
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Attributes.td | 257 def NoSignedZerosFPMath : StrBoolAttr<"no-signed-zeros-fp-math">;
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | CommandFlags.cpp | 519 Options.NoSignedZerosFPMath = getEnableNoSignedZerosFPMath(); in InitTargetOptionsFromCodeGenFlags()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | CommandFlags.inc | 296 Options.NoSignedZerosFPMath = EnableNoSignedZerosFPMath;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 5530 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5546 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5569 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5630 assert((DAG.getTarget().Options.NoSignedZerosFPMath || in getNegatedExpression() 5679 assert((DAG.getTarget().Options.NoSignedZerosFPMath || in getNegatedExpression()
|
D | DAGCombiner.cpp | 8306 return Options.NoSignedZerosFPMath && VT.isFloatingPoint() && in isLegalToCombineMinNumMaxNum() 12151 if (N1C->isNegative() || Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros()) in visitFADD() 12209 if (((Options.UnsafeFPMath && Options.NoSignedZerosFPMath) || in visitFADD() 12328 if (!N1CFP->isNegative() || Options.NoSignedZerosFPMath || in visitFSUB() 12347 (Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros())) { in visitFSUB() 12355 if (((Options.UnsafeFPMath && Options.NoSignedZerosFPMath) || in visitFSUB() 12425 if ((Options.NoNaNsFPMath && Options.NoSignedZerosFPMath) || in visitFMUL() 13021 !DAG.getTarget().Options.NoSignedZerosFPMath) in foldFPToIntToFP() 13388 (DAG.getTarget().Options.NoSignedZerosFPMath || in visitFNEG()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 8996 return Options.NoSignedZerosFPMath && VT.isFloatingPoint() && in isLegalToCombineMinNumMaxNum() 12758 bool NoSignedZero = Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros(); in visitFSUBForFMACombine() 13150 if (N1C->isNegative() || Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros()) in visitFADD() 13206 if (((Options.UnsafeFPMath && Options.NoSignedZerosFPMath) || in visitFADD() 13356 if (!N1CFP->isNegative() || Options.NoSignedZerosFPMath || in visitFSUB() 13375 (Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros())) { in visitFSUB() 13384 if (((Options.UnsafeFPMath && Options.NoSignedZerosFPMath) || in visitFSUB() 13866 if ((Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros()) && in visitFDIV() 14091 !DAG.getTarget().Options.NoSignedZerosFPMath) in foldFPToIntToFP() 14444 (DAG.getTarget().Options.NoSignedZerosFPMath || in visitFNEG()
|
D | TargetLowering.cpp | 5868 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in getNegatedExpression() 5906 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in getNegatedExpression() 5960 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in getNegatedExpression()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 37943 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 37954 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 37973 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 37983 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 38011 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 38047 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 42919 !DAG.getTarget().Options.NoSignedZerosFPMath) in combineFMinFMax()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 40706 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 40717 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 40736 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 40746 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 40774 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 40810 if (!DAG.getTarget().Options.NoSignedZerosFPMath && in combineSelect() 46269 !DAG.getTarget().Options.NoSignedZerosFPMath) in combineFMinFMax()
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 16410 if (Flags.hasNoSignedZeros() || Options.NoSignedZerosFPMath) { in getNegatedExpression() 16876 if (!Flags.hasNoSignedZeros() && !Options.NoSignedZerosFPMath) in combineFMALike()
|