RFR: 8284960: Integration of JEP 426: Vector API (Fourth Incubator) [v10]
Vladimir Kozlov
kvn at openjdk.java.net
Thu May 26 21:04:14 UTC 2022
On Wed, 25 May 2022 06:29:23 GMT, Jatin Bhateja <jbhateja at openjdk.org> wrote:
>> Hi All,
>>
>> Patch adds the planned support for new vector operations and APIs targeted for [JEP 426: Vector API (Fourth Incubator).](https://bugs.openjdk.java.net/browse/JDK-8280173)
>>
>> Following is the brief summary of changes:-
>>
>> 1) Extends the scope of existing lanewise API for following new vector operations.
>> - VectorOperations.BIT_COUNT: counts the number of one-bits
>> - VectorOperations.LEADING_ZEROS_COUNT: counts the number of leading zero bits
>> - VectorOperations.TRAILING_ZEROS_COUNT: counts the number of trailing zero bits
>> - VectorOperations.REVERSE: reversing the order of bits
>> - VectorOperations.REVERSE_BYTES: reversing the order of bytes
>> - compress and expand bits: Semantics are based on Hacker's Delight section 7-4 Compress, or Generalized Extract.
>>
>> 2) Adds following new APIs to perform cross lane vector compress and expansion operations under the influence of a mask.
>> - Vector.compress
>> - Vector.expand
>> - VectorMask.compress
>>
>> 3) Adds predicated and non-predicated versions of following new APIs to load and store the contents of vector from foreign MemorySegments.
>> - Vector.fromMemorySegment
>> - Vector.intoMemorySegment
>>
>> 4) C2 Compiler IR enhancements and optimized X86 and AARCH64 backend support for each newly added operation.
>>
>>
>> Patch has been regressed over AARCH64 and X86 targets different AVX levels.
>>
>> Kindly review and share your feedback.
>>
>> Best Regards,
>> Jatin
>
> Jatin Bhateja has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains 20 commits:
>
> - 8284960: Post merge cleanups.
> - Merge branch 'master' of http://github.com/openjdk/jdk into JDK-8284960
> - 8284960: Review comments resolved.
> - 8284960: Integrating incremental patches.
> - Merge branch 'master' of http://github.com/openjdk/jdk into JDK-8284960
> - 8284960: Changes to enable jdk.incubator.vector to be treated as preview participant. Code re-organization related to Reverse/ReverseByte IR transforms.
> - 8284960: Adding --enable-preview in vectorAPI benchmarks.
> - Merge branch 'master' of http://github.com/openjdk/jdk into JDK-8284960
> - 8284960: Review comments resolution.
> - Merge branch 'master' of http://github.com/openjdk/jdk into JDK-8284960
> - ... and 10 more: https://git.openjdk.java.net/jdk/compare/742644e2...0f6e1584
Good.
-------------
Marked as reviewed by kvn (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/8425
More information about the hotspot-compiler-dev
mailing list