Lines Matching refs:Zero

72   Value *Zero = ConstantInt::get(IntTy, 0);  in TEST_F()  local
78 .match(Zero)); in TEST_F()
88 .match(Zero)); in TEST_F()
98 .match(Zero)); in TEST_F()
111 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
117 .match(Zero)); in TEST_F()
127 .match(Zero)); in TEST_F()
137 .match(Zero)); in TEST_F()
150 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
156 .match(Zero)); in TEST_F()
166 .match(Zero)); in TEST_F()
176 .match(Zero)); in TEST_F()
188 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
197 EXPECT_FALSE(m_Negative().match(Zero)); in TEST_F()
198 EXPECT_TRUE(m_NonNegative().match(Zero)); in TEST_F()
199 EXPECT_FALSE(m_StrictlyPositive().match(Zero)); in TEST_F()
200 EXPECT_TRUE(m_NonPositive().match(Zero)); in TEST_F()
212 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
218 .match(Zero)); in TEST_F()
228 .match(Zero)); in TEST_F()
238 .match(Zero)); in TEST_F()
251 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
257 .match(Zero)); in TEST_F()
267 .match(Zero)); in TEST_F()
277 .match(Zero)); in TEST_F()
290 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
296 .match(Zero)); in TEST_F()
306 .match(Zero)); in TEST_F()
316 .match(Zero)); in TEST_F()
329 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
335 .match(Zero)); in TEST_F()
345 .match(Zero)); in TEST_F()
355 .match(Zero)); in TEST_F()
368 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
374 .match(Zero)); in TEST_F()
384 .match(Zero)); in TEST_F()
394 .match(Zero)); in TEST_F()
407 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
413 .match(Zero)); in TEST_F()
423 .match(Zero)); in TEST_F()
433 .match(Zero)); in TEST_F()
446 Value *Zero = ConstantInt::get(IntTy, 0); in TEST_F() local
452 .match(Zero)); in TEST_F()
462 .match(Zero)); in TEST_F()
472 .match(Zero)); in TEST_F()
952 Constant *Zero = ConstantAggregateZero::get(i32VecTy); in TEST_F() local
954 ShuffleVectorInst::getShuffleMask(Zero, ZeroMask); in TEST_F()
1030 Constant *Zero = ConstantInt::getNullValue(ScalarTy); in TEST_F() local
1046 EXPECT_FALSE(match(ConstantStruct::get(StTy, {U, Zero}), m_Undef())); in TEST_F()
1047 EXPECT_FALSE(match(ConstantStruct::get(StTy, {Zero, U}), m_Undef())); in TEST_F()
1048 EXPECT_FALSE(match(ConstantStruct::get(StTy, {P, Zero}), m_Undef())); in TEST_F()
1049 EXPECT_FALSE(match(ConstantStruct::get(StTy, {Zero, P}), m_Undef())); in TEST_F()
1051 EXPECT_FALSE(match(ConstantStruct::get(StTy2, {Zero, UP}), m_Undef())); in TEST_F()
1052 EXPECT_FALSE(match(ConstantStruct::get(StTy3, {UP, Zero}), m_Undef())); in TEST_F()