Skip to content

Commit 9f75d5c

Browse files
Wang HuangWu Yanmiaozhuojun
authored and
Ningsheng Jian
committedOct 27, 2021
8259948: Aarch64: Add cast nodes for Aarch64 Neon backend
Co-authored-by: Wang Huang <whuang@openjdk.org> Co-authored-by: Wu Yan <wuyan@openjdk.org> Co-authored-by: Miao Zhuojun <mouzhuojun@huawei.com> Reviewed-by: aph, eliu, njian
1 parent d98b7c2 commit 9f75d5c

File tree

6 files changed

+471
-263
lines changed

6 files changed

+471
-263
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

-20
Original file line numberDiff line numberDiff line change
@@ -2401,9 +2401,6 @@ const bool Matcher::match_rule_supported_vector(int opcode, int vlen, BasicType
24012401
// Special cases
24022402
switch (opcode) {
24032403
case Op_VectorMaskCmp:
2404-
// We don't have VectorReinterpret with bit_size less than 64 support for
2405-
// now, even for byte type. To be refined with fully VectorCast support.
2406-
case Op_VectorReinterpret:
24072404
if (vlen < 2 || bit_size < 64) {
24082405
return false;
24092406
}
@@ -2421,23 +2418,6 @@ const bool Matcher::match_rule_supported_vector(int opcode, int vlen, BasicType
24212418
return false;
24222419
}
24232420
break;
2424-
// Some types of VectorCast are not implemented for now.
2425-
case Op_VectorCastI2X:
2426-
if (bt == T_BYTE) {
2427-
return false;
2428-
}
2429-
break;
2430-
case Op_VectorCastS2X:
2431-
if (vlen < 4 || bit_size < 64) {
2432-
return false;
2433-
}
2434-
break;
2435-
case Op_VectorCastF2X:
2436-
case Op_VectorCastD2X:
2437-
if (bt == T_INT || bt == T_SHORT || bt == T_BYTE || bt == T_LONG) {
2438-
return false;
2439-
}
2440-
break;
24412421
case Op_LoadVectorGather:
24422422
case Op_StoreVectorScatter:
24432423
return false;

0 commit comments

Comments
 (0)
Please sign in to comment.