This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: substantial, idiomatic application compilable with gcj?
- From: Jeff Sturm <jsturm at one-point dot com>
- To: William Benton <willb at cs dot wisc dot edu>
- Cc: java at gcc dot gnu dot org
- Date: Mon, 21 Jul 2003 17:58:39 -0400 (EDT)
- Subject: Re: substantial, idiomatic application compilable with gcj?
On Mon, 21 Jul 2003, William Benton wrote:
> I'm looking for an
> application that uses a lot of short-lived small objects and does a lot
> of dynamic dispatch; it seems to me that those are the salient
> performance characteristics of most of the real-world Java code I've
> dealt with.
Tom already made some good suggestions. I'm not sure just what you mean
by "dynamic dispatch"... virtual method calls, reflection, or something else?
I frequently build the Jacl interpreter and run a scripting benchmark
(e.g. sieve.tcl). It's effective at benchmarking a combination of code
generation, runtime (java.lang.String) performance, and GC.
Jeff