Reviewers: Vyacheslav Egorov,
Description:
Merged r11042 into 3.8 branch.
Increase executable size limit.
[email protected]
BUG=
TEST=
Please review this at https://chromiumcodereview.appspot.com/9701025/
SVN Base: https://v8.googlecode.com/svn/branches/3.8
Affected files:
M src/heap.cc
M src/version.cc
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index
c000a4f2b37c99cf1ad9c014164ce9efe16cca77..3f71fb5f4795226e9895bd8d2868bee89ec0061f
100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -82,7 +82,7 @@ Heap::Heap()
max_semispace_size_(8 * Max(LUMP_OF_MEMORY, Page::kPageSize)),
initial_semispace_size_(Page::kPageSize),
max_old_generation_size_(700ul * LUMP_OF_MEMORY),
- max_executable_size_(128l * LUMP_OF_MEMORY),
+ max_executable_size_(256l * LUMP_OF_MEMORY),
// Variables set based on semispace_size_ and old_generation_size_ in
// ConfigureHeap (survived_since_last_expansion_,
external_allocation_limit_)
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
2d931f053087d7e006c980fa0a6b03c1218729a3..46507d51fb74d2af783578d781f93ccce4168e5a
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 8
#define BUILD_NUMBER 9
-#define PATCH_LEVEL 14
+#define PATCH_LEVEL 15
// 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