summaryrefslogtreecommitdiff
path: root/test/542-inline-trycatch/src/Main.java
blob: 5a6e06fa0cc25e660b3d0217407c2bbfe453eb51 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
 * Copyright (C) 2014 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 {

  // The following tests make sure that we inline methods used inside try and catch
  // blocks, provided they meet other inlining criteria. To do that, we rely on
  // the compiler recognizing and enforcing the $inline$ and $noinline$ markers.

  // We expect a single block to always be inlined.

  private static int $inline$SingleBlock(String str) throws NumberFormatException {
    return Integer.parseInt(str);
  }

  // We expect a "simple" method with multiple blocks to always be inlined.

  private static int $inline$MultipleBlocks(String str, boolean is_hex)
      throws NumberFormatException {
    return is_hex ? Integer.parseInt(str, 16) : Integer.parseInt(str);
  }

  // We expect methods with try/catch to not be inlined. Inlined try/catch
  // blocks are not supported at the moment.

  private static int $noinline$TryCatch(String str) {
    try {
      return Integer.parseInt(str);
    } catch (NumberFormatException ex) {
      return -1;
    }
  }

  public static void testSingleBlockFromTry() {
    int val = 0;

    try {
      val = $inline$SingleBlock("42");
    } catch (NumberFormatException ex) {
      unreachable();
    }
    assertEquals(42, val);

    try {
      $inline$SingleBlock("xyz");
      unreachable();
    } catch (NumberFormatException ex) {}
  }

  public static void testSingleBlockFromCatch() {
    int val = 0;

    try {
      throwException();
    } catch (Exception ex) {
      val = $inline$SingleBlock("42");
    }
    assertEquals(42, val);
  }

  public static void testMultipleBlocksFromTry() {
    int val = 0;

    try {
      val = $inline$MultipleBlocks("42", false);
    } catch (NumberFormatException ex) {
      unreachable();
    }
    assertEquals(42, val);

    try {
      val = $inline$MultipleBlocks("20", true);
    } catch (NumberFormatException ex) {
      unreachable();
    }
    assertEquals(32, val);

    try {
      $inline$MultipleBlocks("xyz", false);
      unreachable();
    } catch (NumberFormatException ex) {}

    try {
      $inline$MultipleBlocks("xyz", true);
      unreachable();
    } catch (NumberFormatException ex) {}
  }

  public static void testMultipleBlocksFromCatch() {
    int val = 0;

    try {
      throwException();
    } catch (Exception ex) {
      val = $inline$MultipleBlocks("42", false);
    }
    assertEquals(42, val);

    try {
      throwException();
    } catch (Exception ex) {
      val = $inline$MultipleBlocks("20", true);
    }
    assertEquals(32, val);
  }

  public static void testTryCatchFromTry() {
    int val = 0;

    try {
      val = $noinline$TryCatch("42");
    } catch (NumberFormatException ex) {
      unreachable();
    }
    assertEquals(42, val);

    try {
      val = $noinline$TryCatch("xyz");
    } catch (NumberFormatException ex) {
      unreachable();
    }
    assertEquals(-1, val);
  }

  public static void testTryCatchFromCatch() {
    int val = 0;

    try {
      throwException();
    } catch (Exception ex) {
      val = $noinline$TryCatch("42");
    }
    assertEquals(42, val);

    try {
      throwException();
    } catch (Exception ex) {
      val = $noinline$TryCatch("xyz");
    }
    assertEquals(-1, val);
  }

  public static void main(String[] args) {
    testSingleBlockFromTry();
    testSingleBlockFromCatch();
    testMultipleBlocksFromTry();
    testMultipleBlocksFromCatch();
    testTryCatchFromTry();
    testTryCatchFromCatch();
  }

  private static void assertEquals(int expected, int actual) {
    if (expected != actual) {
      throw new AssertionError("Wrong result: " + expected + " != " + actual);
    }
  }

  private static void unreachable() {
    throw new Error("Unreachable");
  }

  private static void throwException() throws Exception {
    throw new Exception();
  }
}