Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Unified Diff: components/metrics/leak_detector/call_stack_manager.cc

Issue 986503002: components/metrics: Add runtime memory leak detector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create CallStackManager out of LeakDetectorImpl Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/metrics/leak_detector/call_stack_manager.cc
diff --git a/components/metrics/leak_detector/call_stack_manager.cc b/components/metrics/leak_detector/call_stack_manager.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8c3ca9113fc83b54487343b2e5c580cce826e1b8
--- /dev/null
+++ b/components/metrics/leak_detector/call_stack_manager.cc
@@ -0,0 +1,67 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/metrics/leak_detector/call_stack_manager.h"
+
+#include <gperftools/custom_allocator.h>
+#include <string.h> // For memset.
+
+#include <algorithm> // For std::copy.
+#include <new>
+
+#include "base/hash.h"
+
+namespace leak_detector {
+
+CallStackManager::CallStackManager() {}
+
+CallStackManager::~CallStackManager() {
+ for (CallStack* call_stack : call_stacks_) {
+ CustomAllocator::Free(call_stack->stack,
+ call_stack->depth * sizeof(*call_stack->stack));
+ CustomAllocator::Free(call_stack, sizeof(CallStack));
+ }
+ call_stacks_.clear();
+}
+
+const CallStack* CallStackManager::GetCallStack(
+ int depth, const void* const stack[]) {
+ // Temporarily create a call stack object for lookup in |call_stacks_|.
+ CallStack temp;
+ temp.depth = depth;
+ temp.stack = const_cast<const void**>(stack);
+
+ auto iter = call_stacks_.find(&temp);
+ if (iter != call_stacks_.end())
+ return *iter;
+
+ // Since |call_stacks_| stores CallStack pointers rather than actual objects,
+ // create new call objects manually here.
+ CallStack* call_stack =
+ new(CustomAllocator::Allocate(sizeof(CallStack))) CallStack;
+ memset(call_stack, 0, sizeof(*call_stack));
+ call_stack->depth = depth;
+ call_stack->hash = call_stacks_.hash_function()(&temp);
+ call_stack->stack =
+ reinterpret_cast<const void**>(
+ CustomAllocator::Allocate(sizeof(*stack) * depth));
+ std::copy(stack, stack + depth, call_stack->stack);
+
+ call_stacks_.insert(call_stack);
+ return call_stack;
+}
+
+size_t CallStackManager::CallStackPointerHash::operator() (
+ const CallStack* call_stack) const {
+ return base::Hash(reinterpret_cast<const char*>(call_stack->stack),
+ sizeof(*(call_stack->stack)) * call_stack->depth);
+}
+
+bool CallStackManager::CallStackPointerEqual::operator() (
+ const CallStack* c1, const CallStack* c2) const {
+ return c1->depth == c2->depth &&
+ std::equal(c1->stack, c1->stack + c1->depth, c2->stack);
+}
+
+} // namespace leak_detector

Powered by Google App Engine
This is Rietveld 408576698