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

Side by Side Diff: trunk/src/tools/deep_memory_profiler/README.policy

Issue 402603002: Revert 283725 "deep_memory_profiler: Replace 'WebCore' with 'bli..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 | trunk/src/tools/deep_memory_profiler/lib/sorter.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Policy files contains a classification policy for dmprof.py. 1 Policy files contains a classification policy for dmprof.py.
2 2
3 Each line indicates a group to be classified and conditions for classifying 3 Each line indicates a group to be classified and conditions for classifying
4 in the following format. 4 in the following format.
5 Format: <group-name> <region-type> <pattern> 5 Format: <group-name> <region-type> <pattern>
6 6
7 <group-name> is a name for the group to be classified. Same names can appear 7 <group-name> is a name for the group to be classified. Same names can appear
8 in the same policy file multiple times. <region-type> represents a type of 8 in the same policy file multiple times. <region-type> represents a type of
9 the memory region. It's one of {malloc, mmap, default, optional}. <pattern> 9 the memory region. It's one of {malloc, mmap, default, optional}. <pattern>
10 is a Python-style regular expression to match with calling stack frames. 10 is a Python-style regular expression to match with calling stack frames.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 vm-profiler optional optional 42 vm-profiler optional optional
43 vm-total optional optional 43 vm-total optional optional
44 mmap-v8-heap-new mmap .*v8::.*::ReserveInitialChunk.* 44 mmap-v8-heap-new mmap .*v8::.*::ReserveInitialChunk.*
45 mmap-v8-heap-coderange mmap .*v8::.*::CodeRange::Setup.* 45 mmap-v8-heap-coderange mmap .*v8::.*::CodeRange::Setup.*
46 mmap-v8-heap-old-evacuate mmap .*v8::.*::OldSpace::.* v8::internal::Scav engingVisitor::EvacuateObject.* 46 mmap-v8-heap-old-evacuate mmap .*v8::.*::OldSpace::.* v8::internal::Scav engingVisitor::EvacuateObject.*
47 mmap-v8-heap-old mmap .*v8::.*::OldSpace::.* 47 mmap-v8-heap-old mmap .*v8::.*::OldSpace::.*
48 mmap-v8-heap-largeobj mmap .*v8::.*::LargeObjectChunk::New.* 48 mmap-v8-heap-largeobj mmap .*v8::.*::LargeObjectChunk::New.*
49 mmap-v8-heap-other mmap .*VirtualMemory.* 49 mmap-v8-heap-other mmap .*VirtualMemory.*
50 mmap-v8-heap-other mmap .*v8::internal::OS::Allocate.* 50 mmap-v8-heap-other mmap .*v8::internal::OS::Allocate.*
51 mmap-v8-nonheap mmap .*v8::.* 51 mmap-v8-nonheap mmap .*v8::.*
52 mmap-webkit mmap .*(WTF::|blink::|WebKit::).* 52 mmap-webkit mmap .*(WTF::|WebCore::|WebKit::).*
53 mmap-sqlite mmap .*sqlite3MemMalloc.* 53 mmap-sqlite mmap .*sqlite3MemMalloc.*
54 mmap-pl-arena mmap .*PL_ArenaAllocate.* 54 mmap-pl-arena mmap .*PL_ArenaAllocate.*
55 mmap-sk mmap .*sk_malloc_flags.* 55 mmap-sk mmap .*sk_malloc_flags.*
56 mmap-total-record-vm default default 56 mmap-total-record-vm default default
OLDNEW
« no previous file with comments | « no previous file | trunk/src/tools/deep_memory_profiler/lib/sorter.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698