-
Enhancement
-
Resolution: Fixed
-
P3
-
11, 12, 13
-
b07
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8224641 | 11.0.5-oracle | Roland Westrelin | P4 | Resolved | Fixed | b01 |
JDK-8227093 | 11.0.5 | Roland Westrelin | P3 | Resolved | Fixed | b01 |
void floss(ByteBuffer b, int n) {
for (int i = 0; i < SIZE; i++) {
b.putInt(i<<2, n);
}
}
for
ByteBuffer buf = ByteBuffer.allocateDirect(SIZE * 4);
is not vectorized but should be.
for (int i = 0; i < SIZE; i++) {
b.putInt(i<<2, n);
}
}
for
ByteBuffer buf = ByteBuffer.allocateDirect(SIZE * 4);
is not vectorized but should be.
- backported by
-
JDK-8227093 Off heap memory accesses should be vectorized
- Resolved
-
JDK-8224641 Off heap memory accesses should be vectorized
- Resolved