This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: libgcj performance: _Jv_LookupInterfaceMethod
- To: jsturm at sigma6 dot com (Jeff Sturm)
- Subject: Re: libgcj performance: _Jv_LookupInterfaceMethod
- From: Godmar Back <gback at cs dot utah dot edu>
- Date: Tue, 30 Nov 1999 13:45:37 -0700 (MST)
- Cc: java-discuss at sourceware dot cygnus dot com
For the current interface dispatch solution, I believe it would be better
to use a hash that not only includes the method name's utf8 hash, but also
some bits from the class. This should reduce the likelyhood of constant
conflict misses for invocations of the same interface method on different
run-time types, which is likely to be common.
- Godmar