Searched refs:AllowReciprocal (Results 1 – 6 of 6) sorted by relevance
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | Operator.h | 184 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 D | FPOptions.def | 24 OPTION(AllowReciprocal, bool, 1, NoSignedZero) 25 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal)
|
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/ |
H A D | LLVMBitCodes.h | 471 AllowReciprocal = (1 << 4), enumerator
|
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGNodes.h | 379 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 D | BitcodeWriter.cpp | 1477 Flags |= bitc::AllowReciprocal; in getOptimizationFlags()
|
/netbsd/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1181 if (0 != (Val & bitc::AllowReciprocal)) in getDecodedFastMathFlags()
|