Adjust small heap threshold for idle time handler.
authorulan@chromium.org <ulan@chromium.org>
Mon, 22 Sep 2014 12:38:34 +0000 (12:38 +0000)
committerulan@chromium.org <ulan@chromium.org>
Mon, 22 Sep 2014 12:38:34 +0000 (12:38 +0000)
Follow-up for r23871.

BUG=chromium:407593
LOG=N
TBR=hpayer@chromium.org

Review URL: https://codereview.chromium.org/592053002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24116 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/heap/gc-idle-time-handler.h

index 473b474..daab616 100644 (file)
@@ -108,7 +108,7 @@ class GCIdleTimeHandler {
 
   // Heap size threshold below which we prefer mark-compact over incremental
   // step.
-  static const size_t kSmallHeapSize = 2 * kPointerSize * MB;
+  static const size_t kSmallHeapSize = 4 * kPointerSize * MB;
 
   // That is the maximum idle time we will have during frame rendering.
   static const size_t kMaxFrameRenderingIdleTime = 16;