Skip to content

Commit 0045dd4

Browse files
committedJan 21, 2021
SingleStep events tests fixed.
1 parent 6fc8dd1 commit 0045dd4

File tree

6 files changed

+68
-72
lines changed

6 files changed

+68
-72
lines changed
 

‎test/hotspot/jtreg/serviceability/jvmti/events/SingleStep/singlestep01/libsinglestep01.cpp

+28-14
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ static const char *CLASS_SIG =
5151

5252
static volatile jint result = PASSED;
5353
static jvmtiEnv *jvmti = NULL;
54-
static jvmtiEventCallbacks callbacks;
54+
55+
static volatile jboolean isVirtualExpected = JNI_FALSE;
5556

5657
static volatile int callbacksEnabled = NSK_FALSE;
5758
static jrawMonitorID agent_lock;
@@ -86,7 +87,7 @@ ClassLoad(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jclass klass) {
8687
jni->FatalError("failed to obtain a class signature\n");
8788
}
8889
if (sig != NULL && (strcmp(sig, CLASS_SIG) == 0)) {
89-
NSK_DISPLAY1(
90+
printf(
9091
"ClassLoad event received for the class \"%s\"\n"
9192
"\tsetting breakpoint ...\n",
9293
sig);
@@ -122,7 +123,7 @@ Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jmethodID method, jlocatio
122123
}
123124

124125
if (sig != NULL && (strcmp(sig, CLASS_SIG) == 0)) {
125-
NSK_DISPLAY1("method declaring class \"%s\"\n\tenabling SingleStep events ...\n", sig);
126+
printf("method declaring class \"%s\"\n\tenabling SingleStep events ...\n", sig);
126127
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_SINGLE_STEP, thr);
127128
if (err != JVMTI_ERROR_NONE) {
128129
result = STATUS_FAILED;
@@ -133,6 +134,7 @@ Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jmethodID method, jlocatio
133134
NSK_COMPLAIN1("TEST FAILURE: unexpected breakpoint event in method of class \"%s\"\n\n",
134135
sig);
135136
}
137+
isVirtualExpected = jni->IsVirtualThread(thr);
136138
jvmti->RawMonitorExit(agent_lock);
137139
}
138140

@@ -149,6 +151,8 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
149151

150152
NSK_DISPLAY0(">>>> SingleStep event received\n");
151153

154+
print_thread_info(jni, jvmti, thread);
155+
152156
err = jvmti->GetMethodName(method, &methNam, &methSig, NULL);
153157
if (err != JVMTI_ERROR_NONE) {
154158
result = STATUS_FAILED;
@@ -184,16 +188,22 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
184188
(strcmp(methSig, METHOD_SIGS[0]) == 0) &&
185189
(strcmp(sig, CLASS_SIG) == 0)) {
186190
stepEv[0]++;
187-
NSK_DISPLAY1("CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n",
191+
printf("CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n",
188192
methNam);
189193
} else if ((strcmp(methNam, METHODS[1]) == 0) &&
190194
(strcmp(methSig, METHOD_SIGS[1]) == 0) &&
191195
(strcmp(sig, CLASS_SIG) == 0)) {
192-
stepEv[1]++;
193-
NSK_DISPLAY1(
194-
"CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n"
195-
"\tdisabling the event generation\n",
196-
methNam);
196+
jboolean isVirtual = jni->IsVirtualThread(thread);
197+
if (isVirtualExpected != isVirtual) {
198+
printf("The thread IsVirtualThread %d differs from expected %d.\n", isVirtual, isVirtualExpected);
199+
result = STATUS_FAILED;
200+
} else {
201+
stepEv[1]++;
202+
printf(
203+
"CHECK PASSED: SingleStep event received for the method \"%s\" as expected\n"
204+
"\tdisabling the event generation\n",
205+
methNam);
206+
}
197207
err = jvmti->SetEventNotificationMode(JVMTI_DISABLE, JVMTI_EVENT_SINGLE_STEP, thread);
198208
if (err != JVMTI_ERROR_NONE) {
199209
result = STATUS_FAILED;
@@ -213,7 +223,7 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
213223
NSK_COMPLAIN0("TEST FAILED: unable to deallocate memory pointed to method signature\n\n");
214224
}
215225

216-
NSK_DISPLAY0("<<<<\n\n");
226+
printf("<<<<\n\n");
217227
}
218228

219229
void JNICALL
@@ -242,6 +252,8 @@ Java_singlestep01_check(JNIEnv *jni, jobject obj) {
242252
result = STATUS_FAILED;
243253
NSK_COMPLAIN1("TEST FAILED: no SingleStep events for the method \"%s\"\n\n",
244254
METHODS[i]);
255+
} else {
256+
stepEv[i] = 0;
245257
}
246258
}
247259
return result;
@@ -259,6 +271,7 @@ JNIEXPORT jint JNI_OnLoad_singlestep01(JavaVM *jvm, char *options, void *reserve
259271
}
260272
#endif
261273
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
274+
jvmtiEventCallbacks callbacks;
262275
jvmtiCapabilities caps;
263276
jvmtiError err;
264277
jint res;
@@ -272,6 +285,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
272285
memset(&caps, 0, sizeof(jvmtiCapabilities));
273286
caps.can_generate_breakpoint_events = 1;
274287
caps.can_generate_single_step_events = 1;
288+
caps.can_support_virtual_threads = 1;
275289

