ROSE  0.11.145.0
Classes | Public Types | Public Member Functions | Static Public Member Functions | List of all members
Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync > Class Template Reference

Description

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync>
class Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >

Small object allocation from memory pools.

This class manages allocation and deallocation of small objects from pools. This allocator has pools available for a variety of small object sizes, or falls back to the global new and delete operators for larger objects. Each pool contains zero or more large chunks of contiguous memory from which storage for the small objects are obtained. The following template parameters control the number and sizes of pools:

The SynchronizedPoolAllocator and UnsynchronizedPoolAllocator typedefs provide reasonable template arguments.

When a pool allocator is copied, only its settings are copied, not the pools. Since containers typically copy their constructor-provided allocators, each container will have its own pools even if one provides the same pool to all the constructors. See ProxyAllocator for a way to avoid this, and to allow different containers to share the same allocator.

Deleting a pool allocator deletes all its pools, which deletes all the chunks, which deallocates memory that might be in use by objects allocated from this allocator. In other words, don't destroy the allocator unless you're willing that the memory for any objects in use will suddenly be freed without even calling the destructors for those objects.

Definition at line 60 of file PoolAllocator.h.

#include <util/Sawyer/PoolAllocator.h>

Public Types

enum  { SMALLEST_CELL = smallestCell }
 
enum  { SIZE_DELTA = sizeDelta }
 
enum  { N_POOLS = nPools }
 
enum  { CHUNK_SIZE = chunkSize }
 
enum  { N_FREE_LISTS = 32 }
 

Public Member Functions

 PoolAllocatorBase ()
 Default constructor. More...
 
 PoolAllocatorBase (const PoolAllocatorBase &)
 Copy constructor. More...
 
virtual ~PoolAllocatorBase ()
 Destructor. More...
 
void * allocate (size_t size)
 Allocate one object of specified size. More...
 
void reserve (size_t objectSize, size_t nObjects)
 Reserve a certain number of objects in the pool. More...
 
std::pair< size_t, size_t > nAllocated () const
 Number of objects allocated and reserved. More...
 
void deallocate (void *addr, size_t size)
 Deallocate an object of specified size. More...
 
void vacuum ()
 Delete unused chunks. More...
 
void showInfo (std::ostream &out) const
 Print pool allocation information. More...
 

Static Public Member Functions

static size_t poolNumber (size_t size)
 Pool number for a request size. More...
 
static size_t cellSize (size_t poolNumber)
 Size of each cell for a given pool. More...
 
static size_t nCells (size_t poolNumber)
 Number of cells per chunk. More...
 

Constructor & Destructor Documentation

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::PoolAllocatorBase ( )
inline

Default constructor.

Definition at line 359 of file PoolAllocator.h.

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::PoolAllocatorBase ( const PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync > &  )
inline

Copy constructor.

Copying an allocator does not copy its pools, but rather creates a new allocator that is empty but has the same settings as the source allocator.

Definition at line 367 of file PoolAllocator.h.

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
virtual Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::~PoolAllocatorBase ( )
inlinevirtual

Destructor.

Destroying a pool allocator destroys all its pools, which means that any objects that use storage managed by this pool will have their storage deleted.

Definition at line 380 of file PoolAllocator.h.

Member Function Documentation

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
static size_t Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::poolNumber ( size_t  size)
inlinestatic

Pool number for a request size.

The return value is a pool number assuming that an infinite number of pools is available. In practice, if the return value is greater than or equal to the nPools template argument then allocation is handled by the global "new" operator rather than this allocator.

Definition at line 393 of file PoolAllocator.h.

Referenced by Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::allocate(), Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::deallocate(), and Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::reserve().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
static size_t Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::cellSize ( size_t  poolNumber)
inlinestatic

Size of each cell for a given pool.

Returns the number of bytes per cell for the given pool.

Definition at line 400 of file PoolAllocator.h.

Referenced by Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::nCells(), and Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::showInfo().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
static size_t Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::nCells ( size_t  poolNumber)
inlinestatic

Number of cells per chunk.

Returns the number of cells contained in each chunk of the specified pool.

Definition at line 407 of file PoolAllocator.h.

References Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::cellSize().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
void* Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::allocate ( size_t  size)
inline

Allocate one object of specified size.

Allocates one cell from an allocation pool, using the pool with the smallest-sized cells that are large enough to satisfy the request. If the request is larger than that available from any pool then the global "new" operator is used.

The requested size must be positive.

Thread safety: This method is thread safe.

See also
DefaultAllocator::allocate

Definition at line 422 of file PoolAllocator.h.

References Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::poolNumber().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
void Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::reserve ( size_t  objectSize,
size_t  nObjects 
)
inline

Reserve a certain number of objects in the pool.

The pool for the specified object size has its storage increased if necessary so that it is prepared to allocate the indicated additional number of objects (beyond the number of objects already allocated). I.e., upon return from this call, the free lists will contain in total, at least the specified number of objects. The reserved objects are divided equally between all free lists, and since allocations randomly select free lists from which to satisfy requests, one should reserve slightly more than what will be needed. Reserving storage is entirely optional.

Definition at line 435 of file PoolAllocator.h.

References Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::poolNumber().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
std::pair<size_t, size_t> Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::nAllocated ( ) const
inline

Number of objects allocated and reserved.

Returns a pair containing the number of objects currently allocated in the pool, and the number of objects that the pool can hold (including those that are allocated) before the pool must request more memory from the system.

Thread safety: This method is thread-safe. Of course, for a heavily contested pool the results are probably outdated by time they're returned to the caller

Definition at line 450 of file PoolAllocator.h.

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
void Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::deallocate ( void *  addr,
size_t  size 
)
inline

Deallocate an object of specified size.

The addr must be an object address that was previously returned by the allocate method and which hasn't been deallocated in the interim. The size must be the same as the argument passed to the allocate call that returned this address.

Thread safety: This method is thread-safe.

See also
DefaultAllocator::deallocate

Definition at line 469 of file PoolAllocator.h.

References Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::poolNumber().

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
void Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::vacuum ( )
inline

Delete unused chunks.

A pool allocator is optimized for the utmost performance when allocating and deallocating small objects, and therefore does minimal bookkeeping and does not free chunks. This method traverses the free lists to discover which chunks have no cells in use, removes those cells from the free list, and frees the chunk.

Thread safety: This method is thread-safe.

Definition at line 488 of file PoolAllocator.h.

template<size_t smallestCell, size_t sizeDelta, size_t nPools, size_t chunkSize, typename Sync >
void Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::showInfo ( std::ostream &  out) const
inline

Print pool allocation information.

Prints some interesting information about each chunk of each pool. The output will be multiple lines.

Thread safety: This method is thread-safe.

Definition at line 498 of file PoolAllocator.h.

References Sawyer::PoolAllocatorBase< smallestCell, sizeDelta, nPools, chunkSize, Sync >::cellSize().


The documentation for this class was generated from the following file: