2 * Copyright (C) 2012 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef BlockAllocator_h
27 #define BlockAllocator_h
29 #include "GCActivityCallback.h"
30 #include <wtf/DoublyLinkedList.h>
31 #include <wtf/Forward.h>
32 #include <wtf/Threading.h>
38 // Simple allocator to reduce VM cost by holding onto blocks of memory for
39 // short periods of time and then freeing them on a secondary thread.
41 class BlockAllocator
{
46 HeapBlock
* allocate();
47 void deallocate(HeapBlock
*);
50 void waitForRelativeTimeWhileHoldingLock(double relative
);
51 void waitForRelativeTime(double relative
);
53 void blockFreeingThreadMain();
54 static void blockFreeingThreadStartFunc(void* heap
);
56 void releaseFreeBlocks();
58 DoublyLinkedList
<HeapBlock
> m_freeBlocks
;
59 size_t m_numberOfFreeBlocks
;
60 bool m_isCurrentlyAllocating
;
61 bool m_blockFreeingThreadShouldQuit
;
62 Mutex m_freeBlockLock
;
63 ThreadCondition m_freeBlockCondition
;
64 ThreadIdentifier m_blockFreeingThread
;
67 inline HeapBlock
* BlockAllocator::allocate()
69 MutexLocker
locker(m_freeBlockLock
);
70 m_isCurrentlyAllocating
= true;
71 if (!m_numberOfFreeBlocks
) {
72 ASSERT(m_freeBlocks
.isEmpty());
76 ASSERT(!m_freeBlocks
.isEmpty());
77 m_numberOfFreeBlocks
--;
78 return m_freeBlocks
.removeHead();
81 inline void BlockAllocator::deallocate(HeapBlock
* block
)
84 MutexLocker
locker(m_freeBlockLock
);
85 m_freeBlocks
.push(block
);
86 m_numberOfFreeBlocks
++;
88 if (!GCActivityCallback::s_shouldCreateGCTimer
);
94 #endif // BlockAllocator_h