[vectorIntrinsics] RFR: 8264469: Add Insert float nodes implementation for Arm SVE [v2]

Ningsheng Jian njian at openjdk.java.net
Fri Apr 2 09:09:37 UTC 2021


On Fri, 2 Apr 2021 08:22:50 GMT, Wang Huang <whuang at openjdk.org> wrote:

>> * Add Insert float nodes implementation for Arm SVE, like insertD & insertF
>> * add fast path by using `cmpeq `(SVE compare vector with immediate). For the range limit of `imm5` is [-16, 15], I shift the index range from [0, 31] to [-16, 15].
>
> Wang Huang has updated the pull request incrementally with one additional commit since the last revision:
> 
>   add fast path

src/hotspot/cpu/aarch64/aarch64_sve.ad line 3442:

> 3440: instruct insertL(vReg dst, vReg src, iRegL val, immI idx, vReg tmp1, vReg tmp2, pRegGov pTmp, rFlagsReg cr)
> 3441: %{
> 3442:   predicate(UseSVE > 0 && n->as_Vector()->length() > 32 &&

Is it possible to have more than 32 doubles/longs?

-------------

PR: https://git.openjdk.java.net/panama-vector/pull/56


More information about the panama-dev mailing list