On Sun, Feb 03, 2013 at 12:25:04PM -0000, Jon Harrop said
> > At least one guy in the reddit comments claims the project is dead,
> > but I'm hoping to hear otherwise.
>
> Your post appears to be the third in the history of this project and
> is the first one after 6 months of silence.
So, it's not dead but there's (currently) noone working on it besides me
and my time for it is very limited (to barely more than zero over the
last year). I'm hopeful that I'll be able to find more time, hopefully
around summer. That said, if anyone is interested in working on it, I'm
more than happy to have the help. I do promise to make some time to work
with potential contributors, but as you can see my latency can be pretty
bad at times.
> > I was also curious how this approach compares to using gcj. At least
> > one guy has a tutorial on that subject:
> >
http://www.iulidragos.org/?p=23 though apparently it doesn't really
> > work. Also, I wonder why you can't just use gcj to compile the Java
> > classes you need to native code in order to get all of the Scala
> > standard library to compile. But I'm sure it's not that simple.
>
> IME gcj is so buggy as to be completely useless.
I'm pretty sure that scala with gcj will work even less well than it did
then.
>
> > It sounds like you think you can make native Scala faster than
> > running on the JVM.
>
> The JVM’s performance is crippled by lack of value types, lack of
> reified generics and lack of tail call optimization so it wouldn’t be
> hard to beat the performance of the JVM provided you’re willing to
> sacrifice some backward compatibility. From what I hear, the FFI could
> be a lot faster too.
Yes, this what I'm interested in and part of why I started this effort.
There are lots of ways that the JVM constrains the implementation of
scala language features and I want to see how they might be implemented
more directly. In the long run this will probably mean generating code
from trees and not ICode since ICode is pretty close to JVM bytecode and
assumes many of its shortcomings.
-- Geoff