File: GetOwnedMonitorInfoWithEATest.java

package info (click to toggle)
openjdk-11-jre-dcevm 11.0.15%2B1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 221,420 kB
  • sloc: java: 1,363,561; cpp: 967,919; ansic: 69,480; xml: 62,475; sh: 8,106; asm: 3,475; python: 1,667; javascript: 943; makefile: 397; sed: 172; perl: 114
file content (327 lines) | stat: -rw-r--r-- 13,988 bytes parent folder | download | duplicates (8)
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
321
322
323
324
325
326
327
/*
 * Copyright (c) 2019 SAP SE. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/**
 * @test
 * @bug 8230677
 * @summary Test JVMTI's GetOwnedMonitorInfo with scalar replaced objects and eliminated locks on stack (optimizations based on escape analysis).
 * @comment Without RFE 8227745 escape analysis needs to be switched off to pass the test. For the implementation of RFE 8227745 it serves as a regression test.
 * @requires (vm.compMode != "Xcomp" & vm.compiler2.enabled)
 * @library /test/lib
 * @compile GetOwnedMonitorInfoWithEATest.java
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:+DoEscapeAnalysis -XX:+EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:+UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:+DoEscapeAnalysis -XX:+EliminateAllocations -XX:-EliminateLocks -XX:+EliminateNestedLocks -XX:+UseBiasedLocking -XX:-UseOptoBiasInlining
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:+DoEscapeAnalysis -XX:-EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:+UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:-DoEscapeAnalysis -XX:-EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:+UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:+DoEscapeAnalysis -XX:+EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:-UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:+DoEscapeAnalysis -XX:-EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:-UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 * @run main/othervm/native
 *                  -agentlib:GetOwnedMonitorInfoWithEATest
 *                  -XX:+UnlockDiagnosticVMOptions
 *                  -Xms128m -Xmx128m
 *                  -XX:CompileCommand=dontinline,*::dontinline_*
 *                  -XX:+PrintCompilation
 *                  -XX:+PrintInlining
 *                  -XX:-TieredCompilation
 *                  -Xbatch
 *                  -XX:CICompilerCount=1
 *                  -XX:-DoEscapeAnalysis -XX:-EliminateAllocations -XX:+EliminateLocks -XX:+EliminateNestedLocks -XX:-UseBiasedLocking
 *                  GetOwnedMonitorInfoWithEATest
 */

import jdk.test.lib.Asserts;

public class GetOwnedMonitorInfoWithEATest {

    public static final int COMPILE_THRESHOLD = 20000;

    /**
     * Native wrapper arround JVMTI's GetOwnedMonitorInfo().
     * @param t The thread for which the owned monitors information should be retrieved.
     * @param ownedMonitors Array filled in by the call with the objects associated
     *        with the monitors owned by the given thread.
     * @param depths Per owned monitor the depth of the frame were it was locked.
     *        Filled in by the call
     * @return Number of monitors owned by the given thread.
     */
    public static native int getOwnedMonitorInfo(Thread t, Object[] ownedMonitors);

    public static void main(String[] args) throws Exception {
        new GetOwnedMonitorInfoWithEATest().runTest();
    }

    public void runTest() throws Exception {
        new TestCase_1().run();
        new TestCase_2().run();
    }

    public static abstract class TestCaseBase implements Runnable {

        public long checkSum;
        public boolean doLoop;
        public volatile long loopCount;
        public volatile boolean targetIsInLoop;

        public void run() {
            try {
                msgHL("Executing test case " + getClass().getName());
                warmUp();
                runTest();
            } catch (Exception e) {
                Asserts.fail("Unexpected Exception", e);
            }
        }

        public void warmUp() {
            int callCount = COMPILE_THRESHOLD + 1000;
            doLoop = true;
            while (callCount-- > 0) {
                dontinline_testMethod();
            }
        }

        public abstract void runTest() throws Exception;
        public abstract void dontinline_testMethod();

        public long dontinline_endlessLoop() {
            long cs = checkSum;
            while (doLoop && loopCount-- > 0) {
                targetIsInLoop = true;
                checkSum += checkSum % ++cs;
            }
            loopCount = 3;
            targetIsInLoop = false;
            return checkSum;
        }

        public void waitUntilTargetThreadHasEnteredEndlessLoop() throws Exception {
            while(!targetIsInLoop) {
                msg("Target has not yet entered the loop. Sleep 200ms.");
                try { Thread.sleep(200); } catch (InterruptedException e) { /*ignore */ }
            }
            msg("Target has entered the loop.");
        }

        public void terminateEndlessLoop() throws Exception {
            msg("Terminate endless loop");
            do {
                doLoop = false;
            } while(targetIsInLoop);
        }

        public void msg(String m) {
            System.out.println();
            System.out.println("### " + m);
            System.out.println();
        }

