Searched refs:loop_end_ (Results 1 – 6 of 6) sorted by relevance
796 int loop_num = header->loop_end_; in ComputeLoopInfo()855 if (block->loop_end_ >= 0) { in PrintRPO()856 PrintF(" range: [%d, %d)", block->rpo_number_, block->loop_end_); in PrintRPO()875 DCHECK(header->loop_end_ >= 0); in VerifySpecialRPO()876 DCHECK(header->loop_end_ <= static_cast<int>(order->size())); in VerifySpecialRPO()877 DCHECK(header->loop_end_ > header->rpo_number_); in VerifySpecialRPO()896 DCHECK(links == (header->loop_end_ - header->rpo_number_)); in VerifySpecialRPO()904 if (j < header->rpo_number_ || j >= header->loop_end_) { in VerifySpecialRPO()962 if (succ->loop_end_ < 0) { in ComputeSpecialRPO()964 succ->loop_end_ = num_loops++; in ComputeSpecialRPO()[all …]
46 int32_t loop_end_; // end of the loop, if this block is a loop header. variable60 loop_end_(-1), in BasicBlockData()68 inline bool IsLoopHeader() const { return loop_end_ >= 0; } in IsLoopHeader()73 if (loop_end_ < 0) return false; // This is not a loop. in LoopContains()74 return block->rpo_number_ >= rpo_number_ && block->rpo_number_ < loop_end_; in LoopContains()
432 os << " loop blocks: [" << block->rpo_number_ << ", " << block->loop_end_ in operator <<()
832 int GetLoopEnd(BasicBlock* block) const { return block->loop_end_; } in GetLoopEnd()
1340 code()->BlockAt(block->loop_end_)->last_instruction_index(); in BuildLiveRanges()1351 for (int i = block->rpo_number_ + 1; i < block->loop_end_; ++i) { in BuildLiveRanges()
52 if (!loops_allowed) CHECK_LT(order->at(i)->loop_end_, 0); in CheckRPONumbers()59 CHECK_GT(header->loop_end_, 0); in CheckLoopContains()60 CHECK_EQ(body_size, (header->loop_end_ - header->rpo_number_)); in CheckLoopContains()63 CHECK(num >= header->rpo_number_ && num < header->loop_end_); in CheckLoopContains()