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

Unified Diff: third_party/tcmalloc/chromium/src/heap-profile-table.cc

Issue 10541026: Add support for dump allocations created in a certain time window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 years, 6 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: third_party/tcmalloc/chromium/src/heap-profile-table.cc
diff --git a/third_party/tcmalloc/chromium/src/heap-profile-table.cc b/third_party/tcmalloc/chromium/src/heap-profile-table.cc
index 696f41e0b9cedbbaf36f43fd71e36605eb0e8117..8faf5bec95c05b5aecaf3a2a250e1d8801f02e29 100644
--- a/third_party/tcmalloc/chromium/src/heap-profile-table.cc
+++ b/third_party/tcmalloc/chromium/src/heap-profile-table.cc
@@ -290,6 +290,14 @@ void HeapProfileTable::MarkAsIgnored(const void* ptr) {
}
}
+void HeapProfileTable::MarkAllAsIgnored() {
+ alloc_address_map_->Iterate(MarkAllIterator, true);
+}
+
+void HeapProfileTable::MarkAllAsLive() {
+ alloc_address_map_->Iterate(MarkAllIterator, false);
+}
+
// We'd be happier using snprintfer, but we don't to reduce dependencies.
int HeapProfileTable::UnparseBucket(const Bucket& b,
char* buf, int buflen, int bufsize,
@@ -396,6 +404,17 @@ void HeapProfileTable::ClearMMapData() {
mmap_address_map_ = NULL;
}
+void HeapProfileTable::DumpLiveObjects(const char* file_name) {
+ RawFD fd = RawOpenForWriting(file_name);
+ if (fd == kIllegalRawFD) {
+ RAW_LOG(ERROR, "Failed dumping live objects to %s", file_name);
+ return;
+ }
+ const DumpArgs args(fd, NULL);
+ alloc_address_map_->Iterate<const DumpArgs&>(DumpLiveIterator, args);
+ RawClose(fd);
+}
+
void HeapProfileTable::IterateOrderedAllocContexts(
AllocContextIterator callback) const {
Bucket** list = MakeSortedBucketList();
@@ -474,6 +493,28 @@ void HeapProfileTable::DumpNonLiveIterator(const void* ptr, AllocValue* v,
RawWrite(args.fd, buf, len);
}
+inline
+void HeapProfileTable::DumpLiveIterator(const void* ptr, AllocValue* v,
+ const DumpArgs& args) {
+ if (!v->live()) {
+ return;
+ }
+ if (v->ignore()) {
+ return;
+ }
+ Bucket b;
+ memset(&b, 0, sizeof(b));
+ b.allocs = 1;
+ b.alloc_size = v->bytes;
+ b.depth = v->bucket()->depth;
+ b.stack = v->bucket()->stack;
+ char addr[16];
+ snprintf(addr, 16, "0x%08" PRIxPTR, ptr);
+ char buf[1024];
+ int len = UnparseBucket(b, buf, 0, sizeof(buf), addr, args.profile_stats);
+ RawWrite(args.fd, buf, len);
+}
+
inline void HeapProfileTable::ZeroBucketCountsIterator(
const void* ptr, AllocValue* v, HeapProfileTable* heap_profile) {
Bucket* b = v->bucket();

Powered by Google App Engine
This is Rietveld 408576698