cmm_of_wasm icon indicating copy to clipboard operation
cmm_of_wasm copied to clipboard

A compiler from WebAssembly to native code, via the OCaml backend.

Results 4 cmm_of_wasm issues
Sort by recently updated
recently updated
newest added

Currently we've only got pretty boring things going (i.e., the test suite). Why not get a bigger project, like a WASM game, compiling to native?

emscripten

The original WASM paper used PolyBenchC as a benchmark suite. It would be interesting to get this working with `cmm_of_wasm`, so we can get some performance measurements against: * The...

performance evaluation
emscripten

Currently, memory (and soon tables) require explicit bounds checks to ensure safety. This incurs an additional read, and certainly additional branches. One technique to reduce this would be to use...

optimisation

CMM supports TCO, so we should be able to implement this for WASM calls

optimisation