Revision: 4336
Author: [email protected]
Date: Thu Apr  1 02:17:24 2010
Log: Make check for writes without remembered set updates less restrictive.

Cherry pick r4334 from bleeding_edge to fix an ASSERT failure.

BUG=39766

Review URL: http://codereview.chromium.org/1564006
http://code.google.com/p/v8/source/detail?r=4336

Modified:
 /branches/2.1/src/objects-inl.h
 /branches/2.1/src/version.cc

=======================================
--- /branches/2.1/src/objects-inl.h     Wed Mar 24 01:21:20 2010
+++ /branches/2.1/src/objects-inl.h     Thu Apr  1 02:17:24 2010
@@ -732,7 +732,8 @@
   } else { \
     ASSERT(mode == SKIP_WRITE_BARRIER); \
     ASSERT(Heap::InNewSpace(object) || \
-           !Heap::InNewSpace(READ_FIELD(object, offset))); \
+           !Heap::InNewSpace(READ_FIELD(object, offset)) || \
+           Page::IsRSetSet(object->address(), offset)); \
   }

 #define READ_DOUBLE_FIELD(p, offset) \
=======================================
--- /branches/2.1/src/version.cc        Tue Mar 30 08:07:17 2010
+++ /branches/2.1/src/version.cc        Thu Apr  1 02:17:24 2010
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     2
 #define MINOR_VERSION     1
 #define BUILD_NUMBER      10
-#define PATCH_LEVEL       3
+#define PATCH_LEVEL       4
 #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

To unsubscribe, reply using "remove me" as the subject.

Reply via email to