This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: benchmark result
>>>>> "Andrew" == Andrew Haley <aph@redhat.com> writes:
Andrew> The rest of this looks pretty resonable. It's still a bit worrying
Andrew> that we're spending 10% in interface dispatch.
Yeah, I think so too.
One thing we could consider is "strength reduction" for calls, to turn
interface calls into virtual calls when we know this is possible.
This could be done in a way similar to devirtualization. This would
probably only help in some very specific situations though.
Tom