Update
[less_retarded_wiki.git] / bit_hack.md
blob24f009bdc8c56fbd56cc52d37df1904c4cee0ade
1 # Bit Hack
3 Bit [hacks](hacking.md) (also bit tricks, bit [magic](magic.md), bit twiddling etc.) are simple clever formulas for performing useful operations with [binary](binary.md) numbers. Some operations, such as checking if a number is power of two or reversing bits in a number, can be done very efficiently with these hacks, without using loops, [branching](branchless.md) and other undesirably slow operations, potentially increasing speed and/or decreasing size and/or memory usage of code -- this can help us [optimize](optimization.md). Many of these can be found on the [web](www.md) and there are also books such as *Hacker's Delight* which document such hacks.
5 ## Basics
7 Basic bit manipulation techniques are common and part of general knowledge so they won't be listed under hacks, but for sake of completeness and beginners reading this we should mention them here. Let's see the basic bit manipulation operators in [C](c.md):
9 - `|` (bitwise [OR](or.md)): Performs the logical OR on all corresponding bits of two operands, e.g. `0b0110 | 0b1100` gives `0b1110` (14 in decimal). This is used to set bits and combine flags (options) into a single numeric value that can easily be passed to function etc. For example to set the lowest bit of a number to 1 just do `myNumber | 1`. Now consider e.g. `#define OPTION_A 0b0001`, `#define OPTION_B 0b0010` and `#define OPTION_C 0b0100`, now we can make a single number that represents a set of selected options e.g. as `OPTION_C | OPTION_B` (the value will be `0101` and says that options B and C have been selected).
10 - `&` (bitwise [AND](and.md)): Performs the logical AND on all corresponding bits of two operands, e.g. `0b0110 & 0b1100` gives `0b0100` (4 in decimal). This may be used to mask out specific bits, to check if specific bits are set (useful to check the set flags as mentioned above) or to clear (set to zero) specific bits. Consider the flag example from above, if we want to check if value *x* has e.g. the option B set, we simply do `x & OPTION_B` which results in non-zero value if the option is set. Another example may be `myNumber & 0b00001111` (in practice you'll see hexadecimal values, i.e. `myNumber & 0x0F`) which masks out the lowest 4 bits of *myNumber* (which is equivalent to the operation [modulo](mod.md) 16).
11 - `~` (bitwise [NOT](not.md)): Flips every bit of the number -- pretty straightforward. This is used e.g. for clearing bits as `x & ~(1 << 3)` (clear 4th bit of *x*).
12 - `^` (bitwise [XOR](xor.md)): Performs the logical XOR on all corresponding bits of two operands, e.g. `0b0110 ^ 0b1100` gives `0b1010` (10 in decimal). This is used to e.g. flip specific bits.
13 - `<<` and `>>` (binary shift left/right): Performs bitwise shift left or right (WATCH OUT: shifting by data type width or more is undefined behavior in C). This is typically used to perform fast multiplication (left) and division (right) by powers of two (2, 4, 8, 16, ...), just as we can quickly multiply/divide by 10 in decimal by shifting the decimal point. E.g. `5 << 3` is the same as 5 * 2^3 = 5 * 8 = 40.
14 - We also sometimes use the logical (i.e. NOT bitwise) operators `&&` (AND), `||` (OR) and `!` (NOT); the difference against bitwise operators is that firstly they work with the whole value (i.e. not individual bits), considering 0 to be *false* and anything else to be *true*, and secondly they may employ a bit more complexity, e.g. [short circuit](short_circuit.md) evaluation.
16 ## Specific Bit Hacks
18 { Work in progress. I'm taking these from various sources such as the *Hacker's Delight* book or web and rewriting them a bit, always testing. Some of these are my own. ~drummyfish }
20 TODO: stuff from this gophersite: gopher://bitreich.org/0/thaumaturgy/bithacks
22 Unless noted otherwise we suppose [C](c.md) syntax and semantics and integer [data types](data_type.md), but of course we mainly want to express formulas and patterns you can use anywhere, not just in C. Keep in mind all potential dangers, for example it may sometimes be better to write an idiomatic code and let compiler do the optimization that's best for given platform, also of course readability will worsen etc. Nevertheless as a hacker you should know about these tricks, it's useful for low level code etc.
24 **2^N**: `1 << N`
26 **[absolute value](abs.md) of x ([two's complement](twos_complement.md))**:
28 ```
29   int t = x >> (sizeof(x) * 8 - 1);
30   x = (x + t) ^ t;
31 ```
33 **average x and y without overflow**: `(x & y) + ((x ^ y) >> 1)` { TODO: works with unsigned, not sure about signed. ~drummyfish }
35 **clear (to 0) Nth bit of x**: `x & ~(1 << N)`
37 **clear (to 0) rightmost 1 bit of x**: `x & (x - 1)`
39 **conditionally add (subtract etc.) x and y based on condition c (c is 0 or 1)**: `x + ((0 - c) & y)`, this avoids branches AND ALSO multiplication by c, of course you may replace + by another operators.
41 **count 0 bits of x**: Count 1 bits and subtract from data type width.
43 **count 1 bits of x (8 bit)**: We add neighboring bits in parallel, then neighboring groups of 2 bits, then neighboring groups of 4 bits.
45 ```
46   x = (x & 0x55) + ((x >> 1) & 0x55);
47   x = (x & 0x33) + ((x >> 2) & 0x33);
48   x = (x & 0x0f) + (x >> 4);
49 ```
51 **count 1 bits of x (32 bit)**: Analogous to 8 bit version.
53 ```
54   x = (x & 0x55555555) + ((x >> 1) & 0x55555555);
55   x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
56   x = (x & 0x0f0f0f0f) + ((x >> 4) & 0x0f0f0f0f);
57   x = (x & 0x00ff00ff) + ((x >> 8) & 0x00ff00ff);
58   x = (x & 0x0000ffff) + (x >> 16);
59 ```
61 **count leading 0 bits in x (8 bit)**:
63 ```
64   int r = (x == 0);
65   if (x <= 0x0f) { r += 4; x <<= 4; }
66   if (x <= 0x3f) { r += 2; x <<= 2; }
67   if (x <= 0x7f) { r += 1; }
68 ```
70 **count leading 0 bits in x (32 bit)**: Analogous to 8 bit version.
72 ```
73   int r = (x == 0);
74   if (x <= 0x0000ffff) { r += 16; x <<= 16; }
75   if (x <= 0x00ffffff) { r += 8; x <<= 8; }
76   if (x <= 0x0fffffff) { r += 4; x <<= 4; }
77   if (x <= 0x3fffffff) { r += 2; x <<= 2; }
78   if (x <= 0x7fffffff) { r += 1; }
79 ```
81 **divide x by 2^N**: `x >> N`
83 **divide x by 3 (unsigned at least 16 bit, x < 256)**: `((x + 1) * 85) >> 8`, we use kind of a [fixed point](fixed_point.md) multiplication by reciprocal (1/3), on some platforms this may be faster than using the divide instruction, but not always (also compilers often do this for you). { I checked this particular trick and it gives exact results for any x < 256, however this may generally not be the case for other constants than 3. Still even if not 100% accurate this can be used to approximate division. ~drummyfish }
85 **divide x by 5 (unsigned at least 16 bit, x < 256)**: `((x + 1) * 51) >> 8`, analogous to divide by 3.
87 **get Nth bit of x**: `(x >> N) & 0x01`
89 **is x a power of 2?**: `x && ((x & (x - 1)) == 0)`
91 **is x even?**: `(x & 0x01) == 0`
93 **is x odd?**: `(x & 0x01)`
95 **isolate rightmost 0 bit of x**: `~x & (x + 1)`
97 **isolate rightmost 1 bit of x**: `x & (~x + 1)` (in [two's complement](twos_complement.md) equivalent to `x & -x`)
99 **log base 2 of x**: Count leading 0 bits, subtract from data type width - 1.
101 **maximum of x and y**: `x ^ ((0 - (x < y)) & (x ^ y))`
103 **minimum of x and y**: `x ^ ((0 - (x > y)) & (x ^ y))`
105 **multiply x by 2^N**: `x << N`
107 **multiply by 7 (and other numbers close to 2^N)**: `(x << 3) - x`
109 **next higher or equal power of 2 from x (32 bit)**:
112   x--;
113   x |= x >> 1;
114   x |= x >> 2;
115   x |= x >> 4;
116   x |= x >> 8;
117   x |= x >> 16;
118   x = x + 1 + (x == 0);
121 **[parity](parity.md) of x (8 bit)**:
124   x ^= x >> 1;
125   x ^= x >> 2;
126   x = (x ^ (x >> 4)) & 0x01;
129 **reverse bits of x (8 bit)**: We switch neighboring bits, then switch neighboring groups of 2 bits, then neighboring groups of 4 bits.
132   x = ((x >> 1) & 0x55) | ((x & 0x55) << 1);
133   x = ((x >> 2) & 0x33) | ((x & 0x33) << 2);
134   x = ((x >> 4) & 0x0f) | (x << 4);
137 **reverse bits of x (32 bit)**: Analogous to the 8 bit version.
139 ``` 
140   x = ((x >> 1) & 0x55555555) | ((x & 0x55555555) << 1);
141   x = ((x >> 2) & 0x33333333) | ((x & 0x33333333) << 2);
142   x = ((x >> 4) & 0x0f0f0f0f) | ((x & 0x0f0f0f0f) << 4);
143   x = ((x >> 8) & 0x00ff00ff) | ((x & 0x00ff00ff) << 8);
144   x = ((x >> 16) & 0x0000ffff) | (x << 16);
147 **rotate x left by N (8 bit)**: `(x << N) | (x >> (8 - N))` (watch out, in C: N < 8, if storing in wider type also do `& 0xff`)
149 **rotate x right by N (8 bit)**: analogous to left rotation, `(x >> N) | (x << (8 - N))`
151 **set (to 1) Nth bit of x**: `x | (1 << N)`
153 **set (to 1) the rightmost 0 bit of x**: `x | (x + 1)`
155 **set or clear Nth bit of x to b**: `(x & ~(1 << N)) | (b << N)`
157 **sign of x (returns 1, 0 or -1)**: `(x > 0) - (x < 0)`
159 **swap x and y (without tmp var.)**: `x ^= y; y ^= x; x ^= y;` or `x -= y; y += x; x = y - x;`
161 **toggle Nth bit of x**: `x ^ (1 << N)`
163 **toggle x between A and B**: `(x ^ A) ^ B`
165 **x and y have different signs?**: `(x > 0) == (y > 0)`, `(x <= 0) == (y <= 0)` etc. (differs on 0:0 behavior)
167 TODO: the ugly hacks that use conversion to/from float?
169 ## See Also
171 - [De Morgan's laws](de_morgans_laws.md)
172 - [fast inverse square root](fast_inverse_sqrt.md)
173 - [optimization](optimization.md)