Compared to
- Simple memory access
- Disk access
- Memory access on another computer(on the same network)
- Disk access on another computer(on the same network)
in C++ on windows.
|
1
|
Compared to
in C++ on windows.
|
|||
|
|
|
|
relative timings (shouldn't be off by more than a factor of 100 ;-)
|
||||
|
|
|
Let's not forget that C++ has virtual calls (significantly more expensive, about x10) and on WIndows you can expect VS to inline calls (0 cost by definition, as there is no call left in the binary) |
||
|
|
|
|
Only memory access is faster than a function call. But the call can be avoided if compiler with inline optimization (for GCC compiler(s) and not only it is activated when using level 3 of optimization (-O3) ). |
||
|
|
|
|
Function call is actually a copy of parameters onto the stack (multiple memory access), register save, the actual code execution, and finally result copy and and registers restore (the registers save/restore depend on the system). So.. speaking relatively:
|
||
|
|
|
|
The cost of a function call depends on the architecture. x86 is considerably slower (a few clocks plus a clock or so per function argument) while 64-bit is much less because most function arguments are passed in registers instead of on the stack. |
||
|
|
|
|
Assuming you mean the overhead of the call itself, rather than what the callee might do, it's definitely far, far quicker than all but the "simple" memory access. It's probably slower than the memory access, but note that since the compiler can do inlining, function call overhead is sometimes zero. Even if not, it's at least possible on some architectures that some calls to code already in the instruction cache could be quicker than accessing main (uncached) memory. It depends how many registers need to be spilled to stack before making the call, and that sort of thing. Consult your compiler and calling convention documentation, although you're unlikely to be able to figure it out faster than disassembling the code emitted. Also note that "simple" memory access sometimes isn't - if the OS has to bring the page in from disk then you've got a long wait on your hands. The same would be true if you jump into code currently paged out on disk. If the underlying question is "when should I optimise my code to minimise the total number of function calls made?", then the answer is "very close to never". |
||
|
|
|
|
Nothing compared to the last three items in your list. I would expect the function call overhead to be on the same order as a memory access, since memory access is involved. It should be fairly simple to write a test program to measure it. Write a program with a loop in main that does something simple like counting to a billion. Then change it so the counter is incremented in a function call. Measure the time difference it takes to run each (average of several runs) and divide by a billion (or whatever you decide to count to). |
||
|
|
|
|
The cost of actually calling the function, but not executing it in full? or the cost of actually executing the function? simply setting up a function call is not a costly operation (update the PC?). but obviously the cost of a function executing in full depends on what the function is doing. |
||
|
|
|
|
Hard to answer because there are a lot of factors involved. First of all, "Simple Memory Access" isn't simple. Since at modern clock speeds, a CPU can add two numbers faster than it get a number from one side of the chip to the other (The speed of light -- It's not just a good idea, it's the LAW) So, is the function being called inside the CPU memory cache? Is the memory access you're comparing it too? Then we have the function call will clear the CPU instruction pipeline, which will affect speed in a non-deterministic way. |
||||||||
|
|
|
If the function is inlined at compile time, the cost of the function becomes equivelant to 0. 0 of course being, what you would have gotten by not having a function call, ie: inlined it yourself. This of course sounds excessively obvious when I write it like that. |
||
|
|
|
|
A function call usually involves merely a couple of memory copies (often into registers, so they should not take up much time) and then a jump operation. This will be slower than a memory access, but faster than any of the other operations mentioned above, because they require communication with other hardware. The same should usually hold true on any OS/language combination. |
||
|
|
|
|
In general, a function call is going to be slightly slower than memory access since it in fact has to do multiple memory accesses to perform the call. For example, multiple pushes and pops of the stack are required for most function calls using __stdcall on x86. But if your memory access is to a page that isn't even in the L2 cache, the function call can be much faster if the destination and the stack are all in the CPU's memory caches. For everything else, a function call is many (many) magnitudes faster. |
||
|
|
|
|
A function call is simply a shift of the frame pointer in memory onto the stack and addition of a new frame on top of that. The function parameters are shifted into local registers for use and the stack pointer is advanced to the new top of the stack for execution of the function. In comparison with time Function call ~ simple memory access |
||||
|
|
|
Compared to a simple memory access - slightly more, negligible really. Compared to every thing else listed - orders of magnitude less. This should hold true for just about any language on any OS. |
||
|
|
|
|
Depends on what that function does, it would fall 2nd on your list if it were doing logic with objects in memory. Further down the list if it included disk/network access. |
||
|
|