Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8260767 | openjdk8u292 | Andrew Hughes | P4 | Resolved | Fixed | b01 |
Currently, the aarch64 port simply implements this stub routine by calling StubRoutines::_jbyte_arraycopy. Just like x86 & sparc port does, we can make this faster by checking the alignment of the src, dest, and count, and call some better arraycopy stubs, (say StubRoutines::_jshort_arraycopy). I see some 1%+ performance improvement on Spark Terasort benchmark by doing this.
BTW: we are missing _unsafe_arraycopy and _generic_arraycopy stubs for jdk8u, I would like to backport them from jdk9 after this improvement is approved and merged.
BTW: we are missing _unsafe_arraycopy and _generic_arraycopy stubs for jdk8u, I would like to backport them from jdk9 after this improvement is approved and merged.
- backported by
-
JDK-8260767 aarch64: improve _unsafe_arraycopy stub routine
- Resolved
- relates to
-
JDK-8257192 Integrate AArch64 JIT port into 8u
- Resolved