大于或等于
ge
指令(greater or equal 的缩写)用于检查一个数字是否大于或等于另一个数字。如果第一个数字大于或等于第二个数字,则 1
将被压入堆栈,否则 0
将被压入堆栈。
整数类型对于有符号 (ge_s
) 和无符号 (ge_u
) 数字分别具有单独的大于或等于指令。
试一试
语法
wasm
;; load 2 numbers on to the stack
local.get $num
i32.const 2
;; check if $num is greater than or equal to '2'
i32.ge_u
;; if $num is greater than or equal to the `2`, `1` will be pushed on to the stack,
;; otherwise `0` will be pushed on to the stack.
指令 | 二进制操作码 |
---|---|
i32.ge_s |
0x4e |
i32.ge_u |
0x4f |
i64.ge_s |
0x59 |
i64.ge_u |
0x5a |
f32.ge |
0x60 |
f64.ge |
0x66 |