Skip to content

Commit 9ceaace

Browse files
committedApr 16, 2022
JVMTI cleanup: refactor SetFramePopClosure::doit
1 parent a7bb4c6 commit 9ceaace

File tree

1 file changed

+13
-21
lines changed

1 file changed

+13
-21
lines changed
 

‎src/hotspot/share/prims/jvmtiEnvBase.cpp

+13-21
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,9 @@ JvmtiEnvBase::vframe_for_no_process(JavaThread* java_thread, jint depth, bool fo
568568
RegisterMap reg_map(java_thread, true /* update_map */, false /* process_frames */, true /* walk_cont */);
569569
vframe *vf = for_cont ? get_cthread_last_java_vframe(java_thread, &reg_map)
570570
: java_thread->last_java_vframe(&reg_map);
571+
if (!for_cont) {
572+
vf = JvmtiEnvBase::check_and_skip_hidden_frames(java_thread, (javaVFrame*)vf);
573+
}
571574
int d = 0;
572575
while ((vf != NULL) && (d < depth)) {
573576
vf = vf->java_sender();
@@ -1164,7 +1167,6 @@ JvmtiEnvBase::get_frame_count(javaVFrame *jvf) {
11641167
int count = 0;
11651168

11661169
while (jvf != NULL) {
1167-
Method* method = jvf->method();
11681170
jvf = jvf->java_sender();
11691171
count++;
11701172
}
@@ -1275,19 +1277,17 @@ JvmtiEnvBase::get_frame_location(oop vthread_oop, jint depth,
12751277

12761278
jvmtiError
12771279
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();
12811282
}
1282-
if (vf == NULL) {
1283+
if (jvf == NULL) {
12831284
return JVMTI_ERROR_NO_MORE_FRAMES;
12841285
}
1285-
if (!vf->is_java_frame() || ((javaVFrame*)vf)->method()->is_native()) {
1286+
if (jvf->method()->is_native()) {
12861287
return JVMTI_ERROR_OPAQUE_FRAME;
12871288
}
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);
12911291
state->env_thread_state((JvmtiEnvBase*)this)->set_frame_pop(frame_number);
12921292
return JVMTI_ERROR_NONE;
12931293
}
@@ -2196,21 +2196,13 @@ SetFramePopClosure::doit(Thread *target, bool self) {
21962196
_result = JVMTI_ERROR_THREAD_NOT_SUSPENDED;
21972197
return;
21982198
}
2199-
vframe *vf = JvmtiEnvBase::vframe_for_no_process(java_thread, _depth);
2200-
if (vf == NULL) {
2199+
if (!java_thread->has_last_Java_frame()) {
22012200
_result = JVMTI_ERROR_NO_MORE_FRAMES;
22022201
return;
22032202
}
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, &reg_map);
2205+
_result = ((JvmtiEnvBase*)_env)->set_frame_pop(_state, jvf, _depth);
22142206
}
22152207

22162208
void

0 commit comments

Comments
 (0)
Please sign in to comment.