I have a lot of constant arrays defined in several functions. Something like the following:
const float values[4] = {-4312.435f, -432.44333f, 4.798, 7898.89};
After inspecting gcc assembler output I noticed that these constants are generated on each run of the functions. That's quite inefficient. I suspect that this is because C/C++ spec says that even if data is const, the compiler can't assume it won't be modified (e.g. through const_cast). Is it possible to force gcc think otherwise?
I want to keep these constants defined inside the bodies of the functions, because they are quite complex. Keeping constants near where they're used helps with the maintainability a lot.
EDIT
Unfortunatelly, even when the constants are defined static, they are regenerated on the each run. I use -O3 if that helps.
EDIT2
Ok, sorry regarding the first edit, I need to investigate further. It seems that particular setup previously somehow didn't allow gcc to initialize the constants without regenerating them.
EDIT3
The problem was in my testcase, where I defined two arrays nearby, but one of them was intended to be generated. The assembler then misled me. Sorry again & thanks!
staticspecifier places constants outside stack. But surprisingly, gcc still regenerates them on each run of the function. – jons34yp Feb 16 '11 at 19:59staticcauses the compiler to create the array only once, rather than recreating it each time it is used. – Mac Feb 16 '11 at 20:01