编译 – 工具可用于将WebAssembly“组装”到x86-64本机代码吗?

我猜测WASM二进制文件通常是JIT编译为本机代码,但是给定WASM源代码,是否有工具可以查看实际生成的x86-64机器代码?

或者以不同的方式问,是否有一个消耗WASM并输出本机代码的工具? 最佳答案 在线WasmExplorer使用SpiderMonkey编译器将C代码编译为WebAssembly和FireFox x86.鉴于以下简单功能:

int testFunction(int* input, int length) {
  int sum = 0;
  for (int i = 0; i < length; ++i) {
    sum += input[i];
  }
  return sum;
}

这是x86输出:

wasm-function[0]:
  sub rsp, 8                            ; 0x000000 48 83 ec 08
  cmp esi, 1                            ; 0x000004 83 fe 01
  jge 0x14                              ; 0x000007 0f 8d 07 00 00 00
 0x00000d:                              
  xor eax, eax                          ; 0x00000d 33 c0
  jmp 0x26                              ; 0x00000f e9 12 00 00 00
 0x000014:                              
  xor eax, eax                          ; 0x000014 33 c0
 0x000016:                              ; 0x000016 from: [0x000024]
  mov ecx, dword ptr [r15 + rdi]        ; 0x000016 41 8b 0c 3f
  add eax, ecx                          ; 0x00001a 03 c1
  add edi, 4                            ; 0x00001c 83 c7 04
  add esi, -1                           ; 0x00001f 83 c6 ff
  test esi, esi                         ; 0x000022 85 f6
  jne 0x16                              ; 0x000024 75 f0
 0x000026:                              
  nop                                   ; 0x000026 66 90
  add rsp, 8                            ; 0x000028 48 83 c4 08
  ret 

你可以view this example online.

WasmExplorer通过服务将代码编译成wasm / x86 – 您可以看到scripts that are run on Github – 您应该能够使用这些来自行构建命令行工具.

点赞