Hacker News new | ask | show | jobs
by amelius 3128 days ago
This makes me wonder: does WASM allow a JIT (specializer)? I.e., does WASM allow self-modifying code or code to write code?

If not, then JIT'ed JS could still be faster than WASM.

1 comments

Wasm code is normally JIT-ed by the JS VM. That is, browser implementations don’t have an entire separate VM for wasm.