Back to main page

Code generator for bit permutations


Back to main page


Please enter an index vector (0..31 or $0..$1f, or * for don't care):

origin base indexes refer

Options: Allow using cycles

Actual connections

This is a BPC permutation.

Best method found: BP permutation (about 10 cycles on superscalar processors):

x = bit_permute_step(x, 0x22222222, 1);  // Bit index swap 0,1
x = bit_permute_step(x, 0x0c0c0c0c, 2);  // Bit index swap 1,2

See documentation to bit_permute_step, bit_permute_step_simple, rol.
pext and pdep can be emulated with compress_right and expand_right.
This result is not necessarily the best possible, but at least several methods have been challenged. The given cycles are only estimated and may vary significantly depending on the used processor. Thus, the selected method might not be the best one for your application. You can however influence the choice by using the options above.
See also some notes on the inner workings.
There is an even better permutation code calculator calcperm.* which is usable for various word sizes (Pascal and C++ sources).

Error reports, comments or questions? E-mail: info@sirrida.de


You may bookmark this page as http://programming.sirrida.de?calcperm.php.
Last change: 2015-11-10