Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicates:
Is shifting bits faster than multiplying and dividing in Java? .NET?
Quick Java Optimization Question

Many years ago in college, I learned that bit-shifting right by one accomplishes the same thing as dividing by two, but is generally significantly faster. I'm not sure how Java has come along in that regards since the 9-10 years ago I learned about that. Does the Java compiler automatically converts a divide-by-two into a bit-shift operation, or should I manually perform the bit-shift operation in the code myself?

share|improve this question
1  
stackoverflow.com/questions/1514949/… It addresses multiplication by two, but the answers are applicable. – RD1 Nov 1 '10 at 20:17
Possible duplicate: stackoverflow.com/questions/1168451/… – Galactus Nov 1 '10 at 20:21
In general, if operation A accomplishes exactly the same thing as operation B and does it faster, somewhere along the line B will probably be optimized into A. The problem is when there are border-case differences such that one can't be optimized into the other. In those cases you have to 1) evaluate if the difference in performance actually matters (no premature optimization!), 2) account for the border cases (program around them or prove they won't be hit, and 3) determine whether the gains exist and justify the decrease in readibility. – Mark Peters Nov 1 '10 at 20:29
4  
I'm deeply sadened by the spectrum of answers this question got. First, dividing by two and shifting right by one will not yield the same result for negative numbers in all cases. Second, where the shifted result is sufficent, its roughly 10 to 20 times faster than dividing. Third, the compiler will not optimize this because in any non-trivial case it will be unable to prove that the shifted operand is not negative. Oh and the answers from the multiplication question do not cover divide, as the situation with optimizers is different xD – Durandal Nov 1 '10 at 21:20
1  
bit-shifting is not the same as division.. Proof: assert ((-3 >> 1) == (-3 /2)) – Nils Pipenbrinck Nov 1 '10 at 21:36
show 1 more comment

marked as duplicate by gbn, EboMike, ColinD, Aamir, rsp Nov 1 '10 at 20:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 29 down vote accepted

No. Why obfuscate your intent?

Also consider whether this is a case of premature optimization. Is this going to be used so frequently (hundreds of times per second) to warrant optimization and obfuscation?

share|improve this answer
9  
Its in the eye of the beholder. Why is x * 2 less obfuscated than x << 1? Isn't x << 1 clearly meaning x * 2 ? It's like saying hey x + 1 is clearer than 1 + x. – Pacerier Jan 31 '12 at 14:58
1  
Many programmers, especially junior devs, aren't familiar with bitshifts, or won't immediately recognize the intent. This is basically a usability argument for programmers that may work on the code after you. – cacois Oct 24 '12 at 22:15

The division routine for your CPU will handle this. There is no need for you to do it.

This is known as a premature optimization.

share|improve this answer
7  
Early optimization != premature optimization. Yes most of the time when someone wants to start bit twiddling it probably is an example of premature optimization, but that is not always the case. I've personally seen instances where I've gotten noticeably better results bit twiddling because I had information the compiler didn't. I hate that everyone always just starts shouting "premature optimization!!!" anytime something like this is brought up. – Michael McGowan Nov 1 '10 at 20:30
I'd agree with that, but by and large it would be a premature optimization. And often optimizations aren't so much as finding something that is slightly faster and using it instead, rather, it's finding a new way to solve a problem that requires less work. – Malfist Nov 1 '10 at 20:35
The division 'routine' of your CPU is infact an instruction, and it will always be around 20 times slower than a bit-shift. The 'compiler' may replace a division with a shift, but that's it. – Nils Pipenbrinck Nov 1 '10 at 21:32
@Nils Pipenbrinck, Where do you get the 20x slower from? I would assume, at best it would depend on the architecture. – Malfist Nov 3 '10 at 13:14
3  
A shift will be a single cycle instruction on almost all architectures while the best CPUs can only do 2 bits of division per cycle (newest intel core RADIX-16 divider). for 32 bit that makes 1 cycle for shift vs 16 cycles for a division in the best case. Add in the startup cost and pipeline stalls and you end up with a factor of around 20. – Nils Pipenbrinck Nov 4 '10 at 9:48

Modern compilers are clever enough to generate the fastest code for divisions by two. They'll do a shift if it is faster. If what you want to achieve is a division by 2, using a division will make your code clearer. And you'll avoid problems when the number to be divided is negative.

share|improve this answer

Yes, this is the very first thing that anyone attempting to do compiler optimizations will do (and has done for at least 5 decades), it most certainly is done by the Java JIT compiler, and you'd probably have a very hard time finding any compiler that doesn't do it.

And even if they didn't, it would still be a premature micro-optimization that should be avoided in favor of having the code be clearer.

share|improve this answer

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