Home
last modified time | relevance | path

Searched refs:m_Inf (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/IR/
H A DPatternMatch.cpp1174 EXPECT_FALSE(match(ScalarUndef, m_Inf())); in TEST_F()
1175 EXPECT_FALSE(match(VectorUndef, m_Inf())); in TEST_F()
1176 EXPECT_FALSE(match(VectorZeroUndef, m_Inf())); in TEST_F()
1177 EXPECT_TRUE(match(ScalarPosInf, m_Inf())); in TEST_F()
1178 EXPECT_TRUE(match(ScalarNegInf, m_Inf())); in TEST_F()
1179 EXPECT_FALSE(match(ScalarNaN, m_Inf())); in TEST_F()
1180 EXPECT_TRUE(match(VectorInfUndef, m_Inf())); in TEST_F()
1181 EXPECT_FALSE(match(VectorNaNUndef, m_Inf())); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DPatternMatch.h626 inline cstfp_pred_ty<is_inf> m_Inf() { return cstfp_pred_ty<is_inf>(); } in m_Inf() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5112 bool IsInf = match(V, m_Inf()); in simplifyFPOp()