* gcc.dg/Wtrampolines.c: XFAIL AIX.
[official-gcc.git] / gcc / tree-vect-slp.c
blob62f060c2c81fcef57324b6c02b5d352c7ba4c97c
1 /* SLP - Basic Block Vectorization
2 Copyright (C) 2007-2016 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 "params.h"
36 #include "fold-const.h"
37 #include "stor-layout.h"
38 #include "gimple-iterator.h"
39 #include "cfgloop.h"
40 #include "tree-vectorizer.h"
41 #include "langhooks.h"
42 #include "gimple-walk.h"
43 #include "dbgcnt.h"
46 /* Recursively free the memory allocated for the SLP tree rooted at NODE. */
48 static void
49 vect_free_slp_tree (slp_tree node)
51 int i;
52 slp_tree child;
54 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
55 vect_free_slp_tree (child);
57 gimple *stmt;
58 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
59 /* After transform some stmts are removed and thus their vinfo is gone. */
60 if (vinfo_for_stmt (stmt))
62 gcc_assert (STMT_VINFO_NUM_SLP_USES (vinfo_for_stmt (stmt)) > 0);
63 STMT_VINFO_NUM_SLP_USES (vinfo_for_stmt (stmt))--;
66 SLP_TREE_CHILDREN (node).release ();
67 SLP_TREE_SCALAR_STMTS (node).release ();
68 SLP_TREE_VEC_STMTS (node).release ();
69 SLP_TREE_LOAD_PERMUTATION (node).release ();
71 free (node);
75 /* Free the memory allocated for the SLP instance. */
77 void
78 vect_free_slp_instance (slp_instance instance)
80 vect_free_slp_tree (SLP_INSTANCE_TREE (instance));
81 SLP_INSTANCE_LOADS (instance).release ();
82 free (instance);
86 /* Create an SLP node for SCALAR_STMTS. */
88 static slp_tree
89 vect_create_new_slp_node (vec<gimple *> scalar_stmts)
91 slp_tree node;
92 gimple *stmt = scalar_stmts[0];
93 unsigned int nops;
95 if (is_gimple_call (stmt))
96 nops = gimple_call_num_args (stmt);
97 else if (is_gimple_assign (stmt))
99 nops = gimple_num_ops (stmt) - 1;
100 if (gimple_assign_rhs_code (stmt) == COND_EXPR)
101 nops++;
103 else
104 return NULL;
106 node = XNEW (struct _slp_tree);
107 SLP_TREE_SCALAR_STMTS (node) = scalar_stmts;
108 SLP_TREE_VEC_STMTS (node).create (0);
109 SLP_TREE_CHILDREN (node).create (nops);
110 SLP_TREE_LOAD_PERMUTATION (node) = vNULL;
111 SLP_TREE_TWO_OPERATORS (node) = false;
112 SLP_TREE_DEF_TYPE (node) = vect_internal_def;
114 unsigned i;
115 FOR_EACH_VEC_ELT (scalar_stmts, i, stmt)
116 STMT_VINFO_NUM_SLP_USES (vinfo_for_stmt (stmt))++;
118 return node;
122 /* This structure is used in creation of an SLP tree. Each instance
123 corresponds to the same operand in a group of scalar stmts in an SLP
124 node. */
125 typedef struct _slp_oprnd_info
127 /* Def-stmts for the operands. */
128 vec<gimple *> def_stmts;
129 /* Information about the first statement, its vector def-type, type, the
130 operand itself in case it's constant, and an indication if it's a pattern
131 stmt. */
132 enum vect_def_type first_dt;
133 tree first_op_type;
134 bool first_pattern;
135 bool second_pattern;
136 } *slp_oprnd_info;
139 /* Allocate operands info for NOPS operands, and GROUP_SIZE def-stmts for each
140 operand. */
141 static vec<slp_oprnd_info>
142 vect_create_oprnd_info (int nops, int group_size)
144 int i;
145 slp_oprnd_info oprnd_info;
146 vec<slp_oprnd_info> oprnds_info;
148 oprnds_info.create (nops);
149 for (i = 0; i < nops; i++)
151 oprnd_info = XNEW (struct _slp_oprnd_info);
152 oprnd_info->def_stmts.create (group_size);
153 oprnd_info->first_dt = vect_uninitialized_def;
154 oprnd_info->first_op_type = NULL_TREE;
155 oprnd_info->first_pattern = false;
156 oprnd_info->second_pattern = false;
157 oprnds_info.quick_push (oprnd_info);
160 return oprnds_info;
164 /* Free operands info. */
166 static void
167 vect_free_oprnd_info (vec<slp_oprnd_info> &oprnds_info)
169 int i;
170 slp_oprnd_info oprnd_info;
172 FOR_EACH_VEC_ELT (oprnds_info, i, oprnd_info)
174 oprnd_info->def_stmts.release ();
175 XDELETE (oprnd_info);
178 oprnds_info.release ();
182 /* Find the place of the data-ref in STMT in the interleaving chain that starts
183 from FIRST_STMT. Return -1 if the data-ref is not a part of the chain. */
185 static int
186 vect_get_place_in_interleaving_chain (gimple *stmt, gimple *first_stmt)
188 gimple *next_stmt = first_stmt;
189 int result = 0;
191 if (first_stmt != GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt)))
192 return -1;
196 if (next_stmt == stmt)
197 return result;
198 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
199 if (next_stmt)
200 result += GROUP_GAP (vinfo_for_stmt (next_stmt));
202 while (next_stmt);
204 return -1;
208 /* Get the defs for the rhs of STMT (collect them in OPRNDS_INFO), check that
209 they are of a valid type and that they match the defs of the first stmt of
210 the SLP group (stored in OPRNDS_INFO). This function tries to match stmts
211 by swapping operands of STMT when possible. Non-zero *SWAP indicates swap
212 is required for cond_expr stmts. Specifically, *SWAP is 1 if STMT is cond
213 and operands of comparison need to be swapped; *SWAP is 2 if STMT is cond
214 and code of comparison needs to be inverted. If there is any operand swap
215 in this function, *SWAP is set to non-zero value.
216 If there was a fatal error return -1; if the error could be corrected by
217 swapping operands of father node of this one, return 1; if everything is
218 ok return 0. */
220 static int
221 vect_get_and_check_slp_defs (vec_info *vinfo, unsigned char *swap,
222 gimple *stmt, unsigned stmt_num,
223 vec<slp_oprnd_info> *oprnds_info)
225 tree oprnd;
226 unsigned int i, number_of_oprnds;
227 gimple *def_stmt;
228 enum vect_def_type dt = vect_uninitialized_def;
229 bool pattern = false;
230 slp_oprnd_info oprnd_info;
231 int first_op_idx = 1;
232 bool commutative = false;
233 bool first_op_cond = false;
234 bool first = stmt_num == 0;
235 bool second = stmt_num == 1;
237 if (is_gimple_call (stmt))
239 number_of_oprnds = gimple_call_num_args (stmt);
240 first_op_idx = 3;
242 else if (is_gimple_assign (stmt))
244 enum tree_code code = gimple_assign_rhs_code (stmt);
245 number_of_oprnds = gimple_num_ops (stmt) - 1;
246 /* Swap can only be done for cond_expr if asked to, otherwise we
247 could result in different comparison code to the first stmt. */
248 if (gimple_assign_rhs_code (stmt) == COND_EXPR
249 && COMPARISON_CLASS_P (gimple_assign_rhs1 (stmt)))
251 first_op_cond = true;
252 number_of_oprnds++;
254 else
255 commutative = commutative_tree_code (code);
257 else
258 return -1;
260 bool swapped = (*swap != 0);
261 gcc_assert (!swapped || first_op_cond);
262 for (i = 0; i < number_of_oprnds; i++)
264 again:
265 if (first_op_cond)
267 /* Map indicating how operands of cond_expr should be swapped. */
268 int maps[3][4] = {{0, 1, 2, 3}, {1, 0, 2, 3}, {0, 1, 3, 2}};
269 int *map = maps[*swap];
271 if (i < 2)
272 oprnd = TREE_OPERAND (gimple_op (stmt, first_op_idx), map[i]);
273 else
274 oprnd = gimple_op (stmt, map[i]);
276 else
277 oprnd = gimple_op (stmt, first_op_idx + (swapped ? !i : i));
279 oprnd_info = (*oprnds_info)[i];
281 if (!vect_is_simple_use (oprnd, vinfo, &def_stmt, &dt))
283 if (dump_enabled_p ())
285 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
286 "Build SLP failed: can't analyze def for ");
287 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, oprnd);
288 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
291 return -1;
294 /* Check if DEF_STMT is a part of a pattern in LOOP and get the def stmt
295 from the pattern. Check that all the stmts of the node are in the
296 pattern. */
297 if (def_stmt && gimple_bb (def_stmt)
298 && vect_stmt_in_region_p (vinfo, def_stmt)
299 && vinfo_for_stmt (def_stmt)
300 && STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (def_stmt))
301 && !STMT_VINFO_RELEVANT (vinfo_for_stmt (def_stmt))
302 && !STMT_VINFO_LIVE_P (vinfo_for_stmt (def_stmt)))
304 pattern = true;
305 if (!first && !oprnd_info->first_pattern
306 /* Allow different pattern state for the defs of the
307 first stmt in reduction chains. */
308 && (oprnd_info->first_dt != vect_reduction_def
309 || (!second && !oprnd_info->second_pattern)))
311 if (i == 0
312 && !swapped
313 && commutative)
315 swapped = true;
316 goto again;
319 if (dump_enabled_p ())
321 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
322 "Build SLP failed: some of the stmts"
323 " are in a pattern, and others are not ");
324 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, oprnd);
325 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
328 return 1;
331 def_stmt = STMT_VINFO_RELATED_STMT (vinfo_for_stmt (def_stmt));
332 dt = STMT_VINFO_DEF_TYPE (vinfo_for_stmt (def_stmt));
334 if (dt == vect_unknown_def_type)
336 if (dump_enabled_p ())
337 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
338 "Unsupported pattern.\n");
339 return -1;
342 switch (gimple_code (def_stmt))
344 case GIMPLE_PHI:
345 case GIMPLE_ASSIGN:
346 break;
348 default:
349 if (dump_enabled_p ())
350 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
351 "unsupported defining stmt:\n");
352 return -1;
356 if (second)
357 oprnd_info->second_pattern = pattern;
359 if (first)
361 oprnd_info->first_dt = dt;
362 oprnd_info->first_pattern = pattern;
363 oprnd_info->first_op_type = TREE_TYPE (oprnd);
365 else
367 /* Not first stmt of the group, check that the def-stmt/s match
368 the def-stmt/s of the first stmt. Allow different definition
369 types for reduction chains: the first stmt must be a
370 vect_reduction_def (a phi node), and the rest
371 vect_internal_def. */
372 if (((oprnd_info->first_dt != dt
373 && !(oprnd_info->first_dt == vect_reduction_def
374 && dt == vect_internal_def)
375 && !((oprnd_info->first_dt == vect_external_def
376 || oprnd_info->first_dt == vect_constant_def)
377 && (dt == vect_external_def
378 || dt == vect_constant_def)))
379 || !types_compatible_p (oprnd_info->first_op_type,
380 TREE_TYPE (oprnd))))
382 /* Try swapping operands if we got a mismatch. */
383 if (i == 0
384 && !swapped
385 && commutative)
387 swapped = true;
388 goto again;
391 if (dump_enabled_p ())
392 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
393 "Build SLP failed: different types\n");
395 return 1;
399 /* Check the types of the definitions. */
400 switch (dt)
402 case vect_constant_def:
403 case vect_external_def:
404 case vect_reduction_def:
405 break;
407 case vect_internal_def:
408 oprnd_info->def_stmts.quick_push (def_stmt);
409 break;
411 default:
412 /* FORNOW: Not supported. */
413 if (dump_enabled_p ())
415 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
416 "Build SLP failed: illegal type of def ");
417 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, oprnd);
418 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
421 return -1;
425 /* Swap operands. */
426 if (swapped)
428 /* If there are already uses of this stmt in a SLP instance then
429 we've committed to the operand order and can't swap it. */
430 if (STMT_VINFO_NUM_SLP_USES (vinfo_for_stmt (stmt)) != 0)
432 if (dump_enabled_p ())
434 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
435 "Build SLP failed: cannot swap operands of "
436 "shared stmt ");
437 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
439 return -1;
442 if (first_op_cond)
444 tree cond = gimple_assign_rhs1 (stmt);
445 enum tree_code code = TREE_CODE (cond);
447 /* Swap. */
448 if (*swap == 1)
450 swap_ssa_operands (stmt, &TREE_OPERAND (cond, 0),
451 &TREE_OPERAND (cond, 1));
452 TREE_SET_CODE (cond, swap_tree_comparison (code));
454 /* Invert. */
455 else
457 swap_ssa_operands (stmt, gimple_assign_rhs2_ptr (stmt),
458 gimple_assign_rhs3_ptr (stmt));
459 bool honor_nans = HONOR_NANS (TREE_OPERAND (cond, 0));
460 code = invert_tree_comparison (TREE_CODE (cond), honor_nans);
461 gcc_assert (code != ERROR_MARK);
462 TREE_SET_CODE (cond, code);
465 else
466 swap_ssa_operands (stmt, gimple_assign_rhs1_ptr (stmt),
467 gimple_assign_rhs2_ptr (stmt));
468 if (dump_enabled_p ())
470 dump_printf_loc (MSG_NOTE, vect_location,
471 "swapped operands to match def types in ");
472 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
476 *swap = swapped;
477 return 0;
481 /* Verify if the scalar stmts STMTS are isomorphic, require data
482 permutation or are of unsupported types of operation. Return
483 true if they are, otherwise return false and indicate in *MATCHES
484 which stmts are not isomorphic to the first one. If MATCHES[0]
485 is false then this indicates the comparison could not be
486 carried out or the stmts will never be vectorized by SLP.
488 Note COND_EXPR is possibly ismorphic to another one after swapping its
489 operands. Set SWAP[i] to 1 if stmt I is COND_EXPR and isomorphic to
490 the first stmt by swapping the two operands of comparison; set SWAP[i]
491 to 2 if stmt I is isormorphic to the first stmt by inverting the code
492 of comparison. Take A1 >= B1 ? X1 : Y1 as an exmple, it can be swapped
493 to (B1 <= A1 ? X1 : Y1); or be inverted to (A1 < B1) ? Y1 : X1. */
495 static bool
496 vect_build_slp_tree_1 (vec_info *vinfo, unsigned char *swap,
497 vec<gimple *> stmts, unsigned int group_size,
498 unsigned nops, unsigned int *max_nunits,
499 bool *matches, bool *two_operators)
501 unsigned int i;
502 gimple *first_stmt = stmts[0], *stmt = stmts[0];
503 enum tree_code first_stmt_code = ERROR_MARK;
504 enum tree_code alt_stmt_code = ERROR_MARK;
505 enum tree_code rhs_code = ERROR_MARK;
506 enum tree_code first_cond_code = ERROR_MARK;
507 tree lhs;
508 bool need_same_oprnds = false;
509 tree vectype = NULL_TREE, scalar_type, first_op1 = NULL_TREE;
510 optab optab;
511 int icode;
512 machine_mode optab_op2_mode;
513 machine_mode vec_mode;
514 HOST_WIDE_INT dummy;
515 gimple *first_load = NULL, *prev_first_load = NULL;
517 /* For every stmt in NODE find its def stmt/s. */
518 FOR_EACH_VEC_ELT (stmts, i, stmt)
520 swap[i] = 0;
521 matches[i] = false;
523 if (dump_enabled_p ())
525 dump_printf_loc (MSG_NOTE, vect_location, "Build SLP for ");
526 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
529 /* Fail to vectorize statements marked as unvectorizable. */
530 if (!STMT_VINFO_VECTORIZABLE (vinfo_for_stmt (stmt)))
532 if (dump_enabled_p ())
534 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
535 "Build SLP failed: unvectorizable statement ");
536 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
538 /* Fatal mismatch. */
539 matches[0] = false;
540 return false;
543 lhs = gimple_get_lhs (stmt);
544 if (lhs == NULL_TREE)
546 if (dump_enabled_p ())
548 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
549 "Build SLP failed: not GIMPLE_ASSIGN nor "
550 "GIMPLE_CALL ");
551 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
553 /* Fatal mismatch. */
554 matches[0] = false;
555 return false;
558 scalar_type = vect_get_smallest_scalar_type (stmt, &dummy, &dummy);
559 vectype = get_vectype_for_scalar_type (scalar_type);
560 if (!vectype)
562 if (dump_enabled_p ())
564 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
565 "Build SLP failed: unsupported data-type ");
566 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
567 scalar_type);
568 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
570 /* Fatal mismatch. */
571 matches[0] = false;
572 return false;
575 /* If populating the vector type requires unrolling then fail
576 before adjusting *max_nunits for basic-block vectorization. */
577 if (is_a <bb_vec_info> (vinfo)
578 && TYPE_VECTOR_SUBPARTS (vectype) > group_size)
580 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
581 "Build SLP failed: unrolling required "
582 "in basic block SLP\n");
583 /* Fatal mismatch. */
584 matches[0] = false;
585 return false;
588 /* In case of multiple types we need to detect the smallest type. */
589 if (*max_nunits < TYPE_VECTOR_SUBPARTS (vectype))
590 *max_nunits = TYPE_VECTOR_SUBPARTS (vectype);
592 if (gcall *call_stmt = dyn_cast <gcall *> (stmt))
594 rhs_code = CALL_EXPR;
595 if (gimple_call_internal_p (call_stmt)
596 || gimple_call_tail_p (call_stmt)
597 || gimple_call_noreturn_p (call_stmt)
598 || !gimple_call_nothrow_p (call_stmt)
599 || gimple_call_chain (call_stmt))
601 if (dump_enabled_p ())
603 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
604 "Build SLP failed: unsupported call type ");
605 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
606 call_stmt, 0);
608 /* Fatal mismatch. */
609 matches[0] = false;
610 return false;
613 else
614 rhs_code = gimple_assign_rhs_code (stmt);
616 /* Check the operation. */
617 if (i == 0)
619 first_stmt_code = rhs_code;
621 /* Shift arguments should be equal in all the packed stmts for a
622 vector shift with scalar shift operand. */
623 if (rhs_code == LSHIFT_EXPR || rhs_code == RSHIFT_EXPR
624 || rhs_code == LROTATE_EXPR
625 || rhs_code == RROTATE_EXPR)
627 vec_mode = TYPE_MODE (vectype);
629 /* First see if we have a vector/vector shift. */
630 optab = optab_for_tree_code (rhs_code, vectype,
631 optab_vector);
633 if (!optab
634 || optab_handler (optab, vec_mode) == CODE_FOR_nothing)
636 /* No vector/vector shift, try for a vector/scalar shift. */
637 optab = optab_for_tree_code (rhs_code, vectype,
638 optab_scalar);
640 if (!optab)
642 if (dump_enabled_p ())
643 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
644 "Build SLP failed: no optab.\n");
645 /* Fatal mismatch. */
646 matches[0] = false;
647 return false;
649 icode = (int) optab_handler (optab, vec_mode);
650 if (icode == CODE_FOR_nothing)
652 if (dump_enabled_p ())
653 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
654 "Build SLP failed: "
655 "op not supported by target.\n");
656 /* Fatal mismatch. */
657 matches[0] = false;
658 return false;
660 optab_op2_mode = insn_data[icode].operand[2].mode;
661 if (!VECTOR_MODE_P (optab_op2_mode))
663 need_same_oprnds = true;
664 first_op1 = gimple_assign_rhs2 (stmt);
668 else if (rhs_code == WIDEN_LSHIFT_EXPR)
670 need_same_oprnds = true;
671 first_op1 = gimple_assign_rhs2 (stmt);
674 else
676 if (first_stmt_code != rhs_code
677 && alt_stmt_code == ERROR_MARK)
678 alt_stmt_code = rhs_code;
679 if (first_stmt_code != rhs_code
680 && (first_stmt_code != IMAGPART_EXPR
681 || rhs_code != REALPART_EXPR)
682 && (first_stmt_code != REALPART_EXPR
683 || rhs_code != IMAGPART_EXPR)
684 /* Handle mismatches in plus/minus by computing both
685 and merging the results. */
686 && !((first_stmt_code == PLUS_EXPR
687 || first_stmt_code == MINUS_EXPR)
688 && (alt_stmt_code == PLUS_EXPR
689 || alt_stmt_code == MINUS_EXPR)
690 && rhs_code == alt_stmt_code)
691 && !(STMT_VINFO_GROUPED_ACCESS (vinfo_for_stmt (stmt))
692 && (first_stmt_code == ARRAY_REF
693 || first_stmt_code == BIT_FIELD_REF
694 || first_stmt_code == INDIRECT_REF
695 || first_stmt_code == COMPONENT_REF
696 || first_stmt_code == MEM_REF)))
698 if (dump_enabled_p ())
700 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
701 "Build SLP failed: different operation "
702 "in stmt ");
703 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
704 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
705 "original stmt ");
706 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
707 first_stmt, 0);
709 /* Mismatch. */
710 continue;
713 if (need_same_oprnds
714 && !operand_equal_p (first_op1, gimple_assign_rhs2 (stmt), 0))
716 if (dump_enabled_p ())
718 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
719 "Build SLP failed: different shift "
720 "arguments in ");
721 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
723 /* Mismatch. */
724 continue;
727 if (rhs_code == CALL_EXPR)
729 gimple *first_stmt = stmts[0];
730 if (gimple_call_num_args (stmt) != nops
731 || !operand_equal_p (gimple_call_fn (first_stmt),
732 gimple_call_fn (stmt), 0)
733 || gimple_call_fntype (first_stmt)
734 != gimple_call_fntype (stmt))
736 if (dump_enabled_p ())
738 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
739 "Build SLP failed: different calls in ");
740 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
741 stmt, 0);
743 /* Mismatch. */
744 continue;
749 /* Grouped store or load. */
750 if (STMT_VINFO_GROUPED_ACCESS (vinfo_for_stmt (stmt)))
752 if (REFERENCE_CLASS_P (lhs))
754 /* Store. */
757 else
759 /* Load. */
760 first_load = GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt));
761 if (prev_first_load)
763 /* Check that there are no loads from different interleaving
764 chains in the same node. */
765 if (prev_first_load != first_load)
767 if (dump_enabled_p ())
769 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
770 vect_location,
771 "Build SLP failed: different "
772 "interleaving chains in one node ");
773 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
774 stmt, 0);
776 /* Mismatch. */
777 continue;
780 else
781 prev_first_load = first_load;
783 } /* Grouped access. */
784 else
786 if (TREE_CODE_CLASS (rhs_code) == tcc_reference)
788 /* Not grouped load. */
789 if (dump_enabled_p ())
791 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
792 "Build SLP failed: not grouped load ");
793 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
796 /* FORNOW: Not grouped loads are not supported. */
797 /* Fatal mismatch. */
798 matches[0] = false;
799 return false;
802 /* Not memory operation. */
803 if (TREE_CODE_CLASS (rhs_code) != tcc_binary
804 && TREE_CODE_CLASS (rhs_code) != tcc_unary
805 && TREE_CODE_CLASS (rhs_code) != tcc_expression
806 && TREE_CODE_CLASS (rhs_code) != tcc_comparison
807 && rhs_code != CALL_EXPR)
809 if (dump_enabled_p ())
811 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
812 "Build SLP failed: operation");
813 dump_printf (MSG_MISSED_OPTIMIZATION, " unsupported ");
814 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
816 /* Fatal mismatch. */
817 matches[0] = false;
818 return false;
821 if (rhs_code == COND_EXPR)
823 tree cond_expr = gimple_assign_rhs1 (stmt);
824 enum tree_code cond_code = TREE_CODE (cond_expr);
825 enum tree_code swap_code = ERROR_MARK;
826 enum tree_code invert_code = ERROR_MARK;
828 if (i == 0)
829 first_cond_code = TREE_CODE (cond_expr);
830 else if (TREE_CODE_CLASS (cond_code) == tcc_comparison)
832 bool honor_nans = HONOR_NANS (TREE_OPERAND (cond_expr, 0));
833 swap_code = swap_tree_comparison (cond_code);
834 invert_code = invert_tree_comparison (cond_code, honor_nans);
837 if (first_cond_code == cond_code)
839 /* Isomorphic can be achieved by swapping. */
840 else if (first_cond_code == swap_code)
841 swap[i] = 1;
842 /* Isomorphic can be achieved by inverting. */
843 else if (first_cond_code == invert_code)
844 swap[i] = 2;
845 else
847 if (dump_enabled_p ())
849 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
850 "Build SLP failed: different"
851 " operation");
852 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
853 stmt, 0);
855 /* Mismatch. */
856 continue;
861 matches[i] = true;
864 for (i = 0; i < group_size; ++i)
865 if (!matches[i])
866 return false;
868 /* If we allowed a two-operation SLP node verify the target can cope
869 with the permute we are going to use. */
870 if (alt_stmt_code != ERROR_MARK
871 && TREE_CODE_CLASS (alt_stmt_code) != tcc_reference)
873 unsigned char *sel
874 = XALLOCAVEC (unsigned char, TYPE_VECTOR_SUBPARTS (vectype));
875 for (i = 0; i < TYPE_VECTOR_SUBPARTS (vectype); ++i)
877 sel[i] = i;
878 if (gimple_assign_rhs_code (stmts[i % group_size]) == alt_stmt_code)
879 sel[i] += TYPE_VECTOR_SUBPARTS (vectype);
881 if (!can_vec_perm_p (TYPE_MODE (vectype), false, sel))
883 for (i = 0; i < group_size; ++i)
884 if (gimple_assign_rhs_code (stmts[i]) == alt_stmt_code)
886 matches[i] = false;
887 if (dump_enabled_p ())
889 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
890 "Build SLP failed: different operation "
891 "in stmt ");
892 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
893 stmts[i], 0);
894 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
895 "original stmt ");
896 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
897 first_stmt, 0);
900 return false;
902 *two_operators = true;
905 return true;
908 /* Recursively build an SLP tree starting from NODE.
909 Fail (and return a value not equal to zero) if def-stmts are not
910 isomorphic, require data permutation or are of unsupported types of
911 operation. Otherwise, return 0.
912 The value returned is the depth in the SLP tree where a mismatch
913 was found. */
915 static slp_tree
916 vect_build_slp_tree (vec_info *vinfo,
917 vec<gimple *> stmts, unsigned int group_size,
918 unsigned int *max_nunits,
919 vec<slp_tree> *loads,
920 bool *matches, unsigned *npermutes, unsigned *tree_size,
921 unsigned max_tree_size)
923 unsigned nops, i, this_tree_size = 0, this_max_nunits = *max_nunits;
924 gimple *stmt;
925 slp_tree node;
927 matches[0] = false;
929 stmt = stmts[0];
930 if (is_gimple_call (stmt))
931 nops = gimple_call_num_args (stmt);
932 else if (is_gimple_assign (stmt))
934 nops = gimple_num_ops (stmt) - 1;
935 if (gimple_assign_rhs_code (stmt) == COND_EXPR)
936 nops++;
938 else
939 return NULL;
941 bool two_operators = false;
942 unsigned char *swap = XALLOCAVEC (unsigned char, group_size);
943 if (!vect_build_slp_tree_1 (vinfo, swap,
944 stmts, group_size, nops,
945 &this_max_nunits, matches, &two_operators))
946 return NULL;
948 /* If the SLP node is a load, terminate the recursion. */
949 if (STMT_VINFO_GROUPED_ACCESS (vinfo_for_stmt (stmt))
950 && DR_IS_READ (STMT_VINFO_DATA_REF (vinfo_for_stmt (stmt))))
952 *max_nunits = this_max_nunits;
953 node = vect_create_new_slp_node (stmts);
954 loads->safe_push (node);
955 return node;
958 /* Get at the operands, verifying they are compatible. */
959 vec<slp_oprnd_info> oprnds_info = vect_create_oprnd_info (nops, group_size);
960 slp_oprnd_info oprnd_info;
961 FOR_EACH_VEC_ELT (stmts, i, stmt)
963 int res = vect_get_and_check_slp_defs (vinfo, &swap[i],
964 stmt, i, &oprnds_info);
965 if (res != 0)
966 matches[(res == -1) ? 0 : i] = false;
967 if (!matches[0])
968 break;
970 for (i = 0; i < group_size; ++i)
971 if (!matches[i])
973 vect_free_oprnd_info (oprnds_info);
974 return NULL;
977 auto_vec<slp_tree, 4> children;
978 auto_vec<slp_tree> this_loads;
980 stmt = stmts[0];
982 /* Create SLP_TREE nodes for the definition node/s. */
983 FOR_EACH_VEC_ELT (oprnds_info, i, oprnd_info)
985 slp_tree child;
986 unsigned old_nloads = this_loads.length ();
987 unsigned old_tree_size = this_tree_size;
988 unsigned int j;
990 if (oprnd_info->first_dt != vect_internal_def)
991 continue;
993 if (++this_tree_size > max_tree_size)
995 FOR_EACH_VEC_ELT (children, j, child)
996 vect_free_slp_tree (child);
997 vect_free_oprnd_info (oprnds_info);
998 return NULL;
1001 if ((child = vect_build_slp_tree (vinfo, oprnd_info->def_stmts,
1002 group_size, &this_max_nunits,
1003 &this_loads, matches, npermutes,
1004 &this_tree_size,
1005 max_tree_size)) != NULL)
1007 /* If we have all children of child built up from scalars then just
1008 throw that away and build it up this node from scalars. */
1009 if (!SLP_TREE_CHILDREN (child).is_empty ()
1010 /* ??? Rejecting patterns this way doesn't work. We'd have to
1011 do extra work to cancel the pattern so the uses see the
1012 scalar version. */
1013 && !is_pattern_stmt_p
1014 (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (child)[0])))
1016 slp_tree grandchild;
1018 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child), j, grandchild)
1019 if (SLP_TREE_DEF_TYPE (grandchild) == vect_internal_def)
1020 break;
1021 if (!grandchild)
1023 /* Roll back. */
1024 this_loads.truncate (old_nloads);
1025 this_tree_size = old_tree_size;
1026 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child), j, grandchild)
1027 vect_free_slp_tree (grandchild);
1028 SLP_TREE_CHILDREN (child).truncate (0);
1030 dump_printf_loc (MSG_NOTE, vect_location,
1031 "Building parent vector operands from "
1032 "scalars instead\n");
1033 oprnd_info->def_stmts = vNULL;
1034 SLP_TREE_DEF_TYPE (child) = vect_external_def;
1035 children.safe_push (child);
1036 continue;
1040 oprnd_info->def_stmts = vNULL;
1041 children.safe_push (child);
1042 continue;
1045 /* If the SLP build failed fatally and we analyze a basic-block
1046 simply treat nodes we fail to build as externally defined
1047 (and thus build vectors from the scalar defs).
1048 The cost model will reject outright expensive cases.
1049 ??? This doesn't treat cases where permutation ultimatively
1050 fails (or we don't try permutation below). Ideally we'd
1051 even compute a permutation that will end up with the maximum
1052 SLP tree size... */
1053 if (is_a <bb_vec_info> (vinfo)
1054 && !matches[0]
1055 /* ??? Rejecting patterns this way doesn't work. We'd have to
1056 do extra work to cancel the pattern so the uses see the
1057 scalar version. */
1058 && !is_pattern_stmt_p (vinfo_for_stmt (stmt)))
1060 dump_printf_loc (MSG_NOTE, vect_location,
1061 "Building vector operands from scalars\n");
1062 child = vect_create_new_slp_node (oprnd_info->def_stmts);
1063 SLP_TREE_DEF_TYPE (child) = vect_external_def;
1064 children.safe_push (child);
1065 oprnd_info->def_stmts = vNULL;
1066 continue;
1069 /* If the SLP build for operand zero failed and operand zero
1070 and one can be commutated try that for the scalar stmts
1071 that failed the match. */
1072 if (i == 0
1073 /* A first scalar stmt mismatch signals a fatal mismatch. */
1074 && matches[0]
1075 /* ??? For COND_EXPRs we can swap the comparison operands
1076 as well as the arms under some constraints. */
1077 && nops == 2
1078 && oprnds_info[1]->first_dt == vect_internal_def
1079 && is_gimple_assign (stmt)
1080 && commutative_tree_code (gimple_assign_rhs_code (stmt))
1081 && ! two_operators
1082 /* Do so only if the number of not successful permutes was nor more
1083 than a cut-ff as re-trying the recursive match on
1084 possibly each level of the tree would expose exponential
1085 behavior. */
1086 && *npermutes < 4)
1088 /* Verify if we can safely swap or if we committed to a specific
1089 operand order already. */
1090 for (j = 0; j < group_size; ++j)
1091 if (!matches[j]
1092 && (swap[j] != 0
1093 || STMT_VINFO_NUM_SLP_USES (vinfo_for_stmt (stmts[j]))))
1095 if (dump_enabled_p ())
1097 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1098 "Build SLP failed: cannot swap operands "
1099 "of shared stmt ");
1100 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
1101 stmts[j], 0);
1103 goto fail;
1106 /* Swap mismatched definition stmts. */
1107 dump_printf_loc (MSG_NOTE, vect_location,
1108 "Re-trying with swapped operands of stmts ");
1109 for (j = 0; j < group_size; ++j)
1110 if (!matches[j])
1112 std::swap (oprnds_info[0]->def_stmts[j],
1113 oprnds_info[1]->def_stmts[j]);
1114 dump_printf (MSG_NOTE, "%d ", j);
1116 dump_printf (MSG_NOTE, "\n");
1117 /* And try again with scratch 'matches' ... */
1118 bool *tem = XALLOCAVEC (bool, group_size);
1119 if ((child = vect_build_slp_tree (vinfo, oprnd_info->def_stmts,
1120 group_size, &this_max_nunits,
1121 &this_loads, tem, npermutes,
1122 &this_tree_size,
1123 max_tree_size)) != NULL)
1125 /* ... so if successful we can apply the operand swapping
1126 to the GIMPLE IL. This is necessary because for example
1127 vect_get_slp_defs uses operand indexes and thus expects
1128 canonical operand order. This is also necessary even
1129 if we end up building the operand from scalars as
1130 we'll continue to process swapped operand two. */
1131 for (j = 0; j < group_size; ++j)
1133 gimple *stmt = stmts[j];
1134 gimple_set_plf (stmt, GF_PLF_1, false);
1136 for (j = 0; j < group_size; ++j)
1138 gimple *stmt = stmts[j];
1139 if (!matches[j])
1141 /* Avoid swapping operands twice. */
1142 if (gimple_plf (stmt, GF_PLF_1))
1143 continue;
1144 swap_ssa_operands (stmt, gimple_assign_rhs1_ptr (stmt),
1145 gimple_assign_rhs2_ptr (stmt));
1146 gimple_set_plf (stmt, GF_PLF_1, true);
1149 /* Verify we swap all duplicates or none. */
1150 if (flag_checking)
1151 for (j = 0; j < group_size; ++j)
1153 gimple *stmt = stmts[j];
1154 gcc_assert (gimple_plf (stmt, GF_PLF_1) == ! matches[j]);
1157 /* If we have all children of child built up from scalars then
1158 just throw that away and build it up this node from scalars. */
1159 if (!SLP_TREE_CHILDREN (child).is_empty ()
1160 /* ??? Rejecting patterns this way doesn't work. We'd have
1161 to do extra work to cancel the pattern so the uses see the
1162 scalar version. */
1163 && !is_pattern_stmt_p
1164 (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (child)[0])))
1166 unsigned int j;
1167 slp_tree grandchild;
1169 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child), j, grandchild)
1170 if (SLP_TREE_DEF_TYPE (grandchild) == vect_internal_def)
1171 break;
1172 if (!grandchild)
1174 /* Roll back. */
1175 this_loads.truncate (old_nloads);
1176 this_tree_size = old_tree_size;
1177 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child), j, grandchild)
1178 vect_free_slp_tree (grandchild);
1179 SLP_TREE_CHILDREN (child).truncate (0);
1181 dump_printf_loc (MSG_NOTE, vect_location,
1182 "Building parent vector operands from "
1183 "scalars instead\n");
1184 oprnd_info->def_stmts = vNULL;
1185 SLP_TREE_DEF_TYPE (child) = vect_external_def;
1186 children.safe_push (child);
1187 continue;
1191 oprnd_info->def_stmts = vNULL;
1192 children.safe_push (child);
1193 continue;
1196 ++*npermutes;
1199 fail:
1200 gcc_assert (child == NULL);
1201 FOR_EACH_VEC_ELT (children, j, child)
1202 vect_free_slp_tree (child);
1203 vect_free_oprnd_info (oprnds_info);
1204 return NULL;
1207 vect_free_oprnd_info (oprnds_info);
1209 if (tree_size)
1210 *tree_size += this_tree_size;
1211 *max_nunits = this_max_nunits;
1212 loads->safe_splice (this_loads);
1214 node = vect_create_new_slp_node (stmts);
1215 SLP_TREE_TWO_OPERATORS (node) = two_operators;
1216 SLP_TREE_CHILDREN (node).splice (children);
1217 return node;
1220 /* Dump a slp tree NODE using flags specified in DUMP_KIND. */
1222 static void
1223 vect_print_slp_tree (int dump_kind, location_t loc, slp_tree node)
1225 int i;
1226 gimple *stmt;
1227 slp_tree child;
1229 dump_printf_loc (dump_kind, loc, "node%s\n",
1230 SLP_TREE_DEF_TYPE (node) != vect_internal_def
1231 ? " (external)" : "");
1232 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
1234 dump_printf_loc (dump_kind, loc, "\tstmt %d ", i);
1235 dump_gimple_stmt (dump_kind, TDF_SLIM, stmt, 0);
1237 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1238 vect_print_slp_tree (dump_kind, loc, child);
1242 /* Mark the tree rooted at NODE with MARK (PURE_SLP or HYBRID).
1243 If MARK is HYBRID, it refers to a specific stmt in NODE (the stmt at index
1244 J). Otherwise, MARK is PURE_SLP and J is -1, which indicates that all the
1245 stmts in NODE are to be marked. */
1247 static void
1248 vect_mark_slp_stmts (slp_tree node, enum slp_vect_type mark, int j)
1250 int i;
1251 gimple *stmt;
1252 slp_tree child;
1254 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
1255 return;
1257 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
1258 if (j < 0 || i == j)
1259 STMT_SLP_TYPE (vinfo_for_stmt (stmt)) = mark;
1261 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1262 vect_mark_slp_stmts (child, mark, j);
1266 /* Mark the statements of the tree rooted at NODE as relevant (vect_used). */
1268 static void
1269 vect_mark_slp_stmts_relevant (slp_tree node)
1271 int i;
1272 gimple *stmt;
1273 stmt_vec_info stmt_info;
1274 slp_tree child;
1276 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
1277 return;
1279 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
1281 stmt_info = vinfo_for_stmt (stmt);
1282 gcc_assert (!STMT_VINFO_RELEVANT (stmt_info)
1283 || STMT_VINFO_RELEVANT (stmt_info) == vect_used_in_scope);
1284 STMT_VINFO_RELEVANT (stmt_info) = vect_used_in_scope;
1287 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1288 vect_mark_slp_stmts_relevant (child);
1292 /* Rearrange the statements of NODE according to PERMUTATION. */
1294 static void
1295 vect_slp_rearrange_stmts (slp_tree node, unsigned int group_size,
1296 vec<unsigned> permutation)
1298 gimple *stmt;
1299 vec<gimple *> tmp_stmts;
1300 unsigned int i;
1301 slp_tree child;
1303 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1304 vect_slp_rearrange_stmts (child, group_size, permutation);
1306 gcc_assert (group_size == SLP_TREE_SCALAR_STMTS (node).length ());
1307 tmp_stmts.create (group_size);
1308 tmp_stmts.quick_grow_cleared (group_size);
1310 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
1311 tmp_stmts[permutation[i]] = stmt;
1313 SLP_TREE_SCALAR_STMTS (node).release ();
1314 SLP_TREE_SCALAR_STMTS (node) = tmp_stmts;
1318 /* Attempt to reorder stmts in a reduction chain so that we don't
1319 require any load permutation. Return true if that was possible,
1320 otherwise return false. */
1322 static bool
1323 vect_attempt_slp_rearrange_stmts (slp_instance slp_instn)
1325 unsigned int group_size = SLP_INSTANCE_GROUP_SIZE (slp_instn);
1326 unsigned int i, j;
1327 unsigned int lidx;
1328 slp_tree node, load;
1330 /* Compare all the permutation sequences to the first one. We know
1331 that at least one load is permuted. */
1332 node = SLP_INSTANCE_LOADS (slp_instn)[0];
1333 if (!node->load_permutation.exists ())
1334 return false;
1335 for (i = 1; SLP_INSTANCE_LOADS (slp_instn).iterate (i, &load); ++i)
1337 if (!load->load_permutation.exists ())
1338 return false;
1339 FOR_EACH_VEC_ELT (load->load_permutation, j, lidx)
1340 if (lidx != node->load_permutation[j])
1341 return false;
1344 /* Check that the loads in the first sequence are different and there
1345 are no gaps between them. */
1346 auto_sbitmap load_index (group_size);
1347 bitmap_clear (load_index);
1348 FOR_EACH_VEC_ELT (node->load_permutation, i, lidx)
1350 if (lidx >= group_size)
1351 return false;
1352 if (bitmap_bit_p (load_index, lidx))
1353 return false;
1355 bitmap_set_bit (load_index, lidx);
1357 for (i = 0; i < group_size; i++)
1358 if (!bitmap_bit_p (load_index, i))
1359 return false;
1361 /* This permutation is valid for reduction. Since the order of the
1362 statements in the nodes is not important unless they are memory
1363 accesses, we can rearrange the statements in all the nodes
1364 according to the order of the loads. */
1365 vect_slp_rearrange_stmts (SLP_INSTANCE_TREE (slp_instn), group_size,
1366 node->load_permutation);
1368 /* We are done, no actual permutations need to be generated. */
1369 unsigned int unrolling_factor = SLP_INSTANCE_UNROLLING_FACTOR (slp_instn);
1370 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn), i, node)
1372 gimple *first_stmt = SLP_TREE_SCALAR_STMTS (node)[0];
1373 first_stmt = GROUP_FIRST_ELEMENT (vinfo_for_stmt (first_stmt));
1374 /* But we have to keep those permutations that are required because
1375 of handling of gaps. */
1376 if (unrolling_factor == 1
1377 || (group_size == GROUP_SIZE (vinfo_for_stmt (first_stmt))
1378 && GROUP_GAP (vinfo_for_stmt (first_stmt)) == 0))
1379 SLP_TREE_LOAD_PERMUTATION (node).release ();
1380 else
1381 for (j = 0; j < SLP_TREE_LOAD_PERMUTATION (node).length (); ++j)
1382 SLP_TREE_LOAD_PERMUTATION (node)[j] = j;
1385 return true;
1388 /* Check if the required load permutations in the SLP instance
1389 SLP_INSTN are supported. */
1391 static bool
1392 vect_supported_load_permutation_p (slp_instance slp_instn)
1394 unsigned int group_size = SLP_INSTANCE_GROUP_SIZE (slp_instn);
1395 unsigned int i, j, k, next;
1396 slp_tree node;
1397 gimple *stmt, *load, *next_load;
1399 if (dump_enabled_p ())
1401 dump_printf_loc (MSG_NOTE, vect_location, "Load permutation ");
1402 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn), i, node)
1403 if (node->load_permutation.exists ())
1404 FOR_EACH_VEC_ELT (node->load_permutation, j, next)
1405 dump_printf (MSG_NOTE, "%d ", next);
1406 else
1407 for (k = 0; k < group_size; ++k)
1408 dump_printf (MSG_NOTE, "%d ", k);
1409 dump_printf (MSG_NOTE, "\n");
1412 /* In case of reduction every load permutation is allowed, since the order
1413 of the reduction statements is not important (as opposed to the case of
1414 grouped stores). The only condition we need to check is that all the
1415 load nodes are of the same size and have the same permutation (and then
1416 rearrange all the nodes of the SLP instance according to this
1417 permutation). */
1419 /* Check that all the load nodes are of the same size. */
1420 /* ??? Can't we assert this? */
1421 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn), i, node)
1422 if (SLP_TREE_SCALAR_STMTS (node).length () != (unsigned) group_size)
1423 return false;
1425 node = SLP_INSTANCE_TREE (slp_instn);
1426 stmt = SLP_TREE_SCALAR_STMTS (node)[0];
1428 /* Reduction (there are no data-refs in the root).
1429 In reduction chain the order of the loads is not important. */
1430 if (!STMT_VINFO_DATA_REF (vinfo_for_stmt (stmt))
1431 && !GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt)))
1432 vect_attempt_slp_rearrange_stmts (slp_instn);
1434 /* In basic block vectorization we allow any subchain of an interleaving
1435 chain.
1436 FORNOW: not supported in loop SLP because of realignment compications. */
1437 if (STMT_VINFO_BB_VINFO (vinfo_for_stmt (stmt)))
1439 /* Check whether the loads in an instance form a subchain and thus
1440 no permutation is necessary. */
1441 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn), i, node)
1443 if (!SLP_TREE_LOAD_PERMUTATION (node).exists ())
1444 continue;
1445 bool subchain_p = true;
1446 next_load = NULL;
1447 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load)
1449 if (j != 0
1450 && (next_load != load
1451 || GROUP_GAP (vinfo_for_stmt (load)) != 1))
1453 subchain_p = false;
1454 break;
1456 next_load = GROUP_NEXT_ELEMENT (vinfo_for_stmt (load));
1458 if (subchain_p)
1459 SLP_TREE_LOAD_PERMUTATION (node).release ();
1460 else
1462 /* Verify the permutation can be generated. */
1463 vec<tree> tem;
1464 if (!vect_transform_slp_perm_load (node, tem, NULL,
1465 1, slp_instn, true))
1467 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
1468 vect_location,
1469 "unsupported load permutation\n");
1470 return false;
1474 return true;
1477 /* For loop vectorization verify we can generate the permutation. */
1478 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn), i, node)
1479 if (node->load_permutation.exists ()
1480 && !vect_transform_slp_perm_load
1481 (node, vNULL, NULL,
1482 SLP_INSTANCE_UNROLLING_FACTOR (slp_instn), slp_instn, true))
1483 return false;
1485 return true;
1489 /* Find the last store in SLP INSTANCE. */
1491 gimple *
1492 vect_find_last_scalar_stmt_in_slp (slp_tree node)
1494 gimple *last = NULL, *stmt;
1496 for (int i = 0; SLP_TREE_SCALAR_STMTS (node).iterate (i, &stmt); i++)
1498 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
1499 if (is_pattern_stmt_p (stmt_vinfo))
1500 last = get_later_stmt (STMT_VINFO_RELATED_STMT (stmt_vinfo), last);
1501 else
1502 last = get_later_stmt (stmt, last);
1505 return last;
1508 /* Compute the cost for the SLP node NODE in the SLP instance INSTANCE. */
1510 static void
1511 vect_analyze_slp_cost_1 (slp_instance instance, slp_tree node,
1512 stmt_vector_for_cost *prologue_cost_vec,
1513 stmt_vector_for_cost *body_cost_vec,
1514 unsigned ncopies_for_cost)
1516 unsigned i, j;
1517 slp_tree child;
1518 gimple *stmt;
1519 stmt_vec_info stmt_info;
1520 tree lhs;
1522 /* Recurse down the SLP tree. */
1523 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1524 if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
1525 vect_analyze_slp_cost_1 (instance, child, prologue_cost_vec,
1526 body_cost_vec, ncopies_for_cost);
1528 /* Look at the first scalar stmt to determine the cost. */
1529 stmt = SLP_TREE_SCALAR_STMTS (node)[0];
1530 stmt_info = vinfo_for_stmt (stmt);
1531 if (STMT_VINFO_GROUPED_ACCESS (stmt_info))
1533 vect_memory_access_type memory_access_type
1534 = (STMT_VINFO_STRIDED_P (stmt_info)
1535 ? VMAT_STRIDED_SLP
1536 : VMAT_CONTIGUOUS);
1537 if (DR_IS_WRITE (STMT_VINFO_DATA_REF (stmt_info)))
1538 vect_model_store_cost (stmt_info, ncopies_for_cost,
1539 memory_access_type, vect_uninitialized_def,
1540 node, prologue_cost_vec, body_cost_vec);
1541 else
1543 gcc_checking_assert (DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)));
1544 if (SLP_TREE_LOAD_PERMUTATION (node).exists ())
1546 /* If the load is permuted then the alignment is determined by
1547 the first group element not by the first scalar stmt DR. */
1548 stmt = GROUP_FIRST_ELEMENT (stmt_info);
1549 stmt_info = vinfo_for_stmt (stmt);
1550 /* Record the cost for the permutation. */
1551 record_stmt_cost (body_cost_vec, ncopies_for_cost, vec_perm,
1552 stmt_info, 0, vect_body);
1553 /* And adjust the number of loads performed. */
1554 unsigned nunits
1555 = TYPE_VECTOR_SUBPARTS (STMT_VINFO_VECTYPE (stmt_info));
1556 ncopies_for_cost
1557 = (GROUP_SIZE (stmt_info) - GROUP_GAP (stmt_info)
1558 + nunits - 1) / nunits;
1559 ncopies_for_cost *= SLP_INSTANCE_UNROLLING_FACTOR (instance);
1561 /* Record the cost for the vector loads. */
1562 vect_model_load_cost (stmt_info, ncopies_for_cost,
1563 memory_access_type, node, prologue_cost_vec,
1564 body_cost_vec);
1565 return;
1568 else
1570 record_stmt_cost (body_cost_vec, ncopies_for_cost, vector_stmt,
1571 stmt_info, 0, vect_body);
1572 if (SLP_TREE_TWO_OPERATORS (node))
1574 record_stmt_cost (body_cost_vec, ncopies_for_cost, vector_stmt,
1575 stmt_info, 0, vect_body);
1576 record_stmt_cost (body_cost_vec, ncopies_for_cost, vec_perm,
1577 stmt_info, 0, vect_body);
1581 /* Push SLP node def-type to stmts. */
1582 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1583 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
1584 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child), j, stmt)
1585 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (stmt)) = SLP_TREE_DEF_TYPE (child);
1587 /* Scan operands and account for prologue cost of constants/externals.
1588 ??? This over-estimates cost for multiple uses and should be
1589 re-engineered. */
1590 stmt = SLP_TREE_SCALAR_STMTS (node)[0];
1591 lhs = gimple_get_lhs (stmt);
1592 for (i = 0; i < gimple_num_ops (stmt); ++i)
1594 tree op = gimple_op (stmt, i);
1595 gimple *def_stmt;
1596 enum vect_def_type dt;
1597 if (!op || op == lhs)
1598 continue;
1599 if (vect_is_simple_use (op, stmt_info->vinfo, &def_stmt, &dt))
1601 /* Without looking at the actual initializer a vector of
1602 constants can be implemented as load from the constant pool.
1603 ??? We need to pass down stmt_info for a vector type
1604 even if it points to the wrong stmt. */
1605 if (dt == vect_constant_def)
1606 record_stmt_cost (prologue_cost_vec, 1, vector_load,
1607 stmt_info, 0, vect_prologue);
1608 else if (dt == vect_external_def)
1609 record_stmt_cost (prologue_cost_vec, 1, vec_construct,
1610 stmt_info, 0, vect_prologue);
1614 /* Restore stmt def-types. */
1615 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
1616 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
1617 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child), j, stmt)
1618 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (stmt)) = vect_internal_def;
1621 /* Compute the cost for the SLP instance INSTANCE. */
1623 static void
1624 vect_analyze_slp_cost (slp_instance instance, void *data)
1626 stmt_vector_for_cost body_cost_vec, prologue_cost_vec;
1627 unsigned ncopies_for_cost;
1628 stmt_info_for_cost *si;
1629 unsigned i;
1631 if (dump_enabled_p ())
1632 dump_printf_loc (MSG_NOTE, vect_location,
1633 "=== vect_analyze_slp_cost ===\n");
1635 /* Calculate the number of vector stmts to create based on the unrolling
1636 factor (number of vectors is 1 if NUNITS >= GROUP_SIZE, and is
1637 GROUP_SIZE / NUNITS otherwise. */
1638 unsigned group_size = SLP_INSTANCE_GROUP_SIZE (instance);
1639 slp_tree node = SLP_INSTANCE_TREE (instance);
1640 stmt_vec_info stmt_info = vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (node)[0]);
1641 /* Adjust the group_size by the vectorization factor which is always one
1642 for basic-block vectorization. */
1643 if (STMT_VINFO_LOOP_VINFO (stmt_info))
1644 group_size *= LOOP_VINFO_VECT_FACTOR (STMT_VINFO_LOOP_VINFO (stmt_info));
1645 unsigned nunits = TYPE_VECTOR_SUBPARTS (STMT_VINFO_VECTYPE (stmt_info));
1646 /* For reductions look at a reduction operand in case the reduction
1647 operation is widening like DOT_PROD or SAD. */
1648 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info))
1650 gimple *stmt = SLP_TREE_SCALAR_STMTS (node)[0];
1651 switch (gimple_assign_rhs_code (stmt))
1653 case DOT_PROD_EXPR:
1654 case SAD_EXPR:
1655 nunits = TYPE_VECTOR_SUBPARTS (get_vectype_for_scalar_type
1656 (TREE_TYPE (gimple_assign_rhs1 (stmt))));
1657 break;
1658 default:;
1661 ncopies_for_cost = least_common_multiple (nunits, group_size) / nunits;
1663 prologue_cost_vec.create (10);
1664 body_cost_vec.create (10);
1665 vect_analyze_slp_cost_1 (instance, SLP_INSTANCE_TREE (instance),
1666 &prologue_cost_vec, &body_cost_vec,
1667 ncopies_for_cost);
1669 /* Record the prologue costs, which were delayed until we were
1670 sure that SLP was successful. */
1671 FOR_EACH_VEC_ELT (prologue_cost_vec, i, si)
1673 struct _stmt_vec_info *stmt_info
1674 = si->stmt ? vinfo_for_stmt (si->stmt) : NULL;
1675 (void) add_stmt_cost (data, si->count, si->kind, stmt_info,
1676 si->misalign, vect_prologue);
1679 /* Record the instance's instructions in the target cost model. */
1680 FOR_EACH_VEC_ELT (body_cost_vec, i, si)
1682 struct _stmt_vec_info *stmt_info
1683 = si->stmt ? vinfo_for_stmt (si->stmt) : NULL;
1684 (void) add_stmt_cost (data, si->count, si->kind, stmt_info,
1685 si->misalign, vect_body);
1688 prologue_cost_vec.release ();
1689 body_cost_vec.release ();
1692 /* Splits a group of stores, currently beginning at FIRST_STMT, into two groups:
1693 one (still beginning at FIRST_STMT) of size GROUP1_SIZE (also containing
1694 the first GROUP1_SIZE stmts, since stores are consecutive), the second
1695 containing the remainder.
1696 Return the first stmt in the second group. */
1698 static gimple *
1699 vect_split_slp_store_group (gimple *first_stmt, unsigned group1_size)
1701 stmt_vec_info first_vinfo = vinfo_for_stmt (first_stmt);
1702 gcc_assert (GROUP_FIRST_ELEMENT (first_vinfo) == first_stmt);
1703 gcc_assert (group1_size > 0);
1704 int group2_size = GROUP_SIZE (first_vinfo) - group1_size;
1705 gcc_assert (group2_size > 0);
1706 GROUP_SIZE (first_vinfo) = group1_size;
1708 gimple *stmt = first_stmt;
1709 for (unsigned i = group1_size; i > 1; i--)
1711 stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (stmt));
1712 gcc_assert (GROUP_GAP (vinfo_for_stmt (stmt)) == 1);
1714 /* STMT is now the last element of the first group. */
1715 gimple *group2 = GROUP_NEXT_ELEMENT (vinfo_for_stmt (stmt));
1716 GROUP_NEXT_ELEMENT (vinfo_for_stmt (stmt)) = 0;
1718 GROUP_SIZE (vinfo_for_stmt (group2)) = group2_size;
1719 for (stmt = group2; stmt; stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (stmt)))
1721 GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt)) = group2;
1722 gcc_assert (GROUP_GAP (vinfo_for_stmt (stmt)) == 1);
1725 /* For the second group, the GROUP_GAP is that before the original group,
1726 plus skipping over the first vector. */
1727 GROUP_GAP (vinfo_for_stmt (group2)) =
1728 GROUP_GAP (first_vinfo) + group1_size;
1730 /* GROUP_GAP of the first group now has to skip over the second group too. */
1731 GROUP_GAP (first_vinfo) += group2_size;
1733 if (dump_enabled_p ())
1734 dump_printf_loc (MSG_NOTE, vect_location, "Split group into %d and %d\n",
1735 group1_size, group2_size);
1737 return group2;
1740 /* Analyze an SLP instance starting from a group of grouped stores. Call
1741 vect_build_slp_tree to build a tree of packed stmts if possible.
1742 Return FALSE if it's impossible to SLP any stmt in the loop. */
1744 static bool
1745 vect_analyze_slp_instance (vec_info *vinfo,
1746 gimple *stmt, unsigned max_tree_size)
1748 slp_instance new_instance;
1749 slp_tree node;
1750 unsigned int group_size = GROUP_SIZE (vinfo_for_stmt (stmt));
1751 unsigned int unrolling_factor = 1, nunits;
1752 tree vectype, scalar_type = NULL_TREE;
1753 gimple *next;
1754 unsigned int i;
1755 unsigned int max_nunits = 0;
1756 vec<slp_tree> loads;
1757 struct data_reference *dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (stmt));
1758 vec<gimple *> scalar_stmts;
1760 if (GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt)))
1762 if (dr)
1764 scalar_type = TREE_TYPE (DR_REF (dr));
1765 vectype = get_vectype_for_scalar_type (scalar_type);
1767 else
1769 gcc_assert (is_a <loop_vec_info> (vinfo));
1770 vectype = STMT_VINFO_VECTYPE (vinfo_for_stmt (stmt));
1773 group_size = GROUP_SIZE (vinfo_for_stmt (stmt));
1775 else
1777 gcc_assert (is_a <loop_vec_info> (vinfo));
1778 vectype = STMT_VINFO_VECTYPE (vinfo_for_stmt (stmt));
1779 group_size = as_a <loop_vec_info> (vinfo)->reductions.length ();
1782 if (!vectype)
1784 if (dump_enabled_p ())
1786 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1787 "Build SLP failed: unsupported data-type ");
1788 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, scalar_type);
1789 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
1792 return false;
1794 nunits = TYPE_VECTOR_SUBPARTS (vectype);
1796 /* Create a node (a root of the SLP tree) for the packed grouped stores. */
1797 scalar_stmts.create (group_size);
1798 next = stmt;
1799 if (GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt)))
1801 /* Collect the stores and store them in SLP_TREE_SCALAR_STMTS. */
1802 while (next)
1804 if (STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (next))
1805 && STMT_VINFO_RELATED_STMT (vinfo_for_stmt (next)))
1806 scalar_stmts.safe_push (
1807 STMT_VINFO_RELATED_STMT (vinfo_for_stmt (next)));
1808 else
1809 scalar_stmts.safe_push (next);
1810 next = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next));
1812 /* Mark the first element of the reduction chain as reduction to properly
1813 transform the node. In the reduction analysis phase only the last
1814 element of the chain is marked as reduction. */
1815 if (!STMT_VINFO_GROUPED_ACCESS (vinfo_for_stmt (stmt)))
1816 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (stmt)) = vect_reduction_def;
1818 else
1820 /* Collect reduction statements. */
1821 vec<gimple *> reductions = as_a <loop_vec_info> (vinfo)->reductions;
1822 for (i = 0; reductions.iterate (i, &next); i++)
1823 scalar_stmts.safe_push (next);
1826 loads.create (group_size);
1828 /* Build the tree for the SLP instance. */
1829 bool *matches = XALLOCAVEC (bool, group_size);
1830 unsigned npermutes = 0;
1831 node = vect_build_slp_tree (vinfo, scalar_stmts, group_size,
1832 &max_nunits, &loads, matches, &npermutes,
1833 NULL, max_tree_size);
1834 if (node != NULL)
1836 /* Calculate the unrolling factor based on the smallest type. */
1837 unrolling_factor
1838 = least_common_multiple (max_nunits, group_size) / group_size;
1840 if (unrolling_factor != 1
1841 && is_a <bb_vec_info> (vinfo))
1844 if (max_nunits > group_size)
1846 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1847 "Build SLP failed: store group "
1848 "size not a multiple of the vector size "
1849 "in basic block SLP\n");
1850 vect_free_slp_tree (node);
1851 loads.release ();
1852 return false;
1854 /* Fatal mismatch. */
1855 matches[group_size/max_nunits * max_nunits] = false;
1856 vect_free_slp_tree (node);
1857 loads.release ();
1859 else
1861 /* Create a new SLP instance. */
1862 new_instance = XNEW (struct _slp_instance);
1863 SLP_INSTANCE_TREE (new_instance) = node;
1864 SLP_INSTANCE_GROUP_SIZE (new_instance) = group_size;
1865 SLP_INSTANCE_UNROLLING_FACTOR (new_instance) = unrolling_factor;
1866 SLP_INSTANCE_LOADS (new_instance) = loads;
1868 /* Compute the load permutation. */
1869 slp_tree load_node;
1870 bool loads_permuted = false;
1871 FOR_EACH_VEC_ELT (loads, i, load_node)
1873 vec<unsigned> load_permutation;
1874 int j;
1875 gimple *load, *first_stmt;
1876 bool this_load_permuted = false;
1877 load_permutation.create (group_size);
1878 first_stmt = GROUP_FIRST_ELEMENT
1879 (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (load_node)[0]));
1880 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (load_node), j, load)
1882 int load_place = vect_get_place_in_interleaving_chain
1883 (load, first_stmt);
1884 gcc_assert (load_place != -1);
1885 if (load_place != j)
1886 this_load_permuted = true;
1887 load_permutation.safe_push (load_place);
1889 if (!this_load_permuted
1890 /* The load requires permutation when unrolling exposes
1891 a gap either because the group is larger than the SLP
1892 group-size or because there is a gap between the groups. */
1893 && (unrolling_factor == 1
1894 || (group_size == GROUP_SIZE (vinfo_for_stmt (first_stmt))
1895 && GROUP_GAP (vinfo_for_stmt (first_stmt)) == 0)))
1897 load_permutation.release ();
1898 continue;
1900 SLP_TREE_LOAD_PERMUTATION (load_node) = load_permutation;
1901 loads_permuted = true;
1904 if (loads_permuted)
1906 if (!vect_supported_load_permutation_p (new_instance))
1908 if (dump_enabled_p ())
1910 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1911 "Build SLP failed: unsupported load "
1912 "permutation ");
1913 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION,
1914 TDF_SLIM, stmt, 0);
1916 vect_free_slp_instance (new_instance);
1917 return false;
1921 /* If the loads and stores can be handled with load/store-lan
1922 instructions do not generate this SLP instance. */
1923 if (is_a <loop_vec_info> (vinfo)
1924 && loads_permuted
1925 && dr && vect_store_lanes_supported (vectype, group_size))
1927 slp_tree load_node;
1928 FOR_EACH_VEC_ELT (loads, i, load_node)
1930 gimple *first_stmt = GROUP_FIRST_ELEMENT
1931 (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (load_node)[0]));
1932 stmt_vec_info stmt_vinfo = vinfo_for_stmt (first_stmt);
1933 /* Use SLP for strided accesses (or if we
1934 can't load-lanes). */
1935 if (STMT_VINFO_STRIDED_P (stmt_vinfo)
1936 || ! vect_load_lanes_supported
1937 (STMT_VINFO_VECTYPE (stmt_vinfo),
1938 GROUP_SIZE (stmt_vinfo)))
1939 break;
1941 if (i == loads.length ())
1943 if (dump_enabled_p ())
1944 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1945 "Built SLP cancelled: can use "
1946 "load/store-lanes\n");
1947 vect_free_slp_instance (new_instance);
1948 return false;
1952 vinfo->slp_instances.safe_push (new_instance);
1954 if (dump_enabled_p ())
1956 dump_printf_loc (MSG_NOTE, vect_location,
1957 "Final SLP tree for instance:\n");
1958 vect_print_slp_tree (MSG_NOTE, vect_location, node);
1961 return true;
1964 else
1966 /* Failed to SLP. */
1967 /* Free the allocated memory. */
1968 scalar_stmts.release ();
1969 loads.release ();
1972 /* For basic block SLP, try to break the group up into multiples of the
1973 vector size. */
1974 if (is_a <bb_vec_info> (vinfo)
1975 && GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt))
1976 && STMT_VINFO_GROUPED_ACCESS (vinfo_for_stmt (stmt)))
1978 /* We consider breaking the group only on VF boundaries from the existing
1979 start. */
1980 for (i = 0; i < group_size; i++)
1981 if (!matches[i]) break;
1983 if (i >= nunits && i < group_size)
1985 /* Split into two groups at the first vector boundary before i. */
1986 gcc_assert ((nunits & (nunits - 1)) == 0);
1987 unsigned group1_size = i & ~(nunits - 1);
1989 gimple *rest = vect_split_slp_store_group (stmt, group1_size);
1990 bool res = vect_analyze_slp_instance (vinfo, stmt, max_tree_size);
1991 /* If the first non-match was in the middle of a vector,
1992 skip the rest of that vector. */
1993 if (group1_size < i)
1995 i = group1_size + nunits;
1996 if (i < group_size)
1997 rest = vect_split_slp_store_group (rest, nunits);
1999 if (i < group_size)
2000 res |= vect_analyze_slp_instance (vinfo, rest, max_tree_size);
2001 return res;
2003 /* Even though the first vector did not all match, we might be able to SLP
2004 (some) of the remainder. FORNOW ignore this possibility. */
2007 return false;
2011 /* Check if there are stmts in the loop can be vectorized using SLP. Build SLP
2012 trees of packed scalar stmts if SLP is possible. */
2014 bool
2015 vect_analyze_slp (vec_info *vinfo, unsigned max_tree_size)
2017 unsigned int i;
2018 gimple *first_element;
2019 bool ok = false;
2021 if (dump_enabled_p ())
2022 dump_printf_loc (MSG_NOTE, vect_location, "=== vect_analyze_slp ===\n");
2024 /* Find SLP sequences starting from groups of grouped stores. */
2025 FOR_EACH_VEC_ELT (vinfo->grouped_stores, i, first_element)
2026 if (vect_analyze_slp_instance (vinfo, first_element, max_tree_size))
2027 ok = true;
2029 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (vinfo))
2031 if (loop_vinfo->reduction_chains.length () > 0)
2033 /* Find SLP sequences starting from reduction chains. */
2034 FOR_EACH_VEC_ELT (loop_vinfo->reduction_chains, i, first_element)
2035 if (vect_analyze_slp_instance (vinfo, first_element,
2036 max_tree_size))
2037 ok = true;
2038 else
2039 return false;
2041 /* Don't try to vectorize SLP reductions if reduction chain was
2042 detected. */
2043 return ok;
2046 /* Find SLP sequences starting from groups of reductions. */
2047 if (loop_vinfo->reductions.length () > 1
2048 && vect_analyze_slp_instance (vinfo, loop_vinfo->reductions[0],
2049 max_tree_size))
2050 ok = true;
2053 return true;
2057 /* For each possible SLP instance decide whether to SLP it and calculate overall
2058 unrolling factor needed to SLP the loop. Return TRUE if decided to SLP at
2059 least one instance. */
2061 bool
2062 vect_make_slp_decision (loop_vec_info loop_vinfo)
2064 unsigned int i, unrolling_factor = 1;
2065 vec<slp_instance> slp_instances = LOOP_VINFO_SLP_INSTANCES (loop_vinfo);
2066 slp_instance instance;
2067 int decided_to_slp = 0;
2069 if (dump_enabled_p ())
2070 dump_printf_loc (MSG_NOTE, vect_location, "=== vect_make_slp_decision ==="
2071 "\n");
2073 FOR_EACH_VEC_ELT (slp_instances, i, instance)
2075 /* FORNOW: SLP if you can. */
2076 if (unrolling_factor < SLP_INSTANCE_UNROLLING_FACTOR (instance))
2077 unrolling_factor = SLP_INSTANCE_UNROLLING_FACTOR (instance);
2079 /* Mark all the stmts that belong to INSTANCE as PURE_SLP stmts. Later we
2080 call vect_detect_hybrid_slp () to find stmts that need hybrid SLP and
2081 loop-based vectorization. Such stmts will be marked as HYBRID. */
2082 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance), pure_slp, -1);
2083 decided_to_slp++;
2086 LOOP_VINFO_SLP_UNROLLING_FACTOR (loop_vinfo) = unrolling_factor;
2088 if (decided_to_slp && dump_enabled_p ())
2089 dump_printf_loc (MSG_NOTE, vect_location,
2090 "Decided to SLP %d instances. Unrolling factor %d\n",
2091 decided_to_slp, unrolling_factor);
2093 return (decided_to_slp > 0);
2097 /* Find stmts that must be both vectorized and SLPed (since they feed stmts that
2098 can't be SLPed) in the tree rooted at NODE. Mark such stmts as HYBRID. */
2100 static void
2101 vect_detect_hybrid_slp_stmts (slp_tree node, unsigned i, slp_vect_type stype)
2103 gimple *stmt = SLP_TREE_SCALAR_STMTS (node)[i];
2104 imm_use_iterator imm_iter;
2105 gimple *use_stmt;
2106 stmt_vec_info use_vinfo, stmt_vinfo = vinfo_for_stmt (stmt);
2107 slp_tree child;
2108 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_vinfo);
2109 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
2110 int j;
2112 /* Propagate hybrid down the SLP tree. */
2113 if (stype == hybrid)
2115 else if (HYBRID_SLP_STMT (stmt_vinfo))
2116 stype = hybrid;
2117 else
2119 /* Check if a pure SLP stmt has uses in non-SLP stmts. */
2120 gcc_checking_assert (PURE_SLP_STMT (stmt_vinfo));
2121 /* If we get a pattern stmt here we have to use the LHS of the
2122 original stmt for immediate uses. */
2123 if (! STMT_VINFO_IN_PATTERN_P (stmt_vinfo)
2124 && STMT_VINFO_RELATED_STMT (stmt_vinfo))
2125 stmt = STMT_VINFO_RELATED_STMT (stmt_vinfo);
2126 if (TREE_CODE (gimple_op (stmt, 0)) == SSA_NAME)
2127 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, gimple_op (stmt, 0))
2129 if (!flow_bb_inside_loop_p (loop, gimple_bb (use_stmt)))
2130 continue;
2131 use_vinfo = vinfo_for_stmt (use_stmt);
2132 if (STMT_VINFO_IN_PATTERN_P (use_vinfo)
2133 && STMT_VINFO_RELATED_STMT (use_vinfo))
2134 use_vinfo = vinfo_for_stmt (STMT_VINFO_RELATED_STMT (use_vinfo));
2135 if (!STMT_SLP_TYPE (use_vinfo)
2136 && (STMT_VINFO_RELEVANT (use_vinfo)
2137 || VECTORIZABLE_CYCLE_DEF (STMT_VINFO_DEF_TYPE (use_vinfo)))
2138 && !(gimple_code (use_stmt) == GIMPLE_PHI
2139 && STMT_VINFO_DEF_TYPE (use_vinfo) == vect_reduction_def))
2141 if (dump_enabled_p ())
2143 dump_printf_loc (MSG_NOTE, vect_location, "use of SLP "
2144 "def in non-SLP stmt: ");
2145 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, use_stmt, 0);
2147 stype = hybrid;
2152 if (stype == hybrid
2153 && !HYBRID_SLP_STMT (stmt_vinfo))
2155 if (dump_enabled_p ())
2157 dump_printf_loc (MSG_NOTE, vect_location, "marking hybrid: ");
2158 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
2160 STMT_SLP_TYPE (stmt_vinfo) = hybrid;
2163 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), j, child)
2164 if (SLP_TREE_DEF_TYPE (child) != vect_external_def)
2165 vect_detect_hybrid_slp_stmts (child, i, stype);
2168 /* Helpers for vect_detect_hybrid_slp walking pattern stmt uses. */
2170 static tree
2171 vect_detect_hybrid_slp_1 (tree *tp, int *, void *data)
2173 walk_stmt_info *wi = (walk_stmt_info *)data;
2174 struct loop *loopp = (struct loop *)wi->info;
2176 if (wi->is_lhs)
2177 return NULL_TREE;
2179 if (TREE_CODE (*tp) == SSA_NAME
2180 && !SSA_NAME_IS_DEFAULT_DEF (*tp))
2182 gimple *def_stmt = SSA_NAME_DEF_STMT (*tp);
2183 if (flow_bb_inside_loop_p (loopp, gimple_bb (def_stmt))
2184 && PURE_SLP_STMT (vinfo_for_stmt (def_stmt)))
2186 if (dump_enabled_p ())
2188 dump_printf_loc (MSG_NOTE, vect_location, "marking hybrid: ");
2189 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, def_stmt, 0);
2191 STMT_SLP_TYPE (vinfo_for_stmt (def_stmt)) = hybrid;
2195 return NULL_TREE;
2198 static tree
2199 vect_detect_hybrid_slp_2 (gimple_stmt_iterator *gsi, bool *handled,
2200 walk_stmt_info *)
2202 /* If the stmt is in a SLP instance then this isn't a reason
2203 to mark use definitions in other SLP instances as hybrid. */
2204 if (STMT_SLP_TYPE (vinfo_for_stmt (gsi_stmt (*gsi))) != loop_vect)
2205 *handled = true;
2206 return NULL_TREE;
2209 /* Find stmts that must be both vectorized and SLPed. */
2211 void
2212 vect_detect_hybrid_slp (loop_vec_info loop_vinfo)
2214 unsigned int i;
2215 vec<slp_instance> slp_instances = LOOP_VINFO_SLP_INSTANCES (loop_vinfo);
2216 slp_instance instance;
2218 if (dump_enabled_p ())
2219 dump_printf_loc (MSG_NOTE, vect_location, "=== vect_detect_hybrid_slp ==="
2220 "\n");
2222 /* First walk all pattern stmt in the loop and mark defs of uses as
2223 hybrid because immediate uses in them are not recorded. */
2224 for (i = 0; i < LOOP_VINFO_LOOP (loop_vinfo)->num_nodes; ++i)
2226 basic_block bb = LOOP_VINFO_BBS (loop_vinfo)[i];
2227 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
2228 gsi_next (&gsi))
2230 gimple *stmt = gsi_stmt (gsi);
2231 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
2232 if (STMT_VINFO_IN_PATTERN_P (stmt_info))
2234 walk_stmt_info wi;
2235 memset (&wi, 0, sizeof (wi));
2236 wi.info = LOOP_VINFO_LOOP (loop_vinfo);
2237 gimple_stmt_iterator gsi2
2238 = gsi_for_stmt (STMT_VINFO_RELATED_STMT (stmt_info));
2239 walk_gimple_stmt (&gsi2, vect_detect_hybrid_slp_2,
2240 vect_detect_hybrid_slp_1, &wi);
2241 walk_gimple_seq (STMT_VINFO_PATTERN_DEF_SEQ (stmt_info),
2242 vect_detect_hybrid_slp_2,
2243 vect_detect_hybrid_slp_1, &wi);
2248 /* Then walk the SLP instance trees marking stmts with uses in
2249 non-SLP stmts as hybrid, also propagating hybrid down the
2250 SLP tree, collecting the above info on-the-fly. */
2251 FOR_EACH_VEC_ELT (slp_instances, i, instance)
2253 for (unsigned i = 0; i < SLP_INSTANCE_GROUP_SIZE (instance); ++i)
2254 vect_detect_hybrid_slp_stmts (SLP_INSTANCE_TREE (instance),
2255 i, pure_slp);
2260 /* Create and initialize a new bb_vec_info struct for BB, as well as
2261 stmt_vec_info structs for all the stmts in it. */
2263 static bb_vec_info
2264 new_bb_vec_info (gimple_stmt_iterator region_begin,
2265 gimple_stmt_iterator region_end)
2267 basic_block bb = gsi_bb (region_begin);
2268 bb_vec_info res = NULL;
2269 gimple_stmt_iterator gsi;
2271 res = (bb_vec_info) xcalloc (1, sizeof (struct _bb_vec_info));
2272 res->kind = vec_info::bb;
2273 BB_VINFO_BB (res) = bb;
2274 res->region_begin = region_begin;
2275 res->region_end = region_end;
2277 for (gsi = region_begin; gsi_stmt (gsi) != gsi_stmt (region_end);
2278 gsi_next (&gsi))
2280 gimple *stmt = gsi_stmt (gsi);
2281 gimple_set_uid (stmt, 0);
2282 set_vinfo_for_stmt (stmt, new_stmt_vec_info (stmt, res));
2285 BB_VINFO_GROUPED_STORES (res).create (10);
2286 BB_VINFO_SLP_INSTANCES (res).create (2);
2287 BB_VINFO_TARGET_COST_DATA (res) = init_cost (NULL);
2289 bb->aux = res;
2290 return res;
2294 /* Free BB_VINFO struct, as well as all the stmt_vec_info structs of all the
2295 stmts in the basic block. */
2297 static void
2298 destroy_bb_vec_info (bb_vec_info bb_vinfo)
2300 slp_instance instance;
2301 unsigned i;
2303 if (!bb_vinfo)
2304 return;
2306 vect_destroy_datarefs (bb_vinfo);
2307 free_dependence_relations (BB_VINFO_DDRS (bb_vinfo));
2308 BB_VINFO_GROUPED_STORES (bb_vinfo).release ();
2309 FOR_EACH_VEC_ELT (BB_VINFO_SLP_INSTANCES (bb_vinfo), i, instance)
2310 vect_free_slp_instance (instance);
2311 BB_VINFO_SLP_INSTANCES (bb_vinfo).release ();
2312 destroy_cost_data (BB_VINFO_TARGET_COST_DATA (bb_vinfo));
2314 for (gimple_stmt_iterator si = bb_vinfo->region_begin;
2315 gsi_stmt (si) != gsi_stmt (bb_vinfo->region_end); gsi_next (&si))
2317 gimple *stmt = gsi_stmt (si);
2318 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
2320 if (stmt_info)
2321 /* Free stmt_vec_info. */
2322 free_stmt_vec_info (stmt);
2324 /* Reset region marker. */
2325 gimple_set_uid (stmt, -1);
2328 BB_VINFO_BB (bb_vinfo)->aux = NULL;
2329 free (bb_vinfo);
2333 /* Analyze statements contained in SLP tree node after recursively analyzing
2334 the subtree. Return TRUE if the operations are supported. */
2336 static bool
2337 vect_slp_analyze_node_operations (slp_tree node)
2339 bool dummy;
2340 int i, j;
2341 gimple *stmt;
2342 slp_tree child;
2344 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
2345 return true;
2347 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2348 if (!vect_slp_analyze_node_operations (child))
2349 return false;
2351 bool res = true;
2352 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
2354 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
2355 gcc_assert (stmt_info);
2356 gcc_assert (STMT_SLP_TYPE (stmt_info) != loop_vect);
2358 /* Push SLP node def-type to stmt operands. */
2359 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), j, child)
2360 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
2361 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (child)[i]))
2362 = SLP_TREE_DEF_TYPE (child);
2363 res = vect_analyze_stmt (stmt, &dummy, node);
2364 /* Restore def-types. */
2365 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), j, child)
2366 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
2367 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (SLP_TREE_SCALAR_STMTS (child)[i]))
2368 = vect_internal_def;
2369 if (! res)
2370 break;
2373 return res;
2377 /* Analyze statements in SLP instances of the basic block. Return TRUE if the
2378 operations are supported. */
2380 bool
2381 vect_slp_analyze_operations (vec<slp_instance> slp_instances, void *data)
2383 slp_instance instance;
2384 int i;
2386 if (dump_enabled_p ())
2387 dump_printf_loc (MSG_NOTE, vect_location,
2388 "=== vect_slp_analyze_operations ===\n");
2390 for (i = 0; slp_instances.iterate (i, &instance); )
2392 if (!vect_slp_analyze_node_operations (SLP_INSTANCE_TREE (instance)))
2394 dump_printf_loc (MSG_NOTE, vect_location,
2395 "removing SLP instance operations starting from: ");
2396 dump_gimple_stmt (MSG_NOTE, TDF_SLIM,
2397 SLP_TREE_SCALAR_STMTS
2398 (SLP_INSTANCE_TREE (instance))[0], 0);
2399 vect_free_slp_instance (instance);
2400 slp_instances.ordered_remove (i);
2402 else
2404 /* Compute the costs of the SLP instance. */
2405 vect_analyze_slp_cost (instance, data);
2406 i++;
2410 if (!slp_instances.length ())
2411 return false;
2413 return true;
2417 /* Compute the scalar cost of the SLP node NODE and its children
2418 and return it. Do not account defs that are marked in LIFE and
2419 update LIFE according to uses of NODE. */
2421 static unsigned
2422 vect_bb_slp_scalar_cost (basic_block bb,
2423 slp_tree node, vec<bool, va_heap> *life)
2425 unsigned scalar_cost = 0;
2426 unsigned i;
2427 gimple *stmt;
2428 slp_tree child;
2430 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
2432 unsigned stmt_cost;
2433 ssa_op_iter op_iter;
2434 def_operand_p def_p;
2435 stmt_vec_info stmt_info;
2437 if ((*life)[i])
2438 continue;
2440 /* If there is a non-vectorized use of the defs then the scalar
2441 stmt is kept live in which case we do not account it or any
2442 required defs in the SLP children in the scalar cost. This
2443 way we make the vectorization more costly when compared to
2444 the scalar cost. */
2445 FOR_EACH_SSA_DEF_OPERAND (def_p, stmt, op_iter, SSA_OP_DEF)
2447 imm_use_iterator use_iter;
2448 gimple *use_stmt;
2449 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, DEF_FROM_PTR (def_p))
2450 if (!is_gimple_debug (use_stmt)
2451 && (! vect_stmt_in_region_p (vinfo_for_stmt (stmt)->vinfo,
2452 use_stmt)
2453 || ! PURE_SLP_STMT (vinfo_for_stmt (use_stmt))))
2455 (*life)[i] = true;
2456 BREAK_FROM_IMM_USE_STMT (use_iter);
2459 if ((*life)[i])
2460 continue;
2462 /* Count scalar stmts only once. */
2463 if (gimple_visited_p (stmt))
2464 continue;
2465 gimple_set_visited (stmt, true);
2467 stmt_info = vinfo_for_stmt (stmt);
2468 if (STMT_VINFO_DATA_REF (stmt_info))
2470 if (DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info)))
2471 stmt_cost = vect_get_stmt_cost (scalar_load);
2472 else
2473 stmt_cost = vect_get_stmt_cost (scalar_store);
2475 else
2476 stmt_cost = vect_get_stmt_cost (scalar_stmt);
2478 scalar_cost += stmt_cost;
2481 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
2482 if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
2483 scalar_cost += vect_bb_slp_scalar_cost (bb, child, life);
2485 return scalar_cost;
2488 /* Check if vectorization of the basic block is profitable. */
2490 static bool
2491 vect_bb_vectorization_profitable_p (bb_vec_info bb_vinfo)
2493 vec<slp_instance> slp_instances = BB_VINFO_SLP_INSTANCES (bb_vinfo);
2494 slp_instance instance;
2495 int i;
2496 unsigned int vec_inside_cost = 0, vec_outside_cost = 0, scalar_cost = 0;
2497 unsigned int vec_prologue_cost = 0, vec_epilogue_cost = 0;
2499 /* Calculate scalar cost. */
2500 FOR_EACH_VEC_ELT (slp_instances, i, instance)
2502 auto_vec<bool, 20> life;
2503 life.safe_grow_cleared (SLP_INSTANCE_GROUP_SIZE (instance));
2504 scalar_cost += vect_bb_slp_scalar_cost (BB_VINFO_BB (bb_vinfo),
2505 SLP_INSTANCE_TREE (instance),
2506 &life);
2509 /* Unset visited flag. */
2510 for (gimple_stmt_iterator gsi = bb_vinfo->region_begin;
2511 gsi_stmt (gsi) != gsi_stmt (bb_vinfo->region_end); gsi_next (&gsi))
2512 gimple_set_visited (gsi_stmt (gsi), false);
2514 /* Complete the target-specific cost calculation. */
2515 finish_cost (BB_VINFO_TARGET_COST_DATA (bb_vinfo), &vec_prologue_cost,
2516 &vec_inside_cost, &vec_epilogue_cost);
2518 vec_outside_cost = vec_prologue_cost + vec_epilogue_cost;
2520 if (dump_enabled_p ())
2522 dump_printf_loc (MSG_NOTE, vect_location, "Cost model analysis: \n");
2523 dump_printf (MSG_NOTE, " Vector inside of basic block cost: %d\n",
2524 vec_inside_cost);
2525 dump_printf (MSG_NOTE, " Vector prologue cost: %d\n", vec_prologue_cost);
2526 dump_printf (MSG_NOTE, " Vector epilogue cost: %d\n", vec_epilogue_cost);
2527 dump_printf (MSG_NOTE, " Scalar cost of basic block: %d\n", scalar_cost);
2530 /* Vectorization is profitable if its cost is more than the cost of scalar
2531 version. Note that we err on the vector side for equal cost because
2532 the cost estimate is otherwise quite pessimistic (constant uses are
2533 free on the scalar side but cost a load on the vector side for
2534 example). */
2535 if (vec_outside_cost + vec_inside_cost > scalar_cost)
2536 return false;
2538 return true;
2541 /* Check if the basic block can be vectorized. Returns a bb_vec_info
2542 if so and sets fatal to true if failure is independent of
2543 current_vector_size. */
2545 static bb_vec_info
2546 vect_slp_analyze_bb_1 (gimple_stmt_iterator region_begin,
2547 gimple_stmt_iterator region_end,
2548 vec<data_reference_p> datarefs, int n_stmts,
2549 bool &fatal)
2551 bb_vec_info bb_vinfo;
2552 slp_instance instance;
2553 int i;
2554 int min_vf = 2;
2556 /* The first group of checks is independent of the vector size. */
2557 fatal = true;
2559 if (n_stmts > PARAM_VALUE (PARAM_SLP_MAX_INSNS_IN_BB))
2561 if (dump_enabled_p ())
2562 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2563 "not vectorized: too many instructions in "
2564 "basic block.\n");
2565 free_data_refs (datarefs);
2566 return NULL;
2569 bb_vinfo = new_bb_vec_info (region_begin, region_end);
2570 if (!bb_vinfo)
2571 return NULL;
2573 BB_VINFO_DATAREFS (bb_vinfo) = datarefs;
2575 /* Analyze the data references. */
2577 if (!vect_analyze_data_refs (bb_vinfo, &min_vf))
2579 if (dump_enabled_p ())
2580 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2581 "not vectorized: unhandled data-ref in basic "
2582 "block.\n");
2584 destroy_bb_vec_info (bb_vinfo);
2585 return NULL;
2588 if (BB_VINFO_DATAREFS (bb_vinfo).length () < 2)
2590 if (dump_enabled_p ())
2591 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2592 "not vectorized: not enough data-refs in "
2593 "basic block.\n");
2595 destroy_bb_vec_info (bb_vinfo);
2596 return NULL;
2599 if (!vect_analyze_data_ref_accesses (bb_vinfo))
2601 if (dump_enabled_p ())
2602 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2603 "not vectorized: unhandled data access in "
2604 "basic block.\n");
2606 destroy_bb_vec_info (bb_vinfo);
2607 return NULL;
2610 /* If there are no grouped stores in the region there is no need
2611 to continue with pattern recog as vect_analyze_slp will fail
2612 anyway. */
2613 if (bb_vinfo->grouped_stores.is_empty ())
2615 if (dump_enabled_p ())
2616 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2617 "not vectorized: no grouped stores in "
2618 "basic block.\n");
2620 destroy_bb_vec_info (bb_vinfo);
2621 return NULL;
2624 /* While the rest of the analysis below depends on it in some way. */
2625 fatal = false;
2627 vect_pattern_recog (bb_vinfo);
2629 /* Check the SLP opportunities in the basic block, analyze and build SLP
2630 trees. */
2631 if (!vect_analyze_slp (bb_vinfo, n_stmts))
2633 if (dump_enabled_p ())
2635 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2636 "Failed to SLP the basic block.\n");
2637 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2638 "not vectorized: failed to find SLP opportunities "
2639 "in basic block.\n");
2642 destroy_bb_vec_info (bb_vinfo);
2643 return NULL;
2646 /* Analyze and verify the alignment of data references and the
2647 dependence in the SLP instances. */
2648 for (i = 0; BB_VINFO_SLP_INSTANCES (bb_vinfo).iterate (i, &instance); )
2650 if (! vect_slp_analyze_and_verify_instance_alignment (instance)
2651 || ! vect_slp_analyze_instance_dependence (instance))
2653 dump_printf_loc (MSG_NOTE, vect_location,
2654 "removing SLP instance operations starting from: ");
2655 dump_gimple_stmt (MSG_NOTE, TDF_SLIM,
2656 SLP_TREE_SCALAR_STMTS
2657 (SLP_INSTANCE_TREE (instance))[0], 0);
2658 vect_free_slp_instance (instance);
2659 BB_VINFO_SLP_INSTANCES (bb_vinfo).ordered_remove (i);
2660 continue;
2663 /* Mark all the statements that we want to vectorize as pure SLP and
2664 relevant. */
2665 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance), pure_slp, -1);
2666 vect_mark_slp_stmts_relevant (SLP_INSTANCE_TREE (instance));
2668 i++;
2670 if (! BB_VINFO_SLP_INSTANCES (bb_vinfo).length ())
2672 destroy_bb_vec_info (bb_vinfo);
2673 return NULL;
2676 if (!vect_slp_analyze_operations (BB_VINFO_SLP_INSTANCES (bb_vinfo),
2677 BB_VINFO_TARGET_COST_DATA (bb_vinfo)))
2679 if (dump_enabled_p ())
2680 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2681 "not vectorized: bad operation in basic block.\n");
2683 destroy_bb_vec_info (bb_vinfo);
2684 return NULL;
2687 /* Cost model: check if the vectorization is worthwhile. */
2688 if (!unlimited_cost_model (NULL)
2689 && !vect_bb_vectorization_profitable_p (bb_vinfo))
2691 if (dump_enabled_p ())
2692 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2693 "not vectorized: vectorization is not "
2694 "profitable.\n");
2696 destroy_bb_vec_info (bb_vinfo);
2697 return NULL;
2700 if (dump_enabled_p ())
2701 dump_printf_loc (MSG_NOTE, vect_location,
2702 "Basic block will be vectorized using SLP\n");
2704 return bb_vinfo;
2708 /* Main entry for the BB vectorizer. Analyze and transform BB, returns
2709 true if anything in the basic-block was vectorized. */
2711 bool
2712 vect_slp_bb (basic_block bb)
2714 bb_vec_info bb_vinfo;
2715 gimple_stmt_iterator gsi;
2716 unsigned int vector_sizes;
2717 bool any_vectorized = false;
2719 if (dump_enabled_p ())
2720 dump_printf_loc (MSG_NOTE, vect_location, "===vect_slp_analyze_bb===\n");
2722 /* Autodetect first vector size we try. */
2723 current_vector_size = 0;
2724 vector_sizes = targetm.vectorize.autovectorize_vector_sizes ();
2726 gsi = gsi_start_bb (bb);
2728 while (1)
2730 if (gsi_end_p (gsi))
2731 break;
2733 gimple_stmt_iterator region_begin = gsi;
2734 vec<data_reference_p> datarefs = vNULL;
2735 int insns = 0;
2737 for (; !gsi_end_p (gsi); gsi_next (&gsi))
2739 gimple *stmt = gsi_stmt (gsi);
2740 if (is_gimple_debug (stmt))
2741 continue;
2742 insns++;
2744 if (gimple_location (stmt) != UNKNOWN_LOCATION)
2745 vect_location = gimple_location (stmt);
2747 if (!find_data_references_in_stmt (NULL, stmt, &datarefs))
2748 break;
2751 /* Skip leading unhandled stmts. */
2752 if (gsi_stmt (region_begin) == gsi_stmt (gsi))
2754 gsi_next (&gsi);
2755 continue;
2758 gimple_stmt_iterator region_end = gsi;
2760 bool vectorized = false;
2761 bool fatal = false;
2762 bb_vinfo = vect_slp_analyze_bb_1 (region_begin, region_end,
2763 datarefs, insns, fatal);
2764 if (bb_vinfo
2765 && dbg_cnt (vect_slp))
2767 if (dump_enabled_p ())
2768 dump_printf_loc (MSG_NOTE, vect_location, "SLPing BB part\n");
2770 vect_schedule_slp (bb_vinfo);
2772 if (dump_enabled_p ())
2773 dump_printf_loc (MSG_NOTE, vect_location,
2774 "basic block part vectorized\n");
2776 destroy_bb_vec_info (bb_vinfo);
2778 vectorized = true;
2780 else
2781 destroy_bb_vec_info (bb_vinfo);
2783 any_vectorized |= vectorized;
2785 vector_sizes &= ~current_vector_size;
2786 if (vectorized
2787 || vector_sizes == 0
2788 || current_vector_size == 0
2789 /* If vect_slp_analyze_bb_1 signaled that analysis for all
2790 vector sizes will fail do not bother iterating. */
2791 || fatal)
2793 if (gsi_end_p (region_end))
2794 break;
2796 /* Skip the unhandled stmt. */
2797 gsi_next (&gsi);
2799 /* And reset vector sizes. */
2800 current_vector_size = 0;
2801 vector_sizes = targetm.vectorize.autovectorize_vector_sizes ();
2803 else
2805 /* Try the next biggest vector size. */
2806 current_vector_size = 1 << floor_log2 (vector_sizes);
2807 if (dump_enabled_p ())
2808 dump_printf_loc (MSG_NOTE, vect_location,
2809 "***** Re-trying analysis with "
2810 "vector size %d\n", current_vector_size);
2812 /* Start over. */
2813 gsi = region_begin;
2817 return any_vectorized;
2821 /* Return 1 if vector type of boolean constant which is OPNUM
2822 operand in statement STMT is a boolean vector. */
2824 static bool
2825 vect_mask_constant_operand_p (gimple *stmt, int opnum)
2827 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
2828 enum tree_code code = gimple_expr_code (stmt);
2829 tree op, vectype;
2830 gimple *def_stmt;
2831 enum vect_def_type dt;
2833 /* For comparison and COND_EXPR type is chosen depending
2834 on the other comparison operand. */
2835 if (TREE_CODE_CLASS (code) == tcc_comparison)
2837 if (opnum)
2838 op = gimple_assign_rhs1 (stmt);
2839 else
2840 op = gimple_assign_rhs2 (stmt);
2842 if (!vect_is_simple_use (op, stmt_vinfo->vinfo, &def_stmt,
2843 &dt, &vectype))
2844 gcc_unreachable ();
2846 return !vectype || VECTOR_BOOLEAN_TYPE_P (vectype);
2849 if (code == COND_EXPR)
2851 tree cond = gimple_assign_rhs1 (stmt);
2853 if (TREE_CODE (cond) == SSA_NAME)
2854 return false;
2856 if (opnum)
2857 op = TREE_OPERAND (cond, 1);
2858 else
2859 op = TREE_OPERAND (cond, 0);
2861 if (!vect_is_simple_use (op, stmt_vinfo->vinfo, &def_stmt,
2862 &dt, &vectype))
2863 gcc_unreachable ();
2865 return !vectype || VECTOR_BOOLEAN_TYPE_P (vectype);
2868 return VECTOR_BOOLEAN_TYPE_P (STMT_VINFO_VECTYPE (stmt_vinfo));
2872 /* For constant and loop invariant defs of SLP_NODE this function returns
2873 (vector) defs (VEC_OPRNDS) that will be used in the vectorized stmts.
2874 OP_NUM determines if we gather defs for operand 0 or operand 1 of the RHS of
2875 scalar stmts. NUMBER_OF_VECTORS is the number of vector defs to create.
2876 REDUC_INDEX is the index of the reduction operand in the statements, unless
2877 it is -1. */
2879 static void
2880 vect_get_constant_vectors (tree op, slp_tree slp_node,
2881 vec<tree> *vec_oprnds,
2882 unsigned int op_num, unsigned int number_of_vectors,
2883 int reduc_index)
2885 vec<gimple *> stmts = SLP_TREE_SCALAR_STMTS (slp_node);
2886 gimple *stmt = stmts[0];
2887 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
2888 unsigned nunits;
2889 tree vec_cst;
2890 tree *elts;
2891 unsigned j, number_of_places_left_in_vector;
2892 tree vector_type;
2893 tree vop;
2894 int group_size = stmts.length ();
2895 unsigned int vec_num, i;
2896 unsigned number_of_copies = 1;
2897 vec<tree> voprnds;
2898 voprnds.create (number_of_vectors);
2899 bool constant_p, is_store;
2900 tree neutral_op = NULL;
2901 enum tree_code code = gimple_expr_code (stmt);
2902 gimple *def_stmt;
2903 struct loop *loop;
2904 gimple_seq ctor_seq = NULL;
2906 /* Check if vector type is a boolean vector. */
2907 if (TREE_CODE (TREE_TYPE (op)) == BOOLEAN_TYPE
2908 && vect_mask_constant_operand_p (stmt, op_num))
2909 vector_type
2910 = build_same_sized_truth_vector_type (STMT_VINFO_VECTYPE (stmt_vinfo));
2911 else
2912 vector_type = get_vectype_for_scalar_type (TREE_TYPE (op));
2913 nunits = TYPE_VECTOR_SUBPARTS (vector_type);
2915 if (STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_reduction_def
2916 && reduc_index != -1)
2918 op_num = reduc_index;
2919 op = gimple_op (stmt, op_num + 1);
2920 /* For additional copies (see the explanation of NUMBER_OF_COPIES below)
2921 we need either neutral operands or the original operands. See
2922 get_initial_def_for_reduction() for details. */
2923 switch (code)
2925 case WIDEN_SUM_EXPR:
2926 case DOT_PROD_EXPR:
2927 case SAD_EXPR:
2928 case PLUS_EXPR:
2929 case MINUS_EXPR:
2930 case BIT_IOR_EXPR:
2931 case BIT_XOR_EXPR:
2932 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (op)))
2933 neutral_op = build_real (TREE_TYPE (op), dconst0);
2934 else
2935 neutral_op = build_int_cst (TREE_TYPE (op), 0);
2937 break;
2939 case MULT_EXPR:
2940 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (op)))
2941 neutral_op = build_real (TREE_TYPE (op), dconst1);
2942 else
2943 neutral_op = build_int_cst (TREE_TYPE (op), 1);
2945 break;
2947 case BIT_AND_EXPR:
2948 neutral_op = build_int_cst (TREE_TYPE (op), -1);
2949 break;
2951 /* For MIN/MAX we don't have an easy neutral operand but
2952 the initial values can be used fine here. Only for
2953 a reduction chain we have to force a neutral element. */
2954 case MAX_EXPR:
2955 case MIN_EXPR:
2956 if (!GROUP_FIRST_ELEMENT (stmt_vinfo))
2957 neutral_op = NULL;
2958 else
2960 def_stmt = SSA_NAME_DEF_STMT (op);
2961 loop = (gimple_bb (stmt))->loop_father;
2962 neutral_op = PHI_ARG_DEF_FROM_EDGE (def_stmt,
2963 loop_preheader_edge (loop));
2965 break;
2967 default:
2968 gcc_assert (!GROUP_FIRST_ELEMENT (stmt_vinfo));
2969 neutral_op = NULL;
2973 if (STMT_VINFO_DATA_REF (stmt_vinfo))
2975 is_store = true;
2976 op = gimple_assign_rhs1 (stmt);
2978 else
2979 is_store = false;
2981 gcc_assert (op);
2983 if (CONSTANT_CLASS_P (op))
2984 constant_p = true;
2985 else
2986 constant_p = false;
2988 /* NUMBER_OF_COPIES is the number of times we need to use the same values in
2989 created vectors. It is greater than 1 if unrolling is performed.
2991 For example, we have two scalar operands, s1 and s2 (e.g., group of
2992 strided accesses of size two), while NUNITS is four (i.e., four scalars
2993 of this type can be packed in a vector). The output vector will contain
2994 two copies of each scalar operand: {s1, s2, s1, s2}. (NUMBER_OF_COPIES
2995 will be 2).
2997 If GROUP_SIZE > NUNITS, the scalars will be split into several vectors
2998 containing the operands.
3000 For example, NUNITS is four as before, and the group size is 8
3001 (s1, s2, ..., s8). We will create two vectors {s1, s2, s3, s4} and
3002 {s5, s6, s7, s8}. */
3004 number_of_copies = nunits * number_of_vectors / group_size;
3006 number_of_places_left_in_vector = nunits;
3007 elts = XALLOCAVEC (tree, nunits);
3008 bool place_after_defs = false;
3009 for (j = 0; j < number_of_copies; j++)
3011 for (i = group_size - 1; stmts.iterate (i, &stmt); i--)
3013 if (is_store)
3014 op = gimple_assign_rhs1 (stmt);
3015 else
3017 switch (code)
3019 case COND_EXPR:
3021 tree cond = gimple_assign_rhs1 (stmt);
3022 if (TREE_CODE (cond) == SSA_NAME)
3023 op = gimple_op (stmt, op_num + 1);
3024 else if (op_num == 0 || op_num == 1)
3025 op = TREE_OPERAND (cond, op_num);
3026 else
3028 if (op_num == 2)
3029 op = gimple_assign_rhs2 (stmt);
3030 else
3031 op = gimple_assign_rhs3 (stmt);
3034 break;
3036 case CALL_EXPR:
3037 op = gimple_call_arg (stmt, op_num);
3038 break;
3040 case LSHIFT_EXPR:
3041 case RSHIFT_EXPR:
3042 case LROTATE_EXPR:
3043 case RROTATE_EXPR:
3044 op = gimple_op (stmt, op_num + 1);
3045 /* Unlike the other binary operators, shifts/rotates have
3046 the shift count being int, instead of the same type as
3047 the lhs, so make sure the scalar is the right type if
3048 we are dealing with vectors of
3049 long long/long/short/char. */
3050 if (op_num == 1 && TREE_CODE (op) == INTEGER_CST)
3051 op = fold_convert (TREE_TYPE (vector_type), op);
3052 break;
3054 default:
3055 op = gimple_op (stmt, op_num + 1);
3056 break;
3060 if (reduc_index != -1)
3062 loop = (gimple_bb (stmt))->loop_father;
3063 def_stmt = SSA_NAME_DEF_STMT (op);
3065 gcc_assert (loop);
3067 /* Get the def before the loop. In reduction chain we have only
3068 one initial value. */
3069 if ((j != (number_of_copies - 1)
3070 || (GROUP_FIRST_ELEMENT (vinfo_for_stmt (stmt))
3071 && i != 0))
3072 && neutral_op)
3073 op = neutral_op;
3074 else
3075 op = PHI_ARG_DEF_FROM_EDGE (def_stmt,
3076 loop_preheader_edge (loop));
3079 /* Create 'vect_ = {op0,op1,...,opn}'. */
3080 number_of_places_left_in_vector--;
3081 tree orig_op = op;
3082 if (!types_compatible_p (TREE_TYPE (vector_type), TREE_TYPE (op)))
3084 if (CONSTANT_CLASS_P (op))
3086 if (VECTOR_BOOLEAN_TYPE_P (vector_type))
3088 /* Can't use VIEW_CONVERT_EXPR for booleans because
3089 of possibly different sizes of scalar value and
3090 vector element. */
3091 if (integer_zerop (op))
3092 op = build_int_cst (TREE_TYPE (vector_type), 0);
3093 else if (integer_onep (op))
3094 op = build_all_ones_cst (TREE_TYPE (vector_type));
3095 else
3096 gcc_unreachable ();
3098 else
3099 op = fold_unary (VIEW_CONVERT_EXPR,
3100 TREE_TYPE (vector_type), op);
3101 gcc_assert (op && CONSTANT_CLASS_P (op));
3103 else
3105 tree new_temp = make_ssa_name (TREE_TYPE (vector_type));
3106 gimple *init_stmt;
3107 if (VECTOR_BOOLEAN_TYPE_P (vector_type))
3109 tree true_val
3110 = build_all_ones_cst (TREE_TYPE (vector_type));
3111 tree false_val
3112 = build_zero_cst (TREE_TYPE (vector_type));
3113 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (op)));
3114 init_stmt = gimple_build_assign (new_temp, COND_EXPR,
3115 op, true_val,
3116 false_val);
3118 else
3120 op = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (vector_type),
3121 op);
3122 init_stmt
3123 = gimple_build_assign (new_temp, VIEW_CONVERT_EXPR,
3124 op);
3126 gimple_seq_add_stmt (&ctor_seq, init_stmt);
3127 op = new_temp;
3130 elts[number_of_places_left_in_vector] = op;
3131 if (!CONSTANT_CLASS_P (op))
3132 constant_p = false;
3133 if (TREE_CODE (orig_op) == SSA_NAME
3134 && !SSA_NAME_IS_DEFAULT_DEF (orig_op)
3135 && STMT_VINFO_BB_VINFO (stmt_vinfo)
3136 && (STMT_VINFO_BB_VINFO (stmt_vinfo)->bb
3137 == gimple_bb (SSA_NAME_DEF_STMT (orig_op))))
3138 place_after_defs = true;
3140 if (number_of_places_left_in_vector == 0)
3142 number_of_places_left_in_vector = nunits;
3144 if (constant_p)
3145 vec_cst = build_vector (vector_type, elts);
3146 else
3148 vec<constructor_elt, va_gc> *v;
3149 unsigned k;
3150 vec_alloc (v, nunits);
3151 for (k = 0; k < nunits; ++k)
3152 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, elts[k]);
3153 vec_cst = build_constructor (vector_type, v);
3155 tree init;
3156 gimple_stmt_iterator gsi;
3157 if (place_after_defs)
3159 gsi = gsi_for_stmt
3160 (vect_find_last_scalar_stmt_in_slp (slp_node));
3161 init = vect_init_vector (stmt, vec_cst, vector_type, &gsi);
3163 else
3164 init = vect_init_vector (stmt, vec_cst, vector_type, NULL);
3165 if (ctor_seq != NULL)
3167 gsi = gsi_for_stmt (SSA_NAME_DEF_STMT (init));
3168 gsi_insert_seq_before_without_update (&gsi, ctor_seq,
3169 GSI_SAME_STMT);
3170 ctor_seq = NULL;
3172 voprnds.quick_push (init);
3173 place_after_defs = false;
3178 /* Since the vectors are created in the reverse order, we should invert
3179 them. */
3180 vec_num = voprnds.length ();
3181 for (j = vec_num; j != 0; j--)
3183 vop = voprnds[j - 1];
3184 vec_oprnds->quick_push (vop);
3187 voprnds.release ();
3189 /* In case that VF is greater than the unrolling factor needed for the SLP
3190 group of stmts, NUMBER_OF_VECTORS to be created is greater than
3191 NUMBER_OF_SCALARS/NUNITS or NUNITS/NUMBER_OF_SCALARS, and hence we have
3192 to replicate the vectors. */
3193 while (number_of_vectors > vec_oprnds->length ())
3195 tree neutral_vec = NULL;
3197 if (neutral_op)
3199 if (!neutral_vec)
3200 neutral_vec = build_vector_from_val (vector_type, neutral_op);
3202 vec_oprnds->quick_push (neutral_vec);
3204 else
3206 for (i = 0; vec_oprnds->iterate (i, &vop) && i < vec_num; i++)
3207 vec_oprnds->quick_push (vop);
3213 /* Get vectorized definitions from SLP_NODE that contains corresponding
3214 vectorized def-stmts. */
3216 static void
3217 vect_get_slp_vect_defs (slp_tree slp_node, vec<tree> *vec_oprnds)
3219 tree vec_oprnd;
3220 gimple *vec_def_stmt;
3221 unsigned int i;
3223 gcc_assert (SLP_TREE_VEC_STMTS (slp_node).exists ());
3225 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (slp_node), i, vec_def_stmt)
3227 gcc_assert (vec_def_stmt);
3228 vec_oprnd = gimple_get_lhs (vec_def_stmt);
3229 vec_oprnds->quick_push (vec_oprnd);
3234 /* Get vectorized definitions for SLP_NODE.
3235 If the scalar definitions are loop invariants or constants, collect them and
3236 call vect_get_constant_vectors() to create vector stmts.
3237 Otherwise, the def-stmts must be already vectorized and the vectorized stmts
3238 must be stored in the corresponding child of SLP_NODE, and we call
3239 vect_get_slp_vect_defs () to retrieve them. */
3241 void
3242 vect_get_slp_defs (vec<tree> ops, slp_tree slp_node,
3243 vec<vec<tree> > *vec_oprnds, int reduc_index)
3245 gimple *first_stmt;
3246 int number_of_vects = 0, i;
3247 HOST_WIDE_INT lhs_size_unit, rhs_size_unit;
3248 slp_tree child = NULL;
3249 vec<tree> vec_defs;
3250 tree oprnd;
3251 bool first_iteration = true;
3253 first_stmt = SLP_TREE_SCALAR_STMTS (slp_node)[0];
3254 FOR_EACH_VEC_ELT (ops, i, oprnd)
3256 bool vectorized_defs = false;
3258 if (oprnd == NULL)
3260 vec_defs = vNULL;
3261 vec_defs.create (0);
3262 vec_oprnds->quick_push (vec_defs);
3263 continue;
3266 /* For each operand we check if it has vectorized definitions in a child
3267 node or we need to create them (for invariants and constants). We
3268 check if the LHS of the first stmt of the next child matches OPRND.
3269 If it does, we found the correct child. Otherwise, we call
3270 vect_get_constant_vectors (). */
3271 for (unsigned int child_index = 0;
3272 child_index < SLP_TREE_CHILDREN (slp_node).length (); child_index++)
3274 child = SLP_TREE_CHILDREN (slp_node)[child_index];
3276 /* We have to check both pattern and original def, if available. */
3277 if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
3279 gimple *first_def = SLP_TREE_SCALAR_STMTS (child)[0];
3280 gimple *related
3281 = STMT_VINFO_RELATED_STMT (vinfo_for_stmt (first_def));
3283 if (operand_equal_p (oprnd, gimple_get_lhs (first_def), 0)
3284 || (related
3285 && operand_equal_p (oprnd, gimple_get_lhs (related), 0)))
3287 /* The number of vector defs is determined by the number of
3288 vector statements in the node from which we get those
3289 statements. */
3290 number_of_vects = SLP_TREE_NUMBER_OF_VEC_STMTS (child);
3291 vectorized_defs = true;
3292 break;
3297 if (!vectorized_defs && first_iteration)
3299 number_of_vects = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
3300 /* Number of vector stmts was calculated according to LHS in
3301 vect_schedule_slp_instance (), fix it by replacing LHS with
3302 RHS, if necessary. See vect_get_smallest_scalar_type () for
3303 details. */
3304 vect_get_smallest_scalar_type (first_stmt, &lhs_size_unit,
3305 &rhs_size_unit);
3306 if (rhs_size_unit != lhs_size_unit)
3308 number_of_vects *= rhs_size_unit;
3309 number_of_vects /= lhs_size_unit;
3313 /* Allocate memory for vectorized defs. */
3314 vec_defs = vNULL;
3315 vec_defs.create (number_of_vects);
3317 /* For reduction defs we call vect_get_constant_vectors (), since we are
3318 looking for initial loop invariant values. */
3319 if (vectorized_defs && reduc_index == -1)
3320 /* The defs are already vectorized. */
3321 vect_get_slp_vect_defs (child, &vec_defs);
3322 else
3323 /* Build vectors from scalar defs. */
3324 vect_get_constant_vectors (oprnd, slp_node, &vec_defs, i,
3325 number_of_vects, reduc_index);
3327 vec_oprnds->quick_push (vec_defs);
3329 /* For reductions, we only need initial values. */
3330 if (reduc_index != -1)
3331 return;
3333 first_iteration = false;
3338 /* Create NCOPIES permutation statements using the mask MASK_BYTES (by
3339 building a vector of type MASK_TYPE from it) and two input vectors placed in
3340 DR_CHAIN at FIRST_VEC_INDX and SECOND_VEC_INDX for the first copy and
3341 shifting by STRIDE elements of DR_CHAIN for every copy.
3342 (STRIDE is the number of vectorized stmts for NODE divided by the number of
3343 copies).
3344 VECT_STMTS_COUNTER specifies the index in the vectorized stmts of NODE, where
3345 the created stmts must be inserted. */
3347 static inline void
3348 vect_create_mask_and_perm (gimple *stmt,
3349 tree mask, int first_vec_indx, int second_vec_indx,
3350 gimple_stmt_iterator *gsi, slp_tree node,
3351 tree vectype, vec<tree> dr_chain,
3352 int ncopies, int vect_stmts_counter)
3354 tree perm_dest;
3355 gimple *perm_stmt = NULL;
3356 int i, stride_in, stride_out;
3357 tree first_vec, second_vec, data_ref;
3359 stride_out = SLP_TREE_NUMBER_OF_VEC_STMTS (node) / ncopies;
3360 stride_in = dr_chain.length () / ncopies;
3362 /* Initialize the vect stmts of NODE to properly insert the generated
3363 stmts later. */
3364 for (i = SLP_TREE_VEC_STMTS (node).length ();
3365 i < (int) SLP_TREE_NUMBER_OF_VEC_STMTS (node); i++)
3366 SLP_TREE_VEC_STMTS (node).quick_push (NULL);
3368 perm_dest = vect_create_destination_var (gimple_assign_lhs (stmt), vectype);
3369 for (i = 0; i < ncopies; i++)
3371 first_vec = dr_chain[first_vec_indx];
3372 second_vec = dr_chain[second_vec_indx];
3374 /* Generate the permute statement if necessary. */
3375 if (mask)
3377 perm_stmt = gimple_build_assign (perm_dest, VEC_PERM_EXPR,
3378 first_vec, second_vec, mask);
3379 data_ref = make_ssa_name (perm_dest, perm_stmt);
3380 gimple_set_lhs (perm_stmt, data_ref);
3381 vect_finish_stmt_generation (stmt, perm_stmt, gsi);
3383 else
3384 /* If mask was NULL_TREE generate the requested identity transform. */
3385 perm_stmt = SSA_NAME_DEF_STMT (first_vec);
3387 /* Store the vector statement in NODE. */
3388 SLP_TREE_VEC_STMTS (node)[stride_out * i + vect_stmts_counter]
3389 = perm_stmt;
3391 first_vec_indx += stride_in;
3392 second_vec_indx += stride_in;
3397 /* Generate vector permute statements from a list of loads in DR_CHAIN.
3398 If ANALYZE_ONLY is TRUE, only check that it is possible to create valid
3399 permute statements for the SLP node NODE of the SLP instance
3400 SLP_NODE_INSTANCE. */
3402 bool
3403 vect_transform_slp_perm_load (slp_tree node, vec<tree> dr_chain,
3404 gimple_stmt_iterator *gsi, int vf,
3405 slp_instance slp_node_instance, bool analyze_only)
3407 gimple *stmt = SLP_TREE_SCALAR_STMTS (node)[0];
3408 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
3409 tree mask_element_type = NULL_TREE, mask_type;
3410 int nunits, vec_index = 0;
3411 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
3412 int group_size = SLP_INSTANCE_GROUP_SIZE (slp_node_instance);
3413 int unroll_factor, mask_element, ncopies;
3414 unsigned char *mask;
3415 machine_mode mode;
3417 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info))
3418 return false;
3420 stmt_info = vinfo_for_stmt (GROUP_FIRST_ELEMENT (stmt_info));
3422 mode = TYPE_MODE (vectype);
3424 /* The generic VEC_PERM_EXPR code always uses an integral type of the
3425 same size as the vector element being permuted. */
3426 mask_element_type = lang_hooks.types.type_for_mode
3427 (int_mode_for_mode (TYPE_MODE (TREE_TYPE (vectype))), 1);
3428 mask_type = get_vectype_for_scalar_type (mask_element_type);
3429 nunits = TYPE_VECTOR_SUBPARTS (vectype);
3430 mask = XALLOCAVEC (unsigned char, nunits);
3431 unroll_factor = SLP_INSTANCE_UNROLLING_FACTOR (slp_node_instance);
3433 /* Number of copies is determined by the final vectorization factor
3434 relatively to SLP_NODE_INSTANCE unrolling factor. */
3435 ncopies = vf / SLP_INSTANCE_UNROLLING_FACTOR (slp_node_instance);
3437 /* Generate permutation masks for every NODE. Number of masks for each NODE
3438 is equal to GROUP_SIZE.
3439 E.g., we have a group of three nodes with three loads from the same
3440 location in each node, and the vector size is 4. I.e., we have a
3441 a0b0c0a1b1c1... sequence and we need to create the following vectors:
3442 for a's: a0a0a0a1 a1a1a2a2 a2a3a3a3
3443 for b's: b0b0b0b1 b1b1b2b2 b2b3b3b3
3446 The masks for a's should be: {0,0,0,3} {3,3,6,6} {6,9,9,9}.
3447 The last mask is illegal since we assume two operands for permute
3448 operation, and the mask element values can't be outside that range.
3449 Hence, the last mask must be converted into {2,5,5,5}.
3450 For the first two permutations we need the first and the second input
3451 vectors: {a0,b0,c0,a1} and {b1,c1,a2,b2}, and for the last permutation
3452 we need the second and the third vectors: {b1,c1,a2,b2} and
3453 {c2,a3,b3,c3}. */
3455 int vect_stmts_counter = 0;
3456 int index = 0;
3457 int first_vec_index = -1;
3458 int second_vec_index = -1;
3459 bool noop_p = true;
3461 for (int j = 0; j < unroll_factor; j++)
3463 for (int k = 0; k < group_size; k++)
3465 int i = (SLP_TREE_LOAD_PERMUTATION (node)[k]
3466 + j * STMT_VINFO_GROUP_SIZE (stmt_info));
3467 vec_index = i / nunits;
3468 mask_element = i % nunits;
3469 if (vec_index == first_vec_index
3470 || first_vec_index == -1)
3472 first_vec_index = vec_index;
3474 else if (vec_index == second_vec_index
3475 || second_vec_index == -1)
3477 second_vec_index = vec_index;
3478 mask_element += nunits;
3480 else
3482 if (dump_enabled_p ())
3484 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
3485 "permutation requires at "
3486 "least three vectors ");
3487 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
3488 stmt, 0);
3490 return false;
3493 gcc_assert (mask_element >= 0
3494 && mask_element < 2 * nunits);
3495 if (mask_element != index)
3496 noop_p = false;
3497 mask[index++] = mask_element;
3499 if (index == nunits)
3501 if (! noop_p
3502 && ! can_vec_perm_p (mode, false, mask))
3504 if (dump_enabled_p ())
3506 dump_printf_loc (MSG_MISSED_OPTIMIZATION,
3507 vect_location,
3508 "unsupported vect permute { ");
3509 for (i = 0; i < nunits; ++i)
3510 dump_printf (MSG_MISSED_OPTIMIZATION, "%d ", mask[i]);
3511 dump_printf (MSG_MISSED_OPTIMIZATION, "}\n");
3513 return false;
3516 if (!analyze_only)
3518 tree mask_vec = NULL_TREE;
3520 if (! noop_p)
3522 tree *mask_elts = XALLOCAVEC (tree, nunits);
3523 for (int l = 0; l < nunits; ++l)
3524 mask_elts[l] = build_int_cst (mask_element_type,
3525 mask[l]);
3526 mask_vec = build_vector (mask_type, mask_elts);
3529 if (second_vec_index == -1)
3530 second_vec_index = first_vec_index;
3531 vect_create_mask_and_perm (stmt, mask_vec, first_vec_index,
3532 second_vec_index,
3533 gsi, node, vectype, dr_chain,
3534 ncopies, vect_stmts_counter++);
3537 index = 0;
3538 first_vec_index = -1;
3539 second_vec_index = -1;
3540 noop_p = true;
3545 return true;
3550 /* Vectorize SLP instance tree in postorder. */
3552 static bool
3553 vect_schedule_slp_instance (slp_tree node, slp_instance instance,
3554 unsigned int vectorization_factor)
3556 gimple *stmt;
3557 bool grouped_store, is_store;
3558 gimple_stmt_iterator si;
3559 stmt_vec_info stmt_info;
3560 unsigned int vec_stmts_size, nunits, group_size;
3561 tree vectype;
3562 int i, j;
3563 slp_tree child;
3565 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
3566 return false;
3568 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
3569 vect_schedule_slp_instance (child, instance, vectorization_factor);
3571 /* Push SLP node def-type to stmts. */
3572 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
3573 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
3574 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child), j, stmt)
3575 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (stmt)) = SLP_TREE_DEF_TYPE (child);
3577 stmt = SLP_TREE_SCALAR_STMTS (node)[0];
3578 stmt_info = vinfo_for_stmt (stmt);
3580 /* VECTYPE is the type of the destination. */
3581 vectype = STMT_VINFO_VECTYPE (stmt_info);
3582 nunits = (unsigned int) TYPE_VECTOR_SUBPARTS (vectype);
3583 group_size = SLP_INSTANCE_GROUP_SIZE (instance);
3585 /* For each SLP instance calculate number of vector stmts to be created
3586 for the scalar stmts in each node of the SLP tree. Number of vector
3587 elements in one vector iteration is the number of scalar elements in
3588 one scalar iteration (GROUP_SIZE) multiplied by VF divided by vector
3589 size.
3590 Unless this is a SLP reduction in which case the number of vector
3591 stmts is equal to the number of vector stmts of the children. */
3592 if (GROUP_FIRST_ELEMENT (stmt_info)
3593 && !STMT_VINFO_GROUPED_ACCESS (stmt_info))
3594 vec_stmts_size = SLP_TREE_NUMBER_OF_VEC_STMTS (SLP_TREE_CHILDREN (node)[0]);
3595 else
3596 vec_stmts_size = (vectorization_factor * group_size) / nunits;
3598 if (!SLP_TREE_VEC_STMTS (node).exists ())
3600 SLP_TREE_VEC_STMTS (node).create (vec_stmts_size);
3601 SLP_TREE_NUMBER_OF_VEC_STMTS (node) = vec_stmts_size;
3604 if (dump_enabled_p ())
3606 dump_printf_loc (MSG_NOTE,vect_location,
3607 "------>vectorizing SLP node starting from: ");
3608 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
3611 /* Vectorized stmts go before the last scalar stmt which is where
3612 all uses are ready. */
3613 si = gsi_for_stmt (vect_find_last_scalar_stmt_in_slp (node));
3615 /* Mark the first element of the reduction chain as reduction to properly
3616 transform the node. In the analysis phase only the last element of the
3617 chain is marked as reduction. */
3618 if (GROUP_FIRST_ELEMENT (stmt_info) && !STMT_VINFO_GROUPED_ACCESS (stmt_info)
3619 && GROUP_FIRST_ELEMENT (stmt_info) == stmt)
3621 STMT_VINFO_DEF_TYPE (stmt_info) = vect_reduction_def;
3622 STMT_VINFO_TYPE (stmt_info) = reduc_vec_info_type;
3625 /* Handle two-operation SLP nodes by vectorizing the group with
3626 both operations and then performing a merge. */
3627 if (SLP_TREE_TWO_OPERATORS (node))
3629 enum tree_code code0 = gimple_assign_rhs_code (stmt);
3630 enum tree_code ocode = ERROR_MARK;
3631 gimple *ostmt;
3632 unsigned char *mask = XALLOCAVEC (unsigned char, group_size);
3633 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, ostmt)
3634 if (gimple_assign_rhs_code (ostmt) != code0)
3636 mask[i] = 1;
3637 ocode = gimple_assign_rhs_code (ostmt);
3639 else
3640 mask[i] = 0;
3641 if (ocode != ERROR_MARK)
3643 vec<gimple *> v0;
3644 vec<gimple *> v1;
3645 unsigned j;
3646 tree tmask = NULL_TREE;
3647 vect_transform_stmt (stmt, &si, &grouped_store, node, instance);
3648 v0 = SLP_TREE_VEC_STMTS (node).copy ();
3649 SLP_TREE_VEC_STMTS (node).truncate (0);
3650 gimple_assign_set_rhs_code (stmt, ocode);
3651 vect_transform_stmt (stmt, &si, &grouped_store, node, instance);
3652 gimple_assign_set_rhs_code (stmt, code0);
3653 v1 = SLP_TREE_VEC_STMTS (node).copy ();
3654 SLP_TREE_VEC_STMTS (node).truncate (0);
3655 tree meltype = build_nonstandard_integer_type
3656 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (vectype))), 1);
3657 tree mvectype = get_same_sized_vectype (meltype, vectype);
3658 unsigned k = 0, l;
3659 for (j = 0; j < v0.length (); ++j)
3661 tree *melts = XALLOCAVEC (tree, TYPE_VECTOR_SUBPARTS (vectype));
3662 for (l = 0; l < TYPE_VECTOR_SUBPARTS (vectype); ++l)
3664 if (k >= group_size)
3665 k = 0;
3666 melts[l] = build_int_cst
3667 (meltype, mask[k++] * TYPE_VECTOR_SUBPARTS (vectype) + l);
3669 tmask = build_vector (mvectype, melts);
3671 /* ??? Not all targets support a VEC_PERM_EXPR with a
3672 constant mask that would translate to a vec_merge RTX
3673 (with their vec_perm_const_ok). We can either not
3674 vectorize in that case or let veclower do its job.
3675 Unfortunately that isn't too great and at least for
3676 plus/minus we'd eventually like to match targets
3677 vector addsub instructions. */
3678 gimple *vstmt;
3679 vstmt = gimple_build_assign (make_ssa_name (vectype),
3680 VEC_PERM_EXPR,
3681 gimple_assign_lhs (v0[j]),
3682 gimple_assign_lhs (v1[j]), tmask);
3683 vect_finish_stmt_generation (stmt, vstmt, &si);
3684 SLP_TREE_VEC_STMTS (node).quick_push (vstmt);
3686 v0.release ();
3687 v1.release ();
3688 return false;
3691 is_store = vect_transform_stmt (stmt, &si, &grouped_store, node, instance);
3693 /* Restore stmt def-types. */
3694 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
3695 if (SLP_TREE_DEF_TYPE (child) != vect_internal_def)
3696 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child), j, stmt)
3697 STMT_VINFO_DEF_TYPE (vinfo_for_stmt (stmt)) = vect_internal_def;
3699 return is_store;
3702 /* Replace scalar calls from SLP node NODE with setting of their lhs to zero.
3703 For loop vectorization this is done in vectorizable_call, but for SLP
3704 it needs to be deferred until end of vect_schedule_slp, because multiple
3705 SLP instances may refer to the same scalar stmt. */
3707 static void
3708 vect_remove_slp_scalar_calls (slp_tree node)
3710 gimple *stmt, *new_stmt;
3711 gimple_stmt_iterator gsi;
3712 int i;
3713 slp_tree child;
3714 tree lhs;
3715 stmt_vec_info stmt_info;
3717 if (SLP_TREE_DEF_TYPE (node) != vect_internal_def)
3718 return;
3720 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
3721 vect_remove_slp_scalar_calls (child);
3723 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt)
3725 if (!is_gimple_call (stmt) || gimple_bb (stmt) == NULL)
3726 continue;
3727 stmt_info = vinfo_for_stmt (stmt);
3728 if (stmt_info == NULL
3729 || is_pattern_stmt_p (stmt_info)
3730 || !PURE_SLP_STMT (stmt_info))
3731 continue;
3732 lhs = gimple_call_lhs (stmt);
3733 new_stmt = gimple_build_assign (lhs, build_zero_cst (TREE_TYPE (lhs)));
3734 set_vinfo_for_stmt (new_stmt, stmt_info);
3735 set_vinfo_for_stmt (stmt, NULL);
3736 STMT_VINFO_STMT (stmt_info) = new_stmt;
3737 gsi = gsi_for_stmt (stmt);
3738 gsi_replace (&gsi, new_stmt, false);
3739 SSA_NAME_DEF_STMT (gimple_assign_lhs (new_stmt)) = new_stmt;
3743 /* Generate vector code for all SLP instances in the loop/basic block. */
3745 bool
3746 vect_schedule_slp (vec_info *vinfo)
3748 vec<slp_instance> slp_instances;
3749 slp_instance instance;
3750 unsigned int i, vf;
3751 bool is_store = false;
3753 slp_instances = vinfo->slp_instances;
3754 if (is_a <loop_vec_info> (vinfo))
3755 vf = as_a <loop_vec_info> (vinfo)->vectorization_factor;
3756 else
3757 vf = 1;
3759 FOR_EACH_VEC_ELT (slp_instances, i, instance)
3761 /* Schedule the tree of INSTANCE. */
3762 is_store = vect_schedule_slp_instance (SLP_INSTANCE_TREE (instance),
3763 instance, vf);
3764 if (dump_enabled_p ())
3765 dump_printf_loc (MSG_NOTE, vect_location,
3766 "vectorizing stmts using SLP.\n");
3769 FOR_EACH_VEC_ELT (slp_instances, i, instance)
3771 slp_tree root = SLP_INSTANCE_TREE (instance);
3772 gimple *store;
3773 unsigned int j;
3774 gimple_stmt_iterator gsi;
3776 /* Remove scalar call stmts. Do not do this for basic-block
3777 vectorization as not all uses may be vectorized.
3778 ??? Why should this be necessary? DCE should be able to
3779 remove the stmts itself.
3780 ??? For BB vectorization we can as well remove scalar
3781 stmts starting from the SLP tree root if they have no
3782 uses. */
3783 if (is_a <loop_vec_info> (vinfo))
3784 vect_remove_slp_scalar_calls (root);
3786 for (j = 0; SLP_TREE_SCALAR_STMTS (root).iterate (j, &store)
3787 && j < SLP_INSTANCE_GROUP_SIZE (instance); j++)
3789 if (!STMT_VINFO_DATA_REF (vinfo_for_stmt (store)))
3790 break;
3792 if (is_pattern_stmt_p (vinfo_for_stmt (store)))
3793 store = STMT_VINFO_RELATED_STMT (vinfo_for_stmt (store));
3794 /* Free the attached stmt_vec_info and remove the stmt. */
3795 gsi = gsi_for_stmt (store);
3796 unlink_stmt_vdef (store);
3797 gsi_remove (&gsi, true);
3798 release_defs (store);
3799 free_stmt_vec_info (store);
3803 return is_store;