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

Unified Diff: base/allocator/allocated_type_tcmalloc.cc

Issue 10411047: Type profiler by intercepting 'new' and 'delete' expressions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: stop interceptors in an entire child process Created 8 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: base/allocator/allocated_type_tcmalloc.cc
diff --git a/base/allocator/allocated_type_tcmalloc.cc b/base/allocator/allocated_type_tcmalloc.cc
new file mode 100644
index 0000000000000000000000000000000000000000..47fb07c25eb1d0ce74143dd294a939a5eec1e846
--- /dev/null
+++ b/base/allocator/allocated_type_tcmalloc.cc
@@ -0,0 +1,42 @@
+// Copyright (c) 2012 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 "allocated_type.h"
+#include "allocated_type_tcmalloc.h"
+#include "base/atomicops.h"
+#include <gperftools/allocated_type_map.h>
+#include <gperftools/heap-profiler.h>
+
+volatile static Atomic32 g_enable_intercept = 1;
+
+// Stops the interceptors __op_new_intercept__ and __op_delete_intercept__.
+//
+// The interceptors should be stopped at new/delete between fork and exec.
+// See http://crbug.com/36678.
+
+void StopAllocatedTypeIntercept() {
+ base::subtle::NoBarrier_AtomicExchange(&g_enable_intercept, 0);
+}
+
+void* __op_new_intercept__(void* ptr,
+ size_t size,
+ const std::type_info& type) {
+ if (base::subtle::NoBarrier_Load(&g_enable_intercept) != 0) {
jar (doing other things) 2012/08/07 17:07:34 You are using atomics as though they are locks....
Dai Mikurube (NOT FULLTIME) 2012/08/08 06:16:23 I was worried about a rare case that two parallel
jar (doing other things) 2012/08/08 23:21:04 Please cite a reference, or remove the use of atom
Dai Mikurube (NOT FULLTIME) 2012/08/09 10:23:53 It might be my mistake. Removed Atomic.
+ if (IsHeapProfilerRunning()) {
+ InsertAllocatedType(ptr, size, type);
+ }
+ }
+ return ptr;
+}
+
+void* __op_delete_intercept__(void* ptr,
+ size_t size,
+ const std::type_info &type) {
+ if (base::subtle::NoBarrier_Load(&g_enable_intercept) != 0) {
+ if (IsHeapProfilerRunning()) {
+ EraseAllocatedType(ptr);
+ }
+ }
+ return ptr;
+}

Powered by Google App Engine
This is Rietveld 408576698