jdk-24/test/hotspot/jtreg/serviceability/jvmti/thread/GetFrameLocation/frameloc01/frameloc01.java
Leonid Mesnik 4cdb97893c 8289098: clean up ported serviceability/jvmti tests
Reviewed-by: kevinw, sspitsyn
2022-06-24 18:13:23 +00:00

106 lines
3.6 KiB
Java

/*
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. 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
*
* @summary converted from VM Testbase nsk/jvmti/GetFrameLocation/frameloc001.
* VM Testbase keywords: [jpda, jvmti, noras]
* VM Testbase readme:
* DESCRIPTION
* The test exercise JVMTI function GetFrameLocation.
* The test debug agent calls the function from the hook
* function and native method for the test cases:
* - current and other threads;
* - currently executing instructions:
* 1) astore_2 after catching exception (in frameloc01a.meth01)
* 2) monitorenter (in frameloc01a.run)
* COMMENTS
* Fixed according to the rfe 4388972.
* Tested bytecode was relocated to frameloc01a.jasm
* adjusting the expected locations.
* Fixed according to 4669812 bug.
* Ported from JVMDI.
*
* @library /test/lib
* @compile frameloc01a.jasm
* @run main/othervm/native -agentlib:frameloc01 frameloc01
*/
public class frameloc01 {
static {
System.loadLibrary("frameloc01");
}
native static void getReady(Class cls);
native static boolean checkFrame01(Thread thr, Class cls, boolean mustPass);
native static int getRes();
static int fld = 0;
static Object lock1 = new Object();
static Object lock2 = new Object();
public static void main(String args[]) {
frameloc01a thr = new frameloc01a();
getReady(frameloc01a.class);
thr.meth01(2000);
synchronized (lock2) {
synchronized (lock1) {
thr.start();
try {
lock1.wait();
} catch (InterruptedException e) {
throw new Error("Unexpected " + e);
}
}
waitForChildThread(thr);
checkFrame01(thr, frameloc01a.class, true);
}
int result = getRes();
if (result != 0) {
throw new RuntimeException("check failed with result " + result);
}
}
private static void waitForChildThread(frameloc01a thr) {
// Wait for child thread to reach expected position. Wait up to 5 seconds.
final int MAX_WAIT_MS = 5000;
int sumWaitMs = 0;
while (!checkFrame01(thr, frameloc01a.class, false) && sumWaitMs <= MAX_WAIT_MS) {
try {
System.out.println("Waited: " + sumWaitMs);
final int sleepMs = 20;
sumWaitMs += sleepMs;
Thread.sleep(sleepMs);
} catch (InterruptedException e) {
e.printStackTrace();
throw new Error("Unexpected " + e);
}
}
}
}