Lines Matching refs:header_offset
533 if (current_offset == current_loop.header_offset) {
598 DCHECK_EQ(loop_stack_.top().header_offset, -1);
634 int header_offset = iterator.GetJumpTargetOffset();
638 liveness_map().GetLiveness(header_offset);
650 for (; iterator.current_offset() > header_offset; --iterator) {
717 DCHECK_LT(loop_stack_.top().header_offset, loop_header);
721 int parent_offset = loop_stack_.top().header_offset;
770 const LoopInfo& BytecodeAnalysis::GetLoopInfoFor(int header_offset) const {
771 DCHECK(IsLoopHeader(header_offset));
773 return header_to_info_.find(header_offset)->second;
776 const LoopInfo* BytecodeAnalysis::TryGetLoopInfoFor(int header_offset) const {
777 auto it = header_to_info_.find(header_offset);