[lworld] RFR: 8359345: [lworld] C2 crashes with -XX:ForceNonTearable=*
Tobias Hartmann
thartmann at openjdk.org
Tue Jul 1 09:05:00 UTC 2025
On Mon, 30 Jun 2025 12:20:47 GMT, Tobias Hartmann <thartmann at openjdk.org> wrote:
> For test method `testFieldLoad1` the graph looks like this after parsing:
> 
>
> Now since [JDK-8354068](https://bugs.openjdk.org/browse/JDK-8354068) `MemNode::optimize_simple_memory_chain` rewires the memory input of strict field load `46 LoadL` to before the membar:
> 
>
> Later, a precedence edge from the membar to the load (now named `15 LoadL`) is added, leading to an unschedulable graph:
> 
>
> [JDK-8354981](https://bugs.openjdk.org/browse/JDK-8354981) added these `MemBarCPUOrders` around flat, atomic stores and then [JDK-8357474](https://bugs.openjdk.org/browse/JDK-8357474) also added them around loads. The same problem exists for `MemBarCPUOrders` emitted by stores. The memory input of following loads will be wired around them which is incorrect.
>
> For now, I disabled skipping past `MemBarCPUOrders` in `MemNode::optimize_simple_memory_chain` and filed [JDK-8361145](https://bugs.openjdk.org/browse/JDK-8361145) for a follow-up investigation.
>
> Thanks,
> Tobias
Good catch! Maybe we should just make the `CastI2N` a `TypeNode` and propagate the right type.
-------------
PR Comment: https://git.openjdk.org/valhalla/pull/1494#issuecomment-3022816035
More information about the valhalla-dev
mailing list