Lines Matching refs:object_storage
1762 Handle<ByteArray> object_storage = AllocateStorageFor(properties_slot); in EnsurePropertiesAllocatedAndMarked() local
1764 properties_slot->set_storage(object_storage); in EnsurePropertiesAllocatedAndMarked()
1776 object_storage->set(array_index, kStoreHeapObject); in EnsurePropertiesAllocatedAndMarked()
1786 Handle<ByteArray> object_storage = in AllocateStorageFor() local
1788 for (int i = 0; i < object_storage->length(); i++) { in AllocateStorageFor()
1789 object_storage->set(i, kStoreTagged); in AllocateStorageFor()
1791 return object_storage; in AllocateStorageFor()
1799 Handle<ByteArray> object_storage = AllocateStorageFor(slot); in EnsureJSObjectAllocated() local
1812 object_storage->set(array_index, kStoreHeapObject); in EnsureJSObjectAllocated()
1815 slot->set_storage(object_storage); in EnsureJSObjectAllocated()
1845 Handle<HeapObject> object_storage = Handle<HeapObject>::cast(slot->storage_); in InitializeJSObjectAt() local
1853 isolate()->heap()->NotifyObjectLayoutChange(*object_storage, no_gc); in InitializeJSObjectAt()
1858 WRITE_FIELD(*object_storage, JSObject::kPropertiesOrHashOffset, in InitializeJSObjectAt()
1860 WRITE_BARRIER(*object_storage, JSObject::kPropertiesOrHashOffset, in InitializeJSObjectAt()
1873 uint8_t marker = object_storage->ReadField<uint8_t>(offset); in InitializeJSObjectAt()
1876 WRITE_FIELD(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1877 WRITE_BARRIER(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1883 WRITE_FIELD(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1884 WRITE_BARRIER(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1887 object_storage->set_map(*map, kReleaseStore); in InitializeJSObjectAt()
1893 Handle<HeapObject> object_storage = Handle<HeapObject>::cast(slot->storage_); in InitializeObjectWithTaggedFieldsAt() local
1897 if (*object_storage == ReadOnlyRoots(isolate()).empty_fixed_array()) { in InitializeObjectWithTaggedFieldsAt()
1905 isolate()->heap()->NotifyObjectLayoutChange(*object_storage, no_gc); in InitializeObjectWithTaggedFieldsAt()
1911 uint8_t marker = object_storage->ReadField<uint8_t>(offset); in InitializeObjectWithTaggedFieldsAt()
1921 WRITE_FIELD(*object_storage, offset, *field_value); in InitializeObjectWithTaggedFieldsAt()
1922 WRITE_BARRIER(*object_storage, offset, *field_value); in InitializeObjectWithTaggedFieldsAt()
1925 object_storage->set_map(*map, kReleaseStore); in InitializeObjectWithTaggedFieldsAt()