I'm developing for the AVR platform and I have a question. I don't want the floating point library to be linked with my code, but I like the conception of having analog values of the range 0.0 ... 1.0 instead of 0...255 and 0...1023, depending even on whether I'm using a port as an input or as an output.
So I decided to multiply the input/output functions' arguments by 1023.0 and 255.0, respecively. Now, my question is: if I implement the division like this:
#define analog_out(port, bit) _analog_out(port, ((uint8_t)((bit) * 255.0)))
will GCC (with the -O3 flag turned on) optimize the compile-time floating point multiplications, known at compile time and casted to an integral type, into integer operations? (I know that when using these macros with non-constant arguments, the optimization is not possible; I just want to know if it will be done the other case.)
analog_out(7, 0.5)becomes a write of0.5*255to port 7, rather than a write of 0 chopped from 1/510)... – Borealid Feb 12 '12 at 7:11gcc -Swill produce an assembly dump. You probably want-O2 -ffast-mathfor this, not-O3(-O3turns on optimizations that are almost always a net lose, like over-aggressive inlining; it's meant to be used on the one file in which your program spends 90% of its time). – Zack Feb 12 '12 at 7:24