HomeSort by relevance Sort by last modified time
    Searched refs:pc_offset_map_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/profiler/
profile-generator.h 30 bool empty() const { return pc_offset_map_.empty(); }
35 PcOffsetMap pc_offset_map_; member in class:v8::internal::JITLineInfoTable
profile-generator.cc 32 pc_offset_map_.insert(std::make_pair(pc_offset, line));
38 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
39 if (it == pc_offset_map_.end()) {
40 if (pc_offset_map_.empty()) return v8::CpuProfileNode::kNoLineNumberInfo;
41 return (--pc_offset_map_.end())->second;

Completed in 562 milliseconds