View Single Post
Old Jan 28th, 2006, 4:24 AM   #6
hydroxide
Programmer
 
Join Date: Apr 2005
Posts: 73
Rep Power: 4 hydroxide is on a distinguished road
Quote:
Originally Posted by Kaja Fumei
But without the JIT.

A couple days ago, I started building the compiler for my virtual machine project (so sick of AST's right now) and when it's all set up, I'm going to make a basic python front end (probably not a full front end right away but some basic features) and so I can test python vs. mine.
psyco is a JIT for x86. Jython and IronPython can take advantage of NET/Java JITters - IronPython is currently achieving better than CPython speeds on things (but it's unfinished so it may slow down when it actually has to run the complete testsuite). If you're interested in Python+VM you may like to look into PyPy which aims to do all kinds of interesting things. There will be new AST code in Py2.5 which should make manipulating them easier.

-T.
hydroxide is offline   Reply With Quote