Searched refs:GetInductionInfo (Results 1 – 1 of 1) sorted by relevance
/art/compiler/optimizing/ |
D | induction_var_analysis_test.cc | 170 std::string GetInductionInfo(HInstruction* instruction, int d) { in GetInductionInfo() function in art::InductionVarAnalysisTest 179 return GetInductionInfo(control, d); in GetTripCount() 264 EXPECT_STREQ("((1) * i + (0)):Int32", GetInductionInfo(store->InputAt(1), 0).c_str()); in TEST_F() 265 EXPECT_STREQ("((1) * i + (1)):Int32", GetInductionInfo(increment_[0], 0).c_str()); in TEST_F() 296 EXPECT_STREQ("((1) * i + (100)):Int32", GetInductionInfo(add, 0).c_str()); in TEST_F() 297 EXPECT_STREQ("(( - (1)) * i + (100)):Int32", GetInductionInfo(sub, 0).c_str()); in TEST_F() 298 EXPECT_STREQ("((100) * i + (0)):Int32", GetInductionInfo(mul, 0).c_str()); in TEST_F() 299 EXPECT_STREQ("((2) * i + (0)):Int32", GetInductionInfo(shl, 0).c_str()); in TEST_F() 300 EXPECT_STREQ("(( - (1)) * i + (0)):Int32", GetInductionInfo(neg, 0).c_str()); in TEST_F() 326 GetInductionInfo(k_header, 0).c_str()); in TEST_F() [all …]
|