@@ -4060,21 +4060,22 @@ void VM_RedefineClasses::transfer_old_native_function_registrations(InstanceKlas
4060
4060
// Deoptimize all compiled code that depends on the classes redefined.
4061
4061
//
4062
4062
// 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.
4066
4066
//
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.
4074
4074
//
4075
4075
4076
4076
void VM_RedefineClasses::flush_dependent_code () {
4077
4077
assert (SafepointSynchronize::is_at_safepoint (), " sanity check" );
4078
+ assert (JvmtiExport::all_dependencies_are_recorded () || !AlwaysRecordEvolDependencies, " sanity check" );
4078
4079
4079
4080
DeoptimizationScope deopt_scope;
4080
4081
0 commit comments