JDK-8009120 : Fuzz instruction scheduling in HotSpot compilers
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: compiler
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2013-02-27
  • Updated: 2020-09-29
  • Resolved: 2013-03-05
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 7 JDK 8 Other
7u181Fixed 8Fixed hs25Fixed
Related Reports
Duplicate :  
Relates :  
Relates :  
Description
This improvement will greatly aid the concurrency testing.

The possible idea is:
  - LCM schedules the instructions within the basic block, choosing the schedule based on the node inputs, latency, etc; we can hijack the selection process and randomize the choice.
  - GCM selects the basic block up the dominator tree with the best latency to fit the Node in; we can hijack this and randomize the placement.

Comments
Enabling -XX:+FuzzInstructionScheduling with this patch helps to reproduce the issue in JDK-8007898.
27-02-2013