HomeSort by relevance Sort by last modified time
    Searched refs:GetArena (Results 1 - 17 of 17) sorted by null

  /art/compiler/optimizing/
locations.cc 24 : inputs_(instruction->GetBlock()->GetGraph()->GetArena(), instruction->InputCount()),
25 temps_(instruction->GetBlock()->GetGraph()->GetArena(), 0) {
ssa_phi_elimination.h 31 : graph_(graph), worklist_(graph->GetArena(), kDefaultWorklistSize) {}
53 : graph_(graph), worklist_(graph->GetArena(), kDefaultWorklistSize) {}
ssa_builder.h 31 loop_headers_(graph->GetArena(), kDefaultNumberOfLoops),
32 locals_for_(graph->GetArena(), graph->GetBlocks().Size()) {
41 env = new (GetGraph()->GetArena()) HEnvironment(
42 GetGraph()->GetArena(), GetGraph()->GetNumberOfVRegs());
ssa_type_propagation.h 28 : graph_(graph), worklist_(graph->GetArena(), kDefaultWorklistSize) {}
ssa_builder.cc 75 HPhi* phi = new (GetGraph()->GetArena()) HPhi(
76 GetGraph()->GetArena(), local, 0, Primitive::kPrimVoid);
109 HPhi* phi = new (GetGraph()->GetArena()) HPhi(
110 GetGraph()->GetArena(), local, block->GetPredecessors().Size(), Primitive::kPrimVoid);
146 HEnvironment* environment = new (GetGraph()->GetArena()) HEnvironment(
147 GetGraph()->GetArena(), current_locals_->Size());
code_generator.h 146 block_labels_(graph->GetArena(), 0),
147 pc_infos_(graph->GetArena(), 32),
148 slow_paths_(graph->GetArena(), 8),
149 blocked_registers_(graph->GetArena()->AllocArray<bool>(number_of_registers)),
ssa_liveness_analysis.cc 88 ArenaBitVector visited(graph_.GetArena(), graph_.GetBlocks().Size(), false);
116 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current));
133 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current));
150 new (graph_.GetArena()) BlockInfo(graph_.GetArena(), *block, number_of_ssa_values_));
code_generator_x86_64.cc 153 move_resolver_(graph->GetArena(), this) {}
220 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86_64();
387 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
446 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
471 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(comp);
547 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(compare);
580 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
589 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
607 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
689 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(invoke)
    [all...]
code_generator_arm.cc 163 move_resolver_(graph->GetArena(), this),
271 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathARM();
548 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
598 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(comp);
698 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
723 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
732 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
750 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
798 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(invoke);
867 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(add)
    [all...]
code_generator_x86.cc 146 move_resolver_(graph->GetArena(), this) {}
254 SlowPathCode* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathX86();
506 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
567 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
592 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(comp);
668 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
677 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
696 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(ret);
744 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(invoke);
807 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(add)
    [all...]
optimizing_compiler.cc 143 RegisterAllocator register_allocator(graph->GetArena(), codegen, liveness);
ssa_liveness_analysis.h 472 linear_post_order_(graph.GetArena(), graph.GetBlocks().Size()),
473 block_infos_(graph.GetArena(), graph.GetBlocks().Size()),
474 instructions_from_ssa_index_(graph.GetArena(), 0),
475 instructions_from_lifetime_position_(graph.GetArena(), 0),
nodes.h 83 ArenaAllocator* GetArena() const { return arena_; }
194 back_edges_(graph->GetArena(), kDefaultNumberOfBackEdges),
195 blocks_(graph->GetArena(), graph->GetBlocks().Size(), false) {}
264 predecessors_(graph->GetArena(), kDefaultNumberOfPredecessors),
265 successors_(graph->GetArena(), kDefaultNumberOfSuccessors),
282 loop_information_ = new (graph_->GetArena()) HLoopInformation(this, graph_);
518 uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HInstruction>(user, index, uses_);
522 env_uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HEnvironment>(
    [all...]
builder.cc 53 HInstruction* temp = new (graph_->GetArena()) HTemporary(index_++);
  /art/compiler/dex/quick/
codegen_util.cc     [all...]
  /art/compiler/dex/
mir_graph.h 624 ArenaAllocator* GetArena() {
    [all...]
mir_graph.cc     [all...]

Completed in 628 milliseconds