HomeSort by relevance Sort by last modified time
    Searched refs:store_buffer (Results 1 - 4 of 4) sorted by null

  /external/v8/src/heap/
store-buffer.h 37 static void DeleteDuringGarbageCollection(StoreBuffer* store_buffer,
39 static void InsertDuringGarbageCollection(StoreBuffer* store_buffer,
42 static void DeleteDuringRuntime(StoreBuffer* store_buffer, Address start,
44 static void InsertDuringRuntime(StoreBuffer* store_buffer, Address slot);
122 Task(Isolate* isolate, StoreBuffer* store_buffer)
124 store_buffer_(store_buffer),
store-buffer.cc 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,
    [all...]
heap.cc 773 explicit SkipStoreBufferScope(StoreBuffer* store_buffer)
774 : store_buffer_(store_buffer) {
    [all...]
heap.h 1617 StoreBuffer* store_buffer() { return store_buffer_; } function in class:v8::internal::GarbageCollectionReason::Heap
    [all...]

Completed in 102 milliseconds