Home | History | Annotate | Download | only in profiler

Lines Matching defs:pc_offset

27 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
28 DCHECK(pc_offset >= 0);
30 if (GetSourceLineNumber(pc_offset) != line) {
31 pc_offset_map_.insert(std::make_pair(pc_offset, line));
36 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
37 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
137 int CodeEntry::GetSourceLine(int pc_offset) const {
139 return line_info_->GetSourceLineNumber(pc_offset);
144 void CodeEntry::AddInlineStack(int pc_offset,
148 inline_locations_.insert(std::make_pair(pc_offset, std::vector<CodeEntry*>()))
152 const std::vector<CodeEntry*>* CodeEntry::GetInlineStack(int pc_offset) const {
153 auto it = inline_locations_.find(pc_offset);
595 int pc_offset =
597 src_line = pc_entry->GetSourceLine(pc_offset);
626 int pc_offset =
629 entry->GetInlineStack(pc_offset);
637 src_line = entry->GetSourceLine(pc_offset);