Home
last modified time | relevance | path

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

/art/compiler/dex/
Dssa_transformation.cc67 if (block->id != NullBasicBlockId) { in MarkPreOrder()
86 if (curr->id != NullBasicBlockId) { in RecordDFSOrders()
211 if (curr_bb->id != NullBasicBlockId) { in ComputeDomPostOrderTraversal()
217 if ((curr_bb->taken != NullBasicBlockId) && curr_bb->dominators->IsBitSet(curr_bb->taken)) { in ComputeDomPostOrderTraversal()
241 if (bb->taken != NullBasicBlockId) { in ComputeDominanceFrontier()
244 if (bb->fall_through != NullBasicBlockId) { in ComputeDominanceFrontier()
315 if ((bb->id == NullBasicBlockId) || (bb == GetEntryBlock())) { in ComputeblockIDom()
597 if (block->fall_through != NullBasicBlockId) { in DoDFSPreOrderSSARename()
602 if (block->taken != NullBasicBlockId) { in DoDFSPreOrderSSARename()
Dmir_graph.cc181 if (bottom_block->taken != NullBasicBlockId) { in SplitBlock()
182 orig_block->taken = NullBasicBlockId; in SplitBlock()
192 if (bottom_block->fall_through != NullBasicBlockId) { in SplitBlock()
680 DCHECK_EQ(null_block->id, NullBasicBlockId); in InlineMethod()
763 DCHECK(cur_block->fall_through == NullBasicBlockId); in InlineMethod()
764 DCHECK(cur_block->taken == NullBasicBlockId); in InlineMethod()
828 DCHECK(cur_block->fall_through == NullBasicBlockId || in InlineMethod()
832 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) { in InlineMethod()
957 if (bb->taken != NullBasicBlockId) { in DumpCFG()
963 if (bb->fall_through != NullBasicBlockId) { in DumpCFG()
[all …]
Dmir_analysis.cc889 if ((ending_bb->taken != NullBasicBlockId) && (ending_bb->fall_through == NullBasicBlockId)) { in AnalyzeBlock()
896 if ((ending_bb->taken != NullBasicBlockId) && (ending_bb->taken == bb->id)) { in AnalyzeBlock()
Dmir_graph.h201 static const BasicBlockId NullBasicBlockId = 0; variable
371 explicit MIR():offset(0), optimization_flags(0), m_unit_index(0), bb(NullBasicBlockId), in MIR()
597 return (block_id == NullBasicBlockId) ? NULL : block_list_.Get(block_id); in GetBasicBlock()
893 return ((target_bb_id != NullBasicBlockId) && in IsBackedge()
Dmir_optimization.cc556 bb->taken = NullBasicBlockId; in BasicBlockOpt()
670 || (bb->taken == NullBasicBlockId) in CombineBlocks()
889 } else if (bb->fall_through != NullBasicBlockId) { in EliminateNullChecksAndInferTypes()
/art/compiler/dex/portable/
Dmir_to_gbc.cc163 bb->taken = NullBasicBlockId; in ConvertPackedSwitch()
164 bb->fall_through = NullBasicBlockId; in ConvertPackedSwitch()
190 bb->taken = NullBasicBlockId; in ConvertSparseSwitch()
191 bb->fall_through = NullBasicBlockId; in ConvertSparseSwitch()
341 bb->fall_through = NullBasicBlockId; in ConvertCompareAndBranch()
360 bb->fall_through = NullBasicBlockId; in ConvertCompareZeroAndBranch()
1210 if (bb->fall_through == NullBasicBlockId) { in ConvertMIRNode()
1213 mir_graph_->GetBasicBlock(bb->fall_through)->fall_through = NullBasicBlockId; in ConvertMIRNode()
1214 mir_graph_->GetBasicBlock(bb->fall_through)->taken = NullBasicBlockId; in ConvertMIRNode()
1617 if ((mir == bb->last_mir_insn) && (bb->taken == NullBasicBlockId) && in ConvertExtendedMIR()
[all …]