擴充套件

extend 指令用於將 i32 型別(整數)轉換為 i64 型別。此指令有帶符號和無符號兩種版本。

試一試

(module
  (import "console" "log" (func $log (param i64)))
  (func $main

    i32.const 10 ;; push an i32 onto the stack

    i64.extend_i32_s ;; sign-extend from i32 to i64

    call $log ;; log the result

  )
  (start $main)
)
const url = "{%wasm-url%}";
await WebAssembly.instantiateStreaming(fetch(url), { console });

語法

wat
;; 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