Lines Matching refs:allocator
2048 ArenaAllocator* allocator = outer_graph->GetArena();
2112 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2117 return_value = new (allocator) HPhi(
2118 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc());
2127 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2507 ArenaAllocator* allocator = GetArena();
2516 case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break;
2517 case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break;
2518 case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break;
2519 case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break;
2520 case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break;
2521 case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break;
2522 case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break;
2523 case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break;
2524 case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break;
2525 case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break;
2541 HInstruction* replacement = new (allocator) HBooleanNot(cond);