Bug 111690

Summary: [chromium] Chromium's DRT implementation should support DumpMalloc and DumpJSHeap
Product: WebKit Reporter: Eric Seidel (no email) <eric>
Component: New BugsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WONTFIX    
Severity: Normal CC: dpranke, jochen, kojih, marja, schenney
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Description Eric Seidel (no email) 2013-03-06 23:49:26 PST
[chromium] Chromium's DRT implementation should support DumpMalloc and DumpJSHeap

Mac DRT dumps these for run-perf-tests, which are collected and reported in the results pages and tracked automatically at perf.webkit.org

run-perf-test would magically start reporting them if we dumped either of these.

DumpJSHeap: appears to be an exit-time thing.

DumpMalloc is done as part of a normal dump():
        WTF::FastMallocStatistics mallocStats = WTF::fastMallocStatistics();
        printf("DumpMalloc: %li\n", mallocStats.committedVMBytes);