show/hide this revision's text 3 added 216 characters in body

A suggestion that I don't want to code right now is to use a loop, an array to hold partial results, and constants to pick up the bits m at a time.

loop 
   s[3*i] += x & (1 << 0);
   s[3*i+1] += x & (1 << 1);
   s[3*i+2] += x & (1 << 2);
   x >> 3;

This will pick too many bits in each sum. But you can also keep track of the intermediate results and subtract from the sums as you go, to account for the bit that may not be there anymore.

loop 
   s[3*i] += p[3*i]   = x & (1 << 0);
   s[3*i+1] += p[3*i+1] = x & (1 << 1);
   s[3*i+2] += p[3*i+2] = x & (1 << 2);

   s[3*i] -= p[3*i-10];
   s[3*i+1] -= p[3*i-9];
   s[3*i+2] -= p[3*i-8];
   x >> 3;

with the appropriate bounds checking, of course.

The fastest approach is to just hardcode the sums themselves.

s[0] = (x & (1<<0)) + (x & (1<<3)) + (x & (1<<6)) + (x & (1<<9));

etc. (The shifts occur at compile time.)

show/hide this revision's text 2 added 44 characters in body

A suggestion that I don't want to code right now is to use a loop, an array to hold partial results, and constants to pick up the bits m at a time.

loop 
   s1 s[3*i] += x & (1 << 0);
   s2 s[3*i+1] += x & (1 << 1);
   s3 s[3*i+2] += x & (1 << 2);
   x >> 3;

This will pick too many bits in each sum. But you can also keep track of the intermediate results and subtract from the sums as you go, to account for the bit that may not be there anymore.

loop 
   s1 s[3*i] += p[ip[3*i]   = x & (1 << 0);
   s2 s[3*i+1] += p[i+1p[3*i+1] = x & (1 << 1);
   s3 s[3*i+2] += p[i+2p[3*i+2] = x & (1 << 2);

   s1 s[3*i] -= p[i-10]p[3*i-10];
   s2 s[3*i+1] -= p[i-9]p[3*i-9];
   s3 s[3*i+2] -= p[i-8]p[3*i-8];
   x >> 3;

with the appropriate bounds checking, of course.

show/hide this revision's text 1

A suggestion that I don't want to code right now is to use a loop, an array to hold partial results, and constants to pick up the bits m at a time.

loop 
   s1 += x & (1 << 0);
   s2 += x & (1 << 1);
   s3 += x & (1 << 2);
   x >> 3;

This will pick too many bits in each sum. But you can also keep track of the intermediate results and subtract from the sums as you go, to account for the bit that may not be there anymore.

loop 
   s1 += p[i]   = x & (1 << 0);
   s2 += p[i+1] = x & (1 << 1);
   s3 += p[i+2] = x & (1 << 2);

   s1 -= p[i-10];
   s2 -= p[i-9];
   s3 -= p[i-8];
   x >> 3;

with the appropriate bounds checking, of course.