Tagged Questions
7
votes
5answers
168 views
Find holes in C structs due to alignment
Is there a way in gcc or clang (or any other compiler) to spit information about whether a struct has holes (memory alignment - wise) in it ?
Thank you.
ps: If there is another way to do it, ...
4
votes
3answers
377 views
Why does a struct consisting of a char, short, and char (in that order), when compiled in C++ with 4-byte packing enabled, come to a 6-byte struct?
I thought I understood how C/C++ handled struct member alignment. But I'm getting strange results for a particular arrangement in Visual Studio 2008 and 2010.
Specifically, I'm finding that a struct ...
3
votes
2answers
606 views
Casting a byte array to a struct pointer depends on endianness or memory alignment?
Suppose this code:
unsigned char list[3] = { 1, 2, 3 };
struct _struct{
unsigned char a;
unsigned char b;
unsigned char c;
} *s;
s = ( _struct * ) list;
Can I assume that always s->a == 1, ...
3
votes
3answers
2k views
Struct members alignment in Visual C++ 2008
Visual C++ let's you select the struct members alignemnt in the project's properties page. Problem is, this configuration is being used for all srtructs in the project.
Is there any way (VC++ ...
2
votes
2answers
114 views
memory alignment 64bits
I've been playing with C today, and something I never had the chance to play with, that is use a struct with pointers to functions...well all went good, until I started to get some strange bug, when I ...
1
vote
2answers
55 views
Forcing alignment of C bitfield using a union
I was wondering if it is possible to force the alignment of bitfield in C. Using the variables in the code below I know that writing to _align_bytes then reading from bits is undefined (and ...
1
vote
3answers
94 views
padding at last member of c struct
I always assume, as they said here http://en.wikipedia.org/wiki/Data_structure_alignment, "It is important to note that the last member is padded with the number of bytes required so that the total ...
1
vote
4answers
150 views
Memory allocated for structures
I have the structure
typedef struct EData
{
int a;
char c;
}
Edata obj;
a is the integer variable so it takes 4 bytes and the c is the char variable so it takes
1 byte, totalling 5 bytes
...