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

Side by Side Diff: tools/deep_memory_profiler/policy.sourcefile.json

Issue 13514003: Breakdown memory usage by source file names in dmprof. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
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",
11 "unhooked-file-exec", 11 "unhooked-file-exec",
12 "unhooked-file-nonexec", 12 "unhooked-file-nonexec",
13 "unhooked-stack", 13 "unhooked-stack",
14 "unhooked-other", 14 "unhooked-other",
15 "no-bucket", 15 "no-bucket",
16 "mmap-v8", 16 "mmap-v8",
17 "mmap-catch-all", 17 "mmap-catch-all",
18 "tc-used-all", 18 "tc-v8",
19 "tc-skia",
20 "tc-webcore",
21 "tc-webkit",
22 "tc-catch-all",
19 "tc-unused", 23 "tc-unused",
20 "UNTIL_HERE_FOR_TOTAL", 24 "UNTIL_HERE_FOR_TOTAL",
21 "total-exclude-profiler", 25 "total-exclude-profiler",
22 "total", 26 "total",
23 "absent", 27 "absent",
24 "anonymous", 28 "anonymous",
25 "file-exec", 29 "file-exec",
26 "file-nonexec", 30 "file-nonexec",
27 "stack", 31 "stack",
28 "other", 32 "other",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "stacktrace": "optional", 95 "stacktrace": "optional",
92 "allocator": "optional" 96 "allocator": "optional"
93 }, 97 },
94 { 98 {
95 "name": "unhooked-other", 99 "name": "unhooked-other",
96 "stacktrace": "optional", 100 "stacktrace": "optional",
97 "allocator": "optional" 101 "allocator": "optional"
98 }, 102 },
99 { 103 {
100 "name": "mmap-v8", 104 "name": "mmap-v8",
101 "stacktrace": ".*v8::.*", 105 "stacksourcefile": ".*\\.\\./\\.\\./v8/src/.*",
102 "allocator": "mmap" 106 "allocator": "mmap"
103 }, 107 },
104 { 108 {
105 "name": "mmap-catch-all", 109 "name": "mmap-catch-all",
106 "stacktrace": ".*", 110 "stacksourcefile": ".*",
107 "allocator": "mmap" 111 "allocator": "mmap"
108 }, 112 },
109 { 113 {
110 "name": "tc-used-all", 114 "name": "tc-v8",
111 "stacktrace": ".*", 115 "stacksourcefile": ".*\\.\\./\\.\\./v8/src/.*",
112 "allocator": "malloc" 116 "allocator": "malloc"
113 }, 117 },
114 { 118 {
119 "name": "tc-skia",
120 "stacksourcefile": ".*\\.\\./\\.\\./third_party/skia/src/.*",
121 "allocator": "malloc"
122 },
123 {
124 "name": "tc-webcore",
125 "stacksourcefile": ".*\\.\\./\\.\\./third_party/WebKit/Source/WebCore/.*",
126 "allocator": "malloc"
127 },
128 {
129 "name": "tc-webkit",
130 "stacksourcefile": ".*\\.\\./\\.\\./third_party/WebKit/Source/.*",
131 "allocator": "malloc"
132 },
133 {
134 "name": "tc-catch-all",
135 "stacksourcefile": ".*",
136 "allocator": "malloc"
137 },
138 {
115 "name": "UNTIL_HERE_FOR_TOTAL", 139 "name": "UNTIL_HERE_FOR_TOTAL",
116 "stacktrace": "optional", 140 "stacktrace": "optional",
117 "allocator": "optional" 141 "allocator": "optional"
118 }, 142 },
119 { 143 {
120 "name": "total-exclude-profiler", 144 "name": "total-exclude-profiler",
121 "stacktrace": "optional", 145 "stacktrace": "optional",
122 "allocator": "optional" 146 "allocator": "optional"
123 }, 147 },
124 { 148 {
(...skipping 27 matching lines...) Expand all
152 "allocator": "optional" 176 "allocator": "optional"
153 }, 177 },
154 { 178 {
155 "name": "other", 179 "name": "other",
156 "stacktrace": "optional", 180 "stacktrace": "optional",
157 "allocator": "optional" 181 "allocator": "optional"
158 } 182 }
159 ], 183 ],
160 "version": "POLICY_DEEP_3" 184 "version": "POLICY_DEEP_3"
161 } 185 }
OLDNEW
« no previous file with comments | « tools/deep_memory_profiler/policies.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