| OLD | NEW |
| 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 Loading... |
| 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::|WebCore::|WebKit::).* | 52 mmap-webkit mmap .*(WTF::|blink::|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 |
| OLD | NEW |