Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DOperator.h174 NoInfs = (1 << 2), enumerator
190 bool noInfs() const { return 0 != (Flags & NoInfs); } in noInfs()
197 void setNoInfs() { Flags |= NoInfs; } in setNoInfs()
240 (SubclassOptionalData & ~FastMathFlags::NoInfs) | in setHasNoInfs()
241 (B * FastMathFlags::NoInfs); in setHasNoInfs()
282 return (SubclassOptionalData & FastMathFlags::NoInfs) != 0; in hasNoInfs()
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h334 bool NoInfs : 1;
347 NoInfs = false;
359 void setNoInfs(bool b) { NoInfs = b; }
370 bool hasNoInfs() const { return NoInfs; }
379 (UnsafeAlgebra << 3) | (NoNaNs << 4) | (NoInfs << 5) |
390 NoInfs &= Flags->NoInfs;
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1295 Flags |= FastMathFlags::NoInfs; in getOptimizationFlags()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp891 if (0 != (Val & FastMathFlags::NoInfs)) in getDecodedFastMathFlags()