Searched refs:AllowReciprocal (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Operator.h | 185 AllowReciprocal = (1 << 4), enumerator 210 bool allowReciprocal() const { return 0 != (Flags & AllowReciprocal); } in allowReciprocal() 230 Flags = (Flags & ~AllowReciprocal) | B * AllowReciprocal; 291 (SubclassOptionalData & ~FastMathFlags::AllowReciprocal) | in setHasAllowReciprocal() 292 (B * FastMathFlags::AllowReciprocal); in setHasAllowReciprocal() 326 (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0 && in isFast() 353 return (SubclassOptionalData & FastMathFlags::AllowReciprocal) != 0; in hasAllowReciprocal()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | FPOptions.def | 24 OPTION(AllowReciprocal, bool, 1, NoSignedZero) 25 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal)
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
| H A D | LLVMBitCodes.h | 471 AllowReciprocal = (1 << 4), enumerator
|
| /freebsd-13.1/contrib/llvm-project/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;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 1481 Flags |= bitc::AllowReciprocal; in getOptimizationFlags()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 1149 if (0 != (Val & bitc::AllowReciprocal)) in getDecodedFastMathFlags()
|