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.

Possible Duplicate:
How does delete[] “know” the size of the operand array?

In the following sample code :

 int* p = new int[10];
 delete[] p;

how does it know how many elements are to be deleted ?
I heard that this info is stored in a kind of header before the start of the table that have been allocated or somewhere else - but in this case, why can't we access this value with a function like size(p) which would return 10 ? Is-there any particular reason for it ? What other informations are stored in these headers ? Is it OS specific? Compiler specific ?

Thanks

share|improve this question
@sharptooth The OP is asking more, though. And it’s an interesting question though I suspect that a real answer will prove elusive. Either case, it’s not a duplicate. – Konrad Rudolph Jul 27 '11 at 15:17
Fun fact: If you define ::operator delete[](void *, size_t), you can actually see the true size of the allocated region. – Kerrek SB Jul 27 '11 at 15:25

marked as duplicate by sharptooth, Praetorian, Alexander Gessler, Bo Persson, Paŭlo Ebermann Jul 27 '11 at 18:36

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

It's totally unspecified, and different implementations do it differently. Typically, the information isn't even available if the type doesn't have a destructor.

Note that there are two different information managed behind the scenes: how much memory has been allocated, and how many elements have destructors which need to be called. If there is no destructor, only the first is necessary, and there's not necessarily a one to one mapping between the first and the number of elements: on a lot of systems, for example, alignment constraints will mean that new char[1] and new char[2] will allocate the same ammount of memory.

share|improve this answer
“the information isn’t … available” – I doubt that. At some level in the memory management the information has to be available, otherwise it could never be freed. – Konrad Rudolph Jul 27 '11 at 15:19
Only the address to the start of the allocated is necessary in userland, as the kernel can maintain a linked list of the memory pages involved, or some such thing. – Jonathan Grynspan Jul 27 '11 at 15:26
@Konrad The information concerning the number of elements in the array is not available. To free the memory, the system needs information concerning how much memory was allocated, not how many elements were in the array. And the relationship between the two is not a bijection. – James Kanze Jul 27 '11 at 16:50
@James That is true, of course. But only if the type isn’t a UDT and the user hasn’t overloaded ::operator delete[]. – Konrad Rudolph Jul 27 '11 at 17:34
@Konrad I'm not sure what you're trying to get at. In order to successfully free memory, the system (or whoever is doing the freeing) needs to know the amount of memory allocated, not the number of elements. And it's not generally possible to determine the number of elements from the amount of memory. And whether the type is UDF or not doesn't change anything that I can see. – James Kanze Jul 27 '11 at 18:52
show 3 more comments

This is an almost duplicate question of this question

The details of how this is implemented will be compiler specific.

As for the last point about why we can't ask for size(p) - well I guess the allocator stores the amount of memory only, not details of the array type. Same as C's sizeof(). It wouldn't return 10 for the example shown, but how many bytes are required to store 10 standard ints on your platform.

Hope this helps.

share|improve this answer

The bookkeeping information kept by the allocator is most definitely compiler and allocator specific. C++ allows you to replace the built in allocator with your own, both globally and per-class. There's no standard API for 'peeking' into this information.

share|improve this answer
The question was, “why?” – Konrad Rudolph Jul 27 '11 at 15:17

Not the answer you're looking for? Browse other questions tagged or ask your own question.