Searched refs:NoNaNs (Results 1 – 6 of 6) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | Operator.h | 173 NoNaNs = (1 << 1), enumerator 189 bool noNaNs() const { return 0 != (Flags & NoNaNs); } in noNaNs() 196 void setNoNaNs() { Flags |= NoNaNs; } in setNoNaNs() 235 (SubclassOptionalData & ~FastMathFlags::NoNaNs) | in setHasNoNaNs() 236 (B * FastMathFlags::NoNaNs); in setHasNoNaNs() 276 return (SubclassOptionalData & FastMathFlags::NoNaNs) != 0; in hasNoNaNs()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 327 bool NoNaNs : 1; 339 NoNaNs = false; 350 void setNoNaNs(bool b) { NoNaNs = b; } 360 bool hasNoNaNs() const { return NoNaNs; } 369 (UnsafeAlgebra << 3) | (NoNaNs << 4) | (NoInfs << 5) |
|
/external/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 226 EXPECT_TRUE(Builder.getFastMathFlags().NoNaNs); in TEST_F()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 818 Flags |= FastMathFlags::NoNaNs; in GetOptimizationFlags()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 6704 bool NoNaNs = getTargetMachine().Options.NoNaNsFPMath; in LowerVSETCC() local 6706 EmitVectorComparison(LHS, RHS, CC1, NoNaNs, CmpVT, dl, DAG); in LowerVSETCC() 6712 EmitVectorComparison(LHS, RHS, CC2, NoNaNs, CmpVT, dl, DAG); in LowerVSETCC()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 833 if (0 != (Val & FastMathFlags::NoNaNs)) in getDecodedFastMathFlags()
|