ufo 8 hours ago

Alas, as of last month we changed Pallene's compiler and it now generates C gotos for control flow. ( ^ _ ^ メ ) It helped with certain optimizations...

1
90s_dev 7 hours ago

Ha! Called it again!

But why gotos instead of proper control flow? Is it just easier to emit?

ufo 4 hours ago

We switched from a hierarchical internal representation to a flat one, with gotos. Made it easier to write textbook otimization algorithms. In theory we could try to reconstruct the if and while statements when it's time to emit C, but gotos are more straightforward now.

90s_dev 1 hour ago

This sounds like it could compete with V8 at some point in the next few years. Honestly it could be a game changer. Looking forward to watching its progress.