ikskuh / LoLa

LoLa is a small programming language meant to be embedded into games.
https://lola.random-projects.net/
MIT License
194 stars 10 forks source link

Implement variable-usage detection to reduce number of local variables #19

Open ikskuh opened 4 years ago

ikskuh commented 4 years ago

Use something like SSA to detect that local variable slots can be reused, so the virtual machine can do smaller allocations for local variables.