Revision: 22667
Author: [email protected]
Date: Tue Jul 29 11:42:59 2014 UTC
Log: Reduce max executable size limit.
BUG=395679
LOG=n
[email protected]
Review URL: https://codereview.chromium.org/413313003
http://code.google.com/p/v8/source/detail?r=22667
Modified:
/branches/bleeding_edge/src/heap.h
=======================================
--- /branches/bleeding_edge/src/heap.h Mon Jul 28 14:18:40 2014 UTC
+++ /branches/bleeding_edge/src/heap.h Tue Jul 29 11:42:59 2014 UTC
@@ -1085,14 +1085,13 @@
// 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 =
+ 192 * kPointerMultiplier;
+ static const int kMaxExecutableSizeHighMemoryDevice =
256 * kPointerMultiplier;
- static const int kMaxExecutableSizeHighMemoryDevice =
- 512 * kPointerMultiplier;
static const int kMaxExecutableSizeHugeMemoryDevice =
- 700 * kPointerMultiplier;
+ 256 * kPointerMultiplier;
intptr_t OldGenerationAllocationLimit(intptr_t old_gen_size,
int freed_global_handles);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.