Skip to content

Commit 62b3293

Browse files
committedJan 26, 2024
8324241: Always record evol_method deps to avoid excessive method flushing
Reviewed-by: eastigeevich, phh, coleenp, dlong, shade
1 parent 885e9b7 commit 62b3293

File tree

4 files changed

+31
-11
lines changed

4 files changed

+31
-11
lines changed
 

‎src/hotspot/share/prims/jvmtiExport.hpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,15 @@ class JvmtiExport : public AllStatic {
149149
JVMTI_ONLY(_can_access_local_variables = (on != 0);)
150150
}
151151
inline static void set_can_hotswap_or_post_breakpoint(bool on) {
152-
JVMTI_ONLY(_can_hotswap_or_post_breakpoint = (on != 0);)
152+
#if INCLUDE_JVMTI
153+
// Check that _can_hotswap_or_post_breakpoint is not reset once it
154+
// was set to true. When _can_hotswap_or_post_breakpoint is set to true
155+
// _all_dependencies_are_recorded is also set to true and never
156+
// reset so we have to ensure that evol dependencies are always
157+
// recorded from that point on.
158+
assert(!_can_hotswap_or_post_breakpoint || on, "sanity check");
159+
_can_hotswap_or_post_breakpoint = (on != 0);
160+
#endif
153161
}
154162
inline static void set_can_walk_any_space(bool on) {
155163
JVMTI_ONLY(_can_walk_any_space = (on != 0);)

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

+11-10
Original file line numberDiff line numberDiff line change
@@ -4060,21 +4060,22 @@ void VM_RedefineClasses::transfer_old_native_function_registrations(InstanceKlas
40604060
// Deoptimize all compiled code that depends on the classes redefined.
40614061
//
40624062
// If the can_redefine_classes capability is obtained in the onload
4063-
// phase then the compiler has recorded all dependencies from startup.
4064-
// In that case we need only deoptimize and throw away all compiled code
4065-
// that depends on the class.
4063+
// phase or 'AlwaysRecordEvolDependencies' is true, then the compiler has
4064+
// recorded all dependencies from startup. In that case we need only
4065+
// deoptimize and throw away all compiled code that depends on the class.
40664066
//
4067-
// If can_redefine_classes is obtained sometime after the onload
4068-
// phase then the dependency information may be incomplete. In that case
4069-
// the first call to RedefineClasses causes all compiled code to be
4070-
// thrown away. As can_redefine_classes has been obtained then
4071-
// all future compilations will record dependencies so second and
4072-
// subsequent calls to RedefineClasses need only throw away code
4073-
// that depends on the class.
4067+
// If can_redefine_classes is obtained sometime after the onload phase
4068+
// (and 'AlwaysRecordEvolDependencies' is false) then the dependency
4069+
// information may be incomplete. In that case the first call to
4070+
// RedefineClasses causes all compiled code to be thrown away. As
4071+
// can_redefine_classes has been obtained then all future compilations will
4072+
// record dependencies so second and subsequent calls to RedefineClasses
4073+
// need only throw away code that depends on the class.
40744074
//
40754075

40764076
void VM_RedefineClasses::flush_dependent_code() {
40774077
assert(SafepointSynchronize::is_at_safepoint(), "sanity check");
4078+
assert(JvmtiExport::all_dependencies_are_recorded() || !AlwaysRecordEvolDependencies, "sanity check");
40784079

40794080
DeoptimizationScope deopt_scope;
40804081

‎src/hotspot/share/runtime/globals.hpp

+5
Original file line numberDiff line numberDiff line change
@@ -2009,6 +2009,11 @@ const int ObjectAlignmentInBytes = 8;
20092009
\
20102010
product(bool, ProfileExceptionHandlers, true, \
20112011
"Profile exception handlers") \
2012+
\
2013+
product(bool, AlwaysRecordEvolDependencies, true, EXPERIMENTAL, \
2014+
"Unconditionally record nmethod dependencies on class " \
2015+
"rewriting/transformation independently of the JVMTI " \
2016+
"can_{retransform/redefine}_classes capabilities.") \
20122017

20132018
// end of RUNTIME_FLAGS
20142019

‎src/hotspot/share/runtime/init.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ void vm_init_globals() {
115115
jint init_globals() {
116116
management_init();
117117
JvmtiExport::initialize_oop_storage();
118+
#if INCLUDE_JVMTI
119+
if (AlwaysRecordEvolDependencies) {
120+
JvmtiExport::set_can_hotswap_or_post_breakpoint(true);
121+
JvmtiExport::set_all_dependencies_are_recorded(true);
122+
}
123+
#endif
118124
bytecodes_init();
119125
classLoader_init1();
120126
compilationPolicy_init();

0 commit comments

Comments
 (0)
Please sign in to comment.