This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [Patch] natString.cc: Some fixes for bounds checking arithmet ic.
- From: Tom Tromey <tromey at redhat dot com>
- To: Dalibor Topic <robilad at kaffe dot org>
- Cc: "Boehm, Hans" <hans_boehm at hp dot com>, "'Ralph Loader'" <suckfish at ihug dot co dot nz>, java-patches at gcc dot gnu dot org, "MOSBERGER, DAVID (HP-PaloAlto,unix3)" <davidm at hpl dot hp dot com>
- Date: 24 Sep 2003 17:39:48 -0600
- Subject: Re: [Patch] natString.cc: Some fixes for bounds checking arithmet ic.
- References: <75A9FEBA25015040A761C1F74975667D0144233F@hplex4.hpl.hp.com><3F71EE03.1040201@kaffe.org>
- Reply-to: tromey at redhat dot com
>>>>> "Dalibor" == Dalibor Topic <robilad@kaffe.org> writes:
Dalibor> this kind of optimizations is pretty much the thing I hoped would be
Dalibor> easy to come up with, test and implement with my 'bounds checking api'
Dalibor> idea. thanks! ;)
I like this idea for C++ code. For java code, making a static helper
method is a problem, because we will end up trying class
initialization for every call.
Tom