-
Bug
-
Resolution: Fixed
-
P4
-
16, 17, 18
-
b23
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8280560 | 17.0.3-oracle | Tobias Hartmann | P4 | Resolved | Fixed | b04 |
JDK-8281202 | 17.0.3 | Goetz Lindenmaier | P4 | Resolved | Fixed | b01 |
Since around JDK 16 the following method cannot be compiled by C2 on AArch64:
public double mergeSync() { return Math.log(Math.sin(value)); }
811 416 ! 3 Test::mergeSync (61 bytes)
813 417 ! 4 Test::mergeSync (61 bytes)
816 417 ! 4 Test::mergeSync (61 bytes) COMPILE SKIPPED: too many D-U pinch points (retry at different tier)
816 418 ! 1 Test::mergeSync (61 bytes)
416 ! 3 Test::mergeSync (61 bytes) made not entrant
The problem is the scheduler will create temporary Nodes for each OptoReg killed by the MachProjs from the two runtime log/sin leaf calls. After SVE support was added these runtime calls kill more registers, and the number of new Nodes added by anti_do_def exceeds an internal limit (which is roughly proportional to the method size).
public double mergeSync() { return Math.log(Math.sin(value)); }
811 416 ! 3 Test::mergeSync (61 bytes)
813 417 ! 4 Test::mergeSync (61 bytes)
816 417 ! 4 Test::mergeSync (61 bytes) COMPILE SKIPPED: too many D-U pinch points (retry at different tier)
816 418 ! 1 Test::mergeSync (61 bytes)
416 ! 3 Test::mergeSync (61 bytes) made not entrant
The problem is the scheduler will create temporary Nodes for each OptoReg killed by the MachProjs from the two runtime log/sin leaf calls. After SVE support was added these runtime calls kill more registers, and the number of new Nodes added by anti_do_def exceeds an internal limit (which is roughly proportional to the method size).
- backported by
-
JDK-8280560 Scheduling fails with "too many D-U pinch points" on small method
-
- Resolved
-
-
JDK-8281202 Scheduling fails with "too many D-U pinch points" on small method
-
- Resolved
-
- links to
-
Commit openjdk/jdk17u-dev/ff3eec18
-
Commit openjdk/jdk/3934fe54
-
Review openjdk/jdk17u-dev/134
-
Review openjdk/jdk/6131
(1 links to)