Lines Matching refs:store
232 HInstruction* store = InsertArrayStore(basic_[0], 0); in TEST_F() local
235 EXPECT_STREQ("((1) * i + (0)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
239 EXPECT_FALSE(HaveSameInduction(store->InputAt(1), increment_[0])); in TEST_F()
328 HInstruction* store = InsertArrayStore(k_body, 0); in TEST_F() local
332 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
335 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc1)); in TEST_F()
336 EXPECT_TRUE(HaveSameInduction(store->InputAt(1), inc2)); in TEST_F()
360 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local
363 EXPECT_STREQ("((1) * i + (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
377 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local
384 GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
402 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local
410 GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
493 HInstruction* store = InsertArrayStore(k, 0); in TEST_F() local
499 EXPECT_STREQ("periodic((0), (1)):PrimInt", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F()
562 HInstruction* store = InsertArrayStore(inc, 9); in TEST_F() local
576 EXPECT_TRUE(std::regex_match(GetInductionInfo(store->InputAt(1), d), r)); in TEST_F()
578 EXPECT_STREQ("", GetInductionInfo(store->InputAt(1), d).c_str()); in TEST_F()