Firefox bitwise operation speed?
jsperf.com
Firefox bitwise operation speed?
1–3 of 3 posts
Re: Firefox bitwise operation speed?
#2It's called Loop Invariant Code Motion, and it's why jsperf benchmarks are mostly inaccurate. A smart JIT can hoist all the 'work' in a benchmark out of the benchmark loop and only run it once.
Re: Firefox bitwise operation speed?
#3It's called Loop Invariant Code Motion, and it's why jsperf benchmarks are mostly inaccurate. A smart JIT can hoist all the 'work' in a benchmark out of the benchmark loop and only run it once.
thanks!