Commit 2c8f9f16 authored by hpayer@chromium.org's avatar hpayer@chromium.org

Reduce max executable size limit.

BUG=395679
LOG=n
R=jarin@chromium.org

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

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22667 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 34f5edd5
...@@ -1085,14 +1085,13 @@ class Heap { ...@@ -1085,14 +1085,13 @@ class Heap {
// 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.
static const int kMaxExecutableSizeLowMemoryDevice = static const int kMaxExecutableSizeLowMemoryDevice = 96 * kPointerMultiplier;
128 * kPointerMultiplier;
static const int kMaxExecutableSizeMediumMemoryDevice = static const int kMaxExecutableSizeMediumMemoryDevice =
256 * kPointerMultiplier; 192 * kPointerMultiplier;
static const int kMaxExecutableSizeHighMemoryDevice = static const int kMaxExecutableSizeHighMemoryDevice =
512 * kPointerMultiplier; 256 * kPointerMultiplier;
static const int kMaxExecutableSizeHugeMemoryDevice = static const int kMaxExecutableSizeHugeMemoryDevice =
700 * kPointerMultiplier; 256 * kPointerMultiplier;
intptr_t OldGenerationAllocationLimit(intptr_t old_gen_size, intptr_t OldGenerationAllocationLimit(intptr_t old_gen_size,
int freed_global_handles); int freed_global_handles);
......
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