Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.cpp177 CurFPFeatures(pp.getLangOpts()), LangOpts(pp.getLangOpts()), PP(pp), in Sema()
H A DTreeTransform.h10810 getSema().CurFPFeatures = in TransformCallExpr()
10927 getSema().CurFPFeatures = in TransformBinaryOperator()
10984 getSema().CurFPFeatures = in TransformCompoundAssignOperator()
11462 getSema().CurFPFeatures = in TransformCXXOperatorCallExpr()
H A DSemaExpr.cpp4057 if (getLangOpts().ProtectParens && CurFPFeatures.getAllowFPReassociate() && in ActOnParenExpr()
/freebsd-13.1/contrib/llvm-project/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;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h407 FPOptions CurFPFeatures; variable
1505 FPFeaturesStateRAII(Sema &S) : S(S), OldFPFeaturesState(S.CurFPFeatures) { in FPFeaturesStateRAII()
1509 S.CurFPFeatures = OldFPFeaturesState; in ~FPFeaturesStateRAII()
1550 FPOptions &getCurFPFeatures() { return CurFPFeatures; } in getCurFPFeatures()
10010 return !CurFPFeatures.getAllowFPReassociate() && in isPreciseFPEnabled()
10011 !CurFPFeatures.getNoSignedZero() && in isPreciseFPEnabled()
10012 !CurFPFeatures.getAllowReciprocal() && in isPreciseFPEnabled()
10013 !CurFPFeatures.getAllowApproxFunc(); in isPreciseFPEnabled()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp7895 SemaObj->CurFPFeatures = in InitializeSema()