Version 1.3.15

Expand the maximum size of the code space to 512MB for 64-bit mode.

Fixed a crash bug happening when starting profiling (issue http://crbug.com/23768).



git-svn-id: http://v8.googlecode.com/svn/trunk@3030 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/heap.cc b/src/heap.cc
index dcc25a3..0295a99 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -82,7 +82,7 @@
 int Heap::semispace_size_  = 16*MB;
 int Heap::old_generation_size_ = 1*GB;
 int Heap::initial_semispace_size_ = 1*MB;
-size_t Heap::code_range_size_ = 256*MB;
+size_t Heap::code_range_size_ = 512*MB;
 #else
 int Heap::semispace_size_  = 8*MB;
 int Heap::old_generation_size_ = 512*MB;