wasmer/lib
2020-04-09 17:40:29 -07:00
..
api Merge branch 'master' into feature/update-capi-to-use-new-api 2020-04-09 17:40:29 -07:00
clif-backend Minor code update, move conditional block inwards 2020-03-24 16:00:32 -07:00
emscripten Fix up tests for CI 2020-04-06 11:42:44 -07:00
interface-types Merge #1362 2020-04-09 08:05:50 +00:00
kernel-loader Fix kernel-loader with musl. 2020-01-29 01:07:23 +08:00
kernel-net Fix issue with kernel-net; add it to CI 2020-04-08 15:18:04 -07:00
llvm-backend Use the inkwell package on crates.io!! 2020-03-27 15:47:50 -07:00
middleware-common Prepare for 0.16.2 release 2020-03-11 19:15:31 -07:00
runtime Convert usages of Instance::{func,dyn_func} to exports.get 2020-03-26 18:13:45 -07:00
runtime-c-api Update emscripten in C API to use new API crate 2020-04-08 16:40:41 -07:00
runtime-core Merge branch 'master' into feature/update-capi-to-use-new-api 2020-04-09 17:40:29 -07:00
singlepass-backend Merge branch 'master' into android 2020-03-23 13:29:18 -07:00
wasi Support Android 2020-03-23 11:55:31 +09:00
wasi-experimental-io-devices Prepare for 0.16.2 release 2020-03-11 19:15:31 -07:00
win-exception-handler Fix warning (from clang) 2020-03-18 20:07:12 +01:00
.gitignore
README.md Added link to a custom ABI example repo 2020-02-16 12:48:20 -08:00

Wasmer Libraries

Wasmer is modularized into different libraries, separated into three main sections:

Runtime

The core of Wasmer is the runtime, which provides the necessary abstractions to create a good user experience when embedding.

The runtime is divided into two main libraries:

  • runtime-core: The main implementation of the runtime.
  • runtime: Easy-to-use API on top of runtime-core.

Integrations

The integration builds on the Wasmer runtime and allow us to run WebAssembly files compiled for different environments.

Wasmer intends to support different integrations:

Backends

The Wasmer runtime is designed to support multiple compiler backends, allowing the user to tune the codegen properties (compile speed, performance, etc) to best fit their use case.

Currently, we support multiple backends for compiling WebAssembly to machine code:

  • singlepass-backend: Single pass backend - super fast compilation, slower runtime speed
  • clif-backend: Cranelift backend - slower compilation, normal runtime speed
  • llvm-backend: LLVM backend - slow compilation, native runtime speed