276290
err = jvmti->AddCapabilities(&caps);
277291
if (err != JVMTI_ERROR_NONE) {
@@ -288,11 +302,11 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
288302
}
289303

290304
if (!caps.can_generate_single_step_events) {
291-
NSK_DISPLAY0("Warning: generation of single step events is not implemented\n");
305+
printf("Warning: generation of single step events is not implemented\n");
292306
}
293307

294308
/* set event callback */
295-
NSK_DISPLAY0("setting event callbacks ...\n");
309+
printf("setting event callbacks ...\n");
296310
(void) memset(&callbacks, 0, sizeof(callbacks));
297311
callbacks.ClassLoad = &ClassLoad;
298312
callbacks.Breakpoint = &Breakpoint;
@@ -304,7 +318,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
304318
return JNI_ERR;
305319
}
306320

307-
NSK_DISPLAY0("setting event callbacks done\nenabling JVMTI events ...\n");
321+
printf("setting event callbacks done\nenabling JVMTI events ...\n");
308322
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VM_START, NULL);
309323
if (err != JVMTI_ERROR_NONE) {
310324
return JNI_ERR;
@@ -322,7 +336,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
322336
return JNI_ERR;
323337
}
324338

325-
NSK_DISPLAY0("enabling the events done\n\n");
339+
printf("enabling the events done\n\n");
326340

327341
err = jvmti->CreateRawMonitor("agent lock", &agent_lock);
328342
if (err != JVMTI_ERROR_NONE) {

‎test/hotspot/jtreg/serviceability/jvmti/events/SingleStep/singlestep01/singlestep01.java

+15-19
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,6 @@
4848
* @run main/othervm/native -agentlib:singlestep01 singlestep01
4949
*/
5050

51-
52-
53-
/**
54-
* This test exercises the JVMTI event <code>SingleStep</code>.
55-
* <br>It verifies that this event can be enabled and disabled
56-
* during program execution.<br>
57-
* The test works as follows. Breakpoint is set at special method
58-
* <code>bpMethod()</code>. Upon reaching the breakpoint, agent
59-
* enables <code>SingleStep</code> event generation. All the received
60-
* events are counted. When the method <code>bpMethod()</code> is
61-
* leaved and accordingly, the program returns to the calling method
62-
* <code>runThis()</code>, the agent disables the event generation.<br>
63-
* At least one <code>SingleStep</code> event must be received for
64-
* the each methods mentioned above. Also after disabling the event
65-
* no more event must be received.
66-
*/
6751
public class singlestep01 {
6852
static {
6953
try {
@@ -76,18 +60,30 @@ public class singlestep01 {
7660
}
7761
}
7862

63+
static volatile int result;
7964
native int check();
8065

81-
public static void main(String[] argv) {
82-
int result = new singlestep01().runThis();
66+
public static void main(String[] argv) throws Exception {
67+
Thread thread = Thread.builder().task(() -> {
68+
result = new singlestep01().runThis();
69+
}).build();
70+
thread.start();
71+
thread.join();
72+
if (result != 0) {
73+
throw new RuntimeException("Unexpected status: " + result);
74+
}
75+
thread = Thread.builder().task(() -> {
76+
result = new singlestep01().runThis();
77+
}).virtual().build();
78+
thread.start();
79+
thread.join();
8380
if (result != 0) {
8481
throw new RuntimeException("Unexpected status: " + result);
8582
}
8683
}
8784

8885
private int runThis() {
8986

90-
9187
Thread.currentThread().setName("singlestep01Thr");
9288

9389
System.out.println("\nReaching a breakpoint method ...\n");

‎test/hotspot/jtreg/serviceability/jvmti/events/SingleStep/singlestep02/libsinglestep02.cpp

+10-7
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ static volatile jint result = PASSED;
3636
static volatile long wrongStepEv = 0;
3737

3838
static jvmtiEnv *jvmti = NULL;
39-
static jvmtiEventCallbacks callbacks;
4039

4140
/** callback functions **/
4241
void JNICALL
@@ -53,8 +52,7 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
5352
if (phase != JVMTI_PHASE_LIVE) {
5453
wrongStepEv++;
5554
result = STATUS_FAILED;
56-
NSK_COMPLAIN1("TEST FAILED: SingleStep event received during non-live phase %s\n",
57-
TranslatePhase(phase));
55+
NSK_COMPLAIN1("TEST FAILED: SingleStep event received during non-live phase %s\n", TranslatePhase(phase));
5856
}
5957
}
6058
}
@@ -68,10 +66,12 @@ VMDeath(jvmtiEnv *jvmti, JNIEnv *jni) {
6866
"TEST FAILED: there are %ld SingleStep events\n"
6967
"sent during non-live phase of the VM execution\n",
7068
wrongStepEv);
69+
jni->FatalError("Test Failed.");
7170
}
7271

73-
if (result == STATUS_FAILED)
74-
exit(95 + STATUS_FAILED);
72+
if (result == STATUS_FAILED) {
73+
jni->FatalError("Test Failed.");
74+
}
7575
}
7676
/************************/
7777

@@ -87,6 +87,7 @@ JNIEXPORT jint JNI_OnLoad_singlestep02(JavaVM *jvm, char *options, void *reserve
8787
}
8888
#endif
8989
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
90+
jvmtiEventCallbacks callbacks;
9091
jvmtiCapabilities caps;
9192
jvmtiError err;
9293
jint res;
@@ -113,8 +114,10 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
113114
TranslateError(err), err);
114115
return JNI_ERR;
115116
}
116-
if (!caps.can_generate_single_step_events)
117-
NSK_DISPLAY0("Warning: generation of single step events is not implemented\n");
117+
if (!caps.can_generate_single_step_events) {
118+
printf("Warning: generation of single step events is not implemented\n");
119+
return JNI_ERR;
120+
}
118121

