JDK-8038418 : New tests development for type profiling and speculation
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: 8
  • Priority: P2
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2013-10-22
  • Updated: 2014-07-29
  • Resolved: 2014-04-11
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 8 JDK 9
8u20Fixed 9 b11Fixed
Related Reports
Blocks :  
Relates :  
Description
New tests should be created to cover new type profiling points added by JDK-8026251, JDK-8023657, JDK-8026054 and type speculation by JDK-8024070.
These changes add type profiling for:
 1. reference parameters on method entries (JDK-8026251),
 2. reference arguments at an invoke (JDK-8023657),
 3. return values of reference types from an invoke (JDK-8026054).

The speculative types are used for:
 1. checkcast, instanceof, aastore
 2. receiver at invokes
 3. System.arraycopy()
 4. Class.isInstance()
 5. patterns of the form: if (a.getClass() == D.class)