-
Bug
-
Resolution: Fixed
-
P3
-
repo-panama
Certain masked load and store operations are implemented incorrectly or are not implemented:
- masked fromByteBuffer is not implemented correctly when any one or more masked lanes are unset. The bounds checks look incorrect and the access ignores the mask. If the load is intrinsified it could result in access beyond the end of the buffer region.
(see masked fromArray as a template to copy from)
- masked intoByteBuffer throws an assertion error (stating unimplemented) if any masked lane is unset and the store covers the end of the buffer region.
(see masked intoArray as a template to copy from)
- masked intoArray and fromArray using an indexMap (scatter/gather)
Aim to provide a functional but non-optimal implementation when there are unset bits in the mask, and/or if the set bits are out of bounds.
Negative tests are required to ensure out-of-bounds exceptions are thrown, with and without intrinsification (seeJDK-8221816 for possible test templates)
- masked fromByteBuffer is not implemented correctly when any one or more masked lanes are unset. The bounds checks look incorrect and the access ignores the mask. If the load is intrinsified it could result in access beyond the end of the buffer region.
(see masked fromArray as a template to copy from)
- masked intoByteBuffer throws an assertion error (stating unimplemented) if any masked lane is unset and the store covers the end of the buffer region.
(see masked intoArray as a template to copy from)
- masked intoArray and fromArray using an indexMap (scatter/gather)
Aim to provide a functional but non-optimal implementation when there are unset bits in the mask, and/or if the set bits are out of bounds.
Negative tests are required to ensure out-of-bounds exceptions are thrown, with and without intrinsification (see
- relates to
-
JDK-8223367 [vector] masked memory operations must correctly implement unset lanes
-
- Open
-
-
JDK-8221816 [vector] IndexOutOfBoundsException for fromArray/intoArray with unset mask lanes
-
- Closed
-