vote up 11 vote down star
1

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.

flag

74% accept rate

15 Answers

vote up 5 vote down check

relative timings (shouldn't be off by more than a factor of 100 ;-)

  • memory-access in cache = 1
  • function call/return in cache = 2
  • memory-access out of cache = 10 .. 300
  • disk access = 1000 .. 1e8 (amortized depends upon the number of bytes transferred)
    • depending mostly upon seek times
    • the transfer itself can be pretty fast
    • involves at least a few thousand ops, since the user/system threshold must be crossed at least twice; an I/O request must be scheduled, the result must be written back; possibly buffers are allocated...
  • network calls = 1000 .. 1e9 (amortized depends upon the number of bytes transferred)
    • same argument as with disk i/o
    • the raw transfer speed can be quite high, but some process on the other computer must do the actual work
link|flag
All agreed, except from what I know memory access out of cache is about 200~300 times cache access. – Asaf R Sep 22 '08 at 18:30
Changed. The 10... range is to include first-level caches. Also, i don't want to create the impression that a disk access can be as fast as a memory access; the situation is not that bad ;-) – mfx Sep 23 '08 at 8:27
vote up 1 vote down

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)

link|flag
vote up 0 vote down

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) ).

link|flag
vote up 0 vote down

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:

  • Function call > Simple memory access.
  • Function call << Disk access - compared with memory it can be hundreds of times more expensive.
  • Function call << Memory access on another computer - the network bandwidth and protocol are the grand time killers here.
  • Function call <<< Disk access on another computer - all of the above and more :)
link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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".

link|flag
vote up 0 vote down

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).

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
What do you mean, the law? – André Neves Sep 18 '08 at 17:53
Pipelines should not be flushed on modern CPU when call is made. CPU flushes its pipelines only when it wrongly predicts conditional jump (or when interrupt or similar unpredictable event occurs). – Mladen Jankovic Sep 18 '08 at 17:57
"The law" : The electrical impulses which make up a value in memory, moving at the speed of light, will take several CPU cycles to move the three inches from one end of the CPU to the other. – James Curran Sep 18 '08 at 18:18
It's the LAW! The definition of a law is that it is meant to be interpreted. Rules on the other hand are absolute. That is why Rugby has Laws and other sports have Rules. – Martin York Sep 18 '08 at 19:44
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
vote up 7 vote down

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
Function call < Disk Access
Function call < memory access on another computer
Function call < disk access on another computer

link|flag
Did you really mean "shift of the stack pointer"? "Shift of the instruction pointer" would see more appropriate to me. I would describe it as: IP is pushed onto stack IP is set to the function address SP is advanced to reserve local variables spaces (may include stack frame creation) – Suma Sep 18 '08 at 19:02
Thank you for the clarification! I will update my answer for anyone who browses in the future – jW Sep 18 '08 at 19:09
vote up 3 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.