-
Bug
-
Resolution: Fixed
-
P2
-
6
-
b10
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2176860 | 7 | Vladimir Kozlov | P3 | Closed | Fixed | b10 |
JDK-2146940 | 6u2 | Vladimir Kozlov | P2 | Resolved | Fixed | b01 |
System.arraycopy() of char[] types is a bottleneck for many appserver benchmarks (specifically jshort_disjoint_arraycopy). We made some optimizations to the appserver around the way in which it handles certain data; essentially we changed a number of char[] to byte[]. Because of the encoding used, the byte arrays are half as long as the char arrays, and we expected a decrease in the amount of time the appserver spends copying these arrays. Instead, our general performance regressed, and the amount of time in System.arraycopy (now in jbyte_disjoint_array) doubled.
The attached test program shows the problem; somehow, c2 is using type information and not optimizing the system array copy. The test program has two types of methods. The first method uses a specific type:
public void doit(byte[] b1, byte[] b2, int len) {
System.arraycopy(b1, 0, b2, 0, len);
}
The second method uses a generic type:
public void doit(Object o1, Object o2, int len) {
System.arraycopy(o1, 0, o2, 0, len);
}
On Solaris/Sparc, copy various arrays gives this performance:
Time to copy 1024 bytes (1024 bytes): 436
Time to copy 512 chars (1024 bytes): 255
Time to copy 1024 chars (2048 bytes): 439
Time to copy 256 ints (1024 bytes): 254
Time to copy 1024 ints (4096 bytes): 872
Time to copy (generic interface) 1024 bytes (1024 bytes): 340
Time to copy (generic interface) 512 chars (1024 bytes): 387
Time to copy (generic interface) 256 ints (1024 bytes): 387
The first two cases are copying the same amount of data (using a method with an explicit type defined) and hence should take the same amount of time.
The very odd thing is that the last three cases all also copy 1024 bytes (using the Object-type interface) and take the same amount of time regardless of the actual data type (but still take longer than the best cases where the type is known).
With C1, the times are roughly the same (in fact, they favor byte[] copying slightly).
I listed the OS/hardware as generic, but in fact I've observed this only on Solaris (both sparc and x86) and windows (i586). On Linux (i586) the performance was as expected (amount of time was always dependent on total number of bytes copied).
The attached test program shows the problem; somehow, c2 is using type information and not optimizing the system array copy. The test program has two types of methods. The first method uses a specific type:
public void doit(byte[] b1, byte[] b2, int len) {
System.arraycopy(b1, 0, b2, 0, len);
}
The second method uses a generic type:
public void doit(Object o1, Object o2, int len) {
System.arraycopy(o1, 0, o2, 0, len);
}
On Solaris/Sparc, copy various arrays gives this performance:
Time to copy 1024 bytes (1024 bytes): 436
Time to copy 512 chars (1024 bytes): 255
Time to copy 1024 chars (2048 bytes): 439
Time to copy 256 ints (1024 bytes): 254
Time to copy 1024 ints (4096 bytes): 872
Time to copy (generic interface) 1024 bytes (1024 bytes): 340
Time to copy (generic interface) 512 chars (1024 bytes): 387
Time to copy (generic interface) 256 ints (1024 bytes): 387
The first two cases are copying the same amount of data (using a method with an explicit type defined) and hence should take the same amount of time.
The very odd thing is that the last three cases all also copy 1024 bytes (using the Object-type interface) and take the same amount of time regardless of the actual data type (but still take longer than the best cases where the type is known).
With C1, the times are roughly the same (in fact, they favor byte[] copying slightly).
I listed the OS/hardware as generic, but in fact I've observed this only on Solaris (both sparc and x86) and windows (i586). On Linux (i586) the performance was as expected (amount of time was always dependent on total number of bytes copied).
- backported by
-
JDK-2146940 System.arraycopy performance lags
-
- Resolved
-
-
JDK-2176860 System.arraycopy performance lags
-
- Closed
-
- relates to
-
JDK-6547163 6498658 changes introduced regression in arraycopy on sparc
-
- Resolved
-
-
JDK-6570219 REG: VM crash when printing an image in different orientations, SolSparc
-
- Closed
-