Is the fastcall calling convention really faster than other calling conventions, such as cdecl? Are there any benchmarks out there that show how performance is affected by calling convention?
|
|
It depends on the platform. For a Xenon PowerPC, for example, it can be an order of magnitude difference due to a load-hit-store issue with passing data on the stack. I empirically timed the overhead of a For an out-of-order x86 (Intel and AMD), the impact may be much less, because the registers are all shadowed and renamed anyway. The answer really is that you need to benchmark it yourself on the particular platform you care about. |
|||
|
|
I believe that Microsofts implementation of Since it typically saves at least four memory accesses, yes it is generally faster. However, if the function involved is register-starved and is thus likely to write them to locals on the stack anyway, there's not likely to be a significant increase. |
|||
|
|
|
Calling convention (at least on x86) doesn't really make much of a difference in speed. In Windows, However, we can spout theoretical ideas all day long -- benchmark your code for the right answer. |
||||
|
|
|
On modern x86 - no. Between L1 cache and in-lining there's no place for fastcall. |
|||||||||||||
|