JDK-6700100 : optimize inline_native_clone() for small objects with exact klass.
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: hs14
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: solaris_10
  • CPU: x86
  • Submitted: 2008-05-10
  • Updated: 2015-06-03
  • Resolved: 2015-01-06
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b47Fixed
Related Reports
Duplicate :  
Relates :  
Relates :  
Description
Currently C2 generares call to the arraycopy stub for all objects
even for one with no non-static fields in inline_native_clone().
It also prevents EA optimization for a new object.
Generate fields/elements copies (load -> store) for small objects
with exact klass (number and type of fields are known).