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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
/*
* Copyright (C) 2016 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 void main(String[] args) {
System.loadLibrary(args[0]);
new SubMain();
if ($noinline$returnInt() != 53) {
throw new Error("Unexpected return value");
}
if ($noinline$returnFloat() != 42.2f) {
throw new Error("Unexpected return value");
}
if ($noinline$returnDouble() != Double.longBitsToDouble(0xF000000000001111L)) {
throw new Error("Unexpected return value ");
}
if ($noinline$returnLong() != 0xFFFF000000001111L) {
throw new Error("Unexpected return value");
}
try {
$noinline$deopt();
} catch (Exception e) {}
DeoptimizationController.stopDeoptimization();
$noinline$inlineCache(new Main(), /* isSecondInvocation */ false);
if ($noinline$inlineCache(new SubMain(), /* isSecondInvocation */ true) != SubMain.class) {
throw new Error("Unexpected return value");
}
$noinline$inlineCache2(new Main(), /* isSecondInvocation */ false);
if ($noinline$inlineCache2(new SubMain(), /* isSecondInvocation */ true) != SubMain.class) {
throw new Error("Unexpected return value");
}
// Test polymorphic inline cache to the same target (inlineCache3).
$noinline$inlineCache3(new Main(), /* isSecondInvocation */ false);
$noinline$inlineCache3(new SubMain(), /* isSecondInvocation */ false);
if ($noinline$inlineCache3(new SubMain(), /* isSecondInvocation */ true) != null) {
throw new Error("Unexpected return value");
}
$noinline$stackOverflow(new Main(), /* isSecondInvocation */ false);
$noinline$stackOverflow(new SubMain(), /* isSecondInvocation */ true);
$opt$noinline$testOsrInlineLoop(null);
System.out.println("b28210356 passed.");
}
public static int $noinline$returnInt() {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, skip the wait for OSR code.
boolean interpreting = isInInterpreter("$noinline$returnInt");
int i = 0;
for (; i < 100000; ++i) {
}
if (interpreting) {
while (!isInOsrCode("$noinline$returnInt")) {}
}
System.out.println(i);
return 53;
}
public static float $noinline$returnFloat() {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, skip the wait for OSR code.
boolean interpreting = isInInterpreter("$noinline$returnFloat");
int i = 0;
for (; i < 200000; ++i) {
}
if (interpreting) {
while (!isInOsrCode("$noinline$returnFloat")) {}
}
System.out.println(i);
return 42.2f;
}
public static double $noinline$returnDouble() {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, skip the wait for OSR code.
boolean interpreting = isInInterpreter("$noinline$returnDouble");
int i = 0;
for (; i < 300000; ++i) {
}
if (interpreting) {
while (!isInOsrCode("$noinline$returnDouble")) {}
}
System.out.println(i);
return Double.longBitsToDouble(0xF000000000001111L);
}
public static long $noinline$returnLong() {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, skip the wait for OSR code.
boolean interpreting = isInInterpreter("$noinline$returnLong");
int i = 0;
for (; i < 400000; ++i) {
}
if (interpreting) {
while (!isInOsrCode("$noinline$returnLong")) {}
}
System.out.println(i);
return 0xFFFF000000001111L;
}
public static void $noinline$deopt() {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, skip the wait for OSR code.
boolean interpreting = isInInterpreter("$noinline$deopt");
int i = 0;
for (; i < 100000; ++i) {
}
if (interpreting) {
while (!isInOsrCode("$noinline$deopt")) {}
}
DeoptimizationController.startDeoptimization();
}
public static Class<?> $noinline$inlineCache(Main m, boolean isSecondInvocation) {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, just return the expected value.
if (!isInInterpreter("$noinline$inlineCache")) {
return SubMain.class;
}
ensureHasProfilingInfo("$noinline$inlineCache");
// Ensure that we have OSR code to jump to.
if (isSecondInvocation) {
ensureHasOsrCode("$noinline$inlineCache");
}
// This call will be optimized in the OSR compiled code
// to check and deoptimize if m is not of type 'Main'.
Main other = m.inlineCache();
// Jump to OSR compiled code. The second run
// of this method will have 'm' as a SubMain, and the compiled
// code we are jumping to will have wrongly optimize other as being a
// 'Main'.
if (isSecondInvocation) {
while (!isInOsrCode("$noinline$inlineCache")) {}
}
// We used to wrongly optimize this call and assume 'other' was a 'Main'.
return other.returnClass();
}
public static Class<?> $noinline$inlineCache2(Main m, boolean isSecondInvocation) {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, just return the expected value.
if (!isInInterpreter("$noinline$inlineCache2")) {
return SubMain.class;
}
ensureHasProfilingInfo("$noinline$inlineCache2");
// Ensure that we have OSR code to jump to.
if (isSecondInvocation) {
ensureHasOsrCode("$noinline$inlineCache2");
}
// This call will be optimized in the OSR compiled code
// to check and deoptimize if m is not of type 'Main'.
Main other = m.inlineCache2();
// Jump to OSR compiled code. The second run
// of this method will have 'm' as a SubMain, and the compiled
// code we are jumping to will have wrongly optimize other as being null.
if (isSecondInvocation) {
while (!isInOsrCode("$noinline$inlineCache2")) {}
}
// We used to wrongly optimize this code and assume 'other' was always null.
return (other == null) ? null : other.returnClass();
}
public static Class<?> $noinline$inlineCache3(Main m, boolean isSecondInvocation) {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, just return the expected value.
if (!isInInterpreter("$noinline$inlineCache3")) {
return null;
}
ensureHasProfilingInfo("$noinline$inlineCache3");
// Ensure that we have OSR code to jump to.
if (isSecondInvocation) {
ensureHasOsrCode("$noinline$inlineCache3");
}
// This call will be optimized in the OSR compiled code
// to check and deoptimize if m is not of type 'Main'.
Main other = m.inlineCache3();
// Jump to OSR compiled code. The second run
// of this method will have 'm' as a SubMain, and the compiled
// code we are jumping to will have wrongly optimize other as being null.
if (isSecondInvocation) {
while (!isInOsrCode("$noinline$inlineCache3")) {}
}
// We used to wrongly optimize this code and assume 'other' was always null.
return (other == null) ? null : other.returnClass();
}
public Main inlineCache() {
return new Main();
}
public Main inlineCache2() {
return null;
}
public Main inlineCache3() {
return null;
}
public Class<?> returnClass() {
return Main.class;
}
public void otherInlineCache() {
return;
}
public static void $noinline$stackOverflow(Main m, boolean isSecondInvocation) {
// If we are running in non-JIT mode, or were unlucky enough to get this method
// already JITted, just return the expected value.
if (!isInInterpreter("$noinline$stackOverflow")) {
return;
}
// We need a ProfilingInfo object to populate the 'otherInlineCache' call.
ensureHasProfilingInfo("$noinline$stackOverflow");
if (isSecondInvocation) {
// Ensure we have an OSR code and we jump to it.
while (!isInOsrCode("$noinline$stackOverflow")) {}
}
for (int i = 0; i < (isSecondInvocation ? 10000000 : 1); ++i) {
// The first invocation of $noinline$stackOverflow will populate the inline
// cache with Main. The second invocation of the method, will see a SubMain
// and will therefore trigger deoptimization.
m.otherInlineCache();
}
}
public static void $opt$noinline$testOsrInlineLoop(String[] args) {
// Regression test for inlining a method with a loop to a method without a loop in OSR mode.
assertIntEquals(12, $opt$inline$testRemoveSuspendCheck(12, 5));
// Since we cannot have a loop directly in this method, we need to force the OSR
// compilation from native code.
ensureHasProfilingInfo("$opt$noinline$testOsrInlineLoop");
ensureHasOsrCode("$opt$noinline$testOsrInlineLoop");
}
public static int $opt$inline$testRemoveSuspendCheck(int x, int y) {
// For this test we need an inlined loop and have DCE re-run loop analysis
// after inlining.
while (y > 0) {
while ($opt$inline$inlineFalse() || !$opt$inline$inlineTrue()) {
x++;
}
y--;
}
return x;
}
public static boolean $opt$inline$inlineTrue() {
return true;
}
public static boolean $opt$inline$inlineFalse() {
return false;
}
public static void assertIntEquals(int expected, int result) {
if (expected != result) {
throw new Error("Expected: " + expected + ", found: " + result);
}
}
public static native boolean isInOsrCode(String methodName);
public static native boolean isInInterpreter(String methodName);
public static native void ensureHasProfilingInfo(String methodName);
public static native void ensureHasOsrCode(String methodName);
}
class SubMain extends Main {
public Class<?> returnClass() {
return SubMain.class;
}
public Main inlineCache() {
return new SubMain();
}
public Main inlineCache2() {
return new SubMain();
}
public void otherInlineCache() {
return;
}
}
|