Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question

4 Answers

up vote 11 down vote accepted

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:

  1. Begin with size 0.
  2. For each element, round size up to the next multiple of the alignment for that element, then add the size of that element.
  3. Finally, round size up to the least common multiple of the alignments of all members.

Here's an example (assume int is 4 bytes and has 4 byte alignment):

struct foo {
    char a;
    int b;
    char c;
};
  1. Size is initially 0.
  2. Round to alignment of char (1); size is still 0.
  3. Add size of char (1); size is now 1.
  4. Round to alignment of int (4); size is now 4.
  5. Add size of int (4); size is now 8.
  6. Round to alignment of char (1); size is still 8.
  7. Add size of char (1); size is now 9.
  8. Round to lcm(1,4) (4); size is now 12.

Edit: To address why the last step is necessary, suppose instead the size were just 9, not 12. Now declare struct foo myfoo[2]; and consider &myfoo[1].b, which is 13 bytes past the beginning of myfoo and 9 bytes past &myfoo[0].b. This means it's impossible for both myfoo[0].b and myfoo[1].b to be aligned to their required alignment (4).

share|improve this answer
I have two question : 1. isn't the alignment the same for each element? 2. I can't possibly imagine the reason for the 3rd process at all.. – R__ Aug 6 '11 at 0:42
@R___: (BTW, You might want to change your name :) ) It's up to the compiler. – 0A0D Aug 6 '11 at 0:44
Note that an empty struct, as an exception to this procedure, has size of at least 1 – bdonlan Aug 6 '11 at 0:46
@R__: 1. Each type can have its own alignment requirements. In practice, the alignment requirement is almost always the same as the type for basic types. This is implementation-defined. 2. The third process is essential because you can have arrays of structures. If not for it, the second element of an array would be misaligned and thus unusable. – R.. Aug 6 '11 at 0:48
@bdonlan: The C language does not have empty structs. They are explicitly illegal. – R.. Aug 6 '11 at 0:48
show 18 more comments

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:

char         // 1
char
char
char
short int    // 2
short int
int          // 4

This will have a total size of 12. However, this next one will cause padding:

char   // 1, + 1 bytes padding
short  // 2
int    // 4
char   // 1, + 1 byte padding
short  // 2
char   // 1
char   // 1, + 2 bytes 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.

share|improve this answer
A struct that only contains elements of type char won't have any alignment requirements (it could if an implementation chose to impose useless alignment, but that would be a silly implementation). – R.. Aug 6 '11 at 1:18

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 struct:

struct MyStruct {
     int abc;
     int def;
     char temp;
};

Yields a size of 9 on my compiler. 4 bytes for int and 1 byte for a char.

share|improve this answer
1  
What compiler are you using? On any real-world compiler this will have a size of 12. – R.. Aug 6 '11 at 0:40
@R: My old crappy Borland C++ Builder. That's why I said it is up to the compiler :) – 0A0D Aug 6 '11 at 0:42
The only way size could be 9 is if the implementation has no alignment requirements at all for int. What is the size of struct { char abc; int def; }; ? – R.. Aug 6 '11 at 0:45
@R: 5 bytes. And yes, you are correct it seems. It has always been this way on this compiler. No padding and no alignment. If you change that char to short, the size is (2 bytes + 4 bytes) = 6 bytes. – 0A0D Aug 6 '11 at 0:46
In that case, it matches my answer. :) – R.. Aug 6 '11 at 0:50

There is good article on data alignment on Wikipedia

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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