Home | History | Annotate | Download | only in optimizing

Lines Matching refs:NeedsTripCount

240   bool NeedsTripCount(HInductionVarAnalysis::InductionInfo* info) {
242 return range_.NeedsTripCount(info, &s);
354 EXPECT_FALSE(NeedsTripCount(nullptr));
355 EXPECT_FALSE(NeedsTripCount(CreateConst(1)));
356 EXPECT_TRUE(NeedsTripCount(CreateLinear(1, 1)));
357 EXPECT_FALSE(NeedsTripCount(CreateWrapAround(1, 2, 3)));
358 EXPECT_TRUE(NeedsTripCount(CreateWrapAround(1, CreateLinear(1, 1))));