blob: 887cb66504abdf4782bfc6175e563673af80649d [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001//
2// Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
Geoff Lang17732822013-08-29 13:46:49 -04007#include "compiler/translator/PoolAlloc.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008
Geoff Lang17732822013-08-29 13:46:49 -04009#include "compiler/translator/InitializeGlobals.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000010
Geoff Lang44fa7592014-05-30 11:50:07 -040011#include "common/platform.h"
12#include "common/angleutils.h"
13#include "common/tls.h"
14
15#include <stdint.h>
16#include <stdio.h>
17#include <assert.h>
18
19TLSIndex PoolIndex = TLS_INVALID_INDEX;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000020
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000021bool InitializePoolIndex()
22{
Geoff Lang44fa7592014-05-30 11:50:07 -040023 assert(PoolIndex == TLS_INVALID_INDEX);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000024
Geoff Lang44fa7592014-05-30 11:50:07 -040025 PoolIndex = CreateTLSIndex();
26 return PoolIndex != TLS_INVALID_INDEX;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000027}
28
29void FreePoolIndex()
30{
Geoff Lang44fa7592014-05-30 11:50:07 -040031 assert(PoolIndex != TLS_INVALID_INDEX);
Alok Priyadarshi8156b6b2013-09-23 14:56:58 -040032
Geoff Lang44fa7592014-05-30 11:50:07 -040033 DestroyTLSIndex(PoolIndex);
34 PoolIndex = TLS_INVALID_INDEX;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000035}
36
Alok Priyadarshi8156b6b2013-09-23 14:56:58 -040037TPoolAllocator* GetGlobalPoolAllocator()
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000038{
Geoff Lang44fa7592014-05-30 11:50:07 -040039 assert(PoolIndex != TLS_INVALID_INDEX);
40 return static_cast<TPoolAllocator*>(GetTLSValue(PoolIndex));
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000041}
42
alokp@chromium.orgbafcbaa2010-11-23 19:07:43 +000043void SetGlobalPoolAllocator(TPoolAllocator* poolAllocator)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000044{
Geoff Lang44fa7592014-05-30 11:50:07 -040045 assert(PoolIndex != TLS_INVALID_INDEX);
46 SetTLSValue(PoolIndex, poolAllocator);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000047}
48
49//
50// Implement the functionality of the TPoolAllocator class, which
51// is documented in PoolAlloc.h.
52//
alokp@chromium.orgbafcbaa2010-11-23 19:07:43 +000053TPoolAllocator::TPoolAllocator(int growthIncrement, int allocationAlignment) :
alokp@chromium.org4e89d232010-05-14 19:37:21 +000054 pageSize(growthIncrement),
55 alignment(allocationAlignment),
56 freeList(0),
57 inUseList(0),
alokp@chromium.org18895cb2010-10-14 16:09:57 +000058 numCalls(0),
59 totalBytes(0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000060{
alokp@chromium.org4e89d232010-05-14 19:37:21 +000061 //
62 // Don't allow page sizes we know are smaller than all common
63 // OS page sizes.
64 //
65 if (pageSize < 4*1024)
66 pageSize = 4*1024;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000067
alokp@chromium.org4e89d232010-05-14 19:37:21 +000068 //
69 // A large currentPageOffset indicates a new page needs to
70 // be obtained to allocate memory.
71 //
72 currentPageOffset = pageSize;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000073
alokp@chromium.org4e89d232010-05-14 19:37:21 +000074 //
75 // Adjust alignment to be at least pointer aligned and
76 // power of 2.
77 //
78 size_t minAlign = sizeof(void*);
79 alignment &= ~(minAlign - 1);
80 if (alignment < minAlign)
81 alignment = minAlign;
82 size_t a = 1;
83 while (a < alignment)
84 a <<= 1;
85 alignment = a;
86 alignmentMask = a - 1;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000087
alokp@chromium.org4e89d232010-05-14 19:37:21 +000088 //
89 // Align header skip
90 //
91 headerSkip = minAlign;
92 if (headerSkip < sizeof(tHeader)) {
93 headerSkip = (sizeof(tHeader) + alignmentMask) & ~alignmentMask;
94 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000095}
96
97TPoolAllocator::~TPoolAllocator()
98{
alokp@chromium.orgbafcbaa2010-11-23 19:07:43 +000099 while (inUseList) {
100 tHeader* next = inUseList->nextPage;
101 inUseList->~tHeader();
102 delete [] reinterpret_cast<char*>(inUseList);
103 inUseList = next;
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000104 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000105
alokp@chromium.orgbafcbaa2010-11-23 19:07:43 +0000106 // We should not check the guard blocks
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000107 // here, because we did it already when the block was
108 // placed into the free list.
109 //
110 while (freeList) {
111 tHeader* next = freeList->nextPage;
112 delete [] reinterpret_cast<char*>(freeList);
113 freeList = next;
114 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000115}
116
117// Support MSVC++ 6.0
118const unsigned char TAllocation::guardBlockBeginVal = 0xfb;
119const unsigned char TAllocation::guardBlockEndVal = 0xfe;
120const unsigned char TAllocation::userDataFill = 0xcd;
121
alokp@chromium.orgb1e8c6f2010-05-12 18:35:53 +0000122#ifdef GUARD_BLOCKS
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000123 const size_t TAllocation::guardBlockSize = 16;
alokp@chromium.orgb1e8c6f2010-05-12 18:35:53 +0000124#else
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000125 const size_t TAllocation::guardBlockSize = 0;
alokp@chromium.orgb1e8c6f2010-05-12 18:35:53 +0000126#endif
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000127
128//
129// Check a single guard block for damage
130//
131void TAllocation::checkGuardBlock(unsigned char* blockMem, unsigned char val, const char* locText) const
132{
daniel@transgaming.comb969cc52011-03-15 18:23:59 +0000133#ifdef GUARD_BLOCKS
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000134 for (size_t x = 0; x < guardBlockSize; x++) {
135 if (blockMem[x] != val) {
136 char assertMsg[80];
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000137
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000138 // We don't print the assert message. It's here just to be helpful.
apatrick@chromium.orge4319632012-01-27 22:13:17 +0000139#if defined(_MSC_VER)
kbr@chromium.orgddb6e8e2012-04-25 00:48:13 +0000140 snprintf(assertMsg, sizeof(assertMsg), "PoolAlloc: Damage %s %Iu byte allocation at 0x%p\n",
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000141 locText, size, data());
apatrick@chromium.orge4319632012-01-27 22:13:17 +0000142#else
kbr@chromium.orgddb6e8e2012-04-25 00:48:13 +0000143 snprintf(assertMsg, sizeof(assertMsg), "PoolAlloc: Damage %s %zu byte allocation at 0x%p\n",
apatrick@chromium.orge4319632012-01-27 22:13:17 +0000144 locText, size, data());
145#endif
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000146 assert(0 && "PoolAlloc: Damage in guard block");
147 }
148 }
daniel@transgaming.comb969cc52011-03-15 18:23:59 +0000149#endif
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000150}
151
152
153void TPoolAllocator::push()
154{
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000155 tAllocState state = { currentPageOffset, inUseList };
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000156
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000157 stack.push_back(state);
158
159 //
160 // Indicate there is no current page to allocate from.
161 //
162 currentPageOffset = pageSize;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000163}
164
165//
166// Do a mass-deallocation of all the individual allocations
167// that have occurred since the last push(), or since the
168// last pop(), or since the object's creation.
169//
170// The deallocated pages are saved for future allocations.
171//
172void TPoolAllocator::pop()
173{
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000174 if (stack.size() < 1)
175 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000176
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000177 tHeader* page = stack.back().page;
178 currentPageOffset = stack.back().offset;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000179
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000180 while (inUseList != page) {
181 // invoke destructor to free allocation list
182 inUseList->~tHeader();
183
184 tHeader* nextInUse = inUseList->nextPage;
185 if (inUseList->pageCount > 1)
186 delete [] reinterpret_cast<char*>(inUseList);
187 else {
188 inUseList->nextPage = freeList;
189 freeList = inUseList;
190 }
191 inUseList = nextInUse;
192 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000193
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000194 stack.pop_back();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000195}
196
197//
198// Do a mass-deallocation of all the individual allocations
199// that have occurred.
200//
201void TPoolAllocator::popAll()
202{
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000203 while (stack.size() > 0)
204 pop();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000205}
206
207void* TPoolAllocator::allocate(size_t numBytes)
208{
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000209 //
210 // Just keep some interesting statistics.
211 //
212 ++numCalls;
213 totalBytes += numBytes;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000214
shannonwoods@chromium.orgc7964842013-05-30 00:10:41 +0000215 // If we are using guard blocks, all allocations are bracketed by
216 // them: [guardblock][allocation][guardblock]. numBytes is how
217 // much memory the caller asked for. allocationSize is the total
218 // size including guard blocks. In release build,
219 // guardBlockSize=0 and this all gets optimized away.
220 size_t allocationSize = TAllocation::allocationSize(numBytes);
221 // Detect integer overflow.
222 if (allocationSize < numBytes)
223 return 0;
224
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000225 //
226 // Do the allocation, most likely case first, for efficiency.
227 // This step could be moved to be inline sometime.
228 //
shannonwoods@chromium.orgc7964842013-05-30 00:10:41 +0000229 if (allocationSize <= pageSize - currentPageOffset) {
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000230 //
231 // Safe to allocate from currentPageOffset.
232 //
233 unsigned char* memory = reinterpret_cast<unsigned char *>(inUseList) + currentPageOffset;
234 currentPageOffset += allocationSize;
235 currentPageOffset = (currentPageOffset + alignmentMask) & ~alignmentMask;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000236
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000237 return initializeAllocation(inUseList, memory, numBytes);
238 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000239
shannonwoods@chromium.orgc7964842013-05-30 00:10:41 +0000240 if (allocationSize > pageSize - headerSkip) {
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000241 //
242 // Do a multi-page allocation. Don't mix these with the others.
243 // The OS is efficient and allocating and free-ing multiple pages.
244 //
245 size_t numBytesToAlloc = allocationSize + headerSkip;
shannonwoods@chromium.orgc7964842013-05-30 00:10:41 +0000246 // Detect integer overflow.
247 if (numBytesToAlloc < allocationSize)
248 return 0;
249
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000250 tHeader* memory = reinterpret_cast<tHeader*>(::new char[numBytesToAlloc]);
251 if (memory == 0)
252 return 0;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000253
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000254 // Use placement-new to initialize header
255 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
256 inUseList = memory;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000257
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000258 currentPageOffset = pageSize; // make next allocation come from a new page
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000259
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000260 // No guard blocks for multi-page allocations (yet)
261 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(memory) + headerSkip);
262 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000263
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000264 //
265 // Need a simple page to allocate from.
266 //
267 tHeader* memory;
268 if (freeList) {
269 memory = freeList;
270 freeList = freeList->nextPage;
271 } else {
272 memory = reinterpret_cast<tHeader*>(::new char[pageSize]);
273 if (memory == 0)
274 return 0;
275 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000276
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000277 // Use placement-new to initialize header
278 new(memory) tHeader(inUseList, 1);
279 inUseList = memory;
280
281 unsigned char* ret = reinterpret_cast<unsigned char *>(inUseList) + headerSkip;
282 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000283
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000284 return initializeAllocation(inUseList, ret, numBytes);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000285}
286
287
288//
289// Check all allocations in a list for damage by calling check on each.
290//
291void TAllocation::checkAllocList() const
292{
alokp@chromium.org4e89d232010-05-14 19:37:21 +0000293 for (const TAllocation* alloc = this; alloc != 0; alloc = alloc->prevAlloc)
294 alloc->check();
daniel@transgaming.comb969cc52011-03-15 18:23:59 +0000295}