From: Richard Sandiford Date: Fri, 8 Nov 2019 08:37:26 +0000 (+0000) Subject: [AArch64] Don't handle bswap in aarch64_builtin_vectorized_function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=69a5dd57325484add5531a8c72399786f14b2ccd;p=gcc.git [AArch64] Don't handle bswap in aarch64_builtin_vectorized_function aarch64_builtin_vectorized_function no longer needs to handle bswap* since we have internal functions and optabs for all supported cases. 2019-11-08 Richard Sandiford gcc/ * config/aarch64/aarch64-builtins.c (aarch64_builtin_vectorized_function): Remove bswap handling. From-SVN: r277951 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4829fdf6aa..c97322cadf0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-11-08 Richard Sandiford + + * config/aarch64/aarch64-builtins.c + (aarch64_builtin_vectorized_function): Remove bswap handling. + 2019-11-08 Richard Sandiford * tree-core.h (tree_type_common::indivisible_p): New member variable. diff --git a/gcc/config/aarch64/aarch64-builtins.c b/gcc/config/aarch64/aarch64-builtins.c index 23a0db4f74f..83d6f75ae07 100644 --- a/gcc/config/aarch64/aarch64-builtins.c +++ b/gcc/config/aarch64/aarch64-builtins.c @@ -1918,29 +1918,6 @@ aarch64_builtin_vectorized_function (unsigned int fn, tree type_out, return aarch64_builtin_decls[builtin]; } - case CFN_BUILT_IN_BSWAP16: -#undef AARCH64_CHECK_BUILTIN_MODE -#define AARCH64_CHECK_BUILTIN_MODE(C, N) \ - (out_mode == N##Imode && out_n == C \ - && in_mode == N##Imode && in_n == C) - if (AARCH64_CHECK_BUILTIN_MODE (4, H)) - return aarch64_builtin_decls[AARCH64_SIMD_BUILTIN_UNOPU_bswapv4hi]; - else if (AARCH64_CHECK_BUILTIN_MODE (8, H)) - return aarch64_builtin_decls[AARCH64_SIMD_BUILTIN_UNOPU_bswapv8hi]; - else - return NULL_TREE; - case CFN_BUILT_IN_BSWAP32: - if (AARCH64_CHECK_BUILTIN_MODE (2, S)) - return aarch64_builtin_decls[AARCH64_SIMD_BUILTIN_UNOPU_bswapv2si]; - else if (AARCH64_CHECK_BUILTIN_MODE (4, S)) - return aarch64_builtin_decls[AARCH64_SIMD_BUILTIN_UNOPU_bswapv4si]; - else - return NULL_TREE; - case CFN_BUILT_IN_BSWAP64: - if (AARCH64_CHECK_BUILTIN_MODE (2, D)) - return aarch64_builtin_decls[AARCH64_SIMD_BUILTIN_UNOPU_bswapv2di]; - else - return NULL_TREE; default: return NULL_TREE; }