@@ -557,47 +557,47 @@ class GetSingleStackTraceClosure : public HandshakeClosure {
557
557
jvmtiError result () { return _collector.result (); }
558
558
};
559
559
560
- // VM operation to count stack frames at safepoint .
561
- class VM_GetFrameCount : public VM_Operation {
560
+ // HandshakeClosure to count stack frames.
561
+ class GetFrameCountClosure : public HandshakeClosure {
562
562
private:
563
563
JvmtiEnv *_env;
564
564
JvmtiThreadState *_state;
565
565
jint *_count_ptr;
566
566
jvmtiError _result;
567
567
568
568
public:
569
- VM_GetFrameCount (JvmtiEnv *env, JvmtiThreadState *state, jint *count_ptr) {
570
- _env = env;
571
- _state = state;
572
- _count_ptr = count_ptr;
569
+ GetFrameCountClosure (JvmtiEnv *env, JvmtiThreadState *state, jint *count_ptr)
570
+ : HandshakeClosure(" GetFrameCount" ),
571
+ _env (env),
572
+ _state(state),
573
+ _count_ptr(count_ptr),
574
+ _result(JVMTI_ERROR_THREAD_NOT_ALIVE) {
573
575
}
574
- VMOp_Type type () const { return VMOp_GetFrameCount; }
575
576
jvmtiError result () { return _result; }
576
- void doit ( );
577
+ void do_thread (Thread *target );
577
578
};
578
579
579
- // VM operation to frame location at safepoint .
580
- class VM_GetFrameLocation : public VM_Operation {
580
+ // HandshakeClosure to get frame location.
581
+ class GetFrameLocationClosure : public HandshakeClosure {
581
582
private:
582
583
JvmtiEnv *_env;
583
- JavaThread* _java_thread;
584
584
jint _depth;
585
585
jmethodID* _method_ptr;
586
586
jlocation* _location_ptr;
587
587
jvmtiError _result;
588
588
589
589
public:
590
- VM_GetFrameLocation (JvmtiEnv *env, JavaThread* java_thread, jint depth,
591
- jmethodID* method_ptr, jlocation* location_ptr) {
592
- _env = env;
593
- _java_thread = java_thread;
594
- _depth = depth;
595
- _method_ptr = method_ptr;
596
- _location_ptr = location_ptr;
590
+ GetFrameLocationClosure (JvmtiEnv *env, jint depth,
591
+ jmethodID* method_ptr, jlocation* location_ptr)
592
+ : HandshakeClosure(" GetFrameLocation" ),
593
+ _env (env),
594
+ _depth(depth),
595
+ _method_ptr(method_ptr),
596
+ _location_ptr(location_ptr),
597
+ _result(JVMTI_ERROR_THREAD_NOT_ALIVE) {
597
598
}
598
- VMOp_Type type () const { return VMOp_GetFrameLocation; }
599
599
jvmtiError result () { return _result; }
600
- void doit ( );
600
+ void do_thread (Thread *target );
601
601
};
602
602
603
603
0 commit comments