Lines Matching refs:basic_

109       basic_[d] = new (GetAllocator()) HPhi(GetAllocator(), d, 0, DataType::Type::kInt32);  in BuildLoopNest()
111 loop_header_[d]->AddPhi(basic_[d]); in BuildLoopNest()
112 HInstruction* compare = new (GetAllocator()) HLessThan(basic_[d], constant100_); in BuildLoopNest()
115 increment_[d] = new (GetAllocator()) HAdd(DataType::Type::kInt32, basic_[d], constant1_); in BuildLoopNest()
119 basic_[d]->AddInput(constant0_); in BuildLoopNest()
120 basic_[d]->AddInput(increment_[d]); in BuildLoopNest()
224 HPhi* basic_[10]; // "vreg_d", the "i_d" member in art::InductionVarAnalysisTest
261 HInstruction* store = InsertArrayStore(basic_[0], 0); in TEST_F()
285 new (GetAllocator()) HAdd(DataType::Type::kInt32, constant100_, basic_[0]), 0); in TEST_F()
287 new (GetAllocator()) HSub(DataType::Type::kInt32, constant100_, basic_[0]), 0); in TEST_F()
289 new (GetAllocator()) HMul(DataType::Type::kInt32, constant100_, basic_[0]), 0); in TEST_F()
291 new (GetAllocator()) HShl(DataType::Type::kInt32, basic_[0], constant1_), 0); in TEST_F()
293 new (GetAllocator()) HNeg(DataType::Type::kInt32, basic_[0]), 0); in TEST_F()
383 HInstruction* inc1 = new (GetAllocator()) HAdd(DataType::Type::kInt32, basic_[0], constant1_); in TEST_F()
387 HInstruction* inc2 = new (GetAllocator()) HAdd(DataType::Type::kInt32, basic_[0], constant1_); in TEST_F()
411 new (GetAllocator()) HAdd(DataType::Type::kInt32, basic_[0], basic_[0]), 0); in TEST_F()
413 new (GetAllocator()) HAdd(DataType::Type::kInt32, constant7_, basic_[0]), 0); in TEST_F()
418 EXPECT_STREQ("((1) * i + (0)):Int32", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
437 new (GetAllocator()) HMul(DataType::Type::kInt32, basic_[0], constant2_), 0); in TEST_F()
478 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, basic_[0]), 0); in TEST_F()
515 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, basic_[0]), 0); in TEST_F()
730 new (GetAllocator()) HSub(DataType::Type::kInt32, constant100_, basic_[0]), 0); in TEST_F()
759 new (GetAllocator()) HSub(DataType::Type::kInt32, constant100_, basic_[0], 0), 0); in TEST_F()
794 new (GetAllocator()) HShl(DataType::Type::kInt32, basic_[0], constant1_), 0); in TEST_F()
1090 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, basic_[0], kNoDexPc), 0); in TEST_F()
1092 HInstruction* store2 = InsertArrayStore(basic_[0], 0); in TEST_F()
1121 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, basic_[0], kNoDexPc), 0); in TEST_F()
1216 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0); in TEST_F()
1222 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1226 EXPECT_STREQ("((1) * i + (-128)):Int8", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1230 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()
1242 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0); in TEST_F()
1248 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1252 EXPECT_STREQ("((1) * i + (-128)):Int8", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1256 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()
1268 basic_[0]->ReplaceInput(graph_->GetIntConstant(-32768), 0); in TEST_F()
1274 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1278 EXPECT_STREQ("((1) * i + (-32768)):Int16", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1282 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()
1294 basic_[0]->ReplaceInput(graph_->GetIntConstant(-32768), 0); in TEST_F()
1300 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1304 EXPECT_STREQ("((1) * i + (-32768)):Int16", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1308 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()
1325 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1329 EXPECT_STREQ("((1) * i + (0)):Uint16", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1333 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()
1350 basic_[0]->ReplaceInput(conv, 1); in TEST_F()
1354 EXPECT_STREQ("((1) * i + (0)):Uint16", GetInductionInfo(basic_[0], 0).c_str()); in TEST_F()
1358 EXPECT_TRUE(IsNarrowingLinear(basic_[0])); in TEST_F()