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

1 2

  /art/compiler/optimizing/
side_effects_analysis.cc 54 block_effects_[block->GetBlockId()] = effects;
76 return loop_effects_[block->GetBlockId()];
80 return block_effects_[block->GetBlockId()];
84 uint32_t id = info->GetHeader()->GetBlockId();
graph_checker.cc 68 block->GetBlockId(), p_count_in_block_predecessors, p->GetBlockId(),
69 p->GetBlockId(), block_count_in_p_successors, block->GetBlockId()));
91 block->GetBlockId(), s_count_in_block_successors, s->GetBlockId(),
92 s->GetBlockId(), block_count_in_s_predecessors, block->GetBlockId()));
102 block->GetBlockId()));
126 current_block_->GetBlockId()));
    [all...]
pretty_printer.h 75 PrintInt(block->GetBlockId());
80 PrintInt(predecessors[i]->GetBlockId());
83 PrintInt(predecessors.back()->GetBlockId());
89 PrintInt(successors[i]->GetBlockId());
92 PrintInt(successors.back()->GetBlockId());
136 PrintInt(current_block_->GetSuccessors()[0]->GetBlockId());
code_sinking.cc 116 if (!discard_blocks.IsBitSet(instruction->GetBlock()->GetBlockId()) &&
150 !post_dominated.IsBitSet(user->GetBlock()->GetBlockId());
154 !post_dominated.IsBitSet(user->GetBlock()->GetBlockId());
199 if (!post_dominated.IsBitSet(target_block->GetDominator()->GetBlockId())) {
261 post_dominated.SetBit(block->GetBlockId());
269 if (!post_dominated.IsBitSet(successor->GetBlockId())) {
276 post_dominated.SetBit(block->GetBlockId());
308 if (!post_dominated.IsBitSet(user->GetBlock()->GetBlockId()) &&
331 if (!post_dominated.IsBitSet(user->GetBlock()->GetBlockId())) {
361 if (!post_dominated.IsBitSet(user->GetBlock()->GetBlockId())) {
    [all...]
gvn.cc 375 ValueSet* result = sets_[block->GetBlockId()];
376 DCHECK(result != nullptr) << "Could not find set for block B" << block->GetBlockId();
381 DCHECK(sets_[block->GetBlockId()] != nullptr)
382 << "Block B" << block->GetBlockId() << " expected to have a set";
383 sets_[block->GetBlockId()] = nullptr;
410 sets_[graph_->GetEntryBlock()->GetBlockId()] = new (allocator_) ValueSet(allocator_);
481 sets_[block->GetBlockId()] = set;
513 visited_blocks_.SetBit(block->GetBlockId());
517 DCHECK(visited_blocks_.IsBitSet(block->GetBlockId()));
520 if (!visited_blocks_.IsBitSet(dominated_block->GetBlockId())) {
    [all...]
cha_guard_optimization.cc 139 if (block_has_cha_guard_[dominator->GetBlockId()] == 1) {
210 block_has_cha_guard_[pre_header->GetBlockId()] = 1;
240 block_has_cha_guard_[flag->GetBlock()->GetBlockId()] = 1;
linear_order.cc 102 forward_predecessors[block->GetBlockId()] = number_of_forward_predecessors;
116 int block_id = successor->GetBlockId();
load_store_elimination.cc 141 int block_id = block->GetBlockId();
157 heap_values_for_[pre_header->GetBlockId()];
192 ArenaVector<HInstruction*>& heap_values = heap_values_for_[block->GetBlockId()];
206 HInstruction* pred_value = heap_values_for_[predecessor->GetBlockId()][i];
230 ArenaVector<HInstruction*>& pred_values = heap_values_for_[predecessor->GetBlockId()];
299 heap_values_for_[instruction->GetBlock()->GetBlockId()];
366 heap_values_for_[instruction->GetBlock()->GetBlockId()];
493 heap_values_for_[instruction->GetBlock()->GetBlockId()];
520 heap_values_for_[invoke->GetBlock()->GetBlockId()];
587 heap_values_for_[new_instance->GetBlock()->GetBlockId()];
    [all...]
dead_code_elimination.cc 30 visited->SetBit(graph->GetEntryBlock()->GetBlockId());
36 int block_id = block->GetBlockId();
77 if (!visited->IsBitSet(successor->GetBlockId())) {
78 visited->SetBit(successor->GetBlockId());
320 int id = block->GetBlockId();
licm.cc 109 DCHECK(visited->IsBitSet(inner->GetBlockId()));
113 visited->SetBit(inner->GetBlockId());
block_builder.cc 204 auto iterator = try_block_info.find(block->GetBlockId());
275 try_block_info.Put(block->GetBlockId(), DexFile::GetTryItems(code_item_, try_item_idx));
303 bool is_try_block = (try_block_info.find(catch_block->GetBlockId()) != try_block_info.end());
graph_visualizer.cc 269 output_ << " \"B" << predecessor->GetBlockId() << "\" ";
281 output_ << " \"B" << successor->GetBlockId() << "\" ";
290 output_ << " \"B" << handler->GetBlockId() << "\" ";
630 StartAttributeStream("loop") << "B" << loop_info->GetHeader()->GetBlockId();
633 StartAttributeStream("outer_loop") << "B" << outer->GetHeader()->GetBlockId();
729 GetGraph()->GetEntryBlock()->GetBlockId());
749 GetGraph()->HasExitBlock() ? GetGraph()->GetExitBlock()->GetBlockId() : -1,
780 PrintProperty("name", "B", block->GetBlockId());
800 PrintProperty("dominator", "B", block->GetDominator()->GetBlockId());
    [all...]
scheduler.cc 301 << " is in block " << other->GetBlock()->GetBlockId()
302 << ", and expected in block " << instruction->GetBlock()->GetBlockId();
581 << " is in block " << instruction->GetBlock()->GetBlockId()
582 << ", and expected in block " << block->GetBlockId();
620 << " B" << block->GetBlockId();
linearize_test.cc 50 ASSERT_EQ(graph->GetLinearOrder()[i]->GetBlockId(), expected_order[i]);
nodes.cc 68 visited->SetBit(entry_block_->GetBlockId());
69 visiting.SetBit(entry_block_->GetBlockId());
74 uint32_t current_id = current->GetBlockId();
80 uint32_t successor_id = successor->GetBlockId();
245 uint32_t current_id = current->GetBlockId();
254 if (++visits[successor->GetBlockId()] ==
461 os << "header: " << header_->GetBlockId() << std::endl;
462 os << "pre header: " << GetPreHeader()->GetBlockId() << std::endl;
464 os << "back edge: " << block->GetBlockId() << std::endl;
467 os << "predecessor: " << block->GetBlockId() << std::endl
    [all...]
dominator_test.cc 45 ASSERT_EQ(blocks[i], graph->GetBlocks()[i]->GetDominator()->GetBlockId());
liveness_test.cc 60 buffer << "Block " << block->GetBlockId() << std::endl;
bounds_check_elimination.cc 506 return block->GetBlockId() >= initial_block_size_;
577 return &maps_[basic_block->GetBlockId()];
    [all...]
ssa_liveness_analysis.h     [all...]
find_loops_test.cc 118 ASSERT_EQ(block->GetLoopInformation()->GetHeader()->GetBlockId(), parent_loop_header_id);
register_allocation_resolver.cc 445 << " " << from->GetBlockId() << " -> " << to->GetBlockId();
ssa_liveness_analysis.cc 91 block_infos_[block->GetBlockId()] =
code_generator.h 671 return raw_pointer_to_labels_array + block->GetBlockId();
    [all...]
code_generator_arm64.h 421 return &(block_labels_[block->GetBlockId()]);
    [all...]
code_generator_arm_vixl.h 512 return &(block_labels_[block->GetBlockId()]);
    [all...]

Completed in 559 milliseconds

1 2