Commit 69c44d64 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Add missing comment from last commit.

Review URL: http://codereview.chromium.org/8383003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9762 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 46dde044
......@@ -356,7 +356,13 @@ class Deserializer: public SerializerDeserializer {
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment