1 /* SLP - Basic Block Vectorization
2 Copyright (C) 2007-2018 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
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
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/>. */
24 #include "coretypes.h"
30 #include "tree-pass.h"
32 #include "optabs-tree.h"
33 #include "insn-config.h"
34 #include "recog.h" /* FIXME: for insn_data */
36 #include "fold-const.h"
37 #include "stor-layout.h"
38 #include "gimple-iterator.h"
40 #include "tree-vectorizer.h"
41 #include "langhooks.h"
42 #include "gimple-walk.h"
44 #include "tree-vector-builder.h"
45 #include "vec-perm-indices.h"
46 #include "gimple-fold.h"
47 #include "internal-fn.h"
50 /* Recursively free the memory allocated for the SLP tree rooted at NODE.
51 FINAL_P is true if we have vectorized the instance or if we have
52 made a final decision not to vectorize the statements in any way. */
55 vect_free_slp_tree (slp_tree node
, bool final_p
)
60 if (--node
->refcnt
!= 0)
63 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
64 vect_free_slp_tree (child
, final_p
);
66 /* Don't update STMT_VINFO_NUM_SLP_USES if it isn't relevant.
67 Some statements might no longer exist, after having been
68 removed by vect_transform_stmt. Updating the remaining
69 statements would be redundant. */
72 stmt_vec_info stmt_info
;
73 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
75 gcc_assert (STMT_VINFO_NUM_SLP_USES (stmt_info
) > 0);
76 STMT_VINFO_NUM_SLP_USES (stmt_info
)--;
80 SLP_TREE_CHILDREN (node
).release ();
81 SLP_TREE_SCALAR_STMTS (node
).release ();
82 SLP_TREE_VEC_STMTS (node
).release ();
83 SLP_TREE_LOAD_PERMUTATION (node
).release ();
88 /* Free the memory allocated for the SLP instance. FINAL_P is true if we
89 have vectorized the instance or if we have made a final decision not
90 to vectorize the statements in any way. */
93 vect_free_slp_instance (slp_instance instance
, bool final_p
)
95 vect_free_slp_tree (SLP_INSTANCE_TREE (instance
), final_p
);
96 SLP_INSTANCE_LOADS (instance
).release ();
101 /* Create an SLP node for SCALAR_STMTS. */
104 vect_create_new_slp_node (vec
<stmt_vec_info
> scalar_stmts
)
107 stmt_vec_info stmt_info
= scalar_stmts
[0];
110 if (gcall
*stmt
= dyn_cast
<gcall
*> (stmt_info
->stmt
))
111 nops
= gimple_call_num_args (stmt
);
112 else if (gassign
*stmt
= dyn_cast
<gassign
*> (stmt_info
->stmt
))
114 nops
= gimple_num_ops (stmt
) - 1;
115 if (gimple_assign_rhs_code (stmt
) == COND_EXPR
)
118 else if (is_a
<gphi
*> (stmt_info
->stmt
))
123 node
= XNEW (struct _slp_tree
);
124 SLP_TREE_SCALAR_STMTS (node
) = scalar_stmts
;
125 SLP_TREE_VEC_STMTS (node
).create (0);
126 SLP_TREE_NUMBER_OF_VEC_STMTS (node
) = 0;
127 SLP_TREE_CHILDREN (node
).create (nops
);
128 SLP_TREE_LOAD_PERMUTATION (node
) = vNULL
;
129 SLP_TREE_TWO_OPERATORS (node
) = false;
130 SLP_TREE_DEF_TYPE (node
) = vect_internal_def
;
134 FOR_EACH_VEC_ELT (scalar_stmts
, i
, stmt_info
)
135 STMT_VINFO_NUM_SLP_USES (stmt_info
)++;
141 /* This structure is used in creation of an SLP tree. Each instance
142 corresponds to the same operand in a group of scalar stmts in an SLP
144 typedef struct _slp_oprnd_info
146 /* Def-stmts for the operands. */
147 vec
<stmt_vec_info
> def_stmts
;
148 /* Information about the first statement, its vector def-type, type, the
149 operand itself in case it's constant, and an indication if it's a pattern
152 enum vect_def_type first_dt
;
158 /* Allocate operands info for NOPS operands, and GROUP_SIZE def-stmts for each
160 static vec
<slp_oprnd_info
>
161 vect_create_oprnd_info (int nops
, int group_size
)
164 slp_oprnd_info oprnd_info
;
165 vec
<slp_oprnd_info
> oprnds_info
;
167 oprnds_info
.create (nops
);
168 for (i
= 0; i
< nops
; i
++)
170 oprnd_info
= XNEW (struct _slp_oprnd_info
);
171 oprnd_info
->def_stmts
.create (group_size
);
172 oprnd_info
->first_dt
= vect_uninitialized_def
;
173 oprnd_info
->first_op_type
= NULL_TREE
;
174 oprnd_info
->first_pattern
= false;
175 oprnd_info
->second_pattern
= false;
176 oprnds_info
.quick_push (oprnd_info
);
183 /* Free operands info. */
186 vect_free_oprnd_info (vec
<slp_oprnd_info
> &oprnds_info
)
189 slp_oprnd_info oprnd_info
;
191 FOR_EACH_VEC_ELT (oprnds_info
, i
, oprnd_info
)
193 oprnd_info
->def_stmts
.release ();
194 XDELETE (oprnd_info
);
197 oprnds_info
.release ();
201 /* Find the place of the data-ref in STMT_INFO in the interleaving chain
202 that starts from FIRST_STMT_INFO. Return -1 if the data-ref is not a part
206 vect_get_place_in_interleaving_chain (stmt_vec_info stmt_info
,
207 stmt_vec_info first_stmt_info
)
209 stmt_vec_info next_stmt_info
= first_stmt_info
;
212 if (first_stmt_info
!= DR_GROUP_FIRST_ELEMENT (stmt_info
))
217 if (next_stmt_info
== stmt_info
)
219 next_stmt_info
= DR_GROUP_NEXT_ELEMENT (next_stmt_info
);
221 result
+= DR_GROUP_GAP (next_stmt_info
);
223 while (next_stmt_info
);
228 /* Check whether it is possible to load COUNT elements of type ELT_MODE
229 using the method implemented by duplicate_and_interleave. Return true
230 if so, returning the number of intermediate vectors in *NVECTORS_OUT
231 (if nonnull) and the type of each intermediate vector in *VECTOR_TYPE_OUT
235 can_duplicate_and_interleave_p (unsigned int count
, machine_mode elt_mode
,
236 unsigned int *nvectors_out
,
237 tree
*vector_type_out
,
240 poly_int64 elt_bytes
= count
* GET_MODE_SIZE (elt_mode
);
242 unsigned int nvectors
= 1;
245 scalar_int_mode int_mode
;
246 poly_int64 elt_bits
= elt_bytes
* BITS_PER_UNIT
;
247 if (multiple_p (current_vector_size
, elt_bytes
, &nelts
)
248 && int_mode_for_size (elt_bits
, 0).exists (&int_mode
))
250 tree int_type
= build_nonstandard_integer_type
251 (GET_MODE_BITSIZE (int_mode
), 1);
252 tree vector_type
= build_vector_type (int_type
, nelts
);
253 if (VECTOR_MODE_P (TYPE_MODE (vector_type
)))
255 vec_perm_builder
sel1 (nelts
, 2, 3);
256 vec_perm_builder
sel2 (nelts
, 2, 3);
257 poly_int64 half_nelts
= exact_div (nelts
, 2);
258 for (unsigned int i
= 0; i
< 3; ++i
)
261 sel1
.quick_push (i
+ nelts
);
262 sel2
.quick_push (half_nelts
+ i
);
263 sel2
.quick_push (half_nelts
+ i
+ nelts
);
265 vec_perm_indices
indices1 (sel1
, 2, nelts
);
266 vec_perm_indices
indices2 (sel2
, 2, nelts
);
267 if (can_vec_perm_const_p (TYPE_MODE (vector_type
), indices1
)
268 && can_vec_perm_const_p (TYPE_MODE (vector_type
), indices2
))
271 *nvectors_out
= nvectors
;
273 *vector_type_out
= vector_type
;
276 permutes
[0] = vect_gen_perm_mask_checked (vector_type
,
278 permutes
[1] = vect_gen_perm_mask_checked (vector_type
,
285 if (!multiple_p (elt_bytes
, 2, &elt_bytes
))
291 /* Get the defs for the rhs of STMT (collect them in OPRNDS_INFO), check that
292 they are of a valid type and that they match the defs of the first stmt of
293 the SLP group (stored in OPRNDS_INFO). This function tries to match stmts
294 by swapping operands of STMTS[STMT_NUM] when possible. Non-zero *SWAP
295 indicates swap is required for cond_expr stmts. Specifically, *SWAP
296 is 1 if STMT is cond and operands of comparison need to be swapped;
297 *SWAP is 2 if STMT is cond and code of comparison needs to be inverted.
298 If there is any operand swap in this function, *SWAP is set to non-zero
300 If there was a fatal error return -1; if the error could be corrected by
301 swapping operands of father node of this one, return 1; if everything is
304 vect_get_and_check_slp_defs (vec_info
*vinfo
, unsigned char *swap
,
305 vec
<stmt_vec_info
> stmts
, unsigned stmt_num
,
306 vec
<slp_oprnd_info
> *oprnds_info
)
308 stmt_vec_info stmt_info
= stmts
[stmt_num
];
310 unsigned int i
, number_of_oprnds
;
311 enum vect_def_type dt
= vect_uninitialized_def
;
312 bool pattern
= false;
313 slp_oprnd_info oprnd_info
;
314 int first_op_idx
= 1;
315 unsigned int commutative_op
= -1U;
316 bool first_op_cond
= false;
317 bool first
= stmt_num
== 0;
318 bool second
= stmt_num
== 1;
320 if (gcall
*stmt
= dyn_cast
<gcall
*> (stmt_info
->stmt
))
322 number_of_oprnds
= gimple_call_num_args (stmt
);
324 if (gimple_call_internal_p (stmt
))
326 internal_fn ifn
= gimple_call_internal_fn (stmt
);
327 commutative_op
= first_commutative_argument (ifn
);
330 else if (gassign
*stmt
= dyn_cast
<gassign
*> (stmt_info
->stmt
))
332 enum tree_code code
= gimple_assign_rhs_code (stmt
);
333 number_of_oprnds
= gimple_num_ops (stmt
) - 1;
334 /* Swap can only be done for cond_expr if asked to, otherwise we
335 could result in different comparison code to the first stmt. */
336 if (gimple_assign_rhs_code (stmt
) == COND_EXPR
337 && COMPARISON_CLASS_P (gimple_assign_rhs1 (stmt
)))
339 first_op_cond
= true;
343 commutative_op
= commutative_tree_code (code
) ? 0U : -1U;
348 bool swapped
= (*swap
!= 0);
349 gcc_assert (!swapped
|| first_op_cond
);
350 for (i
= 0; i
< number_of_oprnds
; i
++)
355 /* Map indicating how operands of cond_expr should be swapped. */
356 int maps
[3][4] = {{0, 1, 2, 3}, {1, 0, 2, 3}, {0, 1, 3, 2}};
357 int *map
= maps
[*swap
];
360 oprnd
= TREE_OPERAND (gimple_op (stmt_info
->stmt
,
361 first_op_idx
), map
[i
]);
363 oprnd
= gimple_op (stmt_info
->stmt
, map
[i
]);
366 oprnd
= gimple_op (stmt_info
->stmt
, first_op_idx
+ (swapped
? !i
: i
));
368 oprnd_info
= (*oprnds_info
)[i
];
370 stmt_vec_info def_stmt_info
;
371 if (!vect_is_simple_use (oprnd
, vinfo
, &dt
, &def_stmt_info
))
373 if (dump_enabled_p ())
374 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
375 "Build SLP failed: can't analyze def for %T\n",
382 oprnd_info
->second_pattern
= pattern
;
386 oprnd_info
->first_dt
= dt
;
387 oprnd_info
->first_pattern
= pattern
;
388 oprnd_info
->first_op_type
= TREE_TYPE (oprnd
);
392 /* Not first stmt of the group, check that the def-stmt/s match
393 the def-stmt/s of the first stmt. Allow different definition
394 types for reduction chains: the first stmt must be a
395 vect_reduction_def (a phi node), and the rest
396 vect_internal_def. */
397 tree type
= TREE_TYPE (oprnd
);
398 if ((oprnd_info
->first_dt
!= dt
399 && !(oprnd_info
->first_dt
== vect_reduction_def
400 && dt
== vect_internal_def
)
401 && !((oprnd_info
->first_dt
== vect_external_def
402 || oprnd_info
->first_dt
== vect_constant_def
)
403 && (dt
== vect_external_def
404 || dt
== vect_constant_def
)))
405 || !types_compatible_p (oprnd_info
->first_op_type
, type
))
407 /* Try swapping operands if we got a mismatch. */
408 if (i
== commutative_op
&& !swapped
)
414 if (dump_enabled_p ())
415 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
416 "Build SLP failed: different types\n");
420 if ((dt
== vect_constant_def
421 || dt
== vect_external_def
)
422 && !current_vector_size
.is_constant ()
423 && (TREE_CODE (type
) == BOOLEAN_TYPE
424 || !can_duplicate_and_interleave_p (stmts
.length (),
427 if (dump_enabled_p ())
428 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
429 "Build SLP failed: invalid type of def "
430 "for variable-length SLP %T\n", oprnd
);
435 /* Check the types of the definitions. */
438 case vect_constant_def
:
439 case vect_external_def
:
442 case vect_reduction_def
:
443 case vect_induction_def
:
444 case vect_internal_def
:
445 oprnd_info
->def_stmts
.quick_push (def_stmt_info
);
449 /* FORNOW: Not supported. */
450 if (dump_enabled_p ())
451 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
452 "Build SLP failed: illegal type of def %T\n",
462 /* If there are already uses of this stmt in a SLP instance then
463 we've committed to the operand order and can't swap it. */
464 if (STMT_VINFO_NUM_SLP_USES (stmt_info
) != 0)
466 if (dump_enabled_p ())
467 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
468 "Build SLP failed: cannot swap operands of "
469 "shared stmt %G", stmt_info
->stmt
);
475 gassign
*stmt
= as_a
<gassign
*> (stmt_info
->stmt
);
476 tree cond
= gimple_assign_rhs1 (stmt
);
477 enum tree_code code
= TREE_CODE (cond
);
482 swap_ssa_operands (stmt
, &TREE_OPERAND (cond
, 0),
483 &TREE_OPERAND (cond
, 1));
484 TREE_SET_CODE (cond
, swap_tree_comparison (code
));
489 swap_ssa_operands (stmt
, gimple_assign_rhs2_ptr (stmt
),
490 gimple_assign_rhs3_ptr (stmt
));
491 bool honor_nans
= HONOR_NANS (TREE_OPERAND (cond
, 0));
492 code
= invert_tree_comparison (TREE_CODE (cond
), honor_nans
);
493 gcc_assert (code
!= ERROR_MARK
);
494 TREE_SET_CODE (cond
, code
);
499 unsigned int op
= commutative_op
+ first_op_idx
;
500 swap_ssa_operands (stmt_info
->stmt
,
501 gimple_op_ptr (stmt_info
->stmt
, op
),
502 gimple_op_ptr (stmt_info
->stmt
, op
+ 1));
504 if (dump_enabled_p ())
505 dump_printf_loc (MSG_NOTE
, vect_location
,
506 "swapped operands to match def types in %G",
514 /* Return true if call statements CALL1 and CALL2 are similar enough
515 to be combined into the same SLP group. */
518 compatible_calls_p (gcall
*call1
, gcall
*call2
)
520 unsigned int nargs
= gimple_call_num_args (call1
);
521 if (nargs
!= gimple_call_num_args (call2
))
524 if (gimple_call_combined_fn (call1
) != gimple_call_combined_fn (call2
))
527 if (gimple_call_internal_p (call1
))
529 if (!types_compatible_p (TREE_TYPE (gimple_call_lhs (call1
)),
530 TREE_TYPE (gimple_call_lhs (call2
))))
532 for (unsigned int i
= 0; i
< nargs
; ++i
)
533 if (!types_compatible_p (TREE_TYPE (gimple_call_arg (call1
, i
)),
534 TREE_TYPE (gimple_call_arg (call2
, i
))))
539 if (!operand_equal_p (gimple_call_fn (call1
),
540 gimple_call_fn (call2
), 0))
543 if (gimple_call_fntype (call1
) != gimple_call_fntype (call2
))
549 /* A subroutine of vect_build_slp_tree for checking VECTYPE, which is the
550 caller's attempt to find the vector type in STMT_INFO with the narrowest
551 element type. Return true if VECTYPE is nonnull and if it is valid
552 for STMT_INFO. When returning true, update MAX_NUNITS to reflect the
553 number of units in VECTYPE. GROUP_SIZE and MAX_NUNITS are as for
554 vect_build_slp_tree. */
557 vect_record_max_nunits (stmt_vec_info stmt_info
, unsigned int group_size
,
558 tree vectype
, poly_uint64
*max_nunits
)
562 if (dump_enabled_p ())
563 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
564 "Build SLP failed: unsupported data-type in %G\n",
566 /* Fatal mismatch. */
570 /* If populating the vector type requires unrolling then fail
571 before adjusting *max_nunits for basic-block vectorization. */
572 poly_uint64 nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
573 unsigned HOST_WIDE_INT const_nunits
;
574 if (STMT_VINFO_BB_VINFO (stmt_info
)
575 && (!nunits
.is_constant (&const_nunits
)
576 || const_nunits
> group_size
))
578 if (dump_enabled_p ())
579 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
580 "Build SLP failed: unrolling required "
581 "in basic block SLP\n");
582 /* Fatal mismatch. */
586 /* In case of multiple types we need to detect the smallest type. */
587 vect_update_max_nunits (max_nunits
, vectype
);
591 /* STMTS is a group of GROUP_SIZE SLP statements in which some
592 statements do the same operation as the first statement and in which
593 the others do ALT_STMT_CODE. Return true if we can take one vector
594 of the first operation and one vector of the second and permute them
595 to get the required result. VECTYPE is the type of the vector that
596 would be permuted. */
599 vect_two_operations_perm_ok_p (vec
<stmt_vec_info
> stmts
,
600 unsigned int group_size
, tree vectype
,
601 tree_code alt_stmt_code
)
603 unsigned HOST_WIDE_INT count
;
604 if (!TYPE_VECTOR_SUBPARTS (vectype
).is_constant (&count
))
607 vec_perm_builder
sel (count
, count
, 1);
608 for (unsigned int i
= 0; i
< count
; ++i
)
610 unsigned int elt
= i
;
611 gassign
*stmt
= as_a
<gassign
*> (stmts
[i
% group_size
]->stmt
);
612 if (gimple_assign_rhs_code (stmt
) == alt_stmt_code
)
614 sel
.quick_push (elt
);
616 vec_perm_indices
indices (sel
, 2, count
);
617 return can_vec_perm_const_p (TYPE_MODE (vectype
), indices
);
620 /* Verify if the scalar stmts STMTS are isomorphic, require data
621 permutation or are of unsupported types of operation. Return
622 true if they are, otherwise return false and indicate in *MATCHES
623 which stmts are not isomorphic to the first one. If MATCHES[0]
624 is false then this indicates the comparison could not be
625 carried out or the stmts will never be vectorized by SLP.
627 Note COND_EXPR is possibly ismorphic to another one after swapping its
628 operands. Set SWAP[i] to 1 if stmt I is COND_EXPR and isomorphic to
629 the first stmt by swapping the two operands of comparison; set SWAP[i]
630 to 2 if stmt I is isormorphic to the first stmt by inverting the code
631 of comparison. Take A1 >= B1 ? X1 : Y1 as an exmple, it can be swapped
632 to (B1 <= A1 ? X1 : Y1); or be inverted to (A1 < B1) ? Y1 : X1. */
635 vect_build_slp_tree_1 (unsigned char *swap
,
636 vec
<stmt_vec_info
> stmts
, unsigned int group_size
,
637 poly_uint64
*max_nunits
, bool *matches
,
641 stmt_vec_info first_stmt_info
= stmts
[0];
642 enum tree_code first_stmt_code
= ERROR_MARK
;
643 enum tree_code alt_stmt_code
= ERROR_MARK
;
644 enum tree_code rhs_code
= ERROR_MARK
;
645 enum tree_code first_cond_code
= ERROR_MARK
;
647 bool need_same_oprnds
= false;
648 tree vectype
= NULL_TREE
, first_op1
= NULL_TREE
;
651 machine_mode optab_op2_mode
;
652 machine_mode vec_mode
;
653 stmt_vec_info first_load
= NULL
, prev_first_load
= NULL
;
655 /* For every stmt in NODE find its def stmt/s. */
656 stmt_vec_info stmt_info
;
657 FOR_EACH_VEC_ELT (stmts
, i
, stmt_info
)
659 gimple
*stmt
= stmt_info
->stmt
;
663 if (dump_enabled_p ())
664 dump_printf_loc (MSG_NOTE
, vect_location
, "Build SLP for %G", stmt
);
666 /* Fail to vectorize statements marked as unvectorizable. */
667 if (!STMT_VINFO_VECTORIZABLE (stmt_info
))
669 if (dump_enabled_p ())
670 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
671 "Build SLP failed: unvectorizable statement %G",
673 /* Fatal mismatch. */
678 lhs
= gimple_get_lhs (stmt
);
679 if (lhs
== NULL_TREE
)
681 if (dump_enabled_p ())
682 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
683 "Build SLP failed: not GIMPLE_ASSIGN nor "
684 "GIMPLE_CALL %G", stmt
);
685 /* Fatal mismatch. */
691 if (!vect_get_vector_types_for_stmt (stmt_info
, &vectype
,
694 && !vect_record_max_nunits (stmt_info
, group_size
,
695 nunits_vectype
, max_nunits
)))
697 /* Fatal mismatch. */
702 gcc_assert (vectype
);
704 if (gcall
*call_stmt
= dyn_cast
<gcall
*> (stmt
))
706 rhs_code
= CALL_EXPR
;
707 if ((gimple_call_internal_p (call_stmt
)
708 && (!vectorizable_internal_fn_p
709 (gimple_call_internal_fn (call_stmt
))))
710 || gimple_call_tail_p (call_stmt
)
711 || gimple_call_noreturn_p (call_stmt
)
712 || !gimple_call_nothrow_p (call_stmt
)
713 || gimple_call_chain (call_stmt
))
715 if (dump_enabled_p ())
716 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
717 "Build SLP failed: unsupported call type %G",
719 /* Fatal mismatch. */
725 rhs_code
= gimple_assign_rhs_code (stmt
);
727 /* Check the operation. */
730 first_stmt_code
= rhs_code
;
732 /* Shift arguments should be equal in all the packed stmts for a
733 vector shift with scalar shift operand. */
734 if (rhs_code
== LSHIFT_EXPR
|| rhs_code
== RSHIFT_EXPR
735 || rhs_code
== LROTATE_EXPR
736 || rhs_code
== RROTATE_EXPR
)
738 if (vectype
== boolean_type_node
)
740 if (dump_enabled_p ())
741 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
742 "Build SLP failed: shift of a"
744 /* Fatal mismatch. */
749 vec_mode
= TYPE_MODE (vectype
);
751 /* First see if we have a vector/vector shift. */
752 optab
= optab_for_tree_code (rhs_code
, vectype
,
756 || optab_handler (optab
, vec_mode
) == CODE_FOR_nothing
)
758 /* No vector/vector shift, try for a vector/scalar shift. */
759 optab
= optab_for_tree_code (rhs_code
, vectype
,
764 if (dump_enabled_p ())
765 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
766 "Build SLP failed: no optab.\n");
767 /* Fatal mismatch. */
771 icode
= (int) optab_handler (optab
, vec_mode
);
772 if (icode
== CODE_FOR_nothing
)
774 if (dump_enabled_p ())
775 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
777 "op not supported by target.\n");
778 /* Fatal mismatch. */
782 optab_op2_mode
= insn_data
[icode
].operand
[2].mode
;
783 if (!VECTOR_MODE_P (optab_op2_mode
))
785 need_same_oprnds
= true;
786 first_op1
= gimple_assign_rhs2 (stmt
);
790 else if (rhs_code
== WIDEN_LSHIFT_EXPR
)
792 need_same_oprnds
= true;
793 first_op1
= gimple_assign_rhs2 (stmt
);
798 if (first_stmt_code
!= rhs_code
799 && alt_stmt_code
== ERROR_MARK
)
800 alt_stmt_code
= rhs_code
;
801 if (first_stmt_code
!= rhs_code
802 && (first_stmt_code
!= IMAGPART_EXPR
803 || rhs_code
!= REALPART_EXPR
)
804 && (first_stmt_code
!= REALPART_EXPR
805 || rhs_code
!= IMAGPART_EXPR
)
806 /* Handle mismatches in plus/minus by computing both
807 and merging the results. */
808 && !((first_stmt_code
== PLUS_EXPR
809 || first_stmt_code
== MINUS_EXPR
)
810 && (alt_stmt_code
== PLUS_EXPR
811 || alt_stmt_code
== MINUS_EXPR
)
812 && rhs_code
== alt_stmt_code
)
813 && !(STMT_VINFO_GROUPED_ACCESS (stmt_info
)
814 && (first_stmt_code
== ARRAY_REF
815 || first_stmt_code
== BIT_FIELD_REF
816 || first_stmt_code
== INDIRECT_REF
817 || first_stmt_code
== COMPONENT_REF
818 || first_stmt_code
== MEM_REF
)))
820 if (dump_enabled_p ())
822 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
823 "Build SLP failed: different operation "
825 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
826 "original stmt %G", first_stmt_info
->stmt
);
833 && !operand_equal_p (first_op1
, gimple_assign_rhs2 (stmt
), 0))
835 if (dump_enabled_p ())
836 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
837 "Build SLP failed: different shift "
838 "arguments in %G", stmt
);
843 if (rhs_code
== CALL_EXPR
)
845 if (!compatible_calls_p (as_a
<gcall
*> (stmts
[0]->stmt
),
846 as_a
<gcall
*> (stmt
)))
848 if (dump_enabled_p ())
849 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
850 "Build SLP failed: different calls in %G",
858 /* Grouped store or load. */
859 if (STMT_VINFO_GROUPED_ACCESS (stmt_info
))
861 if (REFERENCE_CLASS_P (lhs
))
869 first_load
= DR_GROUP_FIRST_ELEMENT (stmt_info
);
872 /* Check that there are no loads from different interleaving
873 chains in the same node. */
874 if (prev_first_load
!= first_load
)
876 if (dump_enabled_p ())
877 dump_printf_loc (MSG_MISSED_OPTIMIZATION
,
879 "Build SLP failed: different "
880 "interleaving chains in one node %G",
887 prev_first_load
= first_load
;
889 } /* Grouped access. */
892 if (TREE_CODE_CLASS (rhs_code
) == tcc_reference
)
894 /* Not grouped load. */
895 if (dump_enabled_p ())
896 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
897 "Build SLP failed: not grouped load %G", stmt
);
899 /* FORNOW: Not grouped loads are not supported. */
900 /* Fatal mismatch. */
905 /* Not memory operation. */
906 if (TREE_CODE_CLASS (rhs_code
) != tcc_binary
907 && TREE_CODE_CLASS (rhs_code
) != tcc_unary
908 && TREE_CODE_CLASS (rhs_code
) != tcc_expression
909 && TREE_CODE_CLASS (rhs_code
) != tcc_comparison
910 && rhs_code
!= CALL_EXPR
)
912 if (dump_enabled_p ())
913 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
914 "Build SLP failed: operation unsupported %G",
916 /* Fatal mismatch. */
921 if (rhs_code
== COND_EXPR
)
923 tree cond_expr
= gimple_assign_rhs1 (stmt
);
924 enum tree_code cond_code
= TREE_CODE (cond_expr
);
925 enum tree_code swap_code
= ERROR_MARK
;
926 enum tree_code invert_code
= ERROR_MARK
;
929 first_cond_code
= TREE_CODE (cond_expr
);
930 else if (TREE_CODE_CLASS (cond_code
) == tcc_comparison
)
932 bool honor_nans
= HONOR_NANS (TREE_OPERAND (cond_expr
, 0));
933 swap_code
= swap_tree_comparison (cond_code
);
934 invert_code
= invert_tree_comparison (cond_code
, honor_nans
);
937 if (first_cond_code
== cond_code
)
939 /* Isomorphic can be achieved by swapping. */
940 else if (first_cond_code
== swap_code
)
942 /* Isomorphic can be achieved by inverting. */
943 else if (first_cond_code
== invert_code
)
947 if (dump_enabled_p ())
948 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
949 "Build SLP failed: different"
950 " operation %G", stmt
);
960 for (i
= 0; i
< group_size
; ++i
)
964 /* If we allowed a two-operation SLP node verify the target can cope
965 with the permute we are going to use. */
966 if (alt_stmt_code
!= ERROR_MARK
967 && TREE_CODE_CLASS (alt_stmt_code
) != tcc_reference
)
969 if (vectype
== boolean_type_node
970 || !vect_two_operations_perm_ok_p (stmts
, group_size
,
971 vectype
, alt_stmt_code
))
973 for (i
= 0; i
< group_size
; ++i
)
974 if (gimple_assign_rhs_code (stmts
[i
]->stmt
) == alt_stmt_code
)
977 if (dump_enabled_p ())
979 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
980 "Build SLP failed: different operation "
981 "in stmt %G", stmts
[i
]->stmt
);
982 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
983 "original stmt %G", first_stmt_info
->stmt
);
988 *two_operators
= true;
994 /* Traits for the hash_set to record failed SLP builds for a stmt set.
995 Note we never remove apart from at destruction time so we do not
996 need a special value for deleted that differs from empty. */
999 typedef vec
<stmt_vec_info
> value_type
;
1000 typedef vec
<stmt_vec_info
> compare_type
;
1001 static inline hashval_t
hash (value_type
);
1002 static inline bool equal (value_type existing
, value_type candidate
);
1003 static inline bool is_empty (value_type x
) { return !x
.exists (); }
1004 static inline bool is_deleted (value_type x
) { return !x
.exists (); }
1005 static inline void mark_empty (value_type
&x
) { x
.release (); }
1006 static inline void mark_deleted (value_type
&x
) { x
.release (); }
1007 static inline void remove (value_type
&x
) { x
.release (); }
1010 bst_traits::hash (value_type x
)
1013 for (unsigned i
= 0; i
< x
.length (); ++i
)
1014 h
.add_int (gimple_uid (x
[i
]->stmt
));
1018 bst_traits::equal (value_type existing
, value_type candidate
)
1020 if (existing
.length () != candidate
.length ())
1022 for (unsigned i
= 0; i
< existing
.length (); ++i
)
1023 if (existing
[i
] != candidate
[i
])
1028 typedef hash_map
<vec
<gimple
*>, slp_tree
,
1029 simple_hashmap_traits
<bst_traits
, slp_tree
> >
1030 scalar_stmts_to_slp_tree_map_t
;
1033 vect_build_slp_tree_2 (vec_info
*vinfo
,
1034 vec
<stmt_vec_info
> stmts
, unsigned int group_size
,
1035 poly_uint64
*max_nunits
,
1036 bool *matches
, unsigned *npermutes
, unsigned *tree_size
,
1037 unsigned max_tree_size
,
1038 scalar_stmts_to_slp_tree_map_t
*bst_map
);
1041 vect_build_slp_tree (vec_info
*vinfo
,
1042 vec
<stmt_vec_info
> stmts
, unsigned int group_size
,
1043 poly_uint64
*max_nunits
,
1044 bool *matches
, unsigned *npermutes
, unsigned *tree_size
,
1045 unsigned max_tree_size
,
1046 scalar_stmts_to_slp_tree_map_t
*bst_map
)
1048 if (slp_tree
*leader
= bst_map
->get (stmts
))
1050 if (dump_enabled_p ())
1051 dump_printf_loc (MSG_NOTE
, vect_location
, "re-using %sSLP tree %p\n",
1052 *leader
? "" : "failed ", *leader
);
1054 (*leader
)->refcnt
++;
1057 slp_tree res
= vect_build_slp_tree_2 (vinfo
, stmts
, group_size
, max_nunits
,
1058 matches
, npermutes
, tree_size
,
1059 max_tree_size
, bst_map
);
1060 /* Keep a reference for the bst_map use. */
1063 bst_map
->put (stmts
.copy (), res
);
1067 /* Recursively build an SLP tree starting from NODE.
1068 Fail (and return a value not equal to zero) if def-stmts are not
1069 isomorphic, require data permutation or are of unsupported types of
1070 operation. Otherwise, return 0.
1071 The value returned is the depth in the SLP tree where a mismatch
1075 vect_build_slp_tree_2 (vec_info
*vinfo
,
1076 vec
<stmt_vec_info
> stmts
, unsigned int group_size
,
1077 poly_uint64
*max_nunits
,
1078 bool *matches
, unsigned *npermutes
, unsigned *tree_size
,
1079 unsigned max_tree_size
,
1080 scalar_stmts_to_slp_tree_map_t
*bst_map
)
1082 unsigned nops
, i
, this_tree_size
= 0;
1083 poly_uint64 this_max_nunits
= *max_nunits
;
1088 stmt_vec_info stmt_info
= stmts
[0];
1089 if (gcall
*stmt
= dyn_cast
<gcall
*> (stmt_info
->stmt
))
1090 nops
= gimple_call_num_args (stmt
);
1091 else if (gassign
*stmt
= dyn_cast
<gassign
*> (stmt_info
->stmt
))
1093 nops
= gimple_num_ops (stmt
) - 1;
1094 if (gimple_assign_rhs_code (stmt
) == COND_EXPR
)
1097 else if (is_a
<gphi
*> (stmt_info
->stmt
))
1102 /* If the SLP node is a PHI (induction or reduction), terminate
1104 if (gphi
*stmt
= dyn_cast
<gphi
*> (stmt_info
->stmt
))
1106 tree scalar_type
= TREE_TYPE (PHI_RESULT (stmt
));
1107 tree vectype
= get_vectype_for_scalar_type (scalar_type
);
1108 if (!vect_record_max_nunits (stmt_info
, group_size
, vectype
, max_nunits
))
1111 vect_def_type def_type
= STMT_VINFO_DEF_TYPE (stmt_info
);
1112 /* Induction from different IVs is not supported. */
1113 if (def_type
== vect_induction_def
)
1115 stmt_vec_info other_info
;
1116 FOR_EACH_VEC_ELT (stmts
, i
, other_info
)
1117 if (stmt_info
!= other_info
)
1120 else if (def_type
== vect_reduction_def
1121 || def_type
== vect_double_reduction_def
1122 || def_type
== vect_nested_cycle
)
1124 /* Else def types have to match. */
1125 stmt_vec_info other_info
;
1126 FOR_EACH_VEC_ELT (stmts
, i
, other_info
)
1128 /* But for reduction chains only check on the first stmt. */
1129 if (REDUC_GROUP_FIRST_ELEMENT (other_info
)
1130 && REDUC_GROUP_FIRST_ELEMENT (other_info
) != stmt_info
)
1132 if (STMT_VINFO_DEF_TYPE (other_info
) != def_type
)
1138 node
= vect_create_new_slp_node (stmts
);
1143 bool two_operators
= false;
1144 unsigned char *swap
= XALLOCAVEC (unsigned char, group_size
);
1145 if (!vect_build_slp_tree_1 (swap
, stmts
, group_size
,
1146 &this_max_nunits
, matches
, &two_operators
))
1149 /* If the SLP node is a load, terminate the recursion. */
1150 if (STMT_VINFO_GROUPED_ACCESS (stmt_info
)
1151 && DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info
)))
1153 *max_nunits
= this_max_nunits
;
1154 node
= vect_create_new_slp_node (stmts
);
1158 /* Get at the operands, verifying they are compatible. */
1159 vec
<slp_oprnd_info
> oprnds_info
= vect_create_oprnd_info (nops
, group_size
);
1160 slp_oprnd_info oprnd_info
;
1161 FOR_EACH_VEC_ELT (stmts
, i
, stmt_info
)
1163 int res
= vect_get_and_check_slp_defs (vinfo
, &swap
[i
],
1164 stmts
, i
, &oprnds_info
);
1166 matches
[(res
== -1) ? 0 : i
] = false;
1170 for (i
= 0; i
< group_size
; ++i
)
1173 vect_free_oprnd_info (oprnds_info
);
1177 auto_vec
<slp_tree
, 4> children
;
1179 stmt_info
= stmts
[0];
1182 max_tree_size
-= *tree_size
;
1184 /* Create SLP_TREE nodes for the definition node/s. */
1185 FOR_EACH_VEC_ELT (oprnds_info
, i
, oprnd_info
)
1188 unsigned old_tree_size
= this_tree_size
;
1191 if (oprnd_info
->first_dt
!= vect_internal_def
1192 && oprnd_info
->first_dt
!= vect_reduction_def
1193 && oprnd_info
->first_dt
!= vect_induction_def
)
1196 if (++this_tree_size
> max_tree_size
)
1198 if (dump_enabled_p ())
1199 dump_printf_loc (MSG_MISSED_OPTIMIZATION
,
1201 "Build SLP failed: SLP tree too large\n");
1202 FOR_EACH_VEC_ELT (children
, j
, child
)
1203 vect_free_slp_tree (child
, false);
1204 vect_free_oprnd_info (oprnds_info
);
1208 if ((child
= vect_build_slp_tree (vinfo
, oprnd_info
->def_stmts
,
1209 group_size
, &this_max_nunits
,
1212 max_tree_size
, bst_map
)) != NULL
)
1214 /* If we have all children of child built up from scalars then just
1215 throw that away and build it up this node from scalars. */
1216 if (!SLP_TREE_CHILDREN (child
).is_empty ()
1217 /* ??? Rejecting patterns this way doesn't work. We'd have to
1218 do extra work to cancel the pattern so the uses see the
1220 && !is_pattern_stmt_p (SLP_TREE_SCALAR_STMTS (child
)[0]))
1222 slp_tree grandchild
;
1224 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child
), j
, grandchild
)
1225 if (SLP_TREE_DEF_TYPE (grandchild
) == vect_internal_def
)
1230 this_tree_size
= old_tree_size
;
1231 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child
), j
, grandchild
)
1232 vect_free_slp_tree (grandchild
, false);
1233 SLP_TREE_CHILDREN (child
).truncate (0);
1235 if (dump_enabled_p ())
1236 dump_printf_loc (MSG_NOTE
, vect_location
,
1237 "Building parent vector operands from "
1238 "scalars instead\n");
1239 oprnd_info
->def_stmts
= vNULL
;
1240 SLP_TREE_DEF_TYPE (child
) = vect_external_def
;
1241 children
.safe_push (child
);
1246 oprnd_info
->def_stmts
= vNULL
;
1247 children
.safe_push (child
);
1251 /* If the SLP build failed fatally and we analyze a basic-block
1252 simply treat nodes we fail to build as externally defined
1253 (and thus build vectors from the scalar defs).
1254 The cost model will reject outright expensive cases.
1255 ??? This doesn't treat cases where permutation ultimatively
1256 fails (or we don't try permutation below). Ideally we'd
1257 even compute a permutation that will end up with the maximum
1259 if (is_a
<bb_vec_info
> (vinfo
)
1261 /* ??? Rejecting patterns this way doesn't work. We'd have to
1262 do extra work to cancel the pattern so the uses see the
1264 && !is_pattern_stmt_p (stmt_info
))
1266 if (dump_enabled_p ())
1267 dump_printf_loc (MSG_NOTE
, vect_location
,
1268 "Building vector operands from scalars\n");
1269 child
= vect_create_new_slp_node (oprnd_info
->def_stmts
);
1270 SLP_TREE_DEF_TYPE (child
) = vect_external_def
;
1271 children
.safe_push (child
);
1272 oprnd_info
->def_stmts
= vNULL
;
1276 /* If the SLP build for operand zero failed and operand zero
1277 and one can be commutated try that for the scalar stmts
1278 that failed the match. */
1280 /* A first scalar stmt mismatch signals a fatal mismatch. */
1282 /* ??? For COND_EXPRs we can swap the comparison operands
1283 as well as the arms under some constraints. */
1285 && oprnds_info
[1]->first_dt
== vect_internal_def
1286 && is_gimple_assign (stmt_info
->stmt
)
1287 /* Do so only if the number of not successful permutes was nor more
1288 than a cut-ff as re-trying the recursive match on
1289 possibly each level of the tree would expose exponential
1293 /* See whether we can swap the matching or the non-matching
1295 bool swap_not_matching
= true;
1298 for (j
= 0; j
< group_size
; ++j
)
1300 if (matches
[j
] != !swap_not_matching
)
1302 stmt_vec_info stmt_info
= stmts
[j
];
1303 /* Verify if we can swap operands of this stmt. */
1304 gassign
*stmt
= dyn_cast
<gassign
*> (stmt_info
->stmt
);
1306 || !commutative_tree_code (gimple_assign_rhs_code (stmt
)))
1308 if (!swap_not_matching
)
1310 swap_not_matching
= false;
1313 /* Verify if we can safely swap or if we committed to a
1314 specific operand order already.
1315 ??? Instead of modifying GIMPLE stmts here we could
1316 record whether we want to swap operands in the SLP
1317 node and temporarily do that when processing it
1318 (or wrap operand accessors in a helper). */
1319 else if (swap
[j
] != 0
1320 || STMT_VINFO_NUM_SLP_USES (stmt_info
))
1322 if (!swap_not_matching
)
1324 if (dump_enabled_p ())
1325 dump_printf_loc (MSG_MISSED_OPTIMIZATION
,
1327 "Build SLP failed: cannot swap "
1328 "operands of shared stmt %G",
1332 swap_not_matching
= false;
1337 while (j
!= group_size
);
1339 /* Swap mismatched definition stmts. */
1340 if (dump_enabled_p ())
1341 dump_printf_loc (MSG_NOTE
, vect_location
,
1342 "Re-trying with swapped operands of stmts ");
1343 for (j
= 0; j
< group_size
; ++j
)
1344 if (matches
[j
] == !swap_not_matching
)
1346 std::swap (oprnds_info
[0]->def_stmts
[j
],
1347 oprnds_info
[1]->def_stmts
[j
]);
1348 if (dump_enabled_p ())
1349 dump_printf (MSG_NOTE
, "%d ", j
);
1351 if (dump_enabled_p ())
1352 dump_printf (MSG_NOTE
, "\n");
1353 /* And try again with scratch 'matches' ... */
1354 bool *tem
= XALLOCAVEC (bool, group_size
);
1355 if ((child
= vect_build_slp_tree (vinfo
, oprnd_info
->def_stmts
,
1356 group_size
, &this_max_nunits
,
1359 max_tree_size
, bst_map
)) != NULL
)
1361 /* ... so if successful we can apply the operand swapping
1362 to the GIMPLE IL. This is necessary because for example
1363 vect_get_slp_defs uses operand indexes and thus expects
1364 canonical operand order. This is also necessary even
1365 if we end up building the operand from scalars as
1366 we'll continue to process swapped operand two. */
1367 for (j
= 0; j
< group_size
; ++j
)
1368 gimple_set_plf (stmts
[j
]->stmt
, GF_PLF_1
, false);
1369 for (j
= 0; j
< group_size
; ++j
)
1370 if (matches
[j
] == !swap_not_matching
)
1372 gassign
*stmt
= as_a
<gassign
*> (stmts
[j
]->stmt
);
1373 /* Avoid swapping operands twice. */
1374 if (gimple_plf (stmt
, GF_PLF_1
))
1376 swap_ssa_operands (stmt
, gimple_assign_rhs1_ptr (stmt
),
1377 gimple_assign_rhs2_ptr (stmt
));
1378 gimple_set_plf (stmt
, GF_PLF_1
, true);
1380 /* Verify we swap all duplicates or none. */
1382 for (j
= 0; j
< group_size
; ++j
)
1383 gcc_assert (gimple_plf (stmts
[j
]->stmt
, GF_PLF_1
)
1384 == (matches
[j
] == !swap_not_matching
));
1386 /* If we have all children of child built up from scalars then
1387 just throw that away and build it up this node from scalars. */
1388 if (!SLP_TREE_CHILDREN (child
).is_empty ()
1389 /* ??? Rejecting patterns this way doesn't work. We'd have
1390 to do extra work to cancel the pattern so the uses see the
1392 && !is_pattern_stmt_p (SLP_TREE_SCALAR_STMTS (child
)[0]))
1395 slp_tree grandchild
;
1397 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child
), j
, grandchild
)
1398 if (SLP_TREE_DEF_TYPE (grandchild
) == vect_internal_def
)
1403 this_tree_size
= old_tree_size
;
1404 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (child
), j
, grandchild
)
1405 vect_free_slp_tree (grandchild
, false);
1406 SLP_TREE_CHILDREN (child
).truncate (0);
1408 if (dump_enabled_p ())
1409 dump_printf_loc (MSG_NOTE
, vect_location
,
1410 "Building parent vector operands from "
1411 "scalars instead\n");
1412 oprnd_info
->def_stmts
= vNULL
;
1413 SLP_TREE_DEF_TYPE (child
) = vect_external_def
;
1414 children
.safe_push (child
);
1419 oprnd_info
->def_stmts
= vNULL
;
1420 children
.safe_push (child
);
1428 gcc_assert (child
== NULL
);
1429 FOR_EACH_VEC_ELT (children
, j
, child
)
1430 vect_free_slp_tree (child
, false);
1431 vect_free_oprnd_info (oprnds_info
);
1435 vect_free_oprnd_info (oprnds_info
);
1438 *tree_size
+= this_tree_size
;
1439 *max_nunits
= this_max_nunits
;
1441 node
= vect_create_new_slp_node (stmts
);
1442 SLP_TREE_TWO_OPERATORS (node
) = two_operators
;
1443 SLP_TREE_CHILDREN (node
).splice (children
);
1447 /* Dump a slp tree NODE using flags specified in DUMP_KIND. */
1450 vect_print_slp_tree (dump_flags_t dump_kind
, dump_location_t loc
,
1451 slp_tree node
, hash_set
<slp_tree
> &visited
)
1454 stmt_vec_info stmt_info
;
1457 if (visited
.add (node
))
1460 dump_printf_loc (dump_kind
, loc
, "node%s %p\n",
1461 SLP_TREE_DEF_TYPE (node
) != vect_internal_def
1462 ? " (external)" : "", node
);
1463 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
1464 dump_printf_loc (dump_kind
, loc
, "\tstmt %d %G", i
, stmt_info
->stmt
);
1465 if (SLP_TREE_CHILDREN (node
).is_empty ())
1467 dump_printf_loc (dump_kind
, loc
, "\tchildren");
1468 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1469 dump_printf (dump_kind
, " %p", (void *)child
);
1470 dump_printf (dump_kind
, "\n");
1471 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1472 vect_print_slp_tree (dump_kind
, loc
, child
, visited
);
1476 vect_print_slp_tree (dump_flags_t dump_kind
, dump_location_t loc
,
1479 hash_set
<slp_tree
> visited
;
1480 vect_print_slp_tree (dump_kind
, loc
, node
, visited
);
1483 /* Mark the tree rooted at NODE with PURE_SLP. */
1486 vect_mark_slp_stmts (slp_tree node
, hash_set
<slp_tree
> &visited
)
1489 stmt_vec_info stmt_info
;
1492 if (SLP_TREE_DEF_TYPE (node
) != vect_internal_def
)
1495 if (visited
.add (node
))
1498 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
1499 STMT_SLP_TYPE (stmt_info
) = pure_slp
;
1501 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1502 vect_mark_slp_stmts (child
, visited
);
1506 vect_mark_slp_stmts (slp_tree node
)
1508 hash_set
<slp_tree
> visited
;
1509 vect_mark_slp_stmts (node
, visited
);
1512 /* Mark the statements of the tree rooted at NODE as relevant (vect_used). */
1515 vect_mark_slp_stmts_relevant (slp_tree node
, hash_set
<slp_tree
> &visited
)
1518 stmt_vec_info stmt_info
;
1521 if (SLP_TREE_DEF_TYPE (node
) != vect_internal_def
)
1524 if (visited
.add (node
))
1527 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
1529 gcc_assert (!STMT_VINFO_RELEVANT (stmt_info
)
1530 || STMT_VINFO_RELEVANT (stmt_info
) == vect_used_in_scope
);
1531 STMT_VINFO_RELEVANT (stmt_info
) = vect_used_in_scope
;
1534 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1535 vect_mark_slp_stmts_relevant (child
, visited
);
1539 vect_mark_slp_stmts_relevant (slp_tree node
)
1541 hash_set
<slp_tree
> visited
;
1542 vect_mark_slp_stmts_relevant (node
, visited
);
1546 /* Rearrange the statements of NODE according to PERMUTATION. */
1549 vect_slp_rearrange_stmts (slp_tree node
, unsigned int group_size
,
1550 vec
<unsigned> permutation
,
1551 hash_set
<slp_tree
> &visited
)
1553 stmt_vec_info stmt_info
;
1554 vec
<stmt_vec_info
> tmp_stmts
;
1558 if (visited
.add (node
))
1561 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1562 vect_slp_rearrange_stmts (child
, group_size
, permutation
, visited
);
1564 gcc_assert (group_size
== SLP_TREE_SCALAR_STMTS (node
).length ());
1565 tmp_stmts
.create (group_size
);
1566 tmp_stmts
.quick_grow_cleared (group_size
);
1568 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
1569 tmp_stmts
[permutation
[i
]] = stmt_info
;
1571 SLP_TREE_SCALAR_STMTS (node
).release ();
1572 SLP_TREE_SCALAR_STMTS (node
) = tmp_stmts
;
1576 /* Attempt to reorder stmts in a reduction chain so that we don't
1577 require any load permutation. Return true if that was possible,
1578 otherwise return false. */
1581 vect_attempt_slp_rearrange_stmts (slp_instance slp_instn
)
1583 unsigned int group_size
= SLP_INSTANCE_GROUP_SIZE (slp_instn
);
1586 slp_tree node
, load
;
1588 /* Compare all the permutation sequences to the first one. We know
1589 that at least one load is permuted. */
1590 node
= SLP_INSTANCE_LOADS (slp_instn
)[0];
1591 if (!node
->load_permutation
.exists ())
1593 for (i
= 1; SLP_INSTANCE_LOADS (slp_instn
).iterate (i
, &load
); ++i
)
1595 if (!load
->load_permutation
.exists ())
1597 FOR_EACH_VEC_ELT (load
->load_permutation
, j
, lidx
)
1598 if (lidx
!= node
->load_permutation
[j
])
1602 /* Check that the loads in the first sequence are different and there
1603 are no gaps between them. */
1604 auto_sbitmap
load_index (group_size
);
1605 bitmap_clear (load_index
);
1606 FOR_EACH_VEC_ELT (node
->load_permutation
, i
, lidx
)
1608 if (lidx
>= group_size
)
1610 if (bitmap_bit_p (load_index
, lidx
))
1613 bitmap_set_bit (load_index
, lidx
);
1615 for (i
= 0; i
< group_size
; i
++)
1616 if (!bitmap_bit_p (load_index
, i
))
1619 /* This permutation is valid for reduction. Since the order of the
1620 statements in the nodes is not important unless they are memory
1621 accesses, we can rearrange the statements in all the nodes
1622 according to the order of the loads. */
1623 hash_set
<slp_tree
> visited
;
1624 vect_slp_rearrange_stmts (SLP_INSTANCE_TREE (slp_instn
), group_size
,
1625 node
->load_permutation
, visited
);
1627 /* We are done, no actual permutations need to be generated. */
1628 poly_uint64 unrolling_factor
= SLP_INSTANCE_UNROLLING_FACTOR (slp_instn
);
1629 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn
), i
, node
)
1631 stmt_vec_info first_stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
1632 first_stmt_info
= DR_GROUP_FIRST_ELEMENT (first_stmt_info
);
1633 /* But we have to keep those permutations that are required because
1634 of handling of gaps. */
1635 if (known_eq (unrolling_factor
, 1U)
1636 || (group_size
== DR_GROUP_SIZE (first_stmt_info
)
1637 && DR_GROUP_GAP (first_stmt_info
) == 0))
1638 SLP_TREE_LOAD_PERMUTATION (node
).release ();
1640 for (j
= 0; j
< SLP_TREE_LOAD_PERMUTATION (node
).length (); ++j
)
1641 SLP_TREE_LOAD_PERMUTATION (node
)[j
] = j
;
1647 /* Gather loads in the SLP graph NODE and populate the INST loads array. */
1650 vect_gather_slp_loads (slp_instance inst
, slp_tree node
,
1651 hash_set
<slp_tree
> &visited
)
1653 if (visited
.add (node
))
1656 if (SLP_TREE_CHILDREN (node
).length () == 0)
1658 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
1659 if (SLP_TREE_DEF_TYPE (node
) == vect_internal_def
1660 && STMT_VINFO_GROUPED_ACCESS (stmt_info
)
1661 && DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info
)))
1662 SLP_INSTANCE_LOADS (inst
).safe_push (node
);
1668 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
1669 vect_gather_slp_loads (inst
, child
, visited
);
1674 vect_gather_slp_loads (slp_instance inst
, slp_tree node
)
1676 hash_set
<slp_tree
> visited
;
1677 vect_gather_slp_loads (inst
, node
, visited
);
1680 /* Check if the required load permutations in the SLP instance
1681 SLP_INSTN are supported. */
1684 vect_supported_load_permutation_p (slp_instance slp_instn
)
1686 unsigned int group_size
= SLP_INSTANCE_GROUP_SIZE (slp_instn
);
1687 unsigned int i
, j
, k
, next
;
1690 if (dump_enabled_p ())
1692 dump_printf_loc (MSG_NOTE
, vect_location
, "Load permutation ");
1693 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn
), i
, node
)
1694 if (node
->load_permutation
.exists ())
1695 FOR_EACH_VEC_ELT (node
->load_permutation
, j
, next
)
1696 dump_printf (MSG_NOTE
, "%d ", next
);
1698 for (k
= 0; k
< group_size
; ++k
)
1699 dump_printf (MSG_NOTE
, "%d ", k
);
1700 dump_printf (MSG_NOTE
, "\n");
1703 /* In case of reduction every load permutation is allowed, since the order
1704 of the reduction statements is not important (as opposed to the case of
1705 grouped stores). The only condition we need to check is that all the
1706 load nodes are of the same size and have the same permutation (and then
1707 rearrange all the nodes of the SLP instance according to this
1710 /* Check that all the load nodes are of the same size. */
1711 /* ??? Can't we assert this? */
1712 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn
), i
, node
)
1713 if (SLP_TREE_SCALAR_STMTS (node
).length () != (unsigned) group_size
)
1716 node
= SLP_INSTANCE_TREE (slp_instn
);
1717 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
1719 /* Reduction (there are no data-refs in the root).
1720 In reduction chain the order of the loads is not important. */
1721 if (!STMT_VINFO_DATA_REF (stmt_info
)
1722 && !REDUC_GROUP_FIRST_ELEMENT (stmt_info
))
1723 vect_attempt_slp_rearrange_stmts (slp_instn
);
1725 /* In basic block vectorization we allow any subchain of an interleaving
1727 FORNOW: not supported in loop SLP because of realignment compications. */
1728 if (STMT_VINFO_BB_VINFO (stmt_info
))
1730 /* Check whether the loads in an instance form a subchain and thus
1731 no permutation is necessary. */
1732 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn
), i
, node
)
1734 if (!SLP_TREE_LOAD_PERMUTATION (node
).exists ())
1736 bool subchain_p
= true;
1737 stmt_vec_info next_load_info
= NULL
;
1738 stmt_vec_info load_info
;
1739 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), j
, load_info
)
1742 && (next_load_info
!= load_info
1743 || DR_GROUP_GAP (load_info
) != 1))
1748 next_load_info
= DR_GROUP_NEXT_ELEMENT (load_info
);
1751 SLP_TREE_LOAD_PERMUTATION (node
).release ();
1754 stmt_vec_info group_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
1755 group_info
= DR_GROUP_FIRST_ELEMENT (group_info
);
1756 unsigned HOST_WIDE_INT nunits
;
1757 unsigned k
, maxk
= 0;
1758 FOR_EACH_VEC_ELT (SLP_TREE_LOAD_PERMUTATION (node
), j
, k
)
1761 /* In BB vectorization we may not actually use a loaded vector
1762 accessing elements in excess of DR_GROUP_SIZE. */
1763 tree vectype
= STMT_VINFO_VECTYPE (group_info
);
1764 if (!TYPE_VECTOR_SUBPARTS (vectype
).is_constant (&nunits
)
1765 || maxk
>= (DR_GROUP_SIZE (group_info
) & ~(nunits
- 1)))
1767 if (dump_enabled_p ())
1768 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
1769 "BB vectorization with gaps at the end of "
1770 "a load is not supported\n");
1774 /* Verify the permutation can be generated. */
1777 if (!vect_transform_slp_perm_load (node
, tem
, NULL
,
1778 1, slp_instn
, true, &n_perms
))
1780 if (dump_enabled_p ())
1781 dump_printf_loc (MSG_MISSED_OPTIMIZATION
,
1783 "unsupported load permutation\n");
1791 /* For loop vectorization verify we can generate the permutation. Be
1792 conservative about the vectorization factor, there are permutations
1793 that will use three vector inputs only starting from a specific factor
1794 and the vectorization factor is not yet final.
1795 ??? The SLP instance unrolling factor might not be the maximum one. */
1798 = force_common_multiple (SLP_INSTANCE_UNROLLING_FACTOR (slp_instn
),
1799 LOOP_VINFO_VECT_FACTOR
1800 (STMT_VINFO_LOOP_VINFO (stmt_info
)));
1801 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (slp_instn
), i
, node
)
1802 if (node
->load_permutation
.exists ()
1803 && !vect_transform_slp_perm_load (node
, vNULL
, NULL
, test_vf
,
1804 slp_instn
, true, &n_perms
))
1811 /* Find the last store in SLP INSTANCE. */
1814 vect_find_last_scalar_stmt_in_slp (slp_tree node
)
1816 stmt_vec_info last
= NULL
;
1817 stmt_vec_info stmt_vinfo
;
1819 for (int i
= 0; SLP_TREE_SCALAR_STMTS (node
).iterate (i
, &stmt_vinfo
); i
++)
1821 stmt_vinfo
= vect_orig_stmt (stmt_vinfo
);
1822 last
= last
? get_later_stmt (stmt_vinfo
, last
) : stmt_vinfo
;
1828 /* Splits a group of stores, currently beginning at FIRST_VINFO, into
1829 two groups: one (still beginning at FIRST_VINFO) of size GROUP1_SIZE
1830 (also containing the first GROUP1_SIZE stmts, since stores are
1831 consecutive), the second containing the remainder.
1832 Return the first stmt in the second group. */
1834 static stmt_vec_info
1835 vect_split_slp_store_group (stmt_vec_info first_vinfo
, unsigned group1_size
)
1837 gcc_assert (DR_GROUP_FIRST_ELEMENT (first_vinfo
) == first_vinfo
);
1838 gcc_assert (group1_size
> 0);
1839 int group2_size
= DR_GROUP_SIZE (first_vinfo
) - group1_size
;
1840 gcc_assert (group2_size
> 0);
1841 DR_GROUP_SIZE (first_vinfo
) = group1_size
;
1843 stmt_vec_info stmt_info
= first_vinfo
;
1844 for (unsigned i
= group1_size
; i
> 1; i
--)
1846 stmt_info
= DR_GROUP_NEXT_ELEMENT (stmt_info
);
1847 gcc_assert (DR_GROUP_GAP (stmt_info
) == 1);
1849 /* STMT is now the last element of the first group. */
1850 stmt_vec_info group2
= DR_GROUP_NEXT_ELEMENT (stmt_info
);
1851 DR_GROUP_NEXT_ELEMENT (stmt_info
) = 0;
1853 DR_GROUP_SIZE (group2
) = group2_size
;
1854 for (stmt_info
= group2
; stmt_info
;
1855 stmt_info
= DR_GROUP_NEXT_ELEMENT (stmt_info
))
1857 DR_GROUP_FIRST_ELEMENT (stmt_info
) = group2
;
1858 gcc_assert (DR_GROUP_GAP (stmt_info
) == 1);
1861 /* For the second group, the DR_GROUP_GAP is that before the original group,
1862 plus skipping over the first vector. */
1863 DR_GROUP_GAP (group2
) = DR_GROUP_GAP (first_vinfo
) + group1_size
;
1865 /* DR_GROUP_GAP of the first group now has to skip over the second group too. */
1866 DR_GROUP_GAP (first_vinfo
) += group2_size
;
1868 if (dump_enabled_p ())
1869 dump_printf_loc (MSG_NOTE
, vect_location
, "Split group into %d and %d\n",
1870 group1_size
, group2_size
);
1875 /* Calculate the unrolling factor for an SLP instance with GROUP_SIZE
1876 statements and a vector of NUNITS elements. */
1879 calculate_unrolling_factor (poly_uint64 nunits
, unsigned int group_size
)
1881 return exact_div (common_multiple (nunits
, group_size
), group_size
);
1884 /* Analyze an SLP instance starting from a group of grouped stores. Call
1885 vect_build_slp_tree to build a tree of packed stmts if possible.
1886 Return FALSE if it's impossible to SLP any stmt in the loop. */
1889 vect_analyze_slp_instance (vec_info
*vinfo
,
1890 stmt_vec_info stmt_info
, unsigned max_tree_size
)
1892 slp_instance new_instance
;
1894 unsigned int group_size
;
1895 tree vectype
, scalar_type
= NULL_TREE
;
1897 struct data_reference
*dr
= STMT_VINFO_DATA_REF (stmt_info
);
1898 vec
<stmt_vec_info
> scalar_stmts
;
1900 if (STMT_VINFO_GROUPED_ACCESS (stmt_info
))
1902 scalar_type
= TREE_TYPE (DR_REF (dr
));
1903 vectype
= get_vectype_for_scalar_type (scalar_type
);
1904 group_size
= DR_GROUP_SIZE (stmt_info
);
1906 else if (!dr
&& REDUC_GROUP_FIRST_ELEMENT (stmt_info
))
1908 gcc_assert (is_a
<loop_vec_info
> (vinfo
));
1909 vectype
= STMT_VINFO_VECTYPE (stmt_info
);
1910 group_size
= REDUC_GROUP_SIZE (stmt_info
);
1914 gcc_assert (is_a
<loop_vec_info
> (vinfo
));
1915 vectype
= STMT_VINFO_VECTYPE (stmt_info
);
1916 group_size
= as_a
<loop_vec_info
> (vinfo
)->reductions
.length ();
1921 if (dump_enabled_p ())
1922 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
1923 "Build SLP failed: unsupported data-type %T\n",
1928 poly_uint64 nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1930 /* Create a node (a root of the SLP tree) for the packed grouped stores. */
1931 scalar_stmts
.create (group_size
);
1932 stmt_vec_info next_info
= stmt_info
;
1933 if (STMT_VINFO_GROUPED_ACCESS (stmt_info
))
1935 /* Collect the stores and store them in SLP_TREE_SCALAR_STMTS. */
1938 scalar_stmts
.safe_push (vect_stmt_to_vectorize (next_info
));
1939 next_info
= DR_GROUP_NEXT_ELEMENT (next_info
);
1942 else if (!dr
&& REDUC_GROUP_FIRST_ELEMENT (stmt_info
))
1944 /* Collect the reduction stmts and store them in
1945 SLP_TREE_SCALAR_STMTS. */
1948 scalar_stmts
.safe_push (vect_stmt_to_vectorize (next_info
));
1949 next_info
= REDUC_GROUP_NEXT_ELEMENT (next_info
);
1951 /* Mark the first element of the reduction chain as reduction to properly
1952 transform the node. In the reduction analysis phase only the last
1953 element of the chain is marked as reduction. */
1954 STMT_VINFO_DEF_TYPE (stmt_info
) = vect_reduction_def
;
1958 /* Collect reduction statements. */
1959 vec
<stmt_vec_info
> reductions
= as_a
<loop_vec_info
> (vinfo
)->reductions
;
1960 for (i
= 0; reductions
.iterate (i
, &next_info
); i
++)
1961 scalar_stmts
.safe_push (next_info
);
1964 /* Build the tree for the SLP instance. */
1965 bool *matches
= XALLOCAVEC (bool, group_size
);
1966 unsigned npermutes
= 0;
1967 scalar_stmts_to_slp_tree_map_t
*bst_map
1968 = new scalar_stmts_to_slp_tree_map_t ();
1969 poly_uint64 max_nunits
= nunits
;
1970 node
= vect_build_slp_tree (vinfo
, scalar_stmts
, group_size
,
1971 &max_nunits
, matches
, &npermutes
,
1972 NULL
, max_tree_size
, bst_map
);
1973 /* The map keeps a reference on SLP nodes built, release that. */
1974 for (scalar_stmts_to_slp_tree_map_t::iterator it
= bst_map
->begin ();
1975 it
!= bst_map
->end (); ++it
)
1977 vect_free_slp_tree ((*it
).second
, false);
1981 /* Calculate the unrolling factor based on the smallest type. */
1982 poly_uint64 unrolling_factor
1983 = calculate_unrolling_factor (max_nunits
, group_size
);
1985 if (maybe_ne (unrolling_factor
, 1U)
1986 && is_a
<bb_vec_info
> (vinfo
))
1988 unsigned HOST_WIDE_INT const_max_nunits
;
1989 if (!max_nunits
.is_constant (&const_max_nunits
)
1990 || const_max_nunits
> group_size
)
1992 if (dump_enabled_p ())
1993 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
1994 "Build SLP failed: store group "
1995 "size not a multiple of the vector size "
1996 "in basic block SLP\n");
1997 vect_free_slp_tree (node
, false);
2000 /* Fatal mismatch. */
2001 matches
[group_size
/ const_max_nunits
* const_max_nunits
] = false;
2002 vect_free_slp_tree (node
, false);
2006 /* Create a new SLP instance. */
2007 new_instance
= XNEW (struct _slp_instance
);
2008 SLP_INSTANCE_TREE (new_instance
) = node
;
2009 SLP_INSTANCE_GROUP_SIZE (new_instance
) = group_size
;
2010 SLP_INSTANCE_UNROLLING_FACTOR (new_instance
) = unrolling_factor
;
2011 SLP_INSTANCE_LOADS (new_instance
) = vNULL
;
2012 vect_gather_slp_loads (new_instance
, node
);
2014 /* Compute the load permutation. */
2016 bool loads_permuted
= false;
2017 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (new_instance
), i
, load_node
)
2019 vec
<unsigned> load_permutation
;
2021 stmt_vec_info load_info
;
2022 bool this_load_permuted
= false;
2023 load_permutation
.create (group_size
);
2024 stmt_vec_info first_stmt_info
= DR_GROUP_FIRST_ELEMENT
2025 (SLP_TREE_SCALAR_STMTS (load_node
)[0]);
2026 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (load_node
), j
, load_info
)
2028 int load_place
= vect_get_place_in_interleaving_chain
2029 (load_info
, first_stmt_info
);
2030 gcc_assert (load_place
!= -1);
2031 if (load_place
!= j
)
2032 this_load_permuted
= true;
2033 load_permutation
.safe_push (load_place
);
2035 if (!this_load_permuted
2036 /* The load requires permutation when unrolling exposes
2037 a gap either because the group is larger than the SLP
2038 group-size or because there is a gap between the groups. */
2039 && (known_eq (unrolling_factor
, 1U)
2040 || (group_size
== DR_GROUP_SIZE (first_stmt_info
)
2041 && DR_GROUP_GAP (first_stmt_info
) == 0)))
2043 load_permutation
.release ();
2046 SLP_TREE_LOAD_PERMUTATION (load_node
) = load_permutation
;
2047 loads_permuted
= true;
2052 if (!vect_supported_load_permutation_p (new_instance
))
2054 if (dump_enabled_p ())
2055 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2056 "Build SLP failed: unsupported load "
2057 "permutation %G", stmt_info
->stmt
);
2058 vect_free_slp_instance (new_instance
, false);
2063 /* If the loads and stores can be handled with load/store-lan
2064 instructions do not generate this SLP instance. */
2065 if (is_a
<loop_vec_info
> (vinfo
)
2067 && dr
&& vect_store_lanes_supported (vectype
, group_size
, false))
2070 FOR_EACH_VEC_ELT (SLP_INSTANCE_LOADS (new_instance
), i
, load_node
)
2072 stmt_vec_info stmt_vinfo
= DR_GROUP_FIRST_ELEMENT
2073 (SLP_TREE_SCALAR_STMTS (load_node
)[0]);
2074 /* Use SLP for strided accesses (or if we can't load-lanes). */
2075 if (STMT_VINFO_STRIDED_P (stmt_vinfo
)
2076 || ! vect_load_lanes_supported
2077 (STMT_VINFO_VECTYPE (stmt_vinfo
),
2078 DR_GROUP_SIZE (stmt_vinfo
), false))
2081 if (i
== SLP_INSTANCE_LOADS (new_instance
).length ())
2083 if (dump_enabled_p ())
2084 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2085 "Built SLP cancelled: can use "
2086 "load/store-lanes\n");
2087 vect_free_slp_instance (new_instance
, false);
2092 vinfo
->slp_instances
.safe_push (new_instance
);
2094 if (dump_enabled_p ())
2096 dump_printf_loc (MSG_NOTE
, vect_location
,
2097 "Final SLP tree for instance:\n");
2098 vect_print_slp_tree (MSG_NOTE
, vect_location
, node
);
2106 /* Failed to SLP. */
2107 /* Free the allocated memory. */
2108 scalar_stmts
.release ();
2111 /* For basic block SLP, try to break the group up into multiples of the
2113 unsigned HOST_WIDE_INT const_nunits
;
2114 if (is_a
<bb_vec_info
> (vinfo
)
2115 && STMT_VINFO_GROUPED_ACCESS (stmt_info
)
2116 && DR_GROUP_FIRST_ELEMENT (stmt_info
)
2117 && nunits
.is_constant (&const_nunits
))
2119 /* We consider breaking the group only on VF boundaries from the existing
2121 for (i
= 0; i
< group_size
; i
++)
2122 if (!matches
[i
]) break;
2124 if (i
>= const_nunits
&& i
< group_size
)
2126 /* Split into two groups at the first vector boundary before i. */
2127 gcc_assert ((const_nunits
& (const_nunits
- 1)) == 0);
2128 unsigned group1_size
= i
& ~(const_nunits
- 1);
2130 stmt_vec_info rest
= vect_split_slp_store_group (stmt_info
,
2132 bool res
= vect_analyze_slp_instance (vinfo
, stmt_info
,
2134 /* If the first non-match was in the middle of a vector,
2135 skip the rest of that vector. */
2136 if (group1_size
< i
)
2138 i
= group1_size
+ const_nunits
;
2140 rest
= vect_split_slp_store_group (rest
, const_nunits
);
2143 res
|= vect_analyze_slp_instance (vinfo
, rest
, max_tree_size
);
2146 /* Even though the first vector did not all match, we might be able to SLP
2147 (some) of the remainder. FORNOW ignore this possibility. */
2154 /* Check if there are stmts in the loop can be vectorized using SLP. Build SLP
2155 trees of packed scalar stmts if SLP is possible. */
2158 vect_analyze_slp (vec_info
*vinfo
, unsigned max_tree_size
)
2161 stmt_vec_info first_element
;
2163 DUMP_VECT_SCOPE ("vect_analyze_slp");
2165 /* Find SLP sequences starting from groups of grouped stores. */
2166 FOR_EACH_VEC_ELT (vinfo
->grouped_stores
, i
, first_element
)
2167 vect_analyze_slp_instance (vinfo
, first_element
, max_tree_size
);
2169 if (loop_vec_info loop_vinfo
= dyn_cast
<loop_vec_info
> (vinfo
))
2171 if (loop_vinfo
->reduction_chains
.length () > 0)
2173 /* Find SLP sequences starting from reduction chains. */
2174 FOR_EACH_VEC_ELT (loop_vinfo
->reduction_chains
, i
, first_element
)
2175 if (! vect_analyze_slp_instance (vinfo
, first_element
,
2178 /* Dissolve reduction chain group. */
2179 stmt_vec_info vinfo
= first_element
;
2182 stmt_vec_info next
= REDUC_GROUP_NEXT_ELEMENT (vinfo
);
2183 REDUC_GROUP_FIRST_ELEMENT (vinfo
) = NULL
;
2184 REDUC_GROUP_NEXT_ELEMENT (vinfo
) = NULL
;
2187 STMT_VINFO_DEF_TYPE (first_element
) = vect_internal_def
;
2191 /* Find SLP sequences starting from groups of reductions. */
2192 if (loop_vinfo
->reductions
.length () > 1)
2193 vect_analyze_slp_instance (vinfo
, loop_vinfo
->reductions
[0],
2197 return opt_result::success ();
2201 /* For each possible SLP instance decide whether to SLP it and calculate overall
2202 unrolling factor needed to SLP the loop. Return TRUE if decided to SLP at
2203 least one instance. */
2206 vect_make_slp_decision (loop_vec_info loop_vinfo
)
2209 poly_uint64 unrolling_factor
= 1;
2210 vec
<slp_instance
> slp_instances
= LOOP_VINFO_SLP_INSTANCES (loop_vinfo
);
2211 slp_instance instance
;
2212 int decided_to_slp
= 0;
2214 DUMP_VECT_SCOPE ("vect_make_slp_decision");
2216 FOR_EACH_VEC_ELT (slp_instances
, i
, instance
)
2218 /* FORNOW: SLP if you can. */
2219 /* All unroll factors have the form current_vector_size * X for some
2220 rational X, so they must have a common multiple. */
2222 = force_common_multiple (unrolling_factor
,
2223 SLP_INSTANCE_UNROLLING_FACTOR (instance
));
2225 /* Mark all the stmts that belong to INSTANCE as PURE_SLP stmts. Later we
2226 call vect_detect_hybrid_slp () to find stmts that need hybrid SLP and
2227 loop-based vectorization. Such stmts will be marked as HYBRID. */
2228 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance
));
2232 LOOP_VINFO_SLP_UNROLLING_FACTOR (loop_vinfo
) = unrolling_factor
;
2234 if (decided_to_slp
&& dump_enabled_p ())
2236 dump_printf_loc (MSG_NOTE
, vect_location
,
2237 "Decided to SLP %d instances. Unrolling factor ",
2239 dump_dec (MSG_NOTE
, unrolling_factor
);
2240 dump_printf (MSG_NOTE
, "\n");
2243 return (decided_to_slp
> 0);
2247 /* Find stmts that must be both vectorized and SLPed (since they feed stmts that
2248 can't be SLPed) in the tree rooted at NODE. Mark such stmts as HYBRID. */
2251 vect_detect_hybrid_slp_stmts (slp_tree node
, unsigned i
, slp_vect_type stype
,
2252 hash_map
<slp_tree
, unsigned> &visited
)
2254 stmt_vec_info stmt_vinfo
= SLP_TREE_SCALAR_STMTS (node
)[i
];
2255 imm_use_iterator imm_iter
;
2257 stmt_vec_info use_vinfo
;
2259 loop_vec_info loop_vinfo
= STMT_VINFO_LOOP_VINFO (stmt_vinfo
);
2262 /* We need to union stype over the incoming graph edges but we still
2263 want to limit recursion to stay O(N+E). */
2264 bool only_edge
= (++visited
.get_or_insert (node
) < node
->refcnt
);
2266 /* Propagate hybrid down the SLP tree. */
2267 if (stype
== hybrid
)
2269 else if (HYBRID_SLP_STMT (stmt_vinfo
))
2271 else if (!only_edge
)
2273 /* Check if a pure SLP stmt has uses in non-SLP stmts. */
2274 gcc_checking_assert (PURE_SLP_STMT (stmt_vinfo
));
2275 /* If we get a pattern stmt here we have to use the LHS of the
2276 original stmt for immediate uses. */
2277 gimple
*stmt
= vect_orig_stmt (stmt_vinfo
)->stmt
;
2279 if (gimple_code (stmt
) == GIMPLE_PHI
)
2280 def
= gimple_phi_result (stmt
);
2282 def
= SINGLE_SSA_TREE_OPERAND (stmt
, SSA_OP_DEF
);
2284 FOR_EACH_IMM_USE_STMT (use_stmt
, imm_iter
, def
)
2286 use_vinfo
= loop_vinfo
->lookup_stmt (use_stmt
);
2289 use_vinfo
= vect_stmt_to_vectorize (use_vinfo
);
2290 if (!STMT_SLP_TYPE (use_vinfo
)
2291 && (STMT_VINFO_RELEVANT (use_vinfo
)
2292 || VECTORIZABLE_CYCLE_DEF (STMT_VINFO_DEF_TYPE (use_vinfo
)))
2293 && !(gimple_code (use_stmt
) == GIMPLE_PHI
2294 && STMT_VINFO_DEF_TYPE (use_vinfo
) == vect_reduction_def
))
2296 if (dump_enabled_p ())
2297 dump_printf_loc (MSG_NOTE
, vect_location
, "use of SLP "
2298 "def in non-SLP stmt: %G", use_stmt
);
2305 && !HYBRID_SLP_STMT (stmt_vinfo
))
2307 if (dump_enabled_p ())
2308 dump_printf_loc (MSG_NOTE
, vect_location
, "marking hybrid: %G",
2310 STMT_SLP_TYPE (stmt_vinfo
) = hybrid
;
2314 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), j
, child
)
2315 if (SLP_TREE_DEF_TYPE (child
) != vect_external_def
)
2316 vect_detect_hybrid_slp_stmts (child
, i
, stype
, visited
);
2320 vect_detect_hybrid_slp_stmts (slp_tree node
, unsigned i
, slp_vect_type stype
)
2322 hash_map
<slp_tree
, unsigned> visited
;
2323 vect_detect_hybrid_slp_stmts (node
, i
, stype
, visited
);
2326 /* Helpers for vect_detect_hybrid_slp walking pattern stmt uses. */
2329 vect_detect_hybrid_slp_1 (tree
*tp
, int *, void *data
)
2331 walk_stmt_info
*wi
= (walk_stmt_info
*)data
;
2332 loop_vec_info loop_vinfo
= (loop_vec_info
) wi
->info
;
2337 stmt_vec_info def_stmt_info
= loop_vinfo
->lookup_def (*tp
);
2338 if (def_stmt_info
&& PURE_SLP_STMT (def_stmt_info
))
2340 if (dump_enabled_p ())
2341 dump_printf_loc (MSG_NOTE
, vect_location
, "marking hybrid: %G",
2342 def_stmt_info
->stmt
);
2343 STMT_SLP_TYPE (def_stmt_info
) = hybrid
;
2350 vect_detect_hybrid_slp_2 (gimple_stmt_iterator
*gsi
, bool *handled
,
2353 loop_vec_info loop_vinfo
= (loop_vec_info
) wi
->info
;
2354 stmt_vec_info use_vinfo
= loop_vinfo
->lookup_stmt (gsi_stmt (*gsi
));
2355 /* If the stmt is in a SLP instance then this isn't a reason
2356 to mark use definitions in other SLP instances as hybrid. */
2357 if (! STMT_SLP_TYPE (use_vinfo
)
2358 && (STMT_VINFO_RELEVANT (use_vinfo
)
2359 || VECTORIZABLE_CYCLE_DEF (STMT_VINFO_DEF_TYPE (use_vinfo
)))
2360 && ! (gimple_code (gsi_stmt (*gsi
)) == GIMPLE_PHI
2361 && STMT_VINFO_DEF_TYPE (use_vinfo
) == vect_reduction_def
))
2368 /* Find stmts that must be both vectorized and SLPed. */
2371 vect_detect_hybrid_slp (loop_vec_info loop_vinfo
)
2374 vec
<slp_instance
> slp_instances
= LOOP_VINFO_SLP_INSTANCES (loop_vinfo
);
2375 slp_instance instance
;
2377 DUMP_VECT_SCOPE ("vect_detect_hybrid_slp");
2379 /* First walk all pattern stmt in the loop and mark defs of uses as
2380 hybrid because immediate uses in them are not recorded. */
2381 for (i
= 0; i
< LOOP_VINFO_LOOP (loop_vinfo
)->num_nodes
; ++i
)
2383 basic_block bb
= LOOP_VINFO_BBS (loop_vinfo
)[i
];
2384 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
2387 gimple
*stmt
= gsi_stmt (gsi
);
2388 stmt_vec_info stmt_info
= loop_vinfo
->lookup_stmt (stmt
);
2389 if (STMT_VINFO_IN_PATTERN_P (stmt_info
))
2392 memset (&wi
, 0, sizeof (wi
));
2393 wi
.info
= loop_vinfo
;
2394 gimple_stmt_iterator gsi2
2395 = gsi_for_stmt (STMT_VINFO_RELATED_STMT (stmt_info
)->stmt
);
2396 walk_gimple_stmt (&gsi2
, vect_detect_hybrid_slp_2
,
2397 vect_detect_hybrid_slp_1
, &wi
);
2398 walk_gimple_seq (STMT_VINFO_PATTERN_DEF_SEQ (stmt_info
),
2399 vect_detect_hybrid_slp_2
,
2400 vect_detect_hybrid_slp_1
, &wi
);
2405 /* Then walk the SLP instance trees marking stmts with uses in
2406 non-SLP stmts as hybrid, also propagating hybrid down the
2407 SLP tree, collecting the above info on-the-fly. */
2408 FOR_EACH_VEC_ELT (slp_instances
, i
, instance
)
2410 for (unsigned i
= 0; i
< SLP_INSTANCE_GROUP_SIZE (instance
); ++i
)
2411 vect_detect_hybrid_slp_stmts (SLP_INSTANCE_TREE (instance
),
2417 /* Initialize a bb_vec_info struct for the statements between
2418 REGION_BEGIN_IN (inclusive) and REGION_END_IN (exclusive). */
2420 _bb_vec_info::_bb_vec_info (gimple_stmt_iterator region_begin_in
,
2421 gimple_stmt_iterator region_end_in
,
2422 vec_info_shared
*shared
)
2423 : vec_info (vec_info::bb
, init_cost (NULL
), shared
),
2424 bb (gsi_bb (region_begin_in
)),
2425 region_begin (region_begin_in
),
2426 region_end (region_end_in
)
2428 gimple_stmt_iterator gsi
;
2430 for (gsi
= region_begin
; gsi_stmt (gsi
) != gsi_stmt (region_end
);
2433 gimple
*stmt
= gsi_stmt (gsi
);
2434 gimple_set_uid (stmt
, 0);
2442 /* Free BB_VINFO struct, as well as all the stmt_vec_info structs of all the
2443 stmts in the basic block. */
2445 _bb_vec_info::~_bb_vec_info ()
2447 for (gimple_stmt_iterator si
= region_begin
;
2448 gsi_stmt (si
) != gsi_stmt (region_end
); gsi_next (&si
))
2449 /* Reset region marker. */
2450 gimple_set_uid (gsi_stmt (si
), -1);
2455 /* Subroutine of vect_slp_analyze_node_operations. Handle the root of NODE,
2456 given then that child nodes have already been processed, and that
2457 their def types currently match their SLP node's def type. */
2460 vect_slp_analyze_node_operations_1 (vec_info
*vinfo
, slp_tree node
,
2461 slp_instance node_instance
,
2462 stmt_vector_for_cost
*cost_vec
)
2464 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
2465 gcc_assert (STMT_SLP_TYPE (stmt_info
) != loop_vect
);
2467 /* For BB vectorization vector types are assigned here.
2468 Memory accesses already got their vector type assigned
2469 in vect_analyze_data_refs. */
2470 bb_vec_info bb_vinfo
= STMT_VINFO_BB_VINFO (stmt_info
);
2472 && ! STMT_VINFO_DATA_REF (stmt_info
))
2474 tree vectype
, nunits_vectype
;
2475 if (!vect_get_vector_types_for_stmt (stmt_info
, &vectype
,
2477 /* We checked this when building the node. */
2479 if (vectype
== boolean_type_node
)
2481 vectype
= vect_get_mask_type_for_stmt (stmt_info
);
2483 /* vect_get_mask_type_for_stmt has already explained the
2488 stmt_vec_info sstmt_info
;
2490 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, sstmt_info
)
2491 STMT_VINFO_VECTYPE (sstmt_info
) = vectype
;
2494 /* Calculate the number of vector statements to be created for the
2495 scalar stmts in this node. For SLP reductions it is equal to the
2496 number of vector statements in the children (which has already been
2497 calculated by the recursive call). Otherwise it is the number of
2498 scalar elements in one scalar iteration (DR_GROUP_SIZE) multiplied by
2499 VF divided by the number of elements in a vector. */
2500 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info
)
2501 && REDUC_GROUP_FIRST_ELEMENT (stmt_info
))
2502 SLP_TREE_NUMBER_OF_VEC_STMTS (node
)
2503 = SLP_TREE_NUMBER_OF_VEC_STMTS (SLP_TREE_CHILDREN (node
)[0]);
2507 if (loop_vec_info loop_vinfo
= dyn_cast
<loop_vec_info
> (vinfo
))
2508 vf
= loop_vinfo
->vectorization_factor
;
2511 unsigned int group_size
= SLP_INSTANCE_GROUP_SIZE (node_instance
);
2512 tree vectype
= STMT_VINFO_VECTYPE (stmt_info
);
2513 SLP_TREE_NUMBER_OF_VEC_STMTS (node
)
2514 = vect_get_num_vectors (vf
* group_size
, vectype
);
2518 return vect_analyze_stmt (stmt_info
, &dummy
, node
, node_instance
, cost_vec
);
2521 /* Analyze statements contained in SLP tree NODE after recursively analyzing
2522 the subtree. NODE_INSTANCE contains NODE and VINFO contains INSTANCE.
2524 Return true if the operations are supported. */
2527 vect_slp_analyze_node_operations (vec_info
*vinfo
, slp_tree node
,
2528 slp_instance node_instance
,
2529 scalar_stmts_to_slp_tree_map_t
*visited
,
2530 scalar_stmts_to_slp_tree_map_t
*lvisited
,
2531 stmt_vector_for_cost
*cost_vec
)
2536 if (SLP_TREE_DEF_TYPE (node
) != vect_internal_def
)
2539 /* If we already analyzed the exact same set of scalar stmts we're done.
2540 We share the generated vector stmts for those. */
2542 if ((leader
= visited
->get (SLP_TREE_SCALAR_STMTS (node
)))
2543 || (leader
= lvisited
->get (SLP_TREE_SCALAR_STMTS (node
))))
2545 SLP_TREE_NUMBER_OF_VEC_STMTS (node
)
2546 = SLP_TREE_NUMBER_OF_VEC_STMTS (*leader
);
2550 /* The SLP graph is acyclic so not caching whether we failed or succeeded
2551 doesn't result in any issue since we throw away the lvisited set
2553 lvisited
->put (SLP_TREE_SCALAR_STMTS (node
).copy (), node
);
2555 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
2556 if (!vect_slp_analyze_node_operations (vinfo
, child
, node_instance
,
2557 visited
, lvisited
, cost_vec
))
2560 /* Push SLP node def-type to stmt operands. */
2561 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), j
, child
)
2562 if (SLP_TREE_DEF_TYPE (child
) != vect_internal_def
)
2563 STMT_VINFO_DEF_TYPE (SLP_TREE_SCALAR_STMTS (child
)[0])
2564 = SLP_TREE_DEF_TYPE (child
);
2565 bool res
= vect_slp_analyze_node_operations_1 (vinfo
, node
, node_instance
,
2567 /* Restore def-types. */
2568 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), j
, child
)
2569 if (SLP_TREE_DEF_TYPE (child
) != vect_internal_def
)
2570 STMT_VINFO_DEF_TYPE (SLP_TREE_SCALAR_STMTS (child
)[0])
2571 = vect_internal_def
;
2579 /* Analyze statements in SLP instances of VINFO. Return true if the
2580 operations are supported. */
2583 vect_slp_analyze_operations (vec_info
*vinfo
)
2585 slp_instance instance
;
2588 DUMP_VECT_SCOPE ("vect_slp_analyze_operations");
2590 scalar_stmts_to_slp_tree_map_t
*visited
2591 = new scalar_stmts_to_slp_tree_map_t ();
2592 for (i
= 0; vinfo
->slp_instances
.iterate (i
, &instance
); )
2594 scalar_stmts_to_slp_tree_map_t lvisited
;
2595 stmt_vector_for_cost cost_vec
;
2596 cost_vec
.create (2);
2597 if (!vect_slp_analyze_node_operations (vinfo
,
2598 SLP_INSTANCE_TREE (instance
),
2599 instance
, visited
, &lvisited
,
2602 slp_tree node
= SLP_INSTANCE_TREE (instance
);
2603 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
2604 if (dump_enabled_p ())
2605 dump_printf_loc (MSG_NOTE
, vect_location
,
2606 "removing SLP instance operations starting from: %G",
2608 vect_free_slp_instance (instance
, false);
2609 vinfo
->slp_instances
.ordered_remove (i
);
2610 cost_vec
.release ();
2614 for (scalar_stmts_to_slp_tree_map_t::iterator x
= lvisited
.begin();
2615 x
!= lvisited
.end(); ++x
)
2616 visited
->put ((*x
).first
.copy (), (*x
).second
);
2619 add_stmt_costs (vinfo
->target_cost_data
, &cost_vec
);
2620 cost_vec
.release ();
2625 return !vinfo
->slp_instances
.is_empty ();
2629 /* Compute the scalar cost of the SLP node NODE and its children
2630 and return it. Do not account defs that are marked in LIFE and
2631 update LIFE according to uses of NODE. */
2634 vect_bb_slp_scalar_cost (basic_block bb
,
2635 slp_tree node
, vec
<bool, va_heap
> *life
,
2636 stmt_vector_for_cost
*cost_vec
,
2637 hash_set
<slp_tree
> &visited
)
2640 stmt_vec_info stmt_info
;
2643 if (visited
.add (node
))
2646 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
2648 gimple
*stmt
= stmt_info
->stmt
;
2649 vec_info
*vinfo
= stmt_info
->vinfo
;
2650 ssa_op_iter op_iter
;
2651 def_operand_p def_p
;
2656 /* If there is a non-vectorized use of the defs then the scalar
2657 stmt is kept live in which case we do not account it or any
2658 required defs in the SLP children in the scalar cost. This
2659 way we make the vectorization more costly when compared to
2661 FOR_EACH_SSA_DEF_OPERAND (def_p
, stmt
, op_iter
, SSA_OP_DEF
)
2663 imm_use_iterator use_iter
;
2665 FOR_EACH_IMM_USE_STMT (use_stmt
, use_iter
, DEF_FROM_PTR (def_p
))
2666 if (!is_gimple_debug (use_stmt
))
2668 stmt_vec_info use_stmt_info
= vinfo
->lookup_stmt (use_stmt
);
2669 if (!use_stmt_info
|| !PURE_SLP_STMT (use_stmt_info
))
2672 BREAK_FROM_IMM_USE_STMT (use_iter
);
2679 /* Count scalar stmts only once. */
2680 if (gimple_visited_p (stmt
))
2682 gimple_set_visited (stmt
, true);
2684 vect_cost_for_stmt kind
;
2685 if (STMT_VINFO_DATA_REF (stmt_info
))
2687 if (DR_IS_READ (STMT_VINFO_DATA_REF (stmt_info
)))
2690 kind
= scalar_store
;
2694 record_stmt_cost (cost_vec
, 1, kind
, stmt_info
, 0, vect_body
);
2697 auto_vec
<bool, 20> subtree_life
;
2698 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
2700 if (SLP_TREE_DEF_TYPE (child
) == vect_internal_def
)
2702 /* Do not directly pass LIFE to the recursive call, copy it to
2703 confine changes in the callee to the current child/subtree. */
2704 subtree_life
.safe_splice (*life
);
2705 vect_bb_slp_scalar_cost (bb
, child
, &subtree_life
, cost_vec
,
2707 subtree_life
.truncate (0);
2713 vect_bb_slp_scalar_cost (basic_block bb
,
2714 slp_tree node
, vec
<bool, va_heap
> *life
,
2715 stmt_vector_for_cost
*cost_vec
)
2717 hash_set
<slp_tree
> visited
;
2718 vect_bb_slp_scalar_cost (bb
, node
, life
, cost_vec
, visited
);
2721 /* Check if vectorization of the basic block is profitable. */
2724 vect_bb_vectorization_profitable_p (bb_vec_info bb_vinfo
)
2726 vec
<slp_instance
> slp_instances
= BB_VINFO_SLP_INSTANCES (bb_vinfo
);
2727 slp_instance instance
;
2729 unsigned int vec_inside_cost
= 0, vec_outside_cost
= 0, scalar_cost
= 0;
2730 unsigned int vec_prologue_cost
= 0, vec_epilogue_cost
= 0;
2732 /* Calculate scalar cost. */
2733 stmt_vector_for_cost scalar_costs
;
2734 scalar_costs
.create (0);
2735 FOR_EACH_VEC_ELT (slp_instances
, i
, instance
)
2737 auto_vec
<bool, 20> life
;
2738 life
.safe_grow_cleared (SLP_INSTANCE_GROUP_SIZE (instance
));
2739 vect_bb_slp_scalar_cost (BB_VINFO_BB (bb_vinfo
),
2740 SLP_INSTANCE_TREE (instance
),
2741 &life
, &scalar_costs
);
2743 void *target_cost_data
= init_cost (NULL
);
2744 add_stmt_costs (target_cost_data
, &scalar_costs
);
2745 scalar_costs
.release ();
2747 finish_cost (target_cost_data
, &dummy
, &scalar_cost
, &dummy
);
2748 destroy_cost_data (target_cost_data
);
2750 /* Unset visited flag. */
2751 for (gimple_stmt_iterator gsi
= bb_vinfo
->region_begin
;
2752 gsi_stmt (gsi
) != gsi_stmt (bb_vinfo
->region_end
); gsi_next (&gsi
))
2753 gimple_set_visited (gsi_stmt (gsi
), false);
2755 /* Complete the target-specific cost calculation. */
2756 finish_cost (BB_VINFO_TARGET_COST_DATA (bb_vinfo
), &vec_prologue_cost
,
2757 &vec_inside_cost
, &vec_epilogue_cost
);
2759 vec_outside_cost
= vec_prologue_cost
+ vec_epilogue_cost
;
2761 if (dump_enabled_p ())
2763 dump_printf_loc (MSG_NOTE
, vect_location
, "Cost model analysis: \n");
2764 dump_printf (MSG_NOTE
, " Vector inside of basic block cost: %d\n",
2766 dump_printf (MSG_NOTE
, " Vector prologue cost: %d\n", vec_prologue_cost
);
2767 dump_printf (MSG_NOTE
, " Vector epilogue cost: %d\n", vec_epilogue_cost
);
2768 dump_printf (MSG_NOTE
, " Scalar cost of basic block: %d\n", scalar_cost
);
2771 /* Vectorization is profitable if its cost is more than the cost of scalar
2772 version. Note that we err on the vector side for equal cost because
2773 the cost estimate is otherwise quite pessimistic (constant uses are
2774 free on the scalar side but cost a load on the vector side for
2776 if (vec_outside_cost
+ vec_inside_cost
> scalar_cost
)
2782 /* Check if the basic block can be vectorized. Returns a bb_vec_info
2783 if so and sets fatal to true if failure is independent of
2784 current_vector_size. */
2787 vect_slp_analyze_bb_1 (gimple_stmt_iterator region_begin
,
2788 gimple_stmt_iterator region_end
,
2789 vec
<data_reference_p
> datarefs
, int n_stmts
,
2790 bool &fatal
, vec_info_shared
*shared
)
2792 DUMP_VECT_SCOPE ("vect_slp_analyze_bb");
2794 bb_vec_info bb_vinfo
;
2795 slp_instance instance
;
2797 poly_uint64 min_vf
= 2;
2799 /* The first group of checks is independent of the vector size. */
2802 if (n_stmts
> PARAM_VALUE (PARAM_SLP_MAX_INSNS_IN_BB
))
2804 if (dump_enabled_p ())
2805 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2806 "not vectorized: too many instructions in "
2808 free_data_refs (datarefs
);
2812 bb_vinfo
= new _bb_vec_info (region_begin
, region_end
, shared
);
2816 BB_VINFO_DATAREFS (bb_vinfo
) = datarefs
;
2817 bb_vinfo
->shared
->save_datarefs ();
2819 /* Analyze the data references. */
2821 if (!vect_analyze_data_refs (bb_vinfo
, &min_vf
))
2823 if (dump_enabled_p ())
2824 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2825 "not vectorized: unhandled data-ref in basic "
2832 if (BB_VINFO_DATAREFS (bb_vinfo
).length () < 2)
2834 if (dump_enabled_p ())
2835 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2836 "not vectorized: not enough data-refs in "
2843 if (!vect_analyze_data_ref_accesses (bb_vinfo
))
2845 if (dump_enabled_p ())
2846 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2847 "not vectorized: unhandled data access in "
2854 /* If there are no grouped stores in the region there is no need
2855 to continue with pattern recog as vect_analyze_slp will fail
2857 if (bb_vinfo
->grouped_stores
.is_empty ())
2859 if (dump_enabled_p ())
2860 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2861 "not vectorized: no grouped stores in "
2868 /* While the rest of the analysis below depends on it in some way. */
2871 vect_pattern_recog (bb_vinfo
);
2873 /* Check the SLP opportunities in the basic block, analyze and build SLP
2875 if (!vect_analyze_slp (bb_vinfo
, n_stmts
))
2877 if (dump_enabled_p ())
2879 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2880 "Failed to SLP the basic block.\n");
2881 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2882 "not vectorized: failed to find SLP opportunities "
2883 "in basic block.\n");
2890 vect_record_base_alignments (bb_vinfo
);
2892 /* Analyze and verify the alignment of data references and the
2893 dependence in the SLP instances. */
2894 for (i
= 0; BB_VINFO_SLP_INSTANCES (bb_vinfo
).iterate (i
, &instance
); )
2896 if (! vect_slp_analyze_and_verify_instance_alignment (instance
)
2897 || ! vect_slp_analyze_instance_dependence (instance
))
2899 slp_tree node
= SLP_INSTANCE_TREE (instance
);
2900 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
2901 if (dump_enabled_p ())
2902 dump_printf_loc (MSG_NOTE
, vect_location
,
2903 "removing SLP instance operations starting from: %G",
2905 vect_free_slp_instance (instance
, false);
2906 BB_VINFO_SLP_INSTANCES (bb_vinfo
).ordered_remove (i
);
2910 /* Mark all the statements that we want to vectorize as pure SLP and
2912 vect_mark_slp_stmts (SLP_INSTANCE_TREE (instance
));
2913 vect_mark_slp_stmts_relevant (SLP_INSTANCE_TREE (instance
));
2917 if (! BB_VINFO_SLP_INSTANCES (bb_vinfo
).length ())
2923 if (!vect_slp_analyze_operations (bb_vinfo
))
2925 if (dump_enabled_p ())
2926 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2927 "not vectorized: bad operation in basic block.\n");
2933 /* Cost model: check if the vectorization is worthwhile. */
2934 if (!unlimited_cost_model (NULL
)
2935 && !vect_bb_vectorization_profitable_p (bb_vinfo
))
2937 if (dump_enabled_p ())
2938 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
2939 "not vectorized: vectorization is not "
2946 if (dump_enabled_p ())
2947 dump_printf_loc (MSG_NOTE
, vect_location
,
2948 "Basic block will be vectorized using SLP\n");
2954 /* Main entry for the BB vectorizer. Analyze and transform BB, returns
2955 true if anything in the basic-block was vectorized. */
2958 vect_slp_bb (basic_block bb
)
2960 bb_vec_info bb_vinfo
;
2961 gimple_stmt_iterator gsi
;
2962 bool any_vectorized
= false;
2963 auto_vector_sizes vector_sizes
;
2965 /* Autodetect first vector size we try. */
2966 current_vector_size
= 0;
2967 targetm
.vectorize
.autovectorize_vector_sizes (&vector_sizes
);
2968 unsigned int next_size
= 0;
2970 gsi
= gsi_start_bb (bb
);
2972 poly_uint64 autodetected_vector_size
= 0;
2975 if (gsi_end_p (gsi
))
2978 gimple_stmt_iterator region_begin
= gsi
;
2979 vec
<data_reference_p
> datarefs
= vNULL
;
2982 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
2984 gimple
*stmt
= gsi_stmt (gsi
);
2985 if (is_gimple_debug (stmt
))
2989 if (gimple_location (stmt
) != UNKNOWN_LOCATION
)
2990 vect_location
= stmt
;
2992 if (!vect_find_stmt_data_reference (NULL
, stmt
, &datarefs
))
2996 /* Skip leading unhandled stmts. */
2997 if (gsi_stmt (region_begin
) == gsi_stmt (gsi
))
3003 gimple_stmt_iterator region_end
= gsi
;
3005 bool vectorized
= false;
3007 vec_info_shared shared
;
3008 bb_vinfo
= vect_slp_analyze_bb_1 (region_begin
, region_end
,
3009 datarefs
, insns
, fatal
, &shared
);
3011 && dbg_cnt (vect_slp
))
3013 if (dump_enabled_p ())
3014 dump_printf_loc (MSG_NOTE
, vect_location
, "SLPing BB part\n");
3016 bb_vinfo
->shared
->check_datarefs ();
3017 vect_schedule_slp (bb_vinfo
);
3019 unsigned HOST_WIDE_INT bytes
;
3020 if (dump_enabled_p ())
3022 if (current_vector_size
.is_constant (&bytes
))
3023 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, vect_location
,
3024 "basic block part vectorized using %wu byte "
3025 "vectors\n", bytes
);
3027 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, vect_location
,
3028 "basic block part vectorized using variable "
3029 "length vectors\n");
3036 any_vectorized
|= vectorized
;
3039 autodetected_vector_size
= current_vector_size
;
3041 if (next_size
< vector_sizes
.length ()
3042 && known_eq (vector_sizes
[next_size
], autodetected_vector_size
))
3046 || next_size
== vector_sizes
.length ()
3047 || known_eq (current_vector_size
, 0U)
3048 /* If vect_slp_analyze_bb_1 signaled that analysis for all
3049 vector sizes will fail do not bother iterating. */
3052 if (gsi_end_p (region_end
))
3055 /* Skip the unhandled stmt. */
3058 /* And reset vector sizes. */
3059 current_vector_size
= 0;
3064 /* Try the next biggest vector size. */
3065 current_vector_size
= vector_sizes
[next_size
++];
3066 if (dump_enabled_p ())
3068 dump_printf_loc (MSG_NOTE
, vect_location
,
3069 "***** Re-trying analysis with "
3071 dump_dec (MSG_NOTE
, current_vector_size
);
3072 dump_printf (MSG_NOTE
, "\n");
3080 return any_vectorized
;
3084 /* Return 1 if vector type of boolean constant which is OPNUM
3085 operand in statement STMT_VINFO is a boolean vector. */
3088 vect_mask_constant_operand_p (stmt_vec_info stmt_vinfo
, int opnum
)
3090 enum tree_code code
= gimple_expr_code (stmt_vinfo
->stmt
);
3092 enum vect_def_type dt
;
3094 /* For comparison and COND_EXPR type is chosen depending
3095 on the other comparison operand. */
3096 if (TREE_CODE_CLASS (code
) == tcc_comparison
)
3098 gassign
*stmt
= as_a
<gassign
*> (stmt_vinfo
->stmt
);
3100 op
= gimple_assign_rhs1 (stmt
);
3102 op
= gimple_assign_rhs2 (stmt
);
3104 if (!vect_is_simple_use (op
, stmt_vinfo
->vinfo
, &dt
, &vectype
))
3107 return !vectype
|| VECTOR_BOOLEAN_TYPE_P (vectype
);
3110 if (code
== COND_EXPR
)
3112 gassign
*stmt
= as_a
<gassign
*> (stmt_vinfo
->stmt
);
3113 tree cond
= gimple_assign_rhs1 (stmt
);
3115 if (TREE_CODE (cond
) == SSA_NAME
)
3118 op
= TREE_OPERAND (cond
, 1);
3120 op
= TREE_OPERAND (cond
, 0);
3122 if (!vect_is_simple_use (op
, stmt_vinfo
->vinfo
, &dt
, &vectype
))
3125 return !vectype
|| VECTOR_BOOLEAN_TYPE_P (vectype
);
3128 return VECTOR_BOOLEAN_TYPE_P (STMT_VINFO_VECTYPE (stmt_vinfo
));
3131 /* Build a variable-length vector in which the elements in ELTS are repeated
3132 to a fill NRESULTS vectors of type VECTOR_TYPE. Store the vectors in
3133 RESULTS and add any new instructions to SEQ.
3135 The approach we use is:
3137 (1) Find a vector mode VM with integer elements of mode IM.
3139 (2) Replace ELTS[0:NELTS] with ELTS'[0:NELTS'], where each element of
3140 ELTS' has mode IM. This involves creating NELTS' VIEW_CONVERT_EXPRs
3141 from small vectors to IM.
3143 (3) Duplicate each ELTS'[I] into a vector of mode VM.
3145 (4) Use a tree of interleaving VEC_PERM_EXPRs to create VMs with the
3146 correct byte contents.
3148 (5) Use VIEW_CONVERT_EXPR to cast the final VMs to the required type.
3150 We try to find the largest IM for which this sequence works, in order
3151 to cut down on the number of interleaves. */
3154 duplicate_and_interleave (gimple_seq
*seq
, tree vector_type
, vec
<tree
> elts
,
3155 unsigned int nresults
, vec
<tree
> &results
)
3157 unsigned int nelts
= elts
.length ();
3158 tree element_type
= TREE_TYPE (vector_type
);
3160 /* (1) Find a vector mode VM with integer elements of mode IM. */
3161 unsigned int nvectors
= 1;
3162 tree new_vector_type
;
3164 if (!can_duplicate_and_interleave_p (nelts
, TYPE_MODE (element_type
),
3165 &nvectors
, &new_vector_type
,
3169 /* Get a vector type that holds ELTS[0:NELTS/NELTS']. */
3170 unsigned int partial_nelts
= nelts
/ nvectors
;
3171 tree partial_vector_type
= build_vector_type (element_type
, partial_nelts
);
3173 tree_vector_builder partial_elts
;
3174 auto_vec
<tree
, 32> pieces (nvectors
* 2);
3175 pieces
.quick_grow (nvectors
* 2);
3176 for (unsigned int i
= 0; i
< nvectors
; ++i
)
3178 /* (2) Replace ELTS[0:NELTS] with ELTS'[0:NELTS'], where each element of
3179 ELTS' has mode IM. */
3180 partial_elts
.new_vector (partial_vector_type
, partial_nelts
, 1);
3181 for (unsigned int j
= 0; j
< partial_nelts
; ++j
)
3182 partial_elts
.quick_push (elts
[i
* partial_nelts
+ j
]);
3183 tree t
= gimple_build_vector (seq
, &partial_elts
);
3184 t
= gimple_build (seq
, VIEW_CONVERT_EXPR
,
3185 TREE_TYPE (new_vector_type
), t
);
3187 /* (3) Duplicate each ELTS'[I] into a vector of mode VM. */
3188 pieces
[i
] = gimple_build_vector_from_val (seq
, new_vector_type
, t
);
3191 /* (4) Use a tree of VEC_PERM_EXPRs to create a single VM with the
3192 correct byte contents.
3194 We need to repeat the following operation log2(nvectors) times:
3196 out[i * 2] = VEC_PERM_EXPR (in[i], in[i + hi_start], lo_permute);
3197 out[i * 2 + 1] = VEC_PERM_EXPR (in[i], in[i + hi_start], hi_permute);
3199 However, if each input repeats every N elements and the VF is
3200 a multiple of N * 2, the HI result is the same as the LO. */
3201 unsigned int in_start
= 0;
3202 unsigned int out_start
= nvectors
;
3203 unsigned int hi_start
= nvectors
/ 2;
3204 /* A bound on the number of outputs needed to produce NRESULTS results
3205 in the final iteration. */
3206 unsigned int noutputs_bound
= nvectors
* nresults
;
3207 for (unsigned int in_repeat
= 1; in_repeat
< nvectors
; in_repeat
*= 2)
3209 noutputs_bound
/= 2;
3210 unsigned int limit
= MIN (noutputs_bound
, nvectors
);
3211 for (unsigned int i
= 0; i
< limit
; ++i
)
3214 && multiple_p (TYPE_VECTOR_SUBPARTS (new_vector_type
),
3217 pieces
[out_start
+ i
] = pieces
[out_start
+ i
- 1];
3221 tree output
= make_ssa_name (new_vector_type
);
3222 tree input1
= pieces
[in_start
+ (i
/ 2)];
3223 tree input2
= pieces
[in_start
+ (i
/ 2) + hi_start
];
3224 gassign
*stmt
= gimple_build_assign (output
, VEC_PERM_EXPR
,
3227 gimple_seq_add_stmt (seq
, stmt
);
3228 pieces
[out_start
+ i
] = output
;
3230 std::swap (in_start
, out_start
);
3233 /* (5) Use VIEW_CONVERT_EXPR to cast the final VM to the required type. */
3234 results
.reserve (nresults
);
3235 for (unsigned int i
= 0; i
< nresults
; ++i
)
3237 results
.quick_push (gimple_build (seq
, VIEW_CONVERT_EXPR
, vector_type
,
3238 pieces
[in_start
+ i
]));
3240 results
.quick_push (results
[i
- nvectors
]);
3244 /* For constant and loop invariant defs of SLP_NODE this function returns
3245 (vector) defs (VEC_OPRNDS) that will be used in the vectorized stmts.
3246 OP_NUM determines if we gather defs for operand 0 or operand 1 of the RHS of
3247 scalar stmts. NUMBER_OF_VECTORS is the number of vector defs to create.
3248 REDUC_INDEX is the index of the reduction operand in the statements, unless
3252 vect_get_constant_vectors (tree op
, slp_tree slp_node
,
3253 vec
<tree
> *vec_oprnds
,
3254 unsigned int op_num
, unsigned int number_of_vectors
)
3256 vec
<stmt_vec_info
> stmts
= SLP_TREE_SCALAR_STMTS (slp_node
);
3257 stmt_vec_info stmt_vinfo
= stmts
[0];
3258 gimple
*stmt
= stmt_vinfo
->stmt
;
3259 unsigned HOST_WIDE_INT nunits
;
3261 unsigned j
, number_of_places_left_in_vector
;
3264 int group_size
= stmts
.length ();
3265 unsigned int vec_num
, i
;
3266 unsigned number_of_copies
= 1;
3268 voprnds
.create (number_of_vectors
);
3269 bool constant_p
, is_store
;
3270 tree neutral_op
= NULL
;
3271 enum tree_code code
= gimple_expr_code (stmt
);
3272 gimple_seq ctor_seq
= NULL
;
3273 auto_vec
<tree
, 16> permute_results
;
3275 /* Check if vector type is a boolean vector. */
3276 if (VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (op
))
3277 && vect_mask_constant_operand_p (stmt_vinfo
, op_num
))
3279 = build_same_sized_truth_vector_type (STMT_VINFO_VECTYPE (stmt_vinfo
));
3281 vector_type
= get_vectype_for_scalar_type (TREE_TYPE (op
));
3283 if (STMT_VINFO_DATA_REF (stmt_vinfo
))
3286 op
= gimple_assign_rhs1 (stmt
);
3293 /* NUMBER_OF_COPIES is the number of times we need to use the same values in
3294 created vectors. It is greater than 1 if unrolling is performed.
3296 For example, we have two scalar operands, s1 and s2 (e.g., group of
3297 strided accesses of size two), while NUNITS is four (i.e., four scalars
3298 of this type can be packed in a vector). The output vector will contain
3299 two copies of each scalar operand: {s1, s2, s1, s2}. (NUMBER_OF_COPIES
3302 If GROUP_SIZE > NUNITS, the scalars will be split into several vectors
3303 containing the operands.
3305 For example, NUNITS is four as before, and the group size is 8
3306 (s1, s2, ..., s8). We will create two vectors {s1, s2, s3, s4} and
3307 {s5, s6, s7, s8}. */
3309 /* When using duplicate_and_interleave, we just need one element for
3310 each scalar statement. */
3311 if (!TYPE_VECTOR_SUBPARTS (vector_type
).is_constant (&nunits
))
3312 nunits
= group_size
;
3314 number_of_copies
= nunits
* number_of_vectors
/ group_size
;
3316 number_of_places_left_in_vector
= nunits
;
3318 tree_vector_builder
elts (vector_type
, nunits
, 1);
3319 elts
.quick_grow (nunits
);
3320 bool place_after_defs
= false;
3321 for (j
= 0; j
< number_of_copies
; j
++)
3323 for (i
= group_size
- 1; stmts
.iterate (i
, &stmt_vinfo
); i
--)
3325 stmt
= stmt_vinfo
->stmt
;
3327 op
= gimple_assign_rhs1 (stmt
);
3334 tree cond
= gimple_assign_rhs1 (stmt
);
3335 if (TREE_CODE (cond
) == SSA_NAME
)
3336 op
= gimple_op (stmt
, op_num
+ 1);
3337 else if (op_num
== 0 || op_num
== 1)
3338 op
= TREE_OPERAND (cond
, op_num
);
3342 op
= gimple_assign_rhs2 (stmt
);
3344 op
= gimple_assign_rhs3 (stmt
);
3350 op
= gimple_call_arg (stmt
, op_num
);
3357 op
= gimple_op (stmt
, op_num
+ 1);
3358 /* Unlike the other binary operators, shifts/rotates have
3359 the shift count being int, instead of the same type as
3360 the lhs, so make sure the scalar is the right type if
3361 we are dealing with vectors of
3362 long long/long/short/char. */
3363 if (op_num
== 1 && TREE_CODE (op
) == INTEGER_CST
)
3364 op
= fold_convert (TREE_TYPE (vector_type
), op
);
3368 op
= gimple_op (stmt
, op_num
+ 1);
3373 /* Create 'vect_ = {op0,op1,...,opn}'. */
3374 number_of_places_left_in_vector
--;
3376 if (!types_compatible_p (TREE_TYPE (vector_type
), TREE_TYPE (op
)))
3378 if (CONSTANT_CLASS_P (op
))
3380 if (VECTOR_BOOLEAN_TYPE_P (vector_type
))
3382 /* Can't use VIEW_CONVERT_EXPR for booleans because
3383 of possibly different sizes of scalar value and
3385 if (integer_zerop (op
))
3386 op
= build_int_cst (TREE_TYPE (vector_type
), 0);
3387 else if (integer_onep (op
))
3388 op
= build_all_ones_cst (TREE_TYPE (vector_type
));
3393 op
= fold_unary (VIEW_CONVERT_EXPR
,
3394 TREE_TYPE (vector_type
), op
);
3395 gcc_assert (op
&& CONSTANT_CLASS_P (op
));
3399 tree new_temp
= make_ssa_name (TREE_TYPE (vector_type
));
3401 if (VECTOR_BOOLEAN_TYPE_P (vector_type
))
3404 = build_all_ones_cst (TREE_TYPE (vector_type
));
3406 = build_zero_cst (TREE_TYPE (vector_type
));
3407 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (op
)));
3408 init_stmt
= gimple_build_assign (new_temp
, COND_EXPR
,
3414 op
= build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (vector_type
),
3417 = gimple_build_assign (new_temp
, VIEW_CONVERT_EXPR
,
3420 gimple_seq_add_stmt (&ctor_seq
, init_stmt
);
3424 elts
[number_of_places_left_in_vector
] = op
;
3425 if (!CONSTANT_CLASS_P (op
))
3427 if (TREE_CODE (orig_op
) == SSA_NAME
3428 && !SSA_NAME_IS_DEFAULT_DEF (orig_op
)
3429 && STMT_VINFO_BB_VINFO (stmt_vinfo
)
3430 && (STMT_VINFO_BB_VINFO (stmt_vinfo
)->bb
3431 == gimple_bb (SSA_NAME_DEF_STMT (orig_op
))))
3432 place_after_defs
= true;
3434 if (number_of_places_left_in_vector
== 0)
3437 ? multiple_p (TYPE_VECTOR_SUBPARTS (vector_type
), nunits
)
3438 : known_eq (TYPE_VECTOR_SUBPARTS (vector_type
), nunits
))
3439 vec_cst
= gimple_build_vector (&ctor_seq
, &elts
);
3442 if (vec_oprnds
->is_empty ())
3443 duplicate_and_interleave (&ctor_seq
, vector_type
, elts
,
3446 vec_cst
= permute_results
[number_of_vectors
- j
- 1];
3449 gimple_stmt_iterator gsi
;
3450 if (place_after_defs
)
3452 stmt_vec_info last_stmt_info
3453 = vect_find_last_scalar_stmt_in_slp (slp_node
);
3454 gsi
= gsi_for_stmt (last_stmt_info
->stmt
);
3455 init
= vect_init_vector (stmt_vinfo
, vec_cst
, vector_type
,
3459 init
= vect_init_vector (stmt_vinfo
, vec_cst
, vector_type
,
3461 if (ctor_seq
!= NULL
)
3463 gsi
= gsi_for_stmt (SSA_NAME_DEF_STMT (init
));
3464 gsi_insert_seq_before (&gsi
, ctor_seq
, GSI_SAME_STMT
);
3467 voprnds
.quick_push (init
);
3468 place_after_defs
= false;
3469 number_of_places_left_in_vector
= nunits
;
3471 elts
.new_vector (vector_type
, nunits
, 1);
3472 elts
.quick_grow (nunits
);
3477 /* Since the vectors are created in the reverse order, we should invert
3479 vec_num
= voprnds
.length ();
3480 for (j
= vec_num
; j
!= 0; j
--)
3482 vop
= voprnds
[j
- 1];
3483 vec_oprnds
->quick_push (vop
);
3488 /* In case that VF is greater than the unrolling factor needed for the SLP
3489 group of stmts, NUMBER_OF_VECTORS to be created is greater than
3490 NUMBER_OF_SCALARS/NUNITS or NUNITS/NUMBER_OF_SCALARS, and hence we have
3491 to replicate the vectors. */
3492 while (number_of_vectors
> vec_oprnds
->length ())
3494 tree neutral_vec
= NULL
;
3499 neutral_vec
= build_vector_from_val (vector_type
, neutral_op
);
3501 vec_oprnds
->quick_push (neutral_vec
);
3505 for (i
= 0; vec_oprnds
->iterate (i
, &vop
) && i
< vec_num
; i
++)
3506 vec_oprnds
->quick_push (vop
);
3512 /* Get vectorized definitions from SLP_NODE that contains corresponding
3513 vectorized def-stmts. */
3516 vect_get_slp_vect_defs (slp_tree slp_node
, vec
<tree
> *vec_oprnds
)
3519 stmt_vec_info vec_def_stmt_info
;
3522 gcc_assert (SLP_TREE_VEC_STMTS (slp_node
).exists ());
3524 FOR_EACH_VEC_ELT (SLP_TREE_VEC_STMTS (slp_node
), i
, vec_def_stmt_info
)
3526 gcc_assert (vec_def_stmt_info
);
3527 if (gphi
*vec_def_phi
= dyn_cast
<gphi
*> (vec_def_stmt_info
->stmt
))
3528 vec_oprnd
= gimple_phi_result (vec_def_phi
);
3530 vec_oprnd
= gimple_get_lhs (vec_def_stmt_info
->stmt
);
3531 vec_oprnds
->quick_push (vec_oprnd
);
3536 /* Get vectorized definitions for SLP_NODE.
3537 If the scalar definitions are loop invariants or constants, collect them and
3538 call vect_get_constant_vectors() to create vector stmts.
3539 Otherwise, the def-stmts must be already vectorized and the vectorized stmts
3540 must be stored in the corresponding child of SLP_NODE, and we call
3541 vect_get_slp_vect_defs () to retrieve them. */
3544 vect_get_slp_defs (vec
<tree
> ops
, slp_tree slp_node
,
3545 vec
<vec
<tree
> > *vec_oprnds
)
3547 int number_of_vects
= 0, i
;
3548 unsigned int child_index
= 0;
3549 HOST_WIDE_INT lhs_size_unit
, rhs_size_unit
;
3550 slp_tree child
= NULL
;
3553 bool vectorized_defs
;
3555 stmt_vec_info first_stmt_info
= SLP_TREE_SCALAR_STMTS (slp_node
)[0];
3556 FOR_EACH_VEC_ELT (ops
, i
, oprnd
)
3558 /* For each operand we check if it has vectorized definitions in a child
3559 node or we need to create them (for invariants and constants). We
3560 check if the LHS of the first stmt of the next child matches OPRND.
3561 If it does, we found the correct child. Otherwise, we call
3562 vect_get_constant_vectors (), and not advance CHILD_INDEX in order
3563 to check this child node for the next operand. */
3564 vectorized_defs
= false;
3565 if (SLP_TREE_CHILDREN (slp_node
).length () > child_index
)
3567 child
= SLP_TREE_CHILDREN (slp_node
)[child_index
];
3569 /* We have to check both pattern and original def, if available. */
3570 if (SLP_TREE_DEF_TYPE (child
) == vect_internal_def
)
3572 stmt_vec_info first_def_info
= SLP_TREE_SCALAR_STMTS (child
)[0];
3573 stmt_vec_info related
= STMT_VINFO_RELATED_STMT (first_def_info
);
3576 if (gphi
*first_def
= dyn_cast
<gphi
*> (first_def_info
->stmt
))
3577 first_def_op
= gimple_phi_result (first_def
);
3579 first_def_op
= gimple_get_lhs (first_def_info
->stmt
);
3580 if (operand_equal_p (oprnd
, first_def_op
, 0)
3582 && operand_equal_p (oprnd
,
3583 gimple_get_lhs (related
->stmt
), 0)))
3585 /* The number of vector defs is determined by the number of
3586 vector statements in the node from which we get those
3588 number_of_vects
= SLP_TREE_NUMBER_OF_VEC_STMTS (child
);
3589 vectorized_defs
= true;
3597 if (!vectorized_defs
)
3601 number_of_vects
= SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node
);
3602 /* Number of vector stmts was calculated according to LHS in
3603 vect_schedule_slp_instance (), fix it by replacing LHS with
3604 RHS, if necessary. See vect_get_smallest_scalar_type () for
3606 vect_get_smallest_scalar_type (first_stmt_info
, &lhs_size_unit
,
3608 if (rhs_size_unit
!= lhs_size_unit
)
3610 number_of_vects
*= rhs_size_unit
;
3611 number_of_vects
/= lhs_size_unit
;
3616 /* Allocate memory for vectorized defs. */
3618 vec_defs
.create (number_of_vects
);
3620 /* For reduction defs we call vect_get_constant_vectors (), since we are
3621 looking for initial loop invariant values. */
3622 if (vectorized_defs
)
3623 /* The defs are already vectorized. */
3624 vect_get_slp_vect_defs (child
, &vec_defs
);
3626 /* Build vectors from scalar defs. */
3627 vect_get_constant_vectors (oprnd
, slp_node
, &vec_defs
, i
,
3630 vec_oprnds
->quick_push (vec_defs
);
3634 /* Generate vector permute statements from a list of loads in DR_CHAIN.
3635 If ANALYZE_ONLY is TRUE, only check that it is possible to create valid
3636 permute statements for the SLP node NODE of the SLP instance
3637 SLP_NODE_INSTANCE. */
3640 vect_transform_slp_perm_load (slp_tree node
, vec
<tree
> dr_chain
,
3641 gimple_stmt_iterator
*gsi
, poly_uint64 vf
,
3642 slp_instance slp_node_instance
, bool analyze_only
,
3645 stmt_vec_info stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
3646 vec_info
*vinfo
= stmt_info
->vinfo
;
3648 tree vectype
= STMT_VINFO_VECTYPE (stmt_info
);
3649 unsigned int group_size
= SLP_INSTANCE_GROUP_SIZE (slp_node_instance
);
3650 unsigned int mask_element
;
3653 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info
))
3656 stmt_info
= DR_GROUP_FIRST_ELEMENT (stmt_info
);
3658 mode
= TYPE_MODE (vectype
);
3659 poly_uint64 nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
3661 /* Initialize the vect stmts of NODE to properly insert the generated
3664 for (unsigned i
= SLP_TREE_VEC_STMTS (node
).length ();
3665 i
< SLP_TREE_NUMBER_OF_VEC_STMTS (node
); i
++)
3666 SLP_TREE_VEC_STMTS (node
).quick_push (NULL
);
3668 /* Generate permutation masks for every NODE. Number of masks for each NODE
3669 is equal to GROUP_SIZE.
3670 E.g., we have a group of three nodes with three loads from the same
3671 location in each node, and the vector size is 4. I.e., we have a
3672 a0b0c0a1b1c1... sequence and we need to create the following vectors:
3673 for a's: a0a0a0a1 a1a1a2a2 a2a3a3a3
3674 for b's: b0b0b0b1 b1b1b2b2 b2b3b3b3
3677 The masks for a's should be: {0,0,0,3} {3,3,6,6} {6,9,9,9}.
3678 The last mask is illegal since we assume two operands for permute
3679 operation, and the mask element values can't be outside that range.
3680 Hence, the last mask must be converted into {2,5,5,5}.
3681 For the first two permutations we need the first and the second input
3682 vectors: {a0,b0,c0,a1} and {b1,c1,a2,b2}, and for the last permutation
3683 we need the second and the third vectors: {b1,c1,a2,b2} and
3686 int vect_stmts_counter
= 0;
3687 unsigned int index
= 0;
3688 int first_vec_index
= -1;
3689 int second_vec_index
= -1;
3693 vec_perm_builder mask
;
3694 unsigned int nelts_to_build
;
3695 unsigned int nvectors_per_build
;
3696 bool repeating_p
= (group_size
== DR_GROUP_SIZE (stmt_info
)
3697 && multiple_p (nunits
, group_size
));
3700 /* A single vector contains a whole number of copies of the node, so:
3701 (a) all permutes can use the same mask; and
3702 (b) the permutes only need a single vector input. */
3703 mask
.new_vector (nunits
, group_size
, 3);
3704 nelts_to_build
= mask
.encoded_nelts ();
3705 nvectors_per_build
= SLP_TREE_VEC_STMTS (node
).length ();
3709 /* We need to construct a separate mask for each vector statement. */
3710 unsigned HOST_WIDE_INT const_nunits
, const_vf
;
3711 if (!nunits
.is_constant (&const_nunits
)
3712 || !vf
.is_constant (&const_vf
))
3714 mask
.new_vector (const_nunits
, const_nunits
, 1);
3715 nelts_to_build
= const_vf
* group_size
;
3716 nvectors_per_build
= 1;
3719 unsigned int count
= mask
.encoded_nelts ();
3720 mask
.quick_grow (count
);
3721 vec_perm_indices indices
;
3723 for (unsigned int j
= 0; j
< nelts_to_build
; j
++)
3725 unsigned int iter_num
= j
/ group_size
;
3726 unsigned int stmt_num
= j
% group_size
;
3727 unsigned int i
= (iter_num
* DR_GROUP_SIZE (stmt_info
)
3728 + SLP_TREE_LOAD_PERMUTATION (node
)[stmt_num
]);
3731 first_vec_index
= 0;
3736 /* Enforced before the loop when !repeating_p. */
3737 unsigned int const_nunits
= nunits
.to_constant ();
3738 vec_index
= i
/ const_nunits
;
3739 mask_element
= i
% const_nunits
;
3740 if (vec_index
== first_vec_index
3741 || first_vec_index
== -1)
3743 first_vec_index
= vec_index
;
3745 else if (vec_index
== second_vec_index
3746 || second_vec_index
== -1)
3748 second_vec_index
= vec_index
;
3749 mask_element
+= const_nunits
;
3753 if (dump_enabled_p ())
3754 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, vect_location
,
3755 "permutation requires at "
3756 "least three vectors %G",
3758 gcc_assert (analyze_only
);
3762 gcc_assert (mask_element
< 2 * const_nunits
);
3765 if (mask_element
!= index
)
3767 mask
[index
++] = mask_element
;
3769 if (index
== count
&& !noop_p
)
3771 indices
.new_vector (mask
, second_vec_index
== -1 ? 1 : 2, nunits
);
3772 if (!can_vec_perm_const_p (mode
, indices
))
3774 if (dump_enabled_p ())
3776 dump_printf_loc (MSG_MISSED_OPTIMIZATION
,
3778 "unsupported vect permute { ");
3779 for (i
= 0; i
< count
; ++i
)
3781 dump_dec (MSG_MISSED_OPTIMIZATION
, mask
[i
]);
3782 dump_printf (MSG_MISSED_OPTIMIZATION
, " ");
3784 dump_printf (MSG_MISSED_OPTIMIZATION
, "}\n");
3786 gcc_assert (analyze_only
);
3797 tree mask_vec
= NULL_TREE
;
3800 mask_vec
= vect_gen_perm_mask_checked (vectype
, indices
);
3802 if (second_vec_index
== -1)
3803 second_vec_index
= first_vec_index
;
3805 for (unsigned int ri
= 0; ri
< nvectors_per_build
; ++ri
)
3807 /* Generate the permute statement if necessary. */
3808 tree first_vec
= dr_chain
[first_vec_index
+ ri
];
3809 tree second_vec
= dr_chain
[second_vec_index
+ ri
];
3810 stmt_vec_info perm_stmt_info
;
3813 gassign
*stmt
= as_a
<gassign
*> (stmt_info
->stmt
);
3815 = vect_create_destination_var (gimple_assign_lhs (stmt
),
3817 perm_dest
= make_ssa_name (perm_dest
);
3819 = gimple_build_assign (perm_dest
, VEC_PERM_EXPR
,
3820 first_vec
, second_vec
,
3823 = vect_finish_stmt_generation (stmt_info
, perm_stmt
,
3827 /* If mask was NULL_TREE generate the requested
3828 identity transform. */
3829 perm_stmt_info
= vinfo
->lookup_def (first_vec
);
3831 /* Store the vector statement in NODE. */
3832 SLP_TREE_VEC_STMTS (node
)[vect_stmts_counter
++]
3838 first_vec_index
= -1;
3839 second_vec_index
= -1;
3847 /* Vectorize SLP instance tree in postorder. */
3850 vect_schedule_slp_instance (slp_tree node
, slp_instance instance
,
3851 scalar_stmts_to_slp_tree_map_t
*bst_map
)
3853 gimple_stmt_iterator si
;
3854 stmt_vec_info stmt_info
;
3855 unsigned int group_size
;
3860 if (SLP_TREE_DEF_TYPE (node
) != vect_internal_def
)
3863 /* See if we have already vectorized the node in the graph of the
3865 if (SLP_TREE_VEC_STMTS (node
).exists ())
3868 /* See if we have already vectorized the same set of stmts and reuse their
3869 vectorized stmts across instances. */
3870 if (slp_tree
*leader
= bst_map
->get (SLP_TREE_SCALAR_STMTS (node
)))
3872 SLP_TREE_VEC_STMTS (node
).safe_splice (SLP_TREE_VEC_STMTS (*leader
));
3876 bst_map
->put (SLP_TREE_SCALAR_STMTS (node
).copy (), node
);
3877 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
3878 vect_schedule_slp_instance (child
, instance
, bst_map
);
3880 /* Push SLP node def-type to stmts. */
3881 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
3882 if (SLP_TREE_DEF_TYPE (child
) != vect_internal_def
)
3884 stmt_vec_info child_stmt_info
;
3885 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child
), j
, child_stmt_info
)
3886 STMT_VINFO_DEF_TYPE (child_stmt_info
) = SLP_TREE_DEF_TYPE (child
);
3889 stmt_info
= SLP_TREE_SCALAR_STMTS (node
)[0];
3891 /* VECTYPE is the type of the destination. */
3892 vectype
= STMT_VINFO_VECTYPE (stmt_info
);
3893 poly_uint64 nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
3894 group_size
= SLP_INSTANCE_GROUP_SIZE (instance
);
3896 gcc_assert (SLP_TREE_NUMBER_OF_VEC_STMTS (node
) != 0);
3897 SLP_TREE_VEC_STMTS (node
).create (SLP_TREE_NUMBER_OF_VEC_STMTS (node
));
3899 if (dump_enabled_p ())
3900 dump_printf_loc (MSG_NOTE
, vect_location
,
3901 "------>vectorizing SLP node starting from: %G",
3904 /* Vectorized stmts go before the last scalar stmt which is where
3905 all uses are ready. */
3906 stmt_vec_info last_stmt_info
= vect_find_last_scalar_stmt_in_slp (node
);
3907 si
= gsi_for_stmt (last_stmt_info
->stmt
);
3909 /* Mark the first element of the reduction chain as reduction to properly
3910 transform the node. In the analysis phase only the last element of the
3911 chain is marked as reduction. */
3912 if (!STMT_VINFO_GROUPED_ACCESS (stmt_info
)
3913 && REDUC_GROUP_FIRST_ELEMENT (stmt_info
)
3914 && REDUC_GROUP_FIRST_ELEMENT (stmt_info
) == stmt_info
)
3916 STMT_VINFO_DEF_TYPE (stmt_info
) = vect_reduction_def
;
3917 STMT_VINFO_TYPE (stmt_info
) = reduc_vec_info_type
;
3920 /* Handle two-operation SLP nodes by vectorizing the group with
3921 both operations and then performing a merge. */
3922 if (SLP_TREE_TWO_OPERATORS (node
))
3924 gassign
*stmt
= as_a
<gassign
*> (stmt_info
->stmt
);
3925 enum tree_code code0
= gimple_assign_rhs_code (stmt
);
3926 enum tree_code ocode
= ERROR_MARK
;
3927 stmt_vec_info ostmt_info
;
3928 vec_perm_builder
mask (group_size
, group_size
, 1);
3929 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, ostmt_info
)
3931 gassign
*ostmt
= as_a
<gassign
*> (ostmt_info
->stmt
);
3932 if (gimple_assign_rhs_code (ostmt
) != code0
)
3934 mask
.quick_push (1);
3935 ocode
= gimple_assign_rhs_code (ostmt
);
3938 mask
.quick_push (0);
3940 if (ocode
!= ERROR_MARK
)
3942 vec
<stmt_vec_info
> v0
;
3943 vec
<stmt_vec_info
> v1
;
3945 tree tmask
= NULL_TREE
;
3946 vect_transform_stmt (stmt_info
, &si
, node
, instance
);
3947 v0
= SLP_TREE_VEC_STMTS (node
).copy ();
3948 SLP_TREE_VEC_STMTS (node
).truncate (0);
3949 gimple_assign_set_rhs_code (stmt
, ocode
);
3950 vect_transform_stmt (stmt_info
, &si
, node
, instance
);
3951 gimple_assign_set_rhs_code (stmt
, code0
);
3952 v1
= SLP_TREE_VEC_STMTS (node
).copy ();
3953 SLP_TREE_VEC_STMTS (node
).truncate (0);
3954 tree meltype
= build_nonstandard_integer_type
3955 (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (vectype
))), 1);
3956 tree mvectype
= get_same_sized_vectype (meltype
, vectype
);
3958 for (j
= 0; j
< v0
.length (); ++j
)
3960 /* Enforced by vect_build_slp_tree, which rejects variable-length
3961 vectors for SLP_TREE_TWO_OPERATORS. */
3962 unsigned int const_nunits
= nunits
.to_constant ();
3963 tree_vector_builder
melts (mvectype
, const_nunits
, 1);
3964 for (l
= 0; l
< const_nunits
; ++l
)
3966 if (k
>= group_size
)
3968 tree t
= build_int_cst (meltype
,
3969 mask
[k
++] * const_nunits
+ l
);
3970 melts
.quick_push (t
);
3972 tmask
= melts
.build ();
3974 /* ??? Not all targets support a VEC_PERM_EXPR with a
3975 constant mask that would translate to a vec_merge RTX
3976 (with their vec_perm_const_ok). We can either not
3977 vectorize in that case or let veclower do its job.
3978 Unfortunately that isn't too great and at least for
3979 plus/minus we'd eventually like to match targets
3980 vector addsub instructions. */
3982 vstmt
= gimple_build_assign (make_ssa_name (vectype
),
3984 gimple_assign_lhs (v0
[j
]->stmt
),
3985 gimple_assign_lhs (v1
[j
]->stmt
),
3987 SLP_TREE_VEC_STMTS (node
).quick_push
3988 (vect_finish_stmt_generation (stmt_info
, vstmt
, &si
));
3995 vect_transform_stmt (stmt_info
, &si
, node
, instance
);
3997 /* Restore stmt def-types. */
3998 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
3999 if (SLP_TREE_DEF_TYPE (child
) != vect_internal_def
)
4001 stmt_vec_info child_stmt_info
;
4002 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (child
), j
, child_stmt_info
)
4003 STMT_VINFO_DEF_TYPE (child_stmt_info
) = vect_internal_def
;
4007 /* Replace scalar calls from SLP node NODE with setting of their lhs to zero.
4008 For loop vectorization this is done in vectorizable_call, but for SLP
4009 it needs to be deferred until end of vect_schedule_slp, because multiple
4010 SLP instances may refer to the same scalar stmt. */
4013 vect_remove_slp_scalar_calls (slp_tree node
, hash_set
<slp_tree
> &visited
)
4016 gimple_stmt_iterator gsi
;
4020 stmt_vec_info stmt_info
;
4022 if (SLP_TREE_DEF_TYPE (node
) != vect_internal_def
)
4025 if (visited
.add (node
))
4028 FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node
), i
, child
)
4029 vect_remove_slp_scalar_calls (child
, visited
);
4031 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node
), i
, stmt_info
)
4033 gcall
*stmt
= dyn_cast
<gcall
*> (stmt_info
->stmt
);
4034 if (!stmt
|| gimple_bb (stmt
) == NULL
)
4036 if (is_pattern_stmt_p (stmt_info
)
4037 || !PURE_SLP_STMT (stmt_info
))
4039 lhs
= gimple_call_lhs (stmt
);
4040 new_stmt
= gimple_build_assign (lhs
, build_zero_cst (TREE_TYPE (lhs
)));
4041 gsi
= gsi_for_stmt (stmt
);
4042 stmt_info
->vinfo
->replace_stmt (&gsi
, stmt_info
, new_stmt
);
4043 SSA_NAME_DEF_STMT (gimple_assign_lhs (new_stmt
)) = new_stmt
;
4048 vect_remove_slp_scalar_calls (slp_tree node
)
4050 hash_set
<slp_tree
> visited
;
4051 vect_remove_slp_scalar_calls (node
, visited
);
4054 /* Generate vector code for all SLP instances in the loop/basic block. */
4057 vect_schedule_slp (vec_info
*vinfo
)
4059 vec
<slp_instance
> slp_instances
;
4060 slp_instance instance
;
4063 scalar_stmts_to_slp_tree_map_t
*bst_map
4064 = new scalar_stmts_to_slp_tree_map_t ();
4065 slp_instances
= vinfo
->slp_instances
;
4066 FOR_EACH_VEC_ELT (slp_instances
, i
, instance
)
4068 /* Schedule the tree of INSTANCE. */
4069 vect_schedule_slp_instance (SLP_INSTANCE_TREE (instance
),
4071 if (dump_enabled_p ())
4072 dump_printf_loc (MSG_NOTE
, vect_location
,
4073 "vectorizing stmts using SLP.\n");
4077 FOR_EACH_VEC_ELT (slp_instances
, i
, instance
)
4079 slp_tree root
= SLP_INSTANCE_TREE (instance
);
4080 stmt_vec_info store_info
;
4083 /* Remove scalar call stmts. Do not do this for basic-block
4084 vectorization as not all uses may be vectorized.
4085 ??? Why should this be necessary? DCE should be able to
4086 remove the stmts itself.
4087 ??? For BB vectorization we can as well remove scalar
4088 stmts starting from the SLP tree root if they have no
4090 if (is_a
<loop_vec_info
> (vinfo
))
4091 vect_remove_slp_scalar_calls (root
);
4093 for (j
= 0; SLP_TREE_SCALAR_STMTS (root
).iterate (j
, &store_info
)
4094 && j
< SLP_INSTANCE_GROUP_SIZE (instance
); j
++)
4096 if (!STMT_VINFO_DATA_REF (store_info
))
4099 store_info
= vect_orig_stmt (store_info
);
4100 /* Free the attached stmt_vec_info and remove the stmt. */
4101 vinfo
->remove_stmt (store_info
);