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
This commit is contained in:
parent
34f5edd500
commit
2c8f9f1667
@ -1085,14 +1085,13 @@ class Heap {
|
||||
|
||||
// The executable size has to be a multiple of Page::kPageSize.
|
||||
// Sizes are in MB.
|
||||
static const int kMaxExecutableSizeLowMemoryDevice =
|
||||
128 * kPointerMultiplier;
|
||||
static const int kMaxExecutableSizeLowMemoryDevice = 96 * kPointerMultiplier;
|
||||
static const int kMaxExecutableSizeMediumMemoryDevice =
|
||||
256 * kPointerMultiplier;
|
||||
192 * kPointerMultiplier;
|
||||
static const int kMaxExecutableSizeHighMemoryDevice =
|
||||
512 * kPointerMultiplier;
|
||||
256 * kPointerMultiplier;
|
||||
static const int kMaxExecutableSizeHugeMemoryDevice =
|
||||
700 * kPointerMultiplier;
|
||||
256 * kPointerMultiplier;
|
||||
|
||||
intptr_t OldGenerationAllocationLimit(intptr_t old_gen_size,
|
||||
int freed_global_handles);
|
||||
|
Loading…
Reference in New Issue
Block a user