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

Side by Side Diff: tools/deep_memory_profiler/policy.l0.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, 6 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "components": [ 2 "components": [
3 "second", 3 "second",
4 "mmap-profiler", 4 "mmap-profiler",
5 "mmap-type-profiler", 5 "mmap-type-profiler",
6 "mmap-tcmalloc", 6 "mmap-tcmalloc",
7 "FROM_HERE_FOR_TOTAL", 7 "FROM_HERE_FOR_TOTAL",
8 "mustbezero", 8 "mustbezero",
9 "unhooked-absent", 9 "unhooked-absent",
10 "unhooked-anonymous", 10 "unhooked-anonymous",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "stacktrace": "optional", 66 "stacktrace": "optional",
67 "allocator": "optional" 67 "allocator": "optional"
68 }, 68 },
69 { 69 {
70 "name": "unhooked-absent", 70 "name": "unhooked-absent",
71 "stacktrace": "optional", 71 "stacktrace": "optional",
72 "allocator": "optional" 72 "allocator": "optional"
73 }, 73 },
74 { 74 {
75 "name": "unhooked-anonymous", 75 "name": "unhooked-anonymous",
76 "stacktrace": "optional", 76 "mappedpathname": "^$",
77 "allocator": "optional" 77 "allocator": "unhooked"
78 }, 78 },
79 { 79 {
80 "name": "unhooked-file-exec", 80 "name": "unhooked-file-exec",
81 "stacktrace": "optional", 81 "mappedpathname": "^/.*",
82 "allocator": "optional" 82 "mappedpermission": "..x.",
83 "allocator": "unhooked"
83 }, 84 },
84 { 85 {
85 "name": "unhooked-file-nonexec", 86 "name": "unhooked-file-nonexec",
86 "stacktrace": "optional", 87 "mappedpathname": "^/.*",
87 "allocator": "optional" 88 "allocator": "unhooked"
88 }, 89 },
89 { 90 {
90 "name": "unhooked-stack", 91 "name": "unhooked-stack",
91 "stacktrace": "optional", 92 "mappedpathname": ".stack.",
92 "allocator": "optional" 93 "allocator": "unhooked"
93 }, 94 },
94 { 95 {
95 "name": "unhooked-other", 96 "name": "unhooked-other",
96 "stacktrace": "optional", 97 "mappedpathname": ".*",
97 "allocator": "optional" 98 "allocator": "unhooked"
98 }, 99 },
99 { 100 {
100 "name": "mmap-v8", 101 "name": "mmap-v8",
101 "stacktrace": ".*v8::.*", 102 "stacktrace": ".*v8::.*",
102 "allocator": "mmap" 103 "allocator": "mmap"
103 }, 104 },
104 { 105 {
105 "name": "mmap-catch-all", 106 "name": "mmap-catch-all",
106 "stacktrace": ".*", 107 "stacktrace": ".*",
107 "allocator": "mmap" 108 "allocator": "mmap"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 "stacktrace": "optional", 152 "stacktrace": "optional",
152 "allocator": "optional" 153 "allocator": "optional"
153 }, 154 },
154 { 155 {
155 "name": "other", 156 "name": "other",
156 "stacktrace": "optional", 157 "stacktrace": "optional",
157 "allocator": "optional" 158 "allocator": "optional"
158 } 159 }
159 ], 160 ],
160 "version": "POLICY_DEEP_3" 161 "version": "POLICY_DEEP_3"
161 } 162 }
OLDNEW
« no previous file with comments | « tools/deep_memory_profiler/policy.android.renderer.json ('k') | tools/deep_memory_profiler/policy.l1.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698