Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DOperator.h187 ApproxFunc = (1 << 6) enumerator
212 bool approxFunc() const { return 0 != (Flags & ApproxFunc); } in approxFunc()
236 Flags = (Flags & ~ApproxFunc) | B * ApproxFunc;
303 (SubclassOptionalData & ~FastMathFlags::ApproxFunc) | in setHasApproxFunc()
304 (B * FastMathFlags::ApproxFunc); in setHasApproxFunc()
328 (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0); in isFast()
364 return (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0; in hasApproxFunc()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DLLVMBitCodes.h473 ApproxFunc = (1 << 6), enumerator
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h524 setAllowApproxFunc(LO.ApproxFunc); in FPOptions()
H A DLangOptions.def209 BENIGN_LANGOPT(ApproxFunc , 1, 0, "Permit Floating Point approximation")
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1485 Flags |= bitc::ApproxFunc; in getOptimizationFlags()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1153 if (0 != (Val & bitc::ApproxFunc)) in getDecodedFastMathFlags()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1733 MarshallingInfoFlag<LangOpts<"ApproxFunc">>, ImpliedByAnyOf<[menable_unsafe_fp_math.KeyPath]>;