forked from plasma-umass/Mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thread_local_heap.h
250 lines (199 loc) · 6.9 KB
/
thread_local_heap.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil -*-
// Copyright 2019 The Mesh Authors. All rights reserved.
// Use of this source code is governed by the Apache License,
// Version 2.0, that can be found in the LICENSE file.
#ifndef MESH__THREAD_LOCAL_HEAP_H
#define MESH__THREAD_LOCAL_HEAP_H
#if !defined(_WIN32)
#include <pthread.h>
#include <stdalign.h>
#endif
#include <sys/types.h>
#include <algorithm>
#include <atomic>
#include "internal.h"
#include "mini_heap.h"
#include "shuffle_vector.h"
#include "rng/mwc.h"
#include "heaplayers.h"
#include "runtime.h"
using namespace HL;
namespace mesh {
class LocalHeapStats {
public:
atomic_size_t allocCount{0};
atomic_size_t freeCount{0};
};
class ThreadLocalHeap {
private:
DISALLOW_COPY_AND_ASSIGN(ThreadLocalHeap);
public:
enum { Alignment = 16 };
ThreadLocalHeap(GlobalHeap *global)
: _global(global),
_current(gettid()),
_prng(internal::seed(), internal::seed()),
_maxObjectSize(SizeMap::ByteSizeForClass(kNumBins - 1)) {
const auto arenaBegin = _global->arenaBegin();
// when asked, give 16-byte allocations for 0-byte requests
_shuffleVector[0].initialInit(arenaBegin, SizeMap::ByteSizeForClass(1));
for (size_t i = 1; i < kNumBins; i++) {
_shuffleVector[i].initialInit(arenaBegin, SizeMap::ByteSizeForClass(i));
}
d_assert(_global != nullptr);
}
~ThreadLocalHeap() {
releaseAll();
}
void releaseAll();
void *ATTRIBUTE_NEVER_INLINE CACHELINE_ALIGNED_FN smallAllocSlowpath(size_t sizeClass);
void *ATTRIBUTE_NEVER_INLINE CACHELINE_ALIGNED_FN smallAllocGlobalRefill(ShuffleVector &shuffleVector,
size_t sizeClass);
inline void *memalign(size_t alignment, size_t size) {
// Check for non power-of-two alignment.
if ((alignment == 0) || (alignment & (alignment - 1))) {
return nullptr;
}
if (size < 8) {
size = 8;
}
uint32_t sizeClass = 0;
const bool isSmall = SizeMap::GetSizeClass(size, &sizeClass);
if (alignment <= sizeof(double)) {
// all of our size classes are at least 8-byte aligned
auto ptr = this->malloc(size);
d_assert_msg((reinterpret_cast<uintptr_t>(ptr) % alignment) == 0, "%p(%zu) %% %zu != 0", ptr, size, alignment);
return ptr;
} else if (isSmall) {
const auto sizeClassBytes = SizeMap::ByteSizeForClass(sizeClass);
// if the alignment is for a small allocation that is less than
// the page size, and the size class size in bytes is a multiple
// of the alignment, just call malloc
if (sizeClassBytes <= kPageSize && alignment <= sizeClassBytes && (sizeClassBytes % alignment) == 0) {
auto ptr = this->malloc(size);
d_assert_msg((reinterpret_cast<uintptr_t>(ptr) % alignment) == 0, "%p(%zu) %% %zu != 0", ptr, size, alignment);
return ptr;
}
}
// fall back to page-aligned allocation
const size_t pageAlignment = (alignment + kPageSize - 1) / kPageSize;
const size_t pageCount = PageCount(size);
return _global->pageAlignedAlloc(pageAlignment, pageCount);
}
inline void *ATTRIBUTE_ALWAYS_INLINE realloc(void *oldPtr, size_t newSize) {
if (oldPtr == nullptr) {
return this->malloc(newSize);
}
if (newSize == 0) {
this->free(oldPtr);
return this->malloc(newSize);
}
size_t oldSize = getSize(oldPtr);
// the following is directly from tcmalloc, designed to avoid
// 'resizing ping pongs'
const size_t lowerBoundToGrow = oldSize + oldSize / 4ul;
const size_t upperBoundToShrink = oldSize / 2ul;
if (newSize > oldSize || newSize < upperBoundToShrink) {
void *newPtr = nullptr;
if (newSize > oldSize && newSize < lowerBoundToGrow) {
newPtr = this->malloc(lowerBoundToGrow);
}
if (newPtr == nullptr) {
newPtr = this->malloc(newSize);
}
if (unlikely(newPtr == nullptr)) {
return nullptr;
}
const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
memcpy(newPtr, oldPtr, copySize);
this->free(oldPtr);
return newPtr;
} else {
// the current allocation is good enough
return oldPtr;
}
}
inline void *ATTRIBUTE_ALWAYS_INLINE calloc(size_t count, size_t size) {
if (unlikely(size && count > (size_t)-1 / size)) {
errno = ENOMEM;
return nullptr;
}
const size_t n = count * size;
void *ptr = this->malloc(n);
if (ptr != nullptr) {
memset(ptr, 0, n);
}
return ptr;
}
inline void *ATTRIBUTE_ALWAYS_INLINE cxxNew(size_t sz) {
void *ptr = this->malloc(sz);
if (unlikely(ptr == NULL && sz != 0)) {
throw std::bad_alloc();
}
return ptr;
}
// semiansiheap ensures we never see size == 0
inline void *ATTRIBUTE_ALWAYS_INLINE malloc(size_t sz) {
uint32_t sizeClass = 0;
// if the size isn't in our sizemap it is a large alloc
if (unlikely(!SizeMap::GetSizeClass(sz, &sizeClass))) {
return _global->malloc(sz);
}
ShuffleVector &shuffleVector = _shuffleVector[sizeClass];
if (unlikely(shuffleVector.isExhausted())) {
return smallAllocSlowpath(sizeClass);
}
return shuffleVector.malloc();
}
inline void ATTRIBUTE_ALWAYS_INLINE free(void *ptr) {
if (unlikely(ptr == nullptr))
return;
size_t startEpoch{0};
auto mh = _global->miniheapForWithEpoch(ptr, startEpoch);
if (likely(mh && mh->current() == _current && !mh->hasMeshed())) {
ShuffleVector &shuffleVector = _shuffleVector[mh->sizeClass()];
shuffleVector.free(mh, ptr);
return;
}
_global->freeFor(mh, ptr, startEpoch);
}
inline void ATTRIBUTE_ALWAYS_INLINE sizedFree(void *ptr, size_t sz) {
this->free(ptr);
}
inline size_t getSize(void *ptr) {
if (unlikely(ptr == nullptr))
return 0;
auto mh = _global->miniheapFor(ptr);
if (likely(mh && mh->current() == _current)) {
ShuffleVector &shuffleVector = _shuffleVector[mh->sizeClass()];
return shuffleVector.getSize();
}
return _global->getSize(ptr);
}
static inline ThreadLocalHeap *GetFastPathHeap() {
return _threadLocalData.fastpathHeap;
}
static inline void FreeHeap() {
auto heap = GetFastPathHeap();
if (heap != nullptr) {
heap->ThreadLocalHeap::~ThreadLocalHeap();
mesh::internal::Heap().free(reinterpret_cast<void *>(heap));
}
_threadLocalData.fastpathHeap = nullptr;
}
static ATTRIBUTE_NEVER_INLINE ThreadLocalHeap *GetHeap();
static ThreadLocalHeap *CreateThreadLocalHeap();
protected:
ShuffleVector _shuffleVector[kNumBins] CACHELINE_ALIGNED;
GlobalHeap *_global;
pid_t _current{0};
MWC _prng;
const size_t _maxObjectSize;
LocalHeapStats _stats{};
struct ThreadLocalData {
ThreadLocalHeap *fastpathHeap;
};
static __thread ThreadLocalData _threadLocalData CACHELINE_ALIGNED ATTR_INITIAL_EXEC;
};
} // namespace mesh
#endif // MESH__THREAD_LOCAL_HEAP_H