This is stated to be a puzzle. But, when does this actually get used? Are there use cases of bit manipulation in JS? I've never understood when using bit operators could be necessary or even useful. Of course, I'm speaking from my experience building web apps; ruby, python, js, php, etc. I don't have much other programming experience
Embedded applications use bitwise ops all the time. Particularly for performing changes to registers.
Example, a microcontroller has an 8 bit status register. Each bit controls some hardware function. You wish to change bit 5, but you can't change anything else because it would cause unwanted side effects. So this rules out simply saying myregister = 0b00001000.
Common solution is to make a macro like:
#define setbit(BYTE,BIT) BYTE |= (1 << BIT)
Thus you can say I want to set bit 5 in my register by calling setbit(foo, 5) while keeping the rest of the byte intact. There are analogous macros for clearing and toggling bits.
Or you might want to perform an operation based on a particular bit in a byte, e.g. byte 5 is a status flag that tells you when a timer has overflowed.
The only time I find myself using bit manipulations in production code is when I am writing a library that uses an int to represent a set of option flags (where each bit is a boolean flag). It's pretty common in C libs to define some constants like
int FLAG_1 = 1;
int FLAG_2 = 2;
int FLAG_3 = 4; //These would actually probably be formatted like (1 << N)
...
And then pass in your options to a function like f(... FLAG_1+FLAG_2) so you can have an optional number of flags in a single argument.
To do this exercise in javascript is pretty silly. But as a systems developer, I can tell you that bit manipulation happens all over the place in my line of work.
The first time I used bit manipulation in web apps was for declaring user roles and permissions. A single integer field in your database can be used to declare any combination of up to 32 different capabilities/permissions for users by setting the individual bits in the value. Also, when dealing with colors as an integer value, you can isolate your ARGB values using bit shifting.
This is mostly done in lower level code, so no wonder you have never bumped into it. One easy example, though is passing a set of binary options around, which is useful, for example, when you want to say "enable those features, and disable those other features". You can pack up to 32 options into a 4-byte integer.
That will get fairly hairy, given that JavaScript doesn't have integers. x should be expected to be a IEEE 754 double (can one discriminate between NaNs in JavaScript?), but might also be a string (does "@" have one bit set?, or might it be EBCDIC?), an array, an object, null or undefined (do those have a bit pattern?)
That would work if the `>>>` operator worked as expected, but actually it just looks at the first 5 bits of the second variable so that `a>>>b` is effectively equivalent to `a>>>(b&31)`. His description of it is wrong.
[+] [-] warmfuzzykitten|12 years ago|reply
[+] [-] gamegoblin|12 years ago|reply
Just tried doing "return 1" and still got
[+] [-] sachleen|12 years ago|reply
[+] [-] fourspace|12 years ago|reply
[+] [-] amenghra|12 years ago|reply
Oops, i'll fix it.
[+] [-] amenghra|12 years ago|reply
[+] [-] conductr|12 years ago|reply
[+] [-] joshvm|12 years ago|reply
Example, a microcontroller has an 8 bit status register. Each bit controls some hardware function. You wish to change bit 5, but you can't change anything else because it would cause unwanted side effects. So this rules out simply saying myregister = 0b00001000.
Common solution is to make a macro like:
#define setbit(BYTE,BIT) BYTE |= (1 << BIT)
Thus you can say I want to set bit 5 in my register by calling setbit(foo, 5) while keeping the rest of the byte intact. There are analogous macros for clearing and toggling bits.
Or you might want to perform an operation based on a particular bit in a byte, e.g. byte 5 is a status flag that tells you when a timer has overflowed.
#define getbit(BYTE, BIT) !!(BYTE & ~(1 << BIT))
Then you can say:
if( getbit(myregister, 5)){ // do something }
Fun fun :)
[+] [-] blt|12 years ago|reply
- Interacting with hardware that uses certain bits in a register to control behavior - for example, Arduino digital ports [2]
- Doing arithmetic extra-fast with numbers that are powers of two - modulo becomes bitwise-and, division and multiplication become shifts
[1] http://en.wikipedia.org/wiki/List_of_monochrome_and_RGB_pale...
[2] http://arduino.cc/en/Reference/PortManipulation
[+] [-] gamegoblin|12 years ago|reply
[+] [-] wellingtons|12 years ago|reply
[+] [-] aguynamedrich|12 years ago|reply
[+] [-] 10098|12 years ago|reply
[+] [-] amenghra|12 years ago|reply
[+] [-] Someone|12 years ago|reply
[+] [-] amenghra|12 years ago|reply
[+] [-] norswap|12 years ago|reply
The best I could come up with is:
function one_bit(x) { return 1 >>> (x & (x + ~0)) }
("x + ~0" is equivalent to "x - 1")
But this doesn't work when x is 0 All other case should be fine, afaik.
[+] [-] ejk314|12 years ago|reply
http://jsfiddle.net/Ayzkt/2/
[+] [-] 10098|12 years ago|reply
[+] [-] amenghra|12 years ago|reply