Revision: 6959
Author: [email protected]
Date: Mon Feb 28 02:23:51 2011
Log: Merge r6954 from the bleeding edge to the 3.0 branch.
Review URL: http://codereview.chromium.org/6599003
http://code.google.com/p/v8/source/detail?r=6959

Modified:
 /branches/3.0/src/spaces.h
 /branches/3.0/src/version.cc

=======================================
--- /branches/3.0/src/spaces.h  Tue Dec 21 04:19:12 2010
+++ /branches/3.0/src/spaces.h  Mon Feb 28 02:23:51 2011
@@ -2121,6 +2121,12 @@
     accounting_stats_.DeallocateBytes(accounting_stats_.Size());
     accounting_stats_.AllocateBytes(new_size);

+    // Flush allocation watermarks.
+    for (Page* p = first_page_; p != top_page; p = p->next_page()) {
+      p->SetAllocationWatermark(p->AllocationTop());
+    }
+    top_page->SetAllocationWatermark(new_top);
+
 #ifdef DEBUG
     if (FLAG_enable_slow_asserts) {
       intptr_t actual_size = 0;
=======================================
--- /branches/3.0/src/version.cc        Fri Feb 25 03:44:19 2011
+++ /branches/3.0/src/version.cc        Mon Feb 28 02:23:51 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     0
 #define BUILD_NUMBER      12
-#define PATCH_LEVEL       25
+#define PATCH_LEVEL       26
 #define CANDIDATE_VERSION false

 // Define SONAME to have the SCons build the put a specific SONAME into the

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to