<allocators>

Defines several templates that help allocate and free memory blocks for node-based containers.

Syntax

#include <allocators>

Note

<allocators> is deprecated, starting with Visual Studio 2019 version 16.3.

Remarks

The <allocators> header provides six allocator templates that can be used to select memory-management strategies for node-based containers. For use with these templates, it also provides several different synchronization filters to tailor the memory-management strategy to a variety of different multithreading schemes (including none). You can speed up your app, or reduce its memory requirements, by matching a memory management strategy to its memory usage patterns and synchronization requirements.

The allocator templates are implemented with reusable components that can be customized or replaced to provide additional memory-management strategies.

The node-based containers in the C++ Standard Library (std::list, std::set, std::multiset, std::map, and std::multimap) store their elements in individual nodes. All the nodes for a particular container type are the same size, so the flexibility of a general-purpose memory manager is not needed. Because the size of each memory block is known at compile time, the memory manager can be much simpler and faster.

When used with containers that are not node-based (such as the C++ Standard Library containers std::vector std::deque, and std::basic_string), the allocator templates will work correctly, but are not likely to provide any performance improvement over the default allocator.

An allocator is a class template that describes an object that manages storage allocation and freeing for objects and arrays of objects of a designated type. Allocator objects are used by several container class templates in the C++ Standard Library.

The allocators are all templates of this type:

template<class Type>
class allocator;

where the template argument Type is the type managed by the allocator instance. The C++ Standard Library provides a default allocator, class template allocator, which is defined in <memory>. The <allocators> header provides the following allocators:

Use an appropriate instantiation of an allocator as the second type argument when creating a container, such as the following code example.

#include <list>
#include <allocators>
std::list<int, stdext::allocators::allocator_chunklist<int> > _List0;

_List0 allocates nodes with allocator_chunklist and the default synchronization filter.

Use the macro ALLOCATOR_DECL to create allocator templates with synchronization filters other than the default:

#include <list>
#include <allocators>
ALLOCATOR_DECL(CACHE_CHUNKLIST, stdext::allocators::sync_per_thread, Alloc);
std::list<int, alloc<int> > _List1;

_Lst1 allocates nodes with allocator_chunklist and the sync_per_thread synchronization filter.

A block allocator is a cache or a filter. A cache is a class template that takes one argument of type std::size_t. It defines a block allocator that allocates and deallocates memory blocks of a single size. It must obtain memory using operator new, but it need not make a separate call to operator new for each block. It may, for example, suballocate from a larger block or cache deallocated blocks for subsequent reallocation.

With a compiler that cannot rebind the value of the std::size_t argument used when the template was instantiated is not necessarily the value of the argument _Sz passed to a cache's member functions allocate and deallocate.

<allocators> provides the following cache templates:

A filter is a block allocator that implements its member functions using another block allocator, which is passed to it as a template argument. The most common form of filter is a synchronization filter, which applies a synchronization policy to control access to the member functions of an instance of another block allocator. <allocators> provides the following synchronization filters:

<allocators> also provides the filter rts_alloc, which holds multiple block allocator instances and determines which instance to use for allocation or deallocation at runtime instead of at compile time. It is used with compilers that cannot compile rebind.

A synchronization policy determines how an allocator instance handles simultaneous allocation and deallocation requests from multiple threads. The simplest policy is to pass all requests directly through to the underlying cache object, leaving synchronization management to the user. A more complex policy could be to use a mutex to serialize access to the underlying cache object.

If a compiler supports compiling both single-threaded and multi-threaded applications, the default synchronization filter for single-threaded applications is sync_none; for all other cases it is sync_shared.

The cache template cache_freelist takes a max class argument, which determines the maximum number of elements to be stored in the free list.

<allocators> provides the following max classes:

Macros

Macro Description
ALLOCATOR_DECL Yields an allocator class template.
CACHE_CHUNKLIST Yields stdext::allocators::cache_chunklist<sizeof(Type)>.
CACHE_FREELIST Yields stdext::allocators::cache_freelist<sizeof(Type), max>.
CACHE_SUBALLOC Yields stdext::allocators::cache_suballoc<sizeof(Type)>.
SYNC_DEFAULT Yields a synchronization filter.

Operators

Operator Description
operator!= (<allocators>) Tests for inequality between allocator objects of a specified class.
operator== (<allocators>) Tests for equality between allocator objects of a specified class.

Classes

Class Description
allocator_base Defines the base class and common functions needed to create a user-defined allocator from a synchronization filter.
allocator_chunklist Describes an object that manages storage allocation and freeing for objects using a cache of type cache_chunklist.
allocator_fixed_size Describes an object that manages storage allocation and freeing for objects of type Type using a cache of type cache_freelist with a length managed by max_fixed_size.
allocator_newdel Implements an allocator that uses operator delete to deallocate a memory block and operator new to allocate a memory block.
allocator_suballoc Describes an object that manages storage allocation and freeing for objects of type Type using a cache of type cache_suballoc.
allocator_unbounded Describes an object that manages storage allocation and freeing for objects of type Type using a cache of type cache_freelist with a length managed by max_unbounded.
allocator_variable_size Describes an object that manages storage allocation and freeing for objects of type Type using a cache of type cache_freelist with a length managed by max_variable_size.
cache_chunklist Defines a block allocator that allocates and deallocates memory blocks of a single size.
cache_freelist Defines a block allocator that allocates and deallocates memory blocks of a single size.
cache_suballoc Defines a block allocator that allocates and deallocates memory blocks of a single size.
freelist Manages a list of memory blocks.
max_fixed_size Describes a max class object that limits a freelist object to a fixed maximum length.
max_none Describes a max class object that limits a freelist object to a maximum length of zero.
max_unbounded Describes a max class object that does not limit the maximum length of a freelist object.
max_variable_size Describes a max class object that limits a freelist object to a maximum length that is roughly proportional to the number of allocated memory blocks.
rts_alloc The rts_alloc class template describes a filter that holds an array of cache instances and determines which instance to use for allocation and deallocation at runtime instead of at compile time.
sync_none Describes a synchronization filter that provides no synchronization.
sync_per_container Describes a synchronization filter that provides a separate cache object for each allocator object.
sync_per_thread Describes a synchronization filter that provides a separate cache object for each thread.
sync_shared Describes a synchronization filter that uses a mutex to control access to a cache object that is shared by all allocators.

Requirements

Header: <allocators>

Namespace: stdext

See also

Header Files Reference