Searched refs:IsRemoved (Results 1 – 3 of 3) sorted by relevance
332 ASSERT_TRUE(IsRemoved(load1)); in TEST_F()333 ASSERT_FALSE(IsRemoved(load2)); in TEST_F()334 ASSERT_TRUE(IsRemoved(store1)); in TEST_F()335 ASSERT_FALSE(IsRemoved(store2)); in TEST_F()356 ASSERT_TRUE(IsRemoved(store1)); in TEST_F()357 ASSERT_FALSE(IsRemoved(store2)); in TEST_F()376 ASSERT_FALSE(IsRemoved(vstore)); in TEST_F()393 ASSERT_FALSE(IsRemoved(vstore)); in TEST_F()439 ASSERT_TRUE(IsRemoved(load1)); in TEST_F()440 ASSERT_FALSE(IsRemoved(load2)); in TEST_F()[all …]
154 ASSERT_FALSE(IsRemoved(bounds_check2)); in TEST_F()155 ASSERT_FALSE(IsRemoved(bounds_check4)); in TEST_F()156 ASSERT_TRUE(IsRemoved(bounds_check5)); in TEST_F()221 ASSERT_FALSE(IsRemoved(bounds_check)); in TEST_F()288 ASSERT_FALSE(IsRemoved(bounds_check)); in TEST_F()353 ASSERT_FALSE(IsRemoved(bounds_check6)); in TEST_F()354 ASSERT_TRUE(IsRemoved(bounds_check5)); in TEST_F()355 ASSERT_TRUE(IsRemoved(bounds_check4)); in TEST_F()434 ASSERT_TRUE(IsRemoved(bounds_check)); in TEST_F()441 ASSERT_TRUE(IsRemoved(bounds_check)); in TEST_F()[all …]
87 #define EXPECT_INS_REMOVED(a) EXPECT_TRUE(IsRemoved(a)) << "Not removed: " << (InstructionDumper{a})88 #define EXPECT_INS_RETAINED(a) EXPECT_FALSE(IsRemoved(a)) << "Removed: " << (InstructionDumper{a})90 #define ASSERT_INS_REMOVED(a) ASSERT_TRUE(IsRemoved(a)) << "Not removed: " << (InstructionDumper{a})91 #define ASSERT_INS_RETAINED(a) ASSERT_FALSE(IsRemoved(a)) << "Removed: " << (InstructionDumper{a})566 inline bool IsRemoved(HInstruction* instruction) { in IsRemoved() function