DescriptionAlways enable lazy sweeping.
This turns on lazy sweeping for enable_oilpan=0.
Lazy/incremental sweeping reduces GC pause times by having the
garbage collector perform its marking and processing of live
objects together with a minimal amount of sweeping of finalizable
objects before returning. The remaining heap regions to be swept
up and finalized are then handled incrementally as part of
heap allocation requests. Amortizing that sweeping cost rather
than taking a longer GC "stop the world" pause in one go.
Lazy sweeping is enabled with Oilpan always on (enable_oilpan=1);
this extends it to also be for the Oilpan GCs that run on trunk
(where enable_oilpan=0).
R=haraken
BUG=480837
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=198095
Patch Set 1 #
Messages
Total messages: 5 (2 generated)
|