Home
last modified time | relevance | path

Searched refs:CreateTripCount (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_range_test.cc162 HInductionVarAnalysis::InductionInfo* CreateTripCount(int32_t tc, bool in_loop, bool safe) { in CreateTripCount() function in art::InductionVarRangeTest
172 return iva_->CreateTripCount(op, in CreateTripCount()
361 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, true))); in TEST_F()
362 EXPECT_FALSE(IsBodyTripCount(CreateTripCount(100, true, false))); in TEST_F()
363 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, true))); in TEST_F()
364 EXPECT_TRUE(IsBodyTripCount(CreateTripCount(100, false, false))); in TEST_F()
367 EXPECT_FALSE(IsUnsafeTripCount(CreateTripCount(100, true, true))); in TEST_F()
368 EXPECT_TRUE(IsUnsafeTripCount(CreateTripCount(100, true, false))); in TEST_F()
369 EXPECT_FALSE(IsUnsafeTripCount(CreateTripCount(100, false, true))); in TEST_F()
370 EXPECT_TRUE(IsUnsafeTripCount(CreateTripCount(100, false, false))); in TEST_F()
[all …]
Dinduction_var_analysis.h136 InductionInfo* CreateTripCount(InductionOp op, in CreateTripCount() function
Dinduction_var_analysis.cc1050 AssignInfo(loop, control, CreateTripCount(tcKind, trip_count, taken_test, type)); in VisitTripCount()