Home
last modified time | relevance | path

Searched refs:NullBasicBlockId (Results 1 – 8 of 8) sorted by relevance

/art/compiler/dex/
Dssa_transformation.cc64 if (block->id != NullBasicBlockId) { in MarkPreOrder()
84 if (curr->id != NullBasicBlockId) { in RecordDFSOrders()
197 if (curr_bb->id != NullBasicBlockId) { in ComputeDomPostOrderTraversal()
221 if (bb->taken != NullBasicBlockId) { in ComputeDominanceFrontier()
224 if (bb->fall_through != NullBasicBlockId) { in ComputeDominanceFrontier()
290 if ((bb->id == NullBasicBlockId) || (bb == GetEntryBlock())) { in ComputeblockIDom()
550 if (block->fall_through != NullBasicBlockId) { in DoDFSPreOrderSSARename()
555 if (block->taken != NullBasicBlockId) { in DoDFSPreOrderSSARename()
Dmir_graph.cc221 if (bottom_block->taken != NullBasicBlockId) { in SplitBlock()
222 orig_block->taken = NullBasicBlockId; in SplitBlock()
232 if (bottom_block->fall_through != NullBasicBlockId) { in SplitBlock()
736 DCHECK_EQ(null_block->id, NullBasicBlockId); in InlineMethod()
802 DCHECK(cur_block->fall_through == NullBasicBlockId); in InlineMethod()
803 DCHECK(cur_block->taken == NullBasicBlockId); in InlineMethod()
869 DCHECK(cur_block->fall_through == NullBasicBlockId || in InlineMethod()
873 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) { in InlineMethod()
892 if (UNLIKELY(out_bb_id != NullBasicBlockId)) { in InlineMethod()
1028 if (bb->taken != NullBasicBlockId) { in DumpCFG()
[all …]
Dmir_optimization.cc519 bb->fall_through = NullBasicBlockId; in BasicBlockOpt()
525 bb->taken = NullBasicBlockId; in BasicBlockOpt()
709 ft->fall_through = NullBasicBlockId; in BasicBlockOpt()
850 if (bb->taken != NullBasicBlockId) { in CombineBlocks()
863 if (succ_info->block != NullBasicBlockId) { in CombineBlocks()
876 bb_next->fall_through = NullBasicBlockId; in CombineBlocks()
878 bb_next->taken = NullBasicBlockId; in CombineBlocks()
1792 if (bb->taken != NullBasicBlockId) { in EliminateSuspendChecks()
1800 (bb->fall_through == NullBasicBlockId || !IsSuspendCheckEdge(bb, bb->fall_through))) { in EliminateSuspendChecks()
1803 } else if (bb->fall_through != NullBasicBlockId && IsSuspendCheckEdge(bb, bb->fall_through)) { in EliminateSuspendChecks()
Dmir_analysis.cc987 if ((ending_bb->taken != NullBasicBlockId) && (ending_bb->fall_through == NullBasicBlockId)) { in AnalyzeBlock()
994 if ((ending_bb->taken != NullBasicBlockId) && (ending_bb->taken == bb->id)) { in AnalyzeBlock()
Dmir_graph.h175 static const BasicBlockId NullBasicBlockId = 0; variable
356 explicit MIR() : offset(0), optimization_flags(0), m_unit_index(0), bb(NullBasicBlockId), in MIR()
632 return (block_id == NullBasicBlockId) ? nullptr : block_list_[block_id]; in GetBasicBlock()
1028 DCHECK_NE(target_bb_id, NullBasicBlockId); in IsBackEdge()
Dglobal_value_numbering.cc98 DCHECK_NE(pred_id, NullBasicBlockId); in PrepareBasicBlock()
Dmir_optimization_test.cc456 return target_bb != NullBasicBlockId && cu_.mir_graph->IsBackEdge(branch, target_bb); in IsBackEdge()
Dtype_inference.cc360 BasicBlockId best_id = NullBasicBlockId; in FindTopologicallyEarliestPredecessor()