        public void msgHL(String m) {
            System.out.println();
            System.out.println("#####################################################");
            System.out.println("### " + m);
            System.out.println("###");
            System.out.println();
        }
    }

    /**
     * Starts target thread T and then queries monitor information for T using JVMTI's GetOwnedMonitorInfo().
     * With escape analysis enabled the jit compiled method {@link #dontinline_testMethod()} has
     * scalar replaced objects with eliminated (nested) locking in scope when the monitor
     * information is retrieved. Effectively the objects escape through the JVMTI call. This works
     * only with RFE 8227745. Without it escape analysis needs to be disabled.
     */
    public static class TestCase_1 extends TestCaseBase {

        public void runTest() throws Exception {
            loopCount = 1L << 62; // endless loop
            Thread t1 = new Thread(() -> dontinline_testMethod(), "Target Thread");
            t1.start();
            try {
                waitUntilTargetThreadHasEnteredEndlessLoop();
                int expectedMonitorCount = 1;
                int resultSize = expectedMonitorCount + 3;
                Object[] ownedMonitors = new Object[resultSize];
                msg("Get monitor info");
                int monitorCount = getOwnedMonitorInfo(t1, ownedMonitors);
                terminateEndlessLoop();
                t1.join();
                Asserts.assertGreaterThanOrEqual(monitorCount, 0, "getOwnedMonitorsFor() call failed");
                msg("Monitor info:");
                for (int i = 0; i < monitorCount; i++) {
                    System.out.println(i + ": cls=" + (ownedMonitors[i] != null ? ownedMonitors[i].getClass() : null));
                }
                Asserts.assertEQ(monitorCount, expectedMonitorCount, "unexpected monitor count returned by getOwnedMonitorsFor()");
                Asserts.assertNotNull(ownedMonitors[0]);
                Asserts.assertSame(ownedMonitors[0].getClass(), LockCls.class);
            } finally {
                terminateEndlessLoop();
                t1.join();
            }
        }

        public void dontinline_testMethod() {
            LockCls l1 = new LockCls();        // to be scalar replaced
            synchronized (l1) {
                inlinedTestMethodWithNestedLocking(l1);
            }
        }

        public void inlinedTestMethodWithNestedLocking(LockCls l1) {
            synchronized (l1) {              // nested
                dontinline_endlessLoop();
            }
        }
    }

    /**
     * Similar to {@link TestCase_1}. Additionally the target thread T has got eliminated locking
     * for a synchronized method of a different type {@linkplain LockCls2}.
     */
    public static class TestCase_2 extends TestCaseBase {

        public void runTest() throws Exception {
            loopCount = 1L << 62; // endless loop
            Thread t1 = new Thread(() -> dontinline_testMethod(), "Target Thread");
            t1.start();
            try {
                waitUntilTargetThreadHasEnteredEndlessLoop();
                int expectedMonitorCount = 2;
                int resultSize = expectedMonitorCount + 3;
                Object[] ownedMonitors = new Object[resultSize];
                msg("Get monitor info");
                int monitorCount = getOwnedMonitorInfo(t1, ownedMonitors);
                terminateEndlessLoop();
                t1.join();
                Asserts.assertGreaterThanOrEqual(monitorCount, 0, "getOwnedMonitorsFor() call failed");
                msg("Monitor info:");
                for (int i = 0; i < monitorCount; i++) {
                    System.out.println(i + ": cls=" + (ownedMonitors[i] != null ? ownedMonitors[i].getClass() : null));
                }
                Asserts.assertEQ(monitorCount, expectedMonitorCount, "unexpected monitor count returned by getOwnedMonitorsFor()");
                Asserts.assertNotNull(ownedMonitors[0]);
                Asserts.assertSame(ownedMonitors[0].getClass(), LockCls2.class);

                Asserts.assertNotNull(ownedMonitors[1]);
                Asserts.assertSame(ownedMonitors[1].getClass(), LockCls.class);
            } finally {
                terminateEndlessLoop();
                t1.join();
            }
        }

        public void dontinline_testMethod() {
            LockCls l1 = new LockCls();
            synchronized (l1) {
                inlinedTestMethodWithNestedLocking(l1);
            }
        }

        public void inlinedTestMethodWithNestedLocking(LockCls l1) {
            synchronized (l1) {
                dontinline_testMethod2();
            }
        }

        public void dontinline_testMethod2() {
            // Call synchronized method. Receiver of the call will be scalar replaced,
            // and locking will be eliminated. Here we use a different type.
            new LockCls2().inline_synchronized_testMethod(this);
        }
    }

    public static class LockCls {
    }

    public static class LockCls2 {
        public synchronized void inline_synchronized_testMethod(TestCaseBase testCase) {
            testCase.dontinline_endlessLoop();
        }
    }
}