How to compute log base 2 using bitwise operators?
If you count shifting as a bitwise operator, this is easy.
You already know how to do it by successive division by 2.
x >> 1
is the same as x / 2
for any unsigned integer in C.
If you need to make this faster, you can do a "divide and conquer"—shift, say, 4 bits at a time until you reach 0, then go back and look at the last 4 bits. That means at most 16 shifts and 19 compares instead of 63 of each. Whether it's actually faster on a modern CPU, I couldn't say without testing. And you can take this a step farther, to first do groups of 16, then 4, then 1. Probably not useful here, but if you had some 1024-bit integers, it might be worth considering.
Already answered by abamert but just to be more concrete this is how you would code it:
Log2(x) = result
while (x >>= 1) result++;