Home
last modified time | relevance | path

Searched refs:ThreadLocalAllocationBuffer (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dthread_local_allocation_buffer.h22 class ThreadLocalAllocationBuffer {
28 ThreadLocalAllocationBuffer(Heap *heap) : heap_(heap) {} in ThreadLocalAllocationBuffer() function
29 ~ThreadLocalAllocationBuffer() = default;
30 NO_COPY_SEMANTIC(ThreadLocalAllocationBuffer);
31 NO_MOVE_SEMANTIC(ThreadLocalAllocationBuffer);
Dthread_local_allocation_buffer.cpp18 void ThreadLocalAllocationBuffer::Reset(uintptr_t begin, uintptr_t end, uintptr_t top) in Reset()
25 void ThreadLocalAllocationBuffer::FillBumpPointer() in FillBumpPointer()
Dheap.h65 class ThreadLocalAllocationBuffer; variable
1770 ThreadLocalAllocationBuffer *sNonMovableTlab_ {nullptr};
1772 ThreadLocalAllocationBuffer *sOldTlab_ {nullptr};
Dheap.cpp744 sOldTlab_ = new ThreadLocalAllocationBuffer(this); in Initialize()
746 sNonMovableTlab_ = new ThreadLocalAllocationBuffer(this); in Initialize()