@@ -595,10 +595,10 @@ void InstanceKlass::deallocate_contents(ClassLoaderData* loader_data) {
595
595
596
596
// Release C heap allocated data that this points to, which includes
597
597
// reference counting symbol names.
598
- // Can't release the constant pool here because the constant pool can be
599
- // deallocated separately from the InstanceKlass for default methods and
600
- // redefine classes.
601
- release_C_heap_structures (/* release_constant_pool */ false );
598
+ // Can't release the constant pool or MethodData C heap data here because the constant
599
+ // pool can be deallocated separately from the InstanceKlass for default methods and
600
+ // redefine classes. MethodData can also be released separately.
601
+ release_C_heap_structures (/* release_sub_metadata */ false );
602
602
603
603
deallocate_methods (loader_data, methods ());
604
604
set_methods (NULL );
@@ -2650,13 +2650,15 @@ static void method_release_C_heap_structures(Method* m) {
2650
2650
m->release_C_heap_structures ();
2651
2651
}
2652
2652
2653
- // Called also by InstanceKlass::deallocate_contents, with false for release_constant_pool .
2654
- void InstanceKlass::release_C_heap_structures (bool release_constant_pool ) {
2653
+ // Called also by InstanceKlass::deallocate_contents, with false for release_sub_metadata .
2654
+ void InstanceKlass::release_C_heap_structures (bool release_sub_metadata ) {
2655
2655
// Clean up C heap
2656
2656
Klass::release_C_heap_structures ();
2657
2657
2658
2658
// Deallocate and call destructors for MDO mutexes
2659
- methods_do (method_release_C_heap_structures);
2659
+ if (release_sub_metadata) {
2660
+ methods_do (method_release_C_heap_structures);
2661
+ }
2660
2662
2661
2663
// Destroy the init_monitor
2662
2664
delete _init_monitor;
@@ -2696,7 +2698,7 @@ void InstanceKlass::release_C_heap_structures(bool release_constant_pool) {
2696
2698
2697
2699
FREE_C_HEAP_ARRAY (char , _source_debug_extension);
2698
2700
2699
- if (release_constant_pool ) {
2701
+ if (release_sub_metadata ) {
2700
2702
constants ()->release_C_heap_structures ();
2701
2703
}
2702
2704
}
0 commit comments