Lines Matching refs:current_block_
836 current_block_(nullptr) { in InstructionSequence()
852 DCHECK_NULL(current_block_); in StartBlock()
853 current_block_ = InstructionBlockAt(rpo); in StartBlock()
855 current_block_->set_code_start(code_start); in StartBlock()
860 DCHECK_EQ(current_block_->rpo_number(), rpo); in EndBlock()
861 CHECK(current_block_->code_start() >= 0 && in EndBlock()
862 current_block_->code_start() < end); in EndBlock()
863 current_block_->set_code_end(end); in EndBlock()
864 current_block_ = nullptr; in EndBlock()
868 DCHECK_NOT_NULL(current_block_); in AddInstruction()
870 instr->set_block(current_block_); in AddInstruction()