How to start using WebAssembly today

WebAssembly (short: wasm) is a new binary format for the web, created by Google, Microsoft, Mozilla and others. It will be used for performance critical code and to compile languages other than JavaScript (especially C/C++) to the web platform. It can be seen as a next step for asm.js

.--.      .--.   ____       .-'''-. ,---.    ,---.
|  |_     |  | .'  __ `.   / _     \|    \  /    |
| _( )_   |  |/   '  \  \ (`' )/`--'|  ,  \/  ,  |
|(_ o _)  |  ||___|  /  |(_ o _).   |  |\_   /|  |
| (_,_) \ |  |   _.-`   | (_,_). '. |  _( )_/ |  |
|  |/    \|  |.'   _    |.---.  \  :| (_ o _) |  |
|  '  /\  `  ||  _( )_  |\    `-'  ||  (_,_)  |  |
|    /  \    |\ (_ o _) / \       / |  |      |  |
`---'    `---` '.(_,_).'   `-...-'  '--'      '--'

Technically WebAssembly is a virtual ISA that all modern browsers will soon implement. The code is compiled once and then executed in any browser on any computer in the exact same way (sounds very much like Java VM). WebAssembly has a lot of advantages, such as faster execution and smaller binary, but the greatest thing is that web programming is not limited to JavaScript anymore (well, not really).

Browser

The first thing you need is a browser that supports wasm: support for WebAssembly is enabled by default starting with in Firefox 52 and Chrome 57. If it is not enabled for some reason, for Firefox open about:config and set javascript.options.wasm to true, for Chrome open chrome://flags/#enable-webassembly and enable the switch.

The toolchain

For building wasm code we will need three tools LLVM with Clang (built with WebAssembly support), Binaryen and WABT (The WebAssembly Binary Toolkit).

Here is how to build it:

The code

First create our index.html. It can be as simple as this:

And we are going to need our C code:

Building

For building we will need four tools located at:

  • llvm/build/bin/clang
  • llvm/build/bin/llc
  • binaryen/build/bin/s2wasm
  • wabt/build/wat2wasm

I will use their basenames because they are in my PATH.

Execute the following commands:

clang -emit-llvm --target=wasm32 -S sample.c
llc sample.ll -march=wasm32
s2wasm sample.s -o sample.wat
wat2wasm sample.wat -o sample.wasm

Now you have your C code first compiled to LLVM IR then to wasm through S-expressions representation.

Let’s now take a closer look at each resulting file:

You are now free to delete everything except for index.html and sample.wasm. Start your favorite web-server (I use busybox httpd -f -p 8000) and point your web browser to it, it should show a button and execute your code each time you click it.

The easy way

I have recently created a script that automates the building proccess described above. Just clone this repo, then run ./build-all.sh to build the toolchain, then you can pass the filename of your C source code as an argument to c2wasm script and wasm code will be produced.

Written on June 13, 2016