This patch makes vectorizable_load and vectorizable_store cope with variable-length vectors. The reverse and permute cases will be excluded by the code that checks the permutation mask (although a patch after the main SVE submission adds support for the reversed case). Here we also need to exclude VMAT_ELEMENTWISE and VMAT_STRIDED_SLP, which split the operation up into a constant number of constant-sized operations. We also don't try to extend the current widening gather/scatter support to variable-length vectors, since SVE uses a different approach.
2017-10-23 Richard Sandiford <richard.sandif...@linaro.org> Alan Hayward <alan.hayw...@arm.com> David Sherwood <david.sherw...@arm.com> gcc/ * tree-vect-stmts.c (get_load_store_type): Treat the number of units as polynomial. Reject VMAT_ELEMENTWISE and VMAT_STRIDED_SLP for variable-length vectors. (vectorizable_mask_load_store): Treat the number of units as polynomial, asserting that it is constant if the condition has already been enforced. (vectorizable_store, vectorizable_load): Likewise. Index: gcc/tree-vect-stmts.c =================================================================== --- gcc/tree-vect-stmts.c 2017-10-23 17:22:32.730226813 +0100 +++ gcc/tree-vect-stmts.c 2017-10-23 17:22:38.938582823 +0100 @@ -1955,6 +1955,7 @@ get_load_store_type (gimple *stmt, tree stmt_vec_info stmt_info = vinfo_for_stmt (stmt); vec_info *vinfo = stmt_info->vinfo; loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info); + poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype); if (STMT_VINFO_GATHER_SCATTER_P (stmt_info)) { *memory_access_type = VMAT_GATHER_SCATTER; @@ -1998,6 +1999,17 @@ get_load_store_type (gimple *stmt, tree *memory_access_type = VMAT_CONTIGUOUS; } + if ((*memory_access_type == VMAT_ELEMENTWISE + || *memory_access_type == VMAT_STRIDED_SLP) + && !nunits.is_constant ()) + { + if (dump_enabled_p ()) + dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location, + "Not using elementwise accesses due to variable " + "vectorization factor.\n"); + return false; + } + /* FIXME: At the moment the cost model seems to underestimate the cost of using elementwise accesses. This check preserves the traditional behavior until that can be fixed. */ @@ -2038,7 +2050,7 @@ vectorizable_mask_load_store (gimple *st tree dummy; tree dataref_ptr = NULL_TREE; gimple *ptr_incr; - int nunits = TYPE_VECTOR_SUBPARTS (vectype); + poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype); int ncopies; int i, j; bool inv_p; @@ -2168,7 +2180,8 @@ vectorizable_mask_load_store (gimple *st gimple_seq seq; basic_block new_bb; enum { NARROW, NONE, WIDEN } modifier; - int gather_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); + poly_uint64 gather_off_nunits + = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); rettype = TREE_TYPE (TREE_TYPE (gs_info.decl)); srctype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); @@ -2179,32 +2192,37 @@ vectorizable_mask_load_store (gimple *st gcc_checking_assert (types_compatible_p (srctype, rettype) && types_compatible_p (srctype, masktype)); - if (nunits == gather_off_nunits) + if (must_eq (nunits, gather_off_nunits)) modifier = NONE; - else if (nunits == gather_off_nunits / 2) + else if (must_eq (nunits * 2, gather_off_nunits)) { modifier = WIDEN; - auto_vec_perm_indices sel (gather_off_nunits); - for (i = 0; i < gather_off_nunits; ++i) - sel.quick_push (i | nunits); + /* Currently widening gathers and scatters are only supported for + fixed-length vectors. */ + int count = gather_off_nunits.to_constant (); + auto_vec_perm_indices sel (count); + for (i = 0; i < count; ++i) + sel.quick_push (i | (count / 2)); perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel); } - else if (nunits == gather_off_nunits * 2) + else if (must_eq (nunits, gather_off_nunits * 2)) { modifier = NARROW; - auto_vec_perm_indices sel (nunits); - sel.quick_grow (nunits); - for (i = 0; i < nunits; ++i) - sel[i] = i < gather_off_nunits - ? i : i + nunits - gather_off_nunits; + /* Currently narrowing gathers and scatters are only supported for + fixed-length vectors. */ + int count = nunits.to_constant (); + auto_vec_perm_indices sel (count); + sel.quick_grow (count); + for (i = 0; i < count; ++i) + sel[i] = i < count / 2 ? i : i + count / 2; perm_mask = vect_gen_perm_mask_checked (vectype, sel); ncopies *= 2; - for (i = 0; i < nunits; ++i) - sel[i] = i | gather_off_nunits; + for (i = 0; i < count; ++i) + sel[i] = i | (count / 2); mask_perm_mask = vect_gen_perm_mask_checked (masktype, sel); } else @@ -5713,7 +5731,7 @@ vectorizable_store (gimple *stmt, gimple gcc_assert (gimple_assign_single_p (stmt)); tree vectype = STMT_VINFO_VECTYPE (stmt_info), rhs_vectype = NULL_TREE; - unsigned int nunits = TYPE_VECTOR_SUBPARTS (vectype); + poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype); if (loop_vinfo) { @@ -5807,28 +5825,35 @@ vectorizable_store (gimple *stmt, gimple gimple_seq seq; basic_block new_bb; enum { NARROW, NONE, WIDEN } modifier; - int scatter_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); + poly_uint64 scatter_off_nunits + = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); - if (nunits == (unsigned int) scatter_off_nunits) + if (must_eq (nunits, scatter_off_nunits)) modifier = NONE; - else if (nunits == (unsigned int) scatter_off_nunits / 2) + else if (must_eq (nunits * 2, scatter_off_nunits)) { modifier = WIDEN; - auto_vec_perm_indices sel (scatter_off_nunits); - for (i = 0; i < (unsigned int) scatter_off_nunits; ++i) - sel.quick_push (i | nunits); + /* Currently gathers and scatters are only supported for + fixed-length vectors. */ + unsigned int count = scatter_off_nunits.to_constant (); + auto_vec_perm_indices sel (count); + for (i = 0; i < (unsigned int) count; ++i) + sel.quick_push (i | (count / 2)); perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel); gcc_assert (perm_mask != NULL_TREE); } - else if (nunits == (unsigned int) scatter_off_nunits * 2) + else if (must_eq (nunits, scatter_off_nunits * 2)) { modifier = NARROW; - auto_vec_perm_indices sel (nunits); - for (i = 0; i < (unsigned int) nunits; ++i) - sel.quick_push (i | scatter_off_nunits); + /* Currently gathers and scatters are only supported for + fixed-length vectors. */ + unsigned int count = nunits.to_constant (); + auto_vec_perm_indices sel (count); + for (i = 0; i < (unsigned int) count; ++i) + sel.quick_push (i | (count / 2)); perm_mask = vect_gen_perm_mask_checked (vectype, sel); gcc_assert (perm_mask != NULL_TREE); @@ -6002,6 +6027,8 @@ vectorizable_store (gimple *stmt, gimple tree stride_base, stride_step, alias_off; tree vec_oprnd; unsigned int g; + /* Checked by get_load_store_type. */ + unsigned int const_nunits = nunits.to_constant (); gcc_assert (!nested_in_vect_loop_p (loop, stmt)); @@ -6031,16 +6058,16 @@ vectorizable_store (gimple *stmt, gimple ... */ - unsigned nstores = nunits; + unsigned nstores = const_nunits; unsigned lnel = 1; tree ltype = elem_type; tree lvectype = vectype; if (slp) { - if (group_size < nunits - && nunits % group_size == 0) + if (group_size < const_nunits + && const_nunits % group_size == 0) { - nstores = nunits / group_size; + nstores = const_nunits / group_size; lnel = group_size; ltype = build_vector_type (elem_type, group_size); lvectype = vectype; @@ -6063,17 +6090,17 @@ vectorizable_store (gimple *stmt, gimple unsigned lsize = group_size * GET_MODE_BITSIZE (elmode); elmode = int_mode_for_size (lsize, 0).require (); + unsigned int lnunits = const_nunits / group_size; /* If we can't construct such a vector fall back to element extracts from the original vector type and element size stores. */ - if (mode_for_vector (elmode, - nunits / group_size).exists (&vmode) + if (mode_for_vector (elmode, lnunits).exists (&vmode) && VECTOR_MODE_P (vmode) && (convert_optab_handler (vec_extract_optab, vmode, elmode) != CODE_FOR_nothing)) { - nstores = nunits / group_size; + nstores = lnunits; lnel = group_size; ltype = build_nonstandard_integer_type (lsize, 1); lvectype = build_vector_type (ltype, nstores); @@ -6085,11 +6112,11 @@ vectorizable_store (gimple *stmt, gimple issue exists here for reasonable archs. */ } } - else if (group_size >= nunits - && group_size % nunits == 0) + else if (group_size >= const_nunits + && group_size % const_nunits == 0) { nstores = 1; - lnel = nunits; + lnel = const_nunits; ltype = vectype; lvectype = vectype; } @@ -6652,8 +6679,9 @@ vectorizable_load (gimple *stmt, gimple_ tree dataref_offset = NULL_TREE; gimple *ptr_incr = NULL; int ncopies; - int i, j, group_size; - poly_int64 group_gap_adj; + int i, j; + unsigned int group_size; + poly_uint64 group_gap_adj; tree msq = NULL_TREE, lsq; tree offset = NULL_TREE; tree byte_offset = NULL_TREE; @@ -6707,7 +6735,7 @@ vectorizable_load (gimple *stmt, gimple_ return false; tree vectype = STMT_VINFO_VECTYPE (stmt_info); - int nunits = TYPE_VECTOR_SUBPARTS (vectype); + poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype); if (loop_vinfo) { @@ -6846,28 +6874,34 @@ vectorizable_load (gimple *stmt, gimple_ gimple_seq seq; basic_block new_bb; enum { NARROW, NONE, WIDEN } modifier; - int gather_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); + poly_uint64 gather_off_nunits + = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype); - if (nunits == gather_off_nunits) + if (must_eq (nunits, gather_off_nunits)) modifier = NONE; - else if (nunits == gather_off_nunits / 2) + else if (must_eq (nunits * 2, gather_off_nunits)) { modifier = WIDEN; - auto_vec_perm_indices sel (gather_off_nunits); - for (i = 0; i < gather_off_nunits; ++i) - sel.quick_push (i | nunits); + /* Currently widening gathers are only supported for + fixed-length vectors. */ + int count = gather_off_nunits.to_constant (); + auto_vec_perm_indices sel (count); + for (i = 0; i < count; ++i) + sel.quick_push (i | (count / 2)); perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel); } - else if (nunits == gather_off_nunits * 2) + else if (must_eq (nunits, gather_off_nunits * 2)) { modifier = NARROW; - auto_vec_perm_indices sel (nunits); - for (i = 0; i < nunits; ++i) - sel.quick_push (i < gather_off_nunits - ? i : i + nunits - gather_off_nunits); + /* Currently narrowing gathers are only supported for + fixed-length vectors. */ + int count = nunits.to_constant (); + auto_vec_perm_indices sel (count); + for (i = 0; i < count; ++i) + sel.quick_push (i < count / 2 ? i : i + count / 2); perm_mask = vect_gen_perm_mask_checked (vectype, sel); ncopies *= 2; @@ -7016,6 +7050,8 @@ vectorizable_load (gimple *stmt, gimple_ vec<constructor_elt, va_gc> *v = NULL; gimple_seq stmts = NULL; tree stride_base, stride_step, alias_off; + /* Checked by get_load_store_type. */ + unsigned int const_nunits = nunits.to_constant (); gcc_assert (!nested_in_vect_loop); @@ -7077,14 +7113,14 @@ vectorizable_load (gimple *stmt, gimple_ prev_stmt_info = NULL; running_off = offvar; alias_off = build_int_cst (ref_type, 0); - int nloads = nunits; + int nloads = const_nunits; int lnel = 1; tree ltype = TREE_TYPE (vectype); tree lvectype = vectype; auto_vec<tree> dr_chain; if (memory_access_type == VMAT_STRIDED_SLP) { - if (group_size < nunits) + if (group_size < const_nunits) { /* First check if vec_init optab supports construction from vector elts directly. */ @@ -7096,7 +7132,7 @@ vectorizable_load (gimple *stmt, gimple_ TYPE_MODE (vectype), vmode) != CODE_FOR_nothing)) { - nloads = nunits / group_size; + nloads = const_nunits / group_size; lnel = group_size; ltype = build_vector_type (TREE_TYPE (vectype), group_size); } @@ -7112,15 +7148,15 @@ vectorizable_load (gimple *stmt, gimple_ unsigned lsize = group_size * TYPE_PRECISION (TREE_TYPE (vectype)); elmode = int_mode_for_size (lsize, 0).require (); + unsigned int lnunits = const_nunits / group_size; /* If we can't construct such a vector fall back to element loads of the original vector type. */ - if (mode_for_vector (elmode, - nunits / group_size).exists (&vmode) + if (mode_for_vector (elmode, lnunits).exists (&vmode) && VECTOR_MODE_P (vmode) && (convert_optab_handler (vec_init_optab, vmode, elmode) != CODE_FOR_nothing)) { - nloads = nunits / group_size; + nloads = lnunits; lnel = group_size; ltype = build_nonstandard_integer_type (lsize, 1); lvectype = build_vector_type (ltype, nloads); @@ -7130,7 +7166,7 @@ vectorizable_load (gimple *stmt, gimple_ else { nloads = 1; - lnel = nunits; + lnel = const_nunits; ltype = vectype; } ltype = build_aligned_type (ltype, TYPE_ALIGN (TREE_TYPE (vectype))); @@ -7145,13 +7181,13 @@ vectorizable_load (gimple *stmt, gimple_ /* We don't yet generate SLP_TREE_LOAD_PERMUTATIONs for variable VF. */ unsigned int const_vf = vf.to_constant (); - ncopies = (group_size * const_vf + nunits - 1) / nunits; + ncopies = CEIL (group_size * const_vf, const_nunits); dr_chain.create (ncopies); } else ncopies = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node); } - int group_el = 0; + unsigned int group_el = 0; unsigned HOST_WIDE_INT elsz = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (vectype))); for (j = 0; j < ncopies; j++) @@ -7266,7 +7302,8 @@ vectorizable_load (gimple *stmt, gimple_ /* We don't yet generate SLP_TREE_LOAD_PERMUTATIONs for variable VF. */ unsigned int const_vf = vf.to_constant (); - vec_num = (group_size * const_vf + nunits - 1) / nunits; + unsigned int const_nunits = nunits.to_constant (); + vec_num = CEIL (group_size * const_vf, const_nunits); group_gap_adj = vf * group_size - nunits * vec_num; } else @@ -7434,7 +7471,7 @@ vectorizable_load (gimple *stmt, gimple_ aggr_type = vectype; prev_stmt_info = NULL; - int group_elt = 0; + poly_uint64 group_elt = 0; for (j = 0; j < ncopies; j++) { /* 1. Create the vector or array pointer update chain. */