Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp545 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFPEvalMethod()
568 if (CurFPFeatures.getExceptionMode() == LangOptions::FPE_Strict) in ActOnPragmaFloatControl()
570 else if (CurFPFeatures.getAllowFEnvAccess()) in ActOnPragmaFloatControl()
600 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFloatControl()
1285 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFPContract()
1321 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFPValueChangingOption()
1328 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFEnvRound()
1336 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in setExceptionMode()
1352 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaFEnvAccess()
1360 CurFPFeatures = NewFPFeatures.applyOverrides(getLangOpts()); in ActOnPragmaCXLimitedRange()
H A DSema.cpp191 : ExternalSource(nullptr), CurFPFeatures(pp.getLangOpts()), in Sema()
255 CurFPFeatures.setFPEvalMethod(PP.getCurrentFPEvalMethod()); in Sema()
2738 : S(S), OldFPFeaturesState(S.CurFPFeatures), in FPFeaturesStateRAII()
2744 S.CurFPFeatures = OldFPFeaturesState; in ~FPFeaturesStateRAII()
H A DTreeTransform.h11456 getSema().CurFPFeatures = in TransformCallExpr()
11578 getSema().CurFPFeatures = in TransformBinaryOperator()
11645 getSema().CurFPFeatures = in TransformCompoundAssignOperator()
12117 getSema().CurFPFeatures = in TransformCXXOperatorCallExpr()
H A DSemaTemplateInstantiateDecl.cpp5159 CurFPFeatures = FPOptions(getLangOpts()); in InstantiateFunctionDefinition()
H A DSemaExpr.cpp799 LangOptions::FPEvalMethodKind EvalMethod = CurFPFeatures.getFPEvalMethod(); in UsualUnaryConversions()
4344 if (getLangOpts().ProtectParens && CurFPFeatures.getAllowFPReassociate() && in ActOnParenExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp76 SanOpts(CGM.getLangOpts().Sanitize), CurFPFeatures(CGM.getLangOpts()), in CodeGenFunction()
84 SetFastMathFlags(CurFPFeatures); in CodeGenFunction()
141 OldFPFeatures = CGF.CurFPFeatures; in ConstructorHelper()
142 CGF.CurFPFeatures = FPFeatures; in ConstructorHelper()
186 CGF.CurFPFeatures = OldFPFeatures; in ~CGFPOptionsRAII()
H A DCodeGenFunction.h737 FPOptions CurFPFeatures;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h404 FPOptions CurFPFeatures; variable
730 CurFPFeatures = FPO; in resetFPOptions()
1689 FPOptions &getCurFPFeatures() { return CurFPFeatures; } in getCurFPFeatures()
10992 return !CurFPFeatures.getAllowFPReassociate() && in isPreciseFPEnabled()
10993 !CurFPFeatures.getNoSignedZero() && in isPreciseFPEnabled()
10994 !CurFPFeatures.getAllowReciprocal() && in isPreciseFPEnabled()
10995 !CurFPFeatures.getAllowApproxFunc(); in isPreciseFPEnabled()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp8202 SemaObj->CurFPFeatures = in InitializeSema()