Samsung / walrus

WebAssembly Lightweight RUntime
Apache License 2.0
35 stars 10 forks source link

[WIP] Implement live variable analysis #229

Open kulcsaradam opened 4 months ago

kulcsaradam commented 4 months ago

With this patch I aim to optimize Walrus stack useage. This patch does not run without errors yet. Currently, there is a variable pushed down the stack for each local variable.

My idea is to analyse the Bytecode and get the maximum amount of variables the code needs at one point and only push down the stack that given number of variables.

The patch is still in draft, I am just curious about things I might have missed or done better! There are definitly parts that can be optimited, which I will try to once I get the patch running properly.