Commit ec90ccb5 authored by ulan's avatar ulan Committed by Commit bot

[heap] Bump up old generation limit for huge memory devices.

This is an experiment to see the impact of the limit on OOM crashes.

BUG=chromium:667388

Review-Url: https://codereview.chromium.org/2514313004
Cr-Commit-Position: refs/heads/master@{#41391}
parent c8196163
...@@ -603,7 +603,7 @@ class Heap { ...@@ -603,7 +603,7 @@ class Heap {
static const int kMaxOldSpaceSizeMediumMemoryDevice = static const int kMaxOldSpaceSizeMediumMemoryDevice =
256 * kPointerMultiplier; 256 * kPointerMultiplier;
static const int kMaxOldSpaceSizeHighMemoryDevice = 512 * kPointerMultiplier; static const int kMaxOldSpaceSizeHighMemoryDevice = 512 * kPointerMultiplier;
static const int kMaxOldSpaceSizeHugeMemoryDevice = 700 * kPointerMultiplier; static const int kMaxOldSpaceSizeHugeMemoryDevice = 1024 * kPointerMultiplier;
// The executable size has to be a multiple of Page::kPageSize. // The executable size has to be a multiple of Page::kPageSize.
// Sizes are in MB. // Sizes are in MB.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment