forked from openjdk/valhalla
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8341802: Add test coverage for JVMTI function with value classes
- Loading branch information
Alex Menkov
committed
Oct 9, 2024
1 parent
9553af7
commit 1a935cb
Showing
10 changed files
with
959 additions
and
0 deletions.
There are no files selected for viewing
155 changes: 155 additions & 0 deletions
155
test/hotspot/jtreg/serviceability/jvmti/valhalla/ForceEarlyReturn/ValueForceEarlyReturn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
/* | ||
* Copyright (c) 2024, 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 Sanity test for ForceEarlyReturn with value classes. | ||
* @requires vm.jvmti | ||
* @modules java.base/jdk.internal.vm.annotation | ||
* @enablePreview | ||
* @run main/othervm/native -agentlib:ValueForceEarlyReturn -XX:+EnableValhalla ValueForceEarlyReturn | ||
*/ | ||
|
||
import java.util.Objects; | ||
import jdk.internal.vm.annotation.ImplicitlyConstructible; | ||
import jdk.internal.vm.annotation.LooselyConsistentValue; | ||
import jdk.internal.vm.annotation.NullRestricted; | ||
|
||
public class ValueForceEarlyReturn { | ||
|
||
private static final String agentLib = "ValueForceEarlyReturn"; | ||
|
||
@ImplicitlyConstructible | ||
@LooselyConsistentValue | ||
private static value class ValueClass { | ||
public int f1; | ||
public int f2; | ||
|
||
public ValueClass(int v1, int v2) { f1 = v1; f2 = v2; } | ||
} | ||
|
||
private static value class ValueHolder { | ||
public ValueClass f1; | ||
@NullRestricted | ||
public ValueClass f2; | ||
|
||
public static ValueClass s1 = new ValueClass(0, 1); | ||
|
||
public ValueHolder(int v) { | ||
f1 = new ValueClass(v, v + 100); | ||
f2 = new ValueClass(v + 1, v + 200); | ||
} | ||
} | ||
|
||
public static void main(String[] args) throws Exception { | ||
try { | ||
System.loadLibrary(agentLib); | ||
} catch (UnsatisfiedLinkError ex) { | ||
System.err.println("Failed to load " + agentLib + " lib"); | ||
System.err.println("java.library.path: " + System.getProperty("java.library.path")); | ||
throw ex; | ||
} | ||
|
||
ValueClass testObj1 = new ValueClass(4, 5); | ||
ValueHolder testObj2 = new ValueHolder(6); | ||
|
||
testForceEarlyReturn(testObj1); | ||
testForceEarlyReturn(testObj2); | ||
} | ||
|
||
private static void testForceEarlyReturn(Object retObject) throws Exception { | ||
String className = retObject.getClass().getName(); | ||
log(">> Testing ForceEarlyReturn for " + className); | ||
|
||
TestTask task = new TestTask(); | ||
Thread thread = new Thread(task, "testThread"); | ||
thread.start(); | ||
|
||
task.ensureReady(); | ||
|
||
nSuspendThread(thread); | ||
nForceEarlyReturn(thread, retObject); | ||
nResumeThread(thread); | ||
|
||
task.finish(); | ||
thread.join(); | ||
|
||
Object result = task.getResult(); | ||
|
||
if (!Objects.equals(result, retObject)) { | ||
throw new RuntimeException("ERROR: unexpected result (" + result + ", expected " + retObject + ")"); | ||
} | ||
log("<< Testing " + className + " - OK"); | ||
log(""); | ||
} | ||
|
||
private static class TestTask implements Runnable { | ||
|
||
private volatile boolean ready = false; | ||
private volatile boolean doLoop = true; | ||
private volatile Object result = null; | ||
|
||
private static void sleep(long millis) { | ||
try { | ||
Thread.sleep(millis); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException("Interruption in TestTask.sleep: " + e); | ||
} | ||
} | ||
|
||
public void ensureReady() { | ||
while (!ready) { | ||
sleep(1); | ||
} | ||
} | ||
|
||
public void finish() { | ||
doLoop = false; | ||
} | ||
|
||
public Object getResult() { | ||
return result; | ||
} | ||
|
||
public void run() { | ||
result = meth(); | ||
} | ||
|
||
// Method is busy in a while loop. | ||
private Object meth() { | ||
ready = true; | ||
while (doLoop) { | ||
} | ||
return null; | ||
} | ||
} | ||
|
||
private static void log(String msg) { | ||
System.out.println(msg); | ||
} | ||
|
||
static native void nSuspendThread(Thread thread); | ||
static native void nResumeThread(Thread thread); | ||
static native void nForceEarlyReturn(Thread thread, Object obj); | ||
|
||
} |
76 changes: 76 additions & 0 deletions
76
...hotspot/jtreg/serviceability/jvmti/valhalla/ForceEarlyReturn/libValueForceEarlyReturn.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Copyright (c) 2024, 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. | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <string.h> | ||
#include "jvmti.h" | ||
#include "jni.h" | ||
#include "jvmti_common.hpp" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
static jvmtiEnv *jvmti = nullptr; | ||
|
||
|
||
JNIEXPORT jint JNICALL | ||
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) { | ||
jint res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_1_1); | ||
if (res != JNI_OK || jvmti == nullptr) { | ||
LOG("GetEnv failed, res = %d", (int)res); | ||
return JNI_ERR; | ||
} | ||
|
||
jvmtiCapabilities caps; | ||
memset(&caps, 0, sizeof(caps)); | ||
caps.can_suspend = 1; | ||
caps.can_force_early_return = 1; | ||
jvmtiError err = jvmti->AddCapabilities(&caps); | ||
if (err != JVMTI_ERROR_NONE) { | ||
LOG("AddCapabilities failed: %s (%d)\n", TranslateError(err), err); | ||
return JNI_ERR; | ||
} | ||
|
||
return JNI_OK; | ||
} | ||
|
||
JNIEXPORT void JNICALL | ||
Java_ValueForceEarlyReturn_nSuspendThread(JNIEnv *jni, jclass thisClass, jthread thread) { | ||
suspend_thread(jvmti, jni, thread); | ||
} | ||
|
||
JNIEXPORT void JNICALL | ||
Java_ValueForceEarlyReturn_nResumeThread(JNIEnv *jni, jclass thisClass, jthread thread) { | ||
resume_thread(jvmti, jni, thread); | ||
} | ||
|
||
JNIEXPORT void JNICALL | ||
Java_ValueForceEarlyReturn_nForceEarlyReturn(JNIEnv *jni, jclass thisClass, jthread thread, jobject obj) { | ||
check_jvmti_error(jvmti->ForceEarlyReturnObject(thread, obj), "ForceEarlyReturnObject"); | ||
} | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
93 changes: 93 additions & 0 deletions
93
test/hotspot/jtreg/serviceability/jvmti/valhalla/GetClassFields/ValueGetClassFields.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Copyright (c) 2024, 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 Sanity test for GetClassFields with value classes. | ||
* @requires vm.jvmti | ||
* @modules java.base/jdk.internal.vm.annotation | ||
* @enablePreview | ||
* @run main/othervm/native -agentlib:ValueGetClassFields -XX:+EnableValhalla ValueGetClassFields | ||
*/ | ||
|
||
import jdk.internal.vm.annotation.ImplicitlyConstructible; | ||
import jdk.internal.vm.annotation.LooselyConsistentValue; | ||
import jdk.internal.vm.annotation.NullRestricted; | ||
|
||
public class ValueGetClassFields { | ||
|
||
private static final String agentLib = "ValueGetClassFields"; | ||
|
||
@ImplicitlyConstructible | ||
@LooselyConsistentValue | ||
private static value class ValueClass { | ||
public int f1; | ||
public int f2; | ||
|
||
public ValueClass(int v1, int v2) { f1 = v1; f2 = v2; } | ||
} | ||
|
||
private static value class ValueHolder { | ||
public ValueClass f1; | ||
@NullRestricted | ||
public ValueClass f2; | ||
|
||
public static ValueClass s1 = new ValueClass(0, 1); | ||
|
||
public ValueHolder(int v) { | ||
f1 = new ValueClass(v, v + 100); | ||
f2 = new ValueClass(v + 1, v + 200); | ||
} | ||
} | ||
|
||
public static void main(String[] args) throws Exception { | ||
try { | ||
System.loadLibrary(agentLib); | ||
} catch (UnsatisfiedLinkError ex) { | ||
System.err.println("Failed to load " + agentLib + " lib"); | ||
System.err.println("java.library.path: " + System.getProperty("java.library.path")); | ||
throw ex; | ||
} | ||
|
||
testGetClassFields(ValueClass.class, 2); | ||
testGetClassFields(ValueHolder.class, 3); | ||
} | ||
|
||
private static void testGetClassFields(Class cls, int fieldNum) throws Exception { | ||
String className = cls.getName(); | ||
// Ensure the class is prepared. | ||
cls = Class.forName(className); | ||
log(">> Testing GetClassFields for " + className); | ||
if (!nTestGetClassFields(cls, fieldNum)) { | ||
throw new RuntimeException("ERROR: " + className); | ||
} | ||
log("<< Testing " + className + " - OK"); | ||
log(""); | ||
} | ||
|
||
private static void log(String msg) { | ||
System.out.println(msg); | ||
} | ||
|
||
private static native boolean nTestGetClassFields(Class cls, int fieldNum); | ||
} |
Oops, something went wrong.