vote up 0 vote down star

Hey guys!

I've been looking at bitwise operations as a way of speeding things up in critical areas. But most of what I find are just low level explanations.

Would anyone be so kind as to briefly explain what practical situations i may find myself needing bitwise operations? Or perhaps a link to a good tutorial?

Thanks!

flag

67% accept rate
1  
I doubt you'll get much performance boost from using bitwise operations. Bitwise operations can be used to make data storage easier and more efficient, but as a way to improve performance... I don't believe it will make a difference at all. – Blixt Aug 14 at 12:04
This isn't true. Bitwise operations can be used to avoid ifs, which are very costly in a tight loop. In my case, that's the CPU and display emulation loop. In that loop, for example, 1,382,400 pixels need to be rendered (not blitted) every second. Avoiding ifs in this case is a huge win. See graphics.stanford.edu/~seander/bithacks.html/… for some examples. – Toon Van Acker Aug 14 at 13:02
Of course, I don't mean to imply that avoiding branching is the only thing bitwise operations are good for. – Toon Van Acker Aug 14 at 13:04
Considering this is posted with the 'php' tag, I'd say that in the generalization of 'bit-wise operators won't make much difference' is true for the asker's use cases. Obviously, for specific purposes in lower-level languages this is very different. – Roel Aug 14 at 18:22

3 Answers

vote up 6 vote down check

Is it what you want ?

http://blog.code-head.com/how-to-write-a-permission-system-using-bits-and-bitwise-operations-in-php

link|flag
Yes, that helps. Thank you very much – Jeff Aug 14 at 12:01
+1 Interesting. – bblincoe Aug 14 at 14:30
vote up 2 vote down

This is my answer to this question,

http://stackoverflow.com/questions/1251854/php-ip-to-network-translation

This snippet is from real production code. It has bitwise-and and bit shifting. I think this is pretty hard to do without bitwise operations.

<?php

function to_netmask($ip, $prefix) {
    $mask = $prefix==0?0:0xffffffff << (32 - $prefix);
    return long2ip(ip2long($ip) & $mask);
}

?>
link|flag
Wouldn't 0xffffffff << (32 - $prefix) be 0 if prefix is 0? Or is the case there for speed reasons (prefix 0 gets used a lot). – Toon Van Acker Aug 14 at 12:58
This code is ported from C implementation. We had some problem with 0xffffffff << 32, which may result a non-zero value on some platforms. – ZZ Coder Aug 14 at 13:37
Ahh, interesting pitfall! I'll have to keep that in mind – Toon Van Acker Aug 14 at 15:09
vote up 0 vote down

I doubt that you'll get performance boost in PHP. It's a good practice to use them since it takes less space when you store (true/false) settings.

In C/C++, you could use them to get a speed boost when shifting left or right..

ie: x << 1 // equal x=x*2 x << 2 // equal x=x*4 x << 3 // equal x=x*8

  x >> 1   // equal  x=x/2

since binary shifting is faster than doing a division or multiplication, it was often use for that. The caveat is that it only works with unsigned integer (no float)

using bit shifting for speed improvement is not recommended anymore since compilers are really more aggressive regarding optimizations. If you add code hints the compiler will choose the best method.

Bitwise operators are really practical. A good example is indicated in the first answer

link|flag

Your Answer

Get an OpenID
or

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