Skip to content

Commit

Permalink
[heap] Bump up old generation limit for huge memory devices.
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
ulan authored and Commit bot committed Nov 30, 2016
1 parent c819616 commit ec90ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/heap/heap.h
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ class Heap {
static const int kMaxOldSpaceSizeMediumMemoryDevice =
256 * 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.
// Sizes are in MB.
Expand Down

0 comments on commit ec90ccb

Please sign in to comment.