Lines Matching refs:GetAllocator

53     loop_preheader_[d] = new (GetAllocator()) HBasicBlock(graph_);  in BuildForLoop()
55 loop_header_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop()
61 loop_body_[d] = new (GetAllocator()) HBasicBlock(graph_); in BuildForLoop()
80 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
83 return_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
85 exit_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
94 parameter_ = new (GetAllocator()) HParameterValue( in BuildLoopNest()
104 return_->AddInstruction(new (GetAllocator()) HReturnVoid()); in BuildLoopNest()
105 exit_->AddInstruction(new (GetAllocator()) HExit()); in BuildLoopNest()
109 basic_[d] = new (GetAllocator()) HPhi(GetAllocator(), d, 0, DataType::Type::kInt32); in BuildLoopNest()
110 loop_preheader_[d]->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoopNest()
112 HInstruction* compare = new (GetAllocator()) HLessThan(basic_[d], constant100_); in BuildLoopNest()
114 loop_header_[d]->AddInstruction(new (GetAllocator()) HIf(compare)); in BuildLoopNest()
115 increment_[d] = new (GetAllocator()) HAdd(DataType::Type::kInt32, basic_[d], constant1_); in BuildLoopNest()
117 loop_body_[d]->AddInstruction(new (GetAllocator()) HGoto()); in BuildLoopNest()
126 HBasicBlock* cond = new (GetAllocator()) HBasicBlock(graph_); in BuildIf()
127 HBasicBlock* ifTrue = new (GetAllocator()) HBasicBlock(graph_); in BuildIf()
128 HBasicBlock* ifFalse = new (GetAllocator()) HBasicBlock(graph_); in BuildIf()
138 cond->AddInstruction(new (GetAllocator()) HIf(parameter_)); in BuildIf()
142 HPhi* select_phi = new (GetAllocator()) HPhi(GetAllocator(), -1, 0, DataType::Type::kInt32); in BuildIf()
155 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), vreg, 0, DataType::Type::kInt32); in InsertLoopPhi()
165 return InsertInstruction(new (GetAllocator()) HArraySet( in InsertArrayStore()
198 iva_ = new (GetAllocator()) HInductionVarAnalysis(graph_); in PerformInductionVarAnalysis()
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()
317 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
320 new (GetAllocator()) HSub(DataType::Type::kInt32, add, constant1_), 0); in TEST_F()
350 HInstruction* inc1 = new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant1_); in TEST_F()
354 HInstruction* inc2 = new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant1_); 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()
415 new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, add2), 0); in TEST_F()
437 new (GetAllocator()) HMul(DataType::Type::kInt32, basic_[0], constant2_), 0); in TEST_F()
439 new (GetAllocator()) HAdd(DataType::Type::kInt32, constant100_, mul), 0); in TEST_F()
441 new (GetAllocator()) HAdd(DataType::Type::kInt32, add, k_header), 0); in TEST_F()
468 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
470 new (GetAllocator()) HSub(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
472 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
474 new (GetAllocator()) HMul(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
476 new (GetAllocator()) HShl(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
478 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, basic_[0]), 0); in TEST_F()
511 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, k_header), 0); in TEST_F()
513 new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, k_header), 0); in TEST_F()
515 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, basic_[0]), 0); in TEST_F()
541 new (GetAllocator()) HMul(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
566 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
568 new (GetAllocator()) HShl(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
570 new (GetAllocator()) HAdd(DataType::Type::kInt32, shl1, constant100_), 0); in TEST_F()
572 new (GetAllocator()) HSub(DataType::Type::kInt32, shl1, constant1_), 0); in TEST_F()
574 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
576 new (GetAllocator()) HMul(DataType::Type::kInt32, shl1, constant2_), 0); in TEST_F()
578 new (GetAllocator()) HShl(DataType::Type::kInt32, shl1, constant2_), 0); in TEST_F()
609 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
611 new (GetAllocator()) HSub(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
613 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
615 new (GetAllocator()) HMul(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
617 new (GetAllocator()) HShl(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
619 new (GetAllocator()) HDiv(DataType::Type::kInt32, k_header, constant100_, kNoDexPc), 0); in TEST_F()
644 new (GetAllocator()) HShr(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
664 new (GetAllocator()) HShr(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
688 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
690 new (GetAllocator()) HSub(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
692 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
694 new (GetAllocator()) HMul(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
696 new (GetAllocator()) HShl(DataType::Type::kInt32, k_header, constant2_), 0); in TEST_F()
698 new (GetAllocator()) HRem(DataType::Type::kInt32, k_header, constant7_, kNoDexPc), 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()
784 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
786 new (GetAllocator()) HSub(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
788 new (GetAllocator()) HMul(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
790 new (GetAllocator()) HShl(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
792 new (GetAllocator()) HNeg(DataType::Type::kInt32, k_header), 0); in TEST_F()
794 new (GetAllocator()) HShl(DataType::Type::kInt32, basic_[0], constant1_), 0); in TEST_F()
796 new (GetAllocator()) HNeg(DataType::Type::kInt32, shl2), 0); in TEST_F()
855 new (GetAllocator()) HSub(DataType::Type::kInt32, constant1_, k_header), 0); in TEST_F()
876 new (GetAllocator()) HXor(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
895 new (GetAllocator()) HXor(DataType::Type::kInt32, constant1_, k_header), 0); in TEST_F()
914 new (GetAllocator()) HXor(DataType::Type::kInt32, k_header, constant100_), 0); in TEST_F()
932 HInstruction* x = InsertInstruction(new (GetAllocator()) HEqual(k_header, constant0_), 0); in TEST_F()
950 HInstruction* x = InsertInstruction(new (GetAllocator()) HEqual(constant0_, k_header), 0); in TEST_F()
968 HInstruction* x = InsertInstruction(new (GetAllocator()) HNotEqual(k_header, constant1_), 0); in TEST_F()
986 HInstruction* x = InsertInstruction(new (GetAllocator()) HNotEqual(constant1_, k_header), 0); in TEST_F()
1011 new (GetAllocator()) HNeg(DataType::Type::kInt32, k_header), 0); in TEST_F()
1013 new (GetAllocator()) HSub(DataType::Type::kInt32, constant1_, k_header), 0); in TEST_F()
1015 new (GetAllocator()) HAdd(DataType::Type::kInt32, idiom, constant100_), 0); in TEST_F()
1017 new (GetAllocator()) HSub(DataType::Type::kInt32, idiom, constant100_), 0); in TEST_F()
1019 new (GetAllocator()) HMul(DataType::Type::kInt32, idiom, constant100_), 0); in TEST_F()
1021 new (GetAllocator()) HShl(DataType::Type::kInt32, idiom, constant1_), 0); in TEST_F()
1023 new (GetAllocator()) HNeg(DataType::Type::kInt32, idiom), 0); in TEST_F()
1056 new (GetAllocator()) HAdd(DataType::Type::kInt32, constant1_, k_header[9]), 9); in TEST_F()
1090 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, basic_[0], kNoDexPc), 0); in TEST_F()
1121 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, basic_[0], kNoDexPc), 0); in TEST_F()
1124 new (GetAllocator()) HAdd(DataType::Type::kInt32, conv, constant1_), 0); in TEST_F()
1151 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
1153 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, add, kNoDexPc), 0); in TEST_F()
1179 new (GetAllocator()) HAdd(DataType::Type::kInt32, k_header, constant1_), 0); in TEST_F()
1181 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, add, kNoDexPc), 0); in TEST_F()
1201 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, k_header, kNoDexPc), 0); in TEST_F()
1203 new (GetAllocator()) HAdd(DataType::Type::kInt32, conv, constant1_), 0); in TEST_F()
1220 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, increment_[0], kNoDexPc); in TEST_F()
1246 new (GetAllocator()) HTypeConversion(DataType::Type::kInt8, increment_[0], kNoDexPc); in TEST_F()
1272 new (GetAllocator()) HTypeConversion(DataType::Type::kInt16, increment_[0], kNoDexPc); in TEST_F()
1298 new (GetAllocator()) HTypeConversion(DataType::Type::kInt16, increment_[0], kNoDexPc); in TEST_F()
1323 new (GetAllocator()) HTypeConversion(DataType::Type::kUint16, increment_[0], kNoDexPc); in TEST_F()
1348 new (GetAllocator()) HTypeConversion(DataType::Type::kUint16, increment_[0], kNoDexPc); in TEST_F()