Lines Matching refs:GetAllocator

37     AddParameter(new (GetAllocator()) HParameterValue(graph_->GetDexFile(),  in InitGraphAndParameters()
72 HPhi* phi = new (GetAllocator()) HPhi(GetAllocator(), 0, 0, DataType::Type::kInt32); in CreateBasicLoopDataFlow()
73 HInstruction* suspend_check = new (GetAllocator()) HSuspendCheck(); in CreateBasicLoopDataFlow()
74 HInstruction* loop_check = new (GetAllocator()) HGreaterThanOrEqual(phi, const_128); in CreateBasicLoopDataFlow()
79 loop_header->AddInstruction(new (GetAllocator()) HIf(loop_check)); in CreateBasicLoopDataFlow()
82 HInstruction* null_check = new (GetAllocator()) HNullCheck(parameters_[0], dex_pc); in CreateBasicLoopDataFlow()
83 HInstruction* array_length = new (GetAllocator()) HArrayLength(null_check, dex_pc); in CreateBasicLoopDataFlow()
84 HInstruction* bounds_check = new (GetAllocator()) HBoundsCheck(phi, array_length, dex_pc); in CreateBasicLoopDataFlow()
86 new (GetAllocator()) HArrayGet(null_check, bounds_check, DataType::Type::kInt32, dex_pc); in CreateBasicLoopDataFlow()
87 HInstruction* add = new (GetAllocator()) HAdd(DataType::Type::kInt32, array_get, const_1); in CreateBasicLoopDataFlow()
88 HInstruction* array_set = new (GetAllocator()) HArraySet( in CreateBasicLoopDataFlow()
90 HInstruction* induction_inc = new (GetAllocator()) HAdd(DataType::Type::kInt32, phi, const_1); in CreateBasicLoopDataFlow()
99 loop_body->AddInstruction(new (GetAllocator()) HGoto()); in CreateBasicLoopDataFlow()
108 GetAllocator()->Adapter(kArenaAllocInstruction)); in CreateBasicLoopDataFlow()
150 ArenaAllocator* arena = GetAllocator(); in TEST_F()
231 ArenaAllocator* arena = GetAllocator(); in TEST_F()
270 ArenaAllocator* arena = GetAllocator(); in TEST_F()
302 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
304 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
339 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
341 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
376 std::less<HBasicBlock*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
378 std::less<HInstruction*>(), graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
430 if_block->AddInstruction(new (GetAllocator()) HIf(parameters_[0])); in TEST_F()
435 HInstruction* temp_add = new (GetAllocator()) HAdd(DataType::Type::kInt32, in TEST_F()
439 temp1->AddInstruction(new (GetAllocator()) HGoto()); in TEST_F()
594 loop3_extra_if_block->AddInstruction(new (GetAllocator()) HIf(parameters_[0])); in TEST_F()
626 ArenaAllocator* arena = GetAllocator(); in TEST_F()
639 HEdgeSet remap_orig_internal(graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
640 HEdgeSet remap_copy_internal(graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()
641 HEdgeSet remap_incoming(graph_->GetAllocator()->Adapter(kArenaAllocSuperblockCloner)); in TEST_F()