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, please do inform me.
|
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, please do inform me.
| |||||
feedback
|
|
You can use You may want to read "Poke-a-hole and friends" and the pahole announcement for more information | ||||
|
feedback
|
|
You could explore this question by writing probe code for a particular | |||
|
feedback
|
|
One way of finding such holes without analyzing the source code and without adding checks to it (using offsetof() and the like) would be to extract the symbol/debug information from the object/executable/symbol files with some tool and look at the defined structures and members in them, their offsets and sizes and see if everything adds up. Unions will complicate things, though. | |||||
feedback
|
|
You can detect such "holes" via the
If this prints more than Obviously this happens at runtime, not at compile-time, but you can write a script that produces a similar source file, compiles and runs it before the rest of your project, and then, based on the output you do further decisions on how to build your project. I don't think any compiler provides a facility to notify you about that. | |||||||
feedback
|
|
I Don't know any automatic tool, but this could be helpful example:
*Note: you will have to do so for each two members in your stuck. | |||
|
feedback
|