Has anyone here ever used C++'s "placement new"? If so, what for? It looks to me like it would only be useful on memory-mapped hardware.
|
6
|
|
|
|
|
|
Placement new allows you to construct an object on memory that's already created. You may want to do this for optimizations (it is faster not to re-allocate all the time) but you need to re-construct an object multiple times. If you need to keep re-allocating it might be more efficient to allocate more than you need, even know you don't want to use it yet.
You may also want to be sure there can be no allocation failure at a certain part of critical code (maybe you work on a pacemaker for example). In that case you would want to use placement new. Deallocation in placement new: You should not deallocate every object that is using the memory buffer. Instead you should delete[] only the original buffer. You would have to then call the destructors directly of your classes manually. For a good suggestion on this please see Stroustrup's FAQ on: Is there a "placement delete"? |
||||||||||
|
|
|
It's useful if you want to separate allocation from initialization. STL uses placement new to create container elements. MSN |
||
|
|
|
|
I've used it to construct objects allocated on the stack via alloca(). shameless plug: I blogged about it here. |
||
|
|
We use it with custom memory pools. Just a sketch:
Now you can cluster objects together in a single memory arena, select an allocator which is very fast but does no deallocation, use memory mapping, and any other semantic you wish to impose by choosing the pool and passing it as an argument to an object's placement new operator. |
|||
|
|
|
|
It is useful if you are building a kernel - where do you place the kernel code you read from disk or the pagetable? You need to know where to jump to. Or in other, very rare circumstances such as when you have loads of allocated room and want to place a few structures behind each other. They can be packed this way without the need for the offsetof() operator. There are other tricks for that too, though. I also believe some STL implementations make use of placement new, like std::vector. They allocate room for 2^n elements that way and don't need to always realloc. |
||||||||
|
|
|
I've used it to create objects based on memory containing messages received from the network. |
||
|
|
|
|
Generally, placement new is used to get rid of allocation cost of a 'normal new'. Another scenario where I used it is a place where I wanted to have access to the pointer to an object that was still to be constructed, to implement a per-document singleton. |
||
|
|
|
|
I've used it in realtime programming. We typically don't want to perform any dynamic allocation (or deallocation) after the system starts up, because there's no guarantee how long that is going to take. What I can do is preallocate a large chunk of memory (large enough to hold any amount of whatever that the class may require). Then, once I figure out at runtime how to construct the things, placement new can be used to construct objects right where I want them. One situation I know I used it in was to help create a hetrogenious circular buffer. It's certianly not for the feint of heart, but that's why they make the syntax for it kinda gnarly. |
||
|
|
|
|
I've used it for storing objects with memory mapped files. |
||
|
|
|
|
The one place I've run across it is in containers which allocate a contiguous buffer and then fill it with objects as required. As mentioned, std::vector might do this, and I know some versions of MFC CArray and/or CList did this (because that's where I first ran across it). The buffer over-allocation method is a very useful optimization, and placement new is pretty much the only way to construct objects in that scenario. It is also used sometimes to construct objects in memory blocks allocated outside of your direct code. I have used it in a similar capacity, although it doesn't come up often. It's a useful tool for the C++ toolbox, though. |
||
|
|
|
|
I've seen it used as a slight performance hack for a "dynamic type" pointer (in the section "Under the Hood"):
|
|||
|
|
|
|
Script engines can use it in the native interface to allocate native objects from scripts. See Angelscript (www.angelcode.com/angelscript) for examples. |
||
|
|
|
|
It's used by std::vector<> since std::vector likes to allocate more memory than there are objects in the vector. |
||
|
|
