Bug 77364

Summary: Performance tests should let garbage collection happen at an arbitrary time and report the GC time separately
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: abarth, andersca, eric, leviw, morrita, oliver
Priority: P3    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 77037    

Description Ryosuke Niwa 2012-01-30 13:17:19 PST
After http://trac.webkit.org/changeset/106211, we force gc() after each test run. However, we should also have a way to measure the time we spend in garbage collection and report it separately. e.g. if we some changeset make us spend 1000ms in gc instead of 100ms, then performance tests should capture that.
Comment 1 Ryosuke Niwa 2012-01-30 13:20:38 PST
This is a nice-to-have feature but I wouldn't prioritize it at the moment.
Comment 2 Hajime Morrita 2012-02-01 17:42:07 PST
(In reply to comment #1)
> This is a nice-to-have feature but I wouldn't prioritize it at the moment.
And it makes less sense for modern VMs which has generational/incremental GC.
V8 has it. And JSC also has or is going to have one.

What we need is, IMO, the profiler dump for each (or part of) test run.