Home
last modified time | relevance | path

Searched refs:AllowReciprocal (Results 1 – 6 of 6) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h184 AllowReciprocal = (1 << 4), enumerator
209 bool allowReciprocal() const { return 0 != (Flags & AllowReciprocal); } in allowReciprocal()
229 Flags = (Flags & ~AllowReciprocal) | B * AllowReciprocal;
290 (SubclassOptionalData & ~FastMathFlags::AllowReciprocal) | in setHasAllowReciprocal()
291 (B * FastMathFlags::AllowReciprocal); in setHasAllowReciprocal()
325 (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0 && in isFast()
352 return (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0; in hasAllowReciprocal()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DFPOptions.def24 OPTION(AllowReciprocal, bool, 1, NoSignedZero)
25 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal)
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DLLVMBitCodes.h471 AllowReciprocal = (1 << 4), enumerator
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h379 bool AllowReciprocal : 1;
395 NoInfs(false), NoSignedZeros(false), AllowReciprocal(false),
417 void setAllowReciprocal(bool b) { AllowReciprocal = b; }
430 bool hasAllowReciprocal() const { return AllowReciprocal; }
445 AllowReciprocal &= Flags.AllowReciprocal;
/netbsd/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1477 Flags |= bitc::AllowReciprocal; in getOptimizationFlags()
/netbsd/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1181 if (0 != (Val & bitc::AllowReciprocal)) in getDecodedFastMathFlags()