Revision: 9762
Author:   [email protected]
Date:     Tue Oct 25 01:23:56 2011
Log:      Add missing comment from last commit.
Review URL: http://codereview.chromium.org/8383003
http://code.google.com/p/v8/source/detail?r=9762

Modified:
 /branches/bleeding_edge/src/serialize.h

=======================================
--- /branches/bleeding_edge/src/serialize.h     Thu Oct 20 05:27:10 2011
+++ /branches/bleeding_edge/src/serialize.h     Tue Oct 25 01:23:56 2011
@@ -356,7 +356,13 @@
     UNREACHABLE();
   }

-  void ReadChunk(Object** start, Object** end, int space, Address address);
+ // Fills in some heap data in an area from start to end (non-inclusive). The + // space id is used for the write barrier. The object_address is the address + // of the object we are writing into, or NULL if we are not writing into an + // object, ie if we are writing a series of tagged values that are not on the
+  // heap.
+  void ReadChunk(
+      Object** start, Object** end, int space, Address object_address);
   HeapObject* GetAddressFromStart(int space);
   inline HeapObject* GetAddressFromEnd(int space);
   Address Allocate(int space_number, Space* space, int size);

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

Reply via email to