Tagged Questions

6
votes
2answers
126 views

Why does allocator in c++ provide specialization for type void

I notice that the allocator in c++ provides specialization for type void. Is there any special purpose to do this? It doesn't make sense to allocate memory for void type, right?
6
votes
3answers
253 views

Is there an allocator that uses alloca and is otherwise C++ STL compliant?

I have two questions: 1) Is it possible to implement an allocator that uses alloca to allocate memory on the stack and is otherwise C++ STL compliant? If there is code out there, you can make me ...
5
votes
2answers
302 views

C++ Design Pattern for allocator type arguments

The C++03 standard library uses simple template type arguments when passing a type to a class which is meant to be an allocator. This is possible because of how templates work in C++. However, it ...
5
votes
1answer
149 views

Does an allocator.construct loop equal std::uninitialized_copy?

In this context T is a certain type and allocator is an allocator object for that type. By default it is std::allocator<T> but this is not necessarily true. I have a chunk of memory acquired ...
5
votes
5answers
579 views

STL allocators and operator new[]

Are there STL implementations that use operator new[] as an allocator? On my compiler, making Foo::operator new[] private did not prevent me from creating a vector<Foo>... is that behavior ...
4
votes
2answers
119 views

Stack-buffer based STL allocator?

I was wondering if it practicable to have an C++ standard library compliant allocator that uses a (fixed sized) buffer that lives on the stack. Somehow, it seems this question has not been ask this ...
4
votes
1answer
110 views

Is there a C++ allocator that prevent an STL container from being swapped?

Has anyone seen an allocator that calls mlock(2) to prevent an STL container's contents from being swapped to disk? There is afaik only one tricky part to writing such an allocator, namely ...
4
votes
1answer
342 views

Getting std::map allocator to work

I've got an extremely basic allocator: template<typename T> struct Allocator : public std::allocator<T> { inline typename std::allocator<T>::pointer allocate(typename ...
4
votes
5answers
367 views

An STL implementation that uses a dynamic/state based allocator?

Does anybody know of an STL implementation that allows for dynamic allocators to be passed in to an instance of a container before use. The scenario is that we have a general memory allocator that ...
4
votes
3answers
397 views

C++ STL-conforming Allocators

What allocators are available out there for use with STL when dealing with small objects. I have already tried playing with pool allocators from Boost, but got no performance improvement (actually, in ...
3
votes
1answer
145 views

Is there an STL Allocator that will not implicitly free memory?

Memory usage in my STL containers is projected to be volatile - that is to say it will frequently shrink and grow. I'm thinking to account for this by specifying an allocator to the STL container ...
3
votes
3answers
163 views

why does allocator in c++ need a copy constructor?

It is said here that it's because of exception specification. I do not understand it. Does this question have any relationship with exception specification?
3
votes
1answer
98 views

STL container library - Is it legal to call allocate/deallocate on different instances of the allocator class?

First of all, I don't think it is. But, I've observed such a behavior with MSVC 10.0 in Debug mode. I'm using a custom allocator class which relies on the user to pass only pointers allocated on the ...
3
votes
2answers
431 views

C++ STL allocator vs operator new

According to C++ Primer 4th edition, page 755, there is a note saying: Modern C++ programs ordinarily ought to use the allocator class to allocate memory. It is safer and more flexible. I don't ...
3
votes
4answers
188 views

How can I make an object construct itself at a particular location in memory? [closed]

Possible Duplicate: Create new C++ object at specific memory address? I am writing what is essentially an object pool allocator, which will allocate a single class. I am allocating just ...
2
votes
1answer
73 views

How to avoid temporary object on the stack when using the allocator concept?

The following code tries to create nodes of a binary tree and return a boost::shared_ptr() to it. void create_node(shared_ptr &in, unsigned var_name, shared_ptr ...
2
votes
2answers
149 views

C++ Design pattern for extending an arbitrary standard conform allocator

I'm currently searching for the best way to extend an arbitrary standard conform allocator type. To be clear: I don't want to write a custom allocator. I just want to "add" a specific extension or ...
2
votes
3answers
380 views

llvm-gcc std::allocator bug?

The code: #include <vector> #include <stack> using namespace std; class blub {}; class intvec : public std::vector<int, std::allocator<int> >, public blub {}; int main() { ...
1
vote
1answer
79 views

Custom allocator fails to rebind to Other type

All I have code for my custom allocator that is written with intent to be a proxy for other allocators to be able for example to gather allocation statistics or whatever else template<int Id, ...
1
vote
2answers
185 views

compiler support for stateful allocators in STL containers

The new C++11 standard requires STL implementations to support stateful allocators in containers. Do main STL implementations (Visual Studio 2008, 2010, libstdc++) comply to this requirement now? I ...
1
vote
2answers
681 views

TCMalloc Allocator for STL

I want to use TCMalloc with STL containers, so I need an allocator built with TCMalloc (like tbb_allocator with TBB malloc). I cannot find any anything TCMalloc documentation (if it is called a ...
1
vote
2answers
607 views

Custom allocator for std::vector<> with release?

I am working with a 3rd party C API set in C++ that has two methods of concern for this discussion: It's equivalent of malloc(): the_api_malloc(size) (plus a matching the_api_free()) A function in ...
1
vote
2answers
1k views

shared memory STL maps

I am writing an Apache module in C++. I need to store the common data that all childs need to read as a portion of shared memory. Structure is kind of map of vectors, so I want to use STL map and ...
1
vote
3answers
494 views

How can I create a std::vector with 64 bit indexes?

I want to create a big std::vector so operator[] should receive long long rather than unsigned int, I tried writing my own allocator: template <typename T> struct allocator64 : ...
0
votes
1answer
26 views

How to create inherit from std::allocator and is it resonable?

What I wonder about is simple - if we create a DLL, compile it with static runtime, while in its code we will create a simple allocator that inherits from std::allocator, would it be possible for us ...
0
votes
1answer
80 views

Is there a bitset class that's sized at instantiation time, but avoids boost::dynamic_bitset<>'s extra allocation call?

Is there a convenient analog of std::bitset<> that's dynamically sizable at instantiation time, but avoids the extra allocation required by boost::dynamic_bitset<> You can create ...
0
votes
1answer
138 views

C/C++ custom allocator memory leak

I create a custom memory allocator like following: class pool_allocator { // required methods // ... private: boost::shared_ptr<MemoryChunks> m_t; }; The purpose of this allocator ...
0
votes
2answers
528 views

Extension wrapper malloc allocator for C++ STL

Apparently there is a “malloc_allocator” provided with gcc for use with STL. It simply wraps malloc and free. There is also a hook for an out-of-memory handler. Where can I find more about it? Where ...
0
votes
2answers
305 views

C++ STL Memory Allocator Compile Error

I'm writing a C++ custom allocator for use with STL. When I put the following code in the class definition, it compiles: #include "MyAlloc.hpp" #if 1 template <typename T> typename ...
0
votes
1answer
316 views

Which allocator are available in STLPORT, and how to use them

We're using STLPORT and we'd like to change stlport's default allocator: instead of vector<int>, we'd like to try vector<int, otherallocator> Which alternative allocator are available in ...
0
votes
3answers
593 views

Account memory usage with custom allocator

I'm using a custom allocator to account for memory usage in several containers. Currently I use a static variable to account for the memory usage. How could I separate this account across several ...