Home
last modified time | relevance | path

Searched refs:GetEntryBlock (Results 1 – 21 of 21) sorted by relevance

/art/compiler/optimizing/
Dexecution_subgraph.cc120 const HBasicBlock* cur_block = graph_->GetEntryBlock(); in Prune()
142 DCHECK_GE(last_succ_seen[graph_->GetEntryBlock()->GetBlockId()], in Prune()
143 static_cast<ssize_t>(graph_->GetEntryBlock()->GetSuccessors().size())); in Prune()
161 ssize_t num_entry_succ = graph_->GetEntryBlock()->GetSuccessors().size(); in Prune()
164 const uint32_t entry_block_id = graph_->GetEntryBlock()->GetBlockId(); in Prune()
168 DCHECK((current_path.empty() && cur_block == graph_->GetEntryBlock()) || in Prune()
169 current_path.front() == graph_->GetEntryBlock()->GetBlockId()) in Prune()
172 << graph_->GetEntryBlock()->GetBlockId(); in Prune()
230 blk != graph_->GetEntryBlock()) { in Prune()
Dsuspend_check_test.cc38 HBasicBlock* first_block = graph->GetEntryBlock()->GetSingleSuccessor(); in TestCode()
Dnodes_test.cc62 return b == graph_->GetEntryBlock() || b == nullptr || b->GetDominator() != nullptr; in TEST_F()
118 return b == graph_->GetEntryBlock() || b == nullptr || b->GetDominator() != nullptr; in TEST_F()
Dgraph_checker_test.cc105 graph->GetExitBlock()->RemovePredecessor(graph->GetEntryBlock()); in TEST_F()
Dlinear_order.cc112 worklist.push_back(graph->GetEntryBlock()); in LinearizeGraphInternal()
Ddead_code_elimination.cc35 visited->SetBit(graph->GetEntryBlock()->GetBlockId()); in MarkReachableBlocks()
36 worklist.push_back(graph->GetEntryBlock()); in MarkReachableBlocks()
Dblock_builder.cc147 HBasicBlock* block = graph_->GetEntryBlock(); in ConnectBasicBlocks()
250 DCHECK(!graph_->GetEntryBlock()->GetSuccessors().empty()) in MightHaveLiveNormalPredecessors()
Dpc_relative_fixups_x86.cc177 HBasicBlock* entry_block = GetGraph()->GetEntryBlock(); in GetPCRelativeBasePointer()
Dcodegen_test.cc456 HBasicBlock* block = graph_in->GetEntryBlock()->GetSuccessors()[0]; in TEST_F()
502 HBasicBlock* block = graph_in->GetEntryBlock()->GetSuccessors()[0]; in TEST_F()
571 HBasicBlock* block = graph_in->GetEntryBlock()->GetSuccessors()[0]; in TEST_F()
Dcode_sinking.cc48 if (instruction->GetBlock() == instruction->GetBlock()->GetGraph()->GetEntryBlock()) { in IsInterestingInstruction()
Dgvn.cc414 sets_[graph_->GetEntryBlock()->GetBlockId()] = new (&allocator_) ValueSet(&allocator_); in Run()
Dregister_allocator_test.cc445 LiveInterval* unhandled = graph->GetEntryBlock()->GetFirstInstruction()->GetLiveInterval(); in TEST_F()
451 graph->GetEntryBlock()->GetFirstInstruction()); in TEST_F()
Doptimizing_unit_test.h529 graph_->GetEntryBlock()->AddInstruction(val);
Dexecution_subgraph_test.cc49 worklist.push(graph->GetEntryBlock()); in CalculateValidity()
Dgraph_visualizer.cc831 GetGraph()->GetEntryBlock()->GetBlockId()); in DumpDisassemblyBlockForFrameEntry()
Dsuperblock_cloner.cc331 block_entry = graph_->GetEntryBlock(); in RecalculateBackEdgesInfo()
Dcode_generator.cc472 DCHECK(block_order[0] == GetGraph()->GetEntryBlock()); in InitializeCodeGeneration()
Dinliner.cc1711 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions()); in SubstituteArguments()
Dnodes.cc695 if (number_of_incomings != 1 || (GetEntryBlock()->GetSingleSuccessor() == header)) { in SimplifyLoop()
Dinstruction_builder.cc456 current_block_ = graph_->GetEntryBlock(); in BuildIntrinsic()
Dnodes.h448 HBasicBlock* GetEntryBlock() const { return entry_block_; } in GetEntryBlock() function
1121 return graph_->GetEntryBlock() == this; in IsEntryBlock()