-
Bug
-
Resolution: Fixed
-
P2
-
repo-valhalla
C2 fails to scalarize inline types wrapped into non-inline, non-escaping (box) objects.
For example, in TestLWorld::test109, C2 successfully scalar replaces the InterfaceBox object but not the LongWrapper object it contains because of the complex control flow in LongWrapper::wrap. However, since LongWrapper is an inline type, we don't need to rely on Escape Analysis to be able to scalar replace. Now the problem is that LongWrapper is stored as oop in a field of type WrapperInterface and we don't keep track of the ValueType(Ptr)Node long enough (i.e. until after EA) for the load to be removed and the buffer allocation to go away.
For example, in TestLWorld::test109, C2 successfully scalar replaces the InterfaceBox object but not the LongWrapper object it contains because of the complex control flow in LongWrapper::wrap. However, since LongWrapper is an inline type, we don't need to rely on Escape Analysis to be able to scalar replace. Now the problem is that LongWrapper is stored as oop in a field of type WrapperInterface and we don't keep track of the ValueType(Ptr)Node long enough (i.e. until after EA) for the load to be removed and the buffer allocation to go away.
- relates to
-
JDK-8247216 [lworld] Revisit mergemem optimizations
-
- Open
-