Home | History | Annotate | Download | only in optimizing

Lines Matching defs:NeedsTripCount

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