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

1
vote
1answer
15 views

the design of inner function _S_oom_malloc in SGI-STL allocator

The code is as follows: template <int __inst> void* __malloc_alloc_template<__inst>::_S_oom_malloc(size_t __n) { void (* __my_malloc_handler)(); void* __result; for (;;) { ...
0
votes
2answers
81 views

How is std::allocator so fast?

I believe it is not practical to access to implementation of Standard Library of C++ because it is platform-dependent (correct me if this sentence was wrong!). Well, I wanted practice about some very ...
20
votes
2answers
256 views

Why is Allocator::reference being phased out?

So I was looking at specification of std::vector and noticed that reference typedef changed from Allocator::reference in C++03 to to value_type& in C++11. I was surprised, so I've started looking ...
2
votes
2answers
97 views

Compiling issue with custom allocators when -std=c++0x is enabled

I have a Matrix class which is a collection of Rows. The data types are defined as following: Row: template <typename Index> class Row { public: Row() { _index_vector = ...
0
votes
1answer
45 views

Undefined reference to error is showing an extra parameter for my function, GTKMM C++

I am writing a snakes and ladders game and I defined a function called draw_snake as follows: void draw_snake(const Cairo::RefPtr<Cairo::Context>& cr, ...
4
votes
1answer
137 views

How to make my uninitialised_allocator safe?

Following from this question, I want to use an unitialised_allocator with, say, std::vector to avoid default initialisation of elements upon construction (or resize() of the std::vector (see also here ...
0
votes
0answers
36 views

boost interprocess allocator map offset_ptr in different processes

Assume the following source code: namespace bip = boost::inteprocess; typedef bip::allocator<char, bip::managed_mapped_file::segment_manager> my_allocator; auto m_file = new ...
8
votes
2answers
126 views

Why does std::vector::get_allocator() return by-value?

To my surprise, I got an error when trying to use std::vector::get_allocator() with an non-copyable allocator. Why does std::vector::get_allocator() return by-value and not by-reference? ...
0
votes
0answers
41 views

Memory allocation for _Container_proxy in a map when using a custom allocator

In a map I use a custom allocator which do not allocate memory itself, but use a class pool to manage this and garbage collection. My problem is, that since VS2012 (I used VS2005 before) the map tree ...
14
votes
1answer
216 views

Rebinding in a custom STL allocator with pre-allocated block

I'm going to build a custom allocator, preallocating a big block (array) for storing N elements of some class T, and then just increase an index inside the array to service allocation requests. Since ...
-2
votes
1answer
62 views

vector<double> being converted to vector<double, allocator<double>>

I'm creating a vector of doubles which I'm then trying to add to an object that I've defined. The problem is that my vector<double> is getting converted to a vector<double, ...
7
votes
2answers
121 views

Does an allocation hint get used?

I was reading Why is there no reallocation functionality in C++ allocators? and Is it possible to create an array on the heap at run-time, and then allocate more space whenever needed?, which clearly ...
0
votes
1answer
77 views

boost interprocess unordered_map string

I am trying to create a unordered_map in shared memory using Boost Interprocess library. Here, is the code, which I'm trying to use (taking examples from Boost Interprocess documentation): #include ...
-1
votes
2answers
122 views

C++ segmentation fault in std::string function [closed]

I'm developing an algorithm based on Skyline queries using C++, using a RTree for storing my data. The algorithm works fine if I process up to 5 points then if I try 6 points it gives a segmentation ...
1
vote
2answers
190 views

Surprisingly inefficent custom allocator for vector<char>

I want to use a vector with the custom allocator below, in which construct() and destroy() have an empty body: struct MyAllocator : public std::allocator<char> { typedef ...
9
votes
2answers
300 views

Custom allocator for std::vector<char> is ignored

I was trying to use a custom allocator for std::vector<char>, but I noticed that std::vector does not need/use any of the member functions from my allocator. How is this possible? #include ...
0
votes
0answers
83 views

Optimal Memory Utilization in realloc (splitting?)

I'm having difficulty with coding my realloc function. I have it working through standard memcpy procedure, but I can't get it optimized. I know there are two other cases I need to accommodate for: ...
3
votes
2answers
175 views

Custom pooled allocator in C++ besides boost::pool

I've got a usage scenario in C++ where a function I'm calling many times creates a few local, small but dynamically-sized vectors. After profiling my program, I noticed that an inordinate amount of ...
3
votes
1answer
173 views

Logging allocator for std::containers?

The X: I need to know how much memory each part of my program is using. My program uses the C++ std library, a lot. In particular, I want to know how much memory each object is using. How I'm doing ...
4
votes
4answers
154 views

What is the difference between memory allocation through new and allocator

What is the difference between memory allocation through new/malloc and allocator? Why would we ever need a separate memory allocator for vector if we have the options of new and malloc?
5
votes
1answer
290 views

Memory allocation of internal types used by the containers

C++11 standard has following lines in General Container Requirements. (23.2.1 - 3) For the components affected by this subclause that declare an allocator_type, objects stored in these components ...
0
votes
1answer
104 views

STL containers, allocator, and pointer wrapper

I've made a customized slab allocator which uses mmap to allocate fixed-size segment pool. These segments are logically continuous but physically discrete. I also defined a pointer wrapper class, ...
0
votes
4answers
61 views

2D vector allocator trouble

#include <iostream> #include <vector> int main() { std::vector<double> test1(1); test1[100] = 5.; std::vector< std::vector <double > > test2(1, ...
5
votes
3answers
255 views

Linux Memory Usage in top when using std::vector versus std::list

I have noticed some interesting behavior in Linux with regard to the Memory Usage (RES) reported by top. I have attached the following program which allocates a couple million objects on the heap, ...
2
votes
1answer
68 views

Is one allowed to call allocator::deallocate() in a different order than one called allocator::allocate()?

N3485 20.6.9.1 [allocator.members]/1 says: Calls to these functions that allocate or deallocate a particular unit of storage shall occur in a single total order, and each such deallocation call ...
1
vote
0answers
90 views

whether there are hidden dangers of my custom memory allocator

Recently, I was writing a custom memory allocator,See this article in detail custom memeory alloc.. thanks to the answer of David Hammen,now i can free the memory of polymorphic objects correctly. ...
5
votes
1answer
118 views

STL Containers, SBO and custom allocator conflicts

I've recently been fiddling with developing a custom allocator based on a memory pool, that is shared between multiple instances of the allocator. The intention was that the allocator be compatible ...
0
votes
4answers
61 views

Template functions with STL Vectors break with new allocator

I have a ton of functions that are defined as something like: template<typename T> void myFunction1(vector<T>& vin); The point being, I input an STL vector and do some work. I have ...
6
votes
1answer
176 views

Memory management common patterns

I am writing a memory allocator and I want to test it against patterns (of calls on malloc and free) that are most common in programs. Have common patterns in memory management ever be identified? If ...
-1
votes
3answers
157 views

Replace Standard C++ Allocator?

I want to replace the standard allocator with a more robust allocator (the C++ standard only requires an overflow check on vector::resize). The various C++ allocators supplied with many libraries fall ...
2
votes
1answer
45 views

Function template parameterized by an allocator that is used to construct containers of different types

I want a function foo along these lines template <class T, class Alloc> void foo(T param, Alloc a) { vector<int, Alloc<int> > vect_of_ints; list<float, Alloc<float> ...
1
vote
1answer
243 views

Is boost::fast_pool_allocator using null_mutex safe in the presence of allocator rebinding?

I was wondering about the safety of using boost::fast_pool_allocator with null_mutex set. I know that the following is an unsafe instance. An allocator is instantiated per type. So if you have two ...
9
votes
2answers
452 views

Making std::vector allocate aligned memory

Is it possible to make std::vector of custom structs allocate aligned memory for further processing with SIMD instructions? If it is possible to do with Allocator, does anyone happen to have such an ...
3
votes
2answers
196 views

How do I use microsoft's C++ allocators

I see on http://msdn.microsoft.com/en-us/library/ee292117.aspx and http://msdn.microsoft.com/en-us/library/ee292134.aspx that Microsoft provides macros and classes for specialized allocators, but I'm ...
1
vote
1answer
135 views

Conversion between std::vector subclass with custom allocator and std::vectors

I have an advanced C++ question: Suppose I have a mmap_allocator template class, which is a subclass of std::allocator template class and a mmappable_vector template class which is a subclass of ...
8
votes
1answer
252 views

Standard C++ code for serialization/deserialization purposes

I've been working with hardware APIs for a long time and almost all of the APIs that I've been working had a C interface. So, in many times I was working with naked news, unsecure buffering and many C ...
3
votes
2answers
144 views

Which allocator is used when allocating a nested STL container?

I have a question about STL classes and allocators that doesn't seem to be easy to find online. Does anyone know which allocator is used in a nested STL class? For example: typedef ...
1
vote
1answer
146 views

Custom allocator sometimes crashes with stl vector

I've been given a custom allocator that implements it's own allocation policies, its own malloc/free, etc. Now, I've been asked to use this custom allocator with a STL container (being it a vector or ...
8
votes
2answers
584 views

STL Container: Constructor's Allocator parameter and scoped allocators

There is a template parameter for STL containers to chose a custom allocator. It took a while, but I think I understand how it works. Somehow it isn't really nice because the given allocator type ...
1
vote
2answers
171 views

What does it mean for an allocator to be stateless?

What does it mean for an allocator to be stateless? I realize that std::allocator is a wrapper around malloc, and has no state of its own. At the same time, malloc does its own bookkeeping, so one ...
4
votes
1answer
163 views

Custom allocator & default member

Why isn't this code compiling ? #include <cstdlib> #include <list> template < typename Type > class Allocator { public: using value_type = Type; public: template < ...
32
votes
7answers
861 views

Can a size_type ever be larger than std::size_t?

Standard containers with an std::allocator have their size_type defined as std::size_t. However, is it possible to have an allocator that allocates objects whose size cannot be represented by a ...
3
votes
3answers
469 views

Why is allocator::rebind necessary when we have template template parameters?

Every allocator class must have an interface similar to the following: template<class T> class allocator { ... template<class Other> struct rebind { typedef ...
0
votes
2answers
158 views

boost::fast_pool_allocator throwing Access Violation exception

Ok, I'm having a bit of a problem using the boost::fast_pool_allocator. The code I have is working for the first couple of calls to fast_pool_allocator::allocate(1), but then is failing with the ...
0
votes
1answer
40 views

How can I test whether an allocator is using std::allocate for memory allocation?

I want to provide specialized optimizations for allocations done with std::allocator, but if someone has subclassed it without overriding allocate or deallocate, then I don't know how to detect ...
1
vote
1answer
966 views

Custom allocator in std::vector

Is it possible to use custom allocator for std::vector internal allocations? If yes, how?
4
votes
3answers
447 views

Can I assume allocators don't hold their memory pool directly (and can therefore be copied)?

I'm writing a container and would like to permit the user to use custom allocators, but I can't tell if I should pass allocators around by reference or by value. Is it guaranteed (or at least, a ...
13
votes
1answer
497 views

Questions about Hinnant's stack allocator

I've been using Howard Hinnant's stack allocator and it works like a charm, but some details of the implementation are a little unclear to me. Why are global operators new and delete used? The ...
1
vote
2answers
186 views

Correct way to profile a memory allocator

I have written a memory allocator that is (supposedly) faster than using malloc/free. I have written a small amout of code to test this but I'm not sure if this is the correct way to profile a memory ...
1
vote
1answer
107 views

How to exactly simulate new T[n] with an allocator?

The expression new T[n] may or may not initialize each object in the array, depending on what T is. How do I replicate this initialization behavior using an allocator? struct Foo { int x; ...

1 2 3 4