Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

WebAssembly.compile()

BaselineWidely available *

TheWebAssembly.compile() static method compiles WebAssembly binary code into aWebAssembly.Module object.This function is useful if it is necessary to compile a module before it can be instantiated (otherwise, theWebAssembly.instantiate() function should be used).

Note:Webpages that have strictContent Security Policy (CSP) might block WebAssembly from compiling and executing modules.For more information on allowing WebAssembly compilation and execution, see thescript-src CSP.

Syntax

js
WebAssembly.compile(bufferSource)WebAssembly.compile(bufferSource, compileOptions)

Parameters

bufferSource

Atyped array orArrayBuffercontaining the binary code of the Wasm module you want to compile.

compileOptionsOptional

An object containing compilation options. Properties can include:

builtinsOptional

An array of one or more strings that enables the usage ofJavaScript builtins in the compiled Wasm module. The strings define the builtins you want to enable. Currently the only available value is"js-string", which enables JavaScript string builtins.

importedStringConstantsOptional

A string specifying a namespace forimported global string constants. This property needs to be specified if you wish to use imported global string constants in the Wasm module.

Return value

APromise that resolves to aWebAssembly.Module objectrepresenting the compiled module.

Exceptions

Examples

Using compile

The following example compiles the loaded simple.wasm byte code using thecompile() function and then sends it to aworker usingpostMessage().

js
const 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 useWebAssembly.compileStreaming() in most cases, as it is more efficientthancompile().

Enabling JavaScript builtins and global string imports

This example enables JavaScript string builtins and imported global string constants when compiling the Wasm module withcompile(), before instantiating it withinstantiate() then running the exportedmain() function (which logs"hello world!" to the console).See it running live.

js
const importObject = {  // Regular import  m: {    log: console.log,  },};const compileOptions = {  builtins: ["js-string"], // Enable JavaScript string builtins  importedStringConstants: "string_constants", // Enable imported global string constants};fetch("log-concat.wasm")  .then((response) => response.arrayBuffer())  .then((bytes) => WebAssembly.compile(bytes, compileOptions))  .then((module) => WebAssembly.instantiate(module, importObject))  .then((instance) => instance.exports.main());

Specifications

Specification
WebAssembly JavaScript Interface
# dom-webassembly-compile

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp