Skip to content

Commit d61720a

Browse files
author
Tom Rodriguez
committedNov 17, 2022
8218885: Restore pop_frame and force_early_return functionality for Graal
Reviewed-by: kvn, dlong, sspitsyn, amenkov
1 parent dd9aa72 commit d61720a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed
 

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

-8
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,6 @@ jvmtiCapabilities JvmtiManageCapabilities::init_onload_capabilities() {
107107
#ifndef ZERO
108108
jc.can_pop_frame = 1;
109109
jc.can_force_early_return = 1;
110-
// Workaround for 8195635:
111-
// disable pop_frame and force_early_return capabilities with Graal
112-
#if INCLUDE_JVMCI
113-
if (UseJVMCICompiler) {
114-
jc.can_pop_frame = 0;
115-
jc.can_force_early_return = 0;
116-
}
117-
#endif // INCLUDE_JVMCI
118110
#endif // !ZERO
119111
jc.can_get_source_debug_extension = 1;
120112
jc.can_access_local_variables = 1;

0 commit comments

Comments
 (0)
Please sign in to comment.