Pass the data vector mode to get_mask_mode
authorRichard Sandiford <richard.sandiford@arm.com>
Thu, 14 Nov 2019 14:55:12 +0000 (14:55 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Thu, 14 Nov 2019 14:55:12 +0000 (14:55 +0000)
commit10116ec1c147a76522cafba6b6a5b4ed1cb37b77
tree776dc1f9e2372ad4300b7120c178f4dfc3c7121a
parente8738f4e9686203451fd11f05b268b8a31b95ebd
Pass the data vector mode to get_mask_mode

This patch passes the data vector mode to get_mask_mode, rather than its
size and nunits.  This is a bit simpler and allows targets to distinguish
between modes that happen to have the same size and number of elements.

2019-11-14  Richard Sandiford  <richard.sandiford@arm.com>

gcc/
* target.def (get_mask_mode): Take a vector mode itself as argument,
instead of properties about the vector mode.
* doc/tm.texi: Regenerate.
* targhooks.h (default_get_mask_mode): Update to reflect new
get_mode_mask interface.
* targhooks.c (default_get_mask_mode): Likewise.  Use
related_int_vector_mode.
* optabs-query.c (can_vec_mask_load_store_p): Update call
to get_mask_mode.
* tree-vect-stmts.c (check_load_store_masking): Likewise, checking
first that the original mode really is a vector.
* tree.c (build_truth_vector_type_for): Likewise.
* config/aarch64/aarch64.c (aarch64_get_mask_mode): Update for new
get_mode_mask interface.
(aarch64_expand_sve_vcond): Update call accordingly.
* config/gcn/gcn.c (gcn_vectorize_get_mask_mode): Update for new
get_mode_mask interface.
* config/i386/i386.c (ix86_get_mask_mode): Likewise.

From-SVN: r278233
gcc/ChangeLog
gcc/config/aarch64/aarch64.c
gcc/config/gcn/gcn.c
gcc/config/i386/i386.c
gcc/doc/tm.texi
gcc/optabs-query.c
gcc/target.def
gcc/targhooks.c
gcc/targhooks.h
gcc/tree-vect-stmts.c
gcc/tree.c