|
LLVM
3.7.0
|
A BumpPtrAllocator that allows only elements of a specific type to be allocated. More...
#include <Allocator.h>
Public Member Functions | |
| SpecificBumpPtrAllocator () | |
| SpecificBumpPtrAllocator (SpecificBumpPtrAllocator &&Old) | |
| ~SpecificBumpPtrAllocator () | |
| SpecificBumpPtrAllocator & | operator= (SpecificBumpPtrAllocator &&RHS) |
| void | DestroyAll () |
| Call the destructor of each allocated object and deallocate all but the current slab and reset the current pointer to the beginning of it, freeing all memory allocated so far. More... | |
| T * | Allocate (size_t num=1) |
| Allocate space for an array of objects without constructing them. More... | |
A BumpPtrAllocator that allows only elements of a specific type to be allocated.
This allows calling the destructor in DestroyAll() and when the allocator is destroyed.
Definition at line 349 of file Allocator.h.
|
inline |
Definition at line 353 of file Allocator.h.
|
inline |
Definition at line 354 of file Allocator.h.
|
inline |
Definition at line 356 of file Allocator.h.
|
inline |
Allocate space for an array of objects without constructing them.
Definition at line 394 of file Allocator.h.
Referenced by llvm::OnDiskChainedHashTableGenerator< Info >::insert().
|
inline |
Call the destructor of each allocated object and deallocate all but the current slab and reset the current pointer to the beginning of it, freeing all memory allocated so far.
Definition at line 366 of file Allocator.h.
Referenced by llvm::SpecificBumpPtrAllocator< llvm::LazyCallGraph::SCC >::~SpecificBumpPtrAllocator().
|
inline |
Definition at line 358 of file Allocator.h.
1.8.6