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

Side by Side Diff: tools/deep_memory_profiler/policy.android.browser.json

Issue 328553006: dmprof: Fix gpu matchers in android.browser policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | no next file » | 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-ashmem-dalvik-heap", 10 "unhooked-ashmem-dalvik-heap",
(...skipping 10 matching lines...) Expand all
21 "unhooked-file-exec-lib-chrome-shared", 21 "unhooked-file-exec-lib-chrome-shared",
22 "unhooked-file-exec-lib-chrome-private", 22 "unhooked-file-exec-lib-chrome-private",
23 "unhooked-file-exec", 23 "unhooked-file-exec",
24 "unhooked-file-nonexec-lib-chrome-shared", 24 "unhooked-file-nonexec-lib-chrome-shared",
25 "unhooked-file-nonexec-lib-chrome-private", 25 "unhooked-file-nonexec-lib-chrome-private",
26 "unhooked-file-nonexec", 26 "unhooked-file-nonexec",
27 "unhooked-stack", 27 "unhooked-stack",
28 "unhooked-other", 28 "unhooked-other",
29 "no-bucket", 29 "no-bucket",
30 "mmap-gpu-transferbuffer", 30 "mmap-gpu-transferbuffer",
31 "mmap-gpu-ringbuffer", 31 "mmap-gpu-command-ringbuffer",
32 "mmap-gpu-transfer-ringbuffer",
32 "mmap-catch-all", 33 "mmap-catch-all",
33 "tc-disk_cache-backing", 34 "tc-disk_cache-backing",
34 "tc-disk_cache-other", 35 "tc-disk_cache-other",
35 "tc-sqlite3MemAlloc", 36 "tc-sqlite3MemAlloc",
36 "tc-angle", 37 "tc-angle",
37 "tc-crypto", 38 "tc-crypto",
38 "tc-net-iobuffer", 39 "tc-net-iobuffer",
39 "tc-stl-string", 40 "tc-stl-string",
40 "tc-stl-rbtree", 41 "tc-stl-rbtree",
41 "tc-stl-vector", 42 "tc-stl-vector",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 "mappedpathname": ".stack.", 195 "mappedpathname": ".stack.",
195 "allocator": "unhooked" 196 "allocator": "unhooked"
196 }, 197 },
197 { 198 {
198 "name": "unhooked-other", 199 "name": "unhooked-other",
199 "mappedpathname": ".*", 200 "mappedpathname": ".*",
200 "allocator": "unhooked" 201 "allocator": "unhooked"
201 }, 202 },
202 { 203 {
203 "name": "mmap-gpu-transferbuffer", 204 "name": "mmap-gpu-transferbuffer",
204 "stacktrace": ".*gpu::TransferBufferManager::RegisterTransferBuffer.*", 205 "stacktrace": ".*content::GpuCommandBufferStub::OnRegisterTransferBuffer.* ",
205 "allocator": "mmap" 206 "allocator": "mmap"
206 }, 207 },
207 { 208 {
208 "name": "mmap-gpu-ringbuffer", 209 "name": "mmap-gpu-command-ringbuffer",
209 "stacktrace": ".*gpu::CommandBufferHelper::AllocateRingBuffer.*", 210 "stacktrace": ".*gpu::CommandBufferHelper::AllocateRingBuffer.*",
210 "allocator": "mmap" 211 "allocator": "mmap"
211 }, 212 },
212 { 213 {
214 "name": "mmap-gpu-transfer-ringbuffer",
215 "stacktrace": ".*gpu::TransferBuffer::AllocateRingBuffer.*",
216 "allocator": "mmap"
217 },
218 {
213 "name": "mmap-catch-all", 219 "name": "mmap-catch-all",
214 "stacktrace": ".*", 220 "stacktrace": ".*",
215 "allocator": "mmap" 221 "allocator": "mmap"
216 }, 222 },
217 { 223 {
218 "name": "tc-disk_cache-backing", 224 "name": "tc-disk_cache-backing",
219 "stacktrace": ".*disk_cache::BackendImpl::InitBackingStore.*", 225 "stacktrace": ".*disk_cache::BackendImpl::InitBackingStore.*",
220 "allocator": "malloc" 226 "allocator": "malloc"
221 }, 227 },
222 { 228 {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 "allocator": "optional" 321 "allocator": "optional"
316 }, 322 },
317 { 323 {
318 "name": "other", 324 "name": "other",
319 "stacktrace": "optional", 325 "stacktrace": "optional",
320 "allocator": "optional" 326 "allocator": "optional"
321 } 327 }
322 ], 328 ],
323 "version": "POLICY_DEEP_3" 329 "version": "POLICY_DEEP_3"
324 } 330 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698