On Thu, Apr 28, 2005 at 05:47:18PM -0400, Jing Su wrote:
> Is there work to change python into a direct-threaded or even JIT'ed 
> interpreter?

People have experimented with making the ceval loop use direct
threading.  If I recall correctly, the resulting speedup was not
significant.  I suspect the reason is that most of Python's opcodes
do a significant amount of work.  There's probably more to be gained
by moving to a register based VM.  Also, I think direct threading is
hard to do portably.

If you are interested in JIT, take a look at Psyco.

  Neil
_______________________________________________
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

Reply via email to