top | item 35925933

(no title)

sillycross | 2 years ago

Look at the CPS-version of the add.

discuss

order

celeritascelery|2 years ago

I saw that. I think I understand a little better. The CPS is to remove the calls between bytecodes, but wouldn’t do anything about lua function calls.

sillycross|2 years ago

That's correct. Lua function calls are not that easy to remove, as function is first-class value in Lua so can be redefined at any time. To remove a function call, you need speculative compilation and OSR-exit, which is outside the job of the baseline JIT.