Home
last modified time | relevance | path

Searched refs:CurFPFeatures (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAttr.cpp491 if (CurFPFeatures.getFPExceptionMode() == LangOptions::FPE_Strict) in ActOnPragmaFloatControl()
493 else if (CurFPFeatures.getAllowFEnvAccess()) in ActOnPragmaFloatControl()
523 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFloatControl()
1113 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFPContract()
1120 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFPReassociate()
1127 !CurFPFeatures.getAllowFEnvAccess() && in setRoundingMode()
1128 CurFPFeatures.getFPExceptionMode() == LangOptions::FPE_Ignore) in setRoundingMode()
1134 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in setRoundingMode()
1142 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in setExceptionMode()
1164 CurFPFeatures = NewFPFeatures.applyOverrides(LO); in ActOnPragmaFEnvAccess()
H A DSema.cpp155 CurFPFeatures(pp.getLangOpts()), LangOpts(pp.getLangOpts()), PP(pp), in Sema()
H A DTreeTransform.h10736 getSema().CurFPFeatures = in TransformCallExpr()
10853 getSema().CurFPFeatures = in TransformBinaryOperator()
10910 getSema().CurFPFeatures = in TransformCompoundAssignOperator()
11388 getSema().CurFPFeatures = in TransformCXXOperatorCallExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp72 SanOpts(CGM.getLangOpts().Sanitize), CurFPFeatures(CGM.getLangOpts()), in CodeGenFunction()
80 SetFastMathFlags(CurFPFeatures); in CodeGenFunction()
148 OldFPFeatures = CGF.CurFPFeatures; in ConstructorHelper()
149 CGF.CurFPFeatures = FPFeatures; in ConstructorHelper()
193 CGF.CurFPFeatures = OldFPFeatures; in ~CGFPOptionsRAII()
H A DCodeGenFunction.h690 FPOptions CurFPFeatures;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h404 FPOptions CurFPFeatures; variable
1498 FPFeaturesStateRAII(Sema &S) : S(S), OldFPFeaturesState(S.CurFPFeatures) { in FPFeaturesStateRAII()
1502 S.CurFPFeatures = OldFPFeaturesState; in ~FPFeaturesStateRAII()
1536 FPOptions &getCurFPFeatures() { return CurFPFeatures; } in getCurFPFeatures()
9941 return !CurFPFeatures.getAllowFPReassociate() && in isPreciseFPEnabled()
9942 !CurFPFeatures.getNoSignedZero() && in isPreciseFPEnabled()
9943 !CurFPFeatures.getAllowReciprocal() && in isPreciseFPEnabled()
9944 !CurFPFeatures.getAllowApproxFunc(); in isPreciseFPEnabled()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp7868 SemaObj->CurFPFeatures = in InitializeSema()