vote up 4 vote down star
3

What is the best way to construct a bit mask in C with m set bits preceded by k unset bits, and followed by n unset bits:

00..0 11..1 00..0
  k     m     n

For example, k=1, m=4, n=3 would result in the bit mask:

01111000
flag

3 Answers

vote up 20 vote down check

~(~0 << m) << n

link|flag
Both these work, and they're both good, so I'm upvoting two for the first time ever. – paxdiablo Nov 25 '08 at 6:28
You beat me by 3 seconds according to SO. :D – Jonathan Leffler Nov 25 '08 at 6:28
Thanks for the answers guys. – grigy Nov 25 '08 at 6:34
Jonothan, yeah, I was surprised! – Darius Bacon Nov 25 '08 at 7:13
This is slick. However, It would be a good idea to comment this line, for the -next- programmer to work on it. – mkClark Nov 25 '08 at 23:41
show 2 more comments
vote up 13 vote down

So, you are asking for m set bits prefixed by k reset bits and followed by n reset bits? We can ignore k since it will largely be constrained by the choice of integer type.

mask = ((1 << m) - 1) << n;
link|flag
Both these work, and they're both good, so I'm upvoting two for the first time ever. – paxdiablo Nov 25 '08 at 6:29
They both work but I find Jonathan's answer to be simpler and clearer. Darius' answer is a little too backwards to me. – Robert Gamble Nov 25 '08 at 6:34
Thanks for the answers guys. – grigy Nov 25 '08 at 6:35
Robert, I like the ~0 idiom for bitmasks because it doesn't depend on 2's-complement, and is in that sense simpler, but it's true it's less well-known. Just doing my bit to change that! – Darius Bacon Nov 25 '08 at 7:10
@Darius: if you are using unsigned arithmetic/types, as you should in these contexts, isn't the difference between 2's-complement, 1's-complement and sign-magnitude arithmetic immaterial? – Jonathan Leffler Nov 25 '08 at 7:18
show 10 more comments
vote up 2 vote down

I like both solutions. Here is another way that comes to my mind (probably not better).

((~((unsigned int)0) << k) >> (k + n)) << n

EDIT: There was a bug in my previous version (it was without the unsigned int cast). The problem was that ~0 >> n adds 1s at the front and not 0s.

And yes this approach has one big downside; it assumes that you know the number of bits of the default integer type or in other words it assumes that you really know k, whereas the other solutions are independent of k. This makes my version less portable, or at least harder to port. (It also uses 3 shifts, and addition and a bitwise negation operator, which is two extra operations.)

So you would do better to use one of the other examples.

Here is a little test app, done by Jonathan Leffler, to compare and verify the output of the different solutions:

#include <stdio.h>
#include <limits.h>

enum { ULONG_BITS = (sizeof(unsigned long) * CHAR_BIT) };

static unsigned long set_mask_1(int k, int m, int n)
{
    return ~(~0 << m) << n;
}

static unsigned long set_mask_2(int k, int m, int n)
{
    return ((1 << m) - 1) << n;
}

static unsigned long set_mask_3(int k, int m, int n)
{
    return ((~((unsigned long)0) << k) >> (k + n)) << n;
}

static int test_cases[][2] =
{
    { 1, 0 },
    { 1, 1 },
    { 1, 2 },
    { 1, 3 },
    { 2, 1 },
    { 2, 2 },
    { 2, 3 },
    { 3, 4 },
    { 3, 5 },
};

int main(void)
{
    size_t i;
    for (i = 0; i < 9; i++)
    {
        int m = test_cases[i][0];
        int n = test_cases[i][1];
        int k = ULONG_BITS - (m + n);
        printf("%d/%d/%d = 0x%08lX = 0x%08lX = 0x%08lX\n", k, m, n,
               set_mask_1(k, m, n),
               set_mask_2(k, m, n),
               set_mask_3(k, m, n));
    }
    return 0;
}
link|flag
On the assumption that this answer can be made to work, the obvious downside in comparison with the other two is the presence of the third shift operation, which makes it more time consuming. – Jonathan Leffler Nov 25 '08 at 14:45
The other problem is that it uses the parameter k which the other two solutions are able to ignore (it doesn't use m, though, so it still only uses two of the three parameters). – Jonathan Leffler Nov 25 '08 at 14:46
Right there was a bug in it, I fixed it now and add a comment that the other solutions are preferable. I haven't removed it completely, maybe someone can learn from my mistakes and it'd be sad to loose your nice test code :). – quinmars Nov 25 '08 at 19:34
Instead of the cast, you should be able to use '0U' to indicate an unsigned zero, or '0UL' to indicate an unsigned long. I agree with leaving your answer in place - and with the edits you made. – Jonathan Leffler Nov 25 '08 at 21:06

Your Answer

Get an OpenID
or
never shown

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