blob: dfd9bcb0938d90812520fcc22046e2dcc0ad8c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <vector>
//
// Arena allocation for mixed-type data.
//
struct MixedArena {
std::vector<char*> chunks;
int index; // in last chunk
template<class T>
T* alloc() {
const size_t CHUNK = 10000;
size_t currSize = (sizeof(T) + 7) & (-8); // same alignment as malloc TODO optimize?
assert(currSize < CHUNK);
if (chunks.size() == 0 || index + currSize >= CHUNK) {
chunks.push_back(new char[CHUNK]);
index = 0;
}
T* ret = (T*)(chunks.back() + index);
index += currSize;
new (ret) T();
return ret;
}
void clear() {
for (char* chunk : chunks) {
delete[] chunk;
}
chunks.clear();
}
~MixedArena() {
clear();
}
};
|