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

  /art/compiler/optimizing/
pretty_printer.h 73 PrintInt(block->GetBlockId());
78 PrintInt(predecessors.Get(i)->GetBlockId());
81 PrintInt(predecessors.Peek()->GetBlockId());
87 PrintInt(successors.Get(i)->GetBlockId());
90 PrintInt(successors.Peek()->GetBlockId());
134 PrintInt(current_block_->GetSuccessors().Get(0)->GetBlockId());
ssa_builder.h 39 HEnvironment* env = locals_for_.Get(block->GetBlockId());
43 locals_for_.Put(block->GetBlockId(), env);
nodes.cc 53 int id = block->GetBlockId();
60 if (visiting->IsBitSet(successor->GetBlockId())) {
99 visited.SetBit(first->GetBlockId());
104 if (visited.IsBitSet(second->GetBlockId())) {
122 visits->Increment(block->GetBlockId());
125 if (visits->Get(block->GetBlockId()) ==
235 if (blocks_.IsBitSet(block->GetBlockId())) {
239 blocks_.SetBit(block->GetBlockId());
260 blocks_.SetBit(header_->GetBlockId());
271 return blocks_.IsBitSet(block.GetBlockId());
    [all...]
graph_visualizer.cc 89 output_ << " \"B" << predecessor->GetBlockId() << "\" ";
99 output_ << " \"B" << successor->GetBlockId() << "\" ";
193 PrintProperty("name", "B", block->GetBlockId());
207 PrintProperty("dominator", "B", block->GetDominator()->GetBlockId());
ssa_liveness_analysis.cc 53 if (visited->IsBitSet(block->GetBlockId())) {
56 visited->SetBit(block->GetBlockId());
149 block->GetBlockId(),
linearize_test.cc 54 ASSERT_EQ(liveness.GetLinearPostOrder().Get(number_of_blocks - i - 1)->GetBlockId(),
code_generator.cc 247 return current->GetBlockId() + 1 == next->GetBlockId();
251 return block_labels_.GetRawStorage() + block->GetBlockId();
dominator_test.cc 41 ASSERT_EQ(blocks[i], graph->GetBlocks().Get(i)->GetDominator()->GetBlockId());
ssa_liveness_analysis.h 483 return &block_infos_.Get(block.GetBlockId())->live_in_;
487 return &block_infos_.Get(block.GetBlockId())->live_out_;
491 return &block_infos_.Get(block.GetBlockId())->kill_;
liveness_test.cc 59 buffer << "Block " << block->GetBlockId() << std::endl;
find_loops_test.cc 121 ASSERT_EQ(block->GetLoopInformation()->GetHeader()->GetBlockId(), parent_loop_header_id);
nodes.h 290 int GetBlockId() const { return block_id_; }
    [all...]

Completed in 77 milliseconds