Lines Matching defs:pc_offset
77 Entry(int pc_offset, int stack_height, std::vector<Value> changed_values)
78 : pc_offset_(pc_offset),
83 explicit Entry(int pc_offset) : pc_offset_(pc_offset) {}
85 int pc_offset() const { return pc_offset_; }
124 const Entry* GetEntry(int pc_offset) const {
126 Entry{pc_offset}, EntryPositionLess{});
127 if (it == entries_.end() || it->pc_offset() != pc_offset) return nullptr;
158 return a.pc_offset() < b.pc_offset();