Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions perfdata_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ absl::Status PerfDataReader::AggregateSpe(BranchFrequencies &result) const {
// records.
if (is_kernel_mode) pid = kKernelPid;

if (binary_mmaps_.count(pid) == 0) return;
if (!record.event.retired || !record.op.is_br_eret) return;

uint64_t from_addr = RuntimeAddressToBinaryAddress(pid, record.ip.addr);
Expand Down
Loading