Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2215467 | 8 | Vladimir Kozlov | P4 | Resolved | Fixed | b08 |
Currently when array is large (>FastAllocateSizeLimit) C2 calls runtime which does allocation and zeroing. As result when large array allocation is followed by arraycopy zeroing elimination optimization does not happened.
Add a new runtime call for large arrays which will only return the pointer to new array without zeroing it. And the compiled code will do zeroing elimination and using ClearArray to zero the rest of array. We need to watch out for safepoints/deoptimization on the return from runtime call where it is expected that arrays are initialized. Also ClearArray should be precise since a large array could be allocated not in TLAB and is followed by an other object.
Add a new runtime call for large arrays which will only return the pointer to new array without zeroing it. And the compiled code will do zeroing elimination and using ClearArray to zero the rest of array. We need to watch out for safepoints/deoptimization on the return from runtime call where it is expected that arrays are initialized. Also ClearArray should be precise since a large array could be allocated not in TLAB and is followed by an other object.
- backported by
-
JDK-2215467 Use zeroing elimination optimization for large array
-
- Resolved
-
- relates to
-
JDK-7109887 java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
-
- Closed
-