Home | History | Annotate | Download | only in optimizing

Lines Matching refs:IsBodyTripCount

191   bool IsBodyTripCount(HInductionVarAnalysis::InductionInfo* trip) {
192 return range_.IsBodyTripCount(trip);
296 EXPECT_FALSE(IsBodyTripCount(nullptr));
297 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, true)));
298 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, false)));
299 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, true)));
300 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, false)));