I'm reviewing someone else's C++ code for our project that uses MPI on high-performance computing (10^5 - 10^6 cores). The code is intended to allow for communications between potentially different machines on different architectures. He's written a comment that says something along the lines of:
We'd normally use
newanddelete, but here I'm usingmallocandfree. This is necessary because some compilers will pad the data differently whennewis used, leading to errors in transferring data between different platforms. This doesn't happen withmalloc.
This does not fit in with anything I know from the standard new vs malloc debate. What is the difference between new/delete and malloc/free? hints at the idea that the compiler could calculate the size of an object differently (but then what is sizeof doing differently?).
malloc & placement new vs. new is a fairly popular question but only talks about new using constructors where malloc doesn't, which isn't relevant to me.
And how does malloc understand alignment? says that memory is guaranteed to be properly aligned with either new or malloc which is what I'd previously thought.
My guess is that he's misdiagnosed his own bug some time in the past and deduced that new and malloc give different amounts of padding, which I think probably isn't true. But I can't find the answer with Google or in any previous question.
Help me, StackOverflow, you're my only hope!
mallocandnew, asnewin some environments allocate a block, adds some data to the beginning and return a pointer to a location right after this data. (I agree with the others, inside the data block,mallocandnewmust use the same kind of padding.) – Lindydancer Nov 8 '12 at 11:04