Some methods of Pool are placed here in order to reduce compilation time and binary size. More...
#include "alloc_func.hpp"
#include "mem_func.hpp"
#include "pool_type.hpp"
Go to the source code of this file.
Defines | |
#define | DEFINE_POOL_METHOD(type) |
Helper for defining the method's signature. | |
#define | INSTANTIATE_POOL_METHODS(name) |
Force instantiation of pool methods so we don't get linker errors. | |
Functions | |
DEFINE_POOL_METHOD (inline) | |
Create a clean pool. | |
DEFINE_POOL_METHOD (inline void *) | |
Makes given index valid. | |
DEFINE_POOL_METHOD (void *) | |
Allocates new item. | |
DEFINE_POOL_METHOD (void) | |
Deallocates memory used by this index and marks item as free. |
Some methods of Pool are placed here in order to reduce compilation time and binary size.
Definition in file pool_func.hpp.
#define DEFINE_POOL_METHOD | ( | type | ) |
template <class Titem, typename Tindex, size_t Tgrowth_step, size_t Tmax_size, PoolType Tpool_type, bool Tcache, bool Tzero> \ type Pool<Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero>
Helper for defining the method's signature.
type | The return type of the method. |
Definition at line 23 of file pool_func.hpp.
#define INSTANTIATE_POOL_METHODS | ( | name | ) |
template void * name ## Pool::GetNew(size_t size); \ template void * name ## Pool::GetNew(size_t size, size_t index); \ template void name ## Pool::FreeItem(size_t index); \ template void name ## Pool::CleanPool();
Force instantiation of pool methods so we don't get linker errors.
Only methods accessed from methods defined in pool.hpp need to be forcefully instantiated.
Definition at line 217 of file pool_func.hpp.
DEFINE_POOL_METHOD | ( | void | ) |
Deallocates memory used by this index and marks item as free.
Destroys all items in the pool and resets all member variables.
index | item to deallocate |
Definition at line 189 of file pool_func.hpp.
DEFINE_POOL_METHOD | ( | void * | ) |
Allocates new item.
Allocates new item with given index.
size | size of item |
size | size of item | |
index | index of item |
Definition at line 150 of file pool_func.hpp.
References usererror().
DEFINE_POOL_METHOD | ( | inline void * | ) |
Makes given index valid.
size | size of item | |
index | index of item |
Definition at line 98 of file pool_func.hpp.
DEFINE_POOL_METHOD | ( | inline | size_t | ) |
Create a clean pool.
Searches for first free index.
Resizes the pool so 'index' can be addressed.
name | The name for the pool. | |
index | index we will allocate later |
Definition at line 66 of file pool_func.hpp.