BMI1
読み:ビーエムアイ-ワン
外語:BMI1: bit manipulation Instructions 1
Intel AVXに関係するビット操作命令BMIの第1グループ。
概要
VEX符号化が必要な命令だが、演算対象はXMM/YMMではなく通常のCPUレジスターである。
その代わり、3オペランド命令などが存在する。
AMDは「Piledriver」や「Jaguar」から、Intelは「Haswell」から対応した。
特徴
命令
- andn ‐ Logical AND NOT
- bextr ‐ Bit Field Extract
- blsi ‐ Extract Lowest Set Isolated Bit
- blsmsk ‐ Get Mask Up to Lowest Set Bit
- blsr ‐ Reset Lowest Set Bit
- tzcnt ‐ Count the Number of Trailing Zero Bits
機能の有無判別
EAXレジスターに7、ECXレジスターに0を代入してCPUID命令を実行し、EBXレジスターに得られたフラグのビット3が1なら対応している。
再検索