Searched refs:IsRemoved (Results 1 – 3 of 3) sorted by relevance
153 ASSERT_FALSE(IsRemoved(bounds_check2)); in TEST_F()154 ASSERT_FALSE(IsRemoved(bounds_check4)); in TEST_F()155 ASSERT_TRUE(IsRemoved(bounds_check5)); in TEST_F()220 ASSERT_FALSE(IsRemoved(bounds_check)); in TEST_F()287 ASSERT_FALSE(IsRemoved(bounds_check)); in TEST_F()352 ASSERT_FALSE(IsRemoved(bounds_check6)); in TEST_F()353 ASSERT_TRUE(IsRemoved(bounds_check5)); in TEST_F()354 ASSERT_TRUE(IsRemoved(bounds_check4)); in TEST_F()433 ASSERT_TRUE(IsRemoved(bounds_check)); in TEST_F()440 ASSERT_TRUE(IsRemoved(bounds_check)); in TEST_F()[all …]
501 ASSERT_TRUE(IsRemoved(load1)); in TEST_F()502 ASSERT_FALSE(IsRemoved(load2)); in TEST_F()503 ASSERT_TRUE(IsRemoved(store1)); in TEST_F()504 ASSERT_FALSE(IsRemoved(store2)); in TEST_F()525 ASSERT_TRUE(IsRemoved(store1)); in TEST_F()526 ASSERT_FALSE(IsRemoved(store2)); in TEST_F()543 ASSERT_FALSE(IsRemoved(vstore)); in TEST_F()558 ASSERT_FALSE(IsRemoved(vstore)); in TEST_F()602 ASSERT_TRUE(IsRemoved(load1)); in TEST_F()603 ASSERT_FALSE(IsRemoved(load2)); in TEST_F()[all …]
86 #define EXPECT_INS_REMOVED(a) EXPECT_TRUE(IsRemoved(a)) << "Not removed: " << (InstructionDumper{a})87 #define EXPECT_INS_RETAINED(a) EXPECT_FALSE(IsRemoved(a)) << "Removed: " << (InstructionDumper{a})89 #define ASSERT_INS_REMOVED(a) ASSERT_TRUE(IsRemoved(a)) << "Not removed: " << (InstructionDumper{a})90 #define ASSERT_INS_RETAINED(a) ASSERT_FALSE(IsRemoved(a)) << "Removed: " << (InstructionDumper{a})581 inline bool IsRemoved(HInstruction* instruction) { in IsRemoved() function