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

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

Issue 11665015: Categorize STL maps, sets, and vectors in DMP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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
« 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-anonymous", 10 "unhooked-anonymous",
(...skipping 27 matching lines...) Expand all
38 "tc-webcore-node-create-renderer", 38 "tc-webcore-node-create-renderer",
39 "tc-webcore-render-catch-all", 39 "tc-webcore-render-catch-all",
40 "tc-webcore-setInnerHTML-except-node", 40 "tc-webcore-setInnerHTML-except-node",
41 "tc-wtf-StringImpl-user-catch-all", 41 "tc-wtf-StringImpl-user-catch-all",
42 "tc-wtf-HashTable-user-catch-all", 42 "tc-wtf-HashTable-user-catch-all",
43 "tc-webcore-everything-create", 43 "tc-webcore-everything-create",
44 "tc-webkit-from-v8-catch-all", 44 "tc-webkit-from-v8-catch-all",
45 "tc-webkit-catch-all", 45 "tc-webkit-catch-all",
46 "tc-v8-catch-all", 46 "tc-v8-catch-all",
47 "tc-toplevel-string", 47 "tc-toplevel-string",
48 "tc-std-treemap",
49 "tc-std-hashmap",
50 "tc-std-vector",
51 "tc-std-other",
48 "tc-catch-all", 52 "tc-catch-all",
49 "tc-unused", 53 "tc-unused",
50 "UNTIL_HERE_FOR_TOTAL", 54 "UNTIL_HERE_FOR_TOTAL",
51 "total-exclude-profiler", 55 "total-exclude-profiler",
52 "total", 56 "total",
53 "anonymous", 57 "anonymous",
54 "file-exec", 58 "file-exec",
55 "file-nonexec", 59 "file-nonexec",
56 "stack", 60 "stack",
57 "other", 61 "other",
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 "name": "tc-v8-catch-all", 393 "name": "tc-v8-catch-all",
390 "stacktrace": ".*v8::.*", 394 "stacktrace": ".*v8::.*",
391 "allocator": "malloc" 395 "allocator": "malloc"
392 }, 396 },
393 { 397 {
394 "name": "tc-toplevel-string", 398 "name": "tc-toplevel-string",
395 "stacktrace": "std::basic_string::_Rep::_S_create", 399 "stacktrace": "std::basic_string::_Rep::_S_create",
396 "allocator": "malloc" 400 "allocator": "malloc"
397 }, 401 },
398 { 402 {
403 "name": "tc-std-treemap",
404 "stacktrace": ".*::allocate std::(_Rb_tree|__1::__tree).*",
405 "allocator": "malloc"
406 },
407 {
408 "name": "tc-std-hashmap",
409 "stacktrace": ".*(std::vector::reserve __gnu_cxx::hashtable|::allocate std ::_Hashtable|::allocate std::__1::__hash_table).*",
410 "allocator": "malloc"
411 },
412 {
413 "name": "tc-std-vector",
414 "stacktrace": ".*std::(_Vector_base::_M_allocate|__1::vector::allocate).*" ,
415 "allocator": "malloc"
416 },
417 {
418 "name": "tc-std-other",
419 "stacktrace": ".*(__gnu_cxx::new_allocator::allocate|std::__1::allocator:: allocate).*",
420 "allocator": "malloc"
421 },
422 {
399 "name": "tc-catch-all", 423 "name": "tc-catch-all",
400 "stacktrace": ".*", 424 "stacktrace": ".*",
401 "allocator": "malloc" 425 "allocator": "malloc"
402 }, 426 },
403 { 427 {
404 "name": "UNTIL_HERE_FOR_TOTAL", 428 "name": "UNTIL_HERE_FOR_TOTAL",
405 "stacktrace": "optional", 429 "stacktrace": "optional",
406 "allocator": "optional" 430 "allocator": "optional"
407 }, 431 },
408 { 432 {
(...skipping 26 matching lines...) Expand all
435 "stacktrace": "optional", 459 "stacktrace": "optional",
436 "allocator": "optional" 460 "allocator": "optional"
437 }, 461 },
438 { 462 {
439 "name": "other", 463 "name": "other",
440 "stacktrace": "optional", 464 "stacktrace": "optional",
441 "allocator": "optional" 465 "allocator": "optional"
442 } 466 }
443 ], 467 ],
444 "version": "POLICY_DEEP_3" 468 "version": "POLICY_DEEP_3"
445 } 469 }
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