Searched refs:NullBasicBlockId (Results 1 – 8 of 8) sorted by relevance
/art/compiler/dex/ |
D | ssa_transformation.cc | 64 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()
|
D | mir_graph.cc | 221 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 …]
|
D | mir_optimization.cc | 519 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()
|
D | mir_analysis.cc | 987 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()
|
D | mir_graph.h | 175 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()
|
D | global_value_numbering.cc | 98 DCHECK_NE(pred_id, NullBasicBlockId); in PrepareBasicBlock()
|
D | mir_optimization_test.cc | 456 return target_bb != NullBasicBlockId && cu_.mir_graph->IsBackEdge(branch, target_bb); in IsBackEdge()
|
D | type_inference.cc | 360 BasicBlockId best_id = NullBasicBlockId; in FindTopologicallyEarliestPredecessor()
|