Home | History | Annotate | Download | only in src

Lines Matching refs:array

18   public static int foo(int start, int[] array) {
21 // for the array length which will only be used within the loop.
23 result += array[i];
25 // The HBoundsCheck for this array access will be updated to access
26 // the array length phi created for the deoptimization checks of the
27 // first loop. This crashed the compiler which used to DCHECK an array
29 result += array[j];
35 public static int bar(int start, int[] array) {
38 result += array[i];
40 result += array[j];
44 result += array[0];
45 result += array[1];
46 result += array[2];