Home
last modified time | relevance | path

Searched refs:ReciprocalMath (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DClang.cpp2208 bool ReciprocalMath = false; in RenderFloatingPointOptions() local
2233 case options::OPT_freciprocal_math: ReciprocalMath = true; break; in RenderFloatingPointOptions()
2234 case options::OPT_fno_reciprocal_math: ReciprocalMath = false; break; in RenderFloatingPointOptions()
2266 ReciprocalMath = true; in RenderFloatingPointOptions()
2272 ReciprocalMath = false; in RenderFloatingPointOptions()
2289 ReciprocalMath = true; in RenderFloatingPointOptions()
2303 ReciprocalMath = false; in RenderFloatingPointOptions()
2325 if (!MathErrno && AssociativeMath && ReciprocalMath && !SignedZeros && in RenderFloatingPointOptions()
2335 if (ReciprocalMath) in RenderFloatingPointOptions()
2354 ReciprocalMath && !SignedZeros && !TrappingMath) in RenderFloatingPointOptions()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.def141 CODEGENOPT(ReciprocalMath , 1, 0) ///< Allow FP divisions to be reassociated.
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.cpp87 if (CGM.getCodeGenOpts().ReciprocalMath) { in CodeGenFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp846 Opts.ReciprocalMath = Args.hasArg(OPT_freciprocal_math); in ParseCodeGenArgs()