@@ -70,21 +70,16 @@ find_method_depth(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *mna
70
70
jvmtiError err;
71
71
72
72
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" );
77
74
78
75
for (int depth = 0 ; depth < count; depth++) {
79
76
jmethodID method = frames[depth].method ;
80
77
char * name = NULL ;
81
78
char * sign = NULL ;
82
79
83
80
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
+
88
83
if (strcmp (name, mname) == 0 ) {
89
84
return depth;
90
85
}
@@ -125,9 +120,8 @@ test_GetVirtualThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
125
120
126
121
// #1: Test JVMTI GetVirtualThread function NULL thread (current)
127
122
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
+
131
125
if (thread_vthread == NULL ) {
132
126
fatal (jni, " event handler: JVMTI GetVirtualThread with NULL thread (current) failed to return non-NULL vthread" );
133
127
}
@@ -141,9 +135,8 @@ test_GetVirtualThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
141
135
142
136
// #3: Test JVMTI GetVirtualThread function with a good thread
143
137
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
+
147
140
if (thread_vthread == NULL ) {
148
141
fatal (jni, " event handler: JVMTI GetVirtualThread with good thread failed to return non-NULL vthread" );
149
142
}
@@ -171,9 +164,8 @@ test_GetCarrierThread(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread vthr
171
164
172
165
// #3: Test JVMTI GetCarrierThread function with a good vthread
173
166
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
+
177
169
if (vthread_thread == NULL ) {
178
170
fatal (jni, " event handler: JVMTI GetCarrierThread with good vthread failed to return non-NULL carrier thread" );
179
171
}
@@ -193,38 +185,30 @@ test_GetThreadInfo(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
193
185
194
186
// #1: Test JVMTI GetThreadInfo function with a good vthread
195
187
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
+
200
190
printf (" GetThreadInfo: name: %s, prio: %d, is_daemon: %d\n " ,
201
191
thr_info.name , thr_info.priority , thr_info.is_daemon );
202
192
203
193
// #2: Test JVMTI GetThreadGroupInfo
204
194
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
+
209
197
printf (" GetThreadGroupInfo: name: %s, max prio: %d, is_daemon: %d\n " ,
210
198
ginfo.name , ginfo.max_priority , ginfo.is_daemon );
211
199
212
200
// #3: Test JVMTI GetClassLoaderClasses
213
201
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
+
218
204
printf (" thr_info.context_class_loader: %p, class_count: %d\n " , thr_info.context_class_loader , class_count);
219
205
220
206
// #4: Test the thr_info.context_class_loader has the VThreadTest class
221
207
for (int idx = 0 ; idx < class_count; idx++) {
222
208
char * sign = NULL ;
223
209
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
+
228
212
if (strstr (sign, " VThreadTest" ) != NULL ) {
229
213
found = JNI_TRUE;
230
214
break ;
@@ -251,10 +235,8 @@ test_GetFrameCount(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
251
235
252
236
// #2: Test JVMTI GetFrameCount function with a good vthread
253
237
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
+
258
240
if (frame_count < 0 ) {
259
241
fatal (jni, " event handler: JVMTI GetFrameCount with good vthread returned negative frame_count\n " );
260
242
}
@@ -307,10 +289,8 @@ test_GetFrameLocation(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char
307
289
printf (" JVMTI GetFrameLocation for too big depth returned JVMTI_ERROR_NO_MORE_FRAMES as expected\n " );
308
290
309
291
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
+
314
294
if (location < 0 ) {
315
295
fatal (jni, " event handler: JVMTI GetFrameLocation with good vthread returned negative location\n " );
316
296
}
@@ -369,10 +349,8 @@ test_GetStackTrace(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *ev
369
349
}
370
350
} else {
371
351
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
+
376
354
if (count <= 0 ) {
377
355
fatal (jni, " event handler: JVMTI GetStackTrace with good vthread returned negative frame count\n " );
378
356
}
@@ -399,10 +377,8 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
399
377
400
378
// #0: Test JVMTI GetLocalInstance function for carrier thread
401
379
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
+
406
382
printf (" JVMTI GetLocalInstance succeed for carrier thread top frame Continuation.run()\n " );
407
383
408
384
depth = find_method_depth (jvmti, jni, vthread, " producer" );
@@ -449,10 +425,8 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
449
425
450
426
// #6: Test JVMTI GetLocal<Type> functions with a good vthread
451
427
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
+
456
430
const char * str = jni->GetStringUTFChars ((jstring)obj, NULL );
457
431
printf (" local String value at slot %d: %s\n " , SlotObj, str);
458
432
const char * exp_str = " msg: ..." ;
@@ -463,43 +437,35 @@ test_GetLocal(jvmtiEnv *jvmti, JNIEnv *jni, jthread cthread, jthread vthread, co
463
437
jni->ReleaseStringUTFChars ((jstring)obj, str);
464
438
465
439
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
+
470
442
printf (" local int value at slot %d: %d\n " , SlotInt, ii);
471
443
if (ii != 1 ) {
472
444
printf (" Failed: Expected local int value: 1, got %d\n " , ii);
473
445
fatal (jni, " Got unexpected local int value" );
474
446
}
475
447
476
448
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
+
481
451
printf (" local long value at slot %d: %lld\n " , SlotLong, (long long )ll);
482
452
if (ll != 2L ) {
483
453
printf (" Failed: Expected local long value: 2L, got %lld\n " , (long long )ll);
484
454
fatal (jni, " Got unexpected local long value" );
485
455
}
486
456
487
457
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
+
492
460
printf (" local float value at slot %d: %f\n " , SlotFloat, ff);
493
461
if (ff < 3.200000 || ff > 3.200001 ) {
494
462
printf (" Failed: Expected local float value: 3.200000, got %f\n " , ff);
495
463
fatal (jni, " Got unexpected local float value" );
496
464
}
497
465
498
466
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
+
503
469
printf (" local double value at slot %d: %f\n " , SlotDouble, dd);
504
470
if (dd < 4.500000047683716 || dd > 4.500000047683717 ) {
505
471
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
523
489
printf (" processVThreadEvent: event: %s, thread: %s\n " , event_name, tname); fflush (0 );
524
490
525
491
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" );
530
493
531
494
print_vthread_event_info (jvmti, jni, cthread, vthread, event_name);
532
495
@@ -598,36 +561,42 @@ Agent_OnLoad(JavaVM *jvm, char *options,
598
561
err = jvmti->AddCapabilities (&caps);
599
562
if (err != JVMTI_ERROR_NONE) {
600
563
printf (" error in JVMTI AddCapabilities: %d\n " , err);
564
+ return JNI_ERR;
601
565
}
602
566
603
567
err = jvmti->SetEventCallbacks (&callbacks, sizeof (jvmtiEventCallbacks));
604
568
if (err != JVMTI_ERROR_NONE) {
605
569
printf (" error in JVMTI SetEventCallbacks: %d\n " , err);
570
+ return JNI_ERR;
606
571
}
607
572
608
573
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL );
609
574
if (err != JVMTI_ERROR_NONE) {
610
575
printf (" error in JVMTI SetEventNotificationMode: %d\n " , err);
576
+ return JNI_ERR;
611
577
}
612
578
613
579
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, NULL );
614
580
if (err != JVMTI_ERROR_NONE) {
615
581
printf (" error in JVMTI SetEventNotificationMode: %d\n " , err);
582
+ return JNI_ERR;
616
583
}
617
584
618
585
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_MOUNTED, NULL );
619
586
if (err != JVMTI_ERROR_NONE) {
620
587
printf (" error in JVMTI SetEventNotificationMode: %d\n " , err);
588
+ return JNI_ERR;
621
589
}
622
590
623
591
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_UNMOUNTED, NULL );
624
592
if (err != JVMTI_ERROR_NONE) {
625
593
printf (" error in JVMTI SetEventNotificationMode: %d\n " , err);
594
+ return JNI_ERR;
626
595
}
627
596
628
597
events_monitor = create_raw_monitor (jvmti, " Events Monitor" );
629
598
printf (" Agent_OnLoad finished\n " );
630
- return 0 ;
599
+ return JNI_OK ;
631
600
}
632
601
633
602
} // extern "C"
0 commit comments