This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: C++ to bytecode?
>>>>> "Dale" == Dale E Martin <dmartin@cliftonlabs.com> writes:
Dale> Is the current bytecode backend implemented at all like a
Dale> standard backend to gcc?
No, it works directly on trees, not RTL. It also doesn't handle all
trees, just the ones that map well to Java bytecodes.
gcj isn't the only work in this area though. Other people have done
similar things, maybe with different approaches. I thought I saw a
real "JVM" back end once, but it was a while ago so perhaps I'm
mistaken.
Tom