I'm trying to write a size function like this:
size(void *p,int size);
Which would return the size of an array which is pointed to by p. For example:
Int *a = malloc((sizeof(int)*100));
size(a,sizeof(int)); // this should return 100
I think this is possible because if I recall, malloc keeps track of the space allocated in some header bytes.
Here's what I have so far:
int size(void *p, int size)
{
p = (unsigned int *)p - 1;
unsigned int elements = (*(unsigned int *)p);
return elements/size;
}
Now, assuming that the size of the space allocated is in the 4 bytes before the pointer, this should return the bytes, or offset. This is where I'm a bit in the dark. I can't figure out the specifics of how malloc formats these header bytes. How does malloc pack the header bits?
Thanks, I appreciate this. I'm sure there are things wrong with this code and it's not particularly portable and may be very system dependent, but I'm doing it for fun.
malloc. Another system may use a differentmallocand attempting to de-reference the pointer after moving it backwards past the end of the array might cause a memory access violation and crash your app. A more reliable way is to record the size of the memory region when you callmalloc, and refer to that value instead of trying to dissectmalloc's metadata. – bta Oct 7 '10 at 23:20mallocis restricted to allocating power-of-two-sized blocks. Suppose that you have a dynamically-sized array of 12-byte objects, and request an initial capacity of 100. If you do things by the C standard, you have toreallocwhen your array grows to 100 elements. If you could get the actual size of the block, you could let your array grow to 170 elements before reallocating. So there's an efficiency advantage to being able to get the size of the block. – dan04 Oct 8 '10 at 2:50reallocwill immediately see that the allocated size is already sufficient for the newly requested size, and return right away without doing anything. – R.. Oct 8 '10 at 5:01