Skip to content

Latest commit

 

History

History
228 lines (162 loc) · 15.3 KB

README.md

File metadata and controls

228 lines (162 loc) · 15.3 KB
layout toc_group link_title permalink
docs
wasm
GraalWasm
/reference-manual/wasm/

GraalWasm

GraalWasm is an open-source WebAssembly runtime. It runs WebAssembly programs in binary format and can be used to embed and leverage WebAssembly modules in Java applications. GraalWasm is under active development and implements a number of WebAssembly extensions.

WebAssembly Module System

Using GraalWasm, you can load WebAssembly modules in your application, access them from Java, and make them interoperate with other Graal languages. To proficiently use GraalWasm, it is important to first understand how GraalWasm maps WebAssembly's module system onto the Polyglot API.

GraalWasm uses the binary format of WebAssembly modules as its language. A valid Source that you can evaluate using GraalWasm is always a single WebAssembly module in the binary format.

Here is one way you can build a WebAssembly Source:

Source source = Source.newBuilder("wasm", new File("example.wasm")).name("example").build();

When you evaluate a WebAssembly Source, the module is parsed, and validated, and a module instance is returned as the resulting value. The module instance can also later be retrieved from the top-level bindings. The name of the binding in the top-level scope is the same as the name of the Source that was evaluated.

// Evaluate the Source named "example".
Value exampleModule = context.eval(source);
// It is now accessible under the binding name "example".
assert context.getBindings("wasm").getMember("example") == exampleModule;

Source names are important in GraalWasm because they are also used to resolve module imports. If a module tries to import a symbol from module foo, then GraalWasm looks for that symbol in the module whose Source was named foo. These imports are not resolved until when a WebAssembly module instance's members are accessed or executed for the first time in a given context.

Module Instance Objects

By evaluating WebAssembly modules through the Polyglot API, you get access to module instance objects. Module instance objects expose members for every symbol that was exported from the WebAssembly module. You can get a list of all exported symbols using getMemberKeys, access individual exports using getMember and, in the case of mutable globals, use putMember to set their values.

Here is how the various kinds of WebAssembly exports map to polyglot values:

  • Functions

    Functions are exported as executable values, which you can call using execute. Function arguments and return values are mapped between WebAssembly value types and polyglot values using the type mapping. If a function returns multiple values, these are wrapped in an interop array.

  • Globals

    When you access an exported global using getMember, you get the global's value, mapped using the type mapping. If the global is mutable, you can also update its value using putMember. Currently, setting globals works only for numeric types, whose value is mapped according to the type mapping.

  • Memories

    Exported memories implement both the array interface and the buffer interface. The array interface lets you view the memory as an array of bytes using getArrayElement and setArrayElement. The buffer interface lets you do bulk copies of memory using readBuffer and read and write the Java primitive types from and to the memory using the readBuffer* and writeBuffer* methods.

  • Tables

    Exported tables are opaque and cannot be queried or modified.

Type Mapping

Whenever a WebAssembly value is passed either to Java code or to another Graal language, via a function call, return value, or exported global access, it is mapped to a polyglot value. The tables below show how this mapping works. WebAssembly is a statically-typed language and all values (locals, function arguments, return values) have a static type. Based on this type, GraalWasm interprets a polyglot value as a value of this type or reports a type error if the types do not match.

WebAssembly Values as Polyglot Values

This table describes for each WebAssembly value type which polyglot interfaces the resulting value implements.

WebAssembly Type Polyglot Interface
i32 Number that fits in int
i64 Number that fits in long
f32 Number that fits in float
f64 Number that fits in double
v128 Read-only buffer of 16 bytes
funcref Executable object
externref Returned verbatim

Passing Arguments to WebAssembly Functions

When calling an exported WebAssembly function, its exact type signature must be respected. The table below gives the expected argument type for every possible WebAssembly parameter type.

WebAssembly Parameter Type Expected Argument Type
i32 int
i64 long
f32 float
f64 double
v128 Existing v128 value received from WebAssembly
funcref WebAssembly's ref.null or an exported WebAssembly function
externref Can be anything (only WebAssembly's ref.null is seen as null by ref.is_null)

Options

GraalWasm can be configured with several options. When using the Polyglot API, options are passed programmatically to the Context object:

Context.newBuilder("wasm").option("wasm.Builtins", "wasi_snapshot_preview1").build();

See the Polyglot Programming reference for more information on how to set options programmatically.

The available options are divided into stable and experimental options. Experimental options are provided with no guarantee of future support and can change from version to version. If an experimental option is used with the wasm launcher, the --experimental-options option has to be provided. When using a Context, the method allowExperimentalOptions(true) has to be called on the Context.Builder.

Stable Options

The following stable options are provided:

  • --wasm.Builtins: Exposes some of the GraalWasm-provided built-in modules. The syntax for the value is [<linkingName>:]<builtinModuleName>,[<linkingName>:]<builtinModuleName>,.... The requested modules are comma-separated. Every module may optionally be prefixed with a colon-separated linking name. If a linking name is given, the module is exported under the given linking name. Otherwise, the module is exported under its built-in module name.

    The provided built-in modules are:

  • --wasm.WasiMapDirs: A list of pre-opened directories that should be accessible through the WebAssembly System Interface API. The syntax for the value is [<virtualDir>::]<hostDir>,[<virtualDir>::]<hostDir>,.... The pre-opened directories are comma-separated. Every directory may optionally be prefixed with a double-colon-separated virtual path. Inside the WebAssembly module, the directory is available at the virtual path. If the virtual path is omitted, the pre-opened directory will be on the same path as on the host filesystem.

    This option must be set to allow modules that use WASI to access the filesystem. Access will be granted only to the contents of these pre-opened directories.

Experimental Options

Note that these options are experimental and are not guaranteed to be maintained or supported in the future. To use them, the --experimental-options option is required, or experimental options have to be enabled on the Context, see above.

The options below correspond to feature proposals that add new features to the WebAssembly standard. The accepted values are true for enabling a feature and false for disabling a feature. Features that have already been merged into the WebAssembly spec are enabled by default in GraalWasm. Features that are not yet merged into the spec are disabled by default. Users can override the defaults to experiment with upcoming features or opt out of standardized features.

  • --wasm.BulkMemoryAndRefTypes: Enable support for the bulk memory operations feature and reference types feature, exposing instructions for efficient memory initialization and adding support for first-class opaque references. Defaults to true.

  • --wasm.ExtendedConstExpressions: Enable support for the extended constant expressions feature, adding limited support for arithmetic instructions inside constant expressions. Defaults to false.

  • --wasm.Memory64: Enable support for the Memory64 feature, letting memories be larger than 4 GiB. Defaults to false.

  • --wasm.MultiMemory: Enable support for the multiple memories feature, allowing modules to have multiple memories. Defaults to false.

  • --wasm.MultiValue: Enable support for the multi-value feature, letting functions return multiple values. Defaults to true.

  • --wasm.SaturatingFloatToInt: Enable support for the non-trapping float-to-int conversions feature, adding float-to-int conversion instructions that saturate instead of failing with a trap. Defaults to true.

  • --wasm.SignExtensionOps: Enable support for the sign-extension operators feature, adding instructions for extending signed integer values. Defaults to true.

  • --wasm.SIMD: Enable support for the fixed-width SIMD feature, introducing a new value type, v128, and associated instructions for SIMD arithmetic. Defaults to true.

  • --wasm.Threads: Enable support for the threading feature, letting WebAssembly modules use new instructions for atomic memory access. Defaults to false.

Using the GraalWasm Launcher

GraalWasm standalones provide the wasm launcher, which you can use to execute programs compiled as WebAssembly binary modules.

wasm [OPTION...] [--entry-point=FN] FILE [ARG...]
  • [OPTION...]

    The options consist of GraalWasm engine options, prefixed with --wasm., for example --wasm.WasiMapDirs=preopened-dir, and any other polyglot engine options. When using the wasm launcher, the --wasm.Builtins=wasi_snapshot_preview1 option is set by default so that you can directly execute modules compiled against the WebAssembly System Interface Snapshot Preview 1.

    The available options are documented in Options. You can also get a full list of GraalWasm engine options by passing the --help:wasm option to the wasm launcher. To include internal options, use --help:wasm:internal. Note that those lists both include stable, supported options, and experimental options.

  • [--entry-point=FN]

    You can specify the --entry-point option to choose which exported function is to be used as the module's entry point, for example --entry-point=my_custom_main_fn. If the --entry-point option is missing, GraalWasm will try to auto-detect the entry point. It will first look for an exported function named _start and then for an exported function named _main. The first such function found will be executed as the entry point by the wasm launcher.

  • FILE

    This is the path to the binary module that will be executed.

  • [ARG...]

    Program arguments that are accessible to the program through the WASI args_get and args_sizes_get functions.

Related Documentation