Home
last modified time | relevance | path

Searched refs:SoftFloat (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Basic/Targets/
H A DSystemZ.h31 bool SoftFloat; variable
36 HasTransactionalExecution(false), HasVector(false), SoftFloat(false) { in SystemZTargetInfo()
162 SoftFloat = false; in handleTargetFeatures()
169 SoftFloat = true; in handleTargetFeatures()
171 HasVector &= !SoftFloat; in handleTargetFeatures()
H A DSparc.h25 bool SoftFloat; variable
29 : TargetInfo(Triple), SoftFloat(false) {} in SparcTargetInfo()
43 SoftFloat = true; in handleTargetFeatures()
H A DARM.cpp506 SoftFloat = false; in handleTargetFeatures()
522 SoftFloat = true; in handleTargetFeatures()
640 .Case("softfloat", SoftFloat) in hasFeature()
642 .Case("neon", (FPU & NeonFPU) && !SoftFloat) in hasFeature()
643 .Case("vfp", FPU && !SoftFloat) in hasFeature()
652 return HasBFloat16 || (FPU && !SoftFloat); in hasBFloat16Type()
822 if ((!SoftFloat && !SoftFloatABI) || ABI == "aapcs-vfp" || ABI == "aapcs16") in getTargetDefines()
825 if (SoftFloat || (SoftFloatABI && !FPU)) in getTargetDefines()
878 if ((FPU & NeonFPU) && !SoftFloat && ArchVersion >= 7) { in getTargetDefines()
H A DPPC.h56 enum PPCFloatABI { HardFloat, SoftFloat } FloatABI; enumerator
216 if (FloatABI == SoftFloat) in validateAsmConstraint()
229 if (FloatABI == SoftFloat) in validateAsmConstraint()
H A DSparc.cpp56 .Case("softfloat", SoftFloat) in hasFeature()
143 if (SoftFloat) in getTargetDefines()
H A DMips.h51 enum MipsFloatABI { HardFloat, SoftFloat } FloatABI; enumerator
322 FloatABI = SoftFloat; in handleTargetFeatures()
H A DMips.cpp128 case SoftFloat: in getTargetDefines()
H A DARM.h71 unsigned SoftFloat : 1; variable
H A DPPC.cpp69 FloatABI = SoftFloat; in handleTargetFeatures()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp315 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
318 if (SoftFloat) in getSubtargetImpl()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp291 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
294 if (SoftFloat) in getSubtargetImpl()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp362 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
365 if (SoftFloat) in getSubtargetImpl()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp865 bool SoftFloat = MF.getSubtarget<SystemZSubtarget>().hasSoftFloat(); in getRegSpillOffset() local
867 if (usePackedStack(MF) && !(IsVarArg && !SoftFloat)) { in getRegSpillOffset()
894 bool SoftFloat = MF.getSubtarget<SystemZSubtarget>().hasSoftFloat(); in usePackedStack() local
895 if (HasPackedStackAttr && BackChain && !SoftFloat) in usePackedStack()
H A DSystemZFeatures.td31 "soft-float", "SoftFloat", (all_of FeatureSoftFloat),
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DGnu.cpp1067 auto SoftFloat = makeMultilib("/soft-float").flag("+msoft-float"); in findMipsCsMultilibs() local
1090 .Either(SoftFloat, Nan2008, DefaultFloat) in findMipsCsMultilibs()
1257 auto SoftFloat = makeMultilib("/sof").flag("+msoft-float"); in findMipsMtiMultilibs() local
1276 .Maybe(SoftFloat) in findMipsMtiMultilibs()
1658 auto SoftFloat = makeMultilib("").flag("+soft"); in findCSKYMultilibs() local
1677 .Either(HardFloat, SoftFpFloat, SoftFloat) in findCSKYMultilibs()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.def294 CODEGENOPT(SoftFloat , 1, 0) ///< -soft-float.
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DTargetInfo.cpp12337 bool SoftFloat = CodeGenOpts.FloatABI == "soft"; in getTargetCodeGenInfo() local
12338 bool HasVector = !SoftFloat && getTarget().getABI() == "vector"; in getTargetCodeGenInfo()
12339 return SetCGInfo(new SystemZTargetCodeGenInfo(Types, HasVector, SoftFloat)); in getTargetCodeGenInfo()
H A DCGCall.cpp1905 if (CodeGenOpts.SoftFloat) in getDefaultFunctionAttributes()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td3904 MarshallingInfoFlag<CodeGenOpts<"SoftFloat">>;