Home | History | Annotate | Download | only in profiler

Lines Matching defs:pc_offset

28 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
29 DCHECK(pc_offset >= 0);
31 if (GetSourceLineNumber(pc_offset) != line) {
32 pc_offset_map_.insert(std::make_pair(pc_offset, line));
37 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
38 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
138 int CodeEntry::GetSourceLine(int pc_offset) const {
140 return line_info_->GetSourceLineNumber(pc_offset);
145 void CodeEntry::AddInlineStack(int pc_offset,
147 inline_locations_.insert(std::make_pair(pc_offset, std::move(inline_stack)));
150 const std::vector<CodeEntry*>* CodeEntry::GetInlineStack(int pc_offset) const {
151 auto it = inline_locations_.find(pc_offset);
675 int pc_offset = static_cast<int>(reinterpret_cast<Address>(sample.pc) -
677 src_line = pc_entry->GetSourceLine(pc_offset);
704 int pc_offset =
707 entry->GetInlineStack(pc_offset);
715 src_line = entry->GetSourceLine(pc_offset);