-
Enhancement
-
Resolution: Unresolved
-
P4
-
24
This is the corresponding optimization to JDK-8318446.
We would be converting:
byte[] a = ...;
int = a[0] + (a[1] << 8) + (a[1] << 16) + (a[1] << 24);
into a single integer load.
We would be converting:
byte[] a = ...;
int = a[0] + (a[1] << 8) + (a[1] << 16) + (a[1] << 24);
into a single integer load.
- relates to
-
JDK-8318446 C2: optimize stores into primitive arrays by combining values into larger store
- Resolved