Bit Manipulation Instructions Sets (BMI sets) are extensions to the x86 instruction set architecture for microprocessors from Intel and AMD. The purpose of these instruction sets is to improve the speed of bit manipulation. All the instructions in these sets are non-SIMD and operate only on general-purpose registers. There are two sets published by Intel: BMI (here referred to as BMI1) and BMI2; they were both introduced with the Haswell microarchitecture. Another two sets were published by AMD: ABM (Advanced Bit Manipulation, which is also a subset of SSE4a implemented by Intel as part of SSE4.2 and BMI1), and TBM (Trailing Bit Manipulation, an extension introduced with Piledriver-based processors as an extension to BMI1, but dropped again in Zen-based processors).
ABM is only implemented as a single instruction set by AMD; all AMD processors support both instructions or neither. Intel considers POPCNT
as part of SSE4.2, and LZCNT
as part of BMI1. POPCNT
has a separate CPUID flag; however, Intel uses AMD's ABM
flag to indicate LZCNT
support (since LZCNT
completes the ABM).[1]
Instruction | Description[2] |
---|---|
POPCNT |
Population count |
LZCNT |
Leading zeros count |
LZCNT
is related to the Bit Scan Reverse (BSR
) instruction, but sets the ZF (if the result is zero) and CF (if the source is zero) flags rather than OF, and produces a defined result (the source operand size in bits) if the source operand is zero. For a non-zero argument, sum of LZCNT
and BSR
results is argument bit width minus 1 (for example, if 32-bit argument is 0x000f0000
, LZCNT gives 12, and BSR gives 19).
The instructions below are those enabled by the BMI
bit in CPUID. Intel officially considers LZCNT
as part of BMI, but advertises LZCNT
support using the ABM
CPUID feature flag.[1] BMI1 is available in AMD's Jaguar,[3] Piledriver[4] and newer processors, and in Intel's Haswell[5] and newer processors.
Instruction | Description[1] | Equivalent C expression[6] |
---|---|---|
ANDN |
Logical and not | ~x & y |
BEXTR |
Bit field extract (with register) | (src >> start) & ((1 << len) - 1) |
BLSI |
Extract lowest set isolated bit | x & -x |
BLSMSK |
Get mask up to lowest set bit | x ^ (x - 1) |
BLSR |
Reset lowest set bit | x & (x - 1) |
TZCNT |
Count the number of trailing zero bits | N/A |
TZCNT
is almost identical to the Bit Scan Forward (BSF
) instruction, but sets the ZF (if the result is zero) and CF (if the source is zero) flags rather than OF. For a non-zero argument, result of TZCNT
and BSF
is equal.
Intel introduced BMI2 together with BMI1 in its line of Haswell processors. Only AMD has produced processors supporting BMI1 without BMI2; BMI2 is supported by AMDs Excavator architecture and newer.[7]
Instruction | Description |
---|---|
BZHI |
Zero high bits starting with specified bit position [src & (1 << inx)-1]; |
MULX |
Unsigned multiply without affecting flags, and arbitrary destination registers |
PDEP |
Parallel bits deposit |
PEXT |
Parallel bits extract |
RORX |
Rotate right logical without affecting flags |
SARX |
Shift arithmetic right without affecting flags |
SHRX |
Shift logical right without affecting flags |
SHLX |
Shift logical left without affecting flags |
The PDEP
and PEXT
instructions are new generalized bit-level compress and expand instructions. They take two inputs; one is a source, and the other is a selector. The selector is a bitmap selecting the bits that are to be packed or unpacked. PEXT
copies selected bits from the source to contiguous low-order bits of the destination; higher-order destination bits are cleared. PDEP
does the opposite for the selected bits: contiguous low-order bits are copied to selected bits of the destination; other destination bits are cleared. This can be used to extract any bitfield of the input, and even do a lot of bit-level shuffling that previously would have been expensive. While what these instructions do is similar to bit level gather-scatter SIMD instructions, PDEP
and PEXT
instructions (like the rest of the BMI instruction sets) operate on general-purpose registers.[8]
The instructions are available in 32-bit and 64-bit versions. An example using arbitrary source and selector in 32-bit mode is:
Instruction | Selector mask | Source | Destination |
---|---|---|---|
PEXT |
0xff00fff0 | 0x12345678 | 0x00012567 |
PDEP |
0xff00fff0 | 0x00012567 | 0x12005670 |
TBM consists of instructions complementary to the instruction set started by BMI1; their complementary nature means they do not necessarily need to be used directly but can be generated by an optimizing compiler when supported. AMD introduced TBM together with BMI1 in its Piledriver[4] line of processors; later AMD Jaguar and Zen-based processors do not support TBM.[3] No Intel processors (at least through Coffee Lake) support TBM.
Instruction | Description[2] | Equivalent C expression[9] |
---|---|---|
BEXTR |
Bit field extract (with immediate) | (src >> start) & ((1 << len) - 1) |
BLCFILL |
Fill from lowest clear bit | x & (x + 1) |
BLCI |
Isolate lowest clear bit | x | ~(x + 1) |
BLCIC |
Isolate lowest clear bit and complement | ~x & (x + 1) |
BLCMSK |
Mask from lowest clear bit | x ^ (x + 1) |
BLCS |
Set lowest clear bit | x | (x + 1) |
BLSFILL |
Fill from lowest set bit | x | (x - 1) |
BLSIC |
Isolate lowest set bit and complement | ~x | (x - 1) |
T1MSKC |
Inverse mask from trailing ones | ~x | (x + 1) |
TZMSK |
Mask from trailing zeros | ~x & (x - 1) |
Note that instruction extension support means the processor is capable of executing the supported instructions for software compatibility purposes. The processor might not perform well doing so. For example Zen, Zen+ and Zen 2 processors implement PEXT and PDEP instructions using microcode resulting in the instructions executing significantly slower than the same behaviour recreated using other instructions[12]. For optimum performance it is recommended that compiler developers choose to use individual instructions in the extensions based on architecture specific performance profiles rather than on extension availability.
The content is sourced from: https://handwiki.org/wiki/Bit_Manipulation_Instruction_Sets