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

Unified Diff: tools/deep_memory_profiler/policy.t0.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.sourcefile.json ('k') | tools/deep_memory_profiler/tests/dmprof_test.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.t0.json b/tools/deep_memory_profiler/policy.t0.json
index aab87151b078dada3acb1b03db40e1d251814a4e..fd716babe0aebbb9b92d1cb627c0cf5af32696b7 100644
--- a/tools/deep_memory_profiler/policy.t0.json
+++ b/tools/deep_memory_profiler/policy.t0.json
@@ -79,28 +79,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",
@@ -201,4 +202,4 @@
}
],
"version": "POLICY_DEEP_4"
-}
+}
« no previous file with comments | « tools/deep_memory_profiler/policy.sourcefile.json ('k') | tools/deep_memory_profiler/tests/dmprof_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698