Shifting bits left and right is apparently faster than multiplication and division operations on most (all?) CPUs if you happen to be using a power of 2. However, it can reduce the clarity of code for some readers and some algorithms. Is bit-shifting really necessary for performance, or can I expect the compiler/VM to notice the case and optimize it (in particular, when the power-of-2 is a literal)? I am mainly interested in the Java and .NET behavior but welcome insights into other language implementations as well.
|
|
Most compilers today will do more than convert multiply or divide by a power-of-two to shift operations. When optimizing, many compilers can optimize a multiply or divide with a compile time constant even if it's not a power of 2. Often a multiply or divide can be decomposed to a series of shifts and adds, and if that series of operations will be faster than the maultiply or divide, the compiler will use it. For division by a constant, the compiler can often convert the operation to a multiply by a 'magic number' followed by a shift. This can be a major clock-cycle saver since multiplication is often much faster than a division operation. Henry Warren's book, Hacker's Delight, has a wealth of information on this topic, which is also covered quite well on the companion website: See also a discussion (with a link or two ) here: Anyway, all this boils down to allowing the compiler to take care of the tedious details of micro-optimizations. It's been years since doing your own shifts outsmarted the compiler. |
|||||
|
|
Almost any environment worth its salt will optimize this away for you. And if it doesn't, you've got bigger fish to fry. Seriously, do not waste one more second thinking about this. You will know when you have performance problems. And after you run a profiler, you will know what is causing it, and it should be fairly clear how to fix it. You will never hear anyone say "my application was too slow, then I started randomly replacing |
|||||||||||||||||
|
|
Humans are wrong in these cases. 99% when they try to second guess a modern(and all future) compilers. Program in a way that accurately describes what you want to accomplish, not how to do it. Future versions of the JIT, VM, Compiler, and CPU can all be independantly improved and optimized. If you specify something so tiny and specific, you lose the benefit of all future optimizations. |
|||||||||
|
|
You can almost certainly depend on the literal-power-of-two multiplication optimisation to a shift operation. This is one of the first optimisations that students of compiler construction will learn. :) However, I don't think there's any guarantee for this. Your source code should reflect your intent, rather than trying to tell the optimiser what to do. If you're making a quantity larger, use multiplication. If you're moving a bit field from one place to another (think RGB colour manipulation), use a shift operation. Either way, your source code will reflect what you are actually doing. |
|||||||
|
|
I am stunned as i just wrote this code and realized that shifting by one is actually slower than multiplying by 2! (EDIT: changed the code to stop overflowing after mmyers suggestion but the results are the same! what is wrong here?)
The results are:
|
|||||||||||||||||||
|
|
On computers I tested, integer divisions are 4 to 10 times slower than other operations. When compilers may replace divisions by multiples of 2 and make you see no difference, divisions by not multiples of 2 are significantly slower. For example, I have a (graphics) program with many many many divisions by 255. Actually my computation is :
I can ensure that it is a lot faster than my previous computation :
so no, compilers cannot do all the tricks of optimization. |
|||
|
|
|
I would ask "what are you doing that it would matter?". First design your code for readability and maintainability. The likelyhood that doing bit shifting verses standard multiplication will make a performance difference is EXTREMELY small. |
|||
|
|
|
It is hardware dependent. If we are talking micro-controller or i386, then shifting will be faster but, as several answers state, your compiler will usually do it for you. On modern (Pentium Pro and beyond) hardware the pipelining make this totally irrelevant and straying from the beaten path usually means you loose a lot more optimizations than you can gain. Micro optimizations are not only a waste of (your) time, they are also extremely difficult to get right. |
|||
|
|
|
Note that shifting down and division will (In Java, certainly) give different results for negative, odd numbers.
Prints:
Since Java doesn't have any unsigned numbers it's not really possible for a java compiler to optimise this. |
|||
|
|
|
If the compiler (compile-time constant) or JIT (runtime constant) knows that the divisor or multiplicand is a power of two and integer arithmetic is being performed, it will convert it to a shift for you. |
|||
|
|
|
Most compilers will turn multiplication and division into bit shifts when appropriate. It is one of the easiest optimizations to do. So, you should do what is more easily readable and appropriate for the given task. |
|||
|
|
|
This is an analysis of the benchmark done by from Savvas Dalkitsis. Although this test checks speed of multiplication over bit shifting, the values used are not the same, check code below in C# which displays the values)
The equivalent code of Savvas Dalkitsis example with the values displayed in C# will be
|
|||
|
|