diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-10-28 19:25:22 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-10-28 19:25:22 +0100 |
commit | 50f45d14b475a42d304e7d9872f8d91ff3a013c2 (patch) | |
tree | 2e799be8cbddd016ef8432b4ed755247a466c0ba /deps/v8/src/spaces-inl.h | |
parent | 35589528992e8bf5ca70271beaef05a6d82f9dcf (diff) | |
download | node-new-50f45d14b475a42d304e7d9872f8d91ff3a013c2.tar.gz |
Upgrade v8 to 1.3.17
Diffstat (limited to 'deps/v8/src/spaces-inl.h')
-rw-r--r-- | deps/v8/src/spaces-inl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/v8/src/spaces-inl.h b/deps/v8/src/spaces-inl.h index da7249792b..847bb9ada2 100644 --- a/deps/v8/src/spaces-inl.h +++ b/deps/v8/src/spaces-inl.h @@ -360,6 +360,13 @@ Object* NewSpace::AllocateRawInternal(int size_in_bytes, return obj; } + +bool FreeListNode::IsFreeListNode(HeapObject* object) { + return object->map() == Heap::raw_unchecked_byte_array_map() + || object->map() == Heap::raw_unchecked_one_pointer_filler_map() + || object->map() == Heap::raw_unchecked_two_pointer_filler_map(); +} + } } // namespace v8::internal #endif // V8_SPACES_INL_H_ |