人口计数
**popcnt
** 指令,即人口计数的简称,用于计算数字二进制表示中1
的个数。
试试看
语法
wasm
;; load a number onto the stack
i32.const 130 ;; 10000010
;; count the 1s
i32.popcnt
;; the top item on the stack will now be 2
指令 | 二进制操作码 |
---|---|
i32.popcnt |
0x69 |
i64.popcnt |
0x7b |