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

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: addressed bulach's comment 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
« no previous file with comments | « tools/deep_memory_profiler/policy.android.browser.json ('k') | tools/deep_memory_profiler/policy.l0.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..dc1e3b5e9fc8c41a78ea1d3adeb4f76bfe8f503c 100644
--- a/tools/deep_memory_profiler/policy.android.renderer.json
+++ b/tools/deep_memory_profiler/policy.android.renderer.json
@@ -7,8 +7,19 @@
"FROM_HERE_FOR_TOTAL",
"mustbezero",
"unhooked-absent",
+ "unhooked-ashmem-dalvik-heap",
+ "unhooked-ashmem-dalvik-LinearAlloc",
+ "unhooked-ashmem-dalvik-aux-structure",
+ "unhooked-ashmem-dalvik-bitmap",
+ "unhooked-ashmem-dalvik-other",
+ "unhooked-pvrsrvkm",
+ "unhooked-system-dex",
+ "unhooked-chrome-dex",
+ "unhooked-other-ashmem",
"unhooked-anonymous",
+ "unhooked-file-exec-lib-chrome",
"unhooked-file-exec",
+ "unhooked-file-nonexec-lib-chrome",
"unhooked-file-nonexec",
"unhooked-stack",
"unhooked-other",
@@ -111,29 +122,86 @@
"allocator": "optional"
},
{
+ "name": "unhooked-ashmem-dalvik-heap",
+ "mappedpathname": "/dev/ashmem/dalvik-heap.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-ashmem-dalvik-LinearAlloc",
+ "mappedpathname": "/dev/ashmem/dalvik-LinearAlloc.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-ashmem-dalvik-aux-structure",
+ "mappedpathname": "/dev/ashmem/dalvik-aux-structure.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-ashmem-dalvik-bitmap",
+ "mappedpathname": "/dev/ashmem/dalvik-bitmap.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-ashmem-dalvik-other",
+ "mappedpathname": "/dev/ashmem/dalvik.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-pvrsrvkm",
+ "mappedpathname": "/dev/pvrsrvkm.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-system-dex",
+ "mappedpathname": "/data/dalvik-cache/system.*.dex.*",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-chrome-dex",
+ "mappedpathname": "^/.*?(chrome|content).*?apk@classes.dex",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-other-ashmem",
+ "mappedpathname": "/dev/ashmem/.*",
+ "allocator": "unhooked"
+ },
+ {
"name": "unhooked-anonymous",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": "^$",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-file-exec-lib-chrome",
+ "mappedpathname": "^/.*?(chromeview|content).*",
+ "mappedpermission": "..x.",
+ "allocator": "unhooked"
},
{
"name": "unhooked-file-exec",
- "stacktrace": "optional",
- "allocator": "optional"
+ "mappedpathname": "^/.*",
+ "mappedpermission": "..x.",
+ "allocator": "unhooked"
+ },
+ {
+ "name": "unhooked-file-nonexec-lib-chrome",
+ "mappedpathname": "^/.*?(chromeview|content).*",
+ "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",
« no previous file with comments | « tools/deep_memory_profiler/policy.android.browser.json ('k') | tools/deep_memory_profiler/policy.l0.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698