[vectorIntrinsics] Integrated: 8263930: Add "VectorTest" implementation for Arm SVE
Xiaohong Gong
xgong at openjdk.java.net
Fri Mar 26 05:48:35 UTC 2021
On Tue, 23 Mar 2021 10:11:47 GMT, Xiaohong Gong <xgong at openjdk.org> wrote:
> Currently the backend implementation for "VectorTestNode" is not added for Arm SVE. This node is used to test whether the mask vector is "allTrue/anyTrue". This patch adds the basic SVE implementation for it. Note that it is not totally based on the SVE predicate feature. And this will be improved once the basic SVE predicate feature is supported for Vector API.
>
> For `"allTrue"`, a predicate will be firstly generated by comparing the mask vector with immediate "0". Then the result can be set based on whether no active elements are true. The codes look like:
> cmpeq p0.s, p7/z, z17.s, #0 ; "z17.s" is the mask vector
> cset w12, eq // eq = none
>
> For `"anyTrue"`, a predicate will be firstly generated by comparing the mask vector with immediate "-1". And the result can be set based on whether any active element is true. The codes look like:
> cmpeq p0.s, p7/z, z17.s, #-1 ; "z17.s" is the mask vector
> cset w12, ne // ne = any
This pull request has now been integrated.
Changeset: 3569e39e
Author: Xiaohong Gong <xgong at openjdk.org>
Committer: Ningsheng Jian <njian at openjdk.org>
URL: https://git.openjdk.java.net/panama-vector/commit/3569e39e
Stats: 142 lines in 2 files changed: 140 ins; 2 del; 0 mod
8263930: Add "VectorTest" implementation for Arm SVE
Reviewed-by: njian, whuang
-------------
PR: https://git.openjdk.java.net/panama-vector/pull/52
More information about the panama-dev
mailing list