为一系列位创建位掩码的最佳实践方法是什么?

时间:2014-01-30 19:32:15

标签: bit-manipulation bit-shift bitmask

我可以想到三种方法来做到这一点。我会快速概述它们。

char mask = (1<<top)
mask = mask-1
mask = mask>>bot
mask = mask<<bot
3 shifts, 1 addition

char topMask = (1<<top)
topMask = topMask -1
char botMask = (1<<bot)
botMask = botMask - 1
char mask = topMask - botMask
2 shifts, 3 additions

char mask = (1<<(top-bot))
mask = mask - 1
mask = mask << bot
2 shifts, 2 additions

看起来第一个会快一点吗? 一个被认为最好的风格原因? 我错过了一个非常好的方式,还是我做了一些愚蠢的事情?谢谢!

如果有人能指出我在linux内核中完成的地方,我特别感兴趣。

编辑: 有人发布这样的东西作为另一种方式并删除它?非常类似于第二个。但是XOR而不是减去。

char mask = ((1<<top)-1)^((1<<bot)-1)

1 个答案:

答案 0 :(得分:2)

您可以尝试查找表方法:

static const char LUT[][] = { // index like this LUT[bot][top]
//top:    0     1     2     3     4     5     6     7     8
       0x00, 0x01, 0x03, 0x07, 0x0F, 0x1F, 0x3F, 0x7F, 0xFF, // bot: 0
       0x00, 0x00, 0x02, 0x06, 0x0E, 0x1E, 0x3E, 0x7E, 0xFE, // bot: 1
       0x00, 0x00, 0x00, 0x04, 0x0C, 0x1C, 0x3C, 0x7C, 0xFC, // bot: 2
       0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x38, 0x78, 0xF8, // bot: 3
       0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x30, 0x70, 0xF0, // bot: 4
       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x60, 0xE0, // bot: 5
       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xC0, // bot: 6
       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, // bot: 7
       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00  // bot: 8
};

char mask = LUT[bot][top];

另外:如果出于某种原因你使用位操作,这个解决方案需要更少的操作。另外,超标量处理器应该并行评估xor的左侧和右侧。

char mask = (0xFF << top) ^ (0xFF << bot);