Revision: 22750
Author: [email protected]
Date: Thu Jul 31 11:34:43 2014 UTC
Log: Version 3.27.34.9 (merged r22667)
Reduce max executable size limit.
BUG=395679
LOG=N
[email protected]
Review URL: https://codereview.chromium.org/433823003
http://code.google.com/p/v8/source/detail?r=22750
Modified:
/branches/3.27/src/heap.h
/branches/3.27/src/version.cc
=======================================
--- /branches/3.27/src/heap.h Wed Jul 2 12:53:18 2014 UTC
+++ /branches/3.27/src/heap.h Thu Jul 31 11:34:43 2014 UTC
@@ -1076,14 +1076,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);
=======================================
--- /branches/3.27/src/version.cc Thu Jul 31 08:35:41 2014 UTC
+++ /branches/3.27/src/version.cc Thu Jul 31 11:34:43 2014 UTC
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 27
#define BUILD_NUMBER 34
-#define PATCH_LEVEL 8
+#define PATCH_LEVEL 9
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
--
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.