HomeSort by relevance Sort by last modified time
    Searched defs:NeedsTripCount (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
induction_var_range.cc 159 *needs_finite_test = NeedsTripCount(info) && IsUnsafeTripCount(trip);
267 bool InductionVarRange::NeedsTripCount(HInductionVarAnalysis::InductionInfo* info) const {
272 return NeedsTripCount(info->op_b);
635 *needs_finite_test = NeedsTripCount(info) && IsUnsafeTripCount(trip);
    [all...]
induction_var_range_test.cc 187 bool NeedsTripCount(HInductionVarAnalysis::InductionInfo* info) {
188 return range_.NeedsTripCount(info);
290 EXPECT_FALSE(NeedsTripCount(nullptr));
291 EXPECT_FALSE(NeedsTripCount(CreateConst(1)));
292 EXPECT_TRUE(NeedsTripCount(CreateLinear(1, 1)));
293 EXPECT_FALSE(NeedsTripCount(CreateWrapAround(1, 2, 3)));
294 EXPECT_TRUE(NeedsTripCount(CreateWrapAround(1, CreateLinear(1, 1))));
    [all...]

Completed in 304 milliseconds