WebAssembly.compile() - JavaScript 编辑
The WebAssembly.compile()
function compiles WebAssembly binary code into a WebAssembly.Module
object. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the WebAssembly.instantiate()
function should be used).
Syntax
Promise<WebAssembly.Module> WebAssembly.compile(bufferSource);
Parameters
- bufferSource
- A typed array or ArrayBuffer containing the binary code of the .wasm module you want to compile.
Return value
A Promise
that resolves to a WebAssembly.Module
object representing the compiled module.
Exceptions
- If
bufferSource
is not a typed array, aTypeError
is thrown. - If compilation fails, the promise rejects with a
WebAssembly.CompileError
.
Examples
Using compile
The following example compiles the loaded simple.wasm byte code using the compile()
function and then sends it to a worker using postMessage().
var worker = new Worker("wasm_worker.js");
fetch('simple.wasm').then(response =>
response.arrayBuffer()
).then(bytes =>
WebAssembly.compile(bytes)
).then(mod =>
worker.postMessage(mod)
);
Note: You'll probably want to use WebAssembly.compileStreaming()
in most cases, as it is more efficient than compile()
.
Specifications
Specification |
---|
WebAssembly JavaScript Interface The definition of 'compile()' in that specification. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论