summaryrefslogtreecommitdiff
path: root/test/499-bce-phi-array-length/src/Main.java
blob: e917bc1f32965547bb56c817621d97326c3baa0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
  public static int foo(int start, int[] array) {
    int result = 0;
    // We will create HDeoptimize nodes for this first loop, and a phi
    // for the array length which will only be used within the loop.
    for (int i = start; i < 3; i++) {
      result += array[i];
      for (int j = 0; j < 2; ++j) {
        // The HBoundsCheck for this array access will be updated to access
        // the array length phi created for the deoptimization checks of the
        // first loop. This crashed the compiler which used to DCHECK an array
        // length in a bounds check cannot be a phi.
        result += array[j];
      }
    }
    return result;
  }

  public static int bar(int start, int[] array) {
    int result = 0;
    for (int i = start; i < 3; i++) {
      result += array[i];
      for (int j = 0; j < 2; ++j) {
        result += array[j];
        // The following operations would lead to BCE wanting to add another
        // deoptimization, but it crashed assuming the input of a `HBoundsCheck`
        // must be a `HArrayLength`.
        result += array[0];
        result += array[1];
        result += array[2];
      }
    }
    return result;
  }

  public static void main(String[] args) {
    int[] a = new int[] { 1, 2, 3, 4, 5 };
    int result = foo(1, a);
    if (result != 11) {
      throw new Error("Got " + result + ", expected " + 11);
    }

    result = bar(1, a);
    if (result != 35) {
      throw new Error("Got " + result + ", expected " + 35);
    }
  }
}