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 251 252 253 254 255
|
/** @file
Fast-Allocators
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Provides three classes
- Allocator for allocating memory blocks of fixed size
- ClassAllocator for allocating objects
- SpaceClassAllocator for allocating sparce objects (most members uninitialized)
These class provides a efficient way for handling dynamic allocation.
The fast allocator maintains its own freepool of objects from
which it doles out object. Allocated objects when freed go back
to the free pool.
@note Fast allocators could accumulate a lot of objects in the
free pool as a result of bursty demand. Memory used by the objects
in the free pool never gets freed even if the freelist grows very
large.
*/
#ifndef _Allocator_h_
#define _Allocator_h_
#include <new>
#include <stdlib.h>
#include "ts/ink_queue.h"
#include "ts/ink_defs.h"
#include "ts/ink_resource.h"
#include <execinfo.h>
#define RND16(_x) (((_x) + 15) & ~15)
/** Allocator for fixed size memory blocks. */
class Allocator
{
public:
/**
Allocate a block of memory (size specified during construction
of Allocator.
*/
void *
alloc_void()
{
return ink_freelist_new(this->fl);
}
/** Deallocate a block of memory allocated by the Allocator. */
void
free_void(void *ptr)
{
ink_freelist_free(this->fl, ptr);
}
/** Deallocate blocks of memory allocated by the Allocator. */
void
free_void_bulk(void *head, void *tail, size_t num_item)
{
ink_freelist_free_bulk(this->fl, head, tail, num_item);
}
Allocator() { fl = NULL; }
/**
Creates a new allocator.
@param name identification tag used for mem tracking .
@param element_size size of memory blocks to be allocated.
@param chunk_size number of units to be allocated if free pool is empty.
@param alignment of objects must be a power of 2.
*/
Allocator(const char *name, unsigned int element_size, unsigned int chunk_size = 128, unsigned int alignment = 8)
{
ink_freelist_init(&fl, name, element_size, chunk_size, alignment);
}
/** Re-initialize the parameters of the allocator. */
void
re_init(const char *name, unsigned int element_size, unsigned int chunk_size, unsigned int alignment, int advice)
{
ink_freelist_madvise_init(&this->fl, name, element_size, chunk_size, alignment, advice);
}
protected:
InkFreeList *fl;
};
/**
Allocator for Class objects. It uses a prototype object to do
fast initialization. Prototype of the template class is created
when the fast allocator is created. This is instantiated with
default (no argument) constructor. Constructor is not called for
the allocated objects. Instead, the prototype is just memory
copied onto the new objects. This is done for performance reasons.
*/
template <class C> class ClassAllocator : public Allocator
{
public:
/** Allocates objects of the templated type. */
C *
alloc()
{
void *ptr = ink_freelist_new(this->fl);
memcpy(ptr, (void *)&this->proto.typeObject, sizeof(C));
return (C *)ptr;
}
/**
Deallocates objects of the templated type.
@param ptr pointer to be freed.
*/
void
free(C *ptr)
{
ink_freelist_free(this->fl, ptr);
}
/**
Deallocates objects of the templated type.
@param head pointer to be freed.
@param tail pointer to be freed.
@param count of blocks to be freed.
*/
void
free_bulk(C *head, C *tail, size_t num_item)
{
ink_freelist_free_bulk(this->fl, head, tail, num_item);
}
/**
Allocate objects of the templated type via the inherited interface
using void pointers.
*/
void *
alloc_void()
{
return (void *)alloc();
}
/**
Deallocate objects of the templated type via the inherited
interface using void pointers.
@param ptr pointer to be freed.
*/
void
free_void(void *ptr)
{
free((C *)ptr);
}
/**
Deallocate objects of the templated type via the inherited
interface using void pointers.
@param head pointer to be freed.
@param tail pointer to be freed.
@param count of blocks
*/
void
free_void_bulk(void *head, void *tail, size_t num_item)
{
free_bulk((C *)head, (C *)tail, num_item);
}
/**
Create a new class specific ClassAllocator.
@param name some identifying name, used for mem tracking purposes.
@param chunk_size number of units to be allocated if free pool is empty.
@param alignment of objects must be a power of 2.
*/
ClassAllocator(const char *name, unsigned int chunk_size = 128, unsigned int alignment = 16)
{
::new ((void *)&proto.typeObject) C();
ink_freelist_init(&this->fl, name, RND16(sizeof(C)), chunk_size, RND16(alignment));
}
struct {
uint8_t typeObject[sizeof(C)];
int64_t space_holder;
} proto;
};
template <class C> class TrackerClassAllocator : public ClassAllocator<C>
{
public:
TrackerClassAllocator(const char *name, unsigned int chunk_size = 128, unsigned int alignment = 16)
: ClassAllocator<C>(name, chunk_size, alignment), allocations(0), trackerLock(PTHREAD_MUTEX_INITIALIZER)
{
}
C *
alloc()
{
void *callstack[3];
int frames = backtrace(callstack, 3);
C *ptr = ClassAllocator<C>::alloc();
const void *symbol = NULL;
if (frames == 3 && callstack[2] != NULL) {
symbol = callstack[2];
}
tracker.increment(symbol, (int64_t)sizeof(C), this->fl->name);
ink_mutex_acquire(&trackerLock);
reverse_lookup[ptr] = symbol;
++allocations;
ink_mutex_release(&trackerLock);
return ptr;
}
void
free(C *ptr)
{
ink_mutex_acquire(&trackerLock);
std::map<void *, const void *>::iterator it = reverse_lookup.find(ptr);
if (it != reverse_lookup.end()) {
tracker.increment((const void *)it->second, (int64_t)sizeof(C) * -1, NULL);
reverse_lookup.erase(it);
}
ink_mutex_release(&trackerLock);
ClassAllocator<C>::free(ptr);
}
private:
ResourceTracker tracker;
std::map<void *, const void *> reverse_lookup;
uint64_t allocations;
ink_mutex trackerLock;
};
#endif // _Allocator_h_
|