Don't warn when alignment of global common data exceeds maximum alignment.
[official-gcc.git] / gcc / tree-vect-slp.c
blobd2f6a16f22063f4d8f3ecb00ce0c9f04d5a6b9b0
1 /* SLP - Basic Block Vectorization
2 Copyright (C) 2007-2021 Free Software Foundation, Inc.
3 Contributed by Dorit Naishlos <dorit@il.ibm.com>
4 and Ira Rosen <irar@il.ibm.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "target.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-pass.h"
31 #include "ssa.h"
32 #include "optabs-tree.h"
33 #include "insn-config.h"
34 #include "recog.h" /* FIXME: for insn_data */
35 #include "fold-const.h"
36 #include "stor-layout.h"
37 #include "gimple-iterator.h"
38 #include "cfgloop.h"
39 #include "tree-vectorizer.h"
40 #include "langhooks.h"
41 #include "gimple-walk.h"
42 #include "dbgcnt.h"
43 #include "tree-vector-builder.h"
44 #include "vec-perm-indices.h"
45 #include "gimple-fold.h"
46 #include "internal-fn.h"
47 #include "dump-context.h"
48 #include "cfganal.h"
49 #include "tree-eh.h"
50 #include "tree-cfg.h"
51 #include "alloc-pool.h"
53 static bool vectorizable_slp_permutation (vec_info *, gimple_stmt_iterator *,
54 slp_tree, stmt_vector_for_cost *);
55 static void vect_print_slp_tree (dump_flags_t, dump_location_t, slp_tree);
57 static object_allocator<_slp_tree> *slp_tree_pool;
58 static slp_tree slp_first_node;
60 void
61 vect_slp_init (void)
63 slp_tree_pool = new object_allocator<_slp_tree> ("SLP nodes");
66 void
67 vect_slp_fini (void)
69 while (slp_first_node)
70 delete slp_first_node;
71 delete slp_tree_pool;
72 slp_tree_pool = NULL;
75 void *
76 _slp_tree::operator new (size_t n)
78 gcc_assert (n == sizeof (_slp_tree));
79 return slp_tree_pool->allocate_raw ();
82 void
83 _slp_tree::operator delete (void *node, size_t n)
85 gcc_assert (n == sizeof (_slp_tree));
86 slp_tree_pool->remove_raw (node);
90 /* Initialize a SLP node. */
92 _slp_tree::_slp_tree ()
94 this->prev_node = NULL;
95 if (slp_first_node)
96 slp_first_node->prev_node = this;
97 this->next_node = slp_first_node;
98 slp_first_node = this;
99 SLP_TREE_SCALAR_STMTS (this) = vNULL;
100 SLP_TREE_SCALAR_OPS (this) = vNULL;
101 SLP_TREE_VEC_STMTS (this) = vNULL;
102 SLP_TREE_VEC_DEFS (this) = vNULL;
103 SLP_TREE_NUMBER_OF_VEC_STMTS (this) = 0;
104 SLP_TREE_CHILDREN (this) = vNULL;
105 SLP_TREE_LOAD_PERMUTATION (this) = vNULL;
106 SLP_TREE_LANE_PERMUTATION (this) = vNULL;
107 SLP_TREE_DEF_TYPE (this) = vect_uninitialized_def;
108 SLP_TREE_CODE (this) = ERROR_MARK;
109 SLP_TREE_VECTYPE (this) = NULL_TREE;
110 SLP_TREE_REPRESENTATIVE (this) = NULL;
111 SLP_TREE_REF_COUNT (this) = 1;
112 this->failed = NULL;
113 this->max_nunits = 1;
114 this->lanes = 0;
117 /* Tear down a SLP node. */
119 _slp_tree::~_slp_tree ()
121 if (this->prev_node)
122 this->prev_node->next_node = this->next_node;
123 else
124 slp_first_node = this->next_node;
125 if (this->next_node)
126 this->next_node->prev_node = this->prev_node;
127 SLP_TREE_CHILDREN (this).release ();
128 SLP_TREE_SCALAR_STMTS (this).release ();
129 SLP_TREE_SCALAR_OPS (this).release ();
130 SLP_TREE_VEC_STMTS (this).release ();
131 SLP_TREE_VEC_DEFS (this).release ();
132 SLP_TREE_LOAD_PERMUTATION (this).release ();
133 SLP_TREE_LANE_PERMUTATION (this).release ();
134 if (this->failed)
135 free (failed);
138 /* Recursively free the memory allocated for the SLP tree rooted at NODE. */
140 void
141 vect_free_slp_tree (slp_tree node)
143 int i;
144 slp_tree child;
146 if (--SLP_TREE_REF_COUNT (node) != 0)
147 return;
149 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
150 if (child)
151 vect_free_slp_tree (child);
153 /* If the node defines any SLP only patterns then those patterns are no
154 longer valid and should be removed. */
155 stmt_vec_info rep_stmt_info = SLP_TREE_REPRESENTATIVE (node);
156 if (rep_stmt_info && STMT_VINFO_SLP_VECT_ONLY_PATTERN (rep_stmt_info))
158 stmt_vec_info stmt_info = vect_orig_stmt (rep_stmt_info);
159 STMT_VINFO_IN_PATTERN_P (stmt_info) = false;
160 STMT_SLP_TYPE (stmt_info) = STMT_SLP_TYPE (rep_stmt_info);
163 delete node;
166 /* Return a location suitable for dumpings related to the SLP instance. */
168 dump_user_location_t
169 _slp_instance::location () const
171 if (!root_stmts.is_empty ())
172 return root_stmts[0]->stmt;
173 else
174 return SLP_TREE_SCALAR_STMTS (root)[0]->stmt;
178 /* Free the memory allocated for the SLP instance. */
180 void
181 vect_free_slp_instance (slp_instance instance)
183 vect_free_slp_tree (SLP_INSTANCE_TREE (instance));
184 SLP_INSTANCE_LOADS (instance).release ();
185 SLP_INSTANCE_ROOT_STMTS (instance).release ();
186 instance->subgraph_entries.release ();
187 instance->cost_vec.release ();
188 free (instance);
192 /* Create an SLP node for SCALAR_STMTS. */
194 slp_tree
195 vect_create_new_slp_node (unsigned nops, tree_code code)
197 slp_tree node = new _slp_tree;
198 SLP_TREE_SCALAR_STMTS (node) = vNULL;
199 SLP_TREE_CHILDREN (node).create (nops);
200 SLP_TREE_DEF_TYPE (node) = vect_internal_def;
201 SLP_TREE_CODE (node) = code;
202 return node;
204 /* Create an SLP node for SCALAR_STMTS. */
206 static slp_tree
207 vect_create_new_slp_node (slp_tree node,
208 vec<stmt_vec_info> scalar_stmts, unsigned nops)
210 SLP_TREE_SCALAR_STMTS (node) = scalar_stmts;
211 SLP_TREE_CHILDREN (node).create (nops);
212 SLP_TREE_DEF_TYPE (node) = vect_internal_def;
213 SLP_TREE_REPRESENTATIVE (node) = scalar_stmts[0];
214 SLP_TREE_LANES (node) = scalar_stmts.length ();
215 return node;
218 /* Create an SLP node for SCALAR_STMTS. */
220 static slp_tree
221 vect_create_new_slp_node (vec<stmt_vec_info> scalar_stmts, unsigned nops)
223 return vect_create_new_slp_node (new _slp_tree, scalar_stmts, nops);
226 /* Create an SLP node for OPS. */
228 static slp_tree
229 vect_create_new_slp_node (slp_tree node, vec<tree> ops)
231 SLP_TREE_SCALAR_OPS (node) = ops;
232 SLP_TREE_DEF_TYPE (node) = vect_external_def;
233 SLP_TREE_LANES (node) = ops.length ();
234 return node;
237 /* Create an SLP node for OPS. */
239 static slp_tree
240 vect_create_new_slp_node (vec<tree> ops)
242 return vect_create_new_slp_node (new _slp_tree, ops);
246 /* This structure is used in creation of an SLP tree. Each instance
247 corresponds to the same operand in a group of scalar stmts in an SLP
248 node. */
249 typedef struct _slp_oprnd_info
251 /* Def-stmts for the operands. */
252 vec<stmt_vec_info> def_stmts;
253 /* Operands. */
254 vec<tree> ops;
255 /* Information about the first statement, its vector def-type, type, the
256 operand itself in case it's constant, and an indication if it's a pattern
257 stmt. */
258 tree first_op_type;
259 enum vect_def_type first_dt;
260 bool any_pattern;
261 } *slp_oprnd_info;
264 /* Allocate operands info for NOPS operands, and GROUP_SIZE def-stmts for each
265 operand. */
266 static vec<slp_oprnd_info>
267 vect_create_oprnd_info (int nops, int group_size)
269 int i;
270 slp_oprnd_info oprnd_info;
271 vec<slp_oprnd_info> oprnds_info;
273 oprnds_info.create (nops);
274 for (i = 0; i < nops; i++)
276 oprnd_info = XNEW (struct _slp_oprnd_info);
277 oprnd_info->def_stmts.create (group_size);
278 oprnd_info->ops.create (group_size);
279 oprnd_info->first_dt = vect_uninitialized_def;
280 oprnd_info->first_op_type = NULL_TREE;
281 oprnd_info->any_pattern = false;
282 oprnds_info.quick_push (oprnd_info);
285 return oprnds_info;
289 /* Free operands info. */
291 static void
292 vect_free_oprnd_info (vec<slp_oprnd_info> &oprnds_info)
294 int i;
295 slp_oprnd_info oprnd_info;
297 FOR_EACH_VEC_ELT (oprnds_info, i, oprnd_info)
299 oprnd_info->def_stmts.release ();
300 oprnd_info->ops.release ();
301 XDELETE (oprnd_info);
304 oprnds_info.release ();
308 /* Return true if STMTS contains a pattern statement. */
310 static bool
311 vect_contains_pattern_stmt_p (vec<stmt_vec_info> stmts)
313 stmt_vec_info stmt_info;
314 unsigned int i;
315 FOR_EACH_VEC_ELT (stmts, i, stmt_info)
316 if (is_pattern_stmt_p (stmt_info))
317 return true;
318 return false;
321 /* Return true when all lanes in the external or constant NODE have
322 the same value. */
324 static bool
325 vect_slp_tree_uniform_p (slp_tree node)
327 gcc_assert (SLP_TREE_DEF_TYPE (node) == vect_constant_def
328 || SLP_TREE_DEF_TYPE (node) == vect_external_def);
330 /* Pre-exsting vectors. */
331 if (SLP_TREE_SCALAR_OPS (node).is_empty ())
332 return false;
334 unsigned i;
335 tree op, first = NULL_TREE;
336 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_OPS (node), i, op)
337 if (!first)
338 first = op;
339 else if (!operand_equal_p (first, op, 0))
340 return false;
342 return true;
345 /* Find the place of the data-ref in STMT_INFO in the interleaving chain
346 that starts from FIRST_STMT_INFO. Return -1 if the data-ref is not a part
347 of the chain. */
350 vect_get_place_in_interleaving_chain (stmt_vec_info stmt_info,
351 stmt_vec_info first_stmt_info)
353 stmt_vec_info next_stmt_info = first_stmt_info;
354 int result = 0;
356 if (first_stmt_info != DR_GROUP_FIRST_ELEMENT (stmt_info))
357 return -1;
361 if (next_stmt_info == stmt_info)
362 return result;
363 next_stmt_info = DR_GROUP_NEXT_ELEMENT (next_stmt_info);
364 if (next_stmt_info)
365 result += DR_GROUP_GAP (next_stmt_info);
367 while (next_stmt_info);
369 return -1;
372 /* Check whether it is possible to load COUNT elements of type ELT_TYPE
373 using the method implemented by duplicate_and_interleave. Return true
374 if so, returning the number of intermediate vectors in *NVECTORS_OUT
375 (if nonnull) and the type of each intermediate vector in *VECTOR_TYPE_OUT
376 (if nonnull). */
378 bool
379 can_duplicate_and_interleave_p (vec_info *vinfo, unsigned int count,
380 tree elt_type, unsigned int *nvectors_out,
381 tree *vector_type_out,
382 tree *permutes)
384 tree base_vector_type = get_vectype_for_scalar_type (vinfo, elt_type, count);
385 if (!base_vector_type || !VECTOR_MODE_P (TYPE_MODE (base_vector_type)))
386 return false;
388 machine_mode base_vector_mode = TYPE_MODE (base_vector_type);
389 poly_int64 elt_bytes = count * GET_MODE_UNIT_SIZE (base_vector_mode);
390 unsigned int nvectors = 1;
391 for (;;)
393 scalar_int_mode int_mode;
394 poly_int64 elt_bits = elt_bytes * BITS_PER_UNIT;
395 if (int_mode_for_size (elt_bits, 1).exists (&int_mode))
397 /* Get the natural vector type for this SLP group size. */
398 tree int_type = build_nonstandard_integer_type
399 (GET_MODE_BITSIZE (int_mode), 1);
400 tree vector_type
401 = get_vectype_for_scalar_type (vinfo, int_type, count);
402 if (vector_type
403 && VECTOR_MODE_P (TYPE_MODE (vector_type))
404 && known_eq (GET_MODE_SIZE (TYPE_MODE (vector_type)),
405 GET_MODE_SIZE (base_vector_mode)))
407 /* Try fusing consecutive sequences of COUNT / NVECTORS elements
408 together into elements of type INT_TYPE and using the result
409 to build NVECTORS vectors. */
410 poly_uint64 nelts = GET_MODE_NUNITS (TYPE_MODE (vector_type));
411 vec_perm_builder sel1 (nelts, 2, 3);
412 vec_perm_builder sel2 (nelts, 2, 3);
413 poly_int64 half_nelts = exact_div (nelts, 2);
414 for (unsigned int i = 0; i < 3; ++i)
416 sel1.quick_push (i);
417 sel1.quick_push (i + nelts);
418 sel2.quick_push (half_nelts + i);
419 sel2.quick_push (half_nelts + i + nelts);
421 vec_perm_indices indices1 (sel1, 2, nelts);
422 vec_perm_indices indices2 (sel2, 2, nelts);
423 if (can_vec_perm_const_p (TYPE_MODE (vector_type), indices1)
424 && can_vec_perm_const_p (TYPE_MODE (vector_type), indices2))
426 if (nvectors_out)
427 *nvectors_out = nvectors;
428 if (vector_type_out)
429 *vector_type_out = vector_type;
430 if (permutes)
432 permutes[0] = vect_gen_perm_mask_checked (vector_type,
433 indices1);
434 permutes[1] = vect_gen_perm_mask_checked (vector_type,
435 indices2);
437 return true;
441 if (!multiple_p (elt_bytes, 2, &elt_bytes))
442 return false;
443 nvectors *= 2;
447 /* Return true if DTA and DTB match. */
449 static bool
450 vect_def_types_match (enum vect_def_type dta, enum vect_def_type dtb)
452 return (dta == dtb
453 || ((dta == vect_external_def || dta == vect_constant_def)
454 && (dtb == vect_external_def || dtb == vect_constant_def)));
457 /* Get the defs for the rhs of STMT (collect them in OPRNDS_INFO), check that
458 they are of a valid type and that they match the defs of the first stmt of
459 the SLP group (stored in OPRNDS_INFO). This function tries to match stmts
460 by swapping operands of STMTS[STMT_NUM] when possible. Non-zero *SWAP
461 indicates swap is required for cond_expr stmts. Specifically, *SWAP
462 is 1 if STMT is cond and operands of comparison need to be swapped;
463 *SWAP is 2 if STMT is cond and code of comparison needs to be inverted.
464 If there is any operand swap in this function, *SWAP is set to non-zero
465 value.
466 If there was a fatal error return -1; if the error could be corrected by
467 swapping operands of father node of this one, return 1; if everything is
468 ok return 0. */
469 static int
470 vect_get_and_check_slp_defs (vec_info *vinfo, unsigned char swap,
471 bool *skip_args,
472 vec<stmt_vec_info> stmts, unsigned stmt_num,
473 vec<slp_oprnd_info> *oprnds_info)
475 stmt_vec_info stmt_info = stmts[stmt_num];
476 tree oprnd;
477 unsigned int i, number_of_oprnds;
478 enum vect_def_type dt = vect_uninitialized_def;
479 slp_oprnd_info oprnd_info;
480 int first_op_idx = 1;
481 unsigned int commutative_op = -1U;
482 bool first_op_cond = false;
483 bool first = stmt_num == 0;
485 if (gcall *stmt = dyn_cast <gcall *> (stmt_info->stmt))
487 number_of_oprnds = gimple_call_num_args (stmt);
488 first_op_idx = 3;
489 if (gimple_call_internal_p (stmt))
491 internal_fn ifn = gimple_call_internal_fn (stmt);
492 commutative_op = first_commutative_argument (ifn);
494 /* Masked load, only look at mask. */
495 if (ifn == IFN_MASK_LOAD)
497 number_of_oprnds = 1;
498 /* Mask operand index. */
499 first_op_idx = 5;
503 else if (gassign *stmt = dyn_cast <gassign *> (stmt_info->stmt))
505 enum tree_code code = gimple_assign_rhs_code (stmt);
506 number_of_oprnds = gimple_num_ops (stmt) - 1;
507 /* Swap can only be done for cond_expr if asked to, otherwise we
508 could result in different comparison code to the first stmt. */
509 if (code == COND_EXPR
510 && COMPARISON_CLASS_P (gimple_assign_rhs1 (stmt)))
512 first_op_cond = true;
513 number_of_oprnds++;
515 else
516 commutative_op = commutative_tree_code (code) ? 0U : -1U;
518 else if (gphi *stmt = dyn_cast <gphi *> (stmt_info->stmt))
519 number_of_oprnds = gimple_phi_num_args (stmt);
520 else
521 return -1;
523 bool swapped = (swap != 0);
524 bool backedge = false;
525 gcc_assert (!swapped || first_op_cond);
526 enum vect_def_type *dts = XALLOCAVEC (enum vect_def_type, number_of_oprnds);
527 for (i = 0; i < number_of_oprnds; i++)
529 if (first_op_cond)
531 /* Map indicating how operands of cond_expr should be swapped. */
532 int maps[3][4] = {{0, 1, 2, 3}, {1, 0, 2, 3}, {0, 1, 3, 2}};
533 int *map = maps[swap];
535 if (i < 2)
536 oprnd = TREE_OPERAND (gimple_op (stmt_info->stmt,
537 first_op_idx), map[i]);
538 else
539 oprnd = gimple_op (stmt_info->stmt, map[i]);
541 else if (gphi *stmt = dyn_cast <gphi *> (stmt_info->stmt))
543 oprnd = gimple_phi_arg_def (stmt, i);
544 backedge = dominated_by_p (CDI_DOMINATORS,
545 gimple_phi_arg_edge (stmt, i)->src,
546 gimple_bb (stmt_info->stmt));
548 else
549 oprnd = gimple_op (stmt_info->stmt, first_op_idx + (swapped ? !i : i));
550 if (TREE_CODE (oprnd) == VIEW_CONVERT_EXPR)
551 oprnd = TREE_OPERAND (oprnd, 0);
553 oprnd_info = (*oprnds_info)[i];
555 stmt_vec_info def_stmt_info;
556 if (!vect_is_simple_use (oprnd, vinfo, &dts[i], &def_stmt_info))
558 if (dump_enabled_p ())
559 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
560 "Build SLP failed: can't analyze def for %T\n",
561 oprnd);
563 return -1;
566 if (skip_args[i])
568 oprnd_info->def_stmts.quick_push (NULL);
569 oprnd_info->ops.quick_push (NULL_TREE);
570 oprnd_info->first_dt = vect_uninitialized_def;
571 continue;
574 oprnd_info->def_stmts.quick_push (def_stmt_info);
575 oprnd_info->ops.quick_push (oprnd);
577 if (def_stmt_info
578 && is_pattern_stmt_p (def_stmt_info))
580 if (STMT_VINFO_RELATED_STMT (vect_orig_stmt (def_stmt_info))
581 != def_stmt_info)
582 oprnd_info->any_pattern = true;
583 else
584 /* If we promote this to external use the original stmt def. */
585 oprnd_info->ops.last ()
586 = gimple_get_lhs (vect_orig_stmt (def_stmt_info)->stmt);
589 /* If there's a extern def on a backedge make sure we can
590 code-generate at the region start.
591 ??? This is another case that could be fixed by adjusting
592 how we split the function but at the moment we'd have conflicting
593 goals there. */
594 if (backedge
595 && dts[i] == vect_external_def
596 && is_a <bb_vec_info> (vinfo)
597 && TREE_CODE (oprnd) == SSA_NAME
598 && !SSA_NAME_IS_DEFAULT_DEF (oprnd)
599 && !dominated_by_p (CDI_DOMINATORS,
600 as_a <bb_vec_info> (vinfo)->bbs[0],
601 gimple_bb (SSA_NAME_DEF_STMT (oprnd))))
603 if (dump_enabled_p ())
604 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
605 "Build SLP failed: extern def %T only defined "
606 "on backedge\n", oprnd);
607 return -1;
610 if (first)
612 tree type = TREE_TYPE (oprnd);
613 dt = dts[i];
614 if ((dt == vect_constant_def
615 || dt == vect_external_def)
616 && !GET_MODE_SIZE (vinfo->vector_mode).is_constant ()
617 && (TREE_CODE (type) == BOOLEAN_TYPE
618 || !can_duplicate_and_interleave_p (vinfo, stmts.length (),
619 type)))
621 if (dump_enabled_p ())
622 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
623 "Build SLP failed: invalid type of def "
624 "for variable-length SLP %T\n", oprnd);
625 return -1;
628 /* For the swapping logic below force vect_reduction_def
629 for the reduction op in a SLP reduction group. */
630 if (!STMT_VINFO_DATA_REF (stmt_info)
631 && REDUC_GROUP_FIRST_ELEMENT (stmt_info)
632 && (int)i == STMT_VINFO_REDUC_IDX (stmt_info)
633 && def_stmt_info)
634 dts[i] = dt = vect_reduction_def;
636 /* Check the types of the definition. */
637 switch (dt)
639 case vect_external_def:
640 case vect_constant_def:
641 case vect_internal_def:
642 case vect_reduction_def:
643 case vect_induction_def:
644 case vect_nested_cycle:
645 break;
647 default:
648 /* FORNOW: Not supported. */
649 if (dump_enabled_p ())
650 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
651 "Build SLP failed: illegal type of def %T\n",
652 oprnd);
653 return -1;
656 oprnd_info->first_dt = dt;
657 oprnd_info->first_op_type = type;
660 if (first)
661 return 0;
663 /* Now match the operand definition types to that of the first stmt. */
664 for (i = 0; i < number_of_oprnds;)
666 if (skip_args[i])
668 ++i;
669 continue;
672 oprnd_info = (*oprnds_info)[i];
673 dt = dts[i];
674 stmt_vec_info def_stmt_info = oprnd_info->def_stmts[stmt_num];
675 oprnd = oprnd_info->ops[stmt_num];
676 tree type = TREE_TYPE (oprnd);
678 if (!types_compatible_p (oprnd_info->first_op_type, type))
680 if (dump_enabled_p ())
681 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
682 "Build SLP failed: different operand types\n");
683 return 1;
686 /* Not first stmt of the group, check that the def-stmt/s match
687 the def-stmt/s of the first stmt. Allow different definition
688 types for reduction chains: the first stmt must be a
689 vect_reduction_def (a phi node), and the rest
690 end in the reduction chain. */
691 if ((!vect_def_types_match (oprnd_info->first_dt, dt)
692 && !(oprnd_info->first_dt == vect_reduction_def
693 && !STMT_VINFO_DATA_REF (stmt_info)
694 && REDUC_GROUP_FIRST_ELEMENT (stmt_info)
695 && def_stmt_info
696 && !STMT_VINFO_DATA_REF (def_stmt_info)
697 && (REDUC_GROUP_FIRST_ELEMENT (def_stmt_info)
698 == REDUC_GROUP_FIRST_ELEMENT (stmt_info))))
699 || (!STMT_VINFO_DATA_REF (stmt_info)
700 && REDUC_GROUP_FIRST_ELEMENT (stmt_info)
701 && ((!def_stmt_info
702 || STMT_VINFO_DATA_REF (def_stmt_info)
703 || (REDUC_GROUP_FIRST_ELEMENT (def_stmt_info)
704 != REDUC_GROUP_FIRST_ELEMENT (stmt_info)))
705 != (oprnd_info->first_dt != vect_reduction_def))))
707 /* Try swapping operands if we got a mismatch. For BB
708 vectorization only in case it will clearly improve things. */
709 if (i == commutative_op && !swapped
710 && (!is_a <bb_vec_info> (vinfo)
711 || (!vect_def_types_match ((*oprnds_info)[i+1]->first_dt,
712 dts[i+1])
713 && (vect_def_types_match (oprnd_info->first_dt, dts[i+1])
714 || vect_def_types_match
715 ((*oprnds_info)[i+1]->first_dt, dts[i])))))
717 if (dump_enabled_p ())
718 dump_printf_loc (MSG_NOTE, vect_location,
719 "trying swapped operands\n");
720 std::swap (dts[i], dts[i+1]);
721 std::swap ((*oprnds_info)[i]->def_stmts[stmt_num],
722 (*oprnds_info)[i+1]->def_stmts[stmt_num]);
723 std::swap ((*oprnds_info)[i]->ops[stmt_num],
724 (*oprnds_info)[i+1]->ops[stmt_num]);
725 swapped = true;
726 continue;
729 if (is_a <bb_vec_info> (vinfo)
730 && !oprnd_info->any_pattern)
732 /* Now for commutative ops we should see whether we can
733 make the other operand matching. */
734 if (dump_enabled_p ())
735 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
736 "treating operand as external\n");
737 oprnd_info->first_dt = dt = vect_external_def;
739 else
741 if (dump_enabled_p ())
742 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
743 "Build SLP failed: different types\n");
744 return 1;
748 /* Make sure to demote the overall operand to external. */
749 if (dt == vect_external_def)
750 oprnd_info->first_dt = vect_external_def;
751 /* For a SLP reduction chain we want to duplicate the reduction to
752 each of the chain members. That gets us a sane SLP graph (still
753 the stmts are not 100% correct wrt the initial values). */
754 else if ((dt == vect_internal_def
755 || dt == vect_reduction_def)
756 && oprnd_info->first_dt == vect_reduction_def
757 && !STMT_VINFO_DATA_REF (stmt_info)
758 && REDUC_GROUP_FIRST_ELEMENT (stmt_info)
759 && !STMT_VINFO_DATA_REF (def_stmt_info)
760 && (REDUC_GROUP_FIRST_ELEMENT (def_stmt_info)
761 == REDUC_GROUP_FIRST_ELEMENT (stmt_info)))
763 oprnd_info->def_stmts[stmt_num] = oprnd_info->def_stmts[0];
764 oprnd_info->ops[stmt_num] = oprnd_info->ops[0];
767 ++i;
770 /* Swap operands. */
771 if (swapped)
773 if (dump_enabled_p ())
774 dump_printf_loc (MSG_NOTE, vect_location,
775 "swapped operands to match def types in %G",
776 stmt_info->stmt);
779 return 0;
782 /* Try to assign vector type VECTYPE to STMT_INFO for BB vectorization.
783 Return true if we can, meaning that this choice doesn't conflict with
784 existing SLP nodes that use STMT_INFO. */
786 bool
787 vect_update_shared_vectype (stmt_vec_info stmt_info, tree vectype)
789 tree old_vectype = STMT_VINFO_VECTYPE (stmt_info);
790 if (old_vectype)
791 return useless_type_conversion_p (vectype, old_vectype);
793 if (STMT_VINFO_GROUPED_ACCESS (stmt_info))
795 /* We maintain the invariant that if any statement in the group is
796 used, all other members of the group have the same vector type. */
797 stmt_vec_info first_info = DR_GROUP_FIRST_ELEMENT (stmt_info);
798 stmt_vec_info member_info = first_info;
799 for (; member_info; member_info = DR_GROUP_NEXT_ELEMENT (member_info))
800 if (is_pattern_stmt_p (member_info)
801 && !useless_type_conversion_p (vectype,
802 STMT_VINFO_VECTYPE (member_info)))
803 break;
805 if (!member_info)
807 for (member_info = first_info; member_info;
808 member_info = DR_GROUP_NEXT_ELEMENT (member_info))
809 STMT_VINFO_VECTYPE (member_info) = vectype;
810 return true;
813 else if (!is_pattern_stmt_p (stmt_info))
815 STMT_VINFO_VECTYPE (stmt_info) = vectype;
816 return true;
819 if (dump_enabled_p ())
821 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
822 "Build SLP failed: incompatible vector"
823 " types for: %G", stmt_info->stmt);
824 dump_printf_loc (MSG_NOTE, vect_location,
825 " old vector type: %T\n", old_vectype);
826 dump_printf_loc (MSG_NOTE, vect_location,
827 " new vector type: %T\n", vectype);
829 return false;
832 /* Return true if call statements CALL1 and CALL2 are similar enough
833 to be combined into the same SLP group. */
835 static bool
836 compatible_calls_p (gcall *call1, gcall *call2)
838 unsigned int nargs = gimple_call_num_args (call1);
839 if (nargs != gimple_call_num_args (call2))
840 return false;
842 if (gimple_call_combined_fn (call1) != gimple_call_combined_fn (call2))
843 return false;
845 if (gimple_call_internal_p (call1))
847 if (!types_compatible_p (TREE_TYPE (gimple_call_lhs (call1)),
848 TREE_TYPE (gimple_call_lhs (call2))))
849 return false;
850 for (unsigned int i = 0; i < nargs; ++i)
851 if (!types_compatible_p (TREE_TYPE (gimple_call_arg (call1, i)),
852 TREE_TYPE (gimple_call_arg (call2, i))))
853 return false;
855 else
857 if (!operand_equal_p (gimple_call_fn (call1),
858 gimple_call_fn (call2), 0))
859 return false;
861 if (gimple_call_fntype (call1) != gimple_call_fntype (call2))
862 return false;
864 return true;
867 /* A subroutine of vect_build_slp_tree for checking VECTYPE, which is the
868 caller's attempt to find the vector type in STMT_INFO with the narrowest
869 element type. Return true if VECTYPE is nonnull and if it is valid
870 for STMT_INFO. When returning true, update MAX_NUNITS to reflect the
871 number of units in VECTYPE. GROUP_SIZE and MAX_NUNITS are as for
872 vect_build_slp_tree. */
874 static bool
875 vect_record_max_nunits (vec_info *vinfo, stmt_vec_info stmt_info,
876 unsigned int group_size,
877 tree vectype, poly_uint64 *max_nunits)
879 if (!vectype)
881 if (dump_enabled_p ())
882 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
883 "Build SLP failed: unsupported data-type in %G\n",
884 stmt_info->stmt);
885 /* Fatal mismatch. */
886 return false;
889 /* If populating the vector type requires unrolling then fail
890 before adjusting *max_nunits for basic-block vectorization. */
891 if (is_a <bb_vec_info> (vinfo)
892 && !multiple_p (group_size, TYPE_VECTOR_SUBPARTS (vectype)))
894 if (dump_enabled_p ())
895 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
896 "Build SLP failed: unrolling required "
897 "in basic block SLP\n");
898 /* Fatal mismatch. */
899 return false;
902 /* In case of multiple types we need to detect the smallest type. */
903 vect_update_max_nunits (max_nunits, vectype);
904 return true;
907 /* Verify if the scalar stmts STMTS are isomorphic, require data
908 permutation or are of unsupported types of operation. Return
909 true if they are, otherwise return false and indicate in *MATCHES
910 which stmts are not isomorphic to the first one. If MATCHES[0]
911 is false then this indicates the comparison could not be
912 carried out or the stmts will never be vectorized by SLP.
914 Note COND_EXPR is possibly isomorphic to another one after swapping its
915 operands. Set SWAP[i] to 1 if stmt I is COND_EXPR and isomorphic to
916 the first stmt by swapping the two operands of comparison; set SWAP[i]
917 to 2 if stmt I is isormorphic to the first stmt by inverting the code
918 of comparison. Take A1 >= B1 ? X1 : Y1 as an exmple, it can be swapped
919 to (B1 <= A1 ? X1 : Y1); or be inverted to (A1 < B1) ? Y1 : X1. */
921 static bool
922 vect_build_slp_tree_1 (vec_info *vinfo, unsigned char *swap,
923 vec<stmt_vec_info> stmts, unsigned int group_size,
924 poly_uint64 *max_nunits, bool *matches,
925 bool *two_operators, tree *node_vectype)
927 unsigned int i;
928 stmt_vec_info first_stmt_info = stmts[0];
929 enum tree_code first_stmt_code = ERROR_MARK;
930 enum tree_code alt_stmt_code = ERROR_MARK;
931 enum tree_code rhs_code = ERROR_MARK;
932 enum tree_code first_cond_code = ERROR_MARK;
933 tree lhs;
934 bool need_same_oprnds = false;
935 tree vectype = NULL_TREE, first_op1 = NULL_TREE;
936 optab optab;
937 int icode;
938 machine_mode optab_op2_mode;
939 machine_mode vec_mode;
940 stmt_vec_info first_load = NULL, prev_first_load = NULL;
941 bool first_stmt_load_p = false, load_p = false;
942 bool first_stmt_phi_p = false, phi_p = false;
943 bool maybe_soft_fail = false;
944 tree soft_fail_nunits_vectype = NULL_TREE;
946 /* For every stmt in NODE find its def stmt/s. */
947 stmt_vec_info stmt_info;
948 FOR_EACH_VEC_ELT (stmts, i, stmt_info)
950 gimple *stmt = stmt_info->stmt;
951 swap[i] = 0;
952 matches[i] = false;
954 if (dump_enabled_p ())
955 dump_printf_loc (MSG_NOTE, vect_location, "Build SLP for %G", stmt);
957 /* Fail to vectorize statements marked as unvectorizable, throw
958 or are volatile. */
959 if (!STMT_VINFO_VECTORIZABLE (stmt_info)
960 || stmt_can_throw_internal (cfun, stmt)
961 || gimple_has_volatile_ops (stmt))
963 if (dump_enabled_p ())
964 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
965 "Build SLP failed: unvectorizable statement %G",
966 stmt);
967 /* ??? For BB vectorization we want to commutate operands in a way
968 to shuffle all unvectorizable defs into one operand and have
969 the other still vectorized. The following doesn't reliably
970 work for this though but it's the easiest we can do here. */
971 if (is_a <bb_vec_info> (vinfo) && i != 0)
972 continue;
973 /* Fatal mismatch. */
974 matches[0] = false;
975 return false;
978 lhs = gimple_get_lhs (stmt);
979 if (lhs == NULL_TREE)
981 if (dump_enabled_p ())
982 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
983 "Build SLP failed: not GIMPLE_ASSIGN nor "
984 "GIMPLE_CALL %G", stmt);
985 if (is_a <bb_vec_info> (vinfo) && i != 0)
986 continue;
987 /* Fatal mismatch. */
988 matches[0] = false;
989 return false;
992 tree nunits_vectype;
993 if (!vect_get_vector_types_for_stmt (vinfo, stmt_info, &vectype,
994 &nunits_vectype, group_size))
996 if (is_a <bb_vec_info> (vinfo) && i != 0)
997 continue;
998 /* Fatal mismatch. */
999 matches[0] = false;
1000 return false;
1002 /* Record nunits required but continue analysis, producing matches[]
1003 as if nunits was not an issue. This allows splitting of groups
1004 to happen. */
1005 if (nunits_vectype
1006 && !vect_record_max_nunits (vinfo, stmt_info, group_size,
1007 nunits_vectype, max_nunits))
1009 gcc_assert (is_a <bb_vec_info> (vinfo));
1010 maybe_soft_fail = true;
1011 soft_fail_nunits_vectype = nunits_vectype;
1014 gcc_assert (vectype);
1016 gcall *call_stmt = dyn_cast <gcall *> (stmt);
1017 if (call_stmt)
1019 rhs_code = CALL_EXPR;
1021 if (gimple_call_internal_p (stmt, IFN_MASK_LOAD))
1022 load_p = true;
1023 else if ((gimple_call_internal_p (call_stmt)
1024 && (!vectorizable_internal_fn_p
1025 (gimple_call_internal_fn (call_stmt))))
1026 || gimple_call_tail_p (call_stmt)
1027 || gimple_call_noreturn_p (call_stmt)
1028 || !gimple_call_nothrow_p (call_stmt)
1029 || gimple_call_chain (call_stmt))
1031 if (dump_enabled_p ())
1032 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1033 "Build SLP failed: unsupported call type %G",
1034 call_stmt);
1035 if (is_a <bb_vec_info> (vinfo) && i != 0)
1036 continue;
1037 /* Fatal mismatch. */
1038 matches[0] = false;
1039 return false;
1042 else if (gimple_code (stmt) == GIMPLE_PHI)
1044 rhs_code = ERROR_MARK;
1045 phi_p = true;
1047 else
1049 rhs_code = gimple_assign_rhs_code (stmt);
1050 load_p = gimple_vuse (stmt);
1053 /* Check the operation. */
1054 if (i == 0)
1056 *node_vectype = vectype;
1057 first_stmt_code = rhs_code;
1058 first_stmt_load_p = load_p;
1059 first_stmt_phi_p = phi_p;
1061 /* Shift arguments should be equal in all the packed stmts for a
1062 vector shift with scalar shift operand. */
1063 if (rhs_code == LSHIFT_EXPR || rhs_code == RSHIFT_EXPR
1064 || rhs_code == LROTATE_EXPR
1065 || rhs_code == RROTATE_EXPR)
1067 vec_mode = TYPE_MODE (vectype);
1069 /* First see if we have a vector/vector shift. */
1070 optab = optab_for_tree_code (rhs_code, vectype,
1071 optab_vector);
1073 if (!optab
1074 || optab_handler (optab, vec_mode) == CODE_FOR_nothing)
1076 /* No vector/vector shift, try for a vector/scalar shift. */
1077 optab = optab_for_tree_code (rhs_code, vectype,
1078 optab_scalar);
1080 if (!optab)
1082 if (dump_enabled_p ())
1083 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1084 "Build SLP failed: no optab.\n");
1085 if (is_a <bb_vec_info> (vinfo) && i != 0)
1086 continue;
1087 /* Fatal mismatch. */
1088 matches[0] = false;
1089 return false;
1091 icode = (int) optab_handler (optab, vec_mode);
1092 if (icode == CODE_FOR_nothing)
1094 if (dump_enabled_p ())
1095 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1096 "Build SLP failed: "
1097 "op not supported by target.\n");
1098 if (is_a <bb_vec_info> (vinfo) && i != 0)
1099 continue;
1100 /* Fatal mismatch. */
1101 matches[0] = false;
1102 return false;
1104 optab_op2_mode = insn_data[icode].operand[2].mode;
1105 if (!VECTOR_MODE_P (optab_op2_mode))
1107 need_same_oprnds = true;
1108 first_op1 = gimple_assign_rhs2 (stmt);
1112 else if (rhs_code == WIDEN_LSHIFT_EXPR)
1114 need_same_oprnds = true;
1115 first_op1 = gimple_assign_rhs2 (stmt);
1117 else if (!load_p
1118 && rhs_code == BIT_FIELD_REF)
1120 tree vec = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
1121 if (!is_a <bb_vec_info> (vinfo)
1122 || TREE_CODE (vec) != SSA_NAME
1123 || !operand_equal_p (TYPE_SIZE (vectype),
1124 TYPE_SIZE (TREE_TYPE (vec))))
1126 if (dump_enabled_p ())
1127 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1128 "Build SLP failed: "
1129 "BIT_FIELD_REF not supported\n");
1130 /* Fatal mismatch. */
1131 matches[0] = false;
1132 return false;
1135 else if (call_stmt
1136 && gimple_call_internal_p (call_stmt, IFN_DIV_POW2))
1138 need_same_oprnds = true;
1139 first_op1 = gimple_call_arg (call_stmt, 1);
1142 else
1144 if (first_stmt_code != rhs_code
1145 && alt_stmt_code == ERROR_MARK)
1146 alt_stmt_code = rhs_code;
1147 if ((first_stmt_code != rhs_code
1148 && (first_stmt_code != IMAGPART_EXPR
1149 || rhs_code != REALPART_EXPR)
1150 && (first_stmt_code != REALPART_EXPR
1151 || rhs_code != IMAGPART_EXPR)
1152 /* Handle mismatches in plus/minus by computing both
1153 and merging the results. */
1154 && !((first_stmt_code == PLUS_EXPR
1155 || first_stmt_code == MINUS_EXPR)
1156 && (alt_stmt_code == PLUS_EXPR
1157 || alt_stmt_code == MINUS_EXPR)
1158 && rhs_code == alt_stmt_code)
1159 && !(STMT_VINFO_GROUPED_ACCESS (stmt_info)
1160 && (first_stmt_code == ARRAY_REF
1161 || first_stmt_code == BIT_FIELD_REF
1162 || first_stmt_code == INDIRECT_REF
1163 || first_stmt_code == COMPONENT_REF
1164 || first_stmt_code == MEM_REF)))
1165 || first_stmt_load_p != load_p
1166 || first_stmt_phi_p != phi_p)
1168 if (dump_enabled_p ())
1170 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1171 "Build SLP failed: different operation "
1172 "in stmt %G", stmt);
1173 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1174 "original stmt %G", first_stmt_info->stmt);
1176 /* Mismatch. */
1177 continue;
1180 if (!load_p
1181 && first_stmt_code == BIT_FIELD_REF
1182 && (TREE_OPERAND (gimple_assign_rhs1 (first_stmt_info->stmt), 0)
1183 != TREE_OPERAND (gimple_assign_rhs1 (stmt_info->stmt), 0)))
1185 if (dump_enabled_p ())
1186 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1187 "Build SLP failed: different BIT_FIELD_REF "
1188 "arguments in %G", stmt);
1189 /* Mismatch. */
1190 continue;
1193 if (!load_p && rhs_code == CALL_EXPR)
1195 if (!compatible_calls_p (as_a <gcall *> (stmts[0]->stmt),
1196 as_a <gcall *> (stmt)))
1198 if (dump_enabled_p ())
1199 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1200 "Build SLP failed: different calls in %G",
1201 stmt);
1202 /* Mismatch. */
1203 continue;
1207 if ((phi_p || gimple_could_trap_p (stmt_info->stmt))
1208 && (gimple_bb (first_stmt_info->stmt)
1209 != gimple_bb (stmt_info->stmt)))
1211 if (dump_enabled_p ())
1212 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1213 "Build SLP failed: different BB for PHI "
1214 "or possibly trapping operation in %G", stmt);
1215 /* Mismatch. */
1216 continue;
1219 if (need_same_oprnds)
1221 tree other_op1 = (call_stmt
1222 ? gimple_call_arg (call_stmt, 1)
1223 : gimple_assign_rhs2 (stmt));
1224 if (!operand_equal_p (first_op1, other_op1, 0))
1226 if (dump_enabled_p ())
1227 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1228 "Build SLP failed: different shift "
1229 "arguments in %G", stmt);
1230 /* Mismatch. */
1231 continue;
1235 if (!types_compatible_p (vectype, *node_vectype))
1237 if (dump_enabled_p ())
1238 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1239 "Build SLP failed: different vector type "
1240 "in %G", stmt);
1241 /* Mismatch. */
1242 continue;
1246 /* Grouped store or load. */
1247 if (STMT_VINFO_GROUPED_ACCESS (stmt_info))
1249 if (REFERENCE_CLASS_P (lhs))
1251 /* Store. */
1254 else
1256 /* Load. */
1257 first_load = DR_GROUP_FIRST_ELEMENT (stmt_info);
1258 if (prev_first_load)
1260 /* Check that there are no loads from different interleaving
1261 chains in the same node. */
1262 if (prev_first_load != first_load)
1264 if (dump_enabled_p ())
1265 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
1266 vect_location,
1267 "Build SLP failed: different "
1268 "interleaving chains in one node %G",
1269 stmt);
1270 /* Mismatch. */
1271 continue;
1274 else
1275 prev_first_load = first_load;
1277 } /* Grouped access. */
1278 else
1280 if (load_p)
1282 /* Not grouped load. */
1283 if (dump_enabled_p ())
1284 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1285 "Build SLP failed: not grouped load %G", stmt);
1287 /* FORNOW: Not grouped loads are not supported. */
1288 if (is_a <bb_vec_info> (vinfo) && i != 0)
1289 continue;
1290 /* Fatal mismatch. */
1291 matches[0] = false;
1292 return false;
1295 /* Not memory operation. */
1296 if (!phi_p
1297 && TREE_CODE_CLASS (rhs_code) != tcc_binary
1298 && TREE_CODE_CLASS (rhs_code) != tcc_unary
1299 && TREE_CODE_CLASS (rhs_code) != tcc_expression
1300 && TREE_CODE_CLASS (rhs_code) != tcc_comparison
1301 && rhs_code != VIEW_CONVERT_EXPR
1302 && rhs_code != CALL_EXPR
1303 && rhs_code != BIT_FIELD_REF)
1305 if (dump_enabled_p ())
1306 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1307 "Build SLP failed: operation unsupported %G",
1308 stmt);
1309 if (is_a <bb_vec_info> (vinfo) && i != 0)
1310 continue;
1311 /* Fatal mismatch. */
1312 matches[0] = false;
1313 return false;
1316 if (rhs_code == COND_EXPR)
1318 tree cond_expr = gimple_assign_rhs1 (stmt);
1319 enum tree_code cond_code = TREE_CODE (cond_expr);
1320 enum tree_code swap_code = ERROR_MARK;
1321 enum tree_code invert_code = ERROR_MARK;
1323 if (i == 0)
1324 first_cond_code = TREE_CODE (cond_expr);
1325 else if (TREE_CODE_CLASS (cond_code) == tcc_comparison)
1327 bool honor_nans = HONOR_NANS (TREE_OPERAND (cond_expr, 0));
1328 swap_code = swap_tree_comparison (cond_code);
1329 invert_code = invert_tree_comparison (cond_code, honor_nans);
1332 if (first_cond_code == cond_code)
1334 /* Isomorphic can be achieved by swapping. */
1335 else if (first_cond_code == swap_code)
1336 swap[i] = 1;
1337 /* Isomorphic can be achieved by inverting. */
1338 else if (first_cond_code == invert_code)
1339 swap[i] = 2;
1340 else
1342 if (dump_enabled_p ())
1343 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1344 "Build SLP failed: different"
1345 " operation %G", stmt);
1346 /* Mismatch. */
1347 continue;
1352 matches[i] = true;
1355 for (i = 0; i < group_size; ++i)
1356 if (!matches[i])
1357 return false;
1359 /* If we allowed a two-operation SLP node verify the target can cope
1360 with the permute we are going to use. */
1361 if (alt_stmt_code != ERROR_MARK
1362 && TREE_CODE_CLASS (alt_stmt_code) != tcc_reference)
1364 *two_operators = true;
1367 if (maybe_soft_fail)
1369 unsigned HOST_WIDE_INT const_nunits;
1370 if (!TYPE_VECTOR_SUBPARTS
1371 (soft_fail_nunits_vectype).is_constant (&const_nunits)
1372 || const_nunits > group_size)
1373 matches[0] = false;
1374 else
1376 /* With constant vector elements simulate a mismatch at the
1377 point we need to split. */
1378 unsigned tail = group_size & (const_nunits - 1);
1379 memset (&matches[group_size - tail], 0, sizeof (bool) * tail);
1381 return false;
1384 return true;
1387 /* Traits for the hash_set to record failed SLP builds for a stmt set.
1388 Note we never remove apart from at destruction time so we do not
1389 need a special value for deleted that differs from empty. */
1390 struct bst_traits
1392 typedef vec <stmt_vec_info> value_type;
1393 typedef vec <stmt_vec_info> compare_type;
1394 static inline hashval_t hash (value_type);
1395 static inline bool equal (value_type existing, value_type candidate);
1396 static inline bool is_empty (value_type x) { return !x.exists (); }
1397 static inline bool is_deleted (value_type x) { return !x.exists (); }
1398 static const bool empty_zero_p = true;
1399 static inline void mark_empty (value_type &x) { x.release (); }
1400 static inline void mark_deleted (value_type &x) { x.release (); }
1401 static inline void remove (value_type &x) { x.release (); }
1403 inline hashval_t
1404 bst_traits::hash (value_type x)
1406 inchash::hash h;
1407 for (unsigned i = 0; i < x.length (); ++i)
1408 h.add_int (gimple_uid (x[i]->stmt));
1409 return h.end ();
1411 inline bool
1412 bst_traits::equal (value_type existing, value_type candidate)
1414 if (existing.length () != candidate.length ())
1415 return false;
1416 for (unsigned i = 0; i < existing.length (); ++i)
1417 if (existing[i] != candidate[i])
1418 return false;
1419 return true;
1422 /* ??? This was std::pair<std::pair<tree_code, vect_def_type>, tree>
1423 but then vec::insert does memmove and that's not compatible with
1424 std::pair. */
1425 struct chain_op_t
1427 chain_op_t (tree_code code_, vect_def_type dt_, tree op_)
1428 : code (code_), dt (dt_), op (op_) {}
1429 tree_code code;
1430 vect_def_type dt;
1431 tree op;
1434 /* Comparator for sorting associatable chains. */
1436 static int
1437 dt_sort_cmp (const void *op1_, const void *op2_, void *)
1439 auto *op1 = (const chain_op_t *) op1_;
1440 auto *op2 = (const chain_op_t *) op2_;
1441 if (op1->dt != op2->dt)
1442 return (int)op1->dt - (int)op2->dt;
1443 return (int)op1->code - (int)op2->code;
1446 /* Linearize the associatable expression chain at START with the
1447 associatable operation CODE (where PLUS_EXPR also allows MINUS_EXPR),
1448 filling CHAIN with the result and using WORKLIST as intermediate storage.
1449 CODE_STMT and ALT_CODE_STMT are filled with the first stmt using CODE
1450 or MINUS_EXPR. *CHAIN_STMTS if not NULL is filled with all computation
1451 stmts, starting with START. */
1453 static void
1454 vect_slp_linearize_chain (vec_info *vinfo,
1455 vec<std::pair<tree_code, gimple *> > &worklist,
1456 vec<chain_op_t> &chain,
1457 enum tree_code code, gimple *start,
1458 gimple *&code_stmt, gimple *&alt_code_stmt,
1459 vec<gimple *> *chain_stmts)
1461 /* For each lane linearize the addition/subtraction (or other
1462 uniform associatable operation) expression tree. */
1463 worklist.safe_push (std::make_pair (code, start));
1464 while (!worklist.is_empty ())
1466 auto entry = worklist.pop ();
1467 gassign *stmt = as_a <gassign *> (entry.second);
1468 enum tree_code in_code = entry.first;
1469 enum tree_code this_code = gimple_assign_rhs_code (stmt);
1470 /* Pick some stmts suitable for SLP_TREE_REPRESENTATIVE. */
1471 if (!code_stmt
1472 && gimple_assign_rhs_code (stmt) == code)
1473 code_stmt = stmt;
1474 else if (!alt_code_stmt
1475 && gimple_assign_rhs_code (stmt) == MINUS_EXPR)
1476 alt_code_stmt = stmt;
1477 if (chain_stmts)
1478 chain_stmts->safe_push (stmt);
1479 for (unsigned opnum = 1; opnum <= 2; ++opnum)
1481 tree op = gimple_op (stmt, opnum);
1482 vect_def_type dt;
1483 stmt_vec_info def_stmt_info;
1484 bool res = vect_is_simple_use (op, vinfo, &dt, &def_stmt_info);
1485 gcc_assert (res);
1486 if (dt == vect_internal_def
1487 && is_pattern_stmt_p (def_stmt_info))
1488 op = gimple_get_lhs (def_stmt_info->stmt);
1489 gimple *use_stmt;
1490 use_operand_p use_p;
1491 if (dt == vect_internal_def
1492 && single_imm_use (op, &use_p, &use_stmt)
1493 && is_gimple_assign (def_stmt_info->stmt)
1494 && (gimple_assign_rhs_code (def_stmt_info->stmt) == code
1495 || (code == PLUS_EXPR
1496 && (gimple_assign_rhs_code (def_stmt_info->stmt)
1497 == MINUS_EXPR))))
1499 tree_code op_def_code = this_code;
1500 if (op_def_code == MINUS_EXPR && opnum == 1)
1501 op_def_code = PLUS_EXPR;
1502 if (in_code == MINUS_EXPR)
1503 op_def_code = op_def_code == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR;
1504 worklist.safe_push (std::make_pair (op_def_code,
1505 def_stmt_info->stmt));
1507 else
1509 tree_code op_def_code = this_code;
1510 if (op_def_code == MINUS_EXPR && opnum == 1)
1511 op_def_code = PLUS_EXPR;
1512 if (in_code == MINUS_EXPR)
1513 op_def_code = op_def_code == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR;
1514 chain.safe_push (chain_op_t (op_def_code, dt, op));
1520 typedef hash_map <vec <stmt_vec_info>, slp_tree,
1521 simple_hashmap_traits <bst_traits, slp_tree> >
1522 scalar_stmts_to_slp_tree_map_t;
1524 static slp_tree
1525 vect_build_slp_tree_2 (vec_info *vinfo, slp_tree node,
1526 vec<stmt_vec_info> stmts, unsigned int group_size,
1527 poly_uint64 *max_nunits,
1528 bool *matches, unsigned *limit, unsigned *tree_size,
1529 scalar_stmts_to_slp_tree_map_t *bst_map);
1531 static slp_tree
1532 vect_build_slp_tree (vec_info *vinfo,
1533 vec<stmt_vec_info> stmts, unsigned int group_size,
1534 poly_uint64 *max_nunits,
1535 bool *matches, unsigned *limit, unsigned *tree_size,
1536 scalar_stmts_to_slp_tree_map_t *bst_map)
1538 if (slp_tree *leader = bst_map->get (stmts))
1540 if (dump_enabled_p ())
1541 dump_printf_loc (MSG_NOTE, vect_location, "re-using %sSLP tree %p\n",
1542 !(*leader)->failed ? "" : "failed ", *leader);
1543 if (!(*leader)->failed)
1545 SLP_TREE_REF_COUNT (*leader)++;
1546 vect_update_max_nunits (max_nunits, (*leader)->max_nunits);
1547 stmts.release ();
1548 return *leader;
1550 memcpy (matches, (*leader)->failed, sizeof (bool) * group_size);
1551 return NULL;
1554 /* Seed the bst_map with a stub node to be filled by vect_build_slp_tree_2
1555 so we can pick up backedge destinations during discovery. */
1556 slp_tree res = new _slp_tree;
1557 SLP_TREE_DEF_TYPE (res) = vect_internal_def;
1558 SLP_TREE_SCALAR_STMTS (res) = stmts;
1559 bst_map->put (stmts.copy (), res);
1561 if (*limit == 0)
1563 if (dump_enabled_p ())
1564 dump_printf_loc (MSG_NOTE, vect_location,
1565 "SLP discovery limit exceeded\n");
1566 /* Mark the node invalid so we can detect those when still in use
1567 as backedge destinations. */
1568 SLP_TREE_SCALAR_STMTS (res) = vNULL;
1569 SLP_TREE_DEF_TYPE (res) = vect_uninitialized_def;
1570 res->failed = XNEWVEC (bool, group_size);
1571 memset (res->failed, 0, sizeof (bool) * group_size);
1572 memset (matches, 0, sizeof (bool) * group_size);
1573 return NULL;
1575 --*limit;
1577 if (dump_enabled_p ())
1578 dump_printf_loc (MSG_NOTE, vect_location,
1579 "starting SLP discovery for node %p\n", res);
1581 poly_uint64 this_max_nunits = 1;
1582 slp_tree res_ = vect_build_slp_tree_2 (vinfo, res, stmts, group_size,
1583 &this_max_nunits,
1584 matches, limit, tree_size, bst_map);
1585 if (!res_)
1587 if (dump_enabled_p ())
1588 dump_printf_loc (MSG_NOTE, vect_location,
1589 "SLP discovery for node %p failed\n", res);
1590 /* Mark the node invalid so we can detect those when still in use
1591 as backedge destinations. */
1592 SLP_TREE_SCALAR_STMTS (res) = vNULL;
1593 SLP_TREE_DEF_TYPE (res) = vect_uninitialized_def;
1594 res->failed = XNEWVEC (bool, group_size);
1595 if (flag_checking)
1597 unsigned i;
1598 for (i = 0; i < group_size; ++i)
1599 if (!matches[i])
1600 break;
1601 gcc_assert (i < group_size);
1603 memcpy (res->failed, matches, sizeof (bool) * group_size);
1605 else
1607 if (dump_enabled_p ())
1608 dump_printf_loc (MSG_NOTE, vect_location,
1609 "SLP discovery for node %p succeeded\n", res);
1610 gcc_assert (res_ == res);
1611 res->max_nunits = this_max_nunits;
1612 vect_update_max_nunits (max_nunits, this_max_nunits);
1613 /* Keep a reference for the bst_map use. */
1614 SLP_TREE_REF_COUNT (res)++;
1616 return res_;
1619 /* Helper for building an associated SLP node chain. */
1621 static void
1622 vect_slp_build_two_operator_nodes (slp_tree perm, tree vectype,
1623 slp_tree op0, slp_tree op1,
1624 stmt_vec_info oper1, stmt_vec_info oper2,
1625 vec<std::pair<unsigned, unsigned> > lperm)
1627 unsigned group_size = SLP_TREE_LANES (op1);
1629 slp_tree child1 = new _slp_tree;
1630 SLP_TREE_DEF_TYPE (child1) = vect_internal_def;
1631 SLP_TREE_VECTYPE (child1) = vectype;
1632 SLP_TREE_LANES (child1) = group_size;
1633 SLP_TREE_CHILDREN (child1).create (2);
1634 SLP_TREE_CHILDREN (child1).quick_push (op0);
1635 SLP_TREE_CHILDREN (child1).quick_push (op1);
1636 SLP_TREE_REPRESENTATIVE (child1) = oper1;
1638 slp_tree child2 = new _slp_tree;
1639 SLP_TREE_DEF_TYPE (child2) = vect_internal_def;
1640 SLP_TREE_VECTYPE (child2) = vectype;
1641 SLP_TREE_LANES (child2) = group_size;
1642 SLP_TREE_CHILDREN (child2).create (2);
1643 SLP_TREE_CHILDREN (child2).quick_push (op0);
1644 SLP_TREE_REF_COUNT (op0)++;
1645 SLP_TREE_CHILDREN (child2).quick_push (op1);
1646 SLP_TREE_REF_COUNT (op1)++;
1647 SLP_TREE_REPRESENTATIVE (child2) = oper2;
1649 SLP_TREE_DEF_TYPE (perm) = vect_internal_def;
1650 SLP_TREE_CODE (perm) = VEC_PERM_EXPR;
1651 SLP_TREE_VECTYPE (perm) = vectype;
1652 SLP_TREE_LANES (perm) = group_size;
1653 /* ??? We should set this NULL but that's not expected. */
1654 SLP_TREE_REPRESENTATIVE (perm) = oper1;
1655 SLP_TREE_LANE_PERMUTATION (perm) = lperm;
1656 SLP_TREE_CHILDREN (perm).quick_push (child1);
1657 SLP_TREE_CHILDREN (perm).quick_push (child2);
1660 /* Recursively build an SLP tree starting from NODE.
1661 Fail (and return a value not equal to zero) if def-stmts are not
1662 isomorphic, require data permutation or are of unsupported types of
1663 operation. Otherwise, return 0.
1664 The value returned is the depth in the SLP tree where a mismatch
1665 was found. */
1667 static slp_tree
1668 vect_build_slp_tree_2 (vec_info *vinfo, slp_tree node,
1669 vec<stmt_vec_info> stmts, unsigned int group_size,
1670 poly_uint64 *max_nunits,
1671 bool *matches, unsigned *limit, unsigned *tree_size,
1672 scalar_stmts_to_slp_tree_map_t *bst_map)
1674 unsigned nops, i, this_tree_size = 0;
1675 poly_uint64 this_max_nunits = *max_nunits;
1677 matches[0] = false;
1679 stmt_vec_info stmt_info = stmts[0];
1680 if (gcall *stmt = dyn_cast <gcall *> (stmt_info->stmt))
1681 nops = gimple_call_num_args (stmt);
1682 else if (gassign *stmt = dyn_cast <gassign *> (stmt_info->stmt))
1684 nops = gimple_num_ops (stmt) - 1;
1685 if (gimple_assign_rhs_code (stmt) == COND_EXPR)
1686 nops++;
1688 else if (gphi *phi = dyn_cast <gphi *> (stmt_info->stmt))
1689 nops = gimple_phi_num_args (phi);
1690 else
1691 return NULL;
1693 /* If the SLP node is a PHI (induction or reduction), terminate
1694 the recursion. */
1695 bool *skip_args = XALLOCAVEC (bool, nops);
1696 memset (skip_args, 0, sizeof (bool) * nops);
1697 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
1698 if (gphi *stmt = dyn_cast <gphi *> (stmt_info->stmt))
1700 tree scalar_type = TREE_TYPE (PHI_RESULT (stmt));
1701 tree vectype = get_vectype_for_scalar_type (vinfo, scalar_type,
1702 group_size);
1703 if (!vect_record_max_nunits (vinfo, stmt_info, group_size, vectype,
1704 max_nunits))
1705 return NULL;
1707 vect_def_type def_type = STMT_VINFO_DEF_TYPE (stmt_info);
1708 if (def_type == vect_induction_def)
1710 /* Induction PHIs are not cycles but walk the initial
1711 value. Only for inner loops through, for outer loops
1712 we need to pick up the value from the actual PHIs
1713 to more easily support peeling and epilogue vectorization. */
1714 class loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
1715 if (!nested_in_vect_loop_p (loop, stmt_info))
1716 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1717 else
1718 loop = loop->inner;
1719 skip_args[loop_latch_edge (loop)->dest_idx] = true;
1721 else if (def_type == vect_reduction_def
1722 || def_type == vect_double_reduction_def
1723 || def_type == vect_nested_cycle)
1725 /* Else def types have to match. */
1726 stmt_vec_info other_info;
1727 bool all_same = true;
1728 FOR_EACH_VEC_ELT (stmts, i, other_info)
1730 if (STMT_VINFO_DEF_TYPE (other_info) != def_type)
1731 return NULL;
1732 if (other_info != stmt_info)
1733 all_same = false;
1735 class loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
1736 /* Reduction initial values are not explicitely represented. */
1737 if (!nested_in_vect_loop_p (loop, stmt_info))
1738 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1739 /* Reduction chain backedge defs are filled manually.
1740 ??? Need a better way to identify a SLP reduction chain PHI.
1741 Or a better overall way to SLP match those. */
1742 if (all_same && def_type == vect_reduction_def)
1743 skip_args[loop_latch_edge (loop)->dest_idx] = true;
1745 else if (def_type != vect_internal_def)
1746 return NULL;
1750 bool two_operators = false;
1751 unsigned char *swap = XALLOCAVEC (unsigned char, group_size);
1752 tree vectype = NULL_TREE;
1753 if (!vect_build_slp_tree_1 (vinfo, swap, stmts, group_size,
1754 &this_max_nunits, matches, &two_operators,
1755 &vectype))
1756 return NULL;
1758 /* If the SLP node is a load, terminate the recursion unless masked. */
1759 if (STMT_VINFO_GROUPED_ACCESS (stmt_info)
1760 && DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)))
1762 if (gcall *stmt = dyn_cast <gcall *> (stmt_info->stmt))
1764 /* Masked load. */
1765 gcc_assert (gimple_call_internal_p (stmt, IFN_MASK_LOAD));
1766 nops = 1;
1768 else
1770 *max_nunits = this_max_nunits;
1771 (*tree_size)++;
1772 node = vect_create_new_slp_node (node, stmts, 0);
1773 SLP_TREE_VECTYPE (node) = vectype;
1774 /* And compute the load permutation. Whether it is actually
1775 a permutation depends on the unrolling factor which is
1776 decided later. */
1777 vec<unsigned> load_permutation;
1778 int j;
1779 stmt_vec_info load_info;
1780 load_permutation.create (group_size);
1781 stmt_vec_info first_stmt_info
1782 = DR_GROUP_FIRST_ELEMENT (SLP_TREE_SCALAR_STMTS (node)[0]);
1783 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load_info)
1785 int load_place = vect_get_place_in_interleaving_chain
1786 (load_info, first_stmt_info);
1787 gcc_assert (load_place != -1);
1788 load_permutation.safe_push (load_place);
1790 SLP_TREE_LOAD_PERMUTATION (node) = load_permutation;
1791 return node;
1794 else if (gimple_assign_single_p (stmt_info->stmt)
1795 && !gimple_vuse (stmt_info->stmt)
1796 && gimple_assign_rhs_code (stmt_info->stmt) == BIT_FIELD_REF)
1798 /* vect_build_slp_tree_2 determined all BIT_FIELD_REFs reference
1799 the same SSA name vector of a compatible type to vectype. */
1800 vec<std::pair<unsigned, unsigned> > lperm = vNULL;
1801 tree vec = TREE_OPERAND (gimple_assign_rhs1 (stmt_info->stmt), 0);
1802 stmt_vec_info estmt_info;
1803 FOR_EACH_VEC_ELT (stmts, i, estmt_info)
1805 gassign *estmt = as_a <gassign *> (estmt_info->stmt);
1806 tree bfref = gimple_assign_rhs1 (estmt);
1807 HOST_WIDE_INT lane;
1808 if (!known_eq (bit_field_size (bfref),
1809 tree_to_poly_uint64 (TYPE_SIZE (TREE_TYPE (vectype))))
1810 || !constant_multiple_p (bit_field_offset (bfref),
1811 bit_field_size (bfref), &lane))
1813 lperm.release ();
1814 return NULL;
1816 lperm.safe_push (std::make_pair (0, (unsigned)lane));
1818 slp_tree vnode = vect_create_new_slp_node (vNULL);
1819 /* ??? We record vectype here but we hide eventually necessary
1820 punning and instead rely on code generation to materialize
1821 VIEW_CONVERT_EXPRs as necessary. We instead should make
1822 this explicit somehow. */
1823 SLP_TREE_VECTYPE (vnode) = vectype;
1824 SLP_TREE_VEC_DEFS (vnode).safe_push (vec);
1825 /* We are always building a permutation node even if it is an identity
1826 permute to shield the rest of the vectorizer from the odd node
1827 representing an actual vector without any scalar ops.
1828 ??? We could hide it completely with making the permute node
1829 external? */
1830 node = vect_create_new_slp_node (node, stmts, 1);
1831 SLP_TREE_CODE (node) = VEC_PERM_EXPR;
1832 SLP_TREE_LANE_PERMUTATION (node) = lperm;
1833 SLP_TREE_VECTYPE (node) = vectype;
1834 SLP_TREE_CHILDREN (node).quick_push (vnode);
1835 return node;
1837 /* When discovery reaches an associatable operation see whether we can
1838 improve that to match up lanes in a way superior to the operand
1839 swapping code which at most looks at two defs.
1840 ??? For BB vectorization we cannot do the brute-force search
1841 for matching as we can succeed by means of builds from scalars
1842 and have no good way to "cost" one build against another. */
1843 else if (is_a <loop_vec_info> (vinfo)
1844 /* ??? We don't handle !vect_internal_def defs below. */
1845 && STMT_VINFO_DEF_TYPE (stmt_info) == vect_internal_def
1846 && is_gimple_assign (stmt_info->stmt)
1847 && (associative_tree_code (gimple_assign_rhs_code (stmt_info->stmt))
1848 || gimple_assign_rhs_code (stmt_info->stmt) == MINUS_EXPR)
1849 && ((FLOAT_TYPE_P (vectype) && flag_associative_math)
1850 || (INTEGRAL_TYPE_P (TREE_TYPE (vectype))
1851 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (vectype)))))
1853 /* See if we have a chain of (mixed) adds or subtracts or other
1854 associatable ops. */
1855 enum tree_code code = gimple_assign_rhs_code (stmt_info->stmt);
1856 if (code == MINUS_EXPR)
1857 code = PLUS_EXPR;
1858 stmt_vec_info other_op_stmt_info = NULL;
1859 stmt_vec_info op_stmt_info = NULL;
1860 unsigned chain_len = 0;
1861 auto_vec<chain_op_t> chain;
1862 auto_vec<std::pair<tree_code, gimple *> > worklist;
1863 auto_vec<vec<chain_op_t> > chains (group_size);
1864 auto_vec<slp_tree, 4> children;
1865 bool hard_fail = true;
1866 for (unsigned lane = 0; lane < group_size; ++lane)
1868 /* For each lane linearize the addition/subtraction (or other
1869 uniform associatable operation) expression tree. */
1870 gimple *op_stmt = NULL, *other_op_stmt = NULL;
1871 vect_slp_linearize_chain (vinfo, worklist, chain, code,
1872 stmts[lane]->stmt, op_stmt, other_op_stmt,
1873 NULL);
1874 if (!op_stmt_info && op_stmt)
1875 op_stmt_info = vinfo->lookup_stmt (op_stmt);
1876 if (!other_op_stmt_info && other_op_stmt)
1877 other_op_stmt_info = vinfo->lookup_stmt (other_op_stmt);
1878 if (chain.length () == 2)
1880 /* In a chain of just two elements resort to the regular
1881 operand swapping scheme. If we run into a length
1882 mismatch still hard-FAIL. */
1883 if (chain_len == 0)
1884 hard_fail = false;
1885 else
1887 matches[lane] = false;
1888 /* ??? We might want to process the other lanes, but
1889 make sure to not give false matching hints to the
1890 caller for lanes we did not process. */
1891 if (lane != group_size - 1)
1892 matches[0] = false;
1894 break;
1896 else if (chain_len == 0)
1897 chain_len = chain.length ();
1898 else if (chain.length () != chain_len)
1900 /* ??? Here we could slip in magic to compensate with
1901 neutral operands. */
1902 matches[lane] = false;
1903 if (lane != group_size - 1)
1904 matches[0] = false;
1905 break;
1907 chains.quick_push (chain.copy ());
1908 chain.truncate (0);
1910 if (chains.length () == group_size)
1912 /* We cannot yet use SLP_TREE_CODE to communicate the operation. */
1913 if (!op_stmt_info)
1915 hard_fail = false;
1916 goto out;
1918 /* Now we have a set of chains with the same length. */
1919 /* 1. pre-sort according to def_type and operation. */
1920 for (unsigned lane = 0; lane < group_size; ++lane)
1921 chains[lane].stablesort (dt_sort_cmp, vinfo);
1922 if (dump_enabled_p ())
1924 dump_printf_loc (MSG_NOTE, vect_location,
1925 "pre-sorted chains of %s\n",
1926 get_tree_code_name (code));
1927 for (unsigned lane = 0; lane < group_size; ++lane)
1929 for (unsigned opnum = 0; opnum < chain_len; ++opnum)
1930 dump_printf (MSG_NOTE, "%s %T ",
1931 get_tree_code_name (chains[lane][opnum].code),
1932 chains[lane][opnum].op);
1933 dump_printf (MSG_NOTE, "\n");
1936 /* 2. try to build children nodes, associating as necessary. */
1937 for (unsigned n = 0; n < chain_len; ++n)
1939 vect_def_type dt = chains[0][n].dt;
1940 unsigned lane;
1941 for (lane = 0; lane < group_size; ++lane)
1942 if (chains[lane][n].dt != dt)
1944 if (dt == vect_constant_def
1945 && chains[lane][n].dt == vect_external_def)
1946 dt = vect_external_def;
1947 else if (dt == vect_external_def
1948 && chains[lane][n].dt == vect_constant_def)
1950 else
1951 break;
1953 if (lane != group_size)
1955 if (dump_enabled_p ())
1956 dump_printf_loc (MSG_NOTE, vect_location,
1957 "giving up on chain due to mismatched "
1958 "def types\n");
1959 matches[lane] = false;
1960 if (lane != group_size - 1)
1961 matches[0] = false;
1962 goto out;
1964 if (dt == vect_constant_def
1965 || dt == vect_external_def)
1967 /* We can always build those. Might want to sort last
1968 or defer building. */
1969 vec<tree> ops;
1970 ops.create (group_size);
1971 for (lane = 0; lane < group_size; ++lane)
1972 ops.quick_push (chains[lane][n].op);
1973 slp_tree child = vect_create_new_slp_node (ops);
1974 SLP_TREE_DEF_TYPE (child) = dt;
1975 children.safe_push (child);
1977 else if (dt != vect_internal_def)
1979 /* Not sure, we might need sth special.
1980 gcc.dg/vect/pr96854.c,
1981 gfortran.dg/vect/fast-math-pr37021.f90
1982 and gfortran.dg/vect/pr61171.f trigger. */
1983 /* Soft-fail for now. */
1984 hard_fail = false;
1985 goto out;
1987 else
1989 vec<stmt_vec_info> op_stmts;
1990 op_stmts.create (group_size);
1991 slp_tree child = NULL;
1992 /* Brute-force our way. We have to consider a lane
1993 failing after fixing an earlier fail up in the
1994 SLP discovery recursion. So track the current
1995 permute per lane. */
1996 unsigned *perms = XALLOCAVEC (unsigned, group_size);
1997 memset (perms, 0, sizeof (unsigned) * group_size);
2000 op_stmts.truncate (0);
2001 for (lane = 0; lane < group_size; ++lane)
2002 op_stmts.quick_push
2003 (vinfo->lookup_def (chains[lane][n].op));
2004 child = vect_build_slp_tree (vinfo, op_stmts,
2005 group_size, &this_max_nunits,
2006 matches, limit,
2007 &this_tree_size, bst_map);
2008 /* ??? We're likely getting too many fatal mismatches
2009 here so maybe we want to ignore them (but then we
2010 have no idea which lanes fatally mismatched). */
2011 if (child || !matches[0])
2012 break;
2013 /* Swap another lane we have not yet matched up into
2014 lanes that did not match. If we run out of
2015 permute possibilities for a lane terminate the
2016 search. */
2017 bool term = false;
2018 for (lane = 1; lane < group_size; ++lane)
2019 if (!matches[lane])
2021 if (n + perms[lane] + 1 == chain_len)
2023 term = true;
2024 break;
2026 std::swap (chains[lane][n],
2027 chains[lane][n + perms[lane] + 1]);
2028 perms[lane]++;
2030 if (term)
2031 break;
2033 while (1);
2034 if (!child)
2036 if (dump_enabled_p ())
2037 dump_printf_loc (MSG_NOTE, vect_location,
2038 "failed to match up op %d\n", n);
2039 op_stmts.release ();
2040 if (lane != group_size - 1)
2041 matches[0] = false;
2042 else
2043 matches[lane] = false;
2044 goto out;
2046 if (dump_enabled_p ())
2048 dump_printf_loc (MSG_NOTE, vect_location,
2049 "matched up op %d to\n", n);
2050 vect_print_slp_tree (MSG_NOTE, vect_location, child);
2052 children.safe_push (child);
2055 /* 3. build SLP nodes to combine the chain. */
2056 for (unsigned lane = 0; lane < group_size; ++lane)
2057 if (chains[lane][0].code != code)
2059 /* See if there's any alternate all-PLUS entry. */
2060 unsigned n;
2061 for (n = 1; n < chain_len; ++n)
2063 for (lane = 0; lane < group_size; ++lane)
2064 if (chains[lane][n].code != code)
2065 break;
2066 if (lane == group_size)
2067 break;
2069 if (n != chain_len)
2071 /* Swap that in at first position. */
2072 std::swap (children[0], children[n]);
2073 for (lane = 0; lane < group_size; ++lane)
2074 std::swap (chains[lane][0], chains[lane][n]);
2076 else
2078 /* ??? When this triggers and we end up with two
2079 vect_constant/external_def up-front things break (ICE)
2080 spectacularly finding an insertion place for the
2081 all-constant op. We should have a fully
2082 vect_internal_def operand though(?) so we can swap
2083 that into first place and then prepend the all-zero
2084 constant. */
2085 if (dump_enabled_p ())
2086 dump_printf_loc (MSG_NOTE, vect_location,
2087 "inserting constant zero to compensate "
2088 "for (partially) negated first "
2089 "operand\n");
2090 chain_len++;
2091 for (lane = 0; lane < group_size; ++lane)
2092 chains[lane].safe_insert
2093 (0, chain_op_t (code, vect_constant_def, NULL_TREE));
2094 vec<tree> zero_ops;
2095 zero_ops.create (group_size);
2096 zero_ops.quick_push (build_zero_cst (TREE_TYPE (vectype)));
2097 for (lane = 1; lane < group_size; ++lane)
2098 zero_ops.quick_push (zero_ops[0]);
2099 slp_tree zero = vect_create_new_slp_node (zero_ops);
2100 SLP_TREE_DEF_TYPE (zero) = vect_constant_def;
2101 children.safe_insert (0, zero);
2103 break;
2105 for (unsigned i = 1; i < children.length (); ++i)
2107 slp_tree op0 = children[i - 1];
2108 slp_tree op1 = children[i];
2109 bool this_two_op = false;
2110 for (unsigned lane = 0; lane < group_size; ++lane)
2111 if (chains[lane][i].code != chains[0][i].code)
2113 this_two_op = true;
2114 break;
2116 slp_tree child;
2117 if (i == children.length () - 1)
2118 child = vect_create_new_slp_node (node, stmts, 2);
2119 else
2120 child = vect_create_new_slp_node (2, ERROR_MARK);
2121 if (this_two_op)
2123 vec<std::pair<unsigned, unsigned> > lperm;
2124 lperm.create (group_size);
2125 for (unsigned lane = 0; lane < group_size; ++lane)
2126 lperm.quick_push (std::make_pair
2127 (chains[lane][i].code != chains[0][i].code, lane));
2128 vect_slp_build_two_operator_nodes (child, vectype, op0, op1,
2129 (chains[0][i].code == code
2130 ? op_stmt_info
2131 : other_op_stmt_info),
2132 (chains[0][i].code == code
2133 ? other_op_stmt_info
2134 : op_stmt_info),
2135 lperm);
2137 else
2139 SLP_TREE_DEF_TYPE (child) = vect_internal_def;
2140 SLP_TREE_VECTYPE (child) = vectype;
2141 SLP_TREE_LANES (child) = group_size;
2142 SLP_TREE_CHILDREN (child).quick_push (op0);
2143 SLP_TREE_CHILDREN (child).quick_push (op1);
2144 SLP_TREE_REPRESENTATIVE (child)
2145 = (chains[0][i].code == code
2146 ? op_stmt_info : other_op_stmt_info);
2148 children[i] = child;
2150 *tree_size += this_tree_size + 1;
2151 *max_nunits = this_max_nunits;
2152 while (!chains.is_empty ())
2153 chains.pop ().release ();
2154 return node;
2156 out:
2157 while (!children.is_empty ())
2158 vect_free_slp_tree (children.pop ());
2159 while (!chains.is_empty ())
2160 chains.pop ().release ();
2161 /* Hard-fail, otherwise we might run into quadratic processing of the
2162 chains starting one stmt into the chain again. */
2163 if (hard_fail)
2164 return NULL;
2165 /* Fall thru to normal processing. */
2168 /* Get at the operands, verifying they are compatible. */
2169 vec<slp_oprnd_info> oprnds_info = vect_create_oprnd_info (nops, group_size);
2170 slp_oprnd_info oprnd_info;
2171 FOR_EACH_VEC_ELT (stmts, i, stmt_info)
2173 int res = vect_get_and_check_slp_defs (vinfo, swap[i], skip_args,
2174 stmts, i, &oprnds_info);
2175 if (res != 0)
2176 matches[(res == -1) ? 0 : i] = false;
2177 if (!matches[0])
2178 break;
2180 for (i = 0; i < group_size; ++i)
2181 if (!matches[i])
2183 vect_free_oprnd_info (oprnds_info);
2184 return NULL;
2186 swap = NULL;
2188 auto_vec<slp_tree, 4> children;
2190 stmt_info = stmts[0];
2192 /* Create SLP_TREE nodes for the definition node/s. */
2193 FOR_EACH_VEC_ELT (oprnds_info, i, oprnd_info)
2195 slp_tree child;
2196 unsigned int j;
2198 /* We're skipping certain operands from processing, for example
2199 outer loop reduction initial defs. */
2200 if (skip_args[i])
2202 children.safe_push (NULL);
2203 continue;
2206 if (oprnd_info->first_dt == vect_uninitialized_def)
2208 /* COND_EXPR have one too many eventually if the condition
2209 is a SSA name. */
2210 gcc_assert (i == 3 && nops == 4);
2211 continue;
2214 if (is_a <bb_vec_info> (vinfo)
2215 && oprnd_info->first_dt == vect_internal_def
2216 && !oprnd_info->any_pattern)
2218 /* For BB vectorization, if all defs are the same do not
2219 bother to continue the build along the single-lane
2220 graph but use a splat of the scalar value. */
2221 stmt_vec_info first_def = oprnd_info->def_stmts[0];
2222 for (j = 1; j < group_size; ++j)
2223 if (oprnd_info->def_stmts[j] != first_def)
2224 break;
2225 if (j == group_size
2226 /* But avoid doing this for loads where we may be
2227 able to CSE things, unless the stmt is not
2228 vectorizable. */
2229 && (!STMT_VINFO_VECTORIZABLE (first_def)
2230 || !gimple_vuse (first_def->stmt)))
2232 if (dump_enabled_p ())
2233 dump_printf_loc (MSG_NOTE, vect_location,
2234 "Using a splat of the uniform operand\n");
2235 oprnd_info->first_dt = vect_external_def;
2239 if (oprnd_info->first_dt == vect_external_def
2240 || oprnd_info->first_dt == vect_constant_def)
2242 slp_tree invnode = vect_create_new_slp_node (oprnd_info->ops);
2243 SLP_TREE_DEF_TYPE (invnode) = oprnd_info->first_dt;
2244 oprnd_info->ops = vNULL;
2245 children.safe_push (invnode);
2246 continue;
2249 if ((child = vect_build_slp_tree (vinfo, oprnd_info->def_stmts,
2250 group_size, &this_max_nunits,
2251 matches, limit,
2252 &this_tree_size, bst_map)) != NULL)
2254 oprnd_info->def_stmts = vNULL;
2255 children.safe_push (child);
2256 continue;
2259 /* If the SLP build for operand zero failed and operand zero
2260 and one can be commutated try that for the scalar stmts
2261 that failed the match. */
2262 if (i == 0
2263 /* A first scalar stmt mismatch signals a fatal mismatch. */
2264 && matches[0]
2265 /* ??? For COND_EXPRs we can swap the comparison operands
2266 as well as the arms under some constraints. */
2267 && nops == 2
2268 && oprnds_info[1]->first_dt == vect_internal_def
2269 && is_gimple_assign (stmt_info->stmt)
2270 /* Swapping operands for reductions breaks assumptions later on. */
2271 && STMT_VINFO_DEF_TYPE (stmt_info) != vect_reduction_def
2272 && STMT_VINFO_DEF_TYPE (stmt_info) != vect_double_reduction_def)
2274 /* See whether we can swap the matching or the non-matching
2275 stmt operands. */
2276 bool swap_not_matching = true;
2279 for (j = 0; j < group_size; ++j)
2281 if (matches[j] != !swap_not_matching)
2282 continue;
2283 stmt_vec_info stmt_info = stmts[j];
2284 /* Verify if we can swap operands of this stmt. */
2285 gassign *stmt = dyn_cast <gassign *> (stmt_info->stmt);
2286 if (!stmt
2287 || !commutative_tree_code (gimple_assign_rhs_code (stmt)))
2289 if (!swap_not_matching)
2290 goto fail;
2291 swap_not_matching = false;
2292 break;
2296 while (j != group_size);
2298 /* Swap mismatched definition stmts. */
2299 if (dump_enabled_p ())
2300 dump_printf_loc (MSG_NOTE, vect_location,
2301 "Re-trying with swapped operands of stmts ");
2302 for (j = 0; j < group_size; ++j)
2303 if (matches[j] == !swap_not_matching)
2305 std::swap (oprnds_info[0]->def_stmts[j],
2306 oprnds_info[1]->def_stmts[j]);
2307 std::swap (oprnds_info[0]->ops[j],
2308 oprnds_info[1]->ops[j]);
2309 if (dump_enabled_p ())
2310 dump_printf (MSG_NOTE, "%d ", j);
2312 if (dump_enabled_p ())
2313 dump_printf (MSG_NOTE, "\n");
2314 /* And try again with scratch 'matches' ... */
2315 bool *tem = XALLOCAVEC (bool, group_size);
2316 if ((child = vect_build_slp_tree (vinfo, oprnd_info->def_stmts,
2317 group_size, &this_max_nunits,
2318 tem, limit,
2319 &this_tree_size, bst_map)) != NULL)
2321 oprnd_info->def_stmts = vNULL;
2322 children.safe_push (child);
2323 continue;
2326 fail:
2328 /* If the SLP build failed and we analyze a basic-block
2329 simply treat nodes we fail to build as externally defined
2330 (and thus build vectors from the scalar defs).
2331 The cost model will reject outright expensive cases.
2332 ??? This doesn't treat cases where permutation ultimatively
2333 fails (or we don't try permutation below). Ideally we'd
2334 even compute a permutation that will end up with the maximum
2335 SLP tree size... */
2336 if (is_a <bb_vec_info> (vinfo)
2337 /* ??? Rejecting patterns this way doesn't work. We'd have to
2338 do extra work to cancel the pattern so the uses see the
2339 scalar version. */
2340 && !is_pattern_stmt_p (stmt_info)
2341 && !oprnd_info->any_pattern)
2343 /* But if there's a leading vector sized set of matching stmts
2344 fail here so we can split the group. This matches the condition
2345 vect_analyze_slp_instance uses. */
2346 /* ??? We might want to split here and combine the results to support
2347 multiple vector sizes better. */
2348 for (j = 0; j < group_size; ++j)
2349 if (!matches[j])
2350 break;
2351 if (!known_ge (j, TYPE_VECTOR_SUBPARTS (vectype)))
2353 if (dump_enabled_p ())
2354 dump_printf_loc (MSG_NOTE, vect_location,
2355 "Building vector operands from scalars\n");
2356 this_tree_size++;
2357 child = vect_create_new_slp_node (oprnd_info->ops);
2358 children.safe_push (child);
2359 oprnd_info->ops = vNULL;
2360 continue;
2364 gcc_assert (child == NULL);
2365 FOR_EACH_VEC_ELT (children, j, child)
2366 if (child)
2367 vect_free_slp_tree (child);
2368 vect_free_oprnd_info (oprnds_info);
2369 return NULL;
2372 vect_free_oprnd_info (oprnds_info);
2374 /* If we have all children of a child built up from uniform scalars
2375 or does more than one possibly expensive vector construction then
2376 just throw that away, causing it built up from scalars.
2377 The exception is the SLP node for the vector store. */
2378 if (is_a <bb_vec_info> (vinfo)
2379 && !STMT_VINFO_GROUPED_ACCESS (stmt_info)
2380 /* ??? Rejecting patterns this way doesn't work. We'd have to
2381 do extra work to cancel the pattern so the uses see the
2382 scalar version. */
2383 && !is_pattern_stmt_p (stmt_info))
2385 slp_tree child;
2386 unsigned j;
2387 bool all_uniform_p = true;
2388 unsigned n_vector_builds = 0;
2389 FOR_EACH_VEC_ELT (children, j, child)
2391 if (!child)
2393 else if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
2394 all_uniform_p = false;
2395 else if (!vect_slp_tree_uniform_p (child))
2397 all_uniform_p = false;
2398 if (SLP_TREE_DEF_TYPE (child) == vect_external_def)
2399 n_vector_builds++;
2402 if (all_uniform_p
2403 || n_vector_builds > 1
2404 || (n_vector_builds == children.length ()
2405 && is_a <gphi *> (stmt_info->stmt)))
2407 /* Roll back. */
2408 matches[0] = false;
2409 FOR_EACH_VEC_ELT (children, j, child)
2410 if (child)
2411 vect_free_slp_tree (child);
2413 if (dump_enabled_p ())
2414 dump_printf_loc (MSG_NOTE, vect_location,
2415 "Building parent vector operands from "
2416 "scalars instead\n");
2417 return NULL;
2421 *tree_size += this_tree_size + 1;
2422 *max_nunits = this_max_nunits;
2424 if (two_operators)
2426 /* ??? We'd likely want to either cache in bst_map sth like
2427 { a+b, NULL, a+b, NULL } and { NULL, a-b, NULL, a-b } or
2428 the true { a+b, a+b, a+b, a+b } ... but there we don't have
2429 explicit stmts to put in so the keying on 'stmts' doesn't
2430 work (but we have the same issue with nodes that use 'ops'). */
2431 slp_tree one = new _slp_tree;
2432 slp_tree two = new _slp_tree;
2433 SLP_TREE_DEF_TYPE (one) = vect_internal_def;
2434 SLP_TREE_DEF_TYPE (two) = vect_internal_def;
2435 SLP_TREE_VECTYPE (one) = vectype;
2436 SLP_TREE_VECTYPE (two) = vectype;
2437 SLP_TREE_CHILDREN (one).safe_splice (children);
2438 SLP_TREE_CHILDREN (two).safe_splice (children);
2439 slp_tree child;
2440 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (two), i, child)
2441 SLP_TREE_REF_COUNT (child)++;
2443 /* Here we record the original defs since this
2444 node represents the final lane configuration. */
2445 node = vect_create_new_slp_node (node, stmts, 2);
2446 SLP_TREE_VECTYPE (node) = vectype;
2447 SLP_TREE_CODE (node) = VEC_PERM_EXPR;
2448 SLP_TREE_CHILDREN (node).quick_push (one);
2449 SLP_TREE_CHILDREN (node).quick_push (two);
2450 gassign *stmt = as_a <gassign *> (stmts[0]->stmt);
2451 enum tree_code code0 = gimple_assign_rhs_code (stmt);
2452 enum tree_code ocode = ERROR_MARK;
2453 stmt_vec_info ostmt_info;
2454 unsigned j = 0;
2455 FOR_EACH_VEC_ELT (stmts, i, ostmt_info)
2457 gassign *ostmt = as_a <gassign *> (ostmt_info->stmt);
2458 if (gimple_assign_rhs_code (ostmt) != code0)
2460 SLP_TREE_LANE_PERMUTATION (node).safe_push (std::make_pair (1, i));
2461 ocode = gimple_assign_rhs_code (ostmt);
2462 j = i;
2464 else
2465 SLP_TREE_LANE_PERMUTATION (node).safe_push (std::make_pair (0, i));
2467 SLP_TREE_CODE (one) = code0;
2468 SLP_TREE_CODE (two) = ocode;
2469 SLP_TREE_LANES (one) = stmts.length ();
2470 SLP_TREE_LANES (two) = stmts.length ();
2471 SLP_TREE_REPRESENTATIVE (one) = stmts[0];
2472 SLP_TREE_REPRESENTATIVE (two) = stmts[j];
2473 return node;
2476 node = vect_create_new_slp_node (node, stmts, nops);
2477 SLP_TREE_VECTYPE (node) = vectype;
2478 SLP_TREE_CHILDREN (node).splice (children);
2479 return node;
2482 /* Dump a single SLP tree NODE. */
2484 static void
2485 vect_print_slp_tree (dump_flags_t dump_kind, dump_location_t loc,
2486 slp_tree node)
2488 unsigned i, j;
2489 slp_tree child;
2490 stmt_vec_info stmt_info;
2491 tree op;
2493 dump_metadata_t metadata (dump_kind, loc.get_impl_location ());
2494 dump_user_location_t user_loc = loc.get_user_location ();
2495 dump_printf_loc (metadata, user_loc, "node%s %p (max_nunits=%u, refcnt=%u)\n",
2496 SLP_TREE_DEF_TYPE (node) == vect_external_def
2497 ? " (external)"
2498 : (SLP_TREE_DEF_TYPE (node) == vect_constant_def
2499 ? " (constant)"
2500 : ""), node,
2501 estimated_poly_value (node->max_nunits),
2502 SLP_TREE_REF_COUNT (node));
2503 if (SLP_TREE_DEF_TYPE (node) == vect_internal_def)
2505 if (SLP_TREE_CODE (node) == VEC_PERM_EXPR)
2506 dump_printf_loc (metadata, user_loc, "op: VEC_PERM_EXPR\n");
2507 else
2508 dump_printf_loc (metadata, user_loc, "op template: %G",
2509 SLP_TREE_REPRESENTATIVE (node)->stmt);
2511 if (SLP_TREE_SCALAR_STMTS (node).exists ())
2512 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
2513 dump_printf_loc (metadata, user_loc, "\tstmt %u %G", i, stmt_info->stmt);
2514 else
2516 dump_printf_loc (metadata, user_loc, "\t{ ");
2517 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_OPS (node), i, op)
2518 dump_printf (metadata, "%T%s ", op,
2519 i < SLP_TREE_SCALAR_OPS (node).length () - 1 ? "," : "");
2520 dump_printf (metadata, "}\n");
2522 if (SLP_TREE_LOAD_PERMUTATION (node).exists ())
2524 dump_printf_loc (metadata, user_loc, "\tload permutation {");
2525 FOR_EACH_VEC_ELT (SLP_TREE_LOAD_PERMUTATION (node), i, j)
2526 dump_printf (dump_kind, " %u", j);
2527 dump_printf (dump_kind, " }\n");
2529 if (SLP_TREE_LANE_PERMUTATION (node).exists ())
2531 dump_printf_loc (metadata, user_loc, "\tlane permutation {");
2532 for (i = 0; i < SLP_TREE_LANE_PERMUTATION (node).length (); ++i)
2533 dump_printf (dump_kind, " %u[%u]",
2534 SLP_TREE_LANE_PERMUTATION (node)[i].first,
2535 SLP_TREE_LANE_PERMUTATION (node)[i].second);
2536 dump_printf (dump_kind, " }\n");
2538 if (SLP_TREE_CHILDREN (node).is_empty ())
2539 return;
2540 dump_printf_loc (metadata, user_loc, "\tchildren");
2541 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2542 dump_printf (dump_kind, " %p", (void *)child);
2543 dump_printf (dump_kind, "\n");
2546 DEBUG_FUNCTION void
2547 debug (slp_tree node)
2549 debug_dump_context ctx;
2550 vect_print_slp_tree (MSG_NOTE,
2551 dump_location_t::from_location_t (UNKNOWN_LOCATION),
2552 node);
2555 /* Recursive helper for the dot producer below. */
2557 static void
2558 dot_slp_tree (FILE *f, slp_tree node, hash_set<slp_tree> &visited)
2560 if (visited.add (node))
2561 return;
2563 fprintf (f, "\"%p\" [label=\"", (void *)node);
2564 vect_print_slp_tree (MSG_NOTE,
2565 dump_location_t::from_location_t (UNKNOWN_LOCATION),
2566 node);
2567 fprintf (f, "\"];\n");
2570 for (slp_tree child : SLP_TREE_CHILDREN (node))
2571 fprintf (f, "\"%p\" -> \"%p\";", (void *)node, (void *)child);
2573 for (slp_tree child : SLP_TREE_CHILDREN (node))
2574 dot_slp_tree (f, child, visited);
2577 DEBUG_FUNCTION void
2578 dot_slp_tree (const char *fname, slp_tree node)
2580 FILE *f = fopen (fname, "w");
2581 fprintf (f, "digraph {\n");
2582 fflush (f);
2584 debug_dump_context ctx (f);
2585 hash_set<slp_tree> visited;
2586 dot_slp_tree (f, node, visited);
2588 fflush (f);
2589 fprintf (f, "}\n");
2590 fclose (f);
2593 /* Dump a slp tree NODE using flags specified in DUMP_KIND. */
2595 static void
2596 vect_print_slp_graph (dump_flags_t dump_kind, dump_location_t loc,
2597 slp_tree node, hash_set<slp_tree> &visited)
2599 unsigned i;
2600 slp_tree child;
2602 if (visited.add (node))
2603 return;
2605 vect_print_slp_tree (dump_kind, loc, node);
2607 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2608 if (child)
2609 vect_print_slp_graph (dump_kind, loc, child, visited);
2612 static void
2613 vect_print_slp_graph (dump_flags_t dump_kind, dump_location_t loc,
2614 slp_tree entry)
2616 hash_set<slp_tree> visited;
2617 vect_print_slp_graph (dump_kind, loc, entry, visited);
2620 /* Mark the tree rooted at NODE with PURE_SLP. */
2622 static void
2623 vect_mark_slp_stmts (slp_tree node, hash_set<slp_tree> &visited)
2625 int i;
2626 stmt_vec_info stmt_info;
2627 slp_tree child;
2629 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
2630 return;
2632 if (visited.add (node))
2633 return;
2635 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
2636 STMT_SLP_TYPE (stmt_info) = pure_slp;
2638 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2639 if (child)
2640 vect_mark_slp_stmts (child, visited);
2643 static void
2644 vect_mark_slp_stmts (slp_tree node)
2646 hash_set<slp_tree> visited;
2647 vect_mark_slp_stmts (node, visited);
2650 /* Mark the statements of the tree rooted at NODE as relevant (vect_used). */
2652 static void
2653 vect_mark_slp_stmts_relevant (slp_tree node, hash_set<slp_tree> &visited)
2655 int i;
2656 stmt_vec_info stmt_info;
2657 slp_tree child;
2659 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
2660 return;
2662 if (visited.add (node))
2663 return;
2665 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
2667 gcc_assert (!STMT_VINFO_RELEVANT (stmt_info)
2668 || STMT_VINFO_RELEVANT (stmt_info) == vect_used_in_scope);
2669 STMT_VINFO_RELEVANT (stmt_info) = vect_used_in_scope;
2672 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2673 if (child)
2674 vect_mark_slp_stmts_relevant (child, visited);
2677 static void
2678 vect_mark_slp_stmts_relevant (slp_tree node)
2680 hash_set<slp_tree> visited;
2681 vect_mark_slp_stmts_relevant (node, visited);
2685 /* Gather loads in the SLP graph NODE and populate the INST loads array. */
2687 static void
2688 vect_gather_slp_loads (vec<slp_tree> &loads, slp_tree node,
2689 hash_set<slp_tree> &visited)
2691 if (!node || visited.add (node))
2692 return;
2694 if (SLP_TREE_CHILDREN (node).length () == 0)
2696 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
2697 return;
2698 stmt_vec_info stmt_info = SLP_TREE_SCALAR_STMTS (node)[0];
2699 if (STMT_VINFO_GROUPED_ACCESS (stmt_info)
2700 && DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)))
2701 loads.safe_push (node);
2703 else
2705 unsigned i;
2706 slp_tree child;
2707 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2708 vect_gather_slp_loads (loads, child, visited);
2713 /* Find the last store in SLP INSTANCE. */
2715 stmt_vec_info
2716 vect_find_last_scalar_stmt_in_slp (slp_tree node)
2718 stmt_vec_info last = NULL;
2719 stmt_vec_info stmt_vinfo;
2721 for (int i = 0; SLP_TREE_SCALAR_STMTS (node).iterate (i, &stmt_vinfo); i++)
2723 stmt_vinfo = vect_orig_stmt (stmt_vinfo);
2724 last = last ? get_later_stmt (stmt_vinfo, last) : stmt_vinfo;
2727 return last;
2730 /* Find the first stmt in NODE. */
2732 stmt_vec_info
2733 vect_find_first_scalar_stmt_in_slp (slp_tree node)
2735 stmt_vec_info first = NULL;
2736 stmt_vec_info stmt_vinfo;
2738 for (int i = 0; SLP_TREE_SCALAR_STMTS (node).iterate (i, &stmt_vinfo); i++)
2740 stmt_vinfo = vect_orig_stmt (stmt_vinfo);
2741 if (!first
2742 || get_later_stmt (stmt_vinfo, first) == first)
2743 first = stmt_vinfo;
2746 return first;
2749 /* Splits a group of stores, currently beginning at FIRST_VINFO, into
2750 two groups: one (still beginning at FIRST_VINFO) of size GROUP1_SIZE
2751 (also containing the first GROUP1_SIZE stmts, since stores are
2752 consecutive), the second containing the remainder.
2753 Return the first stmt in the second group. */
2755 static stmt_vec_info
2756 vect_split_slp_store_group (stmt_vec_info first_vinfo, unsigned group1_size)
2758 gcc_assert (DR_GROUP_FIRST_ELEMENT (first_vinfo) == first_vinfo);
2759 gcc_assert (group1_size > 0);
2760 int group2_size = DR_GROUP_SIZE (first_vinfo) - group1_size;
2761 gcc_assert (group2_size > 0);
2762 DR_GROUP_SIZE (first_vinfo) = group1_size;
2764 stmt_vec_info stmt_info = first_vinfo;
2765 for (unsigned i = group1_size; i > 1; i--)
2767 stmt_info = DR_GROUP_NEXT_ELEMENT (stmt_info);
2768 gcc_assert (DR_GROUP_GAP (stmt_info) == 1);
2770 /* STMT is now the last element of the first group. */
2771 stmt_vec_info group2 = DR_GROUP_NEXT_ELEMENT (stmt_info);
2772 DR_GROUP_NEXT_ELEMENT (stmt_info) = 0;
2774 DR_GROUP_SIZE (group2) = group2_size;
2775 for (stmt_info = group2; stmt_info;
2776 stmt_info = DR_GROUP_NEXT_ELEMENT (stmt_info))
2778 DR_GROUP_FIRST_ELEMENT (stmt_info) = group2;
2779 gcc_assert (DR_GROUP_GAP (stmt_info) == 1);
2782 /* For the second group, the DR_GROUP_GAP is that before the original group,
2783 plus skipping over the first vector. */
2784 DR_GROUP_GAP (group2) = DR_GROUP_GAP (first_vinfo) + group1_size;
2786 /* DR_GROUP_GAP of the first group now has to skip over the second group too. */
2787 DR_GROUP_GAP (first_vinfo) += group2_size;
2789 if (dump_enabled_p ())
2790 dump_printf_loc (MSG_NOTE, vect_location, "Split group into %d and %d\n",
2791 group1_size, group2_size);
2793 return group2;
2796 /* Calculate the unrolling factor for an SLP instance with GROUP_SIZE
2797 statements and a vector of NUNITS elements. */
2799 static poly_uint64
2800 calculate_unrolling_factor (poly_uint64 nunits, unsigned int group_size)
2802 return exact_div (common_multiple (nunits, group_size), group_size);
2805 /* Helper that checks to see if a node is a load node. */
2807 static inline bool
2808 vect_is_slp_load_node (slp_tree root)
2810 return SLP_TREE_DEF_TYPE (root) == vect_internal_def
2811 && STMT_VINFO_GROUPED_ACCESS (SLP_TREE_REPRESENTATIVE (root))
2812 && DR_IS_READ (STMT_VINFO_DATA_REF (SLP_TREE_REPRESENTATIVE (root)));
2816 /* Helper function of optimize_load_redistribution that performs the operation
2817 recursively. */
2819 static slp_tree
2820 optimize_load_redistribution_1 (scalar_stmts_to_slp_tree_map_t *bst_map,
2821 vec_info *vinfo, unsigned int group_size,
2822 hash_map<slp_tree, slp_tree> *load_map,
2823 slp_tree root)
2825 if (slp_tree *leader = load_map->get (root))
2826 return *leader;
2828 slp_tree node;
2829 unsigned i;
2831 /* For now, we don't know anything about externals so do not do anything. */
2832 if (!root || SLP_TREE_DEF_TYPE (root) != vect_internal_def)
2833 return NULL;
2834 else if (SLP_TREE_CODE (root) == VEC_PERM_EXPR)
2836 /* First convert this node into a load node and add it to the leaves
2837 list and flatten the permute from a lane to a load one. If it's
2838 unneeded it will be elided later. */
2839 vec<stmt_vec_info> stmts;
2840 stmts.create (SLP_TREE_LANES (root));
2841 lane_permutation_t lane_perm = SLP_TREE_LANE_PERMUTATION (root);
2842 for (unsigned j = 0; j < lane_perm.length (); j++)
2844 std::pair<unsigned, unsigned> perm = lane_perm[j];
2845 node = SLP_TREE_CHILDREN (root)[perm.first];
2847 if (!vect_is_slp_load_node (node)
2848 || SLP_TREE_CHILDREN (node).exists ())
2850 stmts.release ();
2851 goto next;
2854 stmts.quick_push (SLP_TREE_SCALAR_STMTS (node)[perm.second]);
2857 if (dump_enabled_p ())
2858 dump_printf_loc (MSG_NOTE, vect_location,
2859 "converting stmts on permute node %p\n", root);
2861 bool *matches = XALLOCAVEC (bool, group_size);
2862 poly_uint64 max_nunits = 1;
2863 unsigned tree_size = 0, limit = 1;
2864 node = vect_build_slp_tree (vinfo, stmts, group_size, &max_nunits,
2865 matches, &limit, &tree_size, bst_map);
2866 if (!node)
2867 stmts.release ();
2869 load_map->put (root, node);
2870 return node;
2873 next:
2874 load_map->put (root, NULL);
2876 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (root), i , node)
2878 slp_tree value
2879 = optimize_load_redistribution_1 (bst_map, vinfo, group_size, load_map,
2880 node);
2881 if (value)
2883 SLP_TREE_REF_COUNT (value)++;
2884 SLP_TREE_CHILDREN (root)[i] = value;
2885 /* ??? We know the original leafs of the replaced nodes will
2886 be referenced by bst_map, only the permutes created by
2887 pattern matching are not. */
2888 if (SLP_TREE_REF_COUNT (node) == 1)
2889 load_map->remove (node);
2890 vect_free_slp_tree (node);
2894 return NULL;
2897 /* Temporary workaround for loads not being CSEd during SLP build. This
2898 function will traverse the SLP tree rooted in ROOT for INSTANCE and find
2899 VEC_PERM nodes that blend vectors from multiple nodes that all read from the
2900 same DR such that the final operation is equal to a permuted load. Such
2901 NODES are then directly converted into LOADS themselves. The nodes are
2902 CSEd using BST_MAP. */
2904 static void
2905 optimize_load_redistribution (scalar_stmts_to_slp_tree_map_t *bst_map,
2906 vec_info *vinfo, unsigned int group_size,
2907 hash_map<slp_tree, slp_tree> *load_map,
2908 slp_tree root)
2910 slp_tree node;
2911 unsigned i;
2913 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (root), i , node)
2915 slp_tree value
2916 = optimize_load_redistribution_1 (bst_map, vinfo, group_size, load_map,
2917 node);
2918 if (value)
2920 SLP_TREE_REF_COUNT (value)++;
2921 SLP_TREE_CHILDREN (root)[i] = value;
2922 /* ??? We know the original leafs of the replaced nodes will
2923 be referenced by bst_map, only the permutes created by
2924 pattern matching are not. */
2925 if (SLP_TREE_REF_COUNT (node) == 1)
2926 load_map->remove (node);
2927 vect_free_slp_tree (node);
2932 /* Helper function of vect_match_slp_patterns.
2934 Attempts to match patterns against the slp tree rooted in REF_NODE using
2935 VINFO. Patterns are matched in post-order traversal.
2937 If matching is successful the value in REF_NODE is updated and returned, if
2938 not then it is returned unchanged. */
2940 static bool
2941 vect_match_slp_patterns_2 (slp_tree *ref_node, vec_info *vinfo,
2942 slp_tree_to_load_perm_map_t *perm_cache,
2943 hash_set<slp_tree> *visited)
2945 unsigned i;
2946 slp_tree node = *ref_node;
2947 bool found_p = false;
2948 if (!node || visited->add (node))
2949 return false;
2951 slp_tree child;
2952 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2953 found_p |= vect_match_slp_patterns_2 (&SLP_TREE_CHILDREN (node)[i],
2954 vinfo, perm_cache, visited);
2956 for (unsigned x = 0; x < num__slp_patterns; x++)
2958 vect_pattern *pattern = slp_patterns[x] (perm_cache, ref_node);
2959 if (pattern)
2961 pattern->build (vinfo);
2962 delete pattern;
2963 found_p = true;
2967 return found_p;
2970 /* Applies pattern matching to the given SLP tree rooted in REF_NODE using
2971 vec_info VINFO.
2973 The modified tree is returned. Patterns are tried in order and multiple
2974 patterns may match. */
2976 static bool
2977 vect_match_slp_patterns (slp_instance instance, vec_info *vinfo,
2978 hash_set<slp_tree> *visited,
2979 slp_tree_to_load_perm_map_t *perm_cache)
2981 DUMP_VECT_SCOPE ("vect_match_slp_patterns");
2982 slp_tree *ref_node = &SLP_INSTANCE_TREE (instance);
2984 if (dump_enabled_p ())
2985 dump_printf_loc (MSG_NOTE, vect_location,
2986 "Analyzing SLP tree %p for patterns\n",
2987 SLP_INSTANCE_TREE (instance));
2989 return vect_match_slp_patterns_2 (ref_node, vinfo, perm_cache, visited);
2992 /* STMT_INFO is a store group of size GROUP_SIZE that we are considering
2993 splitting into two, with the first split group having size NEW_GROUP_SIZE.
2994 Return true if we could use IFN_STORE_LANES instead and if that appears
2995 to be the better approach. */
2997 static bool
2998 vect_slp_prefer_store_lanes_p (vec_info *vinfo, stmt_vec_info stmt_info,
2999 unsigned int group_size,
3000 unsigned int new_group_size)
3002 tree scalar_type = TREE_TYPE (DR_REF (STMT_VINFO_DATA_REF (stmt_info)));
3003 tree vectype = get_vectype_for_scalar_type (vinfo, scalar_type);
3004 if (!vectype)
3005 return false;
3006 /* Allow the split if one of the two new groups would operate on full
3007 vectors *within* rather than across one scalar loop iteration.
3008 This is purely a heuristic, but it should work well for group
3009 sizes of 3 and 4, where the possible splits are:
3011 3->2+1: OK if the vector has exactly two elements
3012 4->2+2: Likewise
3013 4->3+1: Less clear-cut. */
3014 if (multiple_p (group_size - new_group_size, TYPE_VECTOR_SUBPARTS (vectype))
3015 || multiple_p (new_group_size, TYPE_VECTOR_SUBPARTS (vectype)))
3016 return false;
3017 return vect_store_lanes_supported (vectype, group_size, false);
3020 /* Analyze an SLP instance starting from a group of grouped stores. Call
3021 vect_build_slp_tree to build a tree of packed stmts if possible.
3022 Return FALSE if it's impossible to SLP any stmt in the loop. */
3024 static bool
3025 vect_analyze_slp_instance (vec_info *vinfo,
3026 scalar_stmts_to_slp_tree_map_t *bst_map,
3027 stmt_vec_info stmt_info, slp_instance_kind kind,
3028 unsigned max_tree_size, unsigned *limit);
3030 /* Analyze an SLP instance starting from SCALAR_STMTS which are a group
3031 of KIND. Return true if successful. */
3033 static bool
3034 vect_build_slp_instance (vec_info *vinfo,
3035 slp_instance_kind kind,
3036 vec<stmt_vec_info> &scalar_stmts,
3037 vec<stmt_vec_info> &root_stmt_infos,
3038 unsigned max_tree_size, unsigned *limit,
3039 scalar_stmts_to_slp_tree_map_t *bst_map,
3040 /* ??? We need stmt_info for group splitting. */
3041 stmt_vec_info stmt_info_)
3043 if (dump_enabled_p ())
3045 dump_printf_loc (MSG_NOTE, vect_location,
3046 "Starting SLP discovery for\n");
3047 for (unsigned i = 0; i < scalar_stmts.length (); ++i)
3048 dump_printf_loc (MSG_NOTE, vect_location,
3049 " %G", scalar_stmts[i]->stmt);
3052 /* Build the tree for the SLP instance. */
3053 unsigned int group_size = scalar_stmts.length ();
3054 bool *matches = XALLOCAVEC (bool, group_size);
3055 poly_uint64 max_nunits = 1;
3056 unsigned tree_size = 0;
3057 unsigned i;
3058 slp_tree node = vect_build_slp_tree (vinfo, scalar_stmts, group_size,
3059 &max_nunits, matches, limit,
3060 &tree_size, bst_map);
3061 if (node != NULL)
3063 /* Calculate the unrolling factor based on the smallest type. */
3064 poly_uint64 unrolling_factor
3065 = calculate_unrolling_factor (max_nunits, group_size);
3067 if (maybe_ne (unrolling_factor, 1U)
3068 && is_a <bb_vec_info> (vinfo))
3070 unsigned HOST_WIDE_INT const_max_nunits;
3071 if (!max_nunits.is_constant (&const_max_nunits)
3072 || const_max_nunits > group_size)
3074 if (dump_enabled_p ())
3075 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
3076 "Build SLP failed: store group "
3077 "size not a multiple of the vector size "
3078 "in basic block SLP\n");
3079 vect_free_slp_tree (node);
3080 return false;
3082 /* Fatal mismatch. */
3083 if (dump_enabled_p ())
3084 dump_printf_loc (MSG_NOTE, vect_location,
3085 "SLP discovery succeeded but node needs "
3086 "splitting\n");
3087 memset (matches, true, group_size);
3088 matches[group_size / const_max_nunits * const_max_nunits] = false;
3089 vect_free_slp_tree (node);
3091 else
3093 /* Create a new SLP instance. */
3094 slp_instance new_instance = XNEW (class _slp_instance);
3095 SLP_INSTANCE_TREE (new_instance) = node;
3096 SLP_INSTANCE_UNROLLING_FACTOR (new_instance) = unrolling_factor;
3097 SLP_INSTANCE_LOADS (new_instance) = vNULL;
3098 SLP_INSTANCE_ROOT_STMTS (new_instance) = root_stmt_infos;
3099 SLP_INSTANCE_KIND (new_instance) = kind;
3100 new_instance->reduc_phis = NULL;
3101 new_instance->cost_vec = vNULL;
3102 new_instance->subgraph_entries = vNULL;
3104 if (dump_enabled_p ())
3105 dump_printf_loc (MSG_NOTE, vect_location,
3106 "SLP size %u vs. limit %u.\n",
3107 tree_size, max_tree_size);
3109 /* Fixup SLP reduction chains. */
3110 if (kind == slp_inst_kind_reduc_chain)
3112 /* If this is a reduction chain with a conversion in front
3113 amend the SLP tree with a node for that. */
3114 gimple *scalar_def
3115 = vect_orig_stmt (scalar_stmts[group_size - 1])->stmt;
3116 if (STMT_VINFO_DEF_TYPE (scalar_stmts[0]) != vect_reduction_def)
3118 /* Get at the conversion stmt - we know it's the single use
3119 of the last stmt of the reduction chain. */
3120 use_operand_p use_p;
3121 bool r = single_imm_use (gimple_assign_lhs (scalar_def),
3122 &use_p, &scalar_def);
3123 gcc_assert (r);
3124 stmt_vec_info next_info = vinfo->lookup_stmt (scalar_def);
3125 next_info = vect_stmt_to_vectorize (next_info);
3126 scalar_stmts = vNULL;
3127 scalar_stmts.create (group_size);
3128 for (unsigned i = 0; i < group_size; ++i)
3129 scalar_stmts.quick_push (next_info);
3130 slp_tree conv = vect_create_new_slp_node (scalar_stmts, 1);
3131 SLP_TREE_VECTYPE (conv) = STMT_VINFO_VECTYPE (next_info);
3132 SLP_TREE_CHILDREN (conv).quick_push (node);
3133 SLP_INSTANCE_TREE (new_instance) = conv;
3134 /* We also have to fake this conversion stmt as SLP reduction
3135 group so we don't have to mess with too much code
3136 elsewhere. */
3137 REDUC_GROUP_FIRST_ELEMENT (next_info) = next_info;
3138 REDUC_GROUP_NEXT_ELEMENT (next_info) = NULL;
3140 /* Fill the backedge child of the PHI SLP node. The
3141 general matching code cannot find it because the
3142 scalar code does not reflect how we vectorize the
3143 reduction. */
3144 use_operand_p use_p;
3145 imm_use_iterator imm_iter;
3146 class loop *loop = LOOP_VINFO_LOOP (as_a <loop_vec_info> (vinfo));
3147 FOR_EACH_IMM_USE_FAST (use_p, imm_iter,
3148 gimple_get_lhs (scalar_def))
3149 /* There are exactly two non-debug uses, the reduction
3150 PHI and the loop-closed PHI node. */
3151 if (!is_gimple_debug (USE_STMT (use_p))
3152 && gimple_bb (USE_STMT (use_p)) == loop->header)
3154 auto_vec<stmt_vec_info, 64> phis (group_size);
3155 stmt_vec_info phi_info
3156 = vinfo->lookup_stmt (USE_STMT (use_p));
3157 for (unsigned i = 0; i < group_size; ++i)
3158 phis.quick_push (phi_info);
3159 slp_tree *phi_node = bst_map->get (phis);
3160 unsigned dest_idx = loop_latch_edge (loop)->dest_idx;
3161 SLP_TREE_CHILDREN (*phi_node)[dest_idx]
3162 = SLP_INSTANCE_TREE (new_instance);
3163 SLP_INSTANCE_TREE (new_instance)->refcnt++;
3167 vinfo->slp_instances.safe_push (new_instance);
3169 /* ??? We've replaced the old SLP_INSTANCE_GROUP_SIZE with
3170 the number of scalar stmts in the root in a few places.
3171 Verify that assumption holds. */
3172 gcc_assert (SLP_TREE_SCALAR_STMTS (SLP_INSTANCE_TREE (new_instance))
3173 .length () == group_size);
3175 if (dump_enabled_p ())
3177 dump_printf_loc (MSG_NOTE, vect_location,
3178 "Final SLP tree for instance %p:\n", new_instance);
3179 vect_print_slp_graph (MSG_NOTE, vect_location,
3180 SLP_INSTANCE_TREE (new_instance));
3183 return true;
3186 else
3188 /* Failed to SLP. */
3189 /* Free the allocated memory. */
3190 scalar_stmts.release ();
3193 stmt_vec_info stmt_info = stmt_info_;
3194 /* Try to break the group up into pieces. */
3195 if (kind == slp_inst_kind_store)
3197 /* ??? We could delay all the actual splitting of store-groups
3198 until after SLP discovery of the original group completed.
3199 Then we can recurse to vect_build_slp_instance directly. */
3200 for (i = 0; i < group_size; i++)
3201 if (!matches[i])
3202 break;
3204 /* For basic block SLP, try to break the group up into multiples of
3205 a vector size. */
3206 if (is_a <bb_vec_info> (vinfo)
3207 && (i > 1 && i < group_size))
3209 tree scalar_type
3210 = TREE_TYPE (DR_REF (STMT_VINFO_DATA_REF (stmt_info)));
3211 tree vectype = get_vectype_for_scalar_type (vinfo, scalar_type,
3212 1 << floor_log2 (i));
3213 unsigned HOST_WIDE_INT const_nunits;
3214 if (vectype
3215 && TYPE_VECTOR_SUBPARTS (vectype).is_constant (&const_nunits))
3217 /* Split into two groups at the first vector boundary. */
3218 gcc_assert ((const_nunits & (const_nunits - 1)) == 0);
3219 unsigned group1_size = i & ~(const_nunits - 1);
3221 if (dump_enabled_p ())
3222 dump_printf_loc (MSG_NOTE, vect_location,
3223 "Splitting SLP group at stmt %u\n", i);
3224 stmt_vec_info rest = vect_split_slp_store_group (stmt_info,
3225 group1_size);
3226 bool res = vect_analyze_slp_instance (vinfo, bst_map, stmt_info,
3227 kind, max_tree_size,
3228 limit);
3229 /* Split the rest at the failure point and possibly
3230 re-analyze the remaining matching part if it has
3231 at least two lanes. */
3232 if (group1_size < i
3233 && (i + 1 < group_size
3234 || i - group1_size > 1))
3236 stmt_vec_info rest2 = rest;
3237 rest = vect_split_slp_store_group (rest, i - group1_size);
3238 if (i - group1_size > 1)
3239 res |= vect_analyze_slp_instance (vinfo, bst_map, rest2,
3240 kind, max_tree_size,
3241 limit);
3243 /* Re-analyze the non-matching tail if it has at least
3244 two lanes. */
3245 if (i + 1 < group_size)
3246 res |= vect_analyze_slp_instance (vinfo, bst_map,
3247 rest, kind, max_tree_size,
3248 limit);
3249 return res;
3253 /* For loop vectorization split into arbitrary pieces of size > 1. */
3254 if (is_a <loop_vec_info> (vinfo)
3255 && (i > 1 && i < group_size)
3256 && !vect_slp_prefer_store_lanes_p (vinfo, stmt_info, group_size, i))
3258 unsigned group1_size = i;
3260 if (dump_enabled_p ())
3261 dump_printf_loc (MSG_NOTE, vect_location,
3262 "Splitting SLP group at stmt %u\n", i);
3264 stmt_vec_info rest = vect_split_slp_store_group (stmt_info,
3265 group1_size);
3266 /* Loop vectorization cannot handle gaps in stores, make sure
3267 the split group appears as strided. */
3268 STMT_VINFO_STRIDED_P (rest) = 1;
3269 DR_GROUP_GAP (rest) = 0;
3270 STMT_VINFO_STRIDED_P (stmt_info) = 1;
3271 DR_GROUP_GAP (stmt_info) = 0;
3273 bool res = vect_analyze_slp_instance (vinfo, bst_map, stmt_info,
3274 kind, max_tree_size, limit);
3275 if (i + 1 < group_size)
3276 res |= vect_analyze_slp_instance (vinfo, bst_map,
3277 rest, kind, max_tree_size, limit);
3279 return res;
3282 /* Even though the first vector did not all match, we might be able to SLP
3283 (some) of the remainder. FORNOW ignore this possibility. */
3286 /* Failed to SLP. */
3287 if (dump_enabled_p ())
3288 dump_printf_loc (MSG_NOTE, vect_location, "SLP discovery failed\n");
3289 return false;
3293 /* Analyze an SLP instance starting from a group of grouped stores. Call
3294 vect_build_slp_tree to build a tree of packed stmts if possible.
3295 Return FALSE if it's impossible to SLP any stmt in the loop. */
3297 static bool
3298 vect_analyze_slp_instance (vec_info *vinfo,
3299 scalar_stmts_to_slp_tree_map_t *bst_map,
3300 stmt_vec_info stmt_info,
3301 slp_instance_kind kind,
3302 unsigned max_tree_size, unsigned *limit)
3304 unsigned int i;
3305 vec<stmt_vec_info> scalar_stmts;
3307 if (is_a <bb_vec_info> (vinfo))
3308 vect_location = stmt_info->stmt;
3310 stmt_vec_info next_info = stmt_info;
3311 if (kind == slp_inst_kind_store)
3313 /* Collect the stores and store them in scalar_stmts. */
3314 scalar_stmts.create (DR_GROUP_SIZE (stmt_info));
3315 while (next_info)
3317 scalar_stmts.quick_push (vect_stmt_to_vectorize (next_info));
3318 next_info = DR_GROUP_NEXT_ELEMENT (next_info);
3321 else if (kind == slp_inst_kind_reduc_chain)
3323 /* Collect the reduction stmts and store them in scalar_stmts. */
3324 scalar_stmts.create (REDUC_GROUP_SIZE (stmt_info));
3325 while (next_info)
3327 scalar_stmts.quick_push (vect_stmt_to_vectorize (next_info));
3328 next_info = REDUC_GROUP_NEXT_ELEMENT (next_info);
3330 /* Mark the first element of the reduction chain as reduction to properly
3331 transform the node. In the reduction analysis phase only the last
3332 element of the chain is marked as reduction. */
3333 STMT_VINFO_DEF_TYPE (stmt_info)
3334 = STMT_VINFO_DEF_TYPE (scalar_stmts.last ());
3335 STMT_VINFO_REDUC_DEF (vect_orig_stmt (stmt_info))
3336 = STMT_VINFO_REDUC_DEF (vect_orig_stmt (scalar_stmts.last ()));
3338 else if (kind == slp_inst_kind_ctor)
3340 tree rhs = gimple_assign_rhs1 (stmt_info->stmt);
3341 tree val;
3342 scalar_stmts.create (CONSTRUCTOR_NELTS (rhs));
3343 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), i, val)
3345 stmt_vec_info def_info = vinfo->lookup_def (val);
3346 def_info = vect_stmt_to_vectorize (def_info);
3347 scalar_stmts.quick_push (def_info);
3349 if (dump_enabled_p ())
3350 dump_printf_loc (MSG_NOTE, vect_location,
3351 "Analyzing vectorizable constructor: %G\n",
3352 stmt_info->stmt);
3354 else if (kind == slp_inst_kind_reduc_group)
3356 /* Collect reduction statements. */
3357 const vec<stmt_vec_info> &reductions
3358 = as_a <loop_vec_info> (vinfo)->reductions;
3359 scalar_stmts.create (reductions.length ());
3360 for (i = 0; reductions.iterate (i, &next_info); i++)
3361 if (STMT_VINFO_RELEVANT_P (next_info)
3362 || STMT_VINFO_LIVE_P (next_info))
3363 scalar_stmts.quick_push (next_info);
3364 /* If less than two were relevant/live there's nothing to SLP. */
3365 if (scalar_stmts.length () < 2)
3366 return false;
3368 else
3369 gcc_unreachable ();
3371 vec<stmt_vec_info> roots = vNULL;
3372 if (kind == slp_inst_kind_ctor)
3374 roots.create (1);
3375 roots.quick_push (stmt_info);
3377 /* Build the tree for the SLP instance. */
3378 bool res = vect_build_slp_instance (vinfo, kind, scalar_stmts,
3379 roots,
3380 max_tree_size, limit, bst_map,
3381 kind == slp_inst_kind_store
3382 ? stmt_info : NULL);
3383 if (!res)
3384 roots.release ();
3386 /* ??? If this is slp_inst_kind_store and the above succeeded here's
3387 where we should do store group splitting. */
3389 return res;
3392 /* Check if there are stmts in the loop can be vectorized using SLP. Build SLP
3393 trees of packed scalar stmts if SLP is possible. */
3395 opt_result
3396 vect_analyze_slp (vec_info *vinfo, unsigned max_tree_size)
3398 unsigned int i;
3399 stmt_vec_info first_element;
3400 slp_instance instance;
3402 DUMP_VECT_SCOPE ("vect_analyze_slp");
3404 unsigned limit = max_tree_size;
3406 scalar_stmts_to_slp_tree_map_t *bst_map
3407 = new scalar_stmts_to_slp_tree_map_t ();
3409 /* Find SLP sequences starting from groups of grouped stores. */
3410 FOR_EACH_VEC_ELT (vinfo->grouped_stores, i, first_element)
3411 vect_analyze_slp_instance (vinfo, bst_map, first_element,
3412 STMT_VINFO_GROUPED_ACCESS (first_element)
3413 ? slp_inst_kind_store : slp_inst_kind_ctor,
3414 max_tree_size, &limit);
3416 if (bb_vec_info bb_vinfo = dyn_cast <bb_vec_info> (vinfo))
3418 for (unsigned i = 0; i < bb_vinfo->roots.length (); ++i)
3420 vect_location = bb_vinfo->roots[i].roots[0]->stmt;
3421 if (vect_build_slp_instance (bb_vinfo, bb_vinfo->roots[i].kind,
3422 bb_vinfo->roots[i].stmts,
3423 bb_vinfo->roots[i].roots,
3424 max_tree_size, &limit, bst_map, NULL))
3426 bb_vinfo->roots[i].stmts = vNULL;
3427 bb_vinfo->roots[i].roots = vNULL;
3432 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
3434 /* Find SLP sequences starting from reduction chains. */
3435 FOR_EACH_VEC_ELT (loop_vinfo->reduction_chains, i, first_element)
3436 if (! STMT_VINFO_RELEVANT_P (first_element)
3437 && ! STMT_VINFO_LIVE_P (first_element))
3439 else if (! vect_analyze_slp_instance (vinfo, bst_map, first_element,
3440 slp_inst_kind_reduc_chain,
3441 max_tree_size, &limit))
3443 /* Dissolve reduction chain group. */
3444 stmt_vec_info vinfo = first_element;
3445 stmt_vec_info last = NULL;
3446 while (vinfo)
3448 stmt_vec_info next = REDUC_GROUP_NEXT_ELEMENT (vinfo);
3449 REDUC_GROUP_FIRST_ELEMENT (vinfo) = NULL;
3450 REDUC_GROUP_NEXT_ELEMENT (vinfo) = NULL;
3451 last = vinfo;
3452 vinfo = next;
3454 STMT_VINFO_DEF_TYPE (first_element) = vect_internal_def;
3455 /* It can be still vectorized as part of an SLP reduction. */
3456 loop_vinfo->reductions.safe_push (last);
3459 /* Find SLP sequences starting from groups of reductions. */
3460 if (loop_vinfo->reductions.length () > 1)
3461 vect_analyze_slp_instance (vinfo, bst_map, loop_vinfo->reductions[0],
3462 slp_inst_kind_reduc_group, max_tree_size,
3463 &limit);
3466 hash_set<slp_tree> visited_patterns;
3467 slp_tree_to_load_perm_map_t perm_cache;
3469 /* See if any patterns can be found in the SLP tree. */
3470 bool pattern_found = false;
3471 FOR_EACH_VEC_ELT (LOOP_VINFO_SLP_INSTANCES (vinfo), i, instance)
3472 pattern_found |= vect_match_slp_patterns (instance, vinfo,
3473 &visited_patterns, &perm_cache);
3475 /* If any were found optimize permutations of loads. */
3476 if (pattern_found)
3478 hash_map<slp_tree, slp_tree> load_map;
3479 FOR_EACH_VEC_ELT (LOOP_VINFO_SLP_INSTANCES (vinfo), i, instance)
3481 slp_tree root = SLP_INSTANCE_TREE (instance);
3482 optimize_load_redistribution (bst_map, vinfo, SLP_TREE_LANES (root),
3483 &load_map, root);
3489 /* The map keeps a reference on SLP nodes built, release that. */
3490 for (scalar_stmts_to_slp_tree_map_t::iterator it = bst_map->begin ();
3491 it != bst_map->end (); ++it)
3492 if ((*it).second)
3493 vect_free_slp_tree ((*it).second);
3494 delete bst_map;
3496 if (pattern_found && dump_enabled_p ())
3498 dump_printf_loc (MSG_NOTE, vect_location,
3499 "Pattern matched SLP tree\n");
3500 hash_set<slp_tree> visited;
3501 FOR_EACH_VEC_ELT (LOOP_VINFO_SLP_INSTANCES (vinfo), i, instance)
3502 vect_print_slp_graph (MSG_NOTE, vect_location,
3503 SLP_INSTANCE_TREE (instance), visited);
3506 return opt_result::success ();
3509 struct slpg_vertex
3511 slpg_vertex (slp_tree node_)
3512 : node (node_), perm_in (-1), perm_out (-1) {}
3514 int get_perm_materialized () const
3515 { return perm_in != perm_out ? perm_in : 0; }
3517 slp_tree node;
3518 /* The common permutation on the incoming lanes (towards SLP children). */
3519 int perm_in;
3520 /* The permutation on the outgoing lanes (towards SLP parents). When
3521 the node is a materialization point for a permute this differs
3522 from perm_in (and is then usually zero). Materialization happens
3523 on the input side. */
3524 int perm_out;
3527 /* Fill the vertices and leafs vector with all nodes in the SLP graph. */
3529 static void
3530 vect_slp_build_vertices (hash_set<slp_tree> &visited, slp_tree node,
3531 vec<slpg_vertex> &vertices, vec<int> &leafs)
3533 unsigned i;
3534 slp_tree child;
3536 if (visited.add (node))
3537 return;
3539 node->vertex = vertices.length ();
3540 vertices.safe_push (slpg_vertex (node));
3542 bool leaf = true;
3543 bool force_leaf = false;
3544 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
3545 if (child)
3547 leaf = false;
3548 vect_slp_build_vertices (visited, child, vertices, leafs);
3550 else
3551 force_leaf = true;
3552 /* Since SLP discovery works along use-def edges all cycles have an
3553 entry - but there's the exception of cycles where we do not handle
3554 the entry explicitely (but with a NULL SLP node), like some reductions
3555 and inductions. Force those SLP PHIs to act as leafs to make them
3556 backwards reachable. */
3557 if (leaf || force_leaf)
3558 leafs.safe_push (node->vertex);
3561 /* Fill the vertices and leafs vector with all nodes in the SLP graph. */
3563 static void
3564 vect_slp_build_vertices (vec_info *info, vec<slpg_vertex> &vertices,
3565 vec<int> &leafs)
3567 hash_set<slp_tree> visited;
3568 unsigned i;
3569 slp_instance instance;
3570 FOR_EACH_VEC_ELT (info->slp_instances, i, instance)
3571 vect_slp_build_vertices (visited, SLP_INSTANCE_TREE (instance), vertices,
3572 leafs);
3575 /* Apply (reverse) bijectite PERM to VEC. */
3577 template <class T>
3578 static void
3579 vect_slp_permute (vec<unsigned> perm,
3580 vec<T> &vec, bool reverse)
3582 auto_vec<T, 64> saved;
3583 saved.create (vec.length ());
3584 for (unsigned i = 0; i < vec.length (); ++i)
3585 saved.quick_push (vec[i]);
3587 if (reverse)
3589 for (unsigned i = 0; i < vec.length (); ++i)
3590 vec[perm[i]] = saved[i];
3591 for (unsigned i = 0; i < vec.length (); ++i)
3592 gcc_assert (vec[perm[i]] == saved[i]);
3594 else
3596 for (unsigned i = 0; i < vec.length (); ++i)
3597 vec[i] = saved[perm[i]];
3598 for (unsigned i = 0; i < vec.length (); ++i)
3599 gcc_assert (vec[i] == saved[perm[i]]);
3603 /* Return whether permutations PERM_A and PERM_B as recorded in the
3604 PERMS vector are equal. */
3606 static bool
3607 vect_slp_perms_eq (const vec<vec<unsigned> > &perms,
3608 int perm_a, int perm_b)
3610 return (perm_a == perm_b
3611 || (perm_a != -1 && perm_b != -1
3612 && perms[perm_a].length () == perms[perm_b].length ()
3613 && memcmp (&perms[perm_a][0], &perms[perm_b][0],
3614 sizeof (unsigned) * perms[perm_a].length ()) == 0));
3617 /* Optimize the SLP graph of VINFO. */
3619 void
3620 vect_optimize_slp (vec_info *vinfo)
3622 if (vinfo->slp_instances.is_empty ())
3623 return;
3625 slp_tree node;
3626 unsigned i;
3627 auto_vec<slpg_vertex> vertices;
3628 auto_vec<int> leafs;
3629 vect_slp_build_vertices (vinfo, vertices, leafs);
3631 struct graph *slpg = new_graph (vertices.length ());
3632 for (slpg_vertex &v : vertices)
3633 for (slp_tree child : SLP_TREE_CHILDREN (v.node))
3634 if (child)
3635 add_edge (slpg, v.node->vertex, child->vertex);
3637 /* Compute (reverse) postorder on the inverted graph. */
3638 auto_vec<int> ipo;
3639 graphds_dfs (slpg, &leafs[0], leafs.length (), &ipo, false, NULL, NULL);
3641 auto_vec<vec<unsigned> > perms;
3642 perms.safe_push (vNULL); /* zero is no permute */
3644 /* Produce initial permutations. */
3645 for (i = 0; i < leafs.length (); ++i)
3647 int idx = leafs[i];
3648 slp_tree node = vertices[idx].node;
3650 /* Handle externals and constants optimistically throughout the
3651 iteration. But treat existing vectors as fixed since we
3652 do not handle permuting them below. */
3653 if ((SLP_TREE_DEF_TYPE (node) == vect_external_def
3654 && !SLP_TREE_VEC_DEFS (node).exists ())
3655 || SLP_TREE_DEF_TYPE (node) == vect_constant_def)
3656 continue;
3658 /* Leafs do not change across iterations. Note leafs also double
3659 as entries to the reverse graph. */
3660 if (!slpg->vertices[idx].succ)
3662 vertices[idx].perm_in = 0;
3663 vertices[idx].perm_out = 0;
3666 /* Loads are the only thing generating permutes. */
3667 if (!SLP_TREE_LOAD_PERMUTATION (node).exists ())
3668 continue;
3670 /* If splitting out a SLP_TREE_LANE_PERMUTATION can make the
3671 node unpermuted, record this permute. */
3672 stmt_vec_info dr_stmt = SLP_TREE_REPRESENTATIVE (node);
3673 if (!STMT_VINFO_GROUPED_ACCESS (dr_stmt))
3674 continue;
3675 dr_stmt = DR_GROUP_FIRST_ELEMENT (dr_stmt);
3676 unsigned imin = DR_GROUP_SIZE (dr_stmt) + 1, imax = 0;
3677 bool any_permute = false;
3678 for (unsigned j = 0; j < SLP_TREE_LANES (node); ++j)
3680 unsigned idx = SLP_TREE_LOAD_PERMUTATION (node)[j];
3681 imin = MIN (imin, idx);
3682 imax = MAX (imax, idx);
3683 if (idx - SLP_TREE_LOAD_PERMUTATION (node)[0] != j)
3684 any_permute = true;
3686 /* If there's no permute no need to split one out. */
3687 if (!any_permute)
3688 continue;
3689 /* If the span doesn't match we'd disrupt VF computation, avoid
3690 that for now. */
3691 if (imax - imin + 1 != SLP_TREE_LANES (node))
3692 continue;
3694 /* For now only handle true permutes, like
3695 vect_attempt_slp_rearrange_stmts did. This allows us to be lazy
3696 when permuting constants and invariants keeping the permute
3697 bijective. */
3698 auto_sbitmap load_index (SLP_TREE_LANES (node));
3699 bitmap_clear (load_index);
3700 for (unsigned j = 0; j < SLP_TREE_LANES (node); ++j)
3701 bitmap_set_bit (load_index, SLP_TREE_LOAD_PERMUTATION (node)[j] - imin);
3702 unsigned j;
3703 for (j = 0; j < SLP_TREE_LANES (node); ++j)
3704 if (!bitmap_bit_p (load_index, j))
3705 break;
3706 if (j != SLP_TREE_LANES (node))
3707 continue;
3709 vec<unsigned> perm = vNULL;
3710 perm.safe_grow (SLP_TREE_LANES (node), true);
3711 for (unsigned j = 0; j < SLP_TREE_LANES (node); ++j)
3712 perm[j] = SLP_TREE_LOAD_PERMUTATION (node)[j] - imin;
3713 perms.safe_push (perm);
3714 vertices[idx].perm_in = perms.length () - 1;
3715 vertices[idx].perm_out = perms.length () - 1;
3718 /* In addition to the above we have to mark outgoing permutes facing
3719 non-reduction graph entries that are not represented as to be
3720 materialized. */
3721 for (slp_instance instance : vinfo->slp_instances)
3722 if (SLP_INSTANCE_KIND (instance) == slp_inst_kind_ctor)
3724 /* Just setting perm_out isn't enough for the propagation to
3725 pick this up. */
3726 vertices[SLP_INSTANCE_TREE (instance)->vertex].perm_in = 0;
3727 vertices[SLP_INSTANCE_TREE (instance)->vertex].perm_out = 0;
3730 /* Propagate permutes along the graph and compute materialization points. */
3731 bool changed;
3732 bool do_materialization = false;
3733 unsigned iteration = 0;
3736 changed = false;
3737 ++iteration;
3739 if (dump_enabled_p ())
3740 dump_printf_loc (MSG_NOTE, vect_location,
3741 "SLP optimize iteration %d\n", iteration);
3743 for (i = vertices.length (); i > 0 ; --i)
3745 int idx = ipo[i-1];
3746 slp_tree node = vertices[idx].node;
3748 /* Handle externals and constants optimistically throughout the
3749 iteration. */
3750 if (SLP_TREE_DEF_TYPE (node) == vect_external_def
3751 || SLP_TREE_DEF_TYPE (node) == vect_constant_def)
3752 continue;
3754 /* We still eventually have failed backedge SLP nodes in the
3755 graph, those are only cancelled when analyzing operations.
3756 Simply treat them as transparent ops, propagating permutes
3757 through them. */
3758 if (SLP_TREE_DEF_TYPE (node) == vect_internal_def)
3760 /* We do not handle stores with a permutation, so all
3761 incoming permutes must have been materialized. */
3762 stmt_vec_info rep = SLP_TREE_REPRESENTATIVE (node);
3763 if (STMT_VINFO_DATA_REF (rep)
3764 && DR_IS_WRITE (STMT_VINFO_DATA_REF (rep)))
3766 /* ??? We're forcing materialization in place
3767 of the child here, we'd need special handling
3768 in materialization to leave perm_in -1 here. */
3769 vertices[idx].perm_in = 0;
3770 vertices[idx].perm_out = 0;
3772 /* We cannot move a permute across an operation that is
3773 not independent on lanes. Note this is an explicit
3774 negative list since that's much shorter than the respective
3775 positive one but it's critical to keep maintaining it. */
3776 if (is_gimple_call (STMT_VINFO_STMT (rep)))
3777 switch (gimple_call_combined_fn (STMT_VINFO_STMT (rep)))
3779 case CFN_COMPLEX_ADD_ROT90:
3780 case CFN_COMPLEX_ADD_ROT270:
3781 case CFN_COMPLEX_MUL:
3782 case CFN_COMPLEX_MUL_CONJ:
3783 case CFN_VEC_ADDSUB:
3784 case CFN_VEC_FMADDSUB:
3785 case CFN_VEC_FMSUBADD:
3786 vertices[idx].perm_in = 0;
3787 vertices[idx].perm_out = 0;
3788 default:;
3792 if (!slpg->vertices[idx].succ)
3793 /* Pick up pre-computed leaf values. */
3795 else
3797 bool any_succ_perm_out_m1 = false;
3798 int perm_in = vertices[idx].perm_in;
3799 for (graph_edge *succ = slpg->vertices[idx].succ;
3800 succ; succ = succ->succ_next)
3802 int succ_idx = succ->dest;
3803 int succ_perm = vertices[succ_idx].perm_out;
3804 /* Handle unvisited (and constant) nodes optimistically. */
3805 /* ??? But for constants once we want to handle
3806 non-bijective permutes we have to verify the permute,
3807 when unifying lanes, will not unify different constants.
3808 For example see gcc.dg/vect/bb-slp-14.c for a case
3809 that would break. */
3810 if (succ_perm == -1)
3812 /* When we handled a non-leaf optimistically, note
3813 that so we can adjust its outgoing permute below. */
3814 slp_tree succ_node = vertices[succ_idx].node;
3815 if (SLP_TREE_DEF_TYPE (succ_node) != vect_external_def
3816 && SLP_TREE_DEF_TYPE (succ_node) != vect_constant_def)
3817 any_succ_perm_out_m1 = true;
3818 continue;
3820 if (perm_in == -1)
3821 perm_in = succ_perm;
3822 else if (succ_perm == 0
3823 || !vect_slp_perms_eq (perms, perm_in, succ_perm))
3825 perm_in = 0;
3826 break;
3830 /* Adjust any incoming permutes we treated optimistically. */
3831 if (perm_in != -1 && any_succ_perm_out_m1)
3833 for (graph_edge *succ = slpg->vertices[idx].succ;
3834 succ; succ = succ->succ_next)
3836 slp_tree succ_node = vertices[succ->dest].node;
3837 if (vertices[succ->dest].perm_out == -1
3838 && SLP_TREE_DEF_TYPE (succ_node) != vect_external_def
3839 && SLP_TREE_DEF_TYPE (succ_node) != vect_constant_def)
3841 vertices[succ->dest].perm_out = perm_in;
3842 /* And ensure this propagates. */
3843 if (vertices[succ->dest].perm_in == -1)
3844 vertices[succ->dest].perm_in = perm_in;
3847 changed = true;
3850 if (!vect_slp_perms_eq (perms, perm_in,
3851 vertices[idx].perm_in))
3853 /* Make sure we eventually converge. */
3854 gcc_checking_assert (vertices[idx].perm_in == -1
3855 || perm_in == 0);
3856 vertices[idx].perm_in = perm_in;
3858 /* While we can handle VEC_PERM nodes as transparent
3859 pass-through they can be a cheap materialization
3860 point as well. In addition they can act as source
3861 of a random permutation as well.
3862 The following ensures that former materialization
3863 points that now have zero incoming permutes no
3864 longer appear as such and that former "any" permutes
3865 get pass-through. We keep VEC_PERM nodes optimistic
3866 as "any" outgoing permute though. */
3867 if (vertices[idx].perm_out != 0
3868 && SLP_TREE_CODE (node) != VEC_PERM_EXPR)
3869 vertices[idx].perm_out = perm_in;
3870 changed = true;
3874 /* Elide pruning at materialization points in the first
3875 iteration phase. */
3876 if (!do_materialization)
3877 continue;
3879 int perm = vertices[idx].perm_out;
3880 if (perm == 0 || perm == -1)
3881 continue;
3883 /* Decide on permute materialization. Look whether there's
3884 a use (pred) edge that is permuted differently than us.
3885 In that case mark ourselves so the permutation is applied. */
3886 bool all_preds_permuted = slpg->vertices[idx].pred != NULL;
3887 if (all_preds_permuted)
3888 for (graph_edge *pred = slpg->vertices[idx].pred;
3889 pred; pred = pred->pred_next)
3891 int pred_perm = vertices[pred->src].perm_in;
3892 gcc_checking_assert (pred_perm != -1);
3893 if (!vect_slp_perms_eq (perms, perm, pred_perm))
3895 all_preds_permuted = false;
3896 break;
3899 if (!all_preds_permuted)
3901 vertices[idx].perm_out = 0;
3902 changed = true;
3906 /* If the initial propagation converged, switch on materialization
3907 and re-propagate. */
3908 if (!changed && !do_materialization)
3910 do_materialization = true;
3911 changed = true;
3914 while (changed);
3915 statistics_histogram_event (cfun, "SLP optimize perm iterations", iteration);
3917 /* Materialize. */
3918 for (i = 0; i < vertices.length (); ++i)
3920 int perm_in = vertices[i].perm_in;
3921 slp_tree node = vertices[i].node;
3923 /* First permute invariant/external original successors, we handle
3924 those optimistically during propagation and duplicate them if
3925 they are used with different permutations. */
3926 unsigned j;
3927 slp_tree child;
3928 if (perm_in > 0)
3929 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), j, child)
3931 if (!child
3932 || (SLP_TREE_DEF_TYPE (child) != vect_constant_def
3933 && SLP_TREE_DEF_TYPE (child) != vect_external_def))
3934 continue;
3936 /* If the vector is uniform there's nothing to do. */
3937 if (vect_slp_tree_uniform_p (child))
3938 continue;
3940 /* We can end up sharing some externals via two_operator
3941 handling. Be prepared to unshare those. */
3942 if (child->refcnt != 1)
3944 gcc_assert (slpg->vertices[child->vertex].pred->pred_next);
3945 SLP_TREE_CHILDREN (node)[j] = child
3946 = vect_create_new_slp_node
3947 (SLP_TREE_SCALAR_OPS (child).copy ());
3949 vect_slp_permute (perms[perm_in],
3950 SLP_TREE_SCALAR_OPS (child), true);
3953 if (SLP_TREE_CODE (node) == VEC_PERM_EXPR)
3955 /* Apply the common permutes to the input vectors. */
3956 if (perm_in > 0)
3958 /* If the node is already a permute node we can apply
3959 the permutation to the lane selection, effectively
3960 materializing it on the incoming vectors. */
3961 if (dump_enabled_p ())
3962 dump_printf_loc (MSG_NOTE, vect_location,
3963 "simplifying permute node %p\n",
3964 node);
3965 for (unsigned k = 0;
3966 k < SLP_TREE_LANE_PERMUTATION (node).length (); ++k)
3967 SLP_TREE_LANE_PERMUTATION (node)[k].second
3968 = perms[perm_in][SLP_TREE_LANE_PERMUTATION (node)[k].second];
3970 /* Apply the anticipated output permute to the permute and
3971 stmt vectors. */
3972 int perm_out = vertices[i].perm_out;
3973 if (perm_out > 0)
3975 vect_slp_permute (perms[perm_out],
3976 SLP_TREE_SCALAR_STMTS (node), true);
3977 vect_slp_permute (perms[perm_out],
3978 SLP_TREE_LANE_PERMUTATION (node), true);
3981 else if (vertices[i].get_perm_materialized () != 0)
3983 if (SLP_TREE_LOAD_PERMUTATION (node).exists ())
3984 /* For loads simply drop the permutation, the load permutation
3985 already performs the desired permutation. */
3987 else if (SLP_TREE_LANE_PERMUTATION (node).exists ())
3988 gcc_unreachable ();
3989 else
3991 if (dump_enabled_p ())
3992 dump_printf_loc (MSG_NOTE, vect_location,
3993 "inserting permute node in place of %p\n",
3994 node);
3996 /* Make a copy of NODE and in-place change it to a
3997 VEC_PERM node to permute the lanes of the copy. */
3998 slp_tree copy = new _slp_tree;
3999 SLP_TREE_CHILDREN (copy) = SLP_TREE_CHILDREN (node);
4000 SLP_TREE_CHILDREN (node) = vNULL;
4001 SLP_TREE_SCALAR_STMTS (copy)
4002 = SLP_TREE_SCALAR_STMTS (node).copy ();
4003 vect_slp_permute (perms[perm_in],
4004 SLP_TREE_SCALAR_STMTS (copy), true);
4005 gcc_assert (!SLP_TREE_SCALAR_OPS (node).exists ());
4006 SLP_TREE_REPRESENTATIVE (copy) = SLP_TREE_REPRESENTATIVE (node);
4007 gcc_assert (!SLP_TREE_LOAD_PERMUTATION (node).exists ());
4008 SLP_TREE_LANE_PERMUTATION (copy)
4009 = SLP_TREE_LANE_PERMUTATION (node);
4010 SLP_TREE_LANE_PERMUTATION (node) = vNULL;
4011 SLP_TREE_VECTYPE (copy) = SLP_TREE_VECTYPE (node);
4012 copy->refcnt = 1;
4013 copy->max_nunits = node->max_nunits;
4014 SLP_TREE_DEF_TYPE (copy) = SLP_TREE_DEF_TYPE (node);
4015 SLP_TREE_LANES (copy) = SLP_TREE_LANES (node);
4016 SLP_TREE_CODE (copy) = SLP_TREE_CODE (node);
4018 /* Now turn NODE into a VEC_PERM. */
4019 SLP_TREE_CHILDREN (node).safe_push (copy);
4020 SLP_TREE_LANE_PERMUTATION (node).create (SLP_TREE_LANES (node));
4021 for (unsigned j = 0; j < SLP_TREE_LANES (node); ++j)
4022 SLP_TREE_LANE_PERMUTATION (node)
4023 .quick_push (std::make_pair (0, perms[perm_in][j]));
4024 SLP_TREE_CODE (node) = VEC_PERM_EXPR;
4027 else if (perm_in > 0) /* perm_in == perm_out */
4029 /* Apply the reverse permutation to our stmts. */
4030 vect_slp_permute (perms[perm_in],
4031 SLP_TREE_SCALAR_STMTS (node), true);
4032 /* And to the lane/load permutation, which we can simply
4033 make regular by design. */
4034 if (SLP_TREE_LOAD_PERMUTATION (node).exists ())
4036 gcc_assert (!SLP_TREE_LANE_PERMUTATION (node).exists ());
4037 /* ??? When we handle non-bijective permutes the idea
4038 is that we can force the load-permutation to be
4039 { min, min + 1, min + 2, ... max }. But then the
4040 scalar defs might no longer match the lane content
4041 which means wrong-code with live lane vectorization.
4042 So we possibly have to have NULL entries for those. */
4043 vect_slp_permute (perms[perm_in],
4044 SLP_TREE_LOAD_PERMUTATION (node), true);
4046 else if (SLP_TREE_LANE_PERMUTATION (node).exists ())
4047 gcc_unreachable ();
4051 /* Elide any permutations at BB reduction roots. */
4052 if (is_a <bb_vec_info> (vinfo))
4054 for (slp_instance instance : vinfo->slp_instances)
4056 if (SLP_INSTANCE_KIND (instance) != slp_inst_kind_bb_reduc)
4057 continue;
4058 slp_tree old = SLP_INSTANCE_TREE (instance);
4059 if (SLP_TREE_CODE (old) == VEC_PERM_EXPR
4060 && SLP_TREE_CHILDREN (old).length () == 1)
4062 slp_tree child = SLP_TREE_CHILDREN (old)[0];
4063 if (SLP_TREE_DEF_TYPE (child) == vect_external_def)
4065 /* Preserve the special VEC_PERM we use to shield existing
4066 vector defs from the rest. But make it a no-op. */
4067 unsigned i = 0;
4068 for (std::pair<unsigned, unsigned> &p
4069 : SLP_TREE_LANE_PERMUTATION (old))
4070 p.second = i++;
4072 else
4074 SLP_INSTANCE_TREE (instance) = child;
4075 SLP_TREE_REF_COUNT (child)++;
4076 vect_free_slp_tree (old);
4079 else if (SLP_TREE_LOAD_PERMUTATION (old).exists ()
4080 && SLP_TREE_REF_COUNT (old) == 1
4081 && vertices[old->vertex].get_perm_materialized () != 0)
4083 /* ??? For loads the situation is more complex since
4084 we can't modify the permute in place in case the
4085 node is used multiple times. In fact for loads this
4086 should be somehow handled in the propagation engine. */
4087 /* Apply the reverse permutation to our stmts. */
4088 int perm = vertices[old->vertex].get_perm_materialized ();
4089 vect_slp_permute (perms[perm],
4090 SLP_TREE_SCALAR_STMTS (old), true);
4091 vect_slp_permute (perms[perm],
4092 SLP_TREE_LOAD_PERMUTATION (old), true);
4097 /* Free the perms vector used for propagation. */
4098 while (!perms.is_empty ())
4099 perms.pop ().release ();
4100 free_graph (slpg);
4103 /* Now elide load permutations that are not necessary. */
4104 for (i = 0; i < leafs.length (); ++i)
4106 node = vertices[leafs[i]].node;
4107 if (!SLP_TREE_LOAD_PERMUTATION (node).exists ())
4108 continue;
4110 /* In basic block vectorization we allow any subchain of an interleaving
4111 chain.
4112 FORNOW: not in loop SLP because of realignment complications. */
4113 if (is_a <bb_vec_info> (vinfo))
4115 bool subchain_p = true;
4116 stmt_vec_info next_load_info = NULL;
4117 stmt_vec_info load_info;
4118 unsigned j;
4119 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load_info)
4121 if (j != 0
4122 && (next_load_info != load_info
4123 || DR_GROUP_GAP (load_info) != 1))
4125 subchain_p = false;
4126 break;
4128 next_load_info = DR_GROUP_NEXT_ELEMENT (load_info);
4130 if (subchain_p)
4132 SLP_TREE_LOAD_PERMUTATION (node).release ();
4133 continue;
4136 else
4138 stmt_vec_info load_info;
4139 bool this_load_permuted = false;
4140 unsigned j;
4141 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load_info)
4142 if (SLP_TREE_LOAD_PERMUTATION (node)[j] != j)
4144 this_load_permuted = true;
4145 break;
4147 stmt_vec_info first_stmt_info
4148 = DR_GROUP_FIRST_ELEMENT (SLP_TREE_SCALAR_STMTS (node)[0]);
4149 if (!this_load_permuted
4150 /* The load requires permutation when unrolling exposes
4151 a gap either because the group is larger than the SLP
4152 group-size or because there is a gap between the groups. */
4153 && (known_eq (LOOP_VINFO_VECT_FACTOR
4154 (as_a <loop_vec_info> (vinfo)), 1U)
4155 || ((SLP_TREE_LANES (node) == DR_GROUP_SIZE (first_stmt_info))
4156 && DR_GROUP_GAP (first_stmt_info) == 0)))
4158 SLP_TREE_LOAD_PERMUTATION (node).release ();
4159 continue;
4165 /* Gather loads reachable from the individual SLP graph entries. */
4167 void
4168 vect_gather_slp_loads (vec_info *vinfo)
4170 unsigned i;
4171 slp_instance instance;
4172 FOR_EACH_VEC_ELT (vinfo->slp_instances, i, instance)
4174 hash_set<slp_tree> visited;
4175 vect_gather_slp_loads (SLP_INSTANCE_LOADS (instance),
4176 SLP_INSTANCE_TREE (instance), visited);
4181 /* For each possible SLP instance decide whether to SLP it and calculate overall
4182 unrolling factor needed to SLP the loop. Return TRUE if decided to SLP at
4183 least one instance. */
4185 bool
4186 vect_make_slp_decision (loop_vec_info loop_vinfo)
4188 unsigned int i;
4189 poly_uint64 unrolling_factor = 1;
4190 const vec<slp_instance> &slp_instances
4191 = LOOP_VINFO_SLP_INSTANCES (loop_vinfo);
4192 slp_instance instance;
4193 int decided_to_slp = 0;
4195 DUMP_VECT_SCOPE ("vect_make_slp_decision");
4197 FOR_EACH_VEC_ELT (slp_instances, i, instance)
4199 /* FORNOW: SLP if you can. */
4200 /* All unroll factors have the form:
4202 GET_MODE_SIZE (vinfo->vector_mode) * X
4204 for some rational X, so they must have a common multiple. */
4205 unrolling_factor
4206 = force_common_multiple (unrolling_factor,
4207 SLP_INSTANCE_UNROLLING_FACTOR (instance));
4209 /* Mark all the stmts that belong to INSTANCE as PURE_SLP stmts. Later we
4210 call vect_detect_hybrid_slp () to find stmts that need hybrid SLP and
4211 loop-based vectorization. Such stmts will be marked as HYBRID. */
4212 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance));
4213 decided_to_slp++;
4216 LOOP_VINFO_SLP_UNROLLING_FACTOR (loop_vinfo) = unrolling_factor;
4218 if (decided_to_slp && dump_enabled_p ())
4220 dump_printf_loc (MSG_NOTE, vect_location,
4221 "Decided to SLP %d instances. Unrolling factor ",
4222 decided_to_slp);
4223 dump_dec (MSG_NOTE, unrolling_factor);
4224 dump_printf (MSG_NOTE, "\n");
4227 return (decided_to_slp > 0);
4230 /* Private data for vect_detect_hybrid_slp. */
4231 struct vdhs_data
4233 loop_vec_info loop_vinfo;
4234 vec<stmt_vec_info> *worklist;
4237 /* Walker for walk_gimple_op. */
4239 static tree
4240 vect_detect_hybrid_slp (tree *tp, int *, void *data)
4242 walk_stmt_info *wi = (walk_stmt_info *)data;
4243 vdhs_data *dat = (vdhs_data *)wi->info;
4245 if (wi->is_lhs)
4246 return NULL_TREE;
4248 stmt_vec_info def_stmt_info = dat->loop_vinfo->lookup_def (*tp);
4249 if (!def_stmt_info)
4250 return NULL_TREE;
4251 def_stmt_info = vect_stmt_to_vectorize (def_stmt_info);
4252 if (PURE_SLP_STMT (def_stmt_info))
4254 if (dump_enabled_p ())
4255 dump_printf_loc (MSG_NOTE, vect_location, "marking hybrid: %G",
4256 def_stmt_info->stmt);
4257 STMT_SLP_TYPE (def_stmt_info) = hybrid;
4258 dat->worklist->safe_push (def_stmt_info);
4261 return NULL_TREE;
4264 /* Look if STMT_INFO is consumed by SLP indirectly and mark it pure_slp
4265 if so, otherwise pushing it to WORKLIST. */
4267 static void
4268 maybe_push_to_hybrid_worklist (vec_info *vinfo,
4269 vec<stmt_vec_info> &worklist,
4270 stmt_vec_info stmt_info)
4272 if (dump_enabled_p ())
4273 dump_printf_loc (MSG_NOTE, vect_location,
4274 "Processing hybrid candidate : %G", stmt_info->stmt);
4275 stmt_vec_info orig_info = vect_orig_stmt (stmt_info);
4276 imm_use_iterator iter2;
4277 ssa_op_iter iter1;
4278 use_operand_p use_p;
4279 def_operand_p def_p;
4280 bool any_def = false;
4281 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_info->stmt, iter1, SSA_OP_DEF)
4283 any_def = true;
4284 FOR_EACH_IMM_USE_FAST (use_p, iter2, DEF_FROM_PTR (def_p))
4286 if (is_gimple_debug (USE_STMT (use_p)))
4287 continue;
4288 stmt_vec_info use_info = vinfo->lookup_stmt (USE_STMT (use_p));
4289 /* An out-of loop use means this is a loop_vect sink. */
4290 if (!use_info)
4292 if (dump_enabled_p ())
4293 dump_printf_loc (MSG_NOTE, vect_location,
4294 "Found loop_vect sink: %G", stmt_info->stmt);
4295 worklist.safe_push (stmt_info);
4296 return;
4298 else if (!STMT_SLP_TYPE (vect_stmt_to_vectorize (use_info)))
4300 if (dump_enabled_p ())
4301 dump_printf_loc (MSG_NOTE, vect_location,
4302 "Found loop_vect use: %G", use_info->stmt);
4303 worklist.safe_push (stmt_info);
4304 return;
4308 /* No def means this is a loo_vect sink. */
4309 if (!any_def)
4311 if (dump_enabled_p ())
4312 dump_printf_loc (MSG_NOTE, vect_location,
4313 "Found loop_vect sink: %G", stmt_info->stmt);
4314 worklist.safe_push (stmt_info);
4315 return;
4317 if (dump_enabled_p ())
4318 dump_printf_loc (MSG_NOTE, vect_location,
4319 "Marked SLP consumed stmt pure: %G", stmt_info->stmt);
4320 STMT_SLP_TYPE (stmt_info) = pure_slp;
4323 /* Find stmts that must be both vectorized and SLPed. */
4325 void
4326 vect_detect_hybrid_slp (loop_vec_info loop_vinfo)
4328 DUMP_VECT_SCOPE ("vect_detect_hybrid_slp");
4330 /* All stmts participating in SLP are marked pure_slp, all other
4331 stmts are loop_vect.
4332 First collect all loop_vect stmts into a worklist.
4333 SLP patterns cause not all original scalar stmts to appear in
4334 SLP_TREE_SCALAR_STMTS and thus not all of them are marked pure_slp.
4335 Rectify this here and do a backward walk over the IL only considering
4336 stmts as loop_vect when they are used by a loop_vect stmt and otherwise
4337 mark them as pure_slp. */
4338 auto_vec<stmt_vec_info> worklist;
4339 for (int i = LOOP_VINFO_LOOP (loop_vinfo)->num_nodes - 1; i >= 0; --i)
4341 basic_block bb = LOOP_VINFO_BBS (loop_vinfo)[i];
4342 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
4343 gsi_next (&gsi))
4345 gphi *phi = gsi.phi ();
4346 stmt_vec_info stmt_info = loop_vinfo->lookup_stmt (phi);
4347 if (!STMT_SLP_TYPE (stmt_info) && STMT_VINFO_RELEVANT (stmt_info))
4348 maybe_push_to_hybrid_worklist (loop_vinfo,
4349 worklist, stmt_info);
4351 for (gimple_stmt_iterator gsi = gsi_last_bb (bb); !gsi_end_p (gsi);
4352 gsi_prev (&gsi))
4354 gimple *stmt = gsi_stmt (gsi);
4355 if (is_gimple_debug (stmt))
4356 continue;
4357 stmt_vec_info stmt_info = loop_vinfo->lookup_stmt (stmt);
4358 if (STMT_VINFO_IN_PATTERN_P (stmt_info))
4360 for (gimple_stmt_iterator gsi2
4361 = gsi_start (STMT_VINFO_PATTERN_DEF_SEQ (stmt_info));
4362 !gsi_end_p (gsi2); gsi_next (&gsi2))
4364 stmt_vec_info patt_info
4365 = loop_vinfo->lookup_stmt (gsi_stmt (gsi2));
4366 if (!STMT_SLP_TYPE (patt_info)
4367 && STMT_VINFO_RELEVANT (patt_info))
4368 maybe_push_to_hybrid_worklist (loop_vinfo,
4369 worklist, patt_info);
4371 stmt_info = STMT_VINFO_RELATED_STMT (stmt_info);
4373 if (!STMT_SLP_TYPE (stmt_info) && STMT_VINFO_RELEVANT (stmt_info))
4374 maybe_push_to_hybrid_worklist (loop_vinfo,
4375 worklist, stmt_info);
4379 /* Now we have a worklist of non-SLP stmts, follow use->def chains and
4380 mark any SLP vectorized stmt as hybrid.
4381 ??? We're visiting def stmts N times (once for each non-SLP and
4382 once for each hybrid-SLP use). */
4383 walk_stmt_info wi;
4384 vdhs_data dat;
4385 dat.worklist = &worklist;
4386 dat.loop_vinfo = loop_vinfo;
4387 memset (&wi, 0, sizeof (wi));
4388 wi.info = (void *)&dat;
4389 while (!worklist.is_empty ())
4391 stmt_vec_info stmt_info = worklist.pop ();
4392 /* Since SSA operands are not set up for pattern stmts we need
4393 to use walk_gimple_op. */
4394 wi.is_lhs = 0;
4395 walk_gimple_op (stmt_info->stmt, vect_detect_hybrid_slp, &wi);
4400 /* Initialize a bb_vec_info struct for the statements in BBS basic blocks. */
4402 _bb_vec_info::_bb_vec_info (vec<basic_block> _bbs, vec_info_shared *shared)
4403 : vec_info (vec_info::bb, init_cost (NULL, false), shared),
4404 bbs (_bbs),
4405 roots (vNULL)
4407 for (unsigned i = 0; i < bbs.length (); ++i)
4409 if (i != 0)
4410 for (gphi_iterator si = gsi_start_phis (bbs[i]); !gsi_end_p (si);
4411 gsi_next (&si))
4413 gphi *phi = si.phi ();
4414 gimple_set_uid (phi, 0);
4415 add_stmt (phi);
4417 for (gimple_stmt_iterator gsi = gsi_start_bb (bbs[i]);
4418 !gsi_end_p (gsi); gsi_next (&gsi))
4420 gimple *stmt = gsi_stmt (gsi);
4421 gimple_set_uid (stmt, 0);
4422 if (is_gimple_debug (stmt))
4423 continue;
4424 add_stmt (stmt);
4430 /* Free BB_VINFO struct, as well as all the stmt_vec_info structs of all the
4431 stmts in the basic block. */
4433 _bb_vec_info::~_bb_vec_info ()
4435 /* Reset region marker. */
4436 for (unsigned i = 0; i < bbs.length (); ++i)
4438 if (i != 0)
4439 for (gphi_iterator si = gsi_start_phis (bbs[i]); !gsi_end_p (si);
4440 gsi_next (&si))
4442 gphi *phi = si.phi ();
4443 gimple_set_uid (phi, -1);
4445 for (gimple_stmt_iterator gsi = gsi_start_bb (bbs[i]);
4446 !gsi_end_p (gsi); gsi_next (&gsi))
4448 gimple *stmt = gsi_stmt (gsi);
4449 gimple_set_uid (stmt, -1);
4453 for (unsigned i = 0; i < roots.length (); ++i)
4455 roots[i].stmts.release ();
4456 roots[i].roots.release ();
4458 roots.release ();
4461 /* Subroutine of vect_slp_analyze_node_operations. Handle the root of NODE,
4462 given then that child nodes have already been processed, and that
4463 their def types currently match their SLP node's def type. */
4465 static bool
4466 vect_slp_analyze_node_operations_1 (vec_info *vinfo, slp_tree node,
4467 slp_instance node_instance,
4468 stmt_vector_for_cost *cost_vec)
4470 stmt_vec_info stmt_info = SLP_TREE_REPRESENTATIVE (node);
4472 /* Calculate the number of vector statements to be created for the
4473 scalar stmts in this node. For SLP reductions it is equal to the
4474 number of vector statements in the children (which has already been
4475 calculated by the recursive call). Otherwise it is the number of
4476 scalar elements in one scalar iteration (DR_GROUP_SIZE) multiplied by
4477 VF divided by the number of elements in a vector. */
4478 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info)
4479 && REDUC_GROUP_FIRST_ELEMENT (stmt_info))
4481 for (unsigned i = 0; i < SLP_TREE_CHILDREN (node).length (); ++i)
4482 if (SLP_TREE_DEF_TYPE (SLP_TREE_CHILDREN (node)[i]) == vect_internal_def)
4484 SLP_TREE_NUMBER_OF_VEC_STMTS (node)
4485 = SLP_TREE_NUMBER_OF_VEC_STMTS (SLP_TREE_CHILDREN (node)[i]);
4486 break;
4489 else
4491 poly_uint64 vf;
4492 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
4493 vf = loop_vinfo->vectorization_factor;
4494 else
4495 vf = 1;
4496 unsigned int group_size = SLP_TREE_LANES (node);
4497 tree vectype = SLP_TREE_VECTYPE (node);
4498 SLP_TREE_NUMBER_OF_VEC_STMTS (node)
4499 = vect_get_num_vectors (vf * group_size, vectype);
4502 /* Handle purely internal nodes. */
4503 if (SLP_TREE_CODE (node) == VEC_PERM_EXPR)
4504 return vectorizable_slp_permutation (vinfo, NULL, node, cost_vec);
4506 gcc_assert (STMT_SLP_TYPE (stmt_info) != loop_vect);
4507 if (is_a <bb_vec_info> (vinfo)
4508 && !vect_update_shared_vectype (stmt_info, SLP_TREE_VECTYPE (node)))
4510 if (dump_enabled_p ())
4511 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4512 "desired vector type conflicts with earlier one "
4513 "for %G", stmt_info->stmt);
4514 return false;
4517 bool dummy;
4518 return vect_analyze_stmt (vinfo, stmt_info, &dummy,
4519 node, node_instance, cost_vec);
4522 /* Try to build NODE from scalars, returning true on success.
4523 NODE_INSTANCE is the SLP instance that contains NODE. */
4525 static bool
4526 vect_slp_convert_to_external (vec_info *vinfo, slp_tree node,
4527 slp_instance node_instance)
4529 stmt_vec_info stmt_info;
4530 unsigned int i;
4532 if (!is_a <bb_vec_info> (vinfo)
4533 || node == SLP_INSTANCE_TREE (node_instance)
4534 || !SLP_TREE_SCALAR_STMTS (node).exists ()
4535 || vect_contains_pattern_stmt_p (SLP_TREE_SCALAR_STMTS (node)))
4536 return false;
4538 if (dump_enabled_p ())
4539 dump_printf_loc (MSG_NOTE, vect_location,
4540 "Building vector operands of %p from scalars instead\n", node);
4542 /* Don't remove and free the child nodes here, since they could be
4543 referenced by other structures. The analysis and scheduling phases
4544 (need to) ignore child nodes of anything that isn't vect_internal_def. */
4545 unsigned int group_size = SLP_TREE_LANES (node);
4546 SLP_TREE_DEF_TYPE (node) = vect_external_def;
4547 SLP_TREE_SCALAR_OPS (node).safe_grow (group_size, true);
4548 SLP_TREE_LOAD_PERMUTATION (node).release ();
4549 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
4551 tree lhs = gimple_get_lhs (vect_orig_stmt (stmt_info)->stmt);
4552 SLP_TREE_SCALAR_OPS (node)[i] = lhs;
4554 return true;
4557 /* Compute the prologue cost for invariant or constant operands represented
4558 by NODE. */
4560 static void
4561 vect_prologue_cost_for_slp (slp_tree node,
4562 stmt_vector_for_cost *cost_vec)
4564 /* There's a special case of an existing vector, that costs nothing. */
4565 if (SLP_TREE_SCALAR_OPS (node).length () == 0
4566 && !SLP_TREE_VEC_DEFS (node).is_empty ())
4567 return;
4568 /* Without looking at the actual initializer a vector of
4569 constants can be implemented as load from the constant pool.
4570 When all elements are the same we can use a splat. */
4571 tree vectype = SLP_TREE_VECTYPE (node);
4572 unsigned group_size = SLP_TREE_SCALAR_OPS (node).length ();
4573 unsigned num_vects_to_check;
4574 unsigned HOST_WIDE_INT const_nunits;
4575 unsigned nelt_limit;
4576 if (TYPE_VECTOR_SUBPARTS (vectype).is_constant (&const_nunits)
4577 && ! multiple_p (const_nunits, group_size))
4579 num_vects_to_check = SLP_TREE_NUMBER_OF_VEC_STMTS (node);
4580 nelt_limit = const_nunits;
4582 else
4584 /* If either the vector has variable length or the vectors
4585 are composed of repeated whole groups we only need to
4586 cost construction once. All vectors will be the same. */
4587 num_vects_to_check = 1;
4588 nelt_limit = group_size;
4590 tree elt = NULL_TREE;
4591 unsigned nelt = 0;
4592 for (unsigned j = 0; j < num_vects_to_check * nelt_limit; ++j)
4594 unsigned si = j % group_size;
4595 if (nelt == 0)
4596 elt = SLP_TREE_SCALAR_OPS (node)[si];
4597 /* ??? We're just tracking whether all operands of a single
4598 vector initializer are the same, ideally we'd check if
4599 we emitted the same one already. */
4600 else if (elt != SLP_TREE_SCALAR_OPS (node)[si])
4601 elt = NULL_TREE;
4602 nelt++;
4603 if (nelt == nelt_limit)
4605 record_stmt_cost (cost_vec, 1,
4606 SLP_TREE_DEF_TYPE (node) == vect_external_def
4607 ? (elt ? scalar_to_vec : vec_construct)
4608 : vector_load,
4609 NULL, vectype, 0, vect_prologue);
4610 nelt = 0;
4615 /* Analyze statements contained in SLP tree NODE after recursively analyzing
4616 the subtree. NODE_INSTANCE contains NODE and VINFO contains INSTANCE.
4618 Return true if the operations are supported. */
4620 static bool
4621 vect_slp_analyze_node_operations (vec_info *vinfo, slp_tree node,
4622 slp_instance node_instance,
4623 hash_set<slp_tree> &visited_set,
4624 vec<slp_tree> &visited_vec,
4625 stmt_vector_for_cost *cost_vec)
4627 int i, j;
4628 slp_tree child;
4630 /* Assume we can code-generate all invariants. */
4631 if (!node
4632 || SLP_TREE_DEF_TYPE (node) == vect_constant_def
4633 || SLP_TREE_DEF_TYPE (node) == vect_external_def)
4634 return true;
4636 if (SLP_TREE_DEF_TYPE (node) == vect_uninitialized_def)
4638 if (dump_enabled_p ())
4639 dump_printf_loc (MSG_NOTE, vect_location,
4640 "Failed cyclic SLP reference in %p\n", node);
4641 return false;
4643 gcc_assert (SLP_TREE_DEF_TYPE (node) == vect_internal_def);
4645 /* If we already analyzed the exact same set of scalar stmts we're done.
4646 We share the generated vector stmts for those. */
4647 if (visited_set.add (node))
4648 return true;
4649 visited_vec.safe_push (node);
4651 bool res = true;
4652 unsigned visited_rec_start = visited_vec.length ();
4653 unsigned cost_vec_rec_start = cost_vec->length ();
4654 bool seen_non_constant_child = false;
4655 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
4657 res = vect_slp_analyze_node_operations (vinfo, child, node_instance,
4658 visited_set, visited_vec,
4659 cost_vec);
4660 if (!res)
4661 break;
4662 if (child && SLP_TREE_DEF_TYPE (child) != vect_constant_def)
4663 seen_non_constant_child = true;
4665 /* We're having difficulties scheduling nodes with just constant
4666 operands and no scalar stmts since we then cannot compute a stmt
4667 insertion place. */
4668 if (!seen_non_constant_child && SLP_TREE_SCALAR_STMTS (node).is_empty ())
4670 if (dump_enabled_p ())
4671 dump_printf_loc (MSG_NOTE, vect_location,
4672 "Cannot vectorize all-constant op node %p\n", node);
4673 res = false;
4676 if (res)
4677 res = vect_slp_analyze_node_operations_1 (vinfo, node, node_instance,
4678 cost_vec);
4679 /* If analysis failed we have to pop all recursive visited nodes
4680 plus ourselves. */
4681 if (!res)
4683 while (visited_vec.length () >= visited_rec_start)
4684 visited_set.remove (visited_vec.pop ());
4685 cost_vec->truncate (cost_vec_rec_start);
4688 /* When the node can be vectorized cost invariant nodes it references.
4689 This is not done in DFS order to allow the refering node
4690 vectorizable_* calls to nail down the invariant nodes vector type
4691 and possibly unshare it if it needs a different vector type than
4692 other referrers. */
4693 if (res)
4694 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), j, child)
4695 if (child
4696 && (SLP_TREE_DEF_TYPE (child) == vect_constant_def
4697 || SLP_TREE_DEF_TYPE (child) == vect_external_def)
4698 /* Perform usual caching, note code-generation still
4699 code-gens these nodes multiple times but we expect
4700 to CSE them later. */
4701 && !visited_set.add (child))
4703 visited_vec.safe_push (child);
4704 /* ??? After auditing more code paths make a "default"
4705 and push the vector type from NODE to all children
4706 if it is not already set. */
4707 /* Compute the number of vectors to be generated. */
4708 tree vector_type = SLP_TREE_VECTYPE (child);
4709 if (!vector_type)
4711 /* For shifts with a scalar argument we don't need
4712 to cost or code-generate anything.
4713 ??? Represent this more explicitely. */
4714 gcc_assert ((STMT_VINFO_TYPE (SLP_TREE_REPRESENTATIVE (node))
4715 == shift_vec_info_type)
4716 && j == 1);
4717 continue;
4719 unsigned group_size = SLP_TREE_LANES (child);
4720 poly_uint64 vf = 1;
4721 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
4722 vf = loop_vinfo->vectorization_factor;
4723 SLP_TREE_NUMBER_OF_VEC_STMTS (child)
4724 = vect_get_num_vectors (vf * group_size, vector_type);
4725 /* And cost them. */
4726 vect_prologue_cost_for_slp (child, cost_vec);
4729 /* If this node or any of its children can't be vectorized, try pruning
4730 the tree here rather than felling the whole thing. */
4731 if (!res && vect_slp_convert_to_external (vinfo, node, node_instance))
4733 /* We'll need to revisit this for invariant costing and number
4734 of vectorized stmt setting. */
4735 res = true;
4738 return res;
4741 /* Mark lanes of NODE that are live outside of the basic-block vectorized
4742 region and that can be vectorized using vectorizable_live_operation
4743 with STMT_VINFO_LIVE_P. Not handled live operations will cause the
4744 scalar code computing it to be retained. */
4746 static void
4747 vect_bb_slp_mark_live_stmts (bb_vec_info bb_vinfo, slp_tree node,
4748 slp_instance instance,
4749 stmt_vector_for_cost *cost_vec,
4750 hash_set<stmt_vec_info> &svisited,
4751 hash_set<slp_tree> &visited)
4753 if (visited.add (node))
4754 return;
4756 unsigned i;
4757 stmt_vec_info stmt_info;
4758 stmt_vec_info last_stmt = vect_find_last_scalar_stmt_in_slp (node);
4759 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
4761 if (svisited.contains (stmt_info))
4762 continue;
4763 stmt_vec_info orig_stmt_info = vect_orig_stmt (stmt_info);
4764 if (STMT_VINFO_IN_PATTERN_P (orig_stmt_info)
4765 && STMT_VINFO_RELATED_STMT (orig_stmt_info) != stmt_info)
4766 /* Only the pattern root stmt computes the original scalar value. */
4767 continue;
4768 bool mark_visited = true;
4769 gimple *orig_stmt = orig_stmt_info->stmt;
4770 ssa_op_iter op_iter;
4771 def_operand_p def_p;
4772 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_stmt, op_iter, SSA_OP_DEF)
4774 imm_use_iterator use_iter;
4775 gimple *use_stmt;
4776 stmt_vec_info use_stmt_info;
4777 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, DEF_FROM_PTR (def_p))
4778 if (!is_gimple_debug (use_stmt))
4780 use_stmt_info = bb_vinfo->lookup_stmt (use_stmt);
4781 if (!use_stmt_info
4782 || !PURE_SLP_STMT (vect_stmt_to_vectorize (use_stmt_info)))
4784 STMT_VINFO_LIVE_P (stmt_info) = true;
4785 if (vectorizable_live_operation (bb_vinfo, stmt_info,
4786 NULL, node, instance, i,
4787 false, cost_vec))
4788 /* ??? So we know we can vectorize the live stmt
4789 from one SLP node. If we cannot do so from all
4790 or none consistently we'd have to record which
4791 SLP node (and lane) we want to use for the live
4792 operation. So make sure we can code-generate
4793 from all nodes. */
4794 mark_visited = false;
4795 else
4796 STMT_VINFO_LIVE_P (stmt_info) = false;
4797 break;
4800 /* We have to verify whether we can insert the lane extract
4801 before all uses. The following is a conservative approximation.
4802 We cannot put this into vectorizable_live_operation because
4803 iterating over all use stmts from inside a FOR_EACH_IMM_USE_STMT
4804 doesn't work.
4805 Note that while the fact that we emit code for loads at the
4806 first load should make this a non-problem leafs we construct
4807 from scalars are vectorized after the last scalar def.
4808 ??? If we'd actually compute the insert location during
4809 analysis we could use sth less conservative than the last
4810 scalar stmt in the node for the dominance check. */
4811 /* ??? What remains is "live" uses in vector CTORs in the same
4812 SLP graph which is where those uses can end up code-generated
4813 right after their definition instead of close to their original
4814 use. But that would restrict us to code-generate lane-extracts
4815 from the latest stmt in a node. So we compensate for this
4816 during code-generation, simply not replacing uses for those
4817 hopefully rare cases. */
4818 if (STMT_VINFO_LIVE_P (stmt_info))
4819 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, DEF_FROM_PTR (def_p))
4820 if (!is_gimple_debug (use_stmt)
4821 && (!(use_stmt_info = bb_vinfo->lookup_stmt (use_stmt))
4822 || !PURE_SLP_STMT (vect_stmt_to_vectorize (use_stmt_info)))
4823 && !vect_stmt_dominates_stmt_p (last_stmt->stmt, use_stmt))
4825 if (dump_enabled_p ())
4826 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4827 "Cannot determine insertion place for "
4828 "lane extract\n");
4829 STMT_VINFO_LIVE_P (stmt_info) = false;
4830 mark_visited = true;
4833 if (mark_visited)
4834 svisited.add (stmt_info);
4837 slp_tree child;
4838 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
4839 if (child && SLP_TREE_DEF_TYPE (child) == vect_internal_def)
4840 vect_bb_slp_mark_live_stmts (bb_vinfo, child, instance,
4841 cost_vec, svisited, visited);
4844 /* Determine whether we can vectorize the reduction epilogue for INSTANCE. */
4846 static bool
4847 vectorizable_bb_reduc_epilogue (slp_instance instance,
4848 stmt_vector_for_cost *cost_vec)
4850 gassign *stmt = as_a <gassign *> (instance->root_stmts[0]->stmt);
4851 enum tree_code reduc_code = gimple_assign_rhs_code (stmt);
4852 if (reduc_code == MINUS_EXPR)
4853 reduc_code = PLUS_EXPR;
4854 internal_fn reduc_fn;
4855 tree vectype = SLP_TREE_VECTYPE (SLP_INSTANCE_TREE (instance));
4856 if (!reduction_fn_for_scalar_code (reduc_code, &reduc_fn)
4857 || reduc_fn == IFN_LAST
4858 || !direct_internal_fn_supported_p (reduc_fn, vectype, OPTIMIZE_FOR_BOTH)
4859 || !useless_type_conversion_p (TREE_TYPE (gimple_assign_lhs (stmt)),
4860 TREE_TYPE (vectype)))
4861 return false;
4863 /* There's no way to cost a horizontal vector reduction via REDUC_FN so
4864 cost log2 vector operations plus shuffles and one extraction. */
4865 unsigned steps = floor_log2 (vect_nunits_for_cost (vectype));
4866 record_stmt_cost (cost_vec, steps, vector_stmt, instance->root_stmts[0],
4867 vectype, 0, vect_body);
4868 record_stmt_cost (cost_vec, steps, vec_perm, instance->root_stmts[0],
4869 vectype, 0, vect_body);
4870 record_stmt_cost (cost_vec, 1, vec_to_scalar, instance->root_stmts[0],
4871 vectype, 0, vect_body);
4872 return true;
4875 /* Prune from ROOTS all stmts that are computed as part of lanes of NODE
4876 and recurse to children. */
4878 static void
4879 vect_slp_prune_covered_roots (slp_tree node, hash_set<stmt_vec_info> &roots,
4880 hash_set<slp_tree> &visited)
4882 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def
4883 || visited.add (node))
4884 return;
4886 stmt_vec_info stmt;
4887 unsigned i;
4888 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
4889 roots.remove (vect_orig_stmt (stmt));
4891 slp_tree child;
4892 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
4893 if (child)
4894 vect_slp_prune_covered_roots (child, roots, visited);
4897 /* Analyze statements in SLP instances of VINFO. Return true if the
4898 operations are supported. */
4900 bool
4901 vect_slp_analyze_operations (vec_info *vinfo)
4903 slp_instance instance;
4904 int i;
4906 DUMP_VECT_SCOPE ("vect_slp_analyze_operations");
4908 hash_set<slp_tree> visited;
4909 for (i = 0; vinfo->slp_instances.iterate (i, &instance); )
4911 auto_vec<slp_tree> visited_vec;
4912 stmt_vector_for_cost cost_vec;
4913 cost_vec.create (2);
4914 if (is_a <bb_vec_info> (vinfo))
4915 vect_location = instance->location ();
4916 if (!vect_slp_analyze_node_operations (vinfo,
4917 SLP_INSTANCE_TREE (instance),
4918 instance, visited, visited_vec,
4919 &cost_vec)
4920 /* CTOR instances require vectorized defs for the SLP tree root. */
4921 || (SLP_INSTANCE_KIND (instance) == slp_inst_kind_ctor
4922 && (SLP_TREE_DEF_TYPE (SLP_INSTANCE_TREE (instance))
4923 != vect_internal_def))
4924 /* Check we can vectorize the reduction. */
4925 || (SLP_INSTANCE_KIND (instance) == slp_inst_kind_bb_reduc
4926 && !vectorizable_bb_reduc_epilogue (instance, &cost_vec)))
4928 slp_tree node = SLP_INSTANCE_TREE (instance);
4929 stmt_vec_info stmt_info;
4930 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
4931 stmt_info = SLP_INSTANCE_ROOT_STMTS (instance)[0];
4932 else
4933 stmt_info = SLP_TREE_SCALAR_STMTS (node)[0];
4934 if (dump_enabled_p ())
4935 dump_printf_loc (MSG_NOTE, vect_location,
4936 "removing SLP instance operations starting from: %G",
4937 stmt_info->stmt);
4938 vect_free_slp_instance (instance);
4939 vinfo->slp_instances.ordered_remove (i);
4940 cost_vec.release ();
4941 while (!visited_vec.is_empty ())
4942 visited.remove (visited_vec.pop ());
4944 else
4946 i++;
4948 /* For BB vectorization remember the SLP graph entry
4949 cost for later. */
4950 if (is_a <bb_vec_info> (vinfo))
4951 instance->cost_vec = cost_vec;
4952 else
4954 add_stmt_costs (vinfo, vinfo->target_cost_data, &cost_vec);
4955 cost_vec.release ();
4960 /* Now look for SLP instances with a root that are covered by other
4961 instances and remove them. */
4962 hash_set<stmt_vec_info> roots;
4963 for (i = 0; vinfo->slp_instances.iterate (i, &instance); ++i)
4964 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
4965 roots.add (SLP_INSTANCE_ROOT_STMTS (instance)[0]);
4966 if (!roots.is_empty ())
4968 visited.empty ();
4969 for (i = 0; vinfo->slp_instances.iterate (i, &instance); ++i)
4970 vect_slp_prune_covered_roots (SLP_INSTANCE_TREE (instance), roots,
4971 visited);
4972 for (i = 0; vinfo->slp_instances.iterate (i, &instance); )
4973 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ()
4974 && !roots.contains (SLP_INSTANCE_ROOT_STMTS (instance)[0]))
4976 stmt_vec_info root = SLP_INSTANCE_ROOT_STMTS (instance)[0];
4977 if (dump_enabled_p ())
4978 dump_printf_loc (MSG_NOTE, vect_location,
4979 "removing SLP instance operations starting "
4980 "from: %G", root->stmt);
4981 vect_free_slp_instance (instance);
4982 vinfo->slp_instances.ordered_remove (i);
4984 else
4985 ++i;
4988 /* Compute vectorizable live stmts. */
4989 if (bb_vec_info bb_vinfo = dyn_cast <bb_vec_info> (vinfo))
4991 hash_set<stmt_vec_info> svisited;
4992 hash_set<slp_tree> visited;
4993 for (i = 0; vinfo->slp_instances.iterate (i, &instance); ++i)
4995 vect_location = instance->location ();
4996 vect_bb_slp_mark_live_stmts (bb_vinfo, SLP_INSTANCE_TREE (instance),
4997 instance, &instance->cost_vec, svisited,
4998 visited);
5002 return !vinfo->slp_instances.is_empty ();
5005 /* Get the SLP instance leader from INSTANCE_LEADER thereby transitively
5006 closing the eventual chain. */
5008 static slp_instance
5009 get_ultimate_leader (slp_instance instance,
5010 hash_map<slp_instance, slp_instance> &instance_leader)
5012 auto_vec<slp_instance *, 8> chain;
5013 slp_instance *tem;
5014 while (*(tem = instance_leader.get (instance)) != instance)
5016 chain.safe_push (tem);
5017 instance = *tem;
5019 while (!chain.is_empty ())
5020 *chain.pop () = instance;
5021 return instance;
5024 /* Worker of vect_bb_partition_graph, recurse on NODE. */
5026 static void
5027 vect_bb_partition_graph_r (bb_vec_info bb_vinfo,
5028 slp_instance instance, slp_tree node,
5029 hash_map<stmt_vec_info, slp_instance> &stmt_to_instance,
5030 hash_map<slp_instance, slp_instance> &instance_leader,
5031 hash_set<slp_tree> &visited)
5033 stmt_vec_info stmt_info;
5034 unsigned i;
5036 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
5038 bool existed_p;
5039 slp_instance &stmt_instance
5040 = stmt_to_instance.get_or_insert (stmt_info, &existed_p);
5041 if (!existed_p)
5043 else if (stmt_instance != instance)
5045 /* If we're running into a previously marked stmt make us the
5046 leader of the current ultimate leader. This keeps the
5047 leader chain acyclic and works even when the current instance
5048 connects two previously independent graph parts. */
5049 slp_instance stmt_leader
5050 = get_ultimate_leader (stmt_instance, instance_leader);
5051 if (stmt_leader != instance)
5052 instance_leader.put (stmt_leader, instance);
5054 stmt_instance = instance;
5057 if (!SLP_TREE_SCALAR_STMTS (node).is_empty () && visited.add (node))
5058 return;
5060 slp_tree child;
5061 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
5062 if (child && SLP_TREE_DEF_TYPE (child) == vect_internal_def)
5063 vect_bb_partition_graph_r (bb_vinfo, instance, child, stmt_to_instance,
5064 instance_leader, visited);
5067 /* Partition the SLP graph into pieces that can be costed independently. */
5069 static void
5070 vect_bb_partition_graph (bb_vec_info bb_vinfo)
5072 DUMP_VECT_SCOPE ("vect_bb_partition_graph");
5074 /* First walk the SLP graph assigning each involved scalar stmt a
5075 corresponding SLP graph entry and upon visiting a previously
5076 marked stmt, make the stmts leader the current SLP graph entry. */
5077 hash_map<stmt_vec_info, slp_instance> stmt_to_instance;
5078 hash_map<slp_instance, slp_instance> instance_leader;
5079 hash_set<slp_tree> visited;
5080 slp_instance instance;
5081 for (unsigned i = 0; bb_vinfo->slp_instances.iterate (i, &instance); ++i)
5083 instance_leader.put (instance, instance);
5084 vect_bb_partition_graph_r (bb_vinfo,
5085 instance, SLP_INSTANCE_TREE (instance),
5086 stmt_to_instance, instance_leader,
5087 visited);
5090 /* Then collect entries to each independent subgraph. */
5091 for (unsigned i = 0; bb_vinfo->slp_instances.iterate (i, &instance); ++i)
5093 slp_instance leader = get_ultimate_leader (instance, instance_leader);
5094 leader->subgraph_entries.safe_push (instance);
5095 if (dump_enabled_p ()
5096 && leader != instance)
5097 dump_printf_loc (MSG_NOTE, vect_location,
5098 "instance %p is leader of %p\n",
5099 leader, instance);
5103 /* Compute the scalar cost of the SLP node NODE and its children
5104 and return it. Do not account defs that are marked in LIFE and
5105 update LIFE according to uses of NODE. */
5107 static void
5108 vect_bb_slp_scalar_cost (vec_info *vinfo,
5109 slp_tree node, vec<bool, va_heap> *life,
5110 stmt_vector_for_cost *cost_vec,
5111 hash_set<slp_tree> &visited)
5113 unsigned i;
5114 stmt_vec_info stmt_info;
5115 slp_tree child;
5117 if (visited.add (node))
5118 return;
5120 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
5122 ssa_op_iter op_iter;
5123 def_operand_p def_p;
5125 if ((*life)[i])
5126 continue;
5128 stmt_vec_info orig_stmt_info = vect_orig_stmt (stmt_info);
5129 gimple *orig_stmt = orig_stmt_info->stmt;
5131 /* If there is a non-vectorized use of the defs then the scalar
5132 stmt is kept live in which case we do not account it or any
5133 required defs in the SLP children in the scalar cost. This
5134 way we make the vectorization more costly when compared to
5135 the scalar cost. */
5136 if (!STMT_VINFO_LIVE_P (stmt_info))
5138 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_stmt, op_iter, SSA_OP_DEF)
5140 imm_use_iterator use_iter;
5141 gimple *use_stmt;
5142 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, DEF_FROM_PTR (def_p))
5143 if (!is_gimple_debug (use_stmt))
5145 stmt_vec_info use_stmt_info = vinfo->lookup_stmt (use_stmt);
5146 if (!use_stmt_info
5147 || !PURE_SLP_STMT
5148 (vect_stmt_to_vectorize (use_stmt_info)))
5150 (*life)[i] = true;
5151 break;
5155 if ((*life)[i])
5156 continue;
5159 /* Count scalar stmts only once. */
5160 if (gimple_visited_p (orig_stmt))
5161 continue;
5162 gimple_set_visited (orig_stmt, true);
5164 vect_cost_for_stmt kind;
5165 if (STMT_VINFO_DATA_REF (orig_stmt_info))
5167 if (DR_IS_READ (STMT_VINFO_DATA_REF (orig_stmt_info)))
5168 kind = scalar_load;
5169 else
5170 kind = scalar_store;
5172 else if (vect_nop_conversion_p (orig_stmt_info))
5173 continue;
5174 /* For single-argument PHIs assume coalescing which means zero cost
5175 for the scalar and the vector PHIs. This avoids artificially
5176 favoring the vector path (but may pessimize it in some cases). */
5177 else if (is_a <gphi *> (orig_stmt_info->stmt)
5178 && gimple_phi_num_args
5179 (as_a <gphi *> (orig_stmt_info->stmt)) == 1)
5180 continue;
5181 else
5182 kind = scalar_stmt;
5183 record_stmt_cost (cost_vec, 1, kind, orig_stmt_info,
5184 SLP_TREE_VECTYPE (node), 0, vect_body);
5187 auto_vec<bool, 20> subtree_life;
5188 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
5190 if (child && SLP_TREE_DEF_TYPE (child) == vect_internal_def)
5192 /* Do not directly pass LIFE to the recursive call, copy it to
5193 confine changes in the callee to the current child/subtree. */
5194 if (SLP_TREE_CODE (node) == VEC_PERM_EXPR)
5196 subtree_life.safe_grow_cleared (SLP_TREE_LANES (child), true);
5197 for (unsigned j = 0;
5198 j < SLP_TREE_LANE_PERMUTATION (node).length (); ++j)
5200 auto perm = SLP_TREE_LANE_PERMUTATION (node)[j];
5201 if (perm.first == i)
5202 subtree_life[perm.second] = (*life)[j];
5205 else
5207 gcc_assert (SLP_TREE_LANES (node) == SLP_TREE_LANES (child));
5208 subtree_life.safe_splice (*life);
5210 vect_bb_slp_scalar_cost (vinfo, child, &subtree_life, cost_vec,
5211 visited);
5212 subtree_life.truncate (0);
5217 /* Comparator for the loop-index sorted cost vectors. */
5219 static int
5220 li_cost_vec_cmp (const void *a_, const void *b_)
5222 auto *a = (const std::pair<unsigned, stmt_info_for_cost *> *)a_;
5223 auto *b = (const std::pair<unsigned, stmt_info_for_cost *> *)b_;
5224 if (a->first < b->first)
5225 return -1;
5226 else if (a->first == b->first)
5227 return 0;
5228 return 1;
5231 /* Check if vectorization of the basic block is profitable for the
5232 subgraph denoted by SLP_INSTANCES. */
5234 static bool
5235 vect_bb_vectorization_profitable_p (bb_vec_info bb_vinfo,
5236 vec<slp_instance> slp_instances)
5238 slp_instance instance;
5239 int i;
5240 unsigned int vec_inside_cost = 0, vec_outside_cost = 0, scalar_cost = 0;
5241 unsigned int vec_prologue_cost = 0, vec_epilogue_cost = 0;
5243 if (dump_enabled_p ())
5245 dump_printf_loc (MSG_NOTE, vect_location, "Costing subgraph: \n");
5246 hash_set<slp_tree> visited;
5247 FOR_EACH_VEC_ELT (slp_instances, i, instance)
5248 vect_print_slp_graph (MSG_NOTE, vect_location,
5249 SLP_INSTANCE_TREE (instance), visited);
5252 /* Calculate scalar cost and sum the cost for the vector stmts
5253 previously collected. */
5254 stmt_vector_for_cost scalar_costs = vNULL;
5255 stmt_vector_for_cost vector_costs = vNULL;
5256 hash_set<slp_tree> visited;
5257 FOR_EACH_VEC_ELT (slp_instances, i, instance)
5259 auto_vec<bool, 20> life;
5260 life.safe_grow_cleared (SLP_TREE_LANES (SLP_INSTANCE_TREE (instance)),
5261 true);
5262 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
5263 record_stmt_cost (&scalar_costs,
5264 SLP_INSTANCE_ROOT_STMTS (instance).length (),
5265 scalar_stmt,
5266 SLP_INSTANCE_ROOT_STMTS (instance)[0], 0, vect_body);
5267 vect_bb_slp_scalar_cost (bb_vinfo,
5268 SLP_INSTANCE_TREE (instance),
5269 &life, &scalar_costs, visited);
5270 vector_costs.safe_splice (instance->cost_vec);
5271 instance->cost_vec.release ();
5273 /* Unset visited flag. */
5274 stmt_info_for_cost *cost;
5275 FOR_EACH_VEC_ELT (scalar_costs, i, cost)
5276 gimple_set_visited (cost->stmt_info->stmt, false);
5278 if (dump_enabled_p ())
5279 dump_printf_loc (MSG_NOTE, vect_location, "Cost model analysis: \n");
5281 /* When costing non-loop vectorization we need to consider each covered
5282 loop independently and make sure vectorization is profitable. For
5283 now we assume a loop may be not entered or executed an arbitrary
5284 number of iterations (??? static information can provide more
5285 precise info here) which means we can simply cost each containing
5286 loops stmts separately. */
5288 /* First produce cost vectors sorted by loop index. */
5289 auto_vec<std::pair<unsigned, stmt_info_for_cost *> >
5290 li_scalar_costs (scalar_costs.length ());
5291 auto_vec<std::pair<unsigned, stmt_info_for_cost *> >
5292 li_vector_costs (vector_costs.length ());
5293 FOR_EACH_VEC_ELT (scalar_costs, i, cost)
5295 unsigned l = gimple_bb (cost->stmt_info->stmt)->loop_father->num;
5296 li_scalar_costs.quick_push (std::make_pair (l, cost));
5298 /* Use a random used loop as fallback in case the first vector_costs
5299 entry does not have a stmt_info associated with it. */
5300 unsigned l = li_scalar_costs[0].first;
5301 FOR_EACH_VEC_ELT (vector_costs, i, cost)
5303 /* We inherit from the previous COST, invariants, externals and
5304 extracts immediately follow the cost for the related stmt. */
5305 if (cost->stmt_info)
5306 l = gimple_bb (cost->stmt_info->stmt)->loop_father->num;
5307 li_vector_costs.quick_push (std::make_pair (l, cost));
5309 li_scalar_costs.qsort (li_cost_vec_cmp);
5310 li_vector_costs.qsort (li_cost_vec_cmp);
5312 /* Now cost the portions individually. */
5313 unsigned vi = 0;
5314 unsigned si = 0;
5315 while (si < li_scalar_costs.length ()
5316 && vi < li_vector_costs.length ())
5318 unsigned sl = li_scalar_costs[si].first;
5319 unsigned vl = li_vector_costs[vi].first;
5320 if (sl != vl)
5322 if (dump_enabled_p ())
5323 dump_printf_loc (MSG_NOTE, vect_location,
5324 "Scalar %d and vector %d loop part do not "
5325 "match up, skipping scalar part\n", sl, vl);
5326 /* Skip the scalar part, assuming zero cost on the vector side. */
5329 si++;
5331 while (si < li_scalar_costs.length ()
5332 && li_scalar_costs[si].first == sl);
5333 continue;
5336 void *scalar_target_cost_data = init_cost (NULL, true);
5339 add_stmt_cost (bb_vinfo, scalar_target_cost_data,
5340 li_scalar_costs[si].second);
5341 si++;
5343 while (si < li_scalar_costs.length ()
5344 && li_scalar_costs[si].first == sl);
5345 unsigned dummy;
5346 finish_cost (scalar_target_cost_data, &dummy, &scalar_cost, &dummy);
5347 destroy_cost_data (scalar_target_cost_data);
5349 /* Complete the target-specific vector cost calculation. */
5350 void *vect_target_cost_data = init_cost (NULL, false);
5353 add_stmt_cost (bb_vinfo, vect_target_cost_data,
5354 li_vector_costs[vi].second);
5355 vi++;
5357 while (vi < li_vector_costs.length ()
5358 && li_vector_costs[vi].first == vl);
5359 finish_cost (vect_target_cost_data, &vec_prologue_cost,
5360 &vec_inside_cost, &vec_epilogue_cost);
5361 destroy_cost_data (vect_target_cost_data);
5363 vec_outside_cost = vec_prologue_cost + vec_epilogue_cost;
5365 if (dump_enabled_p ())
5367 dump_printf_loc (MSG_NOTE, vect_location,
5368 "Cost model analysis for part in loop %d:\n", sl);
5369 dump_printf (MSG_NOTE, " Vector cost: %d\n",
5370 vec_inside_cost + vec_outside_cost);
5371 dump_printf (MSG_NOTE, " Scalar cost: %d\n", scalar_cost);
5374 /* Vectorization is profitable if its cost is more than the cost of scalar
5375 version. Note that we err on the vector side for equal cost because
5376 the cost estimate is otherwise quite pessimistic (constant uses are
5377 free on the scalar side but cost a load on the vector side for
5378 example). */
5379 if (vec_outside_cost + vec_inside_cost > scalar_cost)
5381 scalar_costs.release ();
5382 vector_costs.release ();
5383 return false;
5386 if (vi < li_vector_costs.length ())
5388 if (dump_enabled_p ())
5389 dump_printf_loc (MSG_NOTE, vect_location,
5390 "Excess vector cost for part in loop %d:\n",
5391 li_vector_costs[vi].first);
5392 scalar_costs.release ();
5393 vector_costs.release ();
5394 return false;
5397 scalar_costs.release ();
5398 vector_costs.release ();
5399 return true;
5402 /* qsort comparator for lane defs. */
5404 static int
5405 vld_cmp (const void *a_, const void *b_)
5407 auto *a = (const std::pair<unsigned, tree> *)a_;
5408 auto *b = (const std::pair<unsigned, tree> *)b_;
5409 return a->first - b->first;
5412 /* Return true if USE_STMT is a vector lane insert into VEC and set
5413 *THIS_LANE to the lane number that is set. */
5415 static bool
5416 vect_slp_is_lane_insert (gimple *use_stmt, tree vec, unsigned *this_lane)
5418 gassign *use_ass = dyn_cast <gassign *> (use_stmt);
5419 if (!use_ass
5420 || gimple_assign_rhs_code (use_ass) != BIT_INSERT_EXPR
5421 || (vec
5422 ? gimple_assign_rhs1 (use_ass) != vec
5423 : ((vec = gimple_assign_rhs1 (use_ass)), false))
5424 || !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (vec)),
5425 TREE_TYPE (gimple_assign_rhs2 (use_ass)))
5426 || !constant_multiple_p
5427 (tree_to_poly_uint64 (gimple_assign_rhs3 (use_ass)),
5428 tree_to_poly_uint64 (TYPE_SIZE (TREE_TYPE (TREE_TYPE (vec)))),
5429 this_lane))
5430 return false;
5431 return true;
5434 /* Find any vectorizable constructors and add them to the grouped_store
5435 array. */
5437 static void
5438 vect_slp_check_for_constructors (bb_vec_info bb_vinfo)
5440 for (unsigned i = 0; i < bb_vinfo->bbs.length (); ++i)
5441 for (gimple_stmt_iterator gsi = gsi_start_bb (bb_vinfo->bbs[i]);
5442 !gsi_end_p (gsi); gsi_next (&gsi))
5444 gassign *assign = dyn_cast<gassign *> (gsi_stmt (gsi));
5445 if (!assign)
5446 continue;
5448 tree rhs = gimple_assign_rhs1 (assign);
5449 enum tree_code code = gimple_assign_rhs_code (assign);
5450 use_operand_p use_p;
5451 gimple *use_stmt;
5452 if (code == CONSTRUCTOR)
5454 if (!VECTOR_TYPE_P (TREE_TYPE (rhs))
5455 || maybe_ne (TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs)),
5456 CONSTRUCTOR_NELTS (rhs))
5457 || VECTOR_TYPE_P (TREE_TYPE (CONSTRUCTOR_ELT (rhs, 0)->value))
5458 || uniform_vector_p (rhs))
5459 continue;
5461 unsigned j;
5462 tree val;
5463 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), j, val)
5464 if (TREE_CODE (val) != SSA_NAME
5465 || !bb_vinfo->lookup_def (val))
5466 break;
5467 if (j != CONSTRUCTOR_NELTS (rhs))
5468 continue;
5470 stmt_vec_info stmt_info = bb_vinfo->lookup_stmt (assign);
5471 BB_VINFO_GROUPED_STORES (bb_vinfo).safe_push (stmt_info);
5473 else if (code == BIT_INSERT_EXPR
5474 && VECTOR_TYPE_P (TREE_TYPE (rhs))
5475 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs)).is_constant ()
5476 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs)).to_constant () > 1
5477 && integer_zerop (gimple_assign_rhs3 (assign))
5478 && useless_type_conversion_p
5479 (TREE_TYPE (TREE_TYPE (rhs)),
5480 TREE_TYPE (gimple_assign_rhs2 (assign)))
5481 && bb_vinfo->lookup_def (gimple_assign_rhs2 (assign)))
5483 /* We start to match on insert to lane zero but since the
5484 inserts need not be ordered we'd have to search both
5485 the def and the use chains. */
5486 tree vectype = TREE_TYPE (rhs);
5487 unsigned nlanes = TYPE_VECTOR_SUBPARTS (vectype).to_constant ();
5488 auto_vec<std::pair<unsigned, tree> > lane_defs (nlanes);
5489 auto_sbitmap lanes (nlanes);
5490 bitmap_clear (lanes);
5491 bitmap_set_bit (lanes, 0);
5492 tree def = gimple_assign_lhs (assign);
5493 lane_defs.quick_push
5494 (std::make_pair (0, gimple_assign_rhs2 (assign)));
5495 unsigned lanes_found = 1;
5496 /* Start with the use chains, the last stmt will be the root. */
5497 stmt_vec_info last = bb_vinfo->lookup_stmt (assign);
5498 vec<stmt_vec_info> roots = vNULL;
5499 roots.safe_push (last);
5502 use_operand_p use_p;
5503 gimple *use_stmt;
5504 if (!single_imm_use (def, &use_p, &use_stmt))
5505 break;
5506 unsigned this_lane;
5507 if (!bb_vinfo->lookup_stmt (use_stmt)
5508 || !vect_slp_is_lane_insert (use_stmt, def, &this_lane)
5509 || !bb_vinfo->lookup_def (gimple_assign_rhs2 (use_stmt)))
5510 break;
5511 if (bitmap_bit_p (lanes, this_lane))
5512 break;
5513 lanes_found++;
5514 bitmap_set_bit (lanes, this_lane);
5515 gassign *use_ass = as_a <gassign *> (use_stmt);
5516 lane_defs.quick_push (std::make_pair
5517 (this_lane, gimple_assign_rhs2 (use_ass)));
5518 last = bb_vinfo->lookup_stmt (use_ass);
5519 roots.safe_push (last);
5520 def = gimple_assign_lhs (use_ass);
5522 while (lanes_found < nlanes);
5523 if (roots.length () > 1)
5524 std::swap(roots[0], roots[roots.length () - 1]);
5525 if (lanes_found < nlanes)
5527 /* Now search the def chain. */
5528 def = gimple_assign_rhs1 (assign);
5531 if (TREE_CODE (def) != SSA_NAME
5532 || !has_single_use (def))
5533 break;
5534 gimple *def_stmt = SSA_NAME_DEF_STMT (def);
5535 unsigned this_lane;
5536 if (!bb_vinfo->lookup_stmt (def_stmt)
5537 || !vect_slp_is_lane_insert (def_stmt,
5538 NULL_TREE, &this_lane)
5539 || !bb_vinfo->lookup_def (gimple_assign_rhs2 (def_stmt)))
5540 break;
5541 if (bitmap_bit_p (lanes, this_lane))
5542 break;
5543 lanes_found++;
5544 bitmap_set_bit (lanes, this_lane);
5545 lane_defs.quick_push (std::make_pair
5546 (this_lane,
5547 gimple_assign_rhs2 (def_stmt)));
5548 roots.safe_push (bb_vinfo->lookup_stmt (def_stmt));
5549 def = gimple_assign_rhs1 (def_stmt);
5551 while (lanes_found < nlanes);
5553 if (lanes_found == nlanes)
5555 /* Sort lane_defs after the lane index and register the root. */
5556 lane_defs.qsort (vld_cmp);
5557 vec<stmt_vec_info> stmts;
5558 stmts.create (nlanes);
5559 for (unsigned i = 0; i < nlanes; ++i)
5560 stmts.quick_push (bb_vinfo->lookup_def (lane_defs[i].second));
5561 bb_vinfo->roots.safe_push (slp_root (slp_inst_kind_ctor,
5562 stmts, roots));
5564 else
5565 roots.release ();
5567 else if (!VECTOR_TYPE_P (TREE_TYPE (rhs))
5568 && (associative_tree_code (code) || code == MINUS_EXPR)
5569 /* ??? The flag_associative_math and TYPE_OVERFLOW_WRAPS
5570 checks pessimize a two-element reduction. PR54400.
5571 ??? In-order reduction could be handled if we only
5572 traverse one operand chain in vect_slp_linearize_chain. */
5573 && ((FLOAT_TYPE_P (TREE_TYPE (rhs)) && flag_associative_math)
5574 || (INTEGRAL_TYPE_P (TREE_TYPE (rhs))
5575 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (rhs))))
5576 /* Ops with constants at the tail can be stripped here. */
5577 && TREE_CODE (rhs) == SSA_NAME
5578 && TREE_CODE (gimple_assign_rhs2 (assign)) == SSA_NAME
5579 /* Should be the chain end. */
5580 && (!single_imm_use (gimple_assign_lhs (assign),
5581 &use_p, &use_stmt)
5582 || !is_gimple_assign (use_stmt)
5583 || (gimple_assign_rhs_code (use_stmt) != code
5584 && ((code != PLUS_EXPR && code != MINUS_EXPR)
5585 || (gimple_assign_rhs_code (use_stmt)
5586 != (code == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR))))))
5588 /* We start the match at the end of a possible association
5589 chain. */
5590 auto_vec<chain_op_t> chain;
5591 auto_vec<std::pair<tree_code, gimple *> > worklist;
5592 auto_vec<gimple *> chain_stmts;
5593 gimple *code_stmt = NULL, *alt_code_stmt = NULL;
5594 if (code == MINUS_EXPR)
5595 code = PLUS_EXPR;
5596 internal_fn reduc_fn;
5597 if (!reduction_fn_for_scalar_code (code, &reduc_fn)
5598 || reduc_fn == IFN_LAST)
5599 continue;
5600 vect_slp_linearize_chain (bb_vinfo, worklist, chain, code, assign,
5601 /* ??? */
5602 code_stmt, alt_code_stmt, &chain_stmts);
5603 if (chain.length () > 1)
5605 /* Sort the chain according to def_type and operation. */
5606 chain.sort (dt_sort_cmp, bb_vinfo);
5607 /* ??? Now we'd want to strip externals and constants
5608 but record those to be handled in the epilogue. */
5609 /* ??? For now do not allow mixing ops or externs/constants. */
5610 bool invalid = false;
5611 for (unsigned i = 0; i < chain.length (); ++i)
5612 if (chain[i].dt != vect_internal_def
5613 || chain[i].code != code)
5614 invalid = true;
5615 if (!invalid)
5617 vec<stmt_vec_info> stmts;
5618 stmts.create (chain.length ());
5619 for (unsigned i = 0; i < chain.length (); ++i)
5620 stmts.quick_push (bb_vinfo->lookup_def (chain[i].op));
5621 vec<stmt_vec_info> roots;
5622 roots.create (chain_stmts.length ());
5623 for (unsigned i = 0; i < chain_stmts.length (); ++i)
5624 roots.quick_push (bb_vinfo->lookup_stmt (chain_stmts[i]));
5625 bb_vinfo->roots.safe_push (slp_root (slp_inst_kind_bb_reduc,
5626 stmts, roots));
5633 /* Walk the grouped store chains and replace entries with their
5634 pattern variant if any. */
5636 static void
5637 vect_fixup_store_groups_with_patterns (vec_info *vinfo)
5639 stmt_vec_info first_element;
5640 unsigned i;
5642 FOR_EACH_VEC_ELT (vinfo->grouped_stores, i, first_element)
5644 /* We also have CTORs in this array. */
5645 if (!STMT_VINFO_GROUPED_ACCESS (first_element))
5646 continue;
5647 if (STMT_VINFO_IN_PATTERN_P (first_element))
5649 stmt_vec_info orig = first_element;
5650 first_element = STMT_VINFO_RELATED_STMT (first_element);
5651 DR_GROUP_FIRST_ELEMENT (first_element) = first_element;
5652 DR_GROUP_SIZE (first_element) = DR_GROUP_SIZE (orig);
5653 DR_GROUP_GAP (first_element) = DR_GROUP_GAP (orig);
5654 DR_GROUP_NEXT_ELEMENT (first_element) = DR_GROUP_NEXT_ELEMENT (orig);
5655 vinfo->grouped_stores[i] = first_element;
5657 stmt_vec_info prev = first_element;
5658 while (DR_GROUP_NEXT_ELEMENT (prev))
5660 stmt_vec_info elt = DR_GROUP_NEXT_ELEMENT (prev);
5661 if (STMT_VINFO_IN_PATTERN_P (elt))
5663 stmt_vec_info orig = elt;
5664 elt = STMT_VINFO_RELATED_STMT (elt);
5665 DR_GROUP_NEXT_ELEMENT (prev) = elt;
5666 DR_GROUP_GAP (elt) = DR_GROUP_GAP (orig);
5667 DR_GROUP_NEXT_ELEMENT (elt) = DR_GROUP_NEXT_ELEMENT (orig);
5669 DR_GROUP_FIRST_ELEMENT (elt) = first_element;
5670 prev = elt;
5675 /* Check if the region described by BB_VINFO can be vectorized, returning
5676 true if so. When returning false, set FATAL to true if the same failure
5677 would prevent vectorization at other vector sizes, false if it is still
5678 worth trying other sizes. N_STMTS is the number of statements in the
5679 region. */
5681 static bool
5682 vect_slp_analyze_bb_1 (bb_vec_info bb_vinfo, int n_stmts, bool &fatal,
5683 vec<int> *dataref_groups)
5685 DUMP_VECT_SCOPE ("vect_slp_analyze_bb");
5687 slp_instance instance;
5688 int i;
5689 poly_uint64 min_vf = 2;
5691 /* The first group of checks is independent of the vector size. */
5692 fatal = true;
5694 /* Analyze the data references. */
5696 if (!vect_analyze_data_refs (bb_vinfo, &min_vf, NULL))
5698 if (dump_enabled_p ())
5699 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5700 "not vectorized: unhandled data-ref in basic "
5701 "block.\n");
5702 return false;
5705 if (!vect_analyze_data_ref_accesses (bb_vinfo, dataref_groups))
5707 if (dump_enabled_p ())
5708 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5709 "not vectorized: unhandled data access in "
5710 "basic block.\n");
5711 return false;
5714 vect_slp_check_for_constructors (bb_vinfo);
5716 /* If there are no grouped stores and no constructors in the region
5717 there is no need to continue with pattern recog as vect_analyze_slp
5718 will fail anyway. */
5719 if (bb_vinfo->grouped_stores.is_empty ()
5720 && bb_vinfo->roots.is_empty ())
5722 if (dump_enabled_p ())
5723 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5724 "not vectorized: no grouped stores in "
5725 "basic block.\n");
5726 return false;
5729 /* While the rest of the analysis below depends on it in some way. */
5730 fatal = false;
5732 vect_pattern_recog (bb_vinfo);
5734 /* Update store groups from pattern processing. */
5735 vect_fixup_store_groups_with_patterns (bb_vinfo);
5737 /* Check the SLP opportunities in the basic block, analyze and build SLP
5738 trees. */
5739 if (!vect_analyze_slp (bb_vinfo, n_stmts))
5741 if (dump_enabled_p ())
5743 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5744 "Failed to SLP the basic block.\n");
5745 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5746 "not vectorized: failed to find SLP opportunities "
5747 "in basic block.\n");
5749 return false;
5752 /* Optimize permutations. */
5753 vect_optimize_slp (bb_vinfo);
5755 /* Gather the loads reachable from the SLP graph entries. */
5756 vect_gather_slp_loads (bb_vinfo);
5758 vect_record_base_alignments (bb_vinfo);
5760 /* Analyze and verify the alignment of data references and the
5761 dependence in the SLP instances. */
5762 for (i = 0; BB_VINFO_SLP_INSTANCES (bb_vinfo).iterate (i, &instance); )
5764 vect_location = instance->location ();
5765 if (! vect_slp_analyze_instance_alignment (bb_vinfo, instance)
5766 || ! vect_slp_analyze_instance_dependence (bb_vinfo, instance))
5768 slp_tree node = SLP_INSTANCE_TREE (instance);
5769 stmt_vec_info stmt_info = SLP_TREE_SCALAR_STMTS (node)[0];
5770 if (dump_enabled_p ())
5771 dump_printf_loc (MSG_NOTE, vect_location,
5772 "removing SLP instance operations starting from: %G",
5773 stmt_info->stmt);
5774 vect_free_slp_instance (instance);
5775 BB_VINFO_SLP_INSTANCES (bb_vinfo).ordered_remove (i);
5776 continue;
5779 /* Mark all the statements that we want to vectorize as pure SLP and
5780 relevant. */
5781 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance));
5782 vect_mark_slp_stmts_relevant (SLP_INSTANCE_TREE (instance));
5783 unsigned j;
5784 stmt_vec_info root;
5785 /* Likewise consider instance root stmts as vectorized. */
5786 FOR_EACH_VEC_ELT (SLP_INSTANCE_ROOT_STMTS (instance), j, root)
5787 STMT_SLP_TYPE (root) = pure_slp;
5789 i++;
5791 if (! BB_VINFO_SLP_INSTANCES (bb_vinfo).length ())
5792 return false;
5794 if (!vect_slp_analyze_operations (bb_vinfo))
5796 if (dump_enabled_p ())
5797 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5798 "not vectorized: bad operation in basic block.\n");
5799 return false;
5802 vect_bb_partition_graph (bb_vinfo);
5804 return true;
5807 /* Subroutine of vect_slp_bb. Try to vectorize the statements for all
5808 basic blocks in BBS, returning true on success.
5809 The region has N_STMTS statements and has the datarefs given by DATAREFS. */
5811 static bool
5812 vect_slp_region (vec<basic_block> bbs, vec<data_reference_p> datarefs,
5813 vec<int> *dataref_groups, unsigned int n_stmts)
5815 bb_vec_info bb_vinfo;
5816 auto_vector_modes vector_modes;
5818 /* Autodetect first vector size we try. */
5819 machine_mode next_vector_mode = VOIDmode;
5820 targetm.vectorize.autovectorize_vector_modes (&vector_modes, false);
5821 unsigned int mode_i = 0;
5823 vec_info_shared shared;
5825 machine_mode autodetected_vector_mode = VOIDmode;
5826 while (1)
5828 bool vectorized = false;
5829 bool fatal = false;
5830 bb_vinfo = new _bb_vec_info (bbs, &shared);
5832 bool first_time_p = shared.datarefs.is_empty ();
5833 BB_VINFO_DATAREFS (bb_vinfo) = datarefs;
5834 if (first_time_p)
5835 bb_vinfo->shared->save_datarefs ();
5836 else
5837 bb_vinfo->shared->check_datarefs ();
5838 bb_vinfo->vector_mode = next_vector_mode;
5840 if (vect_slp_analyze_bb_1 (bb_vinfo, n_stmts, fatal, dataref_groups))
5842 if (dump_enabled_p ())
5844 dump_printf_loc (MSG_NOTE, vect_location,
5845 "***** Analysis succeeded with vector mode"
5846 " %s\n", GET_MODE_NAME (bb_vinfo->vector_mode));
5847 dump_printf_loc (MSG_NOTE, vect_location, "SLPing BB part\n");
5850 bb_vinfo->shared->check_datarefs ();
5852 unsigned i;
5853 slp_instance instance;
5854 FOR_EACH_VEC_ELT (BB_VINFO_SLP_INSTANCES (bb_vinfo), i, instance)
5856 if (instance->subgraph_entries.is_empty ())
5857 continue;
5859 vect_location = instance->location ();
5860 if (!unlimited_cost_model (NULL)
5861 && !vect_bb_vectorization_profitable_p
5862 (bb_vinfo, instance->subgraph_entries))
5864 if (dump_enabled_p ())
5865 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5866 "not vectorized: vectorization is not "
5867 "profitable.\n");
5868 continue;
5871 if (!dbg_cnt (vect_slp))
5872 continue;
5874 if (!vectorized && dump_enabled_p ())
5875 dump_printf_loc (MSG_NOTE, vect_location,
5876 "Basic block will be vectorized "
5877 "using SLP\n");
5878 vectorized = true;
5880 vect_schedule_slp (bb_vinfo, instance->subgraph_entries);
5882 unsigned HOST_WIDE_INT bytes;
5883 if (dump_enabled_p ())
5885 if (GET_MODE_SIZE
5886 (bb_vinfo->vector_mode).is_constant (&bytes))
5887 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, vect_location,
5888 "basic block part vectorized using %wu "
5889 "byte vectors\n", bytes);
5890 else
5891 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, vect_location,
5892 "basic block part vectorized using "
5893 "variable length vectors\n");
5897 else
5899 if (dump_enabled_p ())
5900 dump_printf_loc (MSG_NOTE, vect_location,
5901 "***** Analysis failed with vector mode %s\n",
5902 GET_MODE_NAME (bb_vinfo->vector_mode));
5905 if (mode_i == 0)
5906 autodetected_vector_mode = bb_vinfo->vector_mode;
5908 if (!fatal)
5909 while (mode_i < vector_modes.length ()
5910 && vect_chooses_same_modes_p (bb_vinfo, vector_modes[mode_i]))
5912 if (dump_enabled_p ())
5913 dump_printf_loc (MSG_NOTE, vect_location,
5914 "***** The result for vector mode %s would"
5915 " be the same\n",
5916 GET_MODE_NAME (vector_modes[mode_i]));
5917 mode_i += 1;
5920 delete bb_vinfo;
5922 if (mode_i < vector_modes.length ()
5923 && VECTOR_MODE_P (autodetected_vector_mode)
5924 && (related_vector_mode (vector_modes[mode_i],
5925 GET_MODE_INNER (autodetected_vector_mode))
5926 == autodetected_vector_mode)
5927 && (related_vector_mode (autodetected_vector_mode,
5928 GET_MODE_INNER (vector_modes[mode_i]))
5929 == vector_modes[mode_i]))
5931 if (dump_enabled_p ())
5932 dump_printf_loc (MSG_NOTE, vect_location,
5933 "***** Skipping vector mode %s, which would"
5934 " repeat the analysis for %s\n",
5935 GET_MODE_NAME (vector_modes[mode_i]),
5936 GET_MODE_NAME (autodetected_vector_mode));
5937 mode_i += 1;
5940 if (vectorized
5941 || mode_i == vector_modes.length ()
5942 || autodetected_vector_mode == VOIDmode
5943 /* If vect_slp_analyze_bb_1 signaled that analysis for all
5944 vector sizes will fail do not bother iterating. */
5945 || fatal)
5946 return vectorized;
5948 /* Try the next biggest vector size. */
5949 next_vector_mode = vector_modes[mode_i++];
5950 if (dump_enabled_p ())
5951 dump_printf_loc (MSG_NOTE, vect_location,
5952 "***** Re-trying analysis with vector mode %s\n",
5953 GET_MODE_NAME (next_vector_mode));
5958 /* Main entry for the BB vectorizer. Analyze and transform BBS, returns
5959 true if anything in the basic-block was vectorized. */
5961 static bool
5962 vect_slp_bbs (const vec<basic_block> &bbs)
5964 vec<data_reference_p> datarefs = vNULL;
5965 auto_vec<int> dataref_groups;
5966 int insns = 0;
5967 int current_group = 0;
5969 for (unsigned i = 0; i < bbs.length (); i++)
5971 basic_block bb = bbs[i];
5972 for (gimple_stmt_iterator gsi = gsi_after_labels (bb); !gsi_end_p (gsi);
5973 gsi_next (&gsi))
5975 gimple *stmt = gsi_stmt (gsi);
5976 if (is_gimple_debug (stmt))
5977 continue;
5979 insns++;
5981 if (gimple_location (stmt) != UNKNOWN_LOCATION)
5982 vect_location = stmt;
5984 if (!vect_find_stmt_data_reference (NULL, stmt, &datarefs,
5985 &dataref_groups, current_group))
5986 ++current_group;
5988 /* New BBs always start a new DR group. */
5989 ++current_group;
5992 return vect_slp_region (bbs, datarefs, &dataref_groups, insns);
5995 /* Main entry for the BB vectorizer. Analyze and transform BB, returns
5996 true if anything in the basic-block was vectorized. */
5998 bool
5999 vect_slp_bb (basic_block bb)
6001 auto_vec<basic_block> bbs;
6002 bbs.safe_push (bb);
6003 return vect_slp_bbs (bbs);
6006 /* Main entry for the BB vectorizer. Analyze and transform BB, returns
6007 true if anything in the basic-block was vectorized. */
6009 bool
6010 vect_slp_function (function *fun)
6012 bool r = false;
6013 int *rpo = XNEWVEC (int, n_basic_blocks_for_fn (fun));
6014 unsigned n = pre_and_rev_post_order_compute_fn (fun, NULL, rpo, false);
6016 /* For the moment split the function into pieces to avoid making
6017 the iteration on the vector mode moot. Split at points we know
6018 to not handle well which is CFG merges (SLP discovery doesn't
6019 handle non-loop-header PHIs) and loop exits. Since pattern
6020 recog requires reverse iteration to visit uses before defs
6021 simply chop RPO into pieces. */
6022 auto_vec<basic_block> bbs;
6023 for (unsigned i = 0; i < n; i++)
6025 basic_block bb = BASIC_BLOCK_FOR_FN (fun, rpo[i]);
6026 bool split = false;
6028 /* Split when a BB is not dominated by the first block. */
6029 if (!bbs.is_empty ()
6030 && !dominated_by_p (CDI_DOMINATORS, bb, bbs[0]))
6032 if (dump_enabled_p ())
6033 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6034 "splitting region at dominance boundary bb%d\n",
6035 bb->index);
6036 split = true;
6038 /* Split when the loop determined by the first block
6039 is exited. This is because we eventually insert
6040 invariants at region begin. */
6041 else if (!bbs.is_empty ()
6042 && bbs[0]->loop_father != bb->loop_father
6043 && !flow_loop_nested_p (bbs[0]->loop_father, bb->loop_father))
6045 if (dump_enabled_p ())
6046 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6047 "splitting region at loop %d exit at bb%d\n",
6048 bbs[0]->loop_father->num, bb->index);
6049 split = true;
6052 if (split && !bbs.is_empty ())
6054 r |= vect_slp_bbs (bbs);
6055 bbs.truncate (0);
6056 bbs.quick_push (bb);
6058 else
6059 bbs.safe_push (bb);
6061 /* When we have a stmt ending this block and defining a
6062 value we have to insert on edges when inserting after it for
6063 a vector containing its definition. Avoid this for now. */
6064 if (gimple *last = last_stmt (bb))
6065 if (gimple_get_lhs (last)
6066 && is_ctrl_altering_stmt (last))
6068 if (dump_enabled_p ())
6069 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6070 "splitting region at control altering "
6071 "definition %G", last);
6072 r |= vect_slp_bbs (bbs);
6073 bbs.truncate (0);
6077 if (!bbs.is_empty ())
6078 r |= vect_slp_bbs (bbs);
6080 free (rpo);
6082 return r;
6085 /* Build a variable-length vector in which the elements in ELTS are repeated
6086 to a fill NRESULTS vectors of type VECTOR_TYPE. Store the vectors in
6087 RESULTS and add any new instructions to SEQ.
6089 The approach we use is:
6091 (1) Find a vector mode VM with integer elements of mode IM.
6093 (2) Replace ELTS[0:NELTS] with ELTS'[0:NELTS'], where each element of
6094 ELTS' has mode IM. This involves creating NELTS' VIEW_CONVERT_EXPRs
6095 from small vectors to IM.
6097 (3) Duplicate each ELTS'[I] into a vector of mode VM.
6099 (4) Use a tree of interleaving VEC_PERM_EXPRs to create VMs with the
6100 correct byte contents.
6102 (5) Use VIEW_CONVERT_EXPR to cast the final VMs to the required type.
6104 We try to find the largest IM for which this sequence works, in order
6105 to cut down on the number of interleaves. */
6107 void
6108 duplicate_and_interleave (vec_info *vinfo, gimple_seq *seq, tree vector_type,
6109 const vec<tree> &elts, unsigned int nresults,
6110 vec<tree> &results)
6112 unsigned int nelts = elts.length ();
6113 tree element_type = TREE_TYPE (vector_type);
6115 /* (1) Find a vector mode VM with integer elements of mode IM. */
6116 unsigned int nvectors = 1;
6117 tree new_vector_type;
6118 tree permutes[2];
6119 if (!can_duplicate_and_interleave_p (vinfo, nelts, element_type,
6120 &nvectors, &new_vector_type,
6121 permutes))
6122 gcc_unreachable ();
6124 /* Get a vector type that holds ELTS[0:NELTS/NELTS']. */
6125 unsigned int partial_nelts = nelts / nvectors;
6126 tree partial_vector_type = build_vector_type (element_type, partial_nelts);
6128 tree_vector_builder partial_elts;
6129 auto_vec<tree, 32> pieces (nvectors * 2);
6130 pieces.quick_grow_cleared (nvectors * 2);
6131 for (unsigned int i = 0; i < nvectors; ++i)
6133 /* (2) Replace ELTS[0:NELTS] with ELTS'[0:NELTS'], where each element of
6134 ELTS' has mode IM. */
6135 partial_elts.new_vector (partial_vector_type, partial_nelts, 1);
6136 for (unsigned int j = 0; j < partial_nelts; ++j)
6137 partial_elts.quick_push (elts[i * partial_nelts + j]);
6138 tree t = gimple_build_vector (seq, &partial_elts);
6139 t = gimple_build (seq, VIEW_CONVERT_EXPR,
6140 TREE_TYPE (new_vector_type), t);
6142 /* (3) Duplicate each ELTS'[I] into a vector of mode VM. */
6143 pieces[i] = gimple_build_vector_from_val (seq, new_vector_type, t);
6146 /* (4) Use a tree of VEC_PERM_EXPRs to create a single VM with the
6147 correct byte contents.
6149 Conceptually, we need to repeat the following operation log2(nvectors)
6150 times, where hi_start = nvectors / 2:
6152 out[i * 2] = VEC_PERM_EXPR (in[i], in[i + hi_start], lo_permute);
6153 out[i * 2 + 1] = VEC_PERM_EXPR (in[i], in[i + hi_start], hi_permute);
6155 However, if each input repeats every N elements and the VF is
6156 a multiple of N * 2, the HI result is the same as the LO result.
6157 This will be true for the first N1 iterations of the outer loop,
6158 followed by N2 iterations for which both the LO and HI results
6159 are needed. I.e.:
6161 N1 + N2 = log2(nvectors)
6163 Each "N1 iteration" doubles the number of redundant vectors and the
6164 effect of the process as a whole is to have a sequence of nvectors/2**N1
6165 vectors that repeats 2**N1 times. Rather than generate these redundant
6166 vectors, we halve the number of vectors for each N1 iteration. */
6167 unsigned int in_start = 0;
6168 unsigned int out_start = nvectors;
6169 unsigned int new_nvectors = nvectors;
6170 for (unsigned int in_repeat = 1; in_repeat < nvectors; in_repeat *= 2)
6172 unsigned int hi_start = new_nvectors / 2;
6173 unsigned int out_i = 0;
6174 for (unsigned int in_i = 0; in_i < new_nvectors; ++in_i)
6176 if ((in_i & 1) != 0
6177 && multiple_p (TYPE_VECTOR_SUBPARTS (new_vector_type),
6178 2 * in_repeat))
6179 continue;
6181 tree output = make_ssa_name (new_vector_type);
6182 tree input1 = pieces[in_start + (in_i / 2)];
6183 tree input2 = pieces[in_start + (in_i / 2) + hi_start];
6184 gassign *stmt = gimple_build_assign (output, VEC_PERM_EXPR,
6185 input1, input2,
6186 permutes[in_i & 1]);
6187 gimple_seq_add_stmt (seq, stmt);
6188 pieces[out_start + out_i] = output;
6189 out_i += 1;
6191 std::swap (in_start, out_start);
6192 new_nvectors = out_i;
6195 /* (5) Use VIEW_CONVERT_EXPR to cast the final VM to the required type. */
6196 results.reserve (nresults);
6197 for (unsigned int i = 0; i < nresults; ++i)
6198 if (i < new_nvectors)
6199 results.quick_push (gimple_build (seq, VIEW_CONVERT_EXPR, vector_type,
6200 pieces[in_start + i]));
6201 else
6202 results.quick_push (results[i - new_nvectors]);
6206 /* For constant and loop invariant defs in OP_NODE this function creates
6207 vector defs that will be used in the vectorized stmts and stores them
6208 to SLP_TREE_VEC_DEFS of OP_NODE. */
6210 static void
6211 vect_create_constant_vectors (vec_info *vinfo, slp_tree op_node)
6213 unsigned HOST_WIDE_INT nunits;
6214 tree vec_cst;
6215 unsigned j, number_of_places_left_in_vector;
6216 tree vector_type;
6217 tree vop;
6218 int group_size = op_node->ops.length ();
6219 unsigned int vec_num, i;
6220 unsigned number_of_copies = 1;
6221 bool constant_p;
6222 gimple_seq ctor_seq = NULL;
6223 auto_vec<tree, 16> permute_results;
6225 /* We always want SLP_TREE_VECTYPE (op_node) here correctly set. */
6226 vector_type = SLP_TREE_VECTYPE (op_node);
6228 unsigned int number_of_vectors = SLP_TREE_NUMBER_OF_VEC_STMTS (op_node);
6229 SLP_TREE_VEC_DEFS (op_node).create (number_of_vectors);
6230 auto_vec<tree> voprnds (number_of_vectors);
6232 /* NUMBER_OF_COPIES is the number of times we need to use the same values in
6233 created vectors. It is greater than 1 if unrolling is performed.
6235 For example, we have two scalar operands, s1 and s2 (e.g., group of
6236 strided accesses of size two), while NUNITS is four (i.e., four scalars
6237 of this type can be packed in a vector). The output vector will contain
6238 two copies of each scalar operand: {s1, s2, s1, s2}. (NUMBER_OF_COPIES
6239 will be 2).
6241 If GROUP_SIZE > NUNITS, the scalars will be split into several vectors
6242 containing the operands.
6244 For example, NUNITS is four as before, and the group size is 8
6245 (s1, s2, ..., s8). We will create two vectors {s1, s2, s3, s4} and
6246 {s5, s6, s7, s8}. */
6248 /* When using duplicate_and_interleave, we just need one element for
6249 each scalar statement. */
6250 if (!TYPE_VECTOR_SUBPARTS (vector_type).is_constant (&nunits))
6251 nunits = group_size;
6253 number_of_copies = nunits * number_of_vectors / group_size;
6255 number_of_places_left_in_vector = nunits;
6256 constant_p = true;
6257 tree_vector_builder elts (vector_type, nunits, 1);
6258 elts.quick_grow (nunits);
6259 stmt_vec_info insert_after = NULL;
6260 for (j = 0; j < number_of_copies; j++)
6262 tree op;
6263 for (i = group_size - 1; op_node->ops.iterate (i, &op); i--)
6265 /* Create 'vect_ = {op0,op1,...,opn}'. */
6266 number_of_places_left_in_vector--;
6267 tree orig_op = op;
6268 if (!types_compatible_p (TREE_TYPE (vector_type), TREE_TYPE (op)))
6270 if (CONSTANT_CLASS_P (op))
6272 if (VECTOR_BOOLEAN_TYPE_P (vector_type))
6274 /* Can't use VIEW_CONVERT_EXPR for booleans because
6275 of possibly different sizes of scalar value and
6276 vector element. */
6277 if (integer_zerop (op))
6278 op = build_int_cst (TREE_TYPE (vector_type), 0);
6279 else if (integer_onep (op))
6280 op = build_all_ones_cst (TREE_TYPE (vector_type));
6281 else
6282 gcc_unreachable ();
6284 else
6285 op = fold_unary (VIEW_CONVERT_EXPR,
6286 TREE_TYPE (vector_type), op);
6287 gcc_assert (op && CONSTANT_CLASS_P (op));
6289 else
6291 tree new_temp = make_ssa_name (TREE_TYPE (vector_type));
6292 gimple *init_stmt;
6293 if (VECTOR_BOOLEAN_TYPE_P (vector_type))
6295 tree true_val
6296 = build_all_ones_cst (TREE_TYPE (vector_type));
6297 tree false_val
6298 = build_zero_cst (TREE_TYPE (vector_type));
6299 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (op)));
6300 init_stmt = gimple_build_assign (new_temp, COND_EXPR,
6301 op, true_val,
6302 false_val);
6304 else
6306 op = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (vector_type),
6307 op);
6308 init_stmt
6309 = gimple_build_assign (new_temp, VIEW_CONVERT_EXPR,
6310 op);
6312 gimple_seq_add_stmt (&ctor_seq, init_stmt);
6313 op = new_temp;
6316 elts[number_of_places_left_in_vector] = op;
6317 if (!CONSTANT_CLASS_P (op))
6318 constant_p = false;
6319 /* For BB vectorization we have to compute an insert location
6320 when a def is inside the analyzed region since we cannot
6321 simply insert at the BB start in this case. */
6322 stmt_vec_info opdef;
6323 if (TREE_CODE (orig_op) == SSA_NAME
6324 && !SSA_NAME_IS_DEFAULT_DEF (orig_op)
6325 && is_a <bb_vec_info> (vinfo)
6326 && (opdef = vinfo->lookup_def (orig_op)))
6328 if (!insert_after)
6329 insert_after = opdef;
6330 else
6331 insert_after = get_later_stmt (insert_after, opdef);
6334 if (number_of_places_left_in_vector == 0)
6336 if (constant_p
6337 ? multiple_p (TYPE_VECTOR_SUBPARTS (vector_type), nunits)
6338 : known_eq (TYPE_VECTOR_SUBPARTS (vector_type), nunits))
6339 vec_cst = gimple_build_vector (&ctor_seq, &elts);
6340 else
6342 if (permute_results.is_empty ())
6343 duplicate_and_interleave (vinfo, &ctor_seq, vector_type,
6344 elts, number_of_vectors,
6345 permute_results);
6346 vec_cst = permute_results[number_of_vectors - j - 1];
6348 if (!gimple_seq_empty_p (ctor_seq))
6350 if (insert_after)
6352 gimple_stmt_iterator gsi;
6353 if (gimple_code (insert_after->stmt) == GIMPLE_PHI)
6355 gsi = gsi_after_labels (gimple_bb (insert_after->stmt));
6356 gsi_insert_seq_before (&gsi, ctor_seq,
6357 GSI_CONTINUE_LINKING);
6359 else if (!stmt_ends_bb_p (insert_after->stmt))
6361 gsi = gsi_for_stmt (insert_after->stmt);
6362 gsi_insert_seq_after (&gsi, ctor_seq,
6363 GSI_CONTINUE_LINKING);
6365 else
6367 /* When we want to insert after a def where the
6368 defining stmt throws then insert on the fallthru
6369 edge. */
6370 edge e = find_fallthru_edge
6371 (gimple_bb (insert_after->stmt)->succs);
6372 basic_block new_bb
6373 = gsi_insert_seq_on_edge_immediate (e, ctor_seq);
6374 gcc_assert (!new_bb);
6377 else
6378 vinfo->insert_seq_on_entry (NULL, ctor_seq);
6379 ctor_seq = NULL;
6381 voprnds.quick_push (vec_cst);
6382 insert_after = NULL;
6383 number_of_places_left_in_vector = nunits;
6384 constant_p = true;
6385 elts.new_vector (vector_type, nunits, 1);
6386 elts.quick_grow (nunits);
6391 /* Since the vectors are created in the reverse order, we should invert
6392 them. */
6393 vec_num = voprnds.length ();
6394 for (j = vec_num; j != 0; j--)
6396 vop = voprnds[j - 1];
6397 SLP_TREE_VEC_DEFS (op_node).quick_push (vop);
6400 /* In case that VF is greater than the unrolling factor needed for the SLP
6401 group of stmts, NUMBER_OF_VECTORS to be created is greater than
6402 NUMBER_OF_SCALARS/NUNITS or NUNITS/NUMBER_OF_SCALARS, and hence we have
6403 to replicate the vectors. */
6404 while (number_of_vectors > SLP_TREE_VEC_DEFS (op_node).length ())
6405 for (i = 0; SLP_TREE_VEC_DEFS (op_node).iterate (i, &vop) && i < vec_num;
6406 i++)
6407 SLP_TREE_VEC_DEFS (op_node).quick_push (vop);
6410 /* Get the Ith vectorized definition from SLP_NODE. */
6412 tree
6413 vect_get_slp_vect_def (slp_tree slp_node, unsigned i)
6415 if (SLP_TREE_VEC_STMTS (slp_node).exists ())
6416 return gimple_get_lhs (SLP_TREE_VEC_STMTS (slp_node)[i]);
6417 else
6418 return SLP_TREE_VEC_DEFS (slp_node)[i];
6421 /* Get the vectorized definitions of SLP_NODE in *VEC_DEFS. */
6423 void
6424 vect_get_slp_defs (slp_tree slp_node, vec<tree> *vec_defs)
6426 vec_defs->create (SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node));
6427 if (SLP_TREE_DEF_TYPE (slp_node) == vect_internal_def)
6429 unsigned j;
6430 gimple *vec_def_stmt;
6431 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (slp_node), j, vec_def_stmt)
6432 vec_defs->quick_push (gimple_get_lhs (vec_def_stmt));
6434 else
6435 vec_defs->splice (SLP_TREE_VEC_DEFS (slp_node));
6438 /* Get N vectorized definitions for SLP_NODE. */
6440 void
6441 vect_get_slp_defs (vec_info *,
6442 slp_tree slp_node, vec<vec<tree> > *vec_oprnds, unsigned n)
6444 if (n == -1U)
6445 n = SLP_TREE_CHILDREN (slp_node).length ();
6447 for (unsigned i = 0; i < n; ++i)
6449 slp_tree child = SLP_TREE_CHILDREN (slp_node)[i];
6450 vec<tree> vec_defs = vNULL;
6451 vect_get_slp_defs (child, &vec_defs);
6452 vec_oprnds->quick_push (vec_defs);
6456 /* Generate vector permute statements from a list of loads in DR_CHAIN.
6457 If ANALYZE_ONLY is TRUE, only check that it is possible to create valid
6458 permute statements for the SLP node NODE. Store the number of vector
6459 permute instructions in *N_PERMS and the number of vector load
6460 instructions in *N_LOADS. If DCE_CHAIN is true, remove all definitions
6461 that were not needed. */
6463 bool
6464 vect_transform_slp_perm_load (vec_info *vinfo,
6465 slp_tree node, const vec<tree> &dr_chain,
6466 gimple_stmt_iterator *gsi, poly_uint64 vf,
6467 bool analyze_only, unsigned *n_perms,
6468 unsigned int *n_loads, bool dce_chain)
6470 stmt_vec_info stmt_info = SLP_TREE_SCALAR_STMTS (node)[0];
6471 int vec_index = 0;
6472 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
6473 unsigned int group_size = SLP_TREE_SCALAR_STMTS (node).length ();
6474 unsigned int mask_element;
6475 machine_mode mode;
6477 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info))
6478 return false;
6480 stmt_info = DR_GROUP_FIRST_ELEMENT (stmt_info);
6482 mode = TYPE_MODE (vectype);
6483 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
6485 /* Initialize the vect stmts of NODE to properly insert the generated
6486 stmts later. */
6487 if (! analyze_only)
6488 for (unsigned i = SLP_TREE_VEC_STMTS (node).length ();
6489 i < SLP_TREE_NUMBER_OF_VEC_STMTS (node); i++)
6490 SLP_TREE_VEC_STMTS (node).quick_push (NULL);
6492 /* Generate permutation masks for every NODE. Number of masks for each NODE
6493 is equal to GROUP_SIZE.
6494 E.g., we have a group of three nodes with three loads from the same
6495 location in each node, and the vector size is 4. I.e., we have a
6496 a0b0c0a1b1c1... sequence and we need to create the following vectors:
6497 for a's: a0a0a0a1 a1a1a2a2 a2a3a3a3
6498 for b's: b0b0b0b1 b1b1b2b2 b2b3b3b3
6501 The masks for a's should be: {0,0,0,3} {3,3,6,6} {6,9,9,9}.
6502 The last mask is illegal since we assume two operands for permute
6503 operation, and the mask element values can't be outside that range.
6504 Hence, the last mask must be converted into {2,5,5,5}.
6505 For the first two permutations we need the first and the second input
6506 vectors: {a0,b0,c0,a1} and {b1,c1,a2,b2}, and for the last permutation
6507 we need the second and the third vectors: {b1,c1,a2,b2} and
6508 {c2,a3,b3,c3}. */
6510 int vect_stmts_counter = 0;
6511 unsigned int index = 0;
6512 int first_vec_index = -1;
6513 int second_vec_index = -1;
6514 bool noop_p = true;
6515 *n_perms = 0;
6517 vec_perm_builder mask;
6518 unsigned int nelts_to_build;
6519 unsigned int nvectors_per_build;
6520 unsigned int in_nlanes;
6521 bool repeating_p = (group_size == DR_GROUP_SIZE (stmt_info)
6522 && multiple_p (nunits, group_size));
6523 if (repeating_p)
6525 /* A single vector contains a whole number of copies of the node, so:
6526 (a) all permutes can use the same mask; and
6527 (b) the permutes only need a single vector input. */
6528 mask.new_vector (nunits, group_size, 3);
6529 nelts_to_build = mask.encoded_nelts ();
6530 nvectors_per_build = SLP_TREE_VEC_STMTS (node).length ();
6531 in_nlanes = DR_GROUP_SIZE (stmt_info) * 3;
6533 else
6535 /* We need to construct a separate mask for each vector statement. */
6536 unsigned HOST_WIDE_INT const_nunits, const_vf;
6537 if (!nunits.is_constant (&const_nunits)
6538 || !vf.is_constant (&const_vf))
6539 return false;
6540 mask.new_vector (const_nunits, const_nunits, 1);
6541 nelts_to_build = const_vf * group_size;
6542 nvectors_per_build = 1;
6543 in_nlanes = const_vf * DR_GROUP_SIZE (stmt_info);
6545 auto_sbitmap used_in_lanes (in_nlanes);
6546 bitmap_clear (used_in_lanes);
6547 auto_bitmap used_defs;
6549 unsigned int count = mask.encoded_nelts ();
6550 mask.quick_grow (count);
6551 vec_perm_indices indices;
6553 for (unsigned int j = 0; j < nelts_to_build; j++)
6555 unsigned int iter_num = j / group_size;
6556 unsigned int stmt_num = j % group_size;
6557 unsigned int i = (iter_num * DR_GROUP_SIZE (stmt_info)
6558 + SLP_TREE_LOAD_PERMUTATION (node)[stmt_num]);
6559 bitmap_set_bit (used_in_lanes, i);
6560 if (repeating_p)
6562 first_vec_index = 0;
6563 mask_element = i;
6565 else
6567 /* Enforced before the loop when !repeating_p. */
6568 unsigned int const_nunits = nunits.to_constant ();
6569 vec_index = i / const_nunits;
6570 mask_element = i % const_nunits;
6571 if (vec_index == first_vec_index
6572 || first_vec_index == -1)
6574 first_vec_index = vec_index;
6576 else if (vec_index == second_vec_index
6577 || second_vec_index == -1)
6579 second_vec_index = vec_index;
6580 mask_element += const_nunits;
6582 else
6584 if (dump_enabled_p ())
6585 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6586 "permutation requires at "
6587 "least three vectors %G",
6588 stmt_info->stmt);
6589 gcc_assert (analyze_only);
6590 return false;
6593 gcc_assert (mask_element < 2 * const_nunits);
6596 if (mask_element != index)
6597 noop_p = false;
6598 mask[index++] = mask_element;
6600 if (index == count && !noop_p)
6602 indices.new_vector (mask, second_vec_index == -1 ? 1 : 2, nunits);
6603 if (!can_vec_perm_const_p (mode, indices))
6605 if (dump_enabled_p ())
6607 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
6608 vect_location,
6609 "unsupported vect permute { ");
6610 for (i = 0; i < count; ++i)
6612 dump_dec (MSG_MISSED_OPTIMIZATION, mask[i]);
6613 dump_printf (MSG_MISSED_OPTIMIZATION, " ");
6615 dump_printf (MSG_MISSED_OPTIMIZATION, "}\n");
6617 gcc_assert (analyze_only);
6618 return false;
6621 ++*n_perms;
6624 if (index == count)
6626 if (!analyze_only)
6628 tree mask_vec = NULL_TREE;
6630 if (! noop_p)
6631 mask_vec = vect_gen_perm_mask_checked (vectype, indices);
6633 if (second_vec_index == -1)
6634 second_vec_index = first_vec_index;
6636 for (unsigned int ri = 0; ri < nvectors_per_build; ++ri)
6638 /* Generate the permute statement if necessary. */
6639 tree first_vec = dr_chain[first_vec_index + ri];
6640 tree second_vec = dr_chain[second_vec_index + ri];
6641 gimple *perm_stmt;
6642 if (! noop_p)
6644 gassign *stmt = as_a <gassign *> (stmt_info->stmt);
6645 tree perm_dest
6646 = vect_create_destination_var (gimple_assign_lhs (stmt),
6647 vectype);
6648 perm_dest = make_ssa_name (perm_dest);
6649 perm_stmt
6650 = gimple_build_assign (perm_dest, VEC_PERM_EXPR,
6651 first_vec, second_vec,
6652 mask_vec);
6653 vect_finish_stmt_generation (vinfo, stmt_info, perm_stmt,
6654 gsi);
6655 if (dce_chain)
6657 bitmap_set_bit (used_defs, first_vec_index + ri);
6658 bitmap_set_bit (used_defs, second_vec_index + ri);
6661 else
6663 /* If mask was NULL_TREE generate the requested
6664 identity transform. */
6665 perm_stmt = SSA_NAME_DEF_STMT (first_vec);
6666 if (dce_chain)
6667 bitmap_set_bit (used_defs, first_vec_index + ri);
6670 /* Store the vector statement in NODE. */
6671 SLP_TREE_VEC_STMTS (node)[vect_stmts_counter++] = perm_stmt;
6675 index = 0;
6676 first_vec_index = -1;
6677 second_vec_index = -1;
6678 noop_p = true;
6682 if (n_loads)
6684 if (repeating_p)
6685 *n_loads = SLP_TREE_NUMBER_OF_VEC_STMTS (node);
6686 else
6688 /* Enforced above when !repeating_p. */
6689 unsigned int const_nunits = nunits.to_constant ();
6690 *n_loads = 0;
6691 bool load_seen = false;
6692 for (unsigned i = 0; i < in_nlanes; ++i)
6694 if (i % const_nunits == 0)
6696 if (load_seen)
6697 *n_loads += 1;
6698 load_seen = false;
6700 if (bitmap_bit_p (used_in_lanes, i))
6701 load_seen = true;
6703 if (load_seen)
6704 *n_loads += 1;
6708 if (dce_chain)
6709 for (unsigned i = 0; i < dr_chain.length (); ++i)
6710 if (!bitmap_bit_p (used_defs, i))
6712 gimple *stmt = SSA_NAME_DEF_STMT (dr_chain[i]);
6713 gimple_stmt_iterator rgsi = gsi_for_stmt (stmt);
6714 gsi_remove (&rgsi, true);
6715 release_defs (stmt);
6718 return true;
6721 /* Produce the next vector result for SLP permutation NODE by adding a vector
6722 statement at GSI. If MASK_VEC is nonnull, add:
6724 <new SSA name> = VEC_PERM_EXPR <FIRST_DEF, SECOND_DEF, MASK_VEC>
6726 otherwise add:
6728 <new SSA name> = FIRST_DEF. */
6730 static void
6731 vect_add_slp_permutation (vec_info *vinfo, gimple_stmt_iterator *gsi,
6732 slp_tree node, tree first_def, tree second_def,
6733 tree mask_vec)
6735 tree vectype = SLP_TREE_VECTYPE (node);
6737 /* ??? We SLP match existing vector element extracts but
6738 allow punning which we need to re-instantiate at uses
6739 but have no good way of explicitly representing. */
6740 if (!types_compatible_p (TREE_TYPE (first_def), vectype))
6742 gassign *conv_stmt
6743 = gimple_build_assign (make_ssa_name (vectype),
6744 build1 (VIEW_CONVERT_EXPR, vectype, first_def));
6745 vect_finish_stmt_generation (vinfo, NULL, conv_stmt, gsi);
6746 first_def = gimple_assign_lhs (conv_stmt);
6748 gassign *perm_stmt;
6749 tree perm_dest = make_ssa_name (vectype);
6750 if (mask_vec)
6752 if (!types_compatible_p (TREE_TYPE (second_def), vectype))
6754 gassign *conv_stmt
6755 = gimple_build_assign (make_ssa_name (vectype),
6756 build1 (VIEW_CONVERT_EXPR,
6757 vectype, second_def));
6758 vect_finish_stmt_generation (vinfo, NULL, conv_stmt, gsi);
6759 second_def = gimple_assign_lhs (conv_stmt);
6761 perm_stmt = gimple_build_assign (perm_dest, VEC_PERM_EXPR,
6762 first_def, second_def,
6763 mask_vec);
6765 else
6766 /* We need a copy here in case the def was external. */
6767 perm_stmt = gimple_build_assign (perm_dest, first_def);
6768 vect_finish_stmt_generation (vinfo, NULL, perm_stmt, gsi);
6769 /* Store the vector statement in NODE. */
6770 SLP_TREE_VEC_STMTS (node).quick_push (perm_stmt);
6773 /* Vectorize the SLP permutations in NODE as specified
6774 in SLP_TREE_LANE_PERMUTATION which is a vector of pairs of SLP
6775 child number and lane number.
6776 Interleaving of two two-lane two-child SLP subtrees (not supported):
6777 [ { 0, 0 }, { 1, 0 }, { 0, 1 }, { 1, 1 } ]
6778 A blend of two four-lane two-child SLP subtrees:
6779 [ { 0, 0 }, { 1, 1 }, { 0, 2 }, { 1, 3 } ]
6780 Highpart of a four-lane one-child SLP subtree (not supported):
6781 [ { 0, 2 }, { 0, 3 } ]
6782 Where currently only a subset is supported by code generating below. */
6784 static bool
6785 vectorizable_slp_permutation (vec_info *vinfo, gimple_stmt_iterator *gsi,
6786 slp_tree node, stmt_vector_for_cost *cost_vec)
6788 tree vectype = SLP_TREE_VECTYPE (node);
6790 /* ??? We currently only support all same vector input and output types
6791 while the SLP IL should really do a concat + select and thus accept
6792 arbitrary mismatches. */
6793 slp_tree child;
6794 unsigned i;
6795 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (vectype);
6796 bool repeating_p = multiple_p (nunits, SLP_TREE_LANES (node));
6797 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
6799 if (!vect_maybe_update_slp_op_vectype (child, vectype)
6800 || !types_compatible_p (SLP_TREE_VECTYPE (child), vectype))
6802 if (dump_enabled_p ())
6803 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6804 "Unsupported lane permutation\n");
6805 return false;
6807 if (SLP_TREE_LANES (child) != SLP_TREE_LANES (node))
6808 repeating_p = false;
6811 vec<std::pair<unsigned, unsigned> > &perm = SLP_TREE_LANE_PERMUTATION (node);
6812 gcc_assert (perm.length () == SLP_TREE_LANES (node));
6813 if (dump_enabled_p ())
6815 dump_printf_loc (MSG_NOTE, vect_location,
6816 "vectorizing permutation");
6817 for (unsigned i = 0; i < perm.length (); ++i)
6818 dump_printf (MSG_NOTE, " op%u[%u]", perm[i].first, perm[i].second);
6819 if (repeating_p)
6820 dump_printf (MSG_NOTE, " (repeat %d)\n", SLP_TREE_LANES (node));
6821 dump_printf (MSG_NOTE, "\n");
6824 /* REPEATING_P is true if every output vector is guaranteed to use the
6825 same permute vector. We can handle that case for both variable-length
6826 and constant-length vectors, but we only handle other cases for
6827 constant-length vectors.
6829 Set:
6831 - NPATTERNS and NELTS_PER_PATTERN to the encoding of the permute
6832 mask vector that we want to build.
6834 - NCOPIES to the number of copies of PERM that we need in order
6835 to build the necessary permute mask vectors.
6837 - NOUTPUTS_PER_MASK to the number of output vectors we want to create
6838 for each permute mask vector. This is only relevant when GSI is
6839 nonnull. */
6840 uint64_t npatterns;
6841 unsigned nelts_per_pattern;
6842 uint64_t ncopies;
6843 unsigned noutputs_per_mask;
6844 if (repeating_p)
6846 /* We need a single permute mask vector that has the form:
6848 { X1, ..., Xn, X1 + n, ..., Xn + n, X1 + 2n, ..., Xn + 2n, ... }
6850 In other words, the original n-element permute in PERM is
6851 "unrolled" to fill a full vector. The stepped vector encoding
6852 that we use for permutes requires 3n elements. */
6853 npatterns = SLP_TREE_LANES (node);
6854 nelts_per_pattern = ncopies = 3;
6855 noutputs_per_mask = SLP_TREE_NUMBER_OF_VEC_STMTS (node);
6857 else
6859 /* Calculate every element of every permute mask vector explicitly,
6860 instead of relying on the pattern described above. */
6861 if (!nunits.is_constant (&npatterns))
6862 return false;
6863 nelts_per_pattern = ncopies = 1;
6864 if (loop_vec_info linfo = dyn_cast <loop_vec_info> (vinfo))
6865 if (!LOOP_VINFO_VECT_FACTOR (linfo).is_constant (&ncopies))
6866 return false;
6867 noutputs_per_mask = 1;
6869 unsigned olanes = ncopies * SLP_TREE_LANES (node);
6870 gcc_assert (repeating_p || multiple_p (olanes, nunits));
6872 /* Compute the { { SLP operand, vector index}, lane } permutation sequence
6873 from the { SLP operand, scalar lane } permutation as recorded in the
6874 SLP node as intermediate step. This part should already work
6875 with SLP children with arbitrary number of lanes. */
6876 auto_vec<std::pair<std::pair<unsigned, unsigned>, unsigned> > vperm;
6877 auto_vec<unsigned> active_lane;
6878 vperm.create (olanes);
6879 active_lane.safe_grow_cleared (SLP_TREE_CHILDREN (node).length (), true);
6880 for (unsigned i = 0; i < ncopies; ++i)
6882 for (unsigned pi = 0; pi < perm.length (); ++pi)
6884 std::pair<unsigned, unsigned> p = perm[pi];
6885 tree vtype = SLP_TREE_VECTYPE (SLP_TREE_CHILDREN (node)[p.first]);
6886 if (repeating_p)
6887 vperm.quick_push ({{p.first, 0}, p.second + active_lane[p.first]});
6888 else
6890 /* We checked above that the vectors are constant-length. */
6891 unsigned vnunits = TYPE_VECTOR_SUBPARTS (vtype).to_constant ();
6892 unsigned vi = (active_lane[p.first] + p.second) / vnunits;
6893 unsigned vl = (active_lane[p.first] + p.second) % vnunits;
6894 vperm.quick_push ({{p.first, vi}, vl});
6897 /* Advance to the next group. */
6898 for (unsigned j = 0; j < SLP_TREE_CHILDREN (node).length (); ++j)
6899 active_lane[j] += SLP_TREE_LANES (SLP_TREE_CHILDREN (node)[j]);
6902 if (dump_enabled_p ())
6904 dump_printf_loc (MSG_NOTE, vect_location, "as");
6905 for (unsigned i = 0; i < vperm.length (); ++i)
6907 if (i != 0
6908 && (repeating_p
6909 ? multiple_p (i, npatterns)
6910 : multiple_p (i, TYPE_VECTOR_SUBPARTS (vectype))))
6911 dump_printf (MSG_NOTE, ",");
6912 dump_printf (MSG_NOTE, " vops%u[%u][%u]",
6913 vperm[i].first.first, vperm[i].first.second,
6914 vperm[i].second);
6916 dump_printf (MSG_NOTE, "\n");
6919 /* We can only handle two-vector permutes, everything else should
6920 be lowered on the SLP level. The following is closely inspired
6921 by vect_transform_slp_perm_load and is supposed to eventually
6922 replace it.
6923 ??? As intermediate step do code-gen in the SLP tree representation
6924 somehow? */
6925 std::pair<unsigned, unsigned> first_vec = std::make_pair (-1U, -1U);
6926 std::pair<unsigned, unsigned> second_vec = std::make_pair (-1U, -1U);
6927 unsigned int index = 0;
6928 poly_uint64 mask_element;
6929 vec_perm_builder mask;
6930 mask.new_vector (nunits, npatterns, nelts_per_pattern);
6931 unsigned int count = mask.encoded_nelts ();
6932 mask.quick_grow (count);
6933 vec_perm_indices indices;
6934 unsigned nperms = 0;
6935 for (unsigned i = 0; i < vperm.length (); ++i)
6937 mask_element = vperm[i].second;
6938 if (first_vec.first == -1U
6939 || first_vec == vperm[i].first)
6940 first_vec = vperm[i].first;
6941 else if (second_vec.first == -1U
6942 || second_vec == vperm[i].first)
6944 second_vec = vperm[i].first;
6945 mask_element += nunits;
6947 else
6949 if (dump_enabled_p ())
6950 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6951 "permutation requires at "
6952 "least three vectors\n");
6953 gcc_assert (!gsi);
6954 return false;
6957 mask[index++] = mask_element;
6959 if (index == count)
6961 indices.new_vector (mask, second_vec.first == -1U ? 1 : 2, nunits);
6962 bool identity_p = indices.series_p (0, 1, 0, 1);
6963 if (!identity_p
6964 && !can_vec_perm_const_p (TYPE_MODE (vectype), indices))
6966 if (dump_enabled_p ())
6968 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
6969 vect_location,
6970 "unsupported vect permute { ");
6971 for (i = 0; i < count; ++i)
6973 dump_dec (MSG_MISSED_OPTIMIZATION, mask[i]);
6974 dump_printf (MSG_MISSED_OPTIMIZATION, " ");
6976 dump_printf (MSG_MISSED_OPTIMIZATION, "}\n");
6978 gcc_assert (!gsi);
6979 return false;
6982 if (!identity_p)
6983 nperms++;
6984 if (gsi)
6986 if (second_vec.first == -1U)
6987 second_vec = first_vec;
6989 slp_tree
6990 first_node = SLP_TREE_CHILDREN (node)[first_vec.first],
6991 second_node = SLP_TREE_CHILDREN (node)[second_vec.first];
6993 tree mask_vec = NULL_TREE;
6994 if (!identity_p)
6995 mask_vec = vect_gen_perm_mask_checked (vectype, indices);
6997 for (unsigned int vi = 0; vi < noutputs_per_mask; ++vi)
6999 tree first_def
7000 = vect_get_slp_vect_def (first_node,
7001 first_vec.second + vi);
7002 tree second_def
7003 = vect_get_slp_vect_def (second_node,
7004 second_vec.second + vi);
7005 vect_add_slp_permutation (vinfo, gsi, node, first_def,
7006 second_def, mask_vec);
7010 index = 0;
7011 first_vec = std::make_pair (-1U, -1U);
7012 second_vec = std::make_pair (-1U, -1U);
7016 if (!gsi)
7017 record_stmt_cost (cost_vec, nperms, vec_perm, NULL, vectype, 0, vect_body);
7019 return true;
7022 /* Vectorize SLP NODE. */
7024 static void
7025 vect_schedule_slp_node (vec_info *vinfo,
7026 slp_tree node, slp_instance instance)
7028 gimple_stmt_iterator si;
7029 int i;
7030 slp_tree child;
7032 /* For existing vectors there's nothing to do. */
7033 if (SLP_TREE_VEC_DEFS (node).exists ())
7034 return;
7036 gcc_assert (SLP_TREE_VEC_STMTS (node).is_empty ());
7038 /* Vectorize externals and constants. */
7039 if (SLP_TREE_DEF_TYPE (node) == vect_constant_def
7040 || SLP_TREE_DEF_TYPE (node) == vect_external_def)
7042 /* ??? vectorizable_shift can end up using a scalar operand which is
7043 currently denoted as !SLP_TREE_VECTYPE. No need to vectorize the
7044 node in this case. */
7045 if (!SLP_TREE_VECTYPE (node))
7046 return;
7048 vect_create_constant_vectors (vinfo, node);
7049 return;
7052 stmt_vec_info stmt_info = SLP_TREE_REPRESENTATIVE (node);
7054 gcc_assert (SLP_TREE_NUMBER_OF_VEC_STMTS (node) != 0);
7055 SLP_TREE_VEC_STMTS (node).create (SLP_TREE_NUMBER_OF_VEC_STMTS (node));
7057 if (dump_enabled_p ())
7058 dump_printf_loc (MSG_NOTE, vect_location,
7059 "------>vectorizing SLP node starting from: %G",
7060 stmt_info->stmt);
7062 if (STMT_VINFO_DATA_REF (stmt_info)
7063 && SLP_TREE_CODE (node) != VEC_PERM_EXPR)
7065 /* Vectorized loads go before the first scalar load to make it
7066 ready early, vectorized stores go before the last scalar
7067 stmt which is where all uses are ready. */
7068 stmt_vec_info last_stmt_info = NULL;
7069 if (DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)))
7070 last_stmt_info = vect_find_first_scalar_stmt_in_slp (node);
7071 else /* DR_IS_WRITE */
7072 last_stmt_info = vect_find_last_scalar_stmt_in_slp (node);
7073 si = gsi_for_stmt (last_stmt_info->stmt);
7075 else if ((STMT_VINFO_TYPE (stmt_info) == cycle_phi_info_type
7076 || STMT_VINFO_TYPE (stmt_info) == induc_vec_info_type
7077 || STMT_VINFO_TYPE (stmt_info) == phi_info_type)
7078 && SLP_TREE_CODE (node) != VEC_PERM_EXPR)
7080 /* For PHI node vectorization we do not use the insertion iterator. */
7081 si = gsi_none ();
7083 else
7085 /* Emit other stmts after the children vectorized defs which is
7086 earliest possible. */
7087 gimple *last_stmt = NULL;
7088 bool seen_vector_def = false;
7089 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
7090 if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
7092 /* For fold-left reductions we are retaining the scalar
7093 reduction PHI but we still have SLP_TREE_NUM_VEC_STMTS
7094 set so the representation isn't perfect. Resort to the
7095 last scalar def here. */
7096 if (SLP_TREE_VEC_STMTS (child).is_empty ())
7098 gcc_assert (STMT_VINFO_TYPE (SLP_TREE_REPRESENTATIVE (child))
7099 == cycle_phi_info_type);
7100 gphi *phi = as_a <gphi *>
7101 (vect_find_last_scalar_stmt_in_slp (child)->stmt);
7102 if (!last_stmt
7103 || vect_stmt_dominates_stmt_p (last_stmt, phi))
7104 last_stmt = phi;
7106 /* We are emitting all vectorized stmts in the same place and
7107 the last one is the last.
7108 ??? Unless we have a load permutation applied and that
7109 figures to re-use an earlier generated load. */
7110 unsigned j;
7111 gimple *vstmt;
7112 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (child), j, vstmt)
7113 if (!last_stmt
7114 || vect_stmt_dominates_stmt_p (last_stmt, vstmt))
7115 last_stmt = vstmt;
7117 else if (!SLP_TREE_VECTYPE (child))
7119 /* For externals we use unvectorized at all scalar defs. */
7120 unsigned j;
7121 tree def;
7122 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_OPS (child), j, def)
7123 if (TREE_CODE (def) == SSA_NAME
7124 && !SSA_NAME_IS_DEFAULT_DEF (def))
7126 gimple *stmt = SSA_NAME_DEF_STMT (def);
7127 if (!last_stmt
7128 || vect_stmt_dominates_stmt_p (last_stmt, stmt))
7129 last_stmt = stmt;
7132 else
7134 /* For externals we have to look at all defs since their
7135 insertion place is decided per vector. But beware
7136 of pre-existing vectors where we need to make sure
7137 we do not insert before the region boundary. */
7138 if (SLP_TREE_SCALAR_OPS (child).is_empty ()
7139 && !vinfo->lookup_def (SLP_TREE_VEC_DEFS (child)[0]))
7140 seen_vector_def = true;
7141 else
7143 unsigned j;
7144 tree vdef;
7145 FOR_EACH_VEC_ELT (SLP_TREE_VEC_DEFS (child), j, vdef)
7146 if (TREE_CODE (vdef) == SSA_NAME
7147 && !SSA_NAME_IS_DEFAULT_DEF (vdef))
7149 gimple *vstmt = SSA_NAME_DEF_STMT (vdef);
7150 if (!last_stmt
7151 || vect_stmt_dominates_stmt_p (last_stmt, vstmt))
7152 last_stmt = vstmt;
7156 /* This can happen when all children are pre-existing vectors or
7157 constants. */
7158 if (!last_stmt)
7159 last_stmt = vect_find_first_scalar_stmt_in_slp (node)->stmt;
7160 if (!last_stmt)
7162 gcc_assert (seen_vector_def);
7163 si = gsi_after_labels (as_a <bb_vec_info> (vinfo)->bbs[0]);
7165 else if (is_a <bb_vec_info> (vinfo)
7166 && gimple_bb (last_stmt) != gimple_bb (stmt_info->stmt)
7167 && gimple_could_trap_p (stmt_info->stmt))
7169 /* We've constrained possibly trapping operations to all come
7170 from the same basic-block, if vectorized defs would allow earlier
7171 scheduling still force vectorized stmts to the original block.
7172 This is only necessary for BB vectorization since for loop vect
7173 all operations are in a single BB and scalar stmt based
7174 placement doesn't play well with epilogue vectorization. */
7175 gcc_assert (dominated_by_p (CDI_DOMINATORS,
7176 gimple_bb (stmt_info->stmt),
7177 gimple_bb (last_stmt)));
7178 si = gsi_after_labels (gimple_bb (stmt_info->stmt));
7180 else if (is_a <gphi *> (last_stmt))
7181 si = gsi_after_labels (gimple_bb (last_stmt));
7182 else
7184 si = gsi_for_stmt (last_stmt);
7185 gsi_next (&si);
7189 bool done_p = false;
7191 /* Handle purely internal nodes. */
7192 if (SLP_TREE_CODE (node) == VEC_PERM_EXPR)
7194 /* ??? the transform kind is stored to STMT_VINFO_TYPE which might
7195 be shared with different SLP nodes (but usually it's the same
7196 operation apart from the case the stmt is only there for denoting
7197 the actual scalar lane defs ...). So do not call vect_transform_stmt
7198 but open-code it here (partly). */
7199 bool done = vectorizable_slp_permutation (vinfo, &si, node, NULL);
7200 gcc_assert (done);
7201 done_p = true;
7203 if (!done_p)
7204 vect_transform_stmt (vinfo, stmt_info, &si, node, instance);
7207 /* Replace scalar calls from SLP node NODE with setting of their lhs to zero.
7208 For loop vectorization this is done in vectorizable_call, but for SLP
7209 it needs to be deferred until end of vect_schedule_slp, because multiple
7210 SLP instances may refer to the same scalar stmt. */
7212 static void
7213 vect_remove_slp_scalar_calls (vec_info *vinfo,
7214 slp_tree node, hash_set<slp_tree> &visited)
7216 gimple *new_stmt;
7217 gimple_stmt_iterator gsi;
7218 int i;
7219 slp_tree child;
7220 tree lhs;
7221 stmt_vec_info stmt_info;
7223 if (!node || SLP_TREE_DEF_TYPE (node) != vect_internal_def)
7224 return;
7226 if (visited.add (node))
7227 return;
7229 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
7230 vect_remove_slp_scalar_calls (vinfo, child, visited);
7232 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
7234 gcall *stmt = dyn_cast <gcall *> (stmt_info->stmt);
7235 if (!stmt || gimple_bb (stmt) == NULL)
7236 continue;
7237 if (is_pattern_stmt_p (stmt_info)
7238 || !PURE_SLP_STMT (stmt_info))
7239 continue;
7240 lhs = gimple_call_lhs (stmt);
7241 new_stmt = gimple_build_assign (lhs, build_zero_cst (TREE_TYPE (lhs)));
7242 gsi = gsi_for_stmt (stmt);
7243 vinfo->replace_stmt (&gsi, stmt_info, new_stmt);
7244 SSA_NAME_DEF_STMT (gimple_assign_lhs (new_stmt)) = new_stmt;
7248 static void
7249 vect_remove_slp_scalar_calls (vec_info *vinfo, slp_tree node)
7251 hash_set<slp_tree> visited;
7252 vect_remove_slp_scalar_calls (vinfo, node, visited);
7255 /* Vectorize the instance root. */
7257 void
7258 vectorize_slp_instance_root_stmt (slp_tree node, slp_instance instance)
7260 gassign *rstmt = NULL;
7262 if (instance->kind == slp_inst_kind_ctor)
7264 if (SLP_TREE_NUMBER_OF_VEC_STMTS (node) == 1)
7266 gimple *child_stmt;
7267 int j;
7269 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (node), j, child_stmt)
7271 tree vect_lhs = gimple_get_lhs (child_stmt);
7272 tree root_lhs = gimple_get_lhs (instance->root_stmts[0]->stmt);
7273 if (!useless_type_conversion_p (TREE_TYPE (root_lhs),
7274 TREE_TYPE (vect_lhs)))
7275 vect_lhs = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (root_lhs),
7276 vect_lhs);
7277 rstmt = gimple_build_assign (root_lhs, vect_lhs);
7278 break;
7281 else if (SLP_TREE_NUMBER_OF_VEC_STMTS (node) > 1)
7283 int nelts = SLP_TREE_NUMBER_OF_VEC_STMTS (node);
7284 gimple *child_stmt;
7285 int j;
7286 vec<constructor_elt, va_gc> *v;
7287 vec_alloc (v, nelts);
7289 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (node), j, child_stmt)
7290 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
7291 gimple_get_lhs (child_stmt));
7292 tree lhs = gimple_get_lhs (instance->root_stmts[0]->stmt);
7293 tree rtype
7294 = TREE_TYPE (gimple_assign_rhs1 (instance->root_stmts[0]->stmt));
7295 tree r_constructor = build_constructor (rtype, v);
7296 rstmt = gimple_build_assign (lhs, r_constructor);
7299 else if (instance->kind == slp_inst_kind_bb_reduc)
7301 /* Largely inspired by reduction chain epilogue handling in
7302 vect_create_epilog_for_reduction. */
7303 vec<tree> vec_defs = vNULL;
7304 vect_get_slp_defs (node, &vec_defs);
7305 enum tree_code reduc_code
7306 = gimple_assign_rhs_code (instance->root_stmts[0]->stmt);
7307 /* ??? We actually have to reflect signs somewhere. */
7308 if (reduc_code == MINUS_EXPR)
7309 reduc_code = PLUS_EXPR;
7310 gimple_seq epilogue = NULL;
7311 /* We may end up with more than one vector result, reduce them
7312 to one vector. */
7313 tree vec_def = vec_defs[0];
7314 for (unsigned i = 1; i < vec_defs.length (); ++i)
7315 vec_def = gimple_build (&epilogue, reduc_code, TREE_TYPE (vec_def),
7316 vec_def, vec_defs[i]);
7317 vec_defs.release ();
7318 /* ??? Support other schemes than direct internal fn. */
7319 internal_fn reduc_fn;
7320 if (!reduction_fn_for_scalar_code (reduc_code, &reduc_fn)
7321 || reduc_fn == IFN_LAST)
7322 gcc_unreachable ();
7323 tree scalar_def = gimple_build (&epilogue, as_combined_fn (reduc_fn),
7324 TREE_TYPE (TREE_TYPE (vec_def)), vec_def);
7326 gimple_stmt_iterator rgsi = gsi_for_stmt (instance->root_stmts[0]->stmt);
7327 gsi_insert_seq_before (&rgsi, epilogue, GSI_SAME_STMT);
7328 gimple_assign_set_rhs_from_tree (&rgsi, scalar_def);
7329 update_stmt (gsi_stmt (rgsi));
7330 return;
7332 else
7333 gcc_unreachable ();
7335 gcc_assert (rstmt);
7337 gimple_stmt_iterator rgsi = gsi_for_stmt (instance->root_stmts[0]->stmt);
7338 gsi_replace (&rgsi, rstmt, true);
7341 struct slp_scc_info
7343 bool on_stack;
7344 int dfs;
7345 int lowlink;
7348 /* Schedule the SLP INSTANCE doing a DFS walk and collecting SCCs. */
7350 static void
7351 vect_schedule_scc (vec_info *vinfo, slp_tree node, slp_instance instance,
7352 hash_map<slp_tree, slp_scc_info> &scc_info,
7353 int &maxdfs, vec<slp_tree> &stack)
7355 bool existed_p;
7356 slp_scc_info *info = &scc_info.get_or_insert (node, &existed_p);
7357 gcc_assert (!existed_p);
7358 info->dfs = maxdfs;
7359 info->lowlink = maxdfs;
7360 maxdfs++;
7362 /* Leaf. */
7363 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
7365 info->on_stack = false;
7366 vect_schedule_slp_node (vinfo, node, instance);
7367 return;
7370 info->on_stack = true;
7371 stack.safe_push (node);
7373 unsigned i;
7374 slp_tree child;
7375 /* DFS recurse. */
7376 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
7378 if (!child)
7379 continue;
7380 slp_scc_info *child_info = scc_info.get (child);
7381 if (!child_info)
7383 vect_schedule_scc (vinfo, child, instance, scc_info, maxdfs, stack);
7384 /* Recursion might have re-allocated the node. */
7385 info = scc_info.get (node);
7386 child_info = scc_info.get (child);
7387 info->lowlink = MIN (info->lowlink, child_info->lowlink);
7389 else if (child_info->on_stack)
7390 info->lowlink = MIN (info->lowlink, child_info->dfs);
7392 if (info->lowlink != info->dfs)
7393 return;
7395 auto_vec<slp_tree, 4> phis_to_fixup;
7397 /* Singleton. */
7398 if (stack.last () == node)
7400 stack.pop ();
7401 info->on_stack = false;
7402 vect_schedule_slp_node (vinfo, node, instance);
7403 if (SLP_TREE_CODE (node) != VEC_PERM_EXPR
7404 && is_a <gphi *> (SLP_TREE_REPRESENTATIVE (node)->stmt))
7405 phis_to_fixup.quick_push (node);
7407 else
7409 /* SCC. */
7410 int last_idx = stack.length () - 1;
7411 while (stack[last_idx] != node)
7412 last_idx--;
7413 /* We can break the cycle at PHIs who have at least one child
7414 code generated. Then we could re-start the DFS walk until
7415 all nodes in the SCC are covered (we might have new entries
7416 for only back-reachable nodes). But it's simpler to just
7417 iterate and schedule those that are ready. */
7418 unsigned todo = stack.length () - last_idx;
7421 for (int idx = stack.length () - 1; idx >= last_idx; --idx)
7423 slp_tree entry = stack[idx];
7424 if (!entry)
7425 continue;
7426 bool phi = (SLP_TREE_CODE (entry) != VEC_PERM_EXPR
7427 && is_a <gphi *> (SLP_TREE_REPRESENTATIVE (entry)->stmt));
7428 bool ready = !phi;
7429 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (entry), i, child)
7430 if (!child)
7432 gcc_assert (phi);
7433 ready = true;
7434 break;
7436 else if (scc_info.get (child)->on_stack)
7438 if (!phi)
7440 ready = false;
7441 break;
7444 else
7446 if (phi)
7448 ready = true;
7449 break;
7452 if (ready)
7454 vect_schedule_slp_node (vinfo, entry, instance);
7455 scc_info.get (entry)->on_stack = false;
7456 stack[idx] = NULL;
7457 todo--;
7458 if (phi)
7459 phis_to_fixup.safe_push (entry);
7463 while (todo != 0);
7465 /* Pop the SCC. */
7466 stack.truncate (last_idx);
7469 /* Now fixup the backedge def of the vectorized PHIs in this SCC. */
7470 slp_tree phi_node;
7471 FOR_EACH_VEC_ELT (phis_to_fixup, i, phi_node)
7473 gphi *phi = as_a <gphi *> (SLP_TREE_REPRESENTATIVE (phi_node)->stmt);
7474 edge_iterator ei;
7475 edge e;
7476 FOR_EACH_EDGE (e, ei, gimple_bb (phi)->preds)
7478 unsigned dest_idx = e->dest_idx;
7479 child = SLP_TREE_CHILDREN (phi_node)[dest_idx];
7480 if (!child || SLP_TREE_DEF_TYPE (child) != vect_internal_def)
7481 continue;
7482 /* Simply fill all args. */
7483 for (unsigned i = 0; i < SLP_TREE_VEC_STMTS (phi_node).length (); ++i)
7484 add_phi_arg (as_a <gphi *> (SLP_TREE_VEC_STMTS (phi_node)[i]),
7485 vect_get_slp_vect_def (child, i),
7486 e, gimple_phi_arg_location (phi, dest_idx));
7491 /* Generate vector code for SLP_INSTANCES in the loop/basic block. */
7493 void
7494 vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
7496 slp_instance instance;
7497 unsigned int i;
7499 hash_map<slp_tree, slp_scc_info> scc_info;
7500 int maxdfs = 0;
7501 FOR_EACH_VEC_ELT (slp_instances, i, instance)
7503 slp_tree node = SLP_INSTANCE_TREE (instance);
7504 if (dump_enabled_p ())
7506 dump_printf_loc (MSG_NOTE, vect_location,
7507 "Vectorizing SLP tree:\n");
7508 /* ??? Dump all? */
7509 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
7510 dump_printf_loc (MSG_NOTE, vect_location, "Root stmt: %G",
7511 SLP_INSTANCE_ROOT_STMTS (instance)[0]->stmt);
7512 vect_print_slp_graph (MSG_NOTE, vect_location,
7513 SLP_INSTANCE_TREE (instance));
7515 /* Schedule the tree of INSTANCE, scheduling SCCs in a way to
7516 have a PHI be the node breaking the cycle. */
7517 auto_vec<slp_tree> stack;
7518 if (!scc_info.get (node))
7519 vect_schedule_scc (vinfo, node, instance, scc_info, maxdfs, stack);
7521 if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
7522 vectorize_slp_instance_root_stmt (node, instance);
7524 if (dump_enabled_p ())
7525 dump_printf_loc (MSG_NOTE, vect_location,
7526 "vectorizing stmts using SLP.\n");
7529 FOR_EACH_VEC_ELT (slp_instances, i, instance)
7531 slp_tree root = SLP_INSTANCE_TREE (instance);
7532 stmt_vec_info store_info;
7533 unsigned int j;
7535 /* Remove scalar call stmts. Do not do this for basic-block
7536 vectorization as not all uses may be vectorized.
7537 ??? Why should this be necessary? DCE should be able to
7538 remove the stmts itself.
7539 ??? For BB vectorization we can as well remove scalar
7540 stmts starting from the SLP tree root if they have no
7541 uses. */
7542 if (is_a <loop_vec_info> (vinfo))
7543 vect_remove_slp_scalar_calls (vinfo, root);
7545 /* Remove vectorized stores original scalar stmts. */
7546 for (j = 0; SLP_TREE_SCALAR_STMTS (root).iterate (j, &store_info); j++)
7548 if (!STMT_VINFO_DATA_REF (store_info)
7549 || !DR_IS_WRITE (STMT_VINFO_DATA_REF (store_info)))
7550 break;
7552 store_info = vect_orig_stmt (store_info);
7553 /* Free the attached stmt_vec_info and remove the stmt. */
7554 vinfo->remove_stmt (store_info);
7556 /* Invalidate SLP_TREE_REPRESENTATIVE in case we released it
7557 to not crash in vect_free_slp_tree later. */
7558 if (SLP_TREE_REPRESENTATIVE (root) == store_info)
7559 SLP_TREE_REPRESENTATIVE (root) = NULL;