Home | History | Annotate | Download | only in heap

Lines Matching refs:store_buffer

86 void StoreBuffer::DeleteDuringRuntime(StoreBuffer* store_buffer, Address start,
88 DCHECK(store_buffer->mode() == StoreBuffer::NOT_IN_GC);
89 store_buffer->InsertDeletionIntoStoreBuffer(start, end);
92 void StoreBuffer::InsertDuringRuntime(StoreBuffer* store_buffer, Address slot) {
93 DCHECK(store_buffer->mode() == StoreBuffer::NOT_IN_GC);
94 store_buffer->InsertIntoStoreBuffer(slot);
97 void StoreBuffer::DeleteDuringGarbageCollection(StoreBuffer* store_buffer,
100 DCHECK(store_buffer->Empty());
101 DCHECK(store_buffer->mode() != StoreBuffer::NOT_IN_GC);
111 void StoreBuffer::InsertDuringGarbageCollection(StoreBuffer* store_buffer,
113 DCHECK(store_buffer->mode() != StoreBuffer::NOT_IN_GC);
129 isolate->heap()->store_buffer()->FlipStoreBuffers();