@@ -568,6 +568,9 @@ JvmtiEnvBase::vframe_for_no_process(JavaThread* java_thread, jint depth, bool fo
568
568
RegisterMap reg_map (java_thread, true /* update_map */ , false /* process_frames */ , true /* walk_cont */ );
569
569
vframe *vf = for_cont ? get_cthread_last_java_vframe (java_thread, ®_map)
570
570
: java_thread->last_java_vframe (®_map);
571
+ if (!for_cont) {
572
+ vf = JvmtiEnvBase::check_and_skip_hidden_frames (java_thread, (javaVFrame*)vf);
573
+ }
571
574
int d = 0 ;
572
575
while ((vf != NULL ) && (d < depth)) {
573
576
vf = vf->java_sender ();
@@ -1164,7 +1167,6 @@ JvmtiEnvBase::get_frame_count(javaVFrame *jvf) {
1164
1167
int count = 0 ;
1165
1168
1166
1169
while (jvf != NULL ) {
1167
- Method* method = jvf->method ();
1168
1170
jvf = jvf->java_sender ();
1169
1171
count++;
1170
1172
}
@@ -1275,19 +1277,17 @@ JvmtiEnvBase::get_frame_location(oop vthread_oop, jint depth,
1275
1277
1276
1278
jvmtiError
1277
1279
JvmtiEnvBase::set_frame_pop (JvmtiThreadState* state, javaVFrame* jvf, jint depth) {
1278
- vframe* vf = jvf;
1279
- for (int d = 0 ; vf != NULL && d < depth; d++) {
1280
- vf = vf->java_sender ();
1280
+ for (int d = 0 ; jvf != NULL && d < depth; d++) {
1281
+ jvf = jvf->java_sender ();
1281
1282
}
1282
- if (vf == NULL ) {
1283
+ if (jvf == NULL ) {
1283
1284
return JVMTI_ERROR_NO_MORE_FRAMES;
1284
1285
}
1285
- if (!vf-> is_java_frame () || ((javaVFrame*)vf) ->method ()->is_native ()) {
1286
+ if (jvf ->method ()->is_native ()) {
1286
1287
return JVMTI_ERROR_OPAQUE_FRAME;
1287
1288
}
1288
- assert (vf->frame_pointer () != NULL , " frame pointer mustn't be NULL" );
1289
-
1290
- int frame_number = (int )get_frame_count (jvf) - depth;
1289
+ assert (jvf->frame_pointer () != NULL , " frame pointer mustn't be NULL" );
1290
+ int frame_number = (int )get_frame_count (jvf);
1291
1291
state->env_thread_state ((JvmtiEnvBase*)this )->set_frame_pop (frame_number);
1292
1292
return JVMTI_ERROR_NONE;
1293
1293
}
@@ -2196,21 +2196,13 @@ SetFramePopClosure::doit(Thread *target, bool self) {
2196
2196
_result = JVMTI_ERROR_THREAD_NOT_SUSPENDED;
2197
2197
return ;
2198
2198
}
2199
- vframe *vf = JvmtiEnvBase::vframe_for_no_process (java_thread, _depth);
2200
- if (vf == NULL ) {
2199
+ if (!java_thread->has_last_Java_frame ()) {
2201
2200
_result = JVMTI_ERROR_NO_MORE_FRAMES;
2202
2201
return ;
2203
2202
}
2204
- vf = JvmtiEnvBase::check_and_skip_hidden_frames (java_thread, (javaVFrame*)vf);
2205
- if (!vf->is_java_frame () || ((javaVFrame*) vf)->method ()->is_native ()) {
2206
- _result = JVMTI_ERROR_OPAQUE_FRAME;
2207
- return ;
2208
- }
2209
-
2210
- assert (vf->frame_pointer () != NULL , " frame pointer mustn't be NULL" );
2211
- int frame_number = _state->count_frames () - _depth;
2212
- _state->env_thread_state ((JvmtiEnvBase*)_env)->set_frame_pop (frame_number);
2213
- _result = JVMTI_ERROR_NONE;
2203
+ RegisterMap reg_map (java_thread, true /* update_map */ , false /* process_frames */ , true /* walk_cont */ );
2204
+ javaVFrame* jvf = JvmtiEnvBase::get_cthread_last_java_vframe (java_thread, ®_map);
2205
+ _result = ((JvmtiEnvBase*)_env)->set_frame_pop (_state, jvf, _depth);
2214
2206
}
2215
2207
2216
2208
void
0 commit comments