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

Side by Side Diff: tools/deep_memory_profiler/policy.l1.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
« no previous file with comments | « tools/deep_memory_profiler/policy.l0.json ('k') | tools/deep_memory_profiler/policy.l2.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "stacktrace": "optional", 73 "stacktrace": "optional",
74 "allocator": "optional" 74 "allocator": "optional"
75 }, 75 },
76 { 76 {
77 "name": "unhooked-absent", 77 "name": "unhooked-absent",
78 "stacktrace": "optional", 78 "stacktrace": "optional",
79 "allocator": "optional" 79 "allocator": "optional"
80 }, 80 },
81 { 81 {
82 "name": "unhooked-anonymous", 82 "name": "unhooked-anonymous",
83 "stacktrace": "optional", 83 "mappedpathname": "^$",
84 "allocator": "optional" 84 "allocator": "unhooked"
85 }, 85 },
86 { 86 {
87 "name": "unhooked-file-exec", 87 "name": "unhooked-file-exec",
88 "stacktrace": "optional", 88 "mappedpathname": "^/.*",
89 "allocator": "optional" 89 "mappedpermission": "..x.",
90 "allocator": "unhooked"
90 }, 91 },
91 { 92 {
92 "name": "unhooked-file-nonexec", 93 "name": "unhooked-file-nonexec",
93 "stacktrace": "optional", 94 "mappedpathname": "^/.*",
94 "allocator": "optional" 95 "allocator": "unhooked"
95 }, 96 },
96 { 97 {
97 "name": "unhooked-stack", 98 "name": "unhooked-stack",
98 "stacktrace": "optional", 99 "mappedpathname": ".stack.",
99 "allocator": "optional" 100 "allocator": "unhooked"
100 }, 101 },
101 { 102 {
102 "name": "unhooked-other", 103 "name": "unhooked-other",
103 "stacktrace": "optional", 104 "mappedpathname": ".*",
104 "allocator": "optional" 105 "allocator": "unhooked"
105 }, 106 },
106 { 107 {
107 "name": "mmap-v8-heap-newspace", 108 "name": "mmap-v8-heap-newspace",
108 "stacktrace": ".*v8::internal::NewSpace::SetUp.*", 109 "stacktrace": ".*v8::internal::NewSpace::SetUp.*",
109 "allocator": "mmap" 110 "allocator": "mmap"
110 }, 111 },
111 { 112 {
112 "name": "mmap-v8-heap-coderange", 113 "name": "mmap-v8-heap-coderange",
113 "stacktrace": ".*v8::internal::CodeRange::SetUp.*", 114 "stacktrace": ".*v8::internal::CodeRange::SetUp.*",
114 "allocator": "mmap" 115 "allocator": "mmap"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "stacktrace": "optional", 194 "stacktrace": "optional",
194 "allocator": "optional" 195 "allocator": "optional"
195 }, 196 },
196 { 197 {
197 "name": "other", 198 "name": "other",
198 "stacktrace": "optional", 199 "stacktrace": "optional",
199 "allocator": "optional" 200 "allocator": "optional"
200 } 201 }
201 ], 202 ],
202 "version": "POLICY_DEEP_3" 203 "version": "POLICY_DEEP_3"
203 } 204 }
OLDNEW
« no previous file with comments | « tools/deep_memory_profiler/policy.l0.json ('k') | tools/deep_memory_profiler/policy.l2.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698