|
using | propagate_on_container_move_assignment = std::true_type |
| Allows propagation on move.
|
|
using | propagate_on_container_swap = std::true_type |
| Allows propagation on swap.
|
|
using | propagate_on_container_merge = std::true_type |
| Allows propagation on merge.
|
|
using | propagate_on_container_copy_assignment |
| No propagation on copy.
|
|
using | propagate_on_container_move_assignment |
| No propagation on move.
|
|
using | propagate_on_container_swap |
| No propagation on swap.
|
|
using | propagate_on_container_merge |
| No propagation on merge.
|
|
using | rebind_alloc |
| Rebinds allocator to different type.
|
|
template<typename TYPE>
class original::objPoolAllocator< TYPE >
Object pool allocator for efficient fixed-size memory management.
- Template Parameters
-
TYPE | Type of objects to allocate |
Implements a memory allocator using an object pool pattern with these characteristics:
- Organizes memory into power-of-two sized chunks (1, 2, 4, 8, 16, 32, ... bytes)
- Maintains separate free lists for each chunk size
- Allocates memory in blocks (chunks) to reduce fragmentation
- Falls back to allocators::malloc/ allocators::free for allocations too large for the pool
Memory Management Approach:
- The allocator maintains multiple free lists, one for each size class (power-of-two)
- When an allocation request comes in:
- Finds the smallest size class that can satisfy the request
- If no free chunks available, allocates a new block of chunks
- For requests too large for the largest size class, uses global new
- When memory is deallocated:
- Returns the chunk to its appropriate free list
- Large allocations (outside pool) are freed immediately
- Note
- For large allocations, uses allocators::malloc/ allocators::free
- See also
- allocator For the default allocator implementation