119122
/* set event callback */
120123
NSK_DISPLAY0("setting event callbacks ...\n");

‎test/hotspot/jtreg/serviceability/jvmti/events/SingleStep/singlestep02/singlestep02.java

+2-14
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,6 @@
4343
* @run main/othervm/native -agentlib:singlestep02 singlestep02
4444
*/
4545

46-
47-
48-
49-
/**
50-
* This test exercises the JVMTI event <code>SingleStep</code>.
51-
* <br>It verifies that this event is sent only during the live
52-
* phase of VM execution.<br>
53-
* The test works as follows. The tested event is enabled in the
54-
* <code>OnLoad</code> phase. Then all received <code>SingleStep</code>
55-
* events is checked to be sent only during the live phase via
56-
* the <code>GetPhase()</code> call.
57-
*/
5846
public class singlestep02 {
5947

6048
static {
@@ -68,8 +56,8 @@ public class singlestep02 {
6856
}
6957
}
7058

71-
public static void main(String[] argv) {
72-
new singlestep02().runThis(argv);
59+
public static void main(String[] args) {
60+
new singlestep02().runThis(args);
7361
}
7462

7563
private int runThis(String argv[]) {

‎test/hotspot/jtreg/serviceability/jvmti/events/SingleStep/singlestep03/singlestep03.java

+13-17
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,10 @@
4444
* COMMENTS
4545
*
4646
* @library /test/lib
47-
* @run main/othervm/native -agentlib:singlestep03 singlestep03
47+
* @run main/othervm/native -agentlib:singlestep03 singlestep03 kernel
48+
* @run main/othervm/native -agentlib:singlestep03 singlestep03 virtual
4849
*/
4950

50-
/**
51-
* This test exercises the JVMTI event <code>SingleStep</code>.
52-
* <br>It verifies that no single step event will be generated from
53-
* within native methods.<br>
54-
* The test works as follows. Breakpoint is set at special method
55-
* <code>bpMethod()</code>. Upon reaching the breakpoint, agent
56-
* enables <code>SingleStep</code> event generation and checks the
57-
* events. The java part calls native method <code>nativeMethod()</code>
58-
* which calls another native <code>anotherNativeMethod()</code>
59-
* in order to provoke the SingleStep events from within native
60-
* methods. When <code>bpMethod()</code> is leaved and accordingly,
61-
* the program returns to the calling method <code>runThis()</code>,
62-
* the agent disables the event generation.
63-
*/
6451
public class singlestep03 {
6552
static {
6653
try {
@@ -73,13 +60,22 @@ public class singlestep03 {
7360
}
7461
}
7562

63+
static volatile int result;
7664
native void nativeMethod();
7765
native void anotherNativeMethod(int i);
7866

7967
native int check();
8068

81-
public static void main(String[] argv) {
82-
int result = new singlestep03().runThis();
69+
public static void main(String[] args) throws Exception {
70+
Thread.Builder threadBuilder = Thread.builder().task(() -> {
71+
result = new singlestep03().runThis();
72+
});
73+
if ("virtual".equals(args[0])) {
74+
threadBuilder = threadBuilder.virtual();
75+
}
76+
Thread thread = threadBuilder.build();
77+
thread.start();
78+
thread.join();
8379
if (result != 0) {
8480
throw new RuntimeException("Unexpected status: " + result);
8581
}

‎test/lib/jdk/test/lib/jvmti/jvmti_common.h

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
#define NSK_DISPLAY1 printf
3838
#define NSK_DISPLAY2 printf
3939
#define NSK_DISPLAY3 printf
40-
#define NSK_DISPLAY4 printf
4140

4241

4342
#define NSK_COMPLAIN0 printf

0 commit comments

Comments
 (0)
Please sign in to comment.