Searched refs:offset_iterator (Results 1 – 3 of 3) sorted by relevance
137 class offset_iterator in NON_EXPORTED_BASE()149 offset_iterator(const byte* start, const byte* ptr, const byte* end) in NON_EXPORTED_BASE()164 base::iterator_range<offset_iterator> offsets() { in NON_EXPORTED_BASE()165 return base::iterator_range<offset_iterator>( in NON_EXPORTED_BASE()166 offset_iterator(start_, pc_, end_), in NON_EXPORTED_BASE()167 offset_iterator(start_, end_, end_)); in NON_EXPORTED_BASE()
550 baseline::BytecodeOffsetIterator offset_iterator( in GetBytecodeOffsetForBaselinePC()553 offset_iterator.AdvanceToPCOffset(pc); in GetBytecodeOffsetForBaselinePC()554 return offset_iterator.current_bytecode_offset(); in GetBytecodeOffsetForBaselinePC()562 baseline::BytecodeOffsetIterator offset_iterator( in GetBaselinePCForBytecodeOffset()564 offset_iterator.AdvanceToBytecodeOffset(bytecode_offset); in GetBaselinePCForBytecodeOffset()567 pc = offset_iterator.current_pc_start_offset(); in GetBaselinePCForBytecodeOffset()570 pc = offset_iterator.current_pc_end_offset(); in GetBaselinePCForBytecodeOffset()591 baseline::BytecodeOffsetIterator offset_iterator( in GetBaselinePCForNextExecutedBytecode()
2135 std::unique_ptr<i::baseline::BytecodeOffsetIterator> offset_iterator; in TestVerifySourcePositions() local2141 offset_iterator = std::make_unique<i::baseline::BytecodeOffsetIterator>( in TestVerifySourcePositions()2144 DCHECK_EQ(offset_iterator->current_pc_start_offset(), 0); in TestVerifySourcePositions()2145 DCHECK_EQ(offset_iterator->current_bytecode_offset(), in TestVerifySourcePositions()2147 offset_iterator->Advance(); in TestVerifySourcePositions()2151 if (offset_iterator->current_bytecode_offset() != in TestVerifySourcePositions()2158 for (i::Address pc = offset_iterator->current_pc_start_offset() + 1; in TestVerifySourcePositions()2159 pc <= offset_iterator->current_pc_end_offset(); ++pc) { in TestVerifySourcePositions()2173 if (offset_iterator->done()) { in TestVerifySourcePositions()2177 offset_iterator->Advance(); in TestVerifySourcePositions()[all …]