Revision: 23158
Author:   [email protected]
Date:     Mon Aug 18 13:07:39 2014 UTC
Log:      Version 3.27.34.14 (merged r23084)

Old space cannot be assumed to be iterable between GCs, even if swept precisely.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/486693002
http://code.google.com/p/v8/source/detail?r=23158

Modified:
 /branches/3.27/src/mark-compact.cc
 /branches/3.27/src/version.cc

=======================================
--- /branches/3.27/src/mark-compact.cc  Fri Jun  6 00:04:56 2014 UTC
+++ /branches/3.27/src/mark-compact.cc  Mon Aug 18 13:07:39 2014 UTC
@@ -2042,16 +2042,11 @@
 static void DiscoverGreyObjectsInSpace(Heap* heap,
                                        MarkingDeque* marking_deque,
                                        PagedSpace* space) {
-  if (!space->was_swept_conservatively()) {
-    HeapObjectIterator it(space);
-    DiscoverGreyObjectsWithIterator(heap, marking_deque, &it);
-  } else {
-    PageIterator it(space);
-    while (it.has_next()) {
-      Page* p = it.next();
-      DiscoverGreyObjectsOnPage(marking_deque, p);
-      if (marking_deque->IsFull()) return;
-    }
+  PageIterator it(space);
+  while (it.has_next()) {
+    Page* p = it.next();
+    DiscoverGreyObjectsOnPage(marking_deque, p);
+    if (marking_deque->IsFull()) return;
   }
 }

=======================================
--- /branches/3.27/src/version.cc       Mon Aug 18 12:30:21 2014 UTC
+++ /branches/3.27/src/version.cc       Mon Aug 18 13:07:39 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     27
 #define BUILD_NUMBER      34
-#define PATCH_LEVEL       13
+#define PATCH_LEVEL       14
 // 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.

Reply via email to