Population count

Die popcnt-Anweisungen, abgekürzt für Population Count, werden verwendet, um die Anzahl der 1en in der binären Darstellung einer Zahl zu zählen.

Probieren Sie es aus

Syntax

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
Anweisung Binärer Opcode
i32.popcnt 0x69
i64.popcnt 0x7b