Home
last modified time | relevance | path

Searched refs:NoInfs (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h182 NoInfs = (1 << 2), enumerator
207 bool noInfs() const { return 0 != (Flags & NoInfs); } in noInfs()
223 Flags = (Flags & ~NoInfs) | B * NoInfs;
278 (SubclassOptionalData & ~FastMathFlags::NoInfs) | in setHasNoInfs()
279 (B * FastMathFlags::NoInfs); in setHasNoInfs()
323 (SubclassOptionalData & FastMathFlags::NoInfs) != 0 && in isFast()
342 return (SubclassOptionalData & FastMathFlags::NoInfs) != 0; in hasNoInfs()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DLLVMBitCodes.h469 NoInfs = (1 << 2), enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h377 bool NoInfs : 1;
395 NoInfs(false), NoSignedZeros(false), AllowReciprocal(false),
415 void setNoInfs(bool b) { NoInfs = b; }
428 bool hasNoInfs() const { return NoInfs; }
443 NoInfs &= Flags.NoInfs;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1473 Flags |= bitc::NoInfs; in getOptimizationFlags()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1177 if (0 != (Val & bitc::NoInfs)) in getDecodedFastMathFlags()