User Tools

Site Tools


chess:programming:msb_most_significant_bit

This is an old revision of the document!


Chess - Programming - MSB (Most Significant Bit)

The Most Significant Bit (LSB) is the bit position of the last bit set in a value.

There are many ways to determine the MSB, but the goal is to do that as quickly as possible.

  • Due to the number of Chess positions possible, many millions, even a small saving for the lookup of the MSB can provide much further lookups in the same time.

Using Bit Manipulation

int msbPerformanceJunkie32(u32 x)
{
  static const unsigned int bval[] =
    { 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4 };
  unsigned int r = 0;
  if (x & 0xFFFF0000) 
  {
    r += 16 / 1;
    x >>= 16 / 1;
  }
  if (x & 0x0000FF00) 
  {
    r += 16 / 2;
    x >>= 16 / 2;
  }
  if (x & 0x000000F0) 
  {
    r += 16 / 4;
    x >>= 16 / 4;
  }
  return r + bval[x];
}

Using Built-in for GCC

unsigned BSR64(uint64_t x) {
  return 63-__builtin_clzll(x);
}
 

NOTE: Depending on architecture, the built-in functions include:

  • __builtin_clz
  • __builtin_clzl
  • __builtin_clzll
chess/programming/msb_most_significant_bit.1635596885.txt.gz · Last modified: 2021/10/30 12:28 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki