Lines Matching refs:lower
72 void BuildLoop(int32_t lower, HInstruction* upper, int32_t stride) { in BuildLoop() argument
92 phi->AddInput(graph_->GetIntConstant(lower)); // i = l in BuildLoop()
646 HInstruction* lower = nullptr; in TEST_F() local
660 increment_, condition_->InputAt(0), graph_, loop_preheader_, &lower, &upper); in TEST_F()
663 ASSERT_TRUE(lower != nullptr); in TEST_F()
664 ASSERT_TRUE(lower->IsAdd()); in TEST_F()
665 ASSERT_TRUE(lower->InputAt(0)->IsIntConstant()); in TEST_F()
666 EXPECT_EQ(0, lower->InputAt(0)->AsIntConstant()->GetValue()); in TEST_F()
667 ASSERT_TRUE(lower->InputAt(1)->IsIntConstant()); in TEST_F()
668 EXPECT_EQ(0, lower->InputAt(1)->AsIntConstant()->GetValue()); in TEST_F()
716 HInstruction* lower = nullptr; in TEST_F() local
730 increment_, condition_->InputAt(0), graph_, loop_preheader_, &lower, &upper); in TEST_F()
733 ASSERT_TRUE(lower != nullptr); in TEST_F()
734 ASSERT_TRUE(lower->IsSub()); in TEST_F()
735 ASSERT_TRUE(lower->InputAt(0)->IsIntConstant()); in TEST_F()
736 EXPECT_EQ(1000, lower->InputAt(0)->AsIntConstant()->GetValue()); in TEST_F()
737 lower = lower->InputAt(1); in TEST_F()
738 ASSERT_TRUE(lower->IsSub()); in TEST_F()
739 ASSERT_TRUE(lower->InputAt(1)->IsIntConstant()); in TEST_F()
740 EXPECT_EQ(1, lower->InputAt(1)->AsIntConstant()->GetValue()); in TEST_F()
741 lower = lower->InputAt(0); in TEST_F()
742 ASSERT_TRUE(lower->IsSub()); in TEST_F()
743 ASSERT_TRUE(lower->InputAt(0)->IsIntConstant()); in TEST_F()
744 EXPECT_EQ(1000, lower->InputAt(0)->AsIntConstant()->GetValue()); in TEST_F()
745 EXPECT_TRUE(lower->InputAt(1)->IsParameterValue()); in TEST_F()