Searched refs:add2 (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | scheduler_test.cc | 103 HInstruction* add2 = new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, c2); in TestBuildDependencyGraphAndSchedule() local 104 HInstruction* mul = new (GetAllocator()) HMul(DataType::Type::kInt32, add1, add2); in TestBuildDependencyGraphAndSchedule() 105 HInstruction* div_check = new (GetAllocator()) HDivZeroCheck(add2, 0); in TestBuildDependencyGraphAndSchedule() 110 new (GetAllocator()) HArraySet(array, add1, add2, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() 114 new (GetAllocator()) HArraySet(array, add1, add2, DataType::Type::kInt32, 0); in TestBuildDependencyGraphAndSchedule() 121 add2, in TestBuildDependencyGraphAndSchedule() 139 environment->SetRawEnvAt(0, add2); in TestBuildDependencyGraphAndSchedule() 140 add2->AddEnvUseAt(div_check->GetEnvironment(), 0); in TestBuildDependencyGraphAndSchedule() 152 ASSERT_FALSE(scheduling_graph.HasImmediateDataDependency(add2, c2)); in TestBuildDependencyGraphAndSchedule() 155 ASSERT_TRUE(scheduling_graph.HasImmediateDataDependency(add2, add1)); in TestBuildDependencyGraphAndSchedule() [all …]
|
D | induction_var_analysis_test.cc | 413 HInstruction* add2 = InsertInstruction( in TEST_F() local 416 new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, add2), 0); in TEST_F() 421 EXPECT_STREQ("((1) * i + (7)):Int32", GetInductionInfo(add2, 0).c_str()); in TEST_F() 513 HInstruction* add2 = InsertInstruction( in TEST_F() local 527 GetInductionInfo(add2, 0).c_str()); in TEST_F() 570 HInstruction* add2 = InsertInstruction( in TEST_F() local 586 EXPECT_STREQ("geo((2) * 2 ^ i + (100)):Int32", GetInductionInfo(add2, 0).c_str()); in TEST_F()
|