Index: src/heap/mark-compact.cc |
diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc |
index b0d39562d2b1220bbbd0697d6a77c378d74f0936..c7e4d8f29a6cd9c60f1882bb945f0be518a6f256 100644 |
--- a/src/heap/mark-compact.cc |
+++ b/src/heap/mark-compact.cc |
@@ -600,7 +600,7 @@ |
// For memory reducing and optimize for memory mode we directly define both |
// constants. |
const int kTargetFragmentationPercentForReduceMemory = 20; |
- const int kMaxEvacuatedBytesForReduceMemory = 12 * MB; |
+ const int kMaxEvacuatedBytesForReduceMemory = 12 * Page::kPageSize; |
const int kTargetFragmentationPercentForOptimizeMemory = 20; |
const int kMaxEvacuatedBytesForOptimizeMemory = 6 * MB; |
@@ -608,10 +608,10 @@ |
// defaults to start and switch to a trace-based (using compaction speed) |
// approach as soon as we have enough samples. |
const int kTargetFragmentationPercent = 70; |
- const int kMaxEvacuatedBytes = 4 * MB; |
+ const int kMaxEvacuatedBytes = 4 * Page::kPageSize; |
// Time to take for a single area (=payload of page). Used as soon as there |
// exist enough compaction speed samples. |
- const float kTargetMsPerArea = 0.5; |
+ const int kTargetMsPerArea = 1; |
if (heap()->ShouldReduceMemory()) { |
*target_fragmentation_percent = kTargetFragmentationPercentForReduceMemory; |
@@ -3218,7 +3218,7 @@ |
// The number of parallel compaction tasks is limited by: |
// - #evacuation pages |
// - (#cores - 1) |
- const double kTargetCompactionTimeInMs = .5; |
+ const double kTargetCompactionTimeInMs = 1; |
const int kNumSweepingTasks = 3; |
double compaction_speed = |