Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working at a my own library, and I have my own allocators. I've declared a common interface like this:

class MyAllocator
{
public:
  void * allocate(size_t size);
  void * allocate(size_t size, size_t align);
  void   deallocate(void *);

  //...

};

Now, if I want to allocate C++ objects with allocators like this I must use the placement new in this manner:

MyAllocator a;
MyObject * o = new(a.allocate(sizeof(MyObject))) MyObject(param1, param2, ...);

This, of course, works pretty well. Now, time ago I wanted to make a global allocator, which take the allocator as a parameter, in order to avoid that repetitive sizeof(). So I come with this:

template< typename AllocatorT >
inline
void *operator new(size_t n_bytes, AllocatorT & allocator)
{
    return allocator.allocate(n_bytes);
}

With this, I can just call:

MyAllocator my_alloc;
MyObject * o = new(my_alloc) MyObject(param1, param2);

A syntax much clean, and cool. This basically works pretty well too (with gcc, and with msvc2010), but today, when I have tried it in msvc2008 I got errors: that's because of msvc2008 compiler get fooled from that template parameter, so, when I include a header which use the normal placement new [almost every stl header contain a call to a placement new, e.g. vector, set, etc] the compiler will use my templated version of global new, instead of the placement new, causing an obvious error: a type 'void*' is not a class/struct and of course do not have the allocate() member function.

Now, questions arise:

  • Is this a bug of msvc2008? With gcc 4.4.0, 4.4.5 and msvc2010 it works pretty well.
  • Am I wrong in writing a templated global new operator which accepts an allocator reference? I mean, can this thing be an ambiguous syntax that can get compilers fooled easily, often causing errors, and I should abandon this idea, or can this be doable in some other way? As noticed before, it reduces very much the complexity of C++ objects allocation with a custom allocator using the normal placement new.
  • Normally, if we have:

    void f(void *); //1 template< typename A >f(A &); //2

and we call:

void * void_ptr = something();
f(void_ptr);

of course here the first version get called.

Why this seems not happen in msvc2008 with that templated version of operator new?

share|improve this question
Do you want to use your custom allocator explicitely or globally? In case of the second one I would encourage you to override standart global new and access your allocator through a singleton pattern. Regarding your orginal question: Im pretty sure its a compiler problem. I got similar issues with different gcc versions. Older versions require you to redefine template args of a parent class in a constructor call explicitely; newer versions do it implicetely. So you just have to write the class name in the constructor call. – Paranaix Jun 5 '12 at 16:42
Well, first of all I already overload new/delete operators globally, and I have no problem with that, it just works as expected. The problems arise when I try to overload a my custom version of new and delete, with my own arguments to pass to them. Since I want to pass a my own allocator reference to the new operator, and I have many allocators, I have tought to use a template. But even if I explicitely write class name in the ctor call as you suggested, I will always get compiler errors because the compiler will call my own allocator (with 1 parameter, templated) as the placement new! – Marco Pagliaricci Jun 5 '12 at 16:53
Why do you need a template here? Do you have several allocator classes with the same interface? If so, consider selectively enabling your template with enable_if. If not, just use a regular non-template function. – n.m. Jun 5 '12 at 16:59
@MarcoPagliaricci Im agreeing n.m. My idea was to take away the template arguement and accessing the real allocator object by a singleton/factory/registry (dont care how you want to call it) which returns a Allocator* to the object. – Paranaix Jun 5 '12 at 17:14
Well, my allocators objects are not polymorphic, they just are normal objects with common function names, and can be passed as template arguments, e.g. MySet< int, Myallocator > S; so, you're saying that I should use a common interface with a polymorphic inheritance? Effectively, I was considering this. – Marco Pagliaricci Jun 6 '12 at 7:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.