扩展
**extend
** 指令用于将类型为 i32
的数字转换为 (扩展) 类型为 i64
的数字。 此指令有带符号和无符号版本。
试一试
语法
wasm
;; push an i32 onto the stack
i32.const 10
;; sign-extend from i32 to i64
i64.extend_i32_s
;; the top item on the stack will now be the value 10 of type i64
指令 | 二进制操作码 |
---|---|
i64.extend_i32_s |
0xac |
i64.extend_i32_u |
0xad |