Lines Matching refs:fall_through
189 bottom_block->fall_through = orig_block->fall_through; in SplitBlock()
190 orig_block->fall_through = bottom_block->id; in SplitBlock()
192 if (bottom_block->fall_through != NullBasicBlockId) { in SplitBlock()
193 BasicBlock* bb_fall_through = GetBasicBlock(bottom_block->fall_through); in SplitBlock()
456 cur_block->fall_through = fallthrough_block->id; in ProcessCanBranch()
536 cur_block->fall_through = fallthrough_block->id; in ProcessCanSwitch()
637 cur_block->fall_through = new_block->id; in ProcessCanThrow()
714 entry_block_->fall_through = cur_block->id; in InlineMethod()
763 DCHECK(cur_block->fall_through == NullBasicBlockId); in InlineMethod()
784 cur_block->fall_through = exit_block_->id; in InlineMethod()
828 DCHECK(cur_block->fall_through == NullBasicBlockId || in InlineMethod()
829 GetBasicBlock(cur_block->fall_through) == next_block || in InlineMethod()
830 GetBasicBlock(cur_block->fall_through) == exit_block_); in InlineMethod()
832 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) { in InlineMethod()
833 cur_block->fall_through = next_block->id; in InlineMethod()
884 GetBasicBlock(GetEntryBlock()->fall_through)->start_offset, in DumpCFG()
963 if (bb->fall_through != NullBasicBlockId) { in DumpCFG()
965 GetBlockName(GetBasicBlock(bb->fall_through), block_name2); in DumpCFG()
1207 if ((taken == NullBasicBlockId) && (fall_through != NullBasicBlockId)) { in GetNextUnconditionalMir()
1208 next_mir = mir_graph->GetBasicBlock(fall_through)->first_mir_insn; in GetNextUnconditionalMir()
1439 if (bb->fall_through != NullBasicBlockId) { in DumpMIRGraph()
1440 LOG(INFO) << " Fallthrough : block " << bb->fall_through in DumpMIRGraph()
1441 << " (0x" << std::hex << GetBasicBlock(bb->fall_through)->start_offset << ")"; in DumpMIRGraph()
1828 BasicBlock* result = mir_graph_->GetBasicBlock(basic_block_->fall_through); in Next()
1872 result_bb->fall_through = fall_through; in Copy()
2118 if (fall_through == old_bb) { in ReplaceChild()
2119 fall_through = new_bb; in ReplaceChild()