This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: load native lib (SWT) with JNI on windows
- From: Anthony Green <green at redhat dot com>
- To: Frank Jacobs <forkjake at yahoo dot com>
- Cc: java at gcc dot gnu dot org
- Date: 21 Nov 2002 08:52:38 -0800
- Subject: Re: load native lib (SWT) with JNI on windows
- References: <20021121151242.4454.qmail@web20810.mail.yahoo.com>
On Thu, 2002-11-21 at 07:12, Frank Jacobs wrote:
> (b) actually execution time of resulting application
This one. The compiler currently relies on source-level information to
identify loops (for C, C++, etc as well).
In bytecode, all loops look like gotos, so the compiler doesn't perform
loop optimizations.
I believe that there's ongoing work in the compiler right now to extract
loop information so we don't need the source-level loop begin- and end
notes.
AG