When asking about common undefined behavior in C, souls more enlightened than I referred to the strict aliasing rule.
What are they talking about?
|
5
|
|
|
|
|
|
A situation that you may encounter aliasing would be if, say, you had some API that took a "raw" pointer to data that was of type So if I want to send a message to something:
The strict aliasing rule makes this setup illegal, two unrelated types can't point to the same memory. Only What you actually end up seeing is that because of the "strict aliasing rule" the compiler assumes that there is no relationship between stupidBuffer and msg therefore msg may be seen as not used by the program after creation (an unused variable) and thus will get completely optimized out. So the message we are sending via stupidBuffer to our stupid API just appears as uninitialized data to the receiver. This leads to lots of head scratching and cursing. This gets reported as a compiler bug a lot, but its really due to strict aliasing in C99.
If you're stuck with an API that doesn't care to take
or disable strict aliasing in your compiler (fno-strict-aliasing in gcc -- not sure about other compilers) If a union is needed, here's a templated C++ solution for the above problem you could also consider.
in use:
Just make sure when you alias you learn about endianess |
|||
|
|
|
|
The best explanation I have found is by Mike Acton, Understanding Strict Aliasing. It's focused a little on PS3 development, but that's basically just GCC. From the article: "Strict aliasing is an assumption, made by the C (or C++) compiler, that dereferencing pointers to objects of different types will never refer to the same memory location (i.e. alias each other.)" So basically if you have an int* and a float* they are not allowed to point to the same memory location. If your code does not respect this, then the compiler's optimizer will most likely break your code. The exception to the rule is a char*, which is allowed to point to any type. |
|||
|
|
|
Type punning is a major example of breaking strict aliasing. |
||
|
|
|
|
In particular: avoiding the void pointer. |
||
|
|
|
|
Strict aliasing is not allowing different pointer types to the same data. This article should help you understand the issue in full detail. |
|||
|
|
|
|
I know this isn't a bug but it really ought to be. If the compiler is smart enough to issue a warning it should simply disable strict aliasing on the function that generates the warning. |
||
|
|
