Displaying 1 result from an estimated 1 matches for "bump_alloc".
Did you mean:
buf_alloc
2008 May 17
7
[LLVMdev] Forward: Discussion about custom memory allocators for STL
...ne of them is the standard STL
> allocator. Other allocators
> we found by me on the Internet and made STL-compliant via a special
> templatized adapter class.
> I don't want to go in detail at this moment, since the code is not
> quite polished yet, but I'd
> mention that bump_allocator is an STL-compliant version of LLVM's pool
> allocator.
>
> My test checks their performance for allocating node-based containers,
> i.e. std::list and std::set.
> I try to insert 1000000 nodes into the list and set using different allocators.
> While doing it, I observe...