RFR: 8071571: Move substring of same string to slow path

Martin Buchholz martinrb at google.com
Fri Mar 27 20:50:06 UTC 2015


On Fri, Mar 27, 2015 at 1:49 PM, Lev Priima <lev.priima at oracle.com> wrote:

>  Martin,
>
> You mean it should be like this:
>         char[] val = value;    /* avoid getfield opcode */
>         int end = val.length;
> ?
>
>
Yes.

(although I personally like to write it like this:

final char[] value = this.value;
int end = value.length;



More information about the core-libs-dev mailing list