Lines Matching refs:rpo
884 Instruction* InstructionSequence::GetBlockStart(RpoNumber rpo) const {
885 const InstructionBlock* block = InstructionBlockAt(rpo);
889 void InstructionSequence::StartBlock(RpoNumber rpo) {
891 current_block_ = InstructionBlockAt(rpo);
896 void InstructionSequence::EndBlock(RpoNumber rpo) {
898 DCHECK_EQ(current_block_->rpo_number(), rpo);
1016 RpoNumber rpo = RpoNumber::FromInt(block_id);
1017 const InstructionBlock* block = InstructionBlockAt(rpo);
1018 CHECK(block->rpo_number() == rpo);
1187 std::ostream& operator<<(std::ostream& os, const RpoNumber& rpo) {
1188 return os << rpo.ToSize();