大於
gt 指令,是 greater than(大於)的縮寫,用於檢查一個數字是否大於另一個數字。如果第一個數字大於第二個數字,則將 1 推送到堆疊;否則,將 0 推送到堆疊。
整數型別有單獨的有符號 (gt_s) 和無符號 (gt_u) 數字的“大於”指令。
試一試
(module
(import "env" "log_bool" (func $log_bool (param i32)))
(func $main
;; load `10` and `2` onto the stack
i32.const 10
i32.const 2
i32.gt_u ;; check if `10` is greater than '2'
call $log_bool ;; log the result
)
(start $main)
)
const url = "{%wasm-url%}";
function log_bool(value) {
console.log(Boolean(value));
// Expected output: true
}
await WebAssembly.instantiateStreaming(fetch(url), {
env: { log_bool },
});
語法
wat
;; load 2 numbers on to the stack
local.get $num
i32.const 2
;; check if $num is greater than '2'
i32.gt_u
;; if $num is greater than the `2`, `1` will be pushed on to the stack,
;; otherwise `0` will be pushed on to the stack.
| 指令 | 二進位制操作碼 |
|---|---|
i32.gt_s |
0x4a |
i32.gt_u |
0x4b |
i64.gt_s |
0x55 |
i64.gt_u |
0x56 |
f32.gt |
0x5e |
f64.gt |
0x64 |