From 0bfa182784c084e90fee9b239f6b8036ca445c1c Mon Sep 17 00:00:00 2001 From: "hpayer@chromium.org" Date: Thu, 15 May 2014 11:10:07 +0000 Subject: [PATCH] Decrease OldSurvivalRateLowThreshold to fit heap growing strategy. BUG= R=mvstanton@chromium.org Review URL: https://codereview.chromium.org/282223005 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21327 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap.h b/src/heap.h index 8e3cd3f2b0..d0d3547391 100644 --- a/src/heap.h +++ b/src/heap.h @@ -2025,7 +2025,7 @@ class Heap { static const int kYoungSurvivalRateLowThreshold = 10; static const int kYoungSurvivalRateAllowedDeviation = 15; - static const int kOldSurvivalRateLowThreshold = 20; + static const int kOldSurvivalRateLowThreshold = 10; int young_survivors_after_last_gc_; int high_survival_rate_period_length_;