in C, what exactly are the performance benefits that come with observing strict aliasing?
Basically the compile can optimize more aggressively with strict aliasing... see this article for more detail: http://www.cellperformance.com/mike_acton/2006/06/understanding_strict_aliasing.html
There is a page that describes aliasing very thoroughly here.
There are also some SO topics here and here.
To summarize, the compiler cannot assume the value of data when two pointers of different types are accessing the same location (i.e. it must read the value every time and therefore cannot make optimizations).
This only occurs when strict aliasing is not being enforced. Strict aliasing options:
- gcc: -fstrict-aliasing [default] and -fno-strict-aliasing
- msvc: Strict aliasing is off by default. (If somebody knows how to turn it on, please say so.)
Example
Copy-paste this code into main.c:
void f(unsigned u)
{
unsigned short* const bad = (unsigned short*)&u;
}
int main(void)
{
f(5);
return 0;
}
Then compile the code with these options:
gcc main.c -Wall -O2
And you will get:
main.c:3: warning: dereferencing type-punned pointer will break strict-aliasing rules
Disable aliasing with:
gcc main.c -fno-strict-aliasing -Wall -O2
And the warning goes away. (Or just take out -Wall but...don't compile without it)
Try as I might I could not get MSVC to give me a warning.