Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
[GR-33898] Restore pop_frame and force_early_return functionality for…
Browse files Browse the repository at this point in the history
… Graal (JDK-8218885)

PullRequest: labsjdk-ce-17/8
  • Loading branch information
tkrodriguez committed Sep 23, 2021
2 parents 2e41463 + 7a1a514 commit 60db941
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/hotspot/share/prims/jvmtiManageCapabilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,6 @@ jvmtiCapabilities JvmtiManageCapabilities::init_onload_capabilities() {
#ifndef ZERO
jc.can_pop_frame = 1;
jc.can_force_early_return = 1;
// Workaround for 8195635:
// disable pop_frame and force_early_return capabilities with Graal
#if INCLUDE_JVMCI
if (UseJVMCICompiler) {
jc.can_pop_frame = 0;
jc.can_force_early_return = 0;
}
#endif // INCLUDE_JVMCI
#endif // !ZERO
jc.can_get_source_debug_extension = 1;
jc.can_access_local_variables = 1;
Expand Down

0 comments on commit 60db941

Please sign in to comment.