I haven't been able to find explicit benchmarks comparing FPU vs. IQMath, except for this article.
1. For a given clock speed, is FPU MIPS >= IQMath MIPS in all cases? (I'm particularly looking at the TMS320F28335 for my current project.)
So you would always use the FPU if available because it's probably faster and certainly easier to program?
2.A. I see that you should use the FPU Run-Time Support (RTS) library to call optimized functions like sincos and atan rather than use the regular function calls. But does the FPU also speedup addition and multipication of floating point numbers?
B.Is that handled automatically by the compilier and microcontroller? (So if you say "a * b" for two floating-point numbers, it will be handled by the FPU automatically?)