On Thu, Jan 21, 2010 at 5:07 PM, David Malcolm <dmalc...@redhat.com> wrote: > To what extent would it be possible to use (conditionally) use full > ahead-of-time compilation as well as JIT?
It would be possible to do this, but it doesn't have nearly the same benefits as JIT compilation, as Alex mentioned. You could do a static compilation of all code objects in a .pyc to LLVM IR and compile that to a .so that you load at runtime, but it just eliminates the interpreter overhead. That is significant, and I think someone should try it, but I think there are far more wins to be had using feedback. Reid _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com