Lines Matching full:fall_through
164 bottom_block->fall_through = orig_block->fall_through;
165 orig_block->fall_through = bottom_block;
167 if (bottom_block->fall_through) {
168 bottom_block->fall_through->predecessors->Delete(orig_block);
169 bottom_block->fall_through->predecessors->Insert(bottom_block);
334 cur_block->fall_through = fallthrough_block;
415 cur_block->fall_through = fallthrough_block;
491 cur_block->fall_through = new_block;
564 entry_block_->fall_through = cur_block;
631 DCHECK(cur_block->fall_through == NULL);
647 cur_block->fall_through = exit_block_;
677 DCHECK(cur_block->fall_through == NULL ||
678 cur_block->fall_through == next_block ||
679 cur_block->fall_through == exit_block_);
681 if ((cur_block->fall_through == NULL) && (flags & Instruction::kContinue)) {
682 cur_block->fall_through = next_block;
715 GetEntryBlock()->fall_through->start_offset);
768 if (bb->fall_through) {
770 GetBlockName(bb->fall_through, block_name2);
1102 if (bb->fall_through) {
1103 LOG(INFO) << " Fallthrough : block " << bb->fall_through->id
1104 << " (0x" << std::hex << bb->fall_through->start_offset << ")";