Commit 5c9977be authored by glider@chromium.org's avatar glider@chromium.org

Land http://codereview.chromium.org/6869009 for the third time.

Introduce the ANNOTATE_LEAKING_OBJECT_PTR annotation that can be used to mark
heap allocated objects as intentionally leaked ones.
Annotate the histograms produced by {Histogram,BooleanHistogram,LinearHistogram,CustomHistogram}::FactoryGet(), as leaked.

Rename StatsHistogram::StatsHistogramFactoryGet to StatsHistogram::FactoryGet, annotate the result as leaky, update the suppressions.

BUG=79322
TBR=jar,willchan
Review URL: http://codereview.chromium.org/7062016

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86794 0039d316-1c4b-4281-b951-d872f2087c98
parent 4468a5b3
...@@ -338,6 +338,7 @@ ...@@ -338,6 +338,7 @@
# Do the same for heap leak checker. # Do the same for heap leak checker.
'-Wl,-u_Z21InitialMallocHook_NewPKvj,-u_Z22InitialMallocHook_MMapPKvS0_jiiix,-u_Z22InitialMallocHook_SbrkPKvi', '-Wl,-u_Z21InitialMallocHook_NewPKvj,-u_Z22InitialMallocHook_MMapPKvS0_jiiix,-u_Z22InitialMallocHook_SbrkPKvi',
'-Wl,-u_Z21InitialMallocHook_NewPKvm,-u_Z22InitialMallocHook_MMapPKvS0_miiil,-u_Z22InitialMallocHook_SbrkPKvl', '-Wl,-u_Z21InitialMallocHook_NewPKvm,-u_Z22InitialMallocHook_MMapPKvS0_miiil,-u_Z22InitialMallocHook_SbrkPKvl',
'-Wl,-u_ZN15HeapLeakChecker12IgnoreObjectEPKv,-u_ZN15HeapLeakChecker14UnIgnoreObjectEPKv',
]}, ]},
}], }],
[ 'linux_use_debugallocation==1', { [ 'linux_use_debugallocation==1', {
......
// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
...@@ -18,10 +18,22 @@ ...@@ -18,10 +18,22 @@
#define ANNOTATE_SCOPED_MEMORY_LEAK \ #define ANNOTATE_SCOPED_MEMORY_LEAK \
HeapLeakChecker::Disabler heap_leak_checker_disabler HeapLeakChecker::Disabler heap_leak_checker_disabler
// Annotate an object pointer as referencing a leaky object. This object and all
// the heap objects referenced by it will be ignored by the heap checker.
//
// X should be referencing an active allocated object. If it is not, the
// annotation will be ignored.
// No object should be annotated with ANNOTATE_SCOPED_MEMORY_LEAK twice.
// Once an object is annotated with ANNOTATE_SCOPED_MEMORY_LEAK, it cannot be
// deleted.
#define ANNOTATE_LEAKING_OBJECT_PTR(X) \
HeapLeakChecker::IgnoreObject(X)
#else #else
// If tcmalloc is not used, the annotations should be no-ops. // If tcmalloc is not used, the annotations should be no-ops.
#define ANNOTATE_SCOPED_MEMORY_LEAK #define ANNOTATE_SCOPED_MEMORY_LEAK
#define ANNOTATE_LEAKING_OBJECT_PTR(X)
#endif #endif
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <algorithm> #include <algorithm>
#include <string> #include <string>
#include "base/debug/leak_annotations.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/pickle.h" #include "base/pickle.h"
#include "base/stringprintf.h" #include "base/stringprintf.h"
...@@ -101,6 +102,7 @@ Histogram* Histogram::FactoryGet(const std::string& name, ...@@ -101,6 +102,7 @@ Histogram* Histogram::FactoryGet(const std::string& name,
DCHECK_EQ(HISTOGRAM, histogram->histogram_type()); DCHECK_EQ(HISTOGRAM, histogram->histogram_type());
DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count)); DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count));
ANNOTATE_LEAKING_OBJECT_PTR(histogram); // see crbug.com/79322
return histogram; return histogram;
} }
...@@ -794,6 +796,7 @@ Histogram* LinearHistogram::FactoryGet(const std::string& name, ...@@ -794,6 +796,7 @@ Histogram* LinearHistogram::FactoryGet(const std::string& name,
DCHECK_EQ(LINEAR_HISTOGRAM, histogram->histogram_type()); DCHECK_EQ(LINEAR_HISTOGRAM, histogram->histogram_type());
DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count)); DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count));
ANNOTATE_LEAKING_OBJECT_PTR(histogram); // see crbug.com/79322
return histogram; return histogram;
} }
...@@ -884,6 +887,7 @@ Histogram* BooleanHistogram::FactoryGet(const std::string& name, Flags flags) { ...@@ -884,6 +887,7 @@ Histogram* BooleanHistogram::FactoryGet(const std::string& name, Flags flags) {
} }
DCHECK_EQ(BOOLEAN_HISTOGRAM, histogram->histogram_type()); DCHECK_EQ(BOOLEAN_HISTOGRAM, histogram->histogram_type());
ANNOTATE_LEAKING_OBJECT_PTR(histogram); // see crbug.com/79322
return histogram; return histogram;
} }
...@@ -933,6 +937,7 @@ Histogram* CustomHistogram::FactoryGet(const std::string& name, ...@@ -933,6 +937,7 @@ Histogram* CustomHistogram::FactoryGet(const std::string& name,
DCHECK_EQ(histogram->histogram_type(), CUSTOM_HISTOGRAM); DCHECK_EQ(histogram->histogram_type(), CUSTOM_HISTOGRAM);
DCHECK(histogram->HasConstructorArguments(ranges[1], ranges.back(), DCHECK(histogram->HasConstructorArguments(ranges[1], ranges.back(),
ranges.size())); ranges.size()));
ANNOTATE_LEAKING_OBJECT_PTR(histogram); // see crbug.com/79322
return histogram; return histogram;
} }
......
...@@ -151,7 +151,7 @@ bool Stats::Init(BackendImpl* backend, uint32* storage_addr) { ...@@ -151,7 +151,7 @@ bool Stats::Init(BackendImpl* backend, uint32* storage_addr) {
// Stats may be reused when the cache is re-created, but we want only one // Stats may be reused when the cache is re-created, but we want only one
// histogram at any given time. // histogram at any given time.
size_histogram_ = size_histogram_ =
StatsHistogram::StatsHistogramFactoryGet("DiskCache.SizeStats"); StatsHistogram::FactoryGet("DiskCache.SizeStats");
size_histogram_->Init(this); size_histogram_->Init(this);
} }
} }
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include "net/disk_cache/stats_histogram.h" #include "net/disk_cache/stats_histogram.h"
#include "base/debug/leak_annotations.h"
#include "base/logging.h" #include "base/logging.h"
#include "net/disk_cache/stats.h" #include "net/disk_cache/stats.h"
...@@ -21,8 +22,7 @@ StatsHistogram::~StatsHistogram() { ...@@ -21,8 +22,7 @@ StatsHistogram::~StatsHistogram() {
stats_ = NULL; stats_ = NULL;
} }
StatsHistogram* StatsHistogram::StatsHistogramFactoryGet( StatsHistogram* StatsHistogram::FactoryGet(const std::string& name) {
const std::string& name) {
Histogram* histogram(NULL); Histogram* histogram(NULL);
Sample minimum = 1; Sample minimum = 1;
...@@ -49,6 +49,7 @@ StatsHistogram* StatsHistogram::StatsHistogramFactoryGet( ...@@ -49,6 +49,7 @@ StatsHistogram* StatsHistogram::StatsHistogramFactoryGet(
// Validate upcast by seeing that we're probably providing the checksum. // Validate upcast by seeing that we're probably providing the checksum.
CHECK_EQ(return_histogram->StatsHistogram::CalculateRangeChecksum(), CHECK_EQ(return_histogram->StatsHistogram::CalculateRangeChecksum(),
return_histogram->CalculateRangeChecksum()); return_histogram->CalculateRangeChecksum());
ANNOTATE_LEAKING_OBJECT_PTR(return_histogram); // see crbug.com/79322
return return_histogram; return return_histogram;
} }
......
...@@ -35,7 +35,7 @@ class StatsHistogram : public base::Histogram { ...@@ -35,7 +35,7 @@ class StatsHistogram : public base::Histogram {
: Histogram(name, minimum, maximum, bucket_count), init_(false) {} : Histogram(name, minimum, maximum, bucket_count), init_(false) {}
virtual ~StatsHistogram(); virtual ~StatsHistogram();
static StatsHistogram* StatsHistogramFactoryGet(const std::string& name); static StatsHistogram* FactoryGet(const std::string& name);
// We'll be reporting data from the given set of cache stats. // We'll be reporting data from the given set of cache stats.
bool Init(const Stats* stats); bool Init(const Stats* stats);
......
...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
Intentional leak of stats histogram to avoid shutdown races Intentional leak of stats histogram to avoid shutdown races
Heapcheck:Leak Heapcheck:Leak
... ...
fun:disk_cache::StatsHistogram::StatsHistogramFactoryGet fun:disk_cache::StatsHistogram::FactoryGet
} }
{ {
String name pushed into deliberately leaked histograms String name pushed into deliberately leaked histograms
......
...@@ -873,7 +873,7 @@ ...@@ -873,7 +873,7 @@
Histograms via FactoryGet including Stats for disk_cache Histograms via FactoryGet including Stats for disk_cache
Memcheck:Leak Memcheck:Leak
fun:_Znw* fun:_Znw*
fun:_ZN10disk_cache14StatsHistogram24StatsHistogramFactoryGet* fun:_ZN10disk_cache14StatsHistogram10FactoryGet*
} }
#----------------------------------------------------------------------- #-----------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment