• Stars
    star
    255
  • Rank 159,729 (Top 4 %)
  • Language
    Shell
  • Created almost 8 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

OCamlrun WebAssembly - OCaml Bytecode Interpreter in WASM

OCamlrun WebAssembly

This is a build script for building the OCaml bytecode interpreter for WebAssembly using emscripten.

Why a VM in a VM?

Why not compile OCaml code straight to WebAssembly?

Currently it is not that easy because AFAIK there is no high fidelity maintained LLVM output target nor any WebAssembly compatible output target. It would also be difficult to do one because WebAssembly currently doesn't have the necessary hooks to scan its stack for GC pointers. Maybe OCaml already maintains a manual stack or can be modified to do so, I don't know.

The interpreter is written in portable C and maintains its own stack so it makes this easy.

However, a big downside of WebAssembly code right now is that VMs implement it as an AOT compilation toolchain. That means that you spend a lot of time upfront compiling code.

If you have a lot of code paths that are not hot, you're wasting a lot more cycles compiling it than it would take to run it in the interpreter. When you run it in the interpreter you can start executing code instantly.

It might be the case that browsers change to an interpreter mode in the future which might change this equation.

Why not compile OCaml code to JavaScript like js_of_ocaml or BuckleScript?

This is probably still the best technique if you want full GC interop and it gives you JIT capabilities for hot paths.

However, if you have a lot of code that means a lot of JavaScript to parse and compile on the client during start up. The benefit of running a bytecode is that it can immediately start executing.

Additionally, by using the GC built specifically for OCaml, you take advantage of more predictable and consistent GC behavior across browsers.

Multicore OCaml is coming and so is Shared Typed Array Buffers and Atomics for the web. By using a custom memory model we'll be able to take advantage of parallelism in the browser.

Installation

I have only tried this on OS X so far and haven't polished any build scripts yet.

1. Browser

To test this you'll need a browser with WebAssembly enabled such as Chrome Canary.

2. Emsdk

First you need to install the Emscripten SDK. According to the WebAssembly Developer's Guide you need to currently build the toolchain from source. It says to include binaryen-master-64bit but that didn't work for me and currently I don't need it. sdk-incoming-64bit should be enough. (Note: This will need a lot of disk space to rebuild clang from source.)

git clone https://github.com/juj/emsdk.git
cd emsdk
./emsdk install sdk-incoming-64bit
./emsdk activate sdk-incoming-64bit

After these steps, the installation is complete. To enter an Emscripten compiler environment in the current command line prompt, type

source ./emsdk_env.sh

Return to the project folder.

3. Checkout the OCaml source code

The ocaml source is checked out as a Git submodule of this project.

git submodule update --init --recursive

4. Build

In the root of this repo run the build script.

./build.sh

It will build the example.ml file into OCaml bytecode. This will then be embedded into emscripten's virtual file system.

It will also build the OCaml bytecode interpreter and GC into a Web Assembly file.

example.html contains the bootstrapping script.

You can try it out in your browser using emrun (or just server it over HTTP yourself).

emrun --browser=chrome_canary example.html

It should print to the console with the default example.

Next Steps

This is just the easiest set up to build to get started. However, emscripten and ocamlrun has a lot of features such a virtual file system and dynamic linking that is often not applicable to the web context. We'll want to strip that down into the smallest possible library that can fit neatly into an existing web toolchain.

This script also compiles with the -O2 flag. We should see if we could cut down of file size with one of the other flags.

More Repositories

1

ecmascript-immutable-data-structures

599
star
2

ecmascript-generator-expression

Proposal for do Generator Expressions in ECMAScript. Work in progress. Edit Add topics
96
star
3

ecmascript-undefined-propagation

ECMAScript proposal to relax the rules to return `undefined` for property access on `null` or `undefined` instead of throwing.
76
star
4

ecmascript-shallow-equal

A proposal for ECMAScript for Object.shallowEqual.
51
star
5

link.js

Link.js is a module loader and conversion tool. It supports Labeled Modules, CommonJS and Asynchronous Module Definitions (AMD).
JavaScript
29
star
6

art-illustrator

This project provides Adobe Illustrator ExtendScripts to export graphics to ART Script files.
JavaScript
17
star
7

ecmascript-scoped-constructor-arguments

An idea for ECMAScript.
11
star
8

linq-to-sqlxml

A document database emulator on top of Microsoft SQL Server XML columns
C#
11
star
9

blink-devtools

This is an unofficial mirror of the Blink Developer Tools.
JavaScript
11
star
10

ast-js

Provides an Abstract Syntax Tree (AST) to generate ECMAScript code.
JavaScript
9
star
11

signapk

A .NET port of Android's SignApk tool.
C#
9
star
12

art-svg

SVG Parser for ART
JavaScript
9
star
13

calyptus.mvc

Calyptus MVC is a server side MVC web application framework for the .NET and Mono platforms.
C#
8
star
14

art-morph

Plugin for ART that allow you to morph between two paths.
JavaScript
7
star
15

art-canvas

Canvas renderer for ART
JavaScript
7
star
16

coretools

Experimental draft of the Core of MooTools Core
JavaScript
7
star
17

calyptus.lob

Calyptus Lob provides Large Object (BLOB/CLOB/...) support for DDD ORMs on the .NET/Mono platforms. Such as NHibernate.
C#
6
star
18

labeled-modules-spec

This is the home of the Labeled Modules specification. It's derived from the CommonJS Modules specification.
JavaScript
6
star
19

react-builds

Just to show the diff of builds
JavaScript
5
star
20

mootools-editable

JavaScript
5
star
21

collectables

A unified model for event composition and collections for JavaScript. Enumerables, Scales, Observables, Futures, Promises, Sets, Lists, Maps etc.
JavaScript
4
star
22

mootools-lang

Language Files for the MooTools JavaScript Library
JavaScript
3
star
23

art-script

Provides a stub API to easily generate ART Script files (.art.js)
JavaScript
3
star
24

art-scene

Placeholder for something awesome regarding animation and interaction in the ART project.
3
star
25

calyptus.resourcemanager

The Web Resource Manager is a server side tool to manage JavaScript, CSS, and other resources for the .NET and Mono platforms. It can be used with or independently of ASP.NET.
JavaScript
3
star
26

ecmascript-realm-snapshot

Proposal for Realm snapshots in ECMAScript. Work in progress.
2
star
27

mootools-draggable

Native HTML5 draggable and DragEvent support for MooTools
JavaScript
2
star
28

prepack-2

Prepack is a partial evaluator for JavaScript. Prepack rewrites a JavaScript bundle, resulting in JavaScript code that executes more efficiently.
JavaScript
1
star