Searched refs:GetBlockId (Results 1 – 18 of 18) sorted by relevance
/art/compiler/optimizing/ |
D | graph_checker.cc | 52 block->GetBlockId(), p_count_in_block_predecessors, p->GetBlockId(), in VisitBasicBlock() 53 p->GetBlockId(), block_count_in_p_successors, block->GetBlockId())); in VisitBasicBlock() 78 block->GetBlockId(), s_count_in_block_successors, s->GetBlockId(), in VisitBasicBlock() 79 s->GetBlockId(), block_count_in_s_predecessors, block->GetBlockId())); in VisitBasicBlock() 86 block->GetBlockId())); in VisitBasicBlock() 95 current_block_->GetBlockId())); in VisitBasicBlock() 100 current_block_->GetBlockId(), in VisitBasicBlock() 112 current_block_->GetBlockId())); in VisitBasicBlock() 117 current_block_->GetBlockId(), in VisitBasicBlock() 149 current_block_->GetBlockId())); in VisitInstruction() [all …]
|
D | pretty_printer.h | 73 PrintInt(block->GetBlockId()); in VisitBasicBlock() 78 PrintInt(predecessors.Get(i)->GetBlockId()); in VisitBasicBlock() 81 PrintInt(predecessors.Peek()->GetBlockId()); in VisitBasicBlock() 87 PrintInt(successors.Get(i)->GetBlockId()); in VisitBasicBlock() 90 PrintInt(successors.Peek()->GetBlockId()); in VisitBasicBlock() 134 PrintInt(current_block_->GetSuccessors().Get(0)->GetBlockId()); in VisitGoto()
|
D | side_effects_analysis.cc | 54 block_effects_.Put(block->GetBlockId(), effects); in Run() 76 return loop_effects_.Get(block->GetBlockId()); in GetLoopEffects() 80 return block_effects_.Get(block->GetBlockId()); in GetBlockEffects() 84 int id = info->GetHeader()->GetBlockId(); in UpdateLoopEffects()
|
D | dead_code_elimination.cc | 24 int block_id = block->GetBlockId(); in MarkReachableBlocks() 52 set->SetBit(it.Current()->GetHeader()->GetBlockId()); in MarkLoopHeadersContaining() 77 int id = block->GetBlockId(); in RemoveDeadBlocks()
|
D | ssa_builder.h | 62 GrowableArray<HInstruction*>* locals = locals_for_.Get(block->GetBlockId()); in GetLocalsFor() 67 locals_for_.Put(block->GetBlockId(), locals); in GetLocalsFor()
|
D | graph_visualizer.cc | 113 output_ << " \"B" << predecessor->GetBlockId() << "\" "; in PrintPredecessors() 123 output_ << " \"B" << successor->GetBlockId() << "\" "; in PrintSuccessors() 264 output_ << "B" << info->GetHeader()->GetBlockId() << " )"; in PrintInstruction() 298 PrintProperty("name", "B", block->GetBlockId()); in VisitBasicBlock() 312 PrintProperty("dominator", "B", block->GetDominator()->GetBlockId()); in VisitBasicBlock()
|
D | licm.cc | 102 DCHECK(visited.IsBitSet(inner->GetBlockId())); in Run() 105 visited.SetBit(inner->GetBlockId()); in Run()
|
D | gvn.cc | 332 sets_.Put(graph_->GetEntryBlock()->GetBlockId(), new (allocator_) ValueSet(allocator_)); in Run() 351 ValueSet* dominator_set = sets_.Get(dominator->GetBlockId()); in VisitBasicBlock() 366 set->IntersectWith(sets_.Get(predecessors.Get(i)->GetBlockId())); in VisitBasicBlock() 375 sets_.Put(block->GetBlockId(), set); in VisitBasicBlock()
|
D | nodes.cc | 83 int id = block->GetBlockId(); in VisitBlockForBackEdges() 90 if (visiting->IsBitSet(successor->GetBlockId())) { in VisitBlockForBackEdges() 149 visited.SetBit(first->GetBlockId()); in FindCommonDominator() 154 if (visited.IsBitSet(second->GetBlockId())) { in FindCommonDominator() 172 visits->Increment(block->GetBlockId()); in VisitBlockForDominatorTree() 175 if (visits->Get(block->GetBlockId()) == in VisitBlockForDominatorTree() 350 blocks_.SetBit(block->GetBlockId()); in Add() 354 blocks_.ClearBit(block->GetBlockId()); in Remove() 358 if (blocks_.IsBitSet(block->GetBlockId())) { in PopulateRecursive() 362 blocks_.SetBit(block->GetBlockId()); in PopulateRecursive() [all …]
|
D | linearize_test.cc | 58 ASSERT_EQ(graph->GetLinearOrder().Get(i)->GetBlockId(), expected_order[i]); in TestCode()
|
D | ssa_liveness_analysis.cc | 80 forward_predecessors.Put(block->GetBlockId(), number_of_forward_predecessors); in LinearizeGraph() 94 int block_id = successor->GetBlockId(); in LinearizeGraph() 162 block->GetBlockId(), in ComputeLiveness()
|
D | dominator_test.cc | 48 ASSERT_EQ(blocks[i], graph->GetBlocks().Get(i)->GetDominator()->GetBlockId()); in TestCode()
|
D | liveness_test.cc | 66 buffer << "Block " << block->GetBlockId() << std::endl; in TestCode()
|
D | ssa_liveness_analysis.h | 1108 return &block_infos_.Get(block.GetBlockId())->live_in_; in GetLiveInSet() 1112 return &block_infos_.Get(block.GetBlockId())->live_out_; in GetLiveOutSet() 1116 return &block_infos_.Get(block.GetBlockId())->kill_; in GetKillSet()
|
D | find_loops_test.cc | 126 ASSERT_EQ(block->GetLoopInformation()->GetHeader()->GetBlockId(), parent_loop_header_id); in TestBlock()
|
D | code_generator.h | 409 return raw_pointer_to_labels_array + block->GetBlockId(); in CommonGetLabelOf()
|
D | bounds_check_elimination.cc | 1109 return block->GetBlockId() >= initial_block_size_; in IsAddedBlock() 1136 int block_id = basic_block->GetBlockId(); in GetValueRangeMap()
|
D | nodes.h | 536 int GetBlockId() const { return block_id_; } in GetBlockId() function 4124 if (!blocks_in_loop_.IsBitSet(blocks_.Get(index_)->GetBlockId())) { in HBlocksInLoopReversePostOrderIterator() 4134 if (blocks_in_loop_.IsBitSet(blocks_.Get(index_)->GetBlockId())) { in Advance()
|