d6b3a2a0a3
Find leaks that have no references at all, or are only referenced by
other leaks in the same strongly connected component, and hide all
referenced leaks.
Bug: 27208635
Change-Id: Ifbfd14e24e2ba0f8af7c1b887e57f34362720f2d
(cherry picked from commit 8e8f34c558
)
137 lines
3.8 KiB
C++
137 lines
3.8 KiB
C++
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <map>
|
|
#include <utility>
|
|
|
|
#include "Allocator.h"
|
|
#include "HeapWalker.h"
|
|
#include "LeakFolding.h"
|
|
#include "log.h"
|
|
|
|
bool HeapWalker::Allocation(uintptr_t begin, uintptr_t end) {
|
|
if (end == begin) {
|
|
end = begin + 1;
|
|
}
|
|
Range range{begin, end};
|
|
auto inserted = allocations_.insert(std::pair<Range, AllocationInfo>(range, AllocationInfo{}));
|
|
if (inserted.second) {
|
|
valid_allocations_range_.begin = std::min(valid_allocations_range_.begin, begin);
|
|
valid_allocations_range_.end = std::max(valid_allocations_range_.end, end);
|
|
allocation_bytes_ += range.size();
|
|
return true;
|
|
} else {
|
|
Range overlap = inserted.first->first;
|
|
ALOGE("range %p-%p overlaps with existing range %p-%p",
|
|
reinterpret_cast<void*>(begin),
|
|
reinterpret_cast<void*>(end),
|
|
reinterpret_cast<void*>(overlap.begin),
|
|
reinterpret_cast<void*>(overlap.end));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool HeapWalker::IsAllocationPtr(uintptr_t ptr, Range* range, AllocationInfo** info) {
|
|
if (ptr >= valid_allocations_range_.begin && ptr < valid_allocations_range_.end) {
|
|
AllocationMap::iterator it = allocations_.find(Range{ptr, ptr + 1});
|
|
if (it != allocations_.end()) {
|
|
*range = it->first;
|
|
*info = &it->second;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void HeapWalker::RecurseRoot(const Range& root) {
|
|
allocator::vector<Range> to_do(1, root, allocator_);
|
|
while (!to_do.empty()) {
|
|
Range range = to_do.back();
|
|
to_do.pop_back();
|
|
|
|
ForEachPtrInRange(range, [&](Range& ref_range, AllocationInfo* ref_info) {
|
|
if (!ref_info->referenced_from_root) {
|
|
ref_info->referenced_from_root = true;
|
|
to_do.push_back(ref_range);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
void HeapWalker::Root(uintptr_t begin, uintptr_t end) {
|
|
roots_.push_back(Range{begin, end});
|
|
}
|
|
|
|
void HeapWalker::Root(const allocator::vector<uintptr_t>& vals) {
|
|
root_vals_.insert(root_vals_.end(), vals.begin(), vals.end());
|
|
}
|
|
|
|
size_t HeapWalker::Allocations() {
|
|
return allocations_.size();
|
|
}
|
|
|
|
size_t HeapWalker::AllocationBytes() {
|
|
return allocation_bytes_;
|
|
}
|
|
|
|
bool HeapWalker::DetectLeaks() {
|
|
// Recursively walk pointers from roots to mark referenced allocations
|
|
for (auto it = roots_.begin(); it != roots_.end(); it++) {
|
|
RecurseRoot(*it);
|
|
}
|
|
|
|
Range vals;
|
|
vals.begin = reinterpret_cast<uintptr_t>(root_vals_.data());
|
|
vals.end = vals.begin + root_vals_.size() * sizeof(uintptr_t);
|
|
|
|
RecurseRoot(vals);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool HeapWalker::Leaked(allocator::vector<Range>& leaked, size_t limit,
|
|
size_t* num_leaks_out, size_t* leak_bytes_out) {
|
|
leaked.clear();
|
|
|
|
size_t num_leaks = 0;
|
|
size_t leak_bytes = 0;
|
|
for (auto it = allocations_.begin(); it != allocations_.end(); it++) {
|
|
if (!it->second.referenced_from_root) {
|
|
num_leaks++;
|
|
leak_bytes += it->first.end - it->first.begin;
|
|
}
|
|
}
|
|
|
|
size_t n = 0;
|
|
for (auto it = allocations_.begin(); it != allocations_.end(); it++) {
|
|
if (!it->second.referenced_from_root) {
|
|
if (n++ < limit) {
|
|
leaked.push_back(it->first);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (num_leaks_out) {
|
|
*num_leaks_out = num_leaks;
|
|
}
|
|
if (leak_bytes_out) {
|
|
*leak_bytes_out = leak_bytes;
|
|
}
|
|
|
|
return true;
|
|
}
|