BMI2
読み:ビーエムアイ-トゥー
外語:BMI2: bit manipulation Instructions 2
Intel AVXに関係するビット操作命令BMIの第2グループ。
概要
BMI1に対し、更に命令を追加するもの。
VEX符号化が必要な命令だが、演算対象はXMM/YMMではなく通常のCPUレジスターである。その代わり、3オペランド命令などが存在する。
特徴
命令
- bzhi ‐ Zero High Bits Starting with Specified Bit Position
- mulx ‐ Unsigned Multiply Without Affecting Flags
- pdep ‐ Parallel Bits Deposit
- pext ‐ Parallel Bits Extract
- rorx ‐ Rotate Right Logical Without Affecting Flags
- sarx/shlx/shrx ‐ Shift Without Affecting Flags
機能の有無判別
EAXレジスターに7、ECXレジスターに0を代入してCPUID命令を実行し、EBXレジスターに得られたフラグのビット8が1なら対応している。
再検索