The short answer is that in Firefox 8 (but not 9), Math.round ends up calling a C++ function, which is slow in JITs. The long answer is that it's complicated, and it comes out different in different versions of Firefox. Also, because JITs are involved, it's going to be different on different processors and OSs.
A bit of background: According to ECMA-262, Math.round rounds to the nearest integer, except that for 0.5, it rounds toward +Inf, and for [-0.5, -0.0] it rounds to -0.0 (IEEE-754 negative zero). In order to get that right, Math.round has to do more than R1. It will need either to do some floating-point comparisons for the range that rounds to -0 (which V8 does), or copy the sign from the input (which SpiderMonkey does).
Now, for Firefox 8, both loops get compiled by the tracejit. For the loop with R1, R1 gets inlined and compiled to pure native code. R2 is inlined and compiled to call a C++ function called js_math_round_impl (in js/src/jsmath.cpp).
Calling any function costs extra because the parameters need to be set up, a call made, registers pushed, etc.
Calling Math.round or the like costs extra because the code needs to verify that Math.round is still the default Math.round (i.e., verify no monkeypatching).
Calling a C++ function costs extra in JITs because the JIT doesn't know what registers the C++ function uses, so the compiled JS function has to store all caller-save registers before the call and reload them all afterward. The call may also clear out other assumptions, preventing other optimizations.
And, as mentioned earlier, Math.round has to do more work than R1.
I tried a few different tests in JS and C to try to figure out whether the call is more important, or the -0 check. The results varied, but it looked like the call was generally the greater part of the slowdown (70-90% of it).
In Firefox 9, with JM+TI, R1 and R2 are about equally fast. In that case, R1 again gets inlined (I think) and compiled to pure native code. For R2, Math.round is implemented by a piece of jitcode that handles positive numbers directly but calls a C++ function for negative numbers (and NaN, etc). So for the example given, both run in jitcode, and R2 happens to be a bit faster.
In general, with functions like Math.round (something that traditionally has been a call to a C++ function, but is simple enough that at least some cases can be done directly in jitcode), the performance is going to depend a lot on how much jitcode optimization the engine implementers did for that particular function.
1: 190ms 2: 102ms. Chrome on Windows. – NullUserException♦ Dec 13 '11 at 1:43var R2 = Math.roundinstead of wrappingMath.roundin another function? That seems to speed it up for me (Safari on OS X), although in my case R2 was already faster. – Kevin Ballard Dec 13 '11 at 1:47Math.roundwas moved outsideR2as Kevin recommended. – dzejkej Dec 13 '11 at 1:49