Why is this structure giving size as 24? - c

My code below prints 24 but size should be :
1+ 7 (pad) + 8 + 4 =20 ?
`
typedef struct data3
{
char cval;
double dval;
int val;
} structc_t;
//somewhere
printf("%d",sizeof(data3));

1 + 7 (pad) + 8 + 4 + 4 (pad) = 24. You are forgetting tail padding, which is there to make sure struct data3 elements are aligned properly in an array. Your entire struct has to be aligned on 8-byte boundary, which means that its size should be divisible by 8.
C language guarantees the following relationship for arrays
sizeof(T[N]) == sizeof(T) * N
This immediately means that arrays cannot add their own padding between elements. If any inter-element padding is needed to properly align elements in an array, that padding shall be included into the individual array element. No way around it.
For this reason sizeof(struct data3) will include array-specific padding even if you never use struct data3 in an array. This is what you see as tail padding in your struct.
(A globally-optimizing compiler can probably optimize it out, if you never use your struct data3 in an array. But it is generally not worth it.)

Not only each member of the struct has to be data aligned, but the struct itself has to aligned to the size of the largest member in the struct. So, padding is added to struct data3 such that its size should be a multiple of the larger of the sizes of char, double and int.
Have a look at what the C FAQ says about alignment

It is because, along with structure members, structure type variables will also have natural alignment.
Lets say if you allocate a array of this strcuture data3 array[2]
then see with your logic the double will be at 20 + 1 + 7 =28
And thus not at multiple of 8. Thus compiler will add 4 bytes (another padding ) to avoid this.
Multiple of 8 as double requires 8 bytes and thus to read it in one cycle it is needed on a 8 byte boundary.

Related

When do structures not have padding? [duplicate]

This question already has answers here:
Size of struct containing double field
(5 answers)
Why padding are added, if char comes after int?
(4 answers)
Closed 4 years ago.
sizeof(x) returns 2 for the structure below
struct s {
short c;
} x;
but for the structure
struct s {
short c;
char a;
} x;
sizeof(x) returns 4, Why?
The second one gets one padding byte (assuming short is 2 bytes long and char 1 byte long). Shouldn't the first structure have 2 padding bytes then (and thus be 4 bytes long)?
The predominant use of padding is to align structure members as required by the hardware (or other aspects of the C implementation). An algorithm for laying out data in a struct is in this answer.
To answer the question in your title, when do structures not have padding: A structure does not require padding for alignment if each member’s alignment requirement is a divisor of the total size of all preceding members and of the total size of all members. (A C implementation may still add padding for reasons other than alignment, but that is a bit unusual.)
For your examples, let’s suppose, in a C implementation, short is two bytes in size and requires two-byte alignment. By definition, char is one byte and requires one-byte alignment.
Then, in struct s {short c;}:
c is put at the beginning of the struct. There is never any padding at the beginning.
If we make an array of these struct, the next struct s will begin two bytes beyond the first, and its member c will still be at a multiple of two bytes, so it is aligned correctly.
Therefore, we do not need any padding to make this work.
In contrast, in struct s {short c; char a;}:
c is put at the beginning.
a is put two bytes after c. This is fine, since a only requires one-byte alignment.
If we do not add any padding, the size of the struct is three bytes. Then, if we make an array of these struct, the next struct s will begin three bytes from the start.
In that second struct s, the c member will be at an offset of three bytes. That violates the alignment requirement for short.
Therefore, to make this struct work, we must add one byte of padding. This makes the total size four bytes. Then, in an array of these struct, all the members will be at boundaries required by their alignment.
Even if you declare just a single object of a structure, as in struct s {short c; char a;} x;, a structure is always laid out so it can be used in an array.
The first structure has one element of size 2 (assuming short has size 2 on your system). It is as good as directly having an array of short directly.
The second structure is a special thing: access to short variables is best done on even addresses. If we hadn't padding, we had the following:
struct s arr[5]; // an array
void * a = arr; // needed to reference it
Then,
arr[0].c is at a.
arr[0].a is at a + 2 bytes.
arr[1].c is at a + 3 bytes (!).
arr[1].a is at a + 5 bytes (!).
As it is preferrable to have arr[1].c at an even address, we add padding. Then,
arr[1].c is at a + 4 bytes.
arr[1].a is at a + 6 bytes.

Understanding Structure Padding in C

I understand by data alignment concept that int's and floats's should be stored at address which is divisible by 4 (the starting byte address) .According to it, the size of the below structure is 12
typedef struct{
char A;
int B;
float C;
}y;
I have no doubt in understanding the size of above structure
Now my doubt is about the size of below structure
typedef struct {
double A;
char B;
char C;
}x;
the size of x is 16. what my doubt is that the two characters used can be allocated in 2 bytes such that a whole structure uses 10 bytes of data
and the remaining 2 bytes can be used to allocate to another short int when it was declared right?
But the compiler uses 16 bytes of data and pads the other 6 cells. I can't understand why it is wasting another 6 cells if it can use them for another variables when they are declared?. Can anyone please help me in understanding the above concept?.(I am assuming the size of int ,float and double as 4,4,8 bytes respectively. )
In the case of x, it contains a double which (in your case) has size 8. That means that the structure as a whole needs to be a multiple of that size in order for an array of x to be properly aligned.
Since arrays are contiguously allocated, each member of the array comes immediately after the prior one in memory. If x had size 10, then for an array the second element would have the A member at offset 10. For proper alignment, each array member needs to start at a multiple of the size of the largest element. So the structure contains padding at the end to accomplish this.

Size of the structure assuming that padding is enabled

Assume that i have a structure which is defined as shown below:
typedef struct
{
char a;
int b;
char c;
}abc_t;
Now as per the rules of padding, character variable could start at any address since it has only a single byte while intger variable should start at an address which is divisible by 4 while short variable should start at any even address.
in that case if we assume that character variable starts at OFFSET 0.
struct
{
char a; // OFFSET 0+3 bytes padding
int b; // OFFSET 4
char c; //OFFSET 5+3 bytes padding
}abc_t;
Here the total size of structure would become 12.
But my doubt is if the first element of a structure which is 'char a' here starts at an offset 1 , then based on the rules of padding, we would have only 2 bytes padded after a and hence the size of structure would be 8 bytes.
struct
{
char a;//OFFSET 1+2 bytes
int b;//OFFSET 4
char c;//OFFSET 8
}abc_t;
Same would be the case of any structure variable which would start with short variables.
Can you please tell me if my understanding regarding this is correct or can we safely assume that first member of any structure would always start at an address which is divisible by 4?
Thanks a lot in advance.
There are a few issues here:
1) Size of int is not necessary 4 bytes, its sizeof(int) which is compiler defined. Can be 4 bytes, 8 bytes or even 2 bytes depending on word length. See Is the size of C "int" 2 bytes or 4 bytes?.
2) Field alignment in a struct is up to the compiler. The order in which you put the fields doesn't guarantee tighter packing. The order of fields is preserved, however. See Why isn't sizeof for a struct equal to the sum of sizeof of each member?.
3) Putting shorter structs together would USUALLY cause tighter packing.
4) Structs begin at word boundaries. There is never any padding before the first field. So yes, the address would be at the beginning of a word. Why use address of first element of struct, rather than struct itself?.
Hope this helps.

Why should a struct's size reflect its alignment?

According to Wikipedia:
the last member is padded with the number of bytes required so that the total size of the structure should be a multiple of the largest alignment of any structure member
In my understanding, it means that in the following:
struct A {
char *p; // 8 bytes
char c; // 1 byte
};
struct B {
struct A a; // 16 bytes
char d; // 1 bytes
};
Struct A will have a size of 16 bytes, and struct B will have a size of 24 bytes.
The common explanation is that arrays of A should have their elements accessible at the address of the array plus the index times the size of A.
But I fail to see why that is the case. Why could we not say A has size 9 and B has size 10 (both with 8 bytes alignment), and use a special "array-storage" size when indexing into an array?
Of course, we'd still store those types in arrays in a way compatible with their alignment (using 16 bytes to store each B element). Then, we'd simply compute element addresses by taking into account their alignment, instead of considering their size alone (the compiler can do that statically).
For example, we could store 64 objects in a 1Kb bytes array of B's, instead of only 42.
In each translation unit of C, sizeof(T) is the same, regardless of the context of T. Your proposal would introduce at least two values for sizeof(T): one for arrays of T and a different one for individual objects of T. This basically introduces context-dependence into the sizeof operator. It is incompatible with how C handles pointers, arrays, and addresses of objects.
Consider the following:
void zero_A(struct A *a) { memset(a,0,sizeof(*a)); }
/* ... */
struct A single;
struct A several[3];
struct B b;
b.d = 3;
zero_A(&b.a);
zero_A(&single);
zero_A(several+1);
Under your proposal, zero_A would have to know whether the pointer it was passed pointed to struct A in an array context (where sizeof(*a) == 16) or struct A outside of an array context (where sizeof(*a) == 9). Standard C doesn't support this. If the compiler guessed wrong, or the information was lost (eg: in a round-trip through a volatile struct A *), then zero_A(&single) would invoke undefined behavior (by writing past the bounds of single), and zero_A(&b.a) would overwrite b.d and also invoke undefined behavior.
Tightly packing structs into an array is a relatively uncommon requirement, and adding context-dependence to sizeof would introduce a lot of complications to the language, its libraries, and ABIs. There are times you need to do this, and C gives you the tools you need: memcpy and unions.

Why padding are added, if char comes after int?

For example, there is a structure
struct A
{
char a;
int i;
};
In this case, we have a[1 byte] + padding[3 byte] + int[4 byte] = 8.
Now let's make little update into struct above,
struct A
{
int i;
char a;
};
In this case char comes after int and no need to add padding bytes, it means sizeof(A) = 5 byte, but in this case I also get the 8 byte result. Why ?
Ok, and what about this case
struct s
{
int b;
double c;
char a;
};
According logic given below, there is a: size = b[4 bytes] + padding[4 bytes] + c[8] + a[1] + padding[7 bytes to align with double] = 24,
but after execution I get 16. How this is possible ?
In this case char comes after int and no need to add padding bytes, it means sizeof(A) = 5 byte, but in this case I also get the 8 byte result. Why ?
First you need to understand why padding is needed?
Wiki says that:
Data structure alignment is the way data is arranged and accessed in computer memory. It consists of two separate but related issues: data alignment and data structure padding. When a modern computer reads from or writes to a memory address, it will do this in word sized chunks (e.g. 4 byte chunks on a 32-bit system) or larger. Data alignment means putting the data at a memory offset equal to some multiple of the word size, which increases the system's performance due to the way the CPU handles memory. To align the data, it may be necessary to insert some meaningless bytes between the end of the last data structure and the start of the next, which is data structure padding.
To make the size multiple of 4 (alignment of int) , the second snippet will be padded with 3 bytes. After compilation the second snippet will be padded for proper alignment as
struct A
{
int i;
char a;
char Padding[3]; // 3 bytes to make total size of the structure 8 bytes
};
EDIT: Always remember these two golden rules of structure padding:
Padding is only inserted when a structure member is followed by a member with a larger alignment requirement or at the end of the structure.
The last member is padded with the number of bytes required so that the total size of the structure should be a multiple of the largest alignment of any structure member.
In case of
struct s
{
int b;
double c;
char a;
};
alignment will take place as
struct s
{
int b; // 4 bytes. b is followed by a member with larger alignment.
char Padding1[4]; // 4 bytes of padding is needed
double c; // 8 bytes
char d; // 1 byte. Last member of struct.
char Padding2[7]; // 7 bytes to make total size of the structure 24 bytes
};
Also note that by changing the ordering of members in a structure, it is possible to change the amount of padding required to maintain alignment. This can be done by if members are sorted by descending alignment requirements.
struct s
{
double c; // 8 bytes
int b; // 4 bytes
char a; // 1 byte. Only last member will be padded to give structure of size 16
};
The reason the compiler have to add padding at the end of your struct is that the struct can be part of an array, and each element of an array must be properly aligned.
It seems your platform wants an int to be aligned to 4 bytes.
If you declare an array of your struct A:
struct A array[2];
Then the first int member of array[1] should also have an alignment of 4 bytes. So the compiler pads your struct A to be 8 bytes to accomplish that, whilst if it didn't add any padding and sizeof(struct A) were 5 bytes, array[1] would not be properly aligned.
(Keep in mind that a compiler can't insert padding inbetween array elements, padding have to be part of the array elements themselves since sizeof array must be the same as sizeof(struct A) * 2 in the above case)
Not only each member of the struct has to be data aligned, but the struct itself has to aligned to the size of the largest member in the struct. So, padding is added to struct A such that its size should be a multiple of the larger of sizeof i and sizeof a.
Have a look at C FAQ here
If one is going to have an array of structures, all elements within the array must have the same size and alignment; this would imply that for things in an array the size must be a multiple of alignment. The only time it would be useful to have a structure whose size was not a multiple of alignment would be if it was not incorporated directly into another array, but was instead used as part of another structure. That kind of situation does occur sometimes, but not sufficiently often as to merit special attention in the language design.

Resources