Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference?

It simply seems such a low level optimization, even if you wanted it the shouldn't the (C#/Java) to bytecode compiler or the jit catch it in most cases?

Note: I tested the compiled output for C#(with gmcs Mono C# compiler version 2.6.7.0) and the multiply examples didn't use shift for multiplying even when multiplying by a multiple of 2.

C# http://csharp.pastebin.com/hcrRnPrb

cil http://csharp.pastebin.com/0js9F2c1

P.S. I forgot how it might be somewhat useful to use it on bytes, but still having some trouble on using it for Numbers.

link|improve this question

60% accept rate
8  
Multiply is not the only use of bitshifts operators. – Cristian Oct 1 '10 at 4:57
3  
Sometimes bitshift operators enhance clarity over a multiplication eqivalent. – Kirk Woll Oct 1 '10 at 4:59
2  
You're looking at the IL, you really need to see the machine code after JIT compilation has occurred in order to tell whether the framework is optimizing these correctly. – Ben Voigt Oct 1 '10 at 5:03
Cristian do you mean division or are you talikg about something else? – Roman A. Taycher Oct 1 '10 at 5:33
feedback

8 Answers

up vote 7 down vote accepted

You are right, if shift operators are used only as an alternative for multiplications, it should be left to the compiler.

I suppose you overlooked applications like:

  • Encryption / decryption
  • CRC calculation
  • Bitmap manipulation (Graphics, Database locks)
  • Compression/Decompression
  • Setting up data for hardware registers
  • Change encoding

and much more need bit-twiddling for efficient implementation without native code.

link|improve this answer
feedback

First reason:

Sometimes - most times - you want to treat an integer as a number. Sometimes though an integer is a convenient way to represent a set of bits.

Multiplication is an operation on numbers.

Shifting is an operation on a set of bits.

That there happens to be a relationship between the results of multiplication and the results of shifting is not particularly relevant. The operations are logically different.

Second reason:

C# and Java were both designed to be familiar to C developers, albeit at a superficial level. Therefore common idioms from C were included in C# and Java.

link|improve this answer
C# and Java(especially the latter) dropped many things from c and c++. – Roman A. Taycher Oct 1 '10 at 5:18
More importantly I'm curious why you would want to represent 2 bytes as an int if its not meant to be a number. – Roman A. Taycher Oct 1 '10 at 5:19
1  
@Roman whether or not something is a performance bottleneck cannot be debated out of context. If you have multiple operations on two bytes e.g. 1000 operations and a few thousand concurrent users then that will make a difference – Rune FS Oct 1 '10 at 6:44
1  
@Roman: Signals to/from external devices: soundcard, PLC, etc – GvS Oct 1 '10 at 8:20
2  
@Roman: Due to CIDR, IP address are meaningful as sequences of bits, not as numeric values. (IP address) & (network mask) is about ten times faster to do with 32-bit integers than looping across a byte array, and four times faster with 32-bit integers than an unrolled loop. – Ben Voigt Oct 1 '10 at 13:55
show 4 more comments
feedback

If I wanted to multiply a number by 4, I would write * 4. If my intent is to left-shift some bits 2 places, I would write << 2.

Re the question:

Why do Java and C# have bitshifts operators?

I do a lot of work on binary data, where I'm not thinking about integers etc - just binary - and in that area it is entirely logical to use shift operators constantly.

Sure, I could type * 2 etc, but what I actually want to do is shift the bits.

This is common in a range of areas where bytes matter (for example graphics programming, serialization, etc).

Additionally, there are some subtleties of shift operations where you don't want it to behave like an integer, in particular when dealing with the edges... the rules for what happens when you left-shift a bit off the map, or right-shift bits into the map (-ve vs +ve etc) are well understood but critical. Likewise, the checked/unckecked behaviour of integer multiplication is sometimes very important.

link|improve this answer
feedback

What you are asking is essentially not why there are bitshift operators in C#/Java, but why the javac compiler doesn't optimize multiplications and divisions with powers of two into bitshifts.

The knee-jerk reaction to this is that multiplication and division have different semantics than bitshifts, so it does not map 100% to replace the operations.

Also, you forgot the extra compilation step that happens in the JIT (HotSpot) where all kinds of additional optimizations happen. There is frankly no need to optimize this particular step, as opposed to C where the code is as the compiler generates it.

link|improve this answer
feedback

Because the language designers thought it would be good to have them.

It's not really important that they are equivalent to some other opperation, and that the compilers are smart enough to implement the operations efficiently. If that's where we're going, then you don't need much more than a macro assembler and a really good link time optimizer, maybe on a VM with a garbage collector. Those are not the goals language designers normally pursue.

link|improve this answer
feedback

For example, your program may use something like bit masks. In that case bitshift operation is a necessity. Or if you are just solving some weird task that requires encoding of states in a specified manner.

Watch this tutorial - most of the samples come from math problems. If you are simply making a site or a GUI application, you probably do not need shifting, but sometimes you really do...

link|improve this answer
I agree that bitshifting has it's area where they make the code easier to read/write bur you could get by without them and simply use *2^n or /2^n instead of <<n and >>n. So they are not required but nice to have – Rune FS Oct 1 '10 at 6:37
2  
@Rune FS, -1>>1 is not the same as -1/2, whether sign-extended or not. Rewriting shift operations using only mathematical operators is actually quite fiddly. – Jon Hanna Oct 1 '10 at 9:30
@Jon you missed the point which is they are not required but can be rewritten (and signs makes no sense when talking about bit patterns since they inferre a specific interpretation of the pattern which is not a part of the pattern it self. E.g. There's multiple bit patterns that in a given context represents -1 and they All represent a positive integer in different contexts and and part of a file being encrypted in yet another context – Rune FS Oct 1 '10 at 13:50
@Rune FS, you missed my point is that they cannot be rewritten trivially. We can rewrite every instruction given only a subtract-and-branch-if-negative instruction, but there's good reasons why we don't. Finally you make my point when you talk about -1, as you're the one mixing thinking about math and thinking about bit patterns, I'm arguing that the two are best kept separate with separate operators. – Jon Hanna Oct 1 '10 at 14:01
@Jon I state in my org comment that I think shift operators are a good thing but the answers says their are required which is not true. and they are trivial to implement operator >> (uint mask, uint places){return mask / (uint)Math.Pow(2,places); }. Which is what I tried to explain above. ANd as you said your self "we can rewritte..." I.e. shift operators are not required but they are nice to have – Rune FS Oct 1 '10 at 16:05
show 3 more comments
feedback

In addition to the other reasons here, there are plenty of cases where you may need to shift (or other bit operations) to interface with a 3rd party library or a remote application over a network.

link|improve this answer
feedback

So that you can shift bits left and right. What you want those bits and their shift operations to represent is entirely upto you.

link|improve this answer
@ Rune FS... O ! man ...ha ha ha... that was a hilarious mistake. Thanks for the correction. – explorer Oct 1 '10 at 11:26
feedback

Your Answer

 
or
required, but never shown

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