wasm-to-asm
wasm-to-asm copied to clipboard
Optimize instruction sequences
- [ ] Arithmetic operations with constants (e.g.
(i32.add x (i32.const 1)) - [ ] Local arithmetic updates with constants (e.g.
(set_local x (i32.add (get_local x) (i32.const 1)))) - [ ] Local arithmetic updates (e.g.
(set_local x (i32.add (get_local x) y)))