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

Side by Side Diff: tools/deep_memory_profiler/policy.l2.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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "stacktrace": "optional", 100 "stacktrace": "optional",
101 "allocator": "optional" 101 "allocator": "optional"
102 }, 102 },
103 { 103 {
104 "name": "unhooked-absent", 104 "name": "unhooked-absent",
105 "stacktrace": "optional", 105 "stacktrace": "optional",
106 "allocator": "optional" 106 "allocator": "optional"
107 }, 107 },
108 { 108 {
109 "name": "unhooked-anonymous", 109 "name": "unhooked-anonymous",
110 "stacktrace": "optional", 110 "mappedpathname": "^$",
111 "allocator": "optional" 111 "allocator": "unhooked"
112 }, 112 },
113 { 113 {
114 "name": "unhooked-file-exec", 114 "name": "unhooked-file-exec",
115 "stacktrace": "optional", 115 "mappedpathname": "^/.*",
116 "allocator": "optional" 116 "mappedpermission": "..x.",
117 "allocator": "unhooked"
117 }, 118 },
118 { 119 {
119 "name": "unhooked-file-nonexec", 120 "name": "unhooked-file-nonexec",
120 "stacktrace": "optional", 121 "mappedpathname": "^/.*",
121 "allocator": "optional" 122 "allocator": "unhooked"
122 }, 123 },
123 { 124 {
124 "name": "unhooked-stack", 125 "name": "unhooked-stack",
125 "stacktrace": "optional", 126 "mappedpathname": ".stack.",
126 "allocator": "optional" 127 "allocator": "unhooked"
127 }, 128 },
128 { 129 {
129 "name": "unhooked-other", 130 "name": "unhooked-other",
130 "stacktrace": "optional", 131 "mappedpathname": ".*",
131 "allocator": "optional" 132 "allocator": "unhooked"
132 }, 133 },
133 { 134 {
134 "name": "mmap-v8-heap-newspace", 135 "name": "mmap-v8-heap-newspace",
135 "stacktrace": ".*v8::internal::NewSpace::SetUp.*", 136 "stacktrace": ".*v8::internal::NewSpace::SetUp.*",
136 "allocator": "mmap" 137 "allocator": "mmap"
137 }, 138 },
138 { 139 {
139 "name": "mmap-v8-heap-coderange", 140 "name": "mmap-v8-heap-coderange",
140 "stacktrace": ".*v8::internal::CodeRange::SetUp.*", 141 "stacktrace": ".*v8::internal::CodeRange::SetUp.*",
141 "allocator": "mmap" 142 "allocator": "mmap"
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 "allocator": "optional" 467 "allocator": "optional"
467 }, 468 },
468 { 469 {
469 "name": "other", 470 "name": "other",
470 "stacktrace": "optional", 471 "stacktrace": "optional",
471 "allocator": "optional" 472 "allocator": "optional"
472 } 473 }
473 ], 474 ],
474 "version": "POLICY_DEEP_3" 475 "version": "POLICY_DEEP_3"
475 } 476 }
OLDNEW
« no previous file with comments | « tools/deep_memory_profiler/policy.l1.json ('k') | tools/deep_memory_profiler/policy.sourcefile.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698