struct {
integer a;
struct c b;
...
}
In general how does gcc calculate the required space? Is there anyone here who has ever peeked into the internals?
|
|
|
I have not "peeked at the internals", but it's pretty clear, and any sane compiler will do it exactly the same way. The process goes like:
Here's an example (assume
Edit: To address why the last step is necessary, suppose instead the size were just 9, not 12. Now declare |
|||||||||||
|
|
There's not truely standardized way of aligning a struct, but the rule of thumb goes like this: The entire struct is aligned at a 4 or 8 byte boundary (depending on the platform). Within the struct, each member is aligned by its size. So the following packs with no padding:
This will have a total size of 12. However, this next one will cause padding:
Now the structure takes up 16 bytes. This is just a typical example, the details will depend on your platform. Sometimes you can tell a compiler to never add any padding -- this cause more expensive memory access (possibly introducing concurrency problems) but will save space. To lay out aggregates as efficiently as possible, order the members by size, starting with the biggest. |
|||
|
|
The size of a structure is implementation defined, but it is hard to say what the size of your structure will be without more information (it is incomplete). For instance, given this
Yields a size of 9 on my compiler. 4 bytes for |
|||||||||||||
|