Comment on Fjord – F# programming language for the JVMparentComments−nicolast13yCan't you lambda-lift & fully CPS-convert the code somewhere throughout compilation, then use a trampoline at runtime?−lysium13yI'd say that's a huge performance hit (return, check, call instead of jump). Plus, your JIT might not like it.
Comments
Can't you lambda-lift & fully CPS-convert the code somewhere throughout compilation, then use a trampoline at runtime?
I'd say that's a huge performance hit (return, check, call instead of jump). Plus, your JIT might not like it.