Dan Sugalski <[EMAIL PROTECTED]> wrote:
> Optimized for speed, at least.

> I'm finding that large subs seem to give imcc headaches. I'm not sure
> if it's O(n^2) or O(2^n) headaches, but definitely issues.

Live analysis and register allocation are the main problems. The former
is O(n_lines * n_vars). The latter goes horribly slow in the case of
spilling. Please run your program with the "-v" switch, you should see
some statistics including spilled variables count.

leo

Reply via email to