Home
last modified time | relevance | path

Searched refs:CanGenerateLastValue (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_range.h119 bool CanGenerateLastValue(HInstruction* instruction);
Dinduction_var_range_test.cc783 EXPECT_TRUE(range_.CanGenerateLastValue(phi)); in TEST_F()
785 EXPECT_FALSE(range_.CanGenerateLastValue(exit)); in TEST_F()
835 EXPECT_TRUE(range_.CanGenerateLastValue(phi)); in TEST_F()
837 EXPECT_FALSE(range_.CanGenerateLastValue(exit)); in TEST_F()
Dinduction_var_range.cc299 bool InductionVarRange::CanGenerateLastValue(HInstruction* instruction) { in CanGenerateLastValue() function in art::InductionVarRange
Dloop_optimization.cc2449 if (induction_range_.CanGenerateLastValue(instruction)) { in TryReplaceWithLastValue()