Hacker News new | ask | show | jobs
by nonsince 2224 days ago
I’ve been writing a one-pass optimising compiler for Wasm. It’s not perfect, but the code it outputs currently outperforms Cranelift's by a factor of 2-10x for many of the files in the Wasm specification testsuite.
2 comments

Wow, that sounds incredible. Is that a .wasm -> .wasm compiler?
Is that due to SIMD or something? I got about 80% of LLVM performance when I was using CraneLift.