Skip to content

Commit e75668c

Browse files
committedMar 12, 2021
use check_jvmti_status in libVThreadTest.cpp where possible
1 parent a9b7b05 commit e75668c

File tree

1 file changed

+43
-74
lines changed

1 file changed

+43
-74
lines changed
 

‎test/hotspot/jtreg/serviceability/jvmti/vthread/VThreadTest/libVThreadTest.cpp

+43-74
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,16 @@ find_method_depth(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *mna
7070
jvmtiError err;
7171

7272
err = jvmti->GetStackTrace(vthread, 0, MAX_FRAME_COUNT, frames, &count);
73-
if (err != JVMTI_ERROR_NONE) {
74-
printf("find_method_depth: JVMTI GetStackTrace returned error: %d\n", err);
75-
fatal(jni, "event handler: failed during JVMTI GetStackTrace call");
76-
}
73+
check_jvmti_status(jni, err, "find_method_depth: error in JVMTI GetStackTrace");
7774

7875
for (int depth = 0; depth < count; depth++) {
7976
jmethodID method = frames[depth].method;
8077
char* name = NULL;
8178
char* sign = NULL;
8279

8380
err = jvmti->GetMethodName(method, &name, &sign, NULL);
84-
if (err != JVMTI_ERROR_NONE) {
85-
printf("find_method_depth: JVMTI GetMethodName with returned error: %d\n", err);
86-
fatal(jni, "event handler: failed during JVMTI GetMethodName call");
87-
}
81+
check_jvmti_status(jni, err, "find_method_depth: error in JVMTI GetMethodName");
82+
8883
if (strcmp(name, mname) == 0) {
8984
return depth;
9085
}
@@ -125,9 +120,8 @@ test_GetVirtualThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
125120

126121
// #1: Test JVMTI GetVirtualThread function NULL thread (current)
127122
err = jvmti->GetVirtualThread(NULL, &thread_vthread);
128-
if (err != JVMTI_ERROR_NONE) {
129-
fatal(jni, "event handler: JVMTI GetVirtualThread with NULL thread (current) returned error status");
130-
}
123+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetVirtualThread with NULL thread (current)");
124+
131125
if (thread_vthread == NULL) {
132126
fatal(jni, "event handler: JVMTI GetVirtualThread with NULL thread (current) failed to return non-NULL vthread");
133127
}
@@ -141,9 +135,8 @@ test_GetVirtualThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
141135

142136
// #3: Test JVMTI GetVirtualThread function with a good thread
143137
err = jvmti->GetVirtualThread(thread, &thread_vthread);
144-
if (err != JVMTI_ERROR_NONE) {
145-
fatal(jni, "event handler: failed during JVMTI GetVirtualThread call");
146-
}
138+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetVirtualThread");
139+
147140
if (thread_vthread == NULL) {
148141
fatal(jni, "event handler: JVMTI GetVirtualThread with good thread failed to return non-NULL vthread");
149142
}
@@ -171,9 +164,8 @@ test_GetCarrierThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
171164

172165
// #3: Test JVMTI GetCarrierThread function with a good vthread
173166
err = jvmti->GetCarrierThread(vthread, &vthread_thread);
174-
if (err != JVMTI_ERROR_NONE) {
175-
fatal(jni, "event handler: failed during JVMTI GetCarrierThread call");
176-
}
167+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetCarrierThread");
168+
177169
if (vthread_thread == NULL) {
178170
fatal(jni, "event handler: JVMTI GetCarrierThread with good vthread failed to return non-NULL carrier thread");
179171
}
@@ -193,38 +185,30 @@ test_GetThreadInfo(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
193185

194186
// #1: Test JVMTI GetThreadInfo function with a good vthread
195187
err = jvmti->GetThreadInfo(vthread, &thr_info);
196-
if (err != JVMTI_ERROR_NONE) {
197-
printf("JVMTI GetThreadInfo returned error: %d\n", err);
198-
fatal(jni, "event handler: JVMTI GetThreadInfo failed to return JVMTI_ERROR_NONE");
199-
}
188+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetThreadInfo");
189+
200190
printf("GetThreadInfo: name: %s, prio: %d, is_daemon: %d\n",
201191
thr_info.name, thr_info.priority, thr_info.is_daemon);
202192

203193
// #2: Test JVMTI GetThreadGroupInfo
204194
err = jvmti->GetThreadGroupInfo(thr_info.thread_group, &ginfo);
205-
if (err != JVMTI_ERROR_NONE) {
206-
printf("JVMTI GetThreadGroupInfo returned error: %d\n", err);
207-
fatal(jni, "event handler: JVMTI GetThreadGroupInfo failed to return JVMTI_ERROR_NONE");
208-
}
195+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetThreadGroupInfo");
196+
209197
printf("GetThreadGroupInfo: name: %s, max prio: %d, is_daemon: %d\n",
210198
ginfo.name, ginfo.max_priority, ginfo.is_daemon);
211199

212200
// #3: Test JVMTI GetClassLoaderClasses
213201
err = jvmti->GetClassLoaderClasses(thr_info.context_class_loader, &class_count, &classes);
214-
if (err != JVMTI_ERROR_NONE) {
215-
printf("JVMTI GetClassLoaderClasses returned error: %d\n", err);
216-
fatal(jni, "event handler: JVMTI GetClassLoaderClasses failed to return JVMTI_ERROR_NONE");
217-
}
202+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetClassLoaderClasses");
203+
218204
printf("thr_info.context_class_loader: %p, class_count: %d\n", thr_info.context_class_loader, class_count);
219205

220206
// #4: Test the thr_info.context_class_loader has the VThreadTest class
221207
for (int idx = 0; idx < class_count; idx++) {
222208
char* sign = NULL;
223209
err = jvmti->GetClassSignature(classes[idx], &sign, NULL);
224-
if (err != JVMTI_ERROR_NONE) {
225-
printf("JVMTI GetClassSignature returned error: %d\n", err);
226-
fatal(jni, "event handler: JVMTI GetClassSignature failed to return JVMTI_ERROR_NONE");
227-
}
210+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetClassSignature");
211+
228212
if (strstr(sign, "VThreadTest") != NULL) {
229213
found = JNI_TRUE;
230214
break;
@@ -251,10 +235,8 @@ test_GetFrameCount(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
251235

252236
// #2: Test JVMTI GetFrameCount function with a good vthread
253237
err = jvmti->GetFrameCount(vthread, &frame_count);
254-
if (err != JVMTI_ERROR_NONE) {
255-
printf("JVMTI GetFrameCount with good vthread returned error: %d\n", err);
256-
fatal(jni, "event handler: failed during JVMTI GetFrameCount call");
257-
}
238+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetFrameCount");
239+
258240
if (frame_count < 0) {
259241
fatal(jni, "event handler: JVMTI GetFrameCount with good vthread returned negative frame_count\n");
260242
}
@@ -307,10 +289,8 @@ test_GetFrameLocation(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char
307289
printf("JVMTI GetFrameLocation for too big depth returned JVMTI_ERROR_NO_MORE_FRAMES as expected\n");
308290

309291
err = jvmti->GetFrameLocation(vthread, 1, &method, &location);
310-
if (err != JVMTI_ERROR_NONE) {
311-
printf("JVMTI GetFrameLocation with good vthread returned error: %d\n", err);
312-
fatal(jni, "event handler: failed during JVMTI GetFrameCount call");
313-
}
292+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetFrameLocation");
293+
314294
if (location < 0) {
315295
fatal(jni, "event handler: JVMTI GetFrameLocation with good vthread returned negative location\n");
316296
}
@@ -369,10 +349,8 @@ test_GetStackTrace(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
369349
}
370350
} else {
371351
err = jvmti->GetStackTrace(vthread, 0, MAX_FRAME_COUNT, frames, &count);
372-
if (err != JVMTI_ERROR_NONE) {
373-
printf("JVMTI GetStackTrace with good vthread returned error: %d\n", err);
374-
fatal(jni, "event handler: failed during JVMTI GetStackTrace call");
375-
}
352+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetStackTrace");
353+
376354
if (count <= 0) {
377355
fatal(jni, "event handler: JVMTI GetStackTrace with good vthread returned negative frame count\n");
378356
}
@@ -399,10 +377,8 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
399377

400378
// #0: Test JVMTI GetLocalInstance function for carrier thread
401379
err = jvmti->GetLocalInstance(cthread, 3, &obj);
402-
if (err != JVMTI_ERROR_NONE) {
403-
printf("JVMTI GetLocalInstance for carrier thread top frame Continuation.run() returned error: %d\n", err);
404-
fatal(jni, "JVMTI GetLocalInstance failed for carrier thread top frame Continuation.run()");
405-
}
380+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalInstance for carrier thread top frame Continuation.run");
381+
406382
printf("JVMTI GetLocalInstance succeed for carrier thread top frame Continuation.run()\n");
407383

408384
depth = find_method_depth(jvmti, jni, vthread, "producer");
@@ -449,10 +425,8 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
449425

450426
// #6: Test JVMTI GetLocal<Type> functions with a good vthread
451427
err = jvmti->GetLocalObject(vthread, depth, SlotObj, &obj);
452-
if (err != JVMTI_ERROR_NONE) {
453-
printf("JVMTI GetLocalObject with good vthread returned error: %d\n", err);
454-
fatal(jni, "failed during JVMTI GetLocalObject call");
455-
}
428+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalObject with good vthread");
429+
456430
const char* str = jni->GetStringUTFChars((jstring)obj, NULL);
457431
printf(" local String value at slot %d: %s\n", SlotObj, str);
458432
const char* exp_str = "msg: ...";
@@ -463,43 +437,35 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
463437
jni->ReleaseStringUTFChars((jstring)obj, str);
464438

465439
err = jvmti->GetLocalInt(vthread, depth, SlotInt, &ii);
466-
if (err != JVMTI_ERROR_NONE) {
467-
printf("JVMTI GetLocalInt with good vthread returned error: %d\n", err);
468-
fatal(jni, "failed during JVMTI GetLocalInt call");
469-
}
440+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalInt with good vthread");
441+
470442
printf(" local int value at slot %d: %d\n", SlotInt, ii);
471443
if (ii != 1) {
472444
printf(" Failed: Expected local int value: 1, got %d\n", ii);
473445
fatal(jni, "Got unexpected local int value");
474446
}
475447

476448
err = jvmti->GetLocalLong(vthread, depth, SlotLong, &ll);
477-
if (err != JVMTI_ERROR_NONE) {
478-
printf("JVMTI GetLocalInt with good vthread returned error: %d\n", err);
479-
fatal(jni, "failed during JVMTI GetLocalInt call");
480-
}
449+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalLong with good vthread");
450+
481451
printf(" local long value at slot %d: %lld\n", SlotLong, (long long)ll);
482452
if (ll != 2L) {
483453
printf(" Failed: Expected local long value: 2L, got %lld\n", (long long)ll);
484454
fatal(jni, "Got unexpected local long value");
485455
}
486456

487457
err = jvmti->GetLocalFloat(vthread, depth, SlotFloat, &ff);
488-
if (err != JVMTI_ERROR_NONE) {
489-
printf("JVMTI GetLocalFloat with good vthread returned error: %d\n", err);
490-
fatal(jni, "failed during JVMTI GetLocalFloat call");
491-
}
458+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalFloat with good vthread");
459+
492460
printf(" local float value at slot %d: %f\n", SlotFloat, ff);
493461
if (ff < 3.200000 || ff > 3.200001) {
494462
printf(" Failed: Expected local float value: 3.200000, got %f\n", ff);
495463
fatal(jni, "Got unexpected local float value");
496464
}
497465

498466
err = jvmti->GetLocalDouble(vthread, depth, SlotDouble, &dd);
499-
if (err != JVMTI_ERROR_NONE) {
500-
printf("JVMTI GetLocalDouble with good vthread returned error: %d\n", err);
501-
fatal(jni, "failed during JVMTI GetLocalDouble call");
502-
}
467+
check_jvmti_status(jni, err, "event handler: error in JVMTI GetLocalDouble with good vthread");
468+
503469
printf(" local double value at slot %d: %f\n", SlotDouble, dd);
504470
if (dd < 4.500000047683716 || dd > 4.500000047683717) {
505471
printf(" Failed: Expected local double value: 4.500000047683716, got %f\n", dd);
@@ -523,10 +489,7 @@ processVThreadEvent(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *e
523489
printf("processVThreadEvent: event: %s, thread: %s\n", event_name, tname); fflush(0);
524490

525491
err = jvmti->GetCarrierThread(vthread, &cthread);
526-
if (err != JVMTI_ERROR_NONE) {
527-
printf("processVThreadEvent: GetCarrierThread returned error code: %d\n", err);
528-
fatal(jni, "event handler: JVMTI GetCarrierThread failed to return JVMTI_ERROR_NONE");
529-
}
492+
check_jvmti_status(jni, err, "processVThreadEvent: error in JVMTI GetCarrierThread");
530493

531494
print_vthread_event_info(jvmti, jni, cthread, vthread, event_name);
532495

@@ -598,36 +561,42 @@ Agent_OnLoad(JavaVM *jvm, char *options,
598561
err = jvmti->AddCapabilities(&caps);
599562
if (err != JVMTI_ERROR_NONE) {
600563
printf("error in JVMTI AddCapabilities: %d\n", err);
564+
return JNI_ERR;
601565
}
602566

603567
err = jvmti->SetEventCallbacks(&callbacks, sizeof(jvmtiEventCallbacks));
604568
if (err != JVMTI_ERROR_NONE) {
605569
printf("error in JVMTI SetEventCallbacks: %d\n", err);
570+
return JNI_ERR;
606571
}
607572

608573
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
609574
if (err != JVMTI_ERROR_NONE) {
610575
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
576+
return JNI_ERR;
611577
}
612578

613579
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, NULL);
614580
if (err != JVMTI_ERROR_NONE) {
615581
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
582+
return JNI_ERR;
616583
}
617584

618585
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_MOUNTED, NULL);
619586
if (err != JVMTI_ERROR_NONE) {
620587
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
588+
return JNI_ERR;
621589
}
622590

623591
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_UNMOUNTED, NULL);
624592
if (err != JVMTI_ERROR_NONE) {
625593
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
594+
return JNI_ERR;
626595
}
627596

628597
events_monitor = create_raw_monitor(jvmti, "Events Monitor");
629598
printf("Agent_OnLoad finished\n");
630-
return 0;
599+
return JNI_OK;
631600
}
632601

633602
} // extern "C"

0 commit comments

Comments
 (0)
Please sign in to comment.