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

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

Issue 15511005: Breakdown "unhooked" memory regions by VMA pathnames and permissions. (Closed) Base URL: git@github.com:dmikurube/chromium.git@work
Patch Set: Created 7 years, 7 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 2a5d2b9ee566b43caef4236e1a9cd5e6d8deba7a..db08011f1a2d7e3c9594fa4fca06f28e18057c73 100644
--- a/tools/deep_memory_profiler/policy.android.renderer.json
+++ b/tools/deep_memory_profiler/policy.android.renderer.json
@@ -112,28 +112,29 @@
},
{
"name": "unhooked-anonymous",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": "^$",
+ "allocator": "unhooked"
},
{
"name": "unhooked-file-exec",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": "^/.*",
+ "mappedpermission": "..x.",
+ "allocator": "unhooked"
},
{
"name": "unhooked-file-nonexec",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": "^/.*",
+ "allocator": "unhooked"
},
{
"name": "unhooked-stack",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": ".stack.",
+ "allocator": "unhooked"
},
{
"name": "unhooked-other",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": ".*",
+ "allocator": "unhooked"
},
{
"name": "mmap-v8-heap-newspace",

Powered by Google App Engine
This is Rietveld 408576698