计算尾随零
ctz 指令,是 count trailing zeros(计算尾随零)的缩写,用于计算数字二进制表示末尾零的数量。
试一试
(module
(func (export "trailing0") (param $num i32) (result i32)
;; load number onto the stack
local.get $num
;; check how many trailing zeros and return the result
i32.ctz
)
)
const url = "{%wasm-url%}";
await WebAssembly.instantiateStreaming(fetch(url), { console }).then(
(result) => {
const trailing0 = result.instance.exports.trailing0;
console.log(
`Trailing zeros: ${trailing0(0b00000000_10000000_00000000_00000000)}`,
);
// Expected output: "Trailing zeros: 23"
},
);
语法
wat
;; load a number onto the stack
i32.const 8388608 ;; 00000000_10000000_00000000_00000000
;; count trailing zeros
i32.ctz
;; the top item on the stack will now be 23
| 指令 | 二进制操作码 |
|---|---|
i32.ctz |
0x68 |
i64.ctz |
0x7a |