Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Long Term Goals for Exupery
Last updated at 8:53 pm UTC on 5 March 2009
Exupery is trying to combine a good quality optimiser with Self style dynamic type feedback. The compiler is written in Smalltalk. The long term goals are:


Speeding up sends is the current major architectural project. After that it's back to bytecode performance.

Speeding up integer performance by a factor of 2-4 times should be possible by placing temporaries and arguments into registers, removing integer tagging and detagging across expressions, and moving the write barrior out of the loop. This will need some program analysis which I'll probably do with SSA which will make classical optimisations such as common expression elimination very easy to implement.

I'm planning on building the optimisation framework first just for integers then adding floats once there's a good chance that they will get a useful speed improvement.