Searched refs:m_NaN (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/unittests/IR/ |
D | PatternMatch.cpp | 1123 EXPECT_FALSE(match(ScalarUndef, m_NaN())); in TEST_F() 1124 EXPECT_FALSE(match(VectorUndef, m_NaN())); in TEST_F() 1125 EXPECT_FALSE(match(VectorZeroUndef, m_NaN())); in TEST_F() 1126 EXPECT_FALSE(match(ScalarPosInf, m_NaN())); in TEST_F() 1127 EXPECT_FALSE(match(ScalarNegInf, m_NaN())); in TEST_F() 1128 EXPECT_TRUE(match(ScalarNaN, m_NaN())); in TEST_F() 1129 EXPECT_FALSE(match(VectorInfUndef, m_NaN())); in TEST_F() 1130 EXPECT_TRUE(match(VectorNaNUndef, m_NaN())); in TEST_F()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstCombineIntrinsic.cpp | 498 if (match(Src0, PatternMatch::m_NaN()) || isa<UndefValue>(Src0)) { in instCombineIntrinsic() 500 } else if (match(Src1, PatternMatch::m_NaN()) || isa<UndefValue>(Src1)) { in instCombineIntrinsic() 502 } else if (match(Src2, PatternMatch::m_NaN()) || isa<UndefValue>(Src2)) { in instCombineIntrinsic()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 3548 if (match(RHS, m_NaN())) in SimplifyFCmpInst() 4570 if (match(V, m_NaN())) in simplifyFPOp() 5188 if (match(Op0, m_NaN())) in simplifyBinaryIntrinsic() 5190 if (match(Op1, m_NaN())) in simplifyBinaryIntrinsic()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 3742 if (match(Src0, m_NaN()) || isa<UndefValue>(Src0)) { in visitCallInst() 3744 } else if (match(Src1, m_NaN()) || isa<UndefValue>(Src1)) { in visitCallInst() 3746 } else if (match(Src2, m_NaN()) || isa<UndefValue>(Src2)) { in visitCallInst()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 3635 if (match(RHS, m_NaN())) in SimplifyFCmpInst() 4744 bool IsNan = match(V, m_NaN()); in simplifyFPOp() 5512 if (match(Op1, m_NaN())) in simplifyBinaryIntrinsic()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PatternMatch.h | 529 inline cstfp_pred_ty<is_nan> m_NaN() { in m_NaN() function
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | PatternMatch.h | 584 inline cstfp_pred_ty<is_nan> m_NaN() { in m_NaN() function
|