Tagged Questions

A component of C++'s Standard Library, in charge of handling the requests for allocation and deallocation of memory for a container.

learn more… | top users | synonyms

14
votes
3answers
200 views

Does std::vector *have* to move objects when growing capacity? Or, can allocators “reallocate”?

A different question inspired the following thought: Does std::vector<T> have to move all the elements when it increases its capacity? As far as I understand, the standard behaviour is for the ...
13
votes
7answers
277 views

Uses for the capacity value of a string

In the C++ Standard Library, std::string has a public member function capacity() which returns the size of the internal allocated storage, a value greater than or equal to the number of characters in ...
11
votes
1answer
160 views

Why do tuples have uses_allocator but pairs don't?

While experimenting with the C++11 std::scoped_allocator_adaptor as implemented in gcc 4.7.0 so far, I noticed that C++11 FDIS defines a specialization of std::uses_allocator for tuples ...
10
votes
2answers
216 views

Is there a C++ allocator that respects an overridden new/delete?

I'm implementing a resource-allocating cloning operation for an array of type T. The straightforward implementation uses new T[sz] followed by a std::copy call from the source into the new array. It ...
9
votes
6answers
187 views

Efficient Array Reallocation in C++

How would I efficiently resize an array allocated using some standards-conforming C++ allocator? I know that no facilities for reallocation are provided in the C++ alloctor interface, but did the ...
9
votes
5answers
239 views

Second argument to std::vector

Looking at vector, I realized that I have never used the second argument when creating vectors. std::vector<int> myInts; // this is what I usually do std::vector<int, ???> myOtherInts; // ...
8
votes
3answers
2k views

Custom (pool) allocator with boost shared_ptr

I want objects managed by a shared_ptr to be allocated from a pool, say Boost's Pool interface, how can this be achieved?
7
votes
3answers
153 views

Requirements on standard library allocator pointer types

I am trying to write a quadtree sparse matrix class. In short, a quadtree_matrix<T> is either the zero matrix or a quadruple (ne, nw, se, sw) of quadtree_matrix<T>. I'd like eventually to ...
7
votes
5answers
648 views

Why is deleted memory unable to be reused

I am using C++ on Windows 7 with MSVC 9.0, and have also been able to test and reproduce on Windows XP SP3 with MSVC 9.0. If I allocate 1 GB of 0.5 MB sized objects, when I delete them, everything ...
7
votes
2answers
425 views

C++ allocators, specifically passing constructor arguments to objects allocated with boost::interprocess::cached_adaptive_pool

This is an embarrassing question, but even the well-written documentation provided with boost.interprocess hasn't been enough for me to figure out how to do this. What I have is a ...
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
95 views

C++ default allocator - what should happen if the size doesn't equal the size passed to the invocation of allocate?

20.6.9: void deallocate(pointer p, size_type n); Requires: p shall be a pointer value obtained from allocate(). n shall equal the value passed as the first argument to the invocation of allocate ...
6
votes
6answers
146 views

suggestions for improving an allocator algorithm implementation

I have a Visual Studio 2008 C++ application where I'm using a custom allocator for standard containers such that their memory comes from a Memory Mapped File rather than the heap. This allocator is ...
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
2answers
122 views

Standard compliant custom allocator

Is OK to throw an exception when 0 is passed to allocate method? Thank you. P.S. If n == 0, the return value is unspecified. Does it mean that allocate shouldn't throw an exception? I am ...
5
votes
1answer
148 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
1answer
66 views

C++ allocator<X>::deallocate(NULL,1) allowed?

Both free(NULL) and ::operator delete(NULL) are allowed. Does the allocator concept (e.g. std::allocator also allow deallocate(NULL,1), or is it required to put your own guard around it?
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 ...
5
votes
3answers
484 views

Why isn't std::string::max_size() == std::string::allocator::max_size()

Recently I've noticed that the following statement is not true given std::string s. s.max_size() == s.get_allocator().max_size(); I find this interesting, by default std::string will use ...
4
votes
6answers
238 views

How is a vector's data aligned?

If I want to process data in a std::vector with SSE, I need 16 byte alignment. How can I achieve that? Do I need to write my own allocator? Or does the default allocator already align to 16 byte ...
4
votes
2answers
118 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
340 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
366 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
396 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
66 views

Using Memory Allocated by Different Allocator

Suppose I have a class called vector that maintains some internal, dynamic array of type T allocated by std::allocator<T>. Now, I construct a vector of type U, and later want to use move ...
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
427 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
2answers
163 views

Class design for self-linked classes with generic pointer type

I am currently modifying a complex class that has nodes pointing to themselves just like linked lists or graphs. I want it to be used in shared memory using boost::interprocess functions. Now I am ...
3
votes
4answers
461 views

SSE and C++ containers

Is there an obvious reason why the following code segfaults ? #include <vector> #include <emmintrin.h> struct point { __m128i v; point() { v = _mm_setr_epi32(0, 0, 0, 0); } ...
3
votes
1answer
132 views

How do you declare an allocator?

I'm trying to recreate the inbuilt vector class in cpp to get a bit more practice with classes and memory management. I keep getting an error that says 'ISO C++ forbids declaration of ‘allocator’ with ...
3
votes
3answers
610 views

Memory leak when using OpenMP

The below test case runs out of memory on 32 bit machines (throwing std::bad_alloc) in the loop following the "post MT section" message when OpenMP is used, however, if the #pragmas for OpenMP are ...
3
votes
1answer
315 views

Setting a custom allocator for strings

I know I can set a custom allocator for vectors using the syntax vector<T, Alloc>. Is there a way I can do the same for strings?
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
6answers
98 views

Difference between Stack And Heap

Please tell me the difference between stack and heap with respect to below code int main() { int arr[3]; int *a; arr [5] = 6; // out of bound but it will not give error. arr [3000] = ...
2
votes
2answers
83 views

std::string allocation policy

I am a bit confused with some of the basic string implementation. I have been going through the source to understand the inner working and learn new things. I can't entirely grasp how the memory is ...
2
votes
1answer
32 views

C++ Calling allocator.construct for Primitives

Is it necessary for me to call allocator.construct() for an array of primitive types allocated using an arbitrary allocator, as in the code listing below? The class doesn't require the allocated ...
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
1answer
159 views

boost::unordered_map using boost::interprocess::cached_node_allocator compilation failure

I am trying to create a boost::unordered_map in a boost::interprocess::managed_shared_memory segment. This works fine until I try to change from using boost::interprocess::allocator to ...
2
votes
1answer
146 views

C++0x allocators

I observed that my copy of MSVC10 came with containers that appeared to allow state based allocators, and wrote a simple pool allocator, that allocates pools for a specific type. However, I discovered ...
2
votes
1answer
155 views

Custom Allocator in tr1's unordered_map

I have a few problems regarding a custom allocator for an unordered_map. I have a large dataset and I need to hash on a string as key. So I came to know that providing a custom memory allocator would ...
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
4answers
123 views

transfering object ownership on std::allocator rebind

I have a Visual Studio 2008 C++ application where I am implementing a replacement for the standard allocator used in containers like std::vector. But, I've run in to an issue. My implementation relies ...
2
votes
2answers
94 views

Using allocators

Are these versions of new and delete are exception safe? Any possible pitfalls? Assume that customized_allocator_type is STL compatible. Also assume that the allocator's constructor doesn't have any ...
2
votes
1answer
226 views

C++ : Why isn't my call to “std::uninitialized_copy” working?

I building a simple class that is supposed to mimic the functionality of the std::string class (as an exercise!): #ifndef _STR12_1_H #define _STR12_1_H #include <string> #include ...
2
votes
1answer
141 views

Overriding new but telling unordered_map not to use it

I'm writing a garbage collector for C/C++ as a programming exercise, and part of this involves globally overriding new. However, the garbage collector also uses an unordered_map (to store pointers to ...
2
votes
2answers
72 views

Associative container - exception rather than default-construct in C++

I'm looking for an associative container in C++, where rather than requiring it's elements to be default-constructible, will throw an exception where a key is requested that isn't found - edit: in the ...

1 2