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

Unified Diff: tools/deep_memory_profiler/policy.t0.json

Issue 10825075: Classify memory usage by allocated type in Deep Memory Profiler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 3 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
« no previous file with comments | « tools/deep_memory_profiler/policy.l2.json ('k') | tools/find_runtime_symbols/find_runtime_symbols.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/deep_memory_profiler/policy.t0.json
diff --git a/tools/deep_memory_profiler/policy.l1.json b/tools/deep_memory_profiler/policy.t0.json
similarity index 74%
copy from tools/deep_memory_profiler/policy.l1.json
copy to tools/deep_memory_profiler/policy.t0.json
index f300b90677c1dd777733ffd2d66e3653486a5ca5..55ceba4ec92d07b19cefe1917260e0592375c0b4 100644
--- a/tools/deep_memory_profiler/policy.l1.json
+++ b/tools/deep_memory_profiler/policy.t0.json
@@ -2,7 +2,7 @@
"components": [
"second",
"mmap-profiler",
- "mmap-allocated-type",
+ "mmap-type-profiler",
"mmap-tcmalloc",
"FROM_HERE_FOR_TOTAL",
"mustbezero",
@@ -13,16 +13,15 @@
"nonprofiled-stack",
"nonprofiled-other",
"no-bucket",
- "mmap-v8-heap-newspace",
- "mmap-v8-heap-coderange",
- "mmap-v8-heap-pagedspace",
- "mmap-v8-other",
+ "mmap-v8",
"mmap-catch-all",
- "tc-v8",
- "tc-skia",
- "tc-webkit-catch-all",
- "tc-unknown-string",
- "tc-catch-all",
+ "tc-std-string",
+ "tc-WTF-String",
+ "tc-no-typeinfo-StringImpl",
+ "tc-Skia",
+ "tc-WebCore-Style",
+ "tc-no-typeinfo-other",
+ "tc-other",
"tc-unused",
"UNTIL_HERE_FOR_TOTAL",
"total-exclude-profiler",
@@ -53,8 +52,8 @@
"allocator": "mmap"
},
{
- "name": "mmap-allocated-type",
- "stacktrace": ".*(AllocatedTypeMalloc).*",
+ "name": "mmap-type-profiler",
+ "stacktrace": ".*(TypeProfilerMalloc).*",
"allocator": "mmap"
},
{
@@ -103,53 +102,55 @@
"allocator": "optional"
},
{
- "name": "mmap-v8-heap-newspace",
- "stacktrace": ".*v8::internal::NewSpace::SetUp.*",
- "allocator": "mmap"
- },
- {
- "name": "mmap-v8-heap-coderange",
- "stacktrace": ".*v8::internal::CodeRange::SetUp.*",
+ "name": "mmap-v8",
+ "stacktrace": ".*v8::.*",
"allocator": "mmap"
},
{
- "name": "mmap-v8-heap-pagedspace",
- "stacktrace": ".*v8::internal::PagedSpace::AllocateRaw.*",
+ "name": "mmap-catch-all",
+ "stacktrace": ".*",
"allocator": "mmap"
},
{
- "name": "mmap-v8-other",
- "stacktrace": ".*v8::.*",
- "allocator": "mmap"
+ "name": "tc-std-string",
+ "stacktrace": ".*",
+ "typeinfo": "std::basic_string.*",
+ "allocator": "malloc"
},
{
- "name": "mmap-catch-all",
+ "name": "tc-WTF-String",
"stacktrace": ".*",
- "allocator": "mmap"
+ "typeinfo": "WTF::String.*",
+ "allocator": "malloc"
},
{
- "name": "tc-v8",
- "stacktrace": ".*v8::.*",
+ "name": "tc-no-typeinfo-StringImpl",
+ "stacktrace": ".*WTF::StringImpl::getData16SlowCase.*",
+ "typeinfo": "no typeinfo",
"allocator": "malloc"
},
{
- "name": "tc-skia",
- "stacktrace": ".*Sk[A-Za-z_]+::.*",
+ "name": "tc-Skia",
+ "stacktrace": ".*",
+ "typeinfo": "(skia::|SkGlyph).*",
"allocator": "malloc"
},
{
- "name": "tc-webkit-catch-all",
- "stacktrace": ".*(WTF::|WebCore::|WebKit::).*",
+ "name": "tc-WebCore-Style",
+ "stacktrace": ".*",
+ "typeinfo": "WebCore::Style.*",
"allocator": "malloc"
},
{
- "name": "tc-unknown-string",
- "stacktrace": ".*std::basic_string::_Rep::_S_create.*",
+ "name": "tc-no-typeinfo-other",
+ "stacktrace": ".*",
+ "typeinfo": "no typeinfo",
"allocator": "malloc"
},
{
- "name": "tc-catch-all",
+ "name": "tc-other",
"stacktrace": ".*",
+ "typeinfo": ".*",
"allocator": "malloc"
},
{
@@ -193,5 +194,5 @@
"allocator": "optional"
}
],
- "version": "POLICY_DEEP_3"
+ "version": "POLICY_DEEP_4"
}
« no previous file with comments | « tools/deep_memory_profiler/policy.l2.json ('k') | tools/find_runtime_symbols/find_runtime_symbols.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698