following excerpted from here

pw = (widget *)malloc(sizeof(widget));

allocates raw storage. Indeed, the malloc call allocates storage that's big enough and suitably aligned to hold an object of type widget

also see fast pImpl from herb sutter, he said:

Alignment. Any memory Alignment. Any memory that's allocated dynamically via new or malloc is guaranteed to be properly aligned for objects of any type, but buffers that are not allocated dynamically have no such guarantee

I am curious about this, how does malloc know alignment of the custom type?

link|improve this question

51% accept rate
feedback

4 Answers

up vote 7 down vote accepted

Alignment requirements are recursive: The alignment of any struct is simply the largest alignment of any of its members, and this is understood recursively.

For example, and assuming that each fundamental type's alignment equals its size (this is not always true in general), the struct X { int; char; double; } has the alignment of double, and it will be padded to be a multiple of the size of double (e.g. 4 (int), 1 (char), 3 (padding), 8 (double)). The struct Y { int; X; float; } has the alignment of X, which is the largest and equal to the alignment of double, and Y is laid out accordingly: 4 (int), 4 (padding), 16 (X), 4 (float), 4 (padding).

(All numbers are just examples and could differ on your machine.)

Therefore, by breaking it down to the fundamental types, we only need to know a handful of fundamental alignments, and among those there is a well-known largest. C++ even defines a type maxalign_t (I think) whose alignment is that largest alignment.

All malloc() needs to do is to pick an address that's a multiple of that value.

link|improve this answer
feedback

I think the most relevant part of the Herb Sutter quote is the part I've marked in bold:

Alignment. Any memory Alignment. Any memory that's allocated dynamically via new or malloc is guaranteed to be properly aligned for objects of any type, but buffers that are not allocated dynamically have no such guarantee

It doesn't have to know what type you have in mind, because it's aligning for any type. On any given system, there's a maximum alignment size that's ever necessary or meaningful; for example, a system with four-byte words will likely have a maximum of four-byte alignment.

This is also made clear by the malloc(3) man-page, which says in part:

The malloc() and calloc() functions return a pointer to the allocated memory that is suitably aligned for any kind of variable.

link|improve this answer
1  
what is meaning of any kind of variable? it does't answer my question. does it mean malloc will always use maximum alignment size in any given system, right? – Chang Jan 6 at 2:29
@Chang: effectively, yes. Also note, the quote is wrong. new is only guaranteed to have "any" alignment when allocating char or unsigned char. For others, it may have a smaller alignment. – Mooing Duck Jan 6 at 2:33
@Chang: Right, the maximum alignment size. "Suitably aligned for any kind of variable" means "suitably aligned for an int and suitably aligned for a pointer and suitably aligned for any struct and . . .". – ruakh Jan 6 at 2:35
feedback

The only information that malloc() can use is the size of the request passed to it. In general, it might do something like round up the passed size to the nearest greater (or equal) power of two, and align the memory based on that value. There would likely also be an upper bound on the alignment value, such as 8 bytes.

The above is a hypothetical discussion, and the actual implementation depends on the machine architecture and runtime library that you're using. Maybe your malloc() always returns blocks aligned on 8 bytes and it never has to do anything different.

link|improve this answer
In summary then, malloc uses the 'worst case' alignment because it doesn't know any better. Does that mean that calloc can be smarter because it takes two args, the number of objects and the size of a single object? – Aaron McDaid Jan 6 at 2:15
Maybe. Maybe not. You'd have to look at your runtime library source to find out. – Greg Hewgill Jan 6 at 2:16
-1, sorry. Your answer includes the truth, but it also includes disinformation. It's not a "maybe, maybe not" thing; it's specifically documented to work in a way that doesn't depend on the size. (Dunno why not, though. It seems like it would make perfect sense for it to do so.) – ruakh Jan 6 at 2:18
see ruakh's reply, so malloc will always use maximum alignment size in any given system, right? – Chang Jan 6 at 2:26
feedback

1) Align to the least common multiple of all alignments. e.g. if ints require 4 byte alignment, but pointers require 8, then allocate everything to 8 byte alignment. This causes everything to be aligned.

2) Use the size argument to determine correct alignment. For small sizes you can infer the type, such as malloc(1) (assuming other types sizes are not 1) is always a char. C++ new has the benefit of being type safe and so can always make alignment decisions this way.

link|improve this answer
Can you expand the acronym LCM? I can guess, but I shouldn't have to. – Mooing Duck Jan 6 at 2:34
Also, there are other types in C++ that can be 1 byte. However, your implication is correct, it can still align based of the size of the type. – Mooing Duck Jan 6 at 2:36
feedback

Your Answer

 
or
required, but never shown

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