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

Unified Diff: tools/deep_memory_profiler/policy.android.renderer.json

Issue 387313003: update deep-memory-profiler policy for stlport (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased(WebCore|blink) Created 6 years, 5 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: tools/deep_memory_profiler/policy.android.renderer.json
diff --git a/tools/deep_memory_profiler/policy.android.renderer.json b/tools/deep_memory_profiler/policy.android.renderer.json
index ce19b484cb91224d0589bb2c526659dac1a4c6f9..2c9ffa2096b20ac368fbb48263f128fd8cb53cd2 100644
--- a/tools/deep_memory_profiler/policy.android.renderer.json
+++ b/tools/deep_memory_profiler/policy.android.renderer.json
@@ -63,11 +63,11 @@
"tc-webkit-from-v8-catch-all",
"tc-webkit-catch-all",
"tc-v8-catch-all",
- "tc-toplevel-string",
- "tc-std-treemap",
- "tc-std-hashmap",
- "tc-std-vector",
- "tc-std-other",
+ "tc-stl-string",
+ "tc-stl-rbtree",
+ "tc-stl-vector",
+ "tc-stl-hashtable",
+ "tc-stl-other",
"tc-catch-all",
"tc-unused",
"UNTIL_HERE_FOR_TOTAL",
@@ -512,28 +512,28 @@
"allocator": "malloc"
},
{
- "name": "tc-toplevel-string",
- "stacktrace": "std::basic_string::_Rep::_S_create",
+ "name": "tc-stl-string",
+ "stacktrace": ".*std::basic_string::.*",
"allocator": "malloc"
},
{
- "name": "tc-std-treemap",
- "stacktrace": ".*::allocate std::(_Rb_tree|__1::__tree).*",
+ "name": "tc-stl-rbtree",
+ "stacktrace": ".*std::priv::_Rb_tree::.*",
"allocator": "malloc"
},
{
- "name": "tc-std-hashmap",
- "stacktrace": ".*(std::vector::reserve __gnu_cxx::hashtable|::allocate std::_Hashtable|::allocate std::__1::__hash_table).*",
+ "name": "tc-stl-vector",
+ "stacktrace": ".*std::priv::_Impl_vector::.*",
"allocator": "malloc"
},
{
- "name": "tc-std-vector",
- "stacktrace": ".*std::(_Vector_base::_M_allocate|__1::vector::allocate).*",
+ "name": "tc-stl-hashtable",
+ "stacktrace": ".*std::hashtable::.*",
"allocator": "malloc"
},
{
- "name": "tc-std-other",
- "stacktrace": ".*(__gnu_cxx::new_allocator::allocate|std::__1::allocator::allocate).*",
+ "name": "tc-stl-other",
+ "stacktrace": ".*std::__stl_new.*",
"allocator": "malloc"
},
{
« no previous file with comments | « tools/deep_memory_profiler/policy.android.browser.json ('k') | tools/deep_memory_profiler/policy.android.webview.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698