Revision: 6733
Author: [email protected]
Date: Thu Feb 10 08:26:44 2011
Log: Port revision 6732 to arm.

I discussed with Soeren, and they do need this on arm as well.

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

Modified:
 /branches/bleeding_edge/src/arm/assembler-arm-inl.h

=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm-inl.h Tue Dec 7 03:31:57 2010 +++ /branches/bleeding_edge/src/arm/assembler-arm-inl.h Thu Feb 10 08:26:44 2011
@@ -198,6 +198,8 @@
     visitor->VisitPointer(target_object_address());
   } else if (RelocInfo::IsCodeTarget(mode)) {
     visitor->VisitCodeTarget(this);
+  } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
+    visitor->VisitGlobalPropertyCell(this);
   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
     visitor->VisitExternalReference(target_reference_address());
 #ifdef ENABLE_DEBUGGER_SUPPORT
@@ -221,6 +223,8 @@
     StaticVisitor::VisitPointer(target_object_address());
   } else if (RelocInfo::IsCodeTarget(mode)) {
     StaticVisitor::VisitCodeTarget(this);
+  } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
+    StaticVisitor::VisitGlobalPropertyCell(this);
   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
     StaticVisitor::VisitExternalReference(target_reference_address());
 #ifdef ENABLE_DEBUGGER_SUPPORT

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

Reply via email to