Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Natively Compiled Eclipse Snapshot Available

Thanks for the info.  As part of our investigation into AspectJ, we'll 
definitely give this angle a good look.

Doug Schaefer, Senior Software Developer
IBM Rational Software, Ottawa, Ontario, Canada



Anthony Green <green@xxxxxxxxxx> 
Sent by: cdt-dev-admin@xxxxxxxxxxx
08/03/2003 08:06 PM
Please respond to
cdt-dev@xxxxxxxxxxx


To
cdt-dev@xxxxxxxxxxx
cc
tromey@xxxxxxxxxx, John Healy <jhealy@xxxxxxxxxx>
Subject
Re: [cdt-dev] Natively Compiled Eclipse Snapshot Available






On Sun, 2003-08-03 at 09:30, Douglas Schaefer wrote:
> I'm not an expert (although that is on my to do list :-), but I believe 
it 
> does byte code insertion in a class loader, i.e. at run time.

Yes, this should still work because every gcj-compiled app still has an
integrated byte-code interpreter, so you can have a mix of native and
interpreted classes in your program.  The downside, of course, is that
it's just a simple threaded interpreter, so there's a performance
penalty.  One day gcj will also feature a JIT compiler for situations
like this - but until then...

I think it would be a real shame if running Eclipse depended on
ClassLoader.defineClass().  I don't know anything about AspectJ, but I'm
hoping this class tweaking behaviour is limited to development-time, and
that you can force the system to emit final classfiles for production
use.  That would be OK with today's gcj.

AG

-- 
Anthony Green <green@xxxxxxxxxx>
Red Hat, Inc.

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev




Back to the top