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

Side by Side 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, 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 "stacktrace": "optional", 105 "stacktrace": "optional",
106 "allocator": "optional" 106 "allocator": "optional"
107 }, 107 },
108 { 108 {
109 "name": "unhooked-absent", 109 "name": "unhooked-absent",
110 "stacktrace": "optional", 110 "stacktrace": "optional",
111 "allocator": "optional" 111 "allocator": "optional"
112 }, 112 },
113 { 113 {
114 "name": "unhooked-anonymous", 114 "name": "unhooked-anonymous",
115 "stacktrace": "optional", 115 "mappedpathname": "^$",
116 "allocator": "optional" 116 "allocator": "unhooked"
117 }, 117 },
118 { 118 {
119 "name": "unhooked-file-exec", 119 "name": "unhooked-file-exec",
120 "stacktrace": "optional", 120 "mappedpathname": "^/.*",
121 "allocator": "optional" 121 "mappedpermission": "..x.",
122 "allocator": "unhooked"
122 }, 123 },
123 { 124 {
124 "name": "unhooked-file-nonexec", 125 "name": "unhooked-file-nonexec",
125 "stacktrace": "optional", 126 "mappedpathname": "^/.*",
126 "allocator": "optional" 127 "allocator": "unhooked"
127 }, 128 },
128 { 129 {
129 "name": "unhooked-stack", 130 "name": "unhooked-stack",
130 "stacktrace": "optional", 131 "mappedpathname": ".stack.",
131 "allocator": "optional" 132 "allocator": "unhooked"
132 }, 133 },
133 { 134 {
134 "name": "unhooked-other", 135 "name": "unhooked-other",
135 "stacktrace": "optional", 136 "mappedpathname": ".*",
136 "allocator": "optional" 137 "allocator": "unhooked"
137 }, 138 },
138 { 139 {
139 "name": "mmap-v8-heap-newspace", 140 "name": "mmap-v8-heap-newspace",
140 "stacktrace": ".*v8::internal::NewSpace::SetUp.*", 141 "stacktrace": ".*v8::internal::NewSpace::SetUp.*",
141 "allocator": "mmap" 142 "allocator": "mmap"
142 }, 143 },
143 { 144 {
144 "name": "mmap-v8-heap-coderange", 145 "name": "mmap-v8-heap-coderange",
145 "stacktrace": ".*v8::internal::CodeRange::SetUp.*", 146 "stacktrace": ".*v8::internal::CodeRange::SetUp.*",
146 "allocator": "mmap" 147 "allocator": "mmap"
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 "allocator": "optional" 497 "allocator": "optional"
497 }, 498 },
498 { 499 {
499 "name": "other", 500 "name": "other",
500 "stacktrace": "optional", 501 "stacktrace": "optional",
501 "allocator": "optional" 502 "allocator": "optional"
502 } 503 }
503 ], 504 ],
504 "version": "POLICY_DEEP_3" 505 "version": "POLICY_DEEP_3"
505 } 506 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698