JDK-8027550 : Improve object array chunking test in ParNew
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: hs25,8
  • Priority: P4
  • Status: Closed
  • Resolution: Won't Fix
  • Submitted: 2013-10-30
  • Updated: 2020-09-16
  • Resolved: 2020-06-17
Related Reports
Relates :  
Relates :  
Description
JDK-8027545 is an RFE to enhance the object array chunking test in the oop closures for G1, to effectively make them similar to Parallel GC.

ParNew could also benefit from this optimization:

bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
  return new_obj->is_objArray() &&
         arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
         new_obj != old_obj;
}


Comments
CMS/ParNew has been removed.
17-06-2020