Tagged Questions
28
votes
11answers
1k views
malloc & placement new vs. new
I've been looking into this for the past few days, and so far I haven't really found anything convincing other than dogmatic arguments or appeals to tradition (i.e. "it's the C++ way!").
If I'm ...
22
votes
4answers
362 views
Array placement-new requires unspecified overhead in the buffer?
5.3.4 [expr.new] of the C++11 Feb draft gives the example:
new(2,f) T[5] results in a call of operator new[](sizeof(T)*5+y,2,f).
Here, x and y are non-negative unspecified values ...
16
votes
5answers
204 views
Mixing operator new[] and placement new with ordinary delete[]
Just out of curiosity, is the following legal?
X* p = static_cast<X*>(operator new[](3 * sizeof(X)));
new(p + 0) X();
new(p + 1) X();
new(p + 2) X();
delete[] p; // Am I allowed to use ...
16
votes
7answers
2k views
C++, is it possible to call a constructor directly, without new?
Can I call constructor explicitly, without using new, if I already have a memory for object?
class Object1{
char *str;
public:
Object1(char*str1){
str=strdup(str1);
...
15
votes
6answers
529 views
Can I get a fresh start in C++ without failing again?
Sometimes it's nice to start over. In C++ I can employ this following simple manoeuvre:
{
T x(31, Blue, false);
x.~T(); // enough with the old x
::new (&x) ...
13
votes
3answers
404 views
Destructor not called after destroying object placement-new'ed
I had no clue why this doesn't work. The following Function is created by placement new. A function is provided that checks whether it should be destructed, and if so, calls its destructor manually.
...
12
votes
5answers
355 views
What is this second new?
What is the second line? (Seen while answering another question.)
int * x = new int [1] ;
int * y = new (x) int;
After the second line x and y have the same value (point to a same place). What's ...
11
votes
4answers
178 views
How to properly free the memory allocated by placement new?
I've been reading somewere that when you use placement new then you have to call the destructor manually.
Consider the folowing code:
// Allocate memory ourself
char* pMemory = new char[ ...
10
votes
4answers
5k views
CUDA: Wrapping device memory allocation in C++
I'm starting to use CUDA at the moment and have to admit that I'm a bit disappointed with the C API. I understand the reasons for choosing C but had the language been based on C++ instead, several ...
9
votes
4answers
199 views
Is this hack to remove aliasing warning UB?
We just upgraded our compiler to gcc 4.6 and now we get some of these warnings. At the moment our codebase is not in a state to be compiled with c++0x and anyway, we don't want to run this in prod (at ...
9
votes
6answers
363 views
placement new to defer to a different constructor
Is this safe? I'm not using any virtual functions in my actual implementation, but I'm tempted to believe that even if I was, it would still be safe.
class Foo
{
Foo()
{
// ...
9
votes
13answers
2k views
What are uses of the C++ construct “placement new”?
I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this:
#include <new> // Must ...
8
votes
2answers
223 views
Why is this code trying to call the copy constructor?
I just spent an inordinate amount of time fiddling with a complilation error in Visual Studio. I have distilled the code into the small compilable example below and tried it on IdeOne and got the same ...
8
votes
2answers
83 views
Does casting a pointer to “void*” have any effect when placement new is called?
I'm reviewing code of a custom container and some portions of it create elements like this:
::new( (void*)&buffer[index] ) CStoredType( other );
and some do like this:
::new( ...
8
votes
2answers
197 views
What's wrong with this use of placement new[]? do
Consider the program below. It has been simplified from a complex case. It fails on deleting the previous allocated memory, unless I remove the virtual destructor in the Obj class. I don't understand ...
8
votes
2answers
254 views
Is `new (this) MyClass();` undefined behaviour after directly calling the destructor?
In this question of mine, @DeadMG says that reinitializing a class through the this pointer is undefined behaviour. Is there any mentioning thereof in the standard somewhere?
Example:
#include ...
7
votes
3answers
126 views
Is it well-defined/legal to placement-new multiple times at the same address?
(Note: this question was motivated by trying to come up with preprocessor hackery to generate a no-op allocation to answer this other question:
C++ Macro that accent new object
...so bear that in ...
6
votes
4answers
128 views
Placement new breaks consts and references?
Following the discussion on my answer to this question, apparently:
the following code is allowed
struct Foo {
int x;
};
Foo f;
Foo & f_ref = f;
(&f) -> ~Foo ();
new (&f) Foo ...
6
votes
4answers
135 views
How to delete object constructed via placement new operator?
char * buf = new char[sizeof(T)];
new (buf) T;
T * t = (T *)buf;
//code...
//here I should destruct *t but as it is argument of template and can be
//instantiated via basic types as well (say int) so ...
6
votes
4answers
293 views
Legality of using operator delete on a pointer obtained from placement new
I'm dang certain that this code ought to be illegal, as it clearly won't work, but it seems to be allowed by the C++0x FCD.
class X { /* ... */};
void* raw = malloc(sizeof (X));
X* p = new (raw) X(); ...
5
votes
2answers
233 views
Unusual use of new in historical code. What does it mean?
I am just porting some old code:
#define NewArrayOnHeap(TYPE, COUNT, HEAP, NEWPTR, ERROR) \
((*(NEWPTR) = new ( #TYPE "[" #COUNT "]", __alignof(TYPE), (HEAP), &hr, (ERROR)) TYPE[COUNT] ), hr)
...
5
votes
4answers
353 views
Placement-new vs gcc 4.4.3 strict-aliasing rules
I've got some code that I've been using successfully for some years to implement a "variant-type object"; that is, a C++ object that can hold a values of various types, but only uses (approximately) ...
4
votes
5answers
135 views
Can a call delete on the pointer which is allocated with the placement new?
Can we call delete on the pointer which is allocated with the placement new? If no then why? Please explain in detail.
EDIT1:
I know that there is no placement delete. But I wonder why just delete ...
4
votes
2answers
326 views
STL Containers allocation placement new
I couldn't find an exact answer to this question and hence posting here.
When I think of vector, it needs to build objects in a contiguous memory location. This means that vector keeps memory ...
3
votes
1answer
116 views
C++ - overload operator new and provide additional arguments
I know you can overload the operator new. When you do, you method gets sent a size_t parameter by default. However, is it possible to send the size_t parameter - as well as additional user-provided ...
3
votes
4answers
357 views
char array as storage for placement new
Is the following legal C++ with well-defined behaviour?
class my_class { ... };
int main()
{
char storage[sizeof(my_class)];
new ((void *)storage) my_class();
}
Or is this problematic ...
3
votes
2answers
746 views
placement new + array +alignment
SomeObj<unsigned int>* Buffer;
char* BufferPtr = MemoryManager::giveMeSomeBytes(resX*resY*sizeof(SomeObj<unsigned int>));
Buffer = new(BufferPtr) SomeObj<unsigned int>[resX*resY];
...
3
votes
1answer
566 views
Placement new and non-default constructors
Can I call the C++ placement new on constructors with parameters? I am implementing a custom allocator and want to avoid having to move functionality from non-default constructors into an init ...
3
votes
7answers
502 views
Struct instantiation from void pointer buffer
Here's some C++ code that just looks funny to me, but I know it works.
There is a struct defined, and in the program we allocate memory using a void pointer. Then the struct is created using the ...
3
votes
11answers
356 views
How do I allocate variably-sized structures contiguously in memory?
I'm using C++, and I have the following structures:
struct ArrayOfThese {
int a;
int b;
};
struct DataPoint {
int a;
int b;
int c;
};
In memory, I want to have 1 or more ArrayOfThese ...
3
votes
1answer
522 views
POD class initialized with placement new default initialized?
If I initialize a POD class with placement new, can I assume that the memory will be default initialized (to zeros)? This resource clearly states that if you call the zero argument default constructor ...
2
votes
2answers
104 views
delete this and placement new of virtually derived class
class base {
int a;
protected:
template<class T>
class derived;
public:
base() {}
virtual ~base() {}
virtual void func() {}
static base* maker();
};
template ...
2
votes
2answers
317 views
placement new VS explicit constructor call in C++
recently I have come across these two ways of creating an object in a specific place in memory:
1.
void* mem = malloc(sizeof(T));
T* obj = new(mem) T();
2.
T* obj = (T*)malloc(sizeof(T));
*obj ...
2
votes
1answer
142 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
247 views
Boost shared_ptr with overloaded placement new/delete
I am using boost shared_ptr with my own memory manager like this (stripped down example, I hope there are no errors in it):
class MemoryManager
{
public:
/** Allocate some memory.*/
inline ...
2
votes
6answers
1k views
What is an in-place constructor in C++? [closed]
Possible Duplicate:
C++'s “placement new”
What is an in-place constructor in C++?
e.g. Datatype *x = new(y) Datatype();
2
votes
2answers
407 views
How does operator overloading (especially 'new') arity work?
I've never quite understood how the argument lists for operator overloading are determined in a systematic way, and I'm particularly confused by a problem I have now.
When you overload a unary ...
2
votes
2answers
365 views
Magic in placement new?
I'm playing with dynamic memory allocation "by hand" and I wanted to see how placement new is implemented by guys from MS but when debugging I "stepped into" it moved me to code:
inline void ...
2
votes
5answers
225 views
Are these placement new macros correct?
I made a couple macros to make using placement new a bit easier. I was just wondering if there were any obvious cases where these would not work. Thanks.
#define ...
1
vote
2answers
89 views
Is it recommendable to use placement new when constructing an POD-object from a dynamically created array?
Given any POD type, is it recommendable to do something like that:
any_pod* p = new any_pod[n];
for (std::size_t i = 0; i < n; ++i)
new (&p[i].member) other_pod(whatever);
1
vote
3answers
174 views
what is placement new operator in C++ and does java has it?
I heard about placement new operator of C++. I am confused what it is. However, I can see where it can be used under a question in stackoverflow. I am also confused whether we have this in java or ...
1
vote
2answers
151 views
Can I use placement new(this) in operator=?
Background:
I have a complicated class with many variables. I have a sound and tested copy constructor:
Applepie::Applepie( const Applepie ©) :
m_crust(copy.m_crust),
...
1
vote
2answers
156 views
Using placement new in a Vector Container
If I have a container:
std::vector<T*> elements;
can I use placement new to allocate my objects so that the objects are all allocated contiguously? So that I can do something like this:
...
1
vote
3answers
102 views
Placement new strange behaviours
[EDIT: Look, do not ask me what I'm trying to do, this code is just a quick test and its only target is to see if there is something wrong with placement new.]
Sup stackoverflowers,
I've found an ...
1
vote
1answer
131 views
Ideas on how to store Key-Value pairs in a dynamic array based structure
I have a dynamic array that has the following properties:
Stores Key-Value pair structures.
Re-allocates memory whenever an entry is added (realloc). Invoke constructor.
Deletion is tricky - The ...
1
vote
4answers
690 views
Safe placement new & explicit destructor call
This is an example of my codes:
template <typename T> struct MyStruct {
T object;
}
template <typename T> class MyClass {
MyStruct<T>* structPool;
size_t structCount;
...
1
vote
4answers
554 views
operator new for array of class without default constructor
For a class without default constructor, operator new and placement new can be used to declare an array of such class.
When I read the code in More Effective C++, I found the code as below(I ...
1
vote
2answers
206 views
How to reset a class using placment delete/new from a template?
I have a pool manager template class. When a class object gets added back to the pool manager I would like to reset it back to it's initial state. I would like to call the placment destructor and ...
1
vote
3answers
579 views
Variable sized class - C++
I've seen a class which is a class which is defined like this..
class StringChild : public StringBase
{
public:
//some non-virtual functions
static StringChild* CreateMe(int size);
...
0
votes
3answers
74 views
How does the compiler knows that a second destructor has to be called, for an object contructed twice, at the same address?
In the code that follows, the object sub in class C is constructed twice. The first construction calls the default ctor Sub() and the second construction uses placement new to reconstruct this object ...