* i386.c (has_dispatch): Disable for Ryzen.
[official-gcc.git] / gcc / tree-vect-stmts.c
blobf986b753c83b3bfe1ff36be7a70e8c0017bbbc9c
1 /* Statement Analysis and Transformation for Vectorization
2 Copyright (C) 2003-2017 Free Software Foundation, Inc.
3 Contributed by Dorit Naishlos <dorit@il.ibm.com>
4 and Ira Rosen <irar@il.ibm.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "target.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "ssa.h"
31 #include "optabs-tree.h"
32 #include "insn-config.h"
33 #include "recog.h" /* FIXME: for insn_data */
34 #include "cgraph.h"
35 #include "dumpfile.h"
36 #include "alias.h"
37 #include "fold-const.h"
38 #include "stor-layout.h"
39 #include "tree-eh.h"
40 #include "gimplify.h"
41 #include "gimple-iterator.h"
42 #include "gimplify-me.h"
43 #include "tree-cfg.h"
44 #include "tree-ssa-loop-manip.h"
45 #include "cfgloop.h"
46 #include "tree-ssa-loop.h"
47 #include "tree-scalar-evolution.h"
48 #include "tree-vectorizer.h"
49 #include "builtins.h"
50 #include "internal-fn.h"
52 /* For lang_hooks.types.type_for_mode. */
53 #include "langhooks.h"
55 /* Says whether a statement is a load, a store of a vectorized statement
56 result, or a store of an invariant value. */
57 enum vec_load_store_type {
58 VLS_LOAD,
59 VLS_STORE,
60 VLS_STORE_INVARIANT
63 /* Return the vectorized type for the given statement. */
65 tree
66 stmt_vectype (struct _stmt_vec_info *stmt_info)
68 return STMT_VINFO_VECTYPE (stmt_info);
71 /* Return TRUE iff the given statement is in an inner loop relative to
72 the loop being vectorized. */
73 bool
74 stmt_in_inner_loop_p (struct _stmt_vec_info *stmt_info)
76 gimple *stmt = STMT_VINFO_STMT (stmt_info);
77 basic_block bb = gimple_bb (stmt);
78 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
79 struct loop* loop;
81 if (!loop_vinfo)
82 return false;
84 loop = LOOP_VINFO_LOOP (loop_vinfo);
86 return (bb->loop_father == loop->inner);
89 /* Record the cost of a statement, either by directly informing the
90 target model or by saving it in a vector for later processing.
91 Return a preliminary estimate of the statement's cost. */
93 unsigned
94 record_stmt_cost (stmt_vector_for_cost *body_cost_vec, int count,
95 enum vect_cost_for_stmt kind, stmt_vec_info stmt_info,
96 int misalign, enum vect_cost_model_location where)
98 if (body_cost_vec)
100 tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
101 stmt_info_for_cost si = { count, kind,
102 stmt_info ? STMT_VINFO_STMT (stmt_info) : NULL,
103 misalign };
104 body_cost_vec->safe_push (si);
105 return (unsigned)
106 (builtin_vectorization_cost (kind, vectype, misalign) * count);
108 else
109 return add_stmt_cost (stmt_info->vinfo->target_cost_data,
110 count, kind, stmt_info, misalign, where);
113 /* Return a variable of type ELEM_TYPE[NELEMS]. */
115 static tree
116 create_vector_array (tree elem_type, unsigned HOST_WIDE_INT nelems)
118 return create_tmp_var (build_array_type_nelts (elem_type, nelems),
119 "vect_array");
122 /* ARRAY is an array of vectors created by create_vector_array.
123 Return an SSA_NAME for the vector in index N. The reference
124 is part of the vectorization of STMT and the vector is associated
125 with scalar destination SCALAR_DEST. */
127 static tree
128 read_vector_array (gimple *stmt, gimple_stmt_iterator *gsi, tree scalar_dest,
129 tree array, unsigned HOST_WIDE_INT n)
131 tree vect_type, vect, vect_name, array_ref;
132 gimple *new_stmt;
134 gcc_assert (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE);
135 vect_type = TREE_TYPE (TREE_TYPE (array));
136 vect = vect_create_destination_var (scalar_dest, vect_type);
137 array_ref = build4 (ARRAY_REF, vect_type, array,
138 build_int_cst (size_type_node, n),
139 NULL_TREE, NULL_TREE);
141 new_stmt = gimple_build_assign (vect, array_ref);
142 vect_name = make_ssa_name (vect, new_stmt);
143 gimple_assign_set_lhs (new_stmt, vect_name);
144 vect_finish_stmt_generation (stmt, new_stmt, gsi);
146 return vect_name;
149 /* ARRAY is an array of vectors created by create_vector_array.
150 Emit code to store SSA_NAME VECT in index N of the array.
151 The store is part of the vectorization of STMT. */
153 static void
154 write_vector_array (gimple *stmt, gimple_stmt_iterator *gsi, tree vect,
155 tree array, unsigned HOST_WIDE_INT n)
157 tree array_ref;
158 gimple *new_stmt;
160 array_ref = build4 (ARRAY_REF, TREE_TYPE (vect), array,
161 build_int_cst (size_type_node, n),
162 NULL_TREE, NULL_TREE);
164 new_stmt = gimple_build_assign (array_ref, vect);
165 vect_finish_stmt_generation (stmt, new_stmt, gsi);
168 /* PTR is a pointer to an array of type TYPE. Return a representation
169 of *PTR. The memory reference replaces those in FIRST_DR
170 (and its group). */
172 static tree
173 create_array_ref (tree type, tree ptr, tree alias_ptr_type)
175 tree mem_ref;
177 mem_ref = build2 (MEM_REF, type, ptr, build_int_cst (alias_ptr_type, 0));
178 /* Arrays have the same alignment as their type. */
179 set_ptr_info_alignment (get_ptr_info (ptr), TYPE_ALIGN_UNIT (type), 0);
180 return mem_ref;
183 /* Utility functions used by vect_mark_stmts_to_be_vectorized. */
185 /* Function vect_mark_relevant.
187 Mark STMT as "relevant for vectorization" and add it to WORKLIST. */
189 static void
190 vect_mark_relevant (vec<gimple *> *worklist, gimple *stmt,
191 enum vect_relevant relevant, bool live_p)
193 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
194 enum vect_relevant save_relevant = STMT_VINFO_RELEVANT (stmt_info);
195 bool save_live_p = STMT_VINFO_LIVE_P (stmt_info);
196 gimple *pattern_stmt;
198 if (dump_enabled_p ())
200 dump_printf_loc (MSG_NOTE, vect_location,
201 "mark relevant %d, live %d: ", relevant, live_p);
202 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
205 /* If this stmt is an original stmt in a pattern, we might need to mark its
206 related pattern stmt instead of the original stmt. However, such stmts
207 may have their own uses that are not in any pattern, in such cases the
208 stmt itself should be marked. */
209 if (STMT_VINFO_IN_PATTERN_P (stmt_info))
211 /* This is the last stmt in a sequence that was detected as a
212 pattern that can potentially be vectorized. Don't mark the stmt
213 as relevant/live because it's not going to be vectorized.
214 Instead mark the pattern-stmt that replaces it. */
216 pattern_stmt = STMT_VINFO_RELATED_STMT (stmt_info);
218 if (dump_enabled_p ())
219 dump_printf_loc (MSG_NOTE, vect_location,
220 "last stmt in pattern. don't mark"
221 " relevant/live.\n");
222 stmt_info = vinfo_for_stmt (pattern_stmt);
223 gcc_assert (STMT_VINFO_RELATED_STMT (stmt_info) == stmt);
224 save_relevant = STMT_VINFO_RELEVANT (stmt_info);
225 save_live_p = STMT_VINFO_LIVE_P (stmt_info);
226 stmt = pattern_stmt;
229 STMT_VINFO_LIVE_P (stmt_info) |= live_p;
230 if (relevant > STMT_VINFO_RELEVANT (stmt_info))
231 STMT_VINFO_RELEVANT (stmt_info) = relevant;
233 if (STMT_VINFO_RELEVANT (stmt_info) == save_relevant
234 && STMT_VINFO_LIVE_P (stmt_info) == save_live_p)
236 if (dump_enabled_p ())
237 dump_printf_loc (MSG_NOTE, vect_location,
238 "already marked relevant/live.\n");
239 return;
242 worklist->safe_push (stmt);
246 /* Function is_simple_and_all_uses_invariant
248 Return true if STMT is simple and all uses of it are invariant. */
250 bool
251 is_simple_and_all_uses_invariant (gimple *stmt, loop_vec_info loop_vinfo)
253 tree op;
254 gimple *def_stmt;
255 ssa_op_iter iter;
257 if (!is_gimple_assign (stmt))
258 return false;
260 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
262 enum vect_def_type dt = vect_uninitialized_def;
264 if (!vect_is_simple_use (op, loop_vinfo, &def_stmt, &dt))
266 if (dump_enabled_p ())
267 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
268 "use not simple.\n");
269 return false;
272 if (dt != vect_external_def && dt != vect_constant_def)
273 return false;
275 return true;
278 /* Function vect_stmt_relevant_p.
280 Return true if STMT in loop that is represented by LOOP_VINFO is
281 "relevant for vectorization".
283 A stmt is considered "relevant for vectorization" if:
284 - it has uses outside the loop.
285 - it has vdefs (it alters memory).
286 - control stmts in the loop (except for the exit condition).
288 CHECKME: what other side effects would the vectorizer allow? */
290 static bool
291 vect_stmt_relevant_p (gimple *stmt, loop_vec_info loop_vinfo,
292 enum vect_relevant *relevant, bool *live_p)
294 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
295 ssa_op_iter op_iter;
296 imm_use_iterator imm_iter;
297 use_operand_p use_p;
298 def_operand_p def_p;
300 *relevant = vect_unused_in_scope;
301 *live_p = false;
303 /* cond stmt other than loop exit cond. */
304 if (is_ctrl_stmt (stmt)
305 && STMT_VINFO_TYPE (vinfo_for_stmt (stmt))
306 != loop_exit_ctrl_vec_info_type)
307 *relevant = vect_used_in_scope;
309 /* changing memory. */
310 if (gimple_code (stmt) != GIMPLE_PHI)
311 if (gimple_vdef (stmt)
312 && !gimple_clobber_p (stmt))
314 if (dump_enabled_p ())
315 dump_printf_loc (MSG_NOTE, vect_location,
316 "vec_stmt_relevant_p: stmt has vdefs.\n");
317 *relevant = vect_used_in_scope;
320 /* uses outside the loop. */
321 FOR_EACH_PHI_OR_STMT_DEF (def_p, stmt, op_iter, SSA_OP_DEF)
323 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, DEF_FROM_PTR (def_p))
325 basic_block bb = gimple_bb (USE_STMT (use_p));
326 if (!flow_bb_inside_loop_p (loop, bb))
328 if (dump_enabled_p ())
329 dump_printf_loc (MSG_NOTE, vect_location,
330 "vec_stmt_relevant_p: used out of loop.\n");
332 if (is_gimple_debug (USE_STMT (use_p)))
333 continue;
335 /* We expect all such uses to be in the loop exit phis
336 (because of loop closed form) */
337 gcc_assert (gimple_code (USE_STMT (use_p)) == GIMPLE_PHI);
338 gcc_assert (bb == single_exit (loop)->dest);
340 *live_p = true;
345 if (*live_p && *relevant == vect_unused_in_scope
346 && !is_simple_and_all_uses_invariant (stmt, loop_vinfo))
348 if (dump_enabled_p ())
349 dump_printf_loc (MSG_NOTE, vect_location,
350 "vec_stmt_relevant_p: stmt live but not relevant.\n");
351 *relevant = vect_used_only_live;
354 return (*live_p || *relevant);
358 /* Function exist_non_indexing_operands_for_use_p
360 USE is one of the uses attached to STMT. Check if USE is
361 used in STMT for anything other than indexing an array. */
363 static bool
364 exist_non_indexing_operands_for_use_p (tree use, gimple *stmt)
366 tree operand;
367 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
369 /* USE corresponds to some operand in STMT. If there is no data
370 reference in STMT, then any operand that corresponds to USE
371 is not indexing an array. */
372 if (!STMT_VINFO_DATA_REF (stmt_info))
373 return true;
375 /* STMT has a data_ref. FORNOW this means that its of one of
376 the following forms:
377 -1- ARRAY_REF = var
378 -2- var = ARRAY_REF
379 (This should have been verified in analyze_data_refs).
381 'var' in the second case corresponds to a def, not a use,
382 so USE cannot correspond to any operands that are not used
383 for array indexing.
385 Therefore, all we need to check is if STMT falls into the
386 first case, and whether var corresponds to USE. */
388 if (!gimple_assign_copy_p (stmt))
390 if (is_gimple_call (stmt)
391 && gimple_call_internal_p (stmt))
392 switch (gimple_call_internal_fn (stmt))
394 case IFN_MASK_STORE:
395 operand = gimple_call_arg (stmt, 3);
396 if (operand == use)
397 return true;
398 /* FALLTHRU */
399 case IFN_MASK_LOAD:
400 operand = gimple_call_arg (stmt, 2);
401 if (operand == use)
402 return true;
403 break;
404 default:
405 break;
407 return false;
410 if (TREE_CODE (gimple_assign_lhs (stmt)) == SSA_NAME)
411 return false;
412 operand = gimple_assign_rhs1 (stmt);
413 if (TREE_CODE (operand) != SSA_NAME)
414 return false;
416 if (operand == use)
417 return true;
419 return false;
424 Function process_use.
426 Inputs:
427 - a USE in STMT in a loop represented by LOOP_VINFO
428 - RELEVANT - enum value to be set in the STMT_VINFO of the stmt
429 that defined USE. This is done by calling mark_relevant and passing it
430 the WORKLIST (to add DEF_STMT to the WORKLIST in case it is relevant).
431 - FORCE is true if exist_non_indexing_operands_for_use_p check shouldn't
432 be performed.
434 Outputs:
435 Generally, LIVE_P and RELEVANT are used to define the liveness and
436 relevance info of the DEF_STMT of this USE:
437 STMT_VINFO_LIVE_P (DEF_STMT_info) <-- live_p
438 STMT_VINFO_RELEVANT (DEF_STMT_info) <-- relevant
439 Exceptions:
440 - case 1: If USE is used only for address computations (e.g. array indexing),
441 which does not need to be directly vectorized, then the liveness/relevance
442 of the respective DEF_STMT is left unchanged.
443 - case 2: If STMT is a reduction phi and DEF_STMT is a reduction stmt, we
444 skip DEF_STMT cause it had already been processed.
445 - case 3: If DEF_STMT and STMT are in different nests, then "relevant" will
446 be modified accordingly.
448 Return true if everything is as expected. Return false otherwise. */
450 static bool
451 process_use (gimple *stmt, tree use, loop_vec_info loop_vinfo,
452 enum vect_relevant relevant, vec<gimple *> *worklist,
453 bool force)
455 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
456 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
457 stmt_vec_info dstmt_vinfo;
458 basic_block bb, def_bb;
459 gimple *def_stmt;
460 enum vect_def_type dt;
462 /* case 1: we are only interested in uses that need to be vectorized. Uses
463 that are used for address computation are not considered relevant. */
464 if (!force && !exist_non_indexing_operands_for_use_p (use, stmt))
465 return true;
467 if (!vect_is_simple_use (use, loop_vinfo, &def_stmt, &dt))
469 if (dump_enabled_p ())
470 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
471 "not vectorized: unsupported use in stmt.\n");
472 return false;
475 if (!def_stmt || gimple_nop_p (def_stmt))
476 return true;
478 def_bb = gimple_bb (def_stmt);
479 if (!flow_bb_inside_loop_p (loop, def_bb))
481 if (dump_enabled_p ())
482 dump_printf_loc (MSG_NOTE, vect_location, "def_stmt is out of loop.\n");
483 return true;
486 /* case 2: A reduction phi (STMT) defined by a reduction stmt (DEF_STMT).
487 DEF_STMT must have already been processed, because this should be the
488 only way that STMT, which is a reduction-phi, was put in the worklist,
489 as there should be no other uses for DEF_STMT in the loop. So we just
490 check that everything is as expected, and we are done. */
491 dstmt_vinfo = vinfo_for_stmt (def_stmt);
492 bb = gimple_bb (stmt);
493 if (gimple_code (stmt) == GIMPLE_PHI
494 && STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_reduction_def
495 && gimple_code (def_stmt) != GIMPLE_PHI
496 && STMT_VINFO_DEF_TYPE (dstmt_vinfo) == vect_reduction_def
497 && bb->loop_father == def_bb->loop_father)
499 if (dump_enabled_p ())
500 dump_printf_loc (MSG_NOTE, vect_location,
501 "reduc-stmt defining reduc-phi in the same nest.\n");
502 if (STMT_VINFO_IN_PATTERN_P (dstmt_vinfo))
503 dstmt_vinfo = vinfo_for_stmt (STMT_VINFO_RELATED_STMT (dstmt_vinfo));
504 gcc_assert (STMT_VINFO_RELEVANT (dstmt_vinfo) < vect_used_by_reduction);
505 gcc_assert (STMT_VINFO_LIVE_P (dstmt_vinfo)
506 || STMT_VINFO_RELEVANT (dstmt_vinfo) > vect_unused_in_scope);
507 return true;
510 /* case 3a: outer-loop stmt defining an inner-loop stmt:
511 outer-loop-header-bb:
512 d = def_stmt
513 inner-loop:
514 stmt # use (d)
515 outer-loop-tail-bb:
516 ... */
517 if (flow_loop_nested_p (def_bb->loop_father, bb->loop_father))
519 if (dump_enabled_p ())
520 dump_printf_loc (MSG_NOTE, vect_location,
521 "outer-loop def-stmt defining inner-loop stmt.\n");
523 switch (relevant)
525 case vect_unused_in_scope:
526 relevant = (STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_nested_cycle) ?
527 vect_used_in_scope : vect_unused_in_scope;
528 break;
530 case vect_used_in_outer_by_reduction:
531 gcc_assert (STMT_VINFO_DEF_TYPE (stmt_vinfo) != vect_reduction_def);
532 relevant = vect_used_by_reduction;
533 break;
535 case vect_used_in_outer:
536 gcc_assert (STMT_VINFO_DEF_TYPE (stmt_vinfo) != vect_reduction_def);
537 relevant = vect_used_in_scope;
538 break;
540 case vect_used_in_scope:
541 break;
543 default:
544 gcc_unreachable ();
548 /* case 3b: inner-loop stmt defining an outer-loop stmt:
549 outer-loop-header-bb:
551 inner-loop:
552 d = def_stmt
553 outer-loop-tail-bb (or outer-loop-exit-bb in double reduction):
554 stmt # use (d) */
555 else if (flow_loop_nested_p (bb->loop_father, def_bb->loop_father))
557 if (dump_enabled_p ())
558 dump_printf_loc (MSG_NOTE, vect_location,
559 "inner-loop def-stmt defining outer-loop stmt.\n");
561 switch (relevant)
563 case vect_unused_in_scope:
564 relevant = (STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_reduction_def
565 || STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_double_reduction_def) ?
566 vect_used_in_outer_by_reduction : vect_unused_in_scope;
567 break;
569 case vect_used_by_reduction:
570 case vect_used_only_live:
571 relevant = vect_used_in_outer_by_reduction;
572 break;
574 case vect_used_in_scope:
575 relevant = vect_used_in_outer;
576 break;
578 default:
579 gcc_unreachable ();
582 /* We are also not interested in uses on loop PHI backedges that are
583 inductions. Otherwise we'll needlessly vectorize the IV increment
584 and cause hybrid SLP for SLP inductions. Unless the PHI is live
585 of course. */
586 else if (gimple_code (stmt) == GIMPLE_PHI
587 && STMT_VINFO_DEF_TYPE (stmt_vinfo) == vect_induction_def
588 && ! STMT_VINFO_LIVE_P (stmt_vinfo)
589 && (PHI_ARG_DEF_FROM_EDGE (stmt, loop_latch_edge (bb->loop_father))
590 == use))
592 if (dump_enabled_p ())
593 dump_printf_loc (MSG_NOTE, vect_location,
594 "induction value on backedge.\n");
595 return true;
599 vect_mark_relevant (worklist, def_stmt, relevant, false);
600 return true;
604 /* Function vect_mark_stmts_to_be_vectorized.
606 Not all stmts in the loop need to be vectorized. For example:
608 for i...
609 for j...
610 1. T0 = i + j
611 2. T1 = a[T0]
613 3. j = j + 1
615 Stmt 1 and 3 do not need to be vectorized, because loop control and
616 addressing of vectorized data-refs are handled differently.
618 This pass detects such stmts. */
620 bool
621 vect_mark_stmts_to_be_vectorized (loop_vec_info loop_vinfo)
623 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
624 basic_block *bbs = LOOP_VINFO_BBS (loop_vinfo);
625 unsigned int nbbs = loop->num_nodes;
626 gimple_stmt_iterator si;
627 gimple *stmt;
628 unsigned int i;
629 stmt_vec_info stmt_vinfo;
630 basic_block bb;
631 gimple *phi;
632 bool live_p;
633 enum vect_relevant relevant;
635 if (dump_enabled_p ())
636 dump_printf_loc (MSG_NOTE, vect_location,
637 "=== vect_mark_stmts_to_be_vectorized ===\n");
639 auto_vec<gimple *, 64> worklist;
641 /* 1. Init worklist. */
642 for (i = 0; i < nbbs; i++)
644 bb = bbs[i];
645 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
647 phi = gsi_stmt (si);
648 if (dump_enabled_p ())
650 dump_printf_loc (MSG_NOTE, vect_location, "init: phi relevant? ");
651 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, phi, 0);
654 if (vect_stmt_relevant_p (phi, loop_vinfo, &relevant, &live_p))
655 vect_mark_relevant (&worklist, phi, relevant, live_p);
657 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
659 stmt = gsi_stmt (si);
660 if (dump_enabled_p ())
662 dump_printf_loc (MSG_NOTE, vect_location, "init: stmt relevant? ");
663 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
666 if (vect_stmt_relevant_p (stmt, loop_vinfo, &relevant, &live_p))
667 vect_mark_relevant (&worklist, stmt, relevant, live_p);
671 /* 2. Process_worklist */
672 while (worklist.length () > 0)
674 use_operand_p use_p;
675 ssa_op_iter iter;
677 stmt = worklist.pop ();
678 if (dump_enabled_p ())
680 dump_printf_loc (MSG_NOTE, vect_location, "worklist: examine stmt: ");
681 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
684 /* Examine the USEs of STMT. For each USE, mark the stmt that defines it
685 (DEF_STMT) as relevant/irrelevant according to the relevance property
686 of STMT. */
687 stmt_vinfo = vinfo_for_stmt (stmt);
688 relevant = STMT_VINFO_RELEVANT (stmt_vinfo);
690 /* Generally, the relevance property of STMT (in STMT_VINFO_RELEVANT) is
691 propagated as is to the DEF_STMTs of its USEs.
693 One exception is when STMT has been identified as defining a reduction
694 variable; in this case we set the relevance to vect_used_by_reduction.
695 This is because we distinguish between two kinds of relevant stmts -
696 those that are used by a reduction computation, and those that are
697 (also) used by a regular computation. This allows us later on to
698 identify stmts that are used solely by a reduction, and therefore the
699 order of the results that they produce does not have to be kept. */
701 switch (STMT_VINFO_DEF_TYPE (stmt_vinfo))
703 case vect_reduction_def:
704 gcc_assert (relevant != vect_unused_in_scope);
705 if (relevant != vect_unused_in_scope
706 && relevant != vect_used_in_scope
707 && relevant != vect_used_by_reduction
708 && relevant != vect_used_only_live)
710 if (dump_enabled_p ())
711 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
712 "unsupported use of reduction.\n");
713 return false;
715 break;
717 case vect_nested_cycle:
718 if (relevant != vect_unused_in_scope
719 && relevant != vect_used_in_outer_by_reduction
720 && relevant != vect_used_in_outer)
722 if (dump_enabled_p ())
723 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
724 "unsupported use of nested cycle.\n");
726 return false;
728 break;
730 case vect_double_reduction_def:
731 if (relevant != vect_unused_in_scope
732 && relevant != vect_used_by_reduction
733 && relevant != vect_used_only_live)
735 if (dump_enabled_p ())
736 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
737 "unsupported use of double reduction.\n");
739 return false;
741 break;
743 default:
744 break;
747 if (is_pattern_stmt_p (stmt_vinfo))
749 /* Pattern statements are not inserted into the code, so
750 FOR_EACH_PHI_OR_STMT_USE optimizes their operands out, and we
751 have to scan the RHS or function arguments instead. */
752 if (is_gimple_assign (stmt))
754 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
755 tree op = gimple_assign_rhs1 (stmt);
757 i = 1;
758 if (rhs_code == COND_EXPR && COMPARISON_CLASS_P (op))
760 if (!process_use (stmt, TREE_OPERAND (op, 0), loop_vinfo,
761 relevant, &worklist, false)
762 || !process_use (stmt, TREE_OPERAND (op, 1), loop_vinfo,
763 relevant, &worklist, false))
764 return false;
765 i = 2;
767 for (; i < gimple_num_ops (stmt); i++)
769 op = gimple_op (stmt, i);
770 if (TREE_CODE (op) == SSA_NAME
771 && !process_use (stmt, op, loop_vinfo, relevant,
772 &worklist, false))
773 return false;
776 else if (is_gimple_call (stmt))
778 for (i = 0; i < gimple_call_num_args (stmt); i++)
780 tree arg = gimple_call_arg (stmt, i);
781 if (!process_use (stmt, arg, loop_vinfo, relevant,
782 &worklist, false))
783 return false;
787 else
788 FOR_EACH_PHI_OR_STMT_USE (use_p, stmt, iter, SSA_OP_USE)
790 tree op = USE_FROM_PTR (use_p);
791 if (!process_use (stmt, op, loop_vinfo, relevant,
792 &worklist, false))
793 return false;
796 if (STMT_VINFO_GATHER_SCATTER_P (stmt_vinfo))
798 gather_scatter_info gs_info;
799 if (!vect_check_gather_scatter (stmt, loop_vinfo, &gs_info))
800 gcc_unreachable ();
801 if (!process_use (stmt, gs_info.offset, loop_vinfo, relevant,
802 &worklist, true))
803 return false;
805 } /* while worklist */
807 return true;
811 /* Function vect_model_simple_cost.
813 Models cost for simple operations, i.e. those that only emit ncopies of a
814 single op. Right now, this does not account for multiple insns that could
815 be generated for the single vector op. We will handle that shortly. */
817 void
818 vect_model_simple_cost (stmt_vec_info stmt_info, int ncopies,
819 enum vect_def_type *dt,
820 int ndts,
821 stmt_vector_for_cost *prologue_cost_vec,
822 stmt_vector_for_cost *body_cost_vec)
824 int i;
825 int inside_cost = 0, prologue_cost = 0;
827 /* The SLP costs were already calculated during SLP tree build. */
828 if (PURE_SLP_STMT (stmt_info))
829 return;
831 /* Cost the "broadcast" of a scalar operand in to a vector operand.
832 Use scalar_to_vec to cost the broadcast, as elsewhere in the vector
833 cost model. */
834 for (i = 0; i < ndts; i++)
835 if (dt[i] == vect_constant_def || dt[i] == vect_external_def)
836 prologue_cost += record_stmt_cost (prologue_cost_vec, 1, scalar_to_vec,
837 stmt_info, 0, vect_prologue);
839 /* Pass the inside-of-loop statements to the target-specific cost model. */
840 inside_cost = record_stmt_cost (body_cost_vec, ncopies, vector_stmt,
841 stmt_info, 0, vect_body);
843 if (dump_enabled_p ())
844 dump_printf_loc (MSG_NOTE, vect_location,
845 "vect_model_simple_cost: inside_cost = %d, "
846 "prologue_cost = %d .\n", inside_cost, prologue_cost);
850 /* Model cost for type demotion and promotion operations. PWR is normally
851 zero for single-step promotions and demotions. It will be one if
852 two-step promotion/demotion is required, and so on. Each additional
853 step doubles the number of instructions required. */
855 static void
856 vect_model_promotion_demotion_cost (stmt_vec_info stmt_info,
857 enum vect_def_type *dt, int pwr)
859 int i, tmp;
860 int inside_cost = 0, prologue_cost = 0;
861 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
862 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
863 void *target_cost_data;
865 /* The SLP costs were already calculated during SLP tree build. */
866 if (PURE_SLP_STMT (stmt_info))
867 return;
869 if (loop_vinfo)
870 target_cost_data = LOOP_VINFO_TARGET_COST_DATA (loop_vinfo);
871 else
872 target_cost_data = BB_VINFO_TARGET_COST_DATA (bb_vinfo);
874 for (i = 0; i < pwr + 1; i++)
876 tmp = (STMT_VINFO_TYPE (stmt_info) == type_promotion_vec_info_type) ?
877 (i + 1) : i;
878 inside_cost += add_stmt_cost (target_cost_data, vect_pow2 (tmp),
879 vec_promote_demote, stmt_info, 0,
880 vect_body);
883 /* FORNOW: Assuming maximum 2 args per stmts. */
884 for (i = 0; i < 2; i++)
885 if (dt[i] == vect_constant_def || dt[i] == vect_external_def)
886 prologue_cost += add_stmt_cost (target_cost_data, 1, vector_stmt,
887 stmt_info, 0, vect_prologue);
889 if (dump_enabled_p ())
890 dump_printf_loc (MSG_NOTE, vect_location,
891 "vect_model_promotion_demotion_cost: inside_cost = %d, "
892 "prologue_cost = %d .\n", inside_cost, prologue_cost);
895 /* Function vect_model_store_cost
897 Models cost for stores. In the case of grouped accesses, one access
898 has the overhead of the grouped access attributed to it. */
900 void
901 vect_model_store_cost (stmt_vec_info stmt_info, int ncopies,
902 vect_memory_access_type memory_access_type,
903 enum vect_def_type dt, slp_tree slp_node,
904 stmt_vector_for_cost *prologue_cost_vec,
905 stmt_vector_for_cost *body_cost_vec)
907 unsigned int inside_cost = 0, prologue_cost = 0;
908 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info);
909 gimple *first_stmt = STMT_VINFO_STMT (stmt_info);
910 bool grouped_access_p = STMT_VINFO_GROUPED_ACCESS (stmt_info);
912 if (dt == vect_constant_def || dt == vect_external_def)
913 prologue_cost += record_stmt_cost (prologue_cost_vec, 1, scalar_to_vec,
914 stmt_info, 0, vect_prologue);
916 /* Grouped stores update all elements in the group at once,
917 so we want the DR for the first statement. */
918 if (!slp_node && grouped_access_p)
920 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
921 dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
924 /* True if we should include any once-per-group costs as well as
925 the cost of the statement itself. For SLP we only get called
926 once per group anyhow. */
927 bool first_stmt_p = (first_stmt == STMT_VINFO_STMT (stmt_info));
929 /* We assume that the cost of a single store-lanes instruction is
930 equivalent to the cost of GROUP_SIZE separate stores. If a grouped
931 access is instead being provided by a permute-and-store operation,
932 include the cost of the permutes. */
933 if (first_stmt_p
934 && memory_access_type == VMAT_CONTIGUOUS_PERMUTE)
936 /* Uses a high and low interleave or shuffle operations for each
937 needed permute. */
938 int group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
939 int nstmts = ncopies * ceil_log2 (group_size) * group_size;
940 inside_cost = record_stmt_cost (body_cost_vec, nstmts, vec_perm,
941 stmt_info, 0, vect_body);
943 if (dump_enabled_p ())
944 dump_printf_loc (MSG_NOTE, vect_location,
945 "vect_model_store_cost: strided group_size = %d .\n",
946 group_size);
949 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
950 /* Costs of the stores. */
951 if (memory_access_type == VMAT_ELEMENTWISE
952 || memory_access_type == VMAT_GATHER_SCATTER)
953 /* N scalar stores plus extracting the elements. */
954 inside_cost += record_stmt_cost (body_cost_vec,
955 ncopies * TYPE_VECTOR_SUBPARTS (vectype),
956 scalar_store, stmt_info, 0, vect_body);
957 else
958 vect_get_store_cost (dr, ncopies, &inside_cost, body_cost_vec);
960 if (memory_access_type == VMAT_ELEMENTWISE
961 || memory_access_type == VMAT_STRIDED_SLP)
962 inside_cost += record_stmt_cost (body_cost_vec,
963 ncopies * TYPE_VECTOR_SUBPARTS (vectype),
964 vec_to_scalar, stmt_info, 0, vect_body);
966 if (dump_enabled_p ())
967 dump_printf_loc (MSG_NOTE, vect_location,
968 "vect_model_store_cost: inside_cost = %d, "
969 "prologue_cost = %d .\n", inside_cost, prologue_cost);
973 /* Calculate cost of DR's memory access. */
974 void
975 vect_get_store_cost (struct data_reference *dr, int ncopies,
976 unsigned int *inside_cost,
977 stmt_vector_for_cost *body_cost_vec)
979 int alignment_support_scheme = vect_supportable_dr_alignment (dr, false);
980 gimple *stmt = DR_STMT (dr);
981 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
983 switch (alignment_support_scheme)
985 case dr_aligned:
987 *inside_cost += record_stmt_cost (body_cost_vec, ncopies,
988 vector_store, stmt_info, 0,
989 vect_body);
991 if (dump_enabled_p ())
992 dump_printf_loc (MSG_NOTE, vect_location,
993 "vect_model_store_cost: aligned.\n");
994 break;
997 case dr_unaligned_supported:
999 /* Here, we assign an additional cost for the unaligned store. */
1000 *inside_cost += record_stmt_cost (body_cost_vec, ncopies,
1001 unaligned_store, stmt_info,
1002 DR_MISALIGNMENT (dr), vect_body);
1003 if (dump_enabled_p ())
1004 dump_printf_loc (MSG_NOTE, vect_location,
1005 "vect_model_store_cost: unaligned supported by "
1006 "hardware.\n");
1007 break;
1010 case dr_unaligned_unsupported:
1012 *inside_cost = VECT_MAX_COST;
1014 if (dump_enabled_p ())
1015 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1016 "vect_model_store_cost: unsupported access.\n");
1017 break;
1020 default:
1021 gcc_unreachable ();
1026 /* Function vect_model_load_cost
1028 Models cost for loads. In the case of grouped accesses, one access has
1029 the overhead of the grouped access attributed to it. Since unaligned
1030 accesses are supported for loads, we also account for the costs of the
1031 access scheme chosen. */
1033 void
1034 vect_model_load_cost (stmt_vec_info stmt_info, int ncopies,
1035 vect_memory_access_type memory_access_type,
1036 slp_tree slp_node,
1037 stmt_vector_for_cost *prologue_cost_vec,
1038 stmt_vector_for_cost *body_cost_vec)
1040 gimple *first_stmt = STMT_VINFO_STMT (stmt_info);
1041 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info);
1042 unsigned int inside_cost = 0, prologue_cost = 0;
1043 bool grouped_access_p = STMT_VINFO_GROUPED_ACCESS (stmt_info);
1045 /* Grouped loads read all elements in the group at once,
1046 so we want the DR for the first statement. */
1047 if (!slp_node && grouped_access_p)
1049 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
1050 dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
1053 /* True if we should include any once-per-group costs as well as
1054 the cost of the statement itself. For SLP we only get called
1055 once per group anyhow. */
1056 bool first_stmt_p = (first_stmt == STMT_VINFO_STMT (stmt_info));
1058 /* We assume that the cost of a single load-lanes instruction is
1059 equivalent to the cost of GROUP_SIZE separate loads. If a grouped
1060 access is instead being provided by a load-and-permute operation,
1061 include the cost of the permutes. */
1062 if (first_stmt_p
1063 && memory_access_type == VMAT_CONTIGUOUS_PERMUTE)
1065 /* Uses an even and odd extract operations or shuffle operations
1066 for each needed permute. */
1067 int group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
1068 int nstmts = ncopies * ceil_log2 (group_size) * group_size;
1069 inside_cost = record_stmt_cost (body_cost_vec, nstmts, vec_perm,
1070 stmt_info, 0, vect_body);
1072 if (dump_enabled_p ())
1073 dump_printf_loc (MSG_NOTE, vect_location,
1074 "vect_model_load_cost: strided group_size = %d .\n",
1075 group_size);
1078 /* The loads themselves. */
1079 if (memory_access_type == VMAT_ELEMENTWISE
1080 || memory_access_type == VMAT_GATHER_SCATTER)
1082 /* N scalar loads plus gathering them into a vector. */
1083 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
1084 inside_cost += record_stmt_cost (body_cost_vec,
1085 ncopies * TYPE_VECTOR_SUBPARTS (vectype),
1086 scalar_load, stmt_info, 0, vect_body);
1088 else
1089 vect_get_load_cost (dr, ncopies, first_stmt_p,
1090 &inside_cost, &prologue_cost,
1091 prologue_cost_vec, body_cost_vec, true);
1092 if (memory_access_type == VMAT_ELEMENTWISE
1093 || memory_access_type == VMAT_STRIDED_SLP)
1094 inside_cost += record_stmt_cost (body_cost_vec, ncopies, vec_construct,
1095 stmt_info, 0, vect_body);
1097 if (dump_enabled_p ())
1098 dump_printf_loc (MSG_NOTE, vect_location,
1099 "vect_model_load_cost: inside_cost = %d, "
1100 "prologue_cost = %d .\n", inside_cost, prologue_cost);
1104 /* Calculate cost of DR's memory access. */
1105 void
1106 vect_get_load_cost (struct data_reference *dr, int ncopies,
1107 bool add_realign_cost, unsigned int *inside_cost,
1108 unsigned int *prologue_cost,
1109 stmt_vector_for_cost *prologue_cost_vec,
1110 stmt_vector_for_cost *body_cost_vec,
1111 bool record_prologue_costs)
1113 int alignment_support_scheme = vect_supportable_dr_alignment (dr, false);
1114 gimple *stmt = DR_STMT (dr);
1115 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1117 switch (alignment_support_scheme)
1119 case dr_aligned:
1121 *inside_cost += record_stmt_cost (body_cost_vec, ncopies, vector_load,
1122 stmt_info, 0, vect_body);
1124 if (dump_enabled_p ())
1125 dump_printf_loc (MSG_NOTE, vect_location,
1126 "vect_model_load_cost: aligned.\n");
1128 break;
1130 case dr_unaligned_supported:
1132 /* Here, we assign an additional cost for the unaligned load. */
1133 *inside_cost += record_stmt_cost (body_cost_vec, ncopies,
1134 unaligned_load, stmt_info,
1135 DR_MISALIGNMENT (dr), vect_body);
1137 if (dump_enabled_p ())
1138 dump_printf_loc (MSG_NOTE, vect_location,
1139 "vect_model_load_cost: unaligned supported by "
1140 "hardware.\n");
1142 break;
1144 case dr_explicit_realign:
1146 *inside_cost += record_stmt_cost (body_cost_vec, ncopies * 2,
1147 vector_load, stmt_info, 0, vect_body);
1148 *inside_cost += record_stmt_cost (body_cost_vec, ncopies,
1149 vec_perm, stmt_info, 0, vect_body);
1151 /* FIXME: If the misalignment remains fixed across the iterations of
1152 the containing loop, the following cost should be added to the
1153 prologue costs. */
1154 if (targetm.vectorize.builtin_mask_for_load)
1155 *inside_cost += record_stmt_cost (body_cost_vec, 1, vector_stmt,
1156 stmt_info, 0, vect_body);
1158 if (dump_enabled_p ())
1159 dump_printf_loc (MSG_NOTE, vect_location,
1160 "vect_model_load_cost: explicit realign\n");
1162 break;
1164 case dr_explicit_realign_optimized:
1166 if (dump_enabled_p ())
1167 dump_printf_loc (MSG_NOTE, vect_location,
1168 "vect_model_load_cost: unaligned software "
1169 "pipelined.\n");
1171 /* Unaligned software pipeline has a load of an address, an initial
1172 load, and possibly a mask operation to "prime" the loop. However,
1173 if this is an access in a group of loads, which provide grouped
1174 access, then the above cost should only be considered for one
1175 access in the group. Inside the loop, there is a load op
1176 and a realignment op. */
1178 if (add_realign_cost && record_prologue_costs)
1180 *prologue_cost += record_stmt_cost (prologue_cost_vec, 2,
1181 vector_stmt, stmt_info,
1182 0, vect_prologue);
1183 if (targetm.vectorize.builtin_mask_for_load)
1184 *prologue_cost += record_stmt_cost (prologue_cost_vec, 1,
1185 vector_stmt, stmt_info,
1186 0, vect_prologue);
1189 *inside_cost += record_stmt_cost (body_cost_vec, ncopies, vector_load,
1190 stmt_info, 0, vect_body);
1191 *inside_cost += record_stmt_cost (body_cost_vec, ncopies, vec_perm,
1192 stmt_info, 0, vect_body);
1194 if (dump_enabled_p ())
1195 dump_printf_loc (MSG_NOTE, vect_location,
1196 "vect_model_load_cost: explicit realign optimized"
1197 "\n");
1199 break;
1202 case dr_unaligned_unsupported:
1204 *inside_cost = VECT_MAX_COST;
1206 if (dump_enabled_p ())
1207 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1208 "vect_model_load_cost: unsupported access.\n");
1209 break;
1212 default:
1213 gcc_unreachable ();
1217 /* Insert the new stmt NEW_STMT at *GSI or at the appropriate place in
1218 the loop preheader for the vectorized stmt STMT. */
1220 static void
1221 vect_init_vector_1 (gimple *stmt, gimple *new_stmt, gimple_stmt_iterator *gsi)
1223 if (gsi)
1224 vect_finish_stmt_generation (stmt, new_stmt, gsi);
1225 else
1227 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
1228 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_vinfo);
1230 if (loop_vinfo)
1232 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
1233 basic_block new_bb;
1234 edge pe;
1236 if (nested_in_vect_loop_p (loop, stmt))
1237 loop = loop->inner;
1239 pe = loop_preheader_edge (loop);
1240 new_bb = gsi_insert_on_edge_immediate (pe, new_stmt);
1241 gcc_assert (!new_bb);
1243 else
1245 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_vinfo);
1246 basic_block bb;
1247 gimple_stmt_iterator gsi_bb_start;
1249 gcc_assert (bb_vinfo);
1250 bb = BB_VINFO_BB (bb_vinfo);
1251 gsi_bb_start = gsi_after_labels (bb);
1252 gsi_insert_before (&gsi_bb_start, new_stmt, GSI_SAME_STMT);
1256 if (dump_enabled_p ())
1258 dump_printf_loc (MSG_NOTE, vect_location,
1259 "created new init_stmt: ");
1260 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, new_stmt, 0);
1264 /* Function vect_init_vector.
1266 Insert a new stmt (INIT_STMT) that initializes a new variable of type
1267 TYPE with the value VAL. If TYPE is a vector type and VAL does not have
1268 vector type a vector with all elements equal to VAL is created first.
1269 Place the initialization at BSI if it is not NULL. Otherwise, place the
1270 initialization at the loop preheader.
1271 Return the DEF of INIT_STMT.
1272 It will be used in the vectorization of STMT. */
1274 tree
1275 vect_init_vector (gimple *stmt, tree val, tree type, gimple_stmt_iterator *gsi)
1277 gimple *init_stmt;
1278 tree new_temp;
1280 /* We abuse this function to push sth to a SSA name with initial 'val'. */
1281 if (! useless_type_conversion_p (type, TREE_TYPE (val)))
1283 gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
1284 if (! types_compatible_p (TREE_TYPE (type), TREE_TYPE (val)))
1286 /* Scalar boolean value should be transformed into
1287 all zeros or all ones value before building a vector. */
1288 if (VECTOR_BOOLEAN_TYPE_P (type))
1290 tree true_val = build_all_ones_cst (TREE_TYPE (type));
1291 tree false_val = build_zero_cst (TREE_TYPE (type));
1293 if (CONSTANT_CLASS_P (val))
1294 val = integer_zerop (val) ? false_val : true_val;
1295 else
1297 new_temp = make_ssa_name (TREE_TYPE (type));
1298 init_stmt = gimple_build_assign (new_temp, COND_EXPR,
1299 val, true_val, false_val);
1300 vect_init_vector_1 (stmt, init_stmt, gsi);
1301 val = new_temp;
1304 else if (CONSTANT_CLASS_P (val))
1305 val = fold_convert (TREE_TYPE (type), val);
1306 else
1308 new_temp = make_ssa_name (TREE_TYPE (type));
1309 if (! INTEGRAL_TYPE_P (TREE_TYPE (val)))
1310 init_stmt = gimple_build_assign (new_temp,
1311 fold_build1 (VIEW_CONVERT_EXPR,
1312 TREE_TYPE (type),
1313 val));
1314 else
1315 init_stmt = gimple_build_assign (new_temp, NOP_EXPR, val);
1316 vect_init_vector_1 (stmt, init_stmt, gsi);
1317 val = new_temp;
1320 val = build_vector_from_val (type, val);
1323 new_temp = vect_get_new_ssa_name (type, vect_simple_var, "cst_");
1324 init_stmt = gimple_build_assign (new_temp, val);
1325 vect_init_vector_1 (stmt, init_stmt, gsi);
1326 return new_temp;
1329 /* Function vect_get_vec_def_for_operand_1.
1331 For a defining stmt DEF_STMT of a scalar stmt, return a vector def with type
1332 DT that will be used in the vectorized stmt. */
1334 tree
1335 vect_get_vec_def_for_operand_1 (gimple *def_stmt, enum vect_def_type dt)
1337 tree vec_oprnd;
1338 gimple *vec_stmt;
1339 stmt_vec_info def_stmt_info = NULL;
1341 switch (dt)
1343 /* operand is a constant or a loop invariant. */
1344 case vect_constant_def:
1345 case vect_external_def:
1346 /* Code should use vect_get_vec_def_for_operand. */
1347 gcc_unreachable ();
1349 /* operand is defined inside the loop. */
1350 case vect_internal_def:
1352 /* Get the def from the vectorized stmt. */
1353 def_stmt_info = vinfo_for_stmt (def_stmt);
1355 vec_stmt = STMT_VINFO_VEC_STMT (def_stmt_info);
1356 /* Get vectorized pattern statement. */
1357 if (!vec_stmt
1358 && STMT_VINFO_IN_PATTERN_P (def_stmt_info)
1359 && !STMT_VINFO_RELEVANT (def_stmt_info))
1360 vec_stmt = STMT_VINFO_VEC_STMT (vinfo_for_stmt (
1361 STMT_VINFO_RELATED_STMT (def_stmt_info)));
1362 gcc_assert (vec_stmt);
1363 if (gimple_code (vec_stmt) == GIMPLE_PHI)
1364 vec_oprnd = PHI_RESULT (vec_stmt);
1365 else if (is_gimple_call (vec_stmt))
1366 vec_oprnd = gimple_call_lhs (vec_stmt);
1367 else
1368 vec_oprnd = gimple_assign_lhs (vec_stmt);
1369 return vec_oprnd;
1372 /* operand is defined by a loop header phi. */
1373 case vect_reduction_def:
1374 case vect_double_reduction_def:
1375 case vect_nested_cycle:
1376 case vect_induction_def:
1378 gcc_assert (gimple_code (def_stmt) == GIMPLE_PHI);
1380 /* Get the def from the vectorized stmt. */
1381 def_stmt_info = vinfo_for_stmt (def_stmt);
1382 vec_stmt = STMT_VINFO_VEC_STMT (def_stmt_info);
1383 if (gimple_code (vec_stmt) == GIMPLE_PHI)
1384 vec_oprnd = PHI_RESULT (vec_stmt);
1385 else
1386 vec_oprnd = gimple_get_lhs (vec_stmt);
1387 return vec_oprnd;
1390 default:
1391 gcc_unreachable ();
1396 /* Function vect_get_vec_def_for_operand.
1398 OP is an operand in STMT. This function returns a (vector) def that will be
1399 used in the vectorized stmt for STMT.
1401 In the case that OP is an SSA_NAME which is defined in the loop, then
1402 STMT_VINFO_VEC_STMT of the defining stmt holds the relevant def.
1404 In case OP is an invariant or constant, a new stmt that creates a vector def
1405 needs to be introduced. VECTYPE may be used to specify a required type for
1406 vector invariant. */
1408 tree
1409 vect_get_vec_def_for_operand (tree op, gimple *stmt, tree vectype)
1411 gimple *def_stmt;
1412 enum vect_def_type dt;
1413 bool is_simple_use;
1414 stmt_vec_info stmt_vinfo = vinfo_for_stmt (stmt);
1415 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_vinfo);
1417 if (dump_enabled_p ())
1419 dump_printf_loc (MSG_NOTE, vect_location,
1420 "vect_get_vec_def_for_operand: ");
1421 dump_generic_expr (MSG_NOTE, TDF_SLIM, op);
1422 dump_printf (MSG_NOTE, "\n");
1425 is_simple_use = vect_is_simple_use (op, loop_vinfo, &def_stmt, &dt);
1426 gcc_assert (is_simple_use);
1427 if (def_stmt && dump_enabled_p ())
1429 dump_printf_loc (MSG_NOTE, vect_location, " def_stmt = ");
1430 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, def_stmt, 0);
1433 if (dt == vect_constant_def || dt == vect_external_def)
1435 tree stmt_vectype = STMT_VINFO_VECTYPE (stmt_vinfo);
1436 tree vector_type;
1438 if (vectype)
1439 vector_type = vectype;
1440 else if (VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (op))
1441 && VECTOR_BOOLEAN_TYPE_P (stmt_vectype))
1442 vector_type = build_same_sized_truth_vector_type (stmt_vectype);
1443 else
1444 vector_type = get_vectype_for_scalar_type (TREE_TYPE (op));
1446 gcc_assert (vector_type);
1447 return vect_init_vector (stmt, op, vector_type, NULL);
1449 else
1450 return vect_get_vec_def_for_operand_1 (def_stmt, dt);
1454 /* Function vect_get_vec_def_for_stmt_copy
1456 Return a vector-def for an operand. This function is used when the
1457 vectorized stmt to be created (by the caller to this function) is a "copy"
1458 created in case the vectorized result cannot fit in one vector, and several
1459 copies of the vector-stmt are required. In this case the vector-def is
1460 retrieved from the vector stmt recorded in the STMT_VINFO_RELATED_STMT field
1461 of the stmt that defines VEC_OPRND.
1462 DT is the type of the vector def VEC_OPRND.
1464 Context:
1465 In case the vectorization factor (VF) is bigger than the number
1466 of elements that can fit in a vectype (nunits), we have to generate
1467 more than one vector stmt to vectorize the scalar stmt. This situation
1468 arises when there are multiple data-types operated upon in the loop; the
1469 smallest data-type determines the VF, and as a result, when vectorizing
1470 stmts operating on wider types we need to create 'VF/nunits' "copies" of the
1471 vector stmt (each computing a vector of 'nunits' results, and together
1472 computing 'VF' results in each iteration). This function is called when
1473 vectorizing such a stmt (e.g. vectorizing S2 in the illustration below, in
1474 which VF=16 and nunits=4, so the number of copies required is 4):
1476 scalar stmt: vectorized into: STMT_VINFO_RELATED_STMT
1478 S1: x = load VS1.0: vx.0 = memref0 VS1.1
1479 VS1.1: vx.1 = memref1 VS1.2
1480 VS1.2: vx.2 = memref2 VS1.3
1481 VS1.3: vx.3 = memref3
1483 S2: z = x + ... VSnew.0: vz0 = vx.0 + ... VSnew.1
1484 VSnew.1: vz1 = vx.1 + ... VSnew.2
1485 VSnew.2: vz2 = vx.2 + ... VSnew.3
1486 VSnew.3: vz3 = vx.3 + ...
1488 The vectorization of S1 is explained in vectorizable_load.
1489 The vectorization of S2:
1490 To create the first vector-stmt out of the 4 copies - VSnew.0 -
1491 the function 'vect_get_vec_def_for_operand' is called to
1492 get the relevant vector-def for each operand of S2. For operand x it
1493 returns the vector-def 'vx.0'.
1495 To create the remaining copies of the vector-stmt (VSnew.j), this
1496 function is called to get the relevant vector-def for each operand. It is
1497 obtained from the respective VS1.j stmt, which is recorded in the
1498 STMT_VINFO_RELATED_STMT field of the stmt that defines VEC_OPRND.
1500 For example, to obtain the vector-def 'vx.1' in order to create the
1501 vector stmt 'VSnew.1', this function is called with VEC_OPRND='vx.0'.
1502 Given 'vx0' we obtain the stmt that defines it ('VS1.0'); from the
1503 STMT_VINFO_RELATED_STMT field of 'VS1.0' we obtain the next copy - 'VS1.1',
1504 and return its def ('vx.1').
1505 Overall, to create the above sequence this function will be called 3 times:
1506 vx.1 = vect_get_vec_def_for_stmt_copy (dt, vx.0);
1507 vx.2 = vect_get_vec_def_for_stmt_copy (dt, vx.1);
1508 vx.3 = vect_get_vec_def_for_stmt_copy (dt, vx.2); */
1510 tree
1511 vect_get_vec_def_for_stmt_copy (enum vect_def_type dt, tree vec_oprnd)
1513 gimple *vec_stmt_for_operand;
1514 stmt_vec_info def_stmt_info;
1516 /* Do nothing; can reuse same def. */
1517 if (dt == vect_external_def || dt == vect_constant_def )
1518 return vec_oprnd;
1520 vec_stmt_for_operand = SSA_NAME_DEF_STMT (vec_oprnd);
1521 def_stmt_info = vinfo_for_stmt (vec_stmt_for_operand);
1522 gcc_assert (def_stmt_info);
1523 vec_stmt_for_operand = STMT_VINFO_RELATED_STMT (def_stmt_info);
1524 gcc_assert (vec_stmt_for_operand);
1525 if (gimple_code (vec_stmt_for_operand) == GIMPLE_PHI)
1526 vec_oprnd = PHI_RESULT (vec_stmt_for_operand);
1527 else
1528 vec_oprnd = gimple_get_lhs (vec_stmt_for_operand);
1529 return vec_oprnd;
1533 /* Get vectorized definitions for the operands to create a copy of an original
1534 stmt. See vect_get_vec_def_for_stmt_copy () for details. */
1536 void
1537 vect_get_vec_defs_for_stmt_copy (enum vect_def_type *dt,
1538 vec<tree> *vec_oprnds0,
1539 vec<tree> *vec_oprnds1)
1541 tree vec_oprnd = vec_oprnds0->pop ();
1543 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt[0], vec_oprnd);
1544 vec_oprnds0->quick_push (vec_oprnd);
1546 if (vec_oprnds1 && vec_oprnds1->length ())
1548 vec_oprnd = vec_oprnds1->pop ();
1549 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt[1], vec_oprnd);
1550 vec_oprnds1->quick_push (vec_oprnd);
1555 /* Get vectorized definitions for OP0 and OP1. */
1557 void
1558 vect_get_vec_defs (tree op0, tree op1, gimple *stmt,
1559 vec<tree> *vec_oprnds0,
1560 vec<tree> *vec_oprnds1,
1561 slp_tree slp_node)
1563 if (slp_node)
1565 int nops = (op1 == NULL_TREE) ? 1 : 2;
1566 auto_vec<tree> ops (nops);
1567 auto_vec<vec<tree> > vec_defs (nops);
1569 ops.quick_push (op0);
1570 if (op1)
1571 ops.quick_push (op1);
1573 vect_get_slp_defs (ops, slp_node, &vec_defs);
1575 *vec_oprnds0 = vec_defs[0];
1576 if (op1)
1577 *vec_oprnds1 = vec_defs[1];
1579 else
1581 tree vec_oprnd;
1583 vec_oprnds0->create (1);
1584 vec_oprnd = vect_get_vec_def_for_operand (op0, stmt);
1585 vec_oprnds0->quick_push (vec_oprnd);
1587 if (op1)
1589 vec_oprnds1->create (1);
1590 vec_oprnd = vect_get_vec_def_for_operand (op1, stmt);
1591 vec_oprnds1->quick_push (vec_oprnd);
1597 /* Function vect_finish_stmt_generation.
1599 Insert a new stmt. */
1601 void
1602 vect_finish_stmt_generation (gimple *stmt, gimple *vec_stmt,
1603 gimple_stmt_iterator *gsi)
1605 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1606 vec_info *vinfo = stmt_info->vinfo;
1608 gcc_assert (gimple_code (stmt) != GIMPLE_LABEL);
1610 if (!gsi_end_p (*gsi)
1611 && gimple_has_mem_ops (vec_stmt))
1613 gimple *at_stmt = gsi_stmt (*gsi);
1614 tree vuse = gimple_vuse (at_stmt);
1615 if (vuse && TREE_CODE (vuse) == SSA_NAME)
1617 tree vdef = gimple_vdef (at_stmt);
1618 gimple_set_vuse (vec_stmt, gimple_vuse (at_stmt));
1619 /* If we have an SSA vuse and insert a store, update virtual
1620 SSA form to avoid triggering the renamer. Do so only
1621 if we can easily see all uses - which is what almost always
1622 happens with the way vectorized stmts are inserted. */
1623 if ((vdef && TREE_CODE (vdef) == SSA_NAME)
1624 && ((is_gimple_assign (vec_stmt)
1625 && !is_gimple_reg (gimple_assign_lhs (vec_stmt)))
1626 || (is_gimple_call (vec_stmt)
1627 && !(gimple_call_flags (vec_stmt)
1628 & (ECF_CONST|ECF_PURE|ECF_NOVOPS)))))
1630 tree new_vdef = copy_ssa_name (vuse, vec_stmt);
1631 gimple_set_vdef (vec_stmt, new_vdef);
1632 SET_USE (gimple_vuse_op (at_stmt), new_vdef);
1636 gsi_insert_before (gsi, vec_stmt, GSI_SAME_STMT);
1638 set_vinfo_for_stmt (vec_stmt, new_stmt_vec_info (vec_stmt, vinfo));
1640 if (dump_enabled_p ())
1642 dump_printf_loc (MSG_NOTE, vect_location, "add new stmt: ");
1643 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, vec_stmt, 0);
1646 gimple_set_location (vec_stmt, gimple_location (stmt));
1648 /* While EH edges will generally prevent vectorization, stmt might
1649 e.g. be in a must-not-throw region. Ensure newly created stmts
1650 that could throw are part of the same region. */
1651 int lp_nr = lookup_stmt_eh_lp (stmt);
1652 if (lp_nr != 0 && stmt_could_throw_p (vec_stmt))
1653 add_stmt_to_eh_lp (vec_stmt, lp_nr);
1656 /* We want to vectorize a call to combined function CFN with function
1657 decl FNDECL, using VECTYPE_OUT as the type of the output and VECTYPE_IN
1658 as the types of all inputs. Check whether this is possible using
1659 an internal function, returning its code if so or IFN_LAST if not. */
1661 static internal_fn
1662 vectorizable_internal_function (combined_fn cfn, tree fndecl,
1663 tree vectype_out, tree vectype_in)
1665 internal_fn ifn;
1666 if (internal_fn_p (cfn))
1667 ifn = as_internal_fn (cfn);
1668 else
1669 ifn = associated_internal_fn (fndecl);
1670 if (ifn != IFN_LAST && direct_internal_fn_p (ifn))
1672 const direct_internal_fn_info &info = direct_internal_fn (ifn);
1673 if (info.vectorizable)
1675 tree type0 = (info.type0 < 0 ? vectype_out : vectype_in);
1676 tree type1 = (info.type1 < 0 ? vectype_out : vectype_in);
1677 if (direct_internal_fn_supported_p (ifn, tree_pair (type0, type1),
1678 OPTIMIZE_FOR_SPEED))
1679 return ifn;
1682 return IFN_LAST;
1686 static tree permute_vec_elements (tree, tree, tree, gimple *,
1687 gimple_stmt_iterator *);
1689 /* STMT is a non-strided load or store, meaning that it accesses
1690 elements with a known constant step. Return -1 if that step
1691 is negative, 0 if it is zero, and 1 if it is greater than zero. */
1693 static int
1694 compare_step_with_zero (gimple *stmt)
1696 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1697 data_reference *dr = STMT_VINFO_DATA_REF (stmt_info);
1698 return tree_int_cst_compare (vect_dr_behavior (dr)->step,
1699 size_zero_node);
1702 /* If the target supports a permute mask that reverses the elements in
1703 a vector of type VECTYPE, return that mask, otherwise return null. */
1705 static tree
1706 perm_mask_for_reverse (tree vectype)
1708 int i, nunits;
1710 nunits = TYPE_VECTOR_SUBPARTS (vectype);
1712 auto_vec_perm_indices sel (nunits);
1713 for (i = 0; i < nunits; ++i)
1714 sel.quick_push (nunits - 1 - i);
1716 if (!can_vec_perm_p (TYPE_MODE (vectype), false, &sel))
1717 return NULL_TREE;
1718 return vect_gen_perm_mask_checked (vectype, sel);
1721 /* A subroutine of get_load_store_type, with a subset of the same
1722 arguments. Handle the case where STMT is part of a grouped load
1723 or store.
1725 For stores, the statements in the group are all consecutive
1726 and there is no gap at the end. For loads, the statements in the
1727 group might not be consecutive; there can be gaps between statements
1728 as well as at the end. */
1730 static bool
1731 get_group_load_store_type (gimple *stmt, tree vectype, bool slp,
1732 vec_load_store_type vls_type,
1733 vect_memory_access_type *memory_access_type)
1735 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1736 vec_info *vinfo = stmt_info->vinfo;
1737 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
1738 struct loop *loop = loop_vinfo ? LOOP_VINFO_LOOP (loop_vinfo) : NULL;
1739 gimple *first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
1740 data_reference *first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
1741 unsigned int group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
1742 bool single_element_p = (stmt == first_stmt
1743 && !GROUP_NEXT_ELEMENT (stmt_info));
1744 unsigned HOST_WIDE_INT gap = GROUP_GAP (vinfo_for_stmt (first_stmt));
1745 unsigned nunits = TYPE_VECTOR_SUBPARTS (vectype);
1747 /* True if the vectorized statements would access beyond the last
1748 statement in the group. */
1749 bool overrun_p = false;
1751 /* True if we can cope with such overrun by peeling for gaps, so that
1752 there is at least one final scalar iteration after the vector loop. */
1753 bool can_overrun_p = (vls_type == VLS_LOAD && loop_vinfo && !loop->inner);
1755 /* There can only be a gap at the end of the group if the stride is
1756 known at compile time. */
1757 gcc_assert (!STMT_VINFO_STRIDED_P (stmt_info) || gap == 0);
1759 /* Stores can't yet have gaps. */
1760 gcc_assert (slp || vls_type == VLS_LOAD || gap == 0);
1762 if (slp)
1764 if (STMT_VINFO_STRIDED_P (stmt_info))
1766 /* Try to use consecutive accesses of GROUP_SIZE elements,
1767 separated by the stride, until we have a complete vector.
1768 Fall back to scalar accesses if that isn't possible. */
1769 if (nunits % group_size == 0)
1770 *memory_access_type = VMAT_STRIDED_SLP;
1771 else
1772 *memory_access_type = VMAT_ELEMENTWISE;
1774 else
1776 overrun_p = loop_vinfo && gap != 0;
1777 if (overrun_p && vls_type != VLS_LOAD)
1779 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1780 "Grouped store with gaps requires"
1781 " non-consecutive accesses\n");
1782 return false;
1784 /* An overrun is fine if the trailing elements are smaller
1785 than the alignment boundary B. Every vector access will
1786 be a multiple of B and so we are guaranteed to access a
1787 non-gap element in the same B-sized block. */
1788 if (overrun_p
1789 && gap < (vect_known_alignment_in_bytes (first_dr)
1790 / vect_get_scalar_dr_size (first_dr)))
1791 overrun_p = false;
1792 if (overrun_p && !can_overrun_p)
1794 if (dump_enabled_p ())
1795 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1796 "Peeling for outer loop is not supported\n");
1797 return false;
1799 *memory_access_type = VMAT_CONTIGUOUS;
1802 else
1804 /* We can always handle this case using elementwise accesses,
1805 but see if something more efficient is available. */
1806 *memory_access_type = VMAT_ELEMENTWISE;
1808 /* If there is a gap at the end of the group then these optimizations
1809 would access excess elements in the last iteration. */
1810 bool would_overrun_p = (gap != 0);
1811 /* An overrun is fine if the trailing elements are smaller than the
1812 alignment boundary B. Every vector access will be a multiple of B
1813 and so we are guaranteed to access a non-gap element in the
1814 same B-sized block. */
1815 if (would_overrun_p
1816 && gap < (vect_known_alignment_in_bytes (first_dr)
1817 / vect_get_scalar_dr_size (first_dr)))
1818 would_overrun_p = false;
1820 if (!STMT_VINFO_STRIDED_P (stmt_info)
1821 && (can_overrun_p || !would_overrun_p)
1822 && compare_step_with_zero (stmt) > 0)
1824 /* First try using LOAD/STORE_LANES. */
1825 if (vls_type == VLS_LOAD
1826 ? vect_load_lanes_supported (vectype, group_size)
1827 : vect_store_lanes_supported (vectype, group_size))
1829 *memory_access_type = VMAT_LOAD_STORE_LANES;
1830 overrun_p = would_overrun_p;
1833 /* If that fails, try using permuting loads. */
1834 if (*memory_access_type == VMAT_ELEMENTWISE
1835 && (vls_type == VLS_LOAD
1836 ? vect_grouped_load_supported (vectype, single_element_p,
1837 group_size)
1838 : vect_grouped_store_supported (vectype, group_size)))
1840 *memory_access_type = VMAT_CONTIGUOUS_PERMUTE;
1841 overrun_p = would_overrun_p;
1846 if (vls_type != VLS_LOAD && first_stmt == stmt)
1848 /* STMT is the leader of the group. Check the operands of all the
1849 stmts of the group. */
1850 gimple *next_stmt = GROUP_NEXT_ELEMENT (stmt_info);
1851 while (next_stmt)
1853 gcc_assert (gimple_assign_single_p (next_stmt));
1854 tree op = gimple_assign_rhs1 (next_stmt);
1855 gimple *def_stmt;
1856 enum vect_def_type dt;
1857 if (!vect_is_simple_use (op, vinfo, &def_stmt, &dt))
1859 if (dump_enabled_p ())
1860 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1861 "use not simple.\n");
1862 return false;
1864 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
1868 if (overrun_p)
1870 gcc_assert (can_overrun_p);
1871 if (dump_enabled_p ())
1872 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1873 "Data access with gaps requires scalar "
1874 "epilogue loop\n");
1875 LOOP_VINFO_PEELING_FOR_GAPS (loop_vinfo) = true;
1878 return true;
1881 /* A subroutine of get_load_store_type, with a subset of the same
1882 arguments. Handle the case where STMT is a load or store that
1883 accesses consecutive elements with a negative step. */
1885 static vect_memory_access_type
1886 get_negative_load_store_type (gimple *stmt, tree vectype,
1887 vec_load_store_type vls_type,
1888 unsigned int ncopies)
1890 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1891 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info);
1892 dr_alignment_support alignment_support_scheme;
1894 if (ncopies > 1)
1896 if (dump_enabled_p ())
1897 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1898 "multiple types with negative step.\n");
1899 return VMAT_ELEMENTWISE;
1902 alignment_support_scheme = vect_supportable_dr_alignment (dr, false);
1903 if (alignment_support_scheme != dr_aligned
1904 && alignment_support_scheme != dr_unaligned_supported)
1906 if (dump_enabled_p ())
1907 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1908 "negative step but alignment required.\n");
1909 return VMAT_ELEMENTWISE;
1912 if (vls_type == VLS_STORE_INVARIANT)
1914 if (dump_enabled_p ())
1915 dump_printf_loc (MSG_NOTE, vect_location,
1916 "negative step with invariant source;"
1917 " no permute needed.\n");
1918 return VMAT_CONTIGUOUS_DOWN;
1921 if (!perm_mask_for_reverse (vectype))
1923 if (dump_enabled_p ())
1924 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1925 "negative step and reversing not supported.\n");
1926 return VMAT_ELEMENTWISE;
1929 return VMAT_CONTIGUOUS_REVERSE;
1932 /* Analyze load or store statement STMT of type VLS_TYPE. Return true
1933 if there is a memory access type that the vectorized form can use,
1934 storing it in *MEMORY_ACCESS_TYPE if so. If we decide to use gathers
1935 or scatters, fill in GS_INFO accordingly.
1937 SLP says whether we're performing SLP rather than loop vectorization.
1938 VECTYPE is the vector type that the vectorized statements will use.
1939 NCOPIES is the number of vector statements that will be needed. */
1941 static bool
1942 get_load_store_type (gimple *stmt, tree vectype, bool slp,
1943 vec_load_store_type vls_type, unsigned int ncopies,
1944 vect_memory_access_type *memory_access_type,
1945 gather_scatter_info *gs_info)
1947 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
1948 vec_info *vinfo = stmt_info->vinfo;
1949 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
1950 if (STMT_VINFO_GATHER_SCATTER_P (stmt_info))
1952 *memory_access_type = VMAT_GATHER_SCATTER;
1953 gimple *def_stmt;
1954 if (!vect_check_gather_scatter (stmt, loop_vinfo, gs_info))
1955 gcc_unreachable ();
1956 else if (!vect_is_simple_use (gs_info->offset, vinfo, &def_stmt,
1957 &gs_info->offset_dt,
1958 &gs_info->offset_vectype))
1960 if (dump_enabled_p ())
1961 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
1962 "%s index use not simple.\n",
1963 vls_type == VLS_LOAD ? "gather" : "scatter");
1964 return false;
1967 else if (STMT_VINFO_GROUPED_ACCESS (stmt_info))
1969 if (!get_group_load_store_type (stmt, vectype, slp, vls_type,
1970 memory_access_type))
1971 return false;
1973 else if (STMT_VINFO_STRIDED_P (stmt_info))
1975 gcc_assert (!slp);
1976 *memory_access_type = VMAT_ELEMENTWISE;
1978 else
1980 int cmp = compare_step_with_zero (stmt);
1981 if (cmp < 0)
1982 *memory_access_type = get_negative_load_store_type
1983 (stmt, vectype, vls_type, ncopies);
1984 else if (cmp == 0)
1986 gcc_assert (vls_type == VLS_LOAD);
1987 *memory_access_type = VMAT_INVARIANT;
1989 else
1990 *memory_access_type = VMAT_CONTIGUOUS;
1993 /* FIXME: At the moment the cost model seems to underestimate the
1994 cost of using elementwise accesses. This check preserves the
1995 traditional behavior until that can be fixed. */
1996 if (*memory_access_type == VMAT_ELEMENTWISE
1997 && !STMT_VINFO_STRIDED_P (stmt_info))
1999 if (dump_enabled_p ())
2000 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2001 "not falling back to elementwise accesses\n");
2002 return false;
2004 return true;
2007 /* Function vectorizable_mask_load_store.
2009 Check if STMT performs a conditional load or store that can be vectorized.
2010 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
2011 stmt to replace it, put it in VEC_STMT, and insert it at GSI.
2012 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
2014 static bool
2015 vectorizable_mask_load_store (gimple *stmt, gimple_stmt_iterator *gsi,
2016 gimple **vec_stmt, slp_tree slp_node)
2018 tree vec_dest = NULL;
2019 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
2020 stmt_vec_info prev_stmt_info;
2021 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
2022 struct loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
2023 bool nested_in_vect_loop = nested_in_vect_loop_p (loop, stmt);
2024 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info);
2025 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
2026 tree rhs_vectype = NULL_TREE;
2027 tree mask_vectype;
2028 tree elem_type;
2029 gimple *new_stmt;
2030 tree dummy;
2031 tree dataref_ptr = NULL_TREE;
2032 gimple *ptr_incr;
2033 int nunits = TYPE_VECTOR_SUBPARTS (vectype);
2034 int ncopies;
2035 int i, j;
2036 bool inv_p;
2037 gather_scatter_info gs_info;
2038 vec_load_store_type vls_type;
2039 tree mask;
2040 gimple *def_stmt;
2041 enum vect_def_type dt;
2043 if (slp_node != NULL)
2044 return false;
2046 ncopies = vect_get_num_copies (loop_vinfo, vectype);
2047 gcc_assert (ncopies >= 1);
2049 mask = gimple_call_arg (stmt, 2);
2051 if (!VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (mask)))
2052 return false;
2054 /* FORNOW. This restriction should be relaxed. */
2055 if (nested_in_vect_loop && ncopies > 1)
2057 if (dump_enabled_p ())
2058 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2059 "multiple types in nested loop.");
2060 return false;
2063 if (!STMT_VINFO_RELEVANT_P (stmt_info))
2064 return false;
2066 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
2067 && ! vec_stmt)
2068 return false;
2070 if (!STMT_VINFO_DATA_REF (stmt_info))
2071 return false;
2073 elem_type = TREE_TYPE (vectype);
2075 if (TREE_CODE (mask) != SSA_NAME)
2076 return false;
2078 if (!vect_is_simple_use (mask, loop_vinfo, &def_stmt, &dt, &mask_vectype))
2079 return false;
2081 if (!mask_vectype)
2082 mask_vectype = get_mask_type_for_scalar_type (TREE_TYPE (vectype));
2084 if (!mask_vectype || !VECTOR_BOOLEAN_TYPE_P (mask_vectype)
2085 || TYPE_VECTOR_SUBPARTS (mask_vectype) != TYPE_VECTOR_SUBPARTS (vectype))
2086 return false;
2088 if (gimple_call_internal_fn (stmt) == IFN_MASK_STORE)
2090 tree rhs = gimple_call_arg (stmt, 3);
2091 if (!vect_is_simple_use (rhs, loop_vinfo, &def_stmt, &dt, &rhs_vectype))
2092 return false;
2093 if (dt == vect_constant_def || dt == vect_external_def)
2094 vls_type = VLS_STORE_INVARIANT;
2095 else
2096 vls_type = VLS_STORE;
2098 else
2099 vls_type = VLS_LOAD;
2101 vect_memory_access_type memory_access_type;
2102 if (!get_load_store_type (stmt, vectype, false, vls_type, ncopies,
2103 &memory_access_type, &gs_info))
2104 return false;
2106 if (memory_access_type == VMAT_GATHER_SCATTER)
2108 tree arglist = TYPE_ARG_TYPES (TREE_TYPE (gs_info.decl));
2109 tree masktype
2110 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (arglist))));
2111 if (TREE_CODE (masktype) == INTEGER_TYPE)
2113 if (dump_enabled_p ())
2114 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2115 "masked gather with integer mask not supported.");
2116 return false;
2119 else if (memory_access_type != VMAT_CONTIGUOUS)
2121 if (dump_enabled_p ())
2122 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2123 "unsupported access type for masked %s.\n",
2124 vls_type == VLS_LOAD ? "load" : "store");
2125 return false;
2127 else if (!VECTOR_MODE_P (TYPE_MODE (vectype))
2128 || !can_vec_mask_load_store_p (TYPE_MODE (vectype),
2129 TYPE_MODE (mask_vectype),
2130 vls_type == VLS_LOAD)
2131 || (rhs_vectype
2132 && !useless_type_conversion_p (vectype, rhs_vectype)))
2133 return false;
2135 if (!vec_stmt) /* transformation not required. */
2137 STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info) = memory_access_type;
2138 STMT_VINFO_TYPE (stmt_info) = call_vec_info_type;
2139 if (vls_type == VLS_LOAD)
2140 vect_model_load_cost (stmt_info, ncopies, memory_access_type,
2141 NULL, NULL, NULL);
2142 else
2143 vect_model_store_cost (stmt_info, ncopies, memory_access_type,
2144 dt, NULL, NULL, NULL);
2145 return true;
2147 gcc_assert (memory_access_type == STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info));
2149 /* Transform. */
2151 if (memory_access_type == VMAT_GATHER_SCATTER)
2153 tree vec_oprnd0 = NULL_TREE, op;
2154 tree arglist = TYPE_ARG_TYPES (TREE_TYPE (gs_info.decl));
2155 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype;
2156 tree ptr, vec_mask = NULL_TREE, mask_op = NULL_TREE, var, scale;
2157 tree perm_mask = NULL_TREE, prev_res = NULL_TREE;
2158 tree mask_perm_mask = NULL_TREE;
2159 edge pe = loop_preheader_edge (loop);
2160 gimple_seq seq;
2161 basic_block new_bb;
2162 enum { NARROW, NONE, WIDEN } modifier;
2163 int gather_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype);
2165 rettype = TREE_TYPE (TREE_TYPE (gs_info.decl));
2166 srctype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
2167 ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
2168 idxtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
2169 masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
2170 scaletype = TREE_VALUE (arglist);
2171 gcc_checking_assert (types_compatible_p (srctype, rettype)
2172 && types_compatible_p (srctype, masktype));
2174 if (nunits == gather_off_nunits)
2175 modifier = NONE;
2176 else if (nunits == gather_off_nunits / 2)
2178 modifier = WIDEN;
2180 auto_vec_perm_indices sel (gather_off_nunits);
2181 for (i = 0; i < gather_off_nunits; ++i)
2182 sel.quick_push (i | nunits);
2184 perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel);
2186 else if (nunits == gather_off_nunits * 2)
2188 modifier = NARROW;
2190 auto_vec_perm_indices sel (nunits);
2191 sel.quick_grow (nunits);
2192 for (i = 0; i < nunits; ++i)
2193 sel[i] = i < gather_off_nunits
2194 ? i : i + nunits - gather_off_nunits;
2196 perm_mask = vect_gen_perm_mask_checked (vectype, sel);
2197 ncopies *= 2;
2198 for (i = 0; i < nunits; ++i)
2199 sel[i] = i | gather_off_nunits;
2200 mask_perm_mask = vect_gen_perm_mask_checked (masktype, sel);
2202 else
2203 gcc_unreachable ();
2205 vec_dest = vect_create_destination_var (gimple_call_lhs (stmt), vectype);
2207 ptr = fold_convert (ptrtype, gs_info.base);
2208 if (!is_gimple_min_invariant (ptr))
2210 ptr = force_gimple_operand (ptr, &seq, true, NULL_TREE);
2211 new_bb = gsi_insert_seq_on_edge_immediate (pe, seq);
2212 gcc_assert (!new_bb);
2215 scale = build_int_cst (scaletype, gs_info.scale);
2217 prev_stmt_info = NULL;
2218 for (j = 0; j < ncopies; ++j)
2220 if (modifier == WIDEN && (j & 1))
2221 op = permute_vec_elements (vec_oprnd0, vec_oprnd0,
2222 perm_mask, stmt, gsi);
2223 else if (j == 0)
2224 op = vec_oprnd0
2225 = vect_get_vec_def_for_operand (gs_info.offset, stmt);
2226 else
2227 op = vec_oprnd0
2228 = vect_get_vec_def_for_stmt_copy (gs_info.offset_dt, vec_oprnd0);
2230 if (!useless_type_conversion_p (idxtype, TREE_TYPE (op)))
2232 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (op))
2233 == TYPE_VECTOR_SUBPARTS (idxtype));
2234 var = vect_get_new_ssa_name (idxtype, vect_simple_var);
2235 op = build1 (VIEW_CONVERT_EXPR, idxtype, op);
2236 new_stmt
2237 = gimple_build_assign (var, VIEW_CONVERT_EXPR, op);
2238 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2239 op = var;
2242 if (mask_perm_mask && (j & 1))
2243 mask_op = permute_vec_elements (mask_op, mask_op,
2244 mask_perm_mask, stmt, gsi);
2245 else
2247 if (j == 0)
2248 vec_mask = vect_get_vec_def_for_operand (mask, stmt);
2249 else
2251 vect_is_simple_use (vec_mask, loop_vinfo, &def_stmt, &dt);
2252 vec_mask = vect_get_vec_def_for_stmt_copy (dt, vec_mask);
2255 mask_op = vec_mask;
2256 if (!useless_type_conversion_p (masktype, TREE_TYPE (vec_mask)))
2258 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask_op))
2259 == TYPE_VECTOR_SUBPARTS (masktype));
2260 var = vect_get_new_ssa_name (masktype, vect_simple_var);
2261 mask_op = build1 (VIEW_CONVERT_EXPR, masktype, mask_op);
2262 new_stmt
2263 = gimple_build_assign (var, VIEW_CONVERT_EXPR, mask_op);
2264 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2265 mask_op = var;
2269 new_stmt
2270 = gimple_build_call (gs_info.decl, 5, mask_op, ptr, op, mask_op,
2271 scale);
2273 if (!useless_type_conversion_p (vectype, rettype))
2275 gcc_assert (TYPE_VECTOR_SUBPARTS (vectype)
2276 == TYPE_VECTOR_SUBPARTS (rettype));
2277 op = vect_get_new_ssa_name (rettype, vect_simple_var);
2278 gimple_call_set_lhs (new_stmt, op);
2279 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2280 var = make_ssa_name (vec_dest);
2281 op = build1 (VIEW_CONVERT_EXPR, vectype, op);
2282 new_stmt = gimple_build_assign (var, VIEW_CONVERT_EXPR, op);
2284 else
2286 var = make_ssa_name (vec_dest, new_stmt);
2287 gimple_call_set_lhs (new_stmt, var);
2290 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2292 if (modifier == NARROW)
2294 if ((j & 1) == 0)
2296 prev_res = var;
2297 continue;
2299 var = permute_vec_elements (prev_res, var,
2300 perm_mask, stmt, gsi);
2301 new_stmt = SSA_NAME_DEF_STMT (var);
2304 if (prev_stmt_info == NULL)
2305 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
2306 else
2307 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
2308 prev_stmt_info = vinfo_for_stmt (new_stmt);
2311 /* Ensure that even with -fno-tree-dce the scalar MASK_LOAD is removed
2312 from the IL. */
2313 if (STMT_VINFO_RELATED_STMT (stmt_info))
2315 stmt = STMT_VINFO_RELATED_STMT (stmt_info);
2316 stmt_info = vinfo_for_stmt (stmt);
2318 tree lhs = gimple_call_lhs (stmt);
2319 new_stmt = gimple_build_assign (lhs, build_zero_cst (TREE_TYPE (lhs)));
2320 set_vinfo_for_stmt (new_stmt, stmt_info);
2321 set_vinfo_for_stmt (stmt, NULL);
2322 STMT_VINFO_STMT (stmt_info) = new_stmt;
2323 gsi_replace (gsi, new_stmt, true);
2324 return true;
2326 else if (vls_type != VLS_LOAD)
2328 tree vec_rhs = NULL_TREE, vec_mask = NULL_TREE;
2329 prev_stmt_info = NULL;
2330 LOOP_VINFO_HAS_MASK_STORE (loop_vinfo) = true;
2331 for (i = 0; i < ncopies; i++)
2333 unsigned align, misalign;
2335 if (i == 0)
2337 tree rhs = gimple_call_arg (stmt, 3);
2338 vec_rhs = vect_get_vec_def_for_operand (rhs, stmt);
2339 vec_mask = vect_get_vec_def_for_operand (mask, stmt,
2340 mask_vectype);
2341 /* We should have catched mismatched types earlier. */
2342 gcc_assert (useless_type_conversion_p (vectype,
2343 TREE_TYPE (vec_rhs)));
2344 dataref_ptr = vect_create_data_ref_ptr (stmt, vectype, NULL,
2345 NULL_TREE, &dummy, gsi,
2346 &ptr_incr, false, &inv_p);
2347 gcc_assert (!inv_p);
2349 else
2351 vect_is_simple_use (vec_rhs, loop_vinfo, &def_stmt, &dt);
2352 vec_rhs = vect_get_vec_def_for_stmt_copy (dt, vec_rhs);
2353 vect_is_simple_use (vec_mask, loop_vinfo, &def_stmt, &dt);
2354 vec_mask = vect_get_vec_def_for_stmt_copy (dt, vec_mask);
2355 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi, stmt,
2356 TYPE_SIZE_UNIT (vectype));
2359 align = DR_TARGET_ALIGNMENT (dr);
2360 if (aligned_access_p (dr))
2361 misalign = 0;
2362 else if (DR_MISALIGNMENT (dr) == -1)
2364 align = TYPE_ALIGN_UNIT (elem_type);
2365 misalign = 0;
2367 else
2368 misalign = DR_MISALIGNMENT (dr);
2369 set_ptr_info_alignment (get_ptr_info (dataref_ptr), align,
2370 misalign);
2371 tree ptr = build_int_cst (TREE_TYPE (gimple_call_arg (stmt, 1)),
2372 misalign ? least_bit_hwi (misalign) : align);
2373 gcall *call
2374 = gimple_build_call_internal (IFN_MASK_STORE, 4, dataref_ptr,
2375 ptr, vec_mask, vec_rhs);
2376 gimple_call_set_nothrow (call, true);
2377 new_stmt = call;
2378 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2379 if (i == 0)
2380 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
2381 else
2382 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
2383 prev_stmt_info = vinfo_for_stmt (new_stmt);
2386 else
2388 tree vec_mask = NULL_TREE;
2389 prev_stmt_info = NULL;
2390 vec_dest = vect_create_destination_var (gimple_call_lhs (stmt), vectype);
2391 for (i = 0; i < ncopies; i++)
2393 unsigned align, misalign;
2395 if (i == 0)
2397 vec_mask = vect_get_vec_def_for_operand (mask, stmt,
2398 mask_vectype);
2399 dataref_ptr = vect_create_data_ref_ptr (stmt, vectype, NULL,
2400 NULL_TREE, &dummy, gsi,
2401 &ptr_incr, false, &inv_p);
2402 gcc_assert (!inv_p);
2404 else
2406 vect_is_simple_use (vec_mask, loop_vinfo, &def_stmt, &dt);
2407 vec_mask = vect_get_vec_def_for_stmt_copy (dt, vec_mask);
2408 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi, stmt,
2409 TYPE_SIZE_UNIT (vectype));
2412 align = DR_TARGET_ALIGNMENT (dr);
2413 if (aligned_access_p (dr))
2414 misalign = 0;
2415 else if (DR_MISALIGNMENT (dr) == -1)
2417 align = TYPE_ALIGN_UNIT (elem_type);
2418 misalign = 0;
2420 else
2421 misalign = DR_MISALIGNMENT (dr);
2422 set_ptr_info_alignment (get_ptr_info (dataref_ptr), align,
2423 misalign);
2424 tree ptr = build_int_cst (TREE_TYPE (gimple_call_arg (stmt, 1)),
2425 misalign ? least_bit_hwi (misalign) : align);
2426 gcall *call
2427 = gimple_build_call_internal (IFN_MASK_LOAD, 3, dataref_ptr,
2428 ptr, vec_mask);
2429 gimple_call_set_lhs (call, make_ssa_name (vec_dest));
2430 gimple_call_set_nothrow (call, true);
2431 vect_finish_stmt_generation (stmt, call, gsi);
2432 if (i == 0)
2433 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = call;
2434 else
2435 STMT_VINFO_RELATED_STMT (prev_stmt_info) = call;
2436 prev_stmt_info = vinfo_for_stmt (call);
2440 if (vls_type == VLS_LOAD)
2442 /* Ensure that even with -fno-tree-dce the scalar MASK_LOAD is removed
2443 from the IL. */
2444 if (STMT_VINFO_RELATED_STMT (stmt_info))
2446 stmt = STMT_VINFO_RELATED_STMT (stmt_info);
2447 stmt_info = vinfo_for_stmt (stmt);
2449 tree lhs = gimple_call_lhs (stmt);
2450 new_stmt = gimple_build_assign (lhs, build_zero_cst (TREE_TYPE (lhs)));
2451 set_vinfo_for_stmt (new_stmt, stmt_info);
2452 set_vinfo_for_stmt (stmt, NULL);
2453 STMT_VINFO_STMT (stmt_info) = new_stmt;
2454 gsi_replace (gsi, new_stmt, true);
2457 return true;
2460 /* Check and perform vectorization of BUILT_IN_BSWAP{16,32,64}. */
2462 static bool
2463 vectorizable_bswap (gimple *stmt, gimple_stmt_iterator *gsi,
2464 gimple **vec_stmt, slp_tree slp_node,
2465 tree vectype_in, enum vect_def_type *dt)
2467 tree op, vectype;
2468 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
2469 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
2470 unsigned ncopies, nunits;
2472 op = gimple_call_arg (stmt, 0);
2473 vectype = STMT_VINFO_VECTYPE (stmt_info);
2474 nunits = TYPE_VECTOR_SUBPARTS (vectype);
2476 /* Multiple types in SLP are handled by creating the appropriate number of
2477 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
2478 case of SLP. */
2479 if (slp_node)
2480 ncopies = 1;
2481 else
2482 ncopies = vect_get_num_copies (loop_vinfo, vectype);
2484 gcc_assert (ncopies >= 1);
2486 tree char_vectype = get_same_sized_vectype (char_type_node, vectype_in);
2487 if (! char_vectype)
2488 return false;
2490 unsigned int num_bytes = TYPE_VECTOR_SUBPARTS (char_vectype);
2491 unsigned word_bytes = num_bytes / nunits;
2493 auto_vec_perm_indices elts (num_bytes);
2494 for (unsigned i = 0; i < nunits; ++i)
2495 for (unsigned j = 0; j < word_bytes; ++j)
2496 elts.quick_push ((i + 1) * word_bytes - j - 1);
2498 if (! can_vec_perm_p (TYPE_MODE (char_vectype), false, &elts))
2499 return false;
2501 if (! vec_stmt)
2503 STMT_VINFO_TYPE (stmt_info) = call_vec_info_type;
2504 if (dump_enabled_p ())
2505 dump_printf_loc (MSG_NOTE, vect_location, "=== vectorizable_bswap ==="
2506 "\n");
2507 if (! PURE_SLP_STMT (stmt_info))
2509 add_stmt_cost (stmt_info->vinfo->target_cost_data,
2510 1, vector_stmt, stmt_info, 0, vect_prologue);
2511 add_stmt_cost (stmt_info->vinfo->target_cost_data,
2512 ncopies, vec_perm, stmt_info, 0, vect_body);
2514 return true;
2517 auto_vec<tree, 32> telts (num_bytes);
2518 for (unsigned i = 0; i < num_bytes; ++i)
2519 telts.quick_push (build_int_cst (char_type_node, elts[i]));
2520 tree bswap_vconst = build_vector (char_vectype, telts);
2522 /* Transform. */
2523 vec<tree> vec_oprnds = vNULL;
2524 gimple *new_stmt = NULL;
2525 stmt_vec_info prev_stmt_info = NULL;
2526 for (unsigned j = 0; j < ncopies; j++)
2528 /* Handle uses. */
2529 if (j == 0)
2530 vect_get_vec_defs (op, NULL, stmt, &vec_oprnds, NULL, slp_node);
2531 else
2532 vect_get_vec_defs_for_stmt_copy (dt, &vec_oprnds, NULL);
2534 /* Arguments are ready. create the new vector stmt. */
2535 unsigned i;
2536 tree vop;
2537 FOR_EACH_VEC_ELT (vec_oprnds, i, vop)
2539 tree tem = make_ssa_name (char_vectype);
2540 new_stmt = gimple_build_assign (tem, build1 (VIEW_CONVERT_EXPR,
2541 char_vectype, vop));
2542 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2543 tree tem2 = make_ssa_name (char_vectype);
2544 new_stmt = gimple_build_assign (tem2, VEC_PERM_EXPR,
2545 tem, tem, bswap_vconst);
2546 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2547 tem = make_ssa_name (vectype);
2548 new_stmt = gimple_build_assign (tem, build1 (VIEW_CONVERT_EXPR,
2549 vectype, tem2));
2550 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2551 if (slp_node)
2552 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
2555 if (slp_node)
2556 continue;
2558 if (j == 0)
2559 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
2560 else
2561 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
2563 prev_stmt_info = vinfo_for_stmt (new_stmt);
2566 vec_oprnds.release ();
2567 return true;
2570 /* Return true if vector types VECTYPE_IN and VECTYPE_OUT have
2571 integer elements and if we can narrow VECTYPE_IN to VECTYPE_OUT
2572 in a single step. On success, store the binary pack code in
2573 *CONVERT_CODE. */
2575 static bool
2576 simple_integer_narrowing (tree vectype_out, tree vectype_in,
2577 tree_code *convert_code)
2579 if (!INTEGRAL_TYPE_P (TREE_TYPE (vectype_out))
2580 || !INTEGRAL_TYPE_P (TREE_TYPE (vectype_in)))
2581 return false;
2583 tree_code code;
2584 int multi_step_cvt = 0;
2585 auto_vec <tree, 8> interm_types;
2586 if (!supportable_narrowing_operation (NOP_EXPR, vectype_out, vectype_in,
2587 &code, &multi_step_cvt,
2588 &interm_types)
2589 || multi_step_cvt)
2590 return false;
2592 *convert_code = code;
2593 return true;
2596 /* Function vectorizable_call.
2598 Check if GS performs a function call that can be vectorized.
2599 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
2600 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
2601 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
2603 static bool
2604 vectorizable_call (gimple *gs, gimple_stmt_iterator *gsi, gimple **vec_stmt,
2605 slp_tree slp_node)
2607 gcall *stmt;
2608 tree vec_dest;
2609 tree scalar_dest;
2610 tree op, type;
2611 tree vec_oprnd0 = NULL_TREE, vec_oprnd1 = NULL_TREE;
2612 stmt_vec_info stmt_info = vinfo_for_stmt (gs), prev_stmt_info;
2613 tree vectype_out, vectype_in;
2614 int nunits_in;
2615 int nunits_out;
2616 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
2617 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
2618 vec_info *vinfo = stmt_info->vinfo;
2619 tree fndecl, new_temp, rhs_type;
2620 gimple *def_stmt;
2621 enum vect_def_type dt[3]
2622 = {vect_unknown_def_type, vect_unknown_def_type, vect_unknown_def_type};
2623 int ndts = 3;
2624 gimple *new_stmt = NULL;
2625 int ncopies, j;
2626 vec<tree> vargs = vNULL;
2627 enum { NARROW, NONE, WIDEN } modifier;
2628 size_t i, nargs;
2629 tree lhs;
2631 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
2632 return false;
2634 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
2635 && ! vec_stmt)
2636 return false;
2638 /* Is GS a vectorizable call? */
2639 stmt = dyn_cast <gcall *> (gs);
2640 if (!stmt)
2641 return false;
2643 if (gimple_call_internal_p (stmt)
2644 && (gimple_call_internal_fn (stmt) == IFN_MASK_LOAD
2645 || gimple_call_internal_fn (stmt) == IFN_MASK_STORE))
2646 return vectorizable_mask_load_store (stmt, gsi, vec_stmt,
2647 slp_node);
2649 if (gimple_call_lhs (stmt) == NULL_TREE
2650 || TREE_CODE (gimple_call_lhs (stmt)) != SSA_NAME)
2651 return false;
2653 gcc_checking_assert (!stmt_can_throw_internal (stmt));
2655 vectype_out = STMT_VINFO_VECTYPE (stmt_info);
2657 /* Process function arguments. */
2658 rhs_type = NULL_TREE;
2659 vectype_in = NULL_TREE;
2660 nargs = gimple_call_num_args (stmt);
2662 /* Bail out if the function has more than three arguments, we do not have
2663 interesting builtin functions to vectorize with more than two arguments
2664 except for fma. No arguments is also not good. */
2665 if (nargs == 0 || nargs > 3)
2666 return false;
2668 /* Ignore the argument of IFN_GOMP_SIMD_LANE, it is magic. */
2669 if (gimple_call_internal_p (stmt)
2670 && gimple_call_internal_fn (stmt) == IFN_GOMP_SIMD_LANE)
2672 nargs = 0;
2673 rhs_type = unsigned_type_node;
2676 for (i = 0; i < nargs; i++)
2678 tree opvectype;
2680 op = gimple_call_arg (stmt, i);
2682 /* We can only handle calls with arguments of the same type. */
2683 if (rhs_type
2684 && !types_compatible_p (rhs_type, TREE_TYPE (op)))
2686 if (dump_enabled_p ())
2687 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2688 "argument types differ.\n");
2689 return false;
2691 if (!rhs_type)
2692 rhs_type = TREE_TYPE (op);
2694 if (!vect_is_simple_use (op, vinfo, &def_stmt, &dt[i], &opvectype))
2696 if (dump_enabled_p ())
2697 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2698 "use not simple.\n");
2699 return false;
2702 if (!vectype_in)
2703 vectype_in = opvectype;
2704 else if (opvectype
2705 && opvectype != vectype_in)
2707 if (dump_enabled_p ())
2708 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2709 "argument vector types differ.\n");
2710 return false;
2713 /* If all arguments are external or constant defs use a vector type with
2714 the same size as the output vector type. */
2715 if (!vectype_in)
2716 vectype_in = get_same_sized_vectype (rhs_type, vectype_out);
2717 if (vec_stmt)
2718 gcc_assert (vectype_in);
2719 if (!vectype_in)
2721 if (dump_enabled_p ())
2723 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2724 "no vectype for scalar type ");
2725 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, rhs_type);
2726 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
2729 return false;
2732 /* FORNOW */
2733 nunits_in = TYPE_VECTOR_SUBPARTS (vectype_in);
2734 nunits_out = TYPE_VECTOR_SUBPARTS (vectype_out);
2735 if (nunits_in == nunits_out / 2)
2736 modifier = NARROW;
2737 else if (nunits_out == nunits_in)
2738 modifier = NONE;
2739 else if (nunits_out == nunits_in / 2)
2740 modifier = WIDEN;
2741 else
2742 return false;
2744 /* We only handle functions that do not read or clobber memory. */
2745 if (gimple_vuse (stmt))
2747 if (dump_enabled_p ())
2748 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2749 "function reads from or writes to memory.\n");
2750 return false;
2753 /* For now, we only vectorize functions if a target specific builtin
2754 is available. TODO -- in some cases, it might be profitable to
2755 insert the calls for pieces of the vector, in order to be able
2756 to vectorize other operations in the loop. */
2757 fndecl = NULL_TREE;
2758 internal_fn ifn = IFN_LAST;
2759 combined_fn cfn = gimple_call_combined_fn (stmt);
2760 tree callee = gimple_call_fndecl (stmt);
2762 /* First try using an internal function. */
2763 tree_code convert_code = ERROR_MARK;
2764 if (cfn != CFN_LAST
2765 && (modifier == NONE
2766 || (modifier == NARROW
2767 && simple_integer_narrowing (vectype_out, vectype_in,
2768 &convert_code))))
2769 ifn = vectorizable_internal_function (cfn, callee, vectype_out,
2770 vectype_in);
2772 /* If that fails, try asking for a target-specific built-in function. */
2773 if (ifn == IFN_LAST)
2775 if (cfn != CFN_LAST)
2776 fndecl = targetm.vectorize.builtin_vectorized_function
2777 (cfn, vectype_out, vectype_in);
2778 else
2779 fndecl = targetm.vectorize.builtin_md_vectorized_function
2780 (callee, vectype_out, vectype_in);
2783 if (ifn == IFN_LAST && !fndecl)
2785 if (cfn == CFN_GOMP_SIMD_LANE
2786 && !slp_node
2787 && loop_vinfo
2788 && LOOP_VINFO_LOOP (loop_vinfo)->simduid
2789 && TREE_CODE (gimple_call_arg (stmt, 0)) == SSA_NAME
2790 && LOOP_VINFO_LOOP (loop_vinfo)->simduid
2791 == SSA_NAME_VAR (gimple_call_arg (stmt, 0)))
2793 /* We can handle IFN_GOMP_SIMD_LANE by returning a
2794 { 0, 1, 2, ... vf - 1 } vector. */
2795 gcc_assert (nargs == 0);
2797 else if (modifier == NONE
2798 && (gimple_call_builtin_p (stmt, BUILT_IN_BSWAP16)
2799 || gimple_call_builtin_p (stmt, BUILT_IN_BSWAP32)
2800 || gimple_call_builtin_p (stmt, BUILT_IN_BSWAP64)))
2801 return vectorizable_bswap (stmt, gsi, vec_stmt, slp_node,
2802 vectype_in, dt);
2803 else
2805 if (dump_enabled_p ())
2806 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
2807 "function is not vectorizable.\n");
2808 return false;
2812 if (slp_node)
2813 ncopies = 1;
2814 else if (modifier == NARROW && ifn == IFN_LAST)
2815 ncopies = vect_get_num_copies (loop_vinfo, vectype_out);
2816 else
2817 ncopies = vect_get_num_copies (loop_vinfo, vectype_in);
2819 /* Sanity check: make sure that at least one copy of the vectorized stmt
2820 needs to be generated. */
2821 gcc_assert (ncopies >= 1);
2823 if (!vec_stmt) /* transformation not required. */
2825 STMT_VINFO_TYPE (stmt_info) = call_vec_info_type;
2826 if (dump_enabled_p ())
2827 dump_printf_loc (MSG_NOTE, vect_location, "=== vectorizable_call ==="
2828 "\n");
2829 vect_model_simple_cost (stmt_info, ncopies, dt, ndts, NULL, NULL);
2830 if (ifn != IFN_LAST && modifier == NARROW && !slp_node)
2831 add_stmt_cost (stmt_info->vinfo->target_cost_data, ncopies / 2,
2832 vec_promote_demote, stmt_info, 0, vect_body);
2834 return true;
2837 /* Transform. */
2839 if (dump_enabled_p ())
2840 dump_printf_loc (MSG_NOTE, vect_location, "transform call.\n");
2842 /* Handle def. */
2843 scalar_dest = gimple_call_lhs (stmt);
2844 vec_dest = vect_create_destination_var (scalar_dest, vectype_out);
2846 prev_stmt_info = NULL;
2847 if (modifier == NONE || ifn != IFN_LAST)
2849 tree prev_res = NULL_TREE;
2850 for (j = 0; j < ncopies; ++j)
2852 /* Build argument list for the vectorized call. */
2853 if (j == 0)
2854 vargs.create (nargs);
2855 else
2856 vargs.truncate (0);
2858 if (slp_node)
2860 auto_vec<vec<tree> > vec_defs (nargs);
2861 vec<tree> vec_oprnds0;
2863 for (i = 0; i < nargs; i++)
2864 vargs.quick_push (gimple_call_arg (stmt, i));
2865 vect_get_slp_defs (vargs, slp_node, &vec_defs);
2866 vec_oprnds0 = vec_defs[0];
2868 /* Arguments are ready. Create the new vector stmt. */
2869 FOR_EACH_VEC_ELT (vec_oprnds0, i, vec_oprnd0)
2871 size_t k;
2872 for (k = 0; k < nargs; k++)
2874 vec<tree> vec_oprndsk = vec_defs[k];
2875 vargs[k] = vec_oprndsk[i];
2877 if (modifier == NARROW)
2879 tree half_res = make_ssa_name (vectype_in);
2880 gcall *call
2881 = gimple_build_call_internal_vec (ifn, vargs);
2882 gimple_call_set_lhs (call, half_res);
2883 gimple_call_set_nothrow (call, true);
2884 new_stmt = call;
2885 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2886 if ((i & 1) == 0)
2888 prev_res = half_res;
2889 continue;
2891 new_temp = make_ssa_name (vec_dest);
2892 new_stmt = gimple_build_assign (new_temp, convert_code,
2893 prev_res, half_res);
2895 else
2897 gcall *call;
2898 if (ifn != IFN_LAST)
2899 call = gimple_build_call_internal_vec (ifn, vargs);
2900 else
2901 call = gimple_build_call_vec (fndecl, vargs);
2902 new_temp = make_ssa_name (vec_dest, call);
2903 gimple_call_set_lhs (call, new_temp);
2904 gimple_call_set_nothrow (call, true);
2905 new_stmt = call;
2907 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2908 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
2911 for (i = 0; i < nargs; i++)
2913 vec<tree> vec_oprndsi = vec_defs[i];
2914 vec_oprndsi.release ();
2916 continue;
2919 for (i = 0; i < nargs; i++)
2921 op = gimple_call_arg (stmt, i);
2922 if (j == 0)
2923 vec_oprnd0
2924 = vect_get_vec_def_for_operand (op, stmt);
2925 else
2927 vec_oprnd0 = gimple_call_arg (new_stmt, i);
2928 vec_oprnd0
2929 = vect_get_vec_def_for_stmt_copy (dt[i], vec_oprnd0);
2932 vargs.quick_push (vec_oprnd0);
2935 if (gimple_call_internal_p (stmt)
2936 && gimple_call_internal_fn (stmt) == IFN_GOMP_SIMD_LANE)
2938 auto_vec<tree, 32> v (nunits_out);
2939 for (int k = 0; k < nunits_out; ++k)
2940 v.quick_push (build_int_cst (unsigned_type_node,
2941 j * nunits_out + k));
2942 tree cst = build_vector (vectype_out, v);
2943 tree new_var
2944 = vect_get_new_ssa_name (vectype_out, vect_simple_var, "cst_");
2945 gimple *init_stmt = gimple_build_assign (new_var, cst);
2946 vect_init_vector_1 (stmt, init_stmt, NULL);
2947 new_temp = make_ssa_name (vec_dest);
2948 new_stmt = gimple_build_assign (new_temp, new_var);
2950 else if (modifier == NARROW)
2952 tree half_res = make_ssa_name (vectype_in);
2953 gcall *call = gimple_build_call_internal_vec (ifn, vargs);
2954 gimple_call_set_lhs (call, half_res);
2955 gimple_call_set_nothrow (call, true);
2956 new_stmt = call;
2957 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2958 if ((j & 1) == 0)
2960 prev_res = half_res;
2961 continue;
2963 new_temp = make_ssa_name (vec_dest);
2964 new_stmt = gimple_build_assign (new_temp, convert_code,
2965 prev_res, half_res);
2967 else
2969 gcall *call;
2970 if (ifn != IFN_LAST)
2971 call = gimple_build_call_internal_vec (ifn, vargs);
2972 else
2973 call = gimple_build_call_vec (fndecl, vargs);
2974 new_temp = make_ssa_name (vec_dest, new_stmt);
2975 gimple_call_set_lhs (call, new_temp);
2976 gimple_call_set_nothrow (call, true);
2977 new_stmt = call;
2979 vect_finish_stmt_generation (stmt, new_stmt, gsi);
2981 if (j == (modifier == NARROW ? 1 : 0))
2982 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
2983 else
2984 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
2986 prev_stmt_info = vinfo_for_stmt (new_stmt);
2989 else if (modifier == NARROW)
2991 for (j = 0; j < ncopies; ++j)
2993 /* Build argument list for the vectorized call. */
2994 if (j == 0)
2995 vargs.create (nargs * 2);
2996 else
2997 vargs.truncate (0);
2999 if (slp_node)
3001 auto_vec<vec<tree> > vec_defs (nargs);
3002 vec<tree> vec_oprnds0;
3004 for (i = 0; i < nargs; i++)
3005 vargs.quick_push (gimple_call_arg (stmt, i));
3006 vect_get_slp_defs (vargs, slp_node, &vec_defs);
3007 vec_oprnds0 = vec_defs[0];
3009 /* Arguments are ready. Create the new vector stmt. */
3010 for (i = 0; vec_oprnds0.iterate (i, &vec_oprnd0); i += 2)
3012 size_t k;
3013 vargs.truncate (0);
3014 for (k = 0; k < nargs; k++)
3016 vec<tree> vec_oprndsk = vec_defs[k];
3017 vargs.quick_push (vec_oprndsk[i]);
3018 vargs.quick_push (vec_oprndsk[i + 1]);
3020 gcall *call;
3021 if (ifn != IFN_LAST)
3022 call = gimple_build_call_internal_vec (ifn, vargs);
3023 else
3024 call = gimple_build_call_vec (fndecl, vargs);
3025 new_temp = make_ssa_name (vec_dest, call);
3026 gimple_call_set_lhs (call, new_temp);
3027 gimple_call_set_nothrow (call, true);
3028 new_stmt = call;
3029 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3030 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
3033 for (i = 0; i < nargs; i++)
3035 vec<tree> vec_oprndsi = vec_defs[i];
3036 vec_oprndsi.release ();
3038 continue;
3041 for (i = 0; i < nargs; i++)
3043 op = gimple_call_arg (stmt, i);
3044 if (j == 0)
3046 vec_oprnd0
3047 = vect_get_vec_def_for_operand (op, stmt);
3048 vec_oprnd1
3049 = vect_get_vec_def_for_stmt_copy (dt[i], vec_oprnd0);
3051 else
3053 vec_oprnd1 = gimple_call_arg (new_stmt, 2*i + 1);
3054 vec_oprnd0
3055 = vect_get_vec_def_for_stmt_copy (dt[i], vec_oprnd1);
3056 vec_oprnd1
3057 = vect_get_vec_def_for_stmt_copy (dt[i], vec_oprnd0);
3060 vargs.quick_push (vec_oprnd0);
3061 vargs.quick_push (vec_oprnd1);
3064 new_stmt = gimple_build_call_vec (fndecl, vargs);
3065 new_temp = make_ssa_name (vec_dest, new_stmt);
3066 gimple_call_set_lhs (new_stmt, new_temp);
3067 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3069 if (j == 0)
3070 STMT_VINFO_VEC_STMT (stmt_info) = new_stmt;
3071 else
3072 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
3074 prev_stmt_info = vinfo_for_stmt (new_stmt);
3077 *vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
3079 else
3080 /* No current target implements this case. */
3081 return false;
3083 vargs.release ();
3085 /* The call in STMT might prevent it from being removed in dce.
3086 We however cannot remove it here, due to the way the ssa name
3087 it defines is mapped to the new definition. So just replace
3088 rhs of the statement with something harmless. */
3090 if (slp_node)
3091 return true;
3093 type = TREE_TYPE (scalar_dest);
3094 if (is_pattern_stmt_p (stmt_info))
3095 lhs = gimple_call_lhs (STMT_VINFO_RELATED_STMT (stmt_info));
3096 else
3097 lhs = gimple_call_lhs (stmt);
3099 new_stmt = gimple_build_assign (lhs, build_zero_cst (type));
3100 set_vinfo_for_stmt (new_stmt, stmt_info);
3101 set_vinfo_for_stmt (stmt, NULL);
3102 STMT_VINFO_STMT (stmt_info) = new_stmt;
3103 gsi_replace (gsi, new_stmt, false);
3105 return true;
3109 struct simd_call_arg_info
3111 tree vectype;
3112 tree op;
3113 HOST_WIDE_INT linear_step;
3114 enum vect_def_type dt;
3115 unsigned int align;
3116 bool simd_lane_linear;
3119 /* Helper function of vectorizable_simd_clone_call. If OP, an SSA_NAME,
3120 is linear within simd lane (but not within whole loop), note it in
3121 *ARGINFO. */
3123 static void
3124 vect_simd_lane_linear (tree op, struct loop *loop,
3125 struct simd_call_arg_info *arginfo)
3127 gimple *def_stmt = SSA_NAME_DEF_STMT (op);
3129 if (!is_gimple_assign (def_stmt)
3130 || gimple_assign_rhs_code (def_stmt) != POINTER_PLUS_EXPR
3131 || !is_gimple_min_invariant (gimple_assign_rhs1 (def_stmt)))
3132 return;
3134 tree base = gimple_assign_rhs1 (def_stmt);
3135 HOST_WIDE_INT linear_step = 0;
3136 tree v = gimple_assign_rhs2 (def_stmt);
3137 while (TREE_CODE (v) == SSA_NAME)
3139 tree t;
3140 def_stmt = SSA_NAME_DEF_STMT (v);
3141 if (is_gimple_assign (def_stmt))
3142 switch (gimple_assign_rhs_code (def_stmt))
3144 case PLUS_EXPR:
3145 t = gimple_assign_rhs2 (def_stmt);
3146 if (linear_step || TREE_CODE (t) != INTEGER_CST)
3147 return;
3148 base = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (base), base, t);
3149 v = gimple_assign_rhs1 (def_stmt);
3150 continue;
3151 case MULT_EXPR:
3152 t = gimple_assign_rhs2 (def_stmt);
3153 if (linear_step || !tree_fits_shwi_p (t) || integer_zerop (t))
3154 return;
3155 linear_step = tree_to_shwi (t);
3156 v = gimple_assign_rhs1 (def_stmt);
3157 continue;
3158 CASE_CONVERT:
3159 t = gimple_assign_rhs1 (def_stmt);
3160 if (TREE_CODE (TREE_TYPE (t)) != INTEGER_TYPE
3161 || (TYPE_PRECISION (TREE_TYPE (v))
3162 < TYPE_PRECISION (TREE_TYPE (t))))
3163 return;
3164 if (!linear_step)
3165 linear_step = 1;
3166 v = t;
3167 continue;
3168 default:
3169 return;
3171 else if (gimple_call_internal_p (def_stmt, IFN_GOMP_SIMD_LANE)
3172 && loop->simduid
3173 && TREE_CODE (gimple_call_arg (def_stmt, 0)) == SSA_NAME
3174 && (SSA_NAME_VAR (gimple_call_arg (def_stmt, 0))
3175 == loop->simduid))
3177 if (!linear_step)
3178 linear_step = 1;
3179 arginfo->linear_step = linear_step;
3180 arginfo->op = base;
3181 arginfo->simd_lane_linear = true;
3182 return;
3187 /* Function vectorizable_simd_clone_call.
3189 Check if STMT performs a function call that can be vectorized
3190 by calling a simd clone of the function.
3191 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
3192 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
3193 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
3195 static bool
3196 vectorizable_simd_clone_call (gimple *stmt, gimple_stmt_iterator *gsi,
3197 gimple **vec_stmt, slp_tree slp_node)
3199 tree vec_dest;
3200 tree scalar_dest;
3201 tree op, type;
3202 tree vec_oprnd0 = NULL_TREE;
3203 stmt_vec_info stmt_info = vinfo_for_stmt (stmt), prev_stmt_info;
3204 tree vectype;
3205 unsigned int nunits;
3206 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
3207 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
3208 vec_info *vinfo = stmt_info->vinfo;
3209 struct loop *loop = loop_vinfo ? LOOP_VINFO_LOOP (loop_vinfo) : NULL;
3210 tree fndecl, new_temp;
3211 gimple *def_stmt;
3212 gimple *new_stmt = NULL;
3213 int ncopies, j;
3214 auto_vec<simd_call_arg_info> arginfo;
3215 vec<tree> vargs = vNULL;
3216 size_t i, nargs;
3217 tree lhs, rtype, ratype;
3218 vec<constructor_elt, va_gc> *ret_ctor_elts;
3220 /* Is STMT a vectorizable call? */
3221 if (!is_gimple_call (stmt))
3222 return false;
3224 fndecl = gimple_call_fndecl (stmt);
3225 if (fndecl == NULL_TREE)
3226 return false;
3228 struct cgraph_node *node = cgraph_node::get (fndecl);
3229 if (node == NULL || node->simd_clones == NULL)
3230 return false;
3232 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
3233 return false;
3235 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
3236 && ! vec_stmt)
3237 return false;
3239 if (gimple_call_lhs (stmt)
3240 && TREE_CODE (gimple_call_lhs (stmt)) != SSA_NAME)
3241 return false;
3243 gcc_checking_assert (!stmt_can_throw_internal (stmt));
3245 vectype = STMT_VINFO_VECTYPE (stmt_info);
3247 if (loop_vinfo && nested_in_vect_loop_p (loop, stmt))
3248 return false;
3250 /* FORNOW */
3251 if (slp_node)
3252 return false;
3254 /* Process function arguments. */
3255 nargs = gimple_call_num_args (stmt);
3257 /* Bail out if the function has zero arguments. */
3258 if (nargs == 0)
3259 return false;
3261 arginfo.reserve (nargs, true);
3263 for (i = 0; i < nargs; i++)
3265 simd_call_arg_info thisarginfo;
3266 affine_iv iv;
3268 thisarginfo.linear_step = 0;
3269 thisarginfo.align = 0;
3270 thisarginfo.op = NULL_TREE;
3271 thisarginfo.simd_lane_linear = false;
3273 op = gimple_call_arg (stmt, i);
3274 if (!vect_is_simple_use (op, vinfo, &def_stmt, &thisarginfo.dt,
3275 &thisarginfo.vectype)
3276 || thisarginfo.dt == vect_uninitialized_def)
3278 if (dump_enabled_p ())
3279 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
3280 "use not simple.\n");
3281 return false;
3284 if (thisarginfo.dt == vect_constant_def
3285 || thisarginfo.dt == vect_external_def)
3286 gcc_assert (thisarginfo.vectype == NULL_TREE);
3287 else
3288 gcc_assert (thisarginfo.vectype != NULL_TREE);
3290 /* For linear arguments, the analyze phase should have saved
3291 the base and step in STMT_VINFO_SIMD_CLONE_INFO. */
3292 if (i * 3 + 4 <= STMT_VINFO_SIMD_CLONE_INFO (stmt_info).length ()
3293 && STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[i * 3 + 2])
3295 gcc_assert (vec_stmt);
3296 thisarginfo.linear_step
3297 = tree_to_shwi (STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[i * 3 + 2]);
3298 thisarginfo.op
3299 = STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[i * 3 + 1];
3300 thisarginfo.simd_lane_linear
3301 = (STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[i * 3 + 3]
3302 == boolean_true_node);
3303 /* If loop has been peeled for alignment, we need to adjust it. */
3304 tree n1 = LOOP_VINFO_NITERS_UNCHANGED (loop_vinfo);
3305 tree n2 = LOOP_VINFO_NITERS (loop_vinfo);
3306 if (n1 != n2 && !thisarginfo.simd_lane_linear)
3308 tree bias = fold_build2 (MINUS_EXPR, TREE_TYPE (n1), n1, n2);
3309 tree step = STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[i * 3 + 2];
3310 tree opt = TREE_TYPE (thisarginfo.op);
3311 bias = fold_convert (TREE_TYPE (step), bias);
3312 bias = fold_build2 (MULT_EXPR, TREE_TYPE (step), bias, step);
3313 thisarginfo.op
3314 = fold_build2 (POINTER_TYPE_P (opt)
3315 ? POINTER_PLUS_EXPR : PLUS_EXPR, opt,
3316 thisarginfo.op, bias);
3319 else if (!vec_stmt
3320 && thisarginfo.dt != vect_constant_def
3321 && thisarginfo.dt != vect_external_def
3322 && loop_vinfo
3323 && TREE_CODE (op) == SSA_NAME
3324 && simple_iv (loop, loop_containing_stmt (stmt), op,
3325 &iv, false)
3326 && tree_fits_shwi_p (iv.step))
3328 thisarginfo.linear_step = tree_to_shwi (iv.step);
3329 thisarginfo.op = iv.base;
3331 else if ((thisarginfo.dt == vect_constant_def
3332 || thisarginfo.dt == vect_external_def)
3333 && POINTER_TYPE_P (TREE_TYPE (op)))
3334 thisarginfo.align = get_pointer_alignment (op) / BITS_PER_UNIT;
3335 /* Addresses of array elements indexed by GOMP_SIMD_LANE are
3336 linear too. */
3337 if (POINTER_TYPE_P (TREE_TYPE (op))
3338 && !thisarginfo.linear_step
3339 && !vec_stmt
3340 && thisarginfo.dt != vect_constant_def
3341 && thisarginfo.dt != vect_external_def
3342 && loop_vinfo
3343 && !slp_node
3344 && TREE_CODE (op) == SSA_NAME)
3345 vect_simd_lane_linear (op, loop, &thisarginfo);
3347 arginfo.quick_push (thisarginfo);
3350 unsigned int badness = 0;
3351 struct cgraph_node *bestn = NULL;
3352 if (STMT_VINFO_SIMD_CLONE_INFO (stmt_info).exists ())
3353 bestn = cgraph_node::get (STMT_VINFO_SIMD_CLONE_INFO (stmt_info)[0]);
3354 else
3355 for (struct cgraph_node *n = node->simd_clones; n != NULL;
3356 n = n->simdclone->next_clone)
3358 unsigned int this_badness = 0;
3359 if (n->simdclone->simdlen
3360 > (unsigned) LOOP_VINFO_VECT_FACTOR (loop_vinfo)
3361 || n->simdclone->nargs != nargs)
3362 continue;
3363 if (n->simdclone->simdlen
3364 < (unsigned) LOOP_VINFO_VECT_FACTOR (loop_vinfo))
3365 this_badness += (exact_log2 (LOOP_VINFO_VECT_FACTOR (loop_vinfo))
3366 - exact_log2 (n->simdclone->simdlen)) * 1024;
3367 if (n->simdclone->inbranch)
3368 this_badness += 2048;
3369 int target_badness = targetm.simd_clone.usable (n);
3370 if (target_badness < 0)
3371 continue;
3372 this_badness += target_badness * 512;
3373 /* FORNOW: Have to add code to add the mask argument. */
3374 if (n->simdclone->inbranch)
3375 continue;
3376 for (i = 0; i < nargs; i++)
3378 switch (n->simdclone->args[i].arg_type)
3380 case SIMD_CLONE_ARG_TYPE_VECTOR:
3381 if (!useless_type_conversion_p
3382 (n->simdclone->args[i].orig_type,
3383 TREE_TYPE (gimple_call_arg (stmt, i))))
3384 i = -1;
3385 else if (arginfo[i].dt == vect_constant_def
3386 || arginfo[i].dt == vect_external_def
3387 || arginfo[i].linear_step)
3388 this_badness += 64;
3389 break;
3390 case SIMD_CLONE_ARG_TYPE_UNIFORM:
3391 if (arginfo[i].dt != vect_constant_def
3392 && arginfo[i].dt != vect_external_def)
3393 i = -1;
3394 break;
3395 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP:
3396 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP:
3397 if (arginfo[i].dt == vect_constant_def
3398 || arginfo[i].dt == vect_external_def
3399 || (arginfo[i].linear_step
3400 != n->simdclone->args[i].linear_step))
3401 i = -1;
3402 break;
3403 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP:
3404 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP:
3405 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP:
3406 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP:
3407 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP:
3408 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP:
3409 /* FORNOW */
3410 i = -1;
3411 break;
3412 case SIMD_CLONE_ARG_TYPE_MASK:
3413 gcc_unreachable ();
3415 if (i == (size_t) -1)
3416 break;
3417 if (n->simdclone->args[i].alignment > arginfo[i].align)
3419 i = -1;
3420 break;
3422 if (arginfo[i].align)
3423 this_badness += (exact_log2 (arginfo[i].align)
3424 - exact_log2 (n->simdclone->args[i].alignment));
3426 if (i == (size_t) -1)
3427 continue;
3428 if (bestn == NULL || this_badness < badness)
3430 bestn = n;
3431 badness = this_badness;
3435 if (bestn == NULL)
3436 return false;
3438 for (i = 0; i < nargs; i++)
3439 if ((arginfo[i].dt == vect_constant_def
3440 || arginfo[i].dt == vect_external_def)
3441 && bestn->simdclone->args[i].arg_type == SIMD_CLONE_ARG_TYPE_VECTOR)
3443 arginfo[i].vectype
3444 = get_vectype_for_scalar_type (TREE_TYPE (gimple_call_arg (stmt,
3445 i)));
3446 if (arginfo[i].vectype == NULL
3447 || (TYPE_VECTOR_SUBPARTS (arginfo[i].vectype)
3448 > bestn->simdclone->simdlen))
3449 return false;
3452 fndecl = bestn->decl;
3453 nunits = bestn->simdclone->simdlen;
3454 ncopies = LOOP_VINFO_VECT_FACTOR (loop_vinfo) / nunits;
3456 /* If the function isn't const, only allow it in simd loops where user
3457 has asserted that at least nunits consecutive iterations can be
3458 performed using SIMD instructions. */
3459 if ((loop == NULL || (unsigned) loop->safelen < nunits)
3460 && gimple_vuse (stmt))
3461 return false;
3463 /* Sanity check: make sure that at least one copy of the vectorized stmt
3464 needs to be generated. */
3465 gcc_assert (ncopies >= 1);
3467 if (!vec_stmt) /* transformation not required. */
3469 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).safe_push (bestn->decl);
3470 for (i = 0; i < nargs; i++)
3471 if ((bestn->simdclone->args[i].arg_type
3472 == SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP)
3473 || (bestn->simdclone->args[i].arg_type
3474 == SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP))
3476 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).safe_grow_cleared (i * 3
3477 + 1);
3478 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).safe_push (arginfo[i].op);
3479 tree lst = POINTER_TYPE_P (TREE_TYPE (arginfo[i].op))
3480 ? size_type_node : TREE_TYPE (arginfo[i].op);
3481 tree ls = build_int_cst (lst, arginfo[i].linear_step);
3482 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).safe_push (ls);
3483 tree sll = arginfo[i].simd_lane_linear
3484 ? boolean_true_node : boolean_false_node;
3485 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).safe_push (sll);
3487 STMT_VINFO_TYPE (stmt_info) = call_simd_clone_vec_info_type;
3488 if (dump_enabled_p ())
3489 dump_printf_loc (MSG_NOTE, vect_location,
3490 "=== vectorizable_simd_clone_call ===\n");
3491 /* vect_model_simple_cost (stmt_info, ncopies, dt, NULL, NULL); */
3492 return true;
3495 /* Transform. */
3497 if (dump_enabled_p ())
3498 dump_printf_loc (MSG_NOTE, vect_location, "transform call.\n");
3500 /* Handle def. */
3501 scalar_dest = gimple_call_lhs (stmt);
3502 vec_dest = NULL_TREE;
3503 rtype = NULL_TREE;
3504 ratype = NULL_TREE;
3505 if (scalar_dest)
3507 vec_dest = vect_create_destination_var (scalar_dest, vectype);
3508 rtype = TREE_TYPE (TREE_TYPE (fndecl));
3509 if (TREE_CODE (rtype) == ARRAY_TYPE)
3511 ratype = rtype;
3512 rtype = TREE_TYPE (ratype);
3516 prev_stmt_info = NULL;
3517 for (j = 0; j < ncopies; ++j)
3519 /* Build argument list for the vectorized call. */
3520 if (j == 0)
3521 vargs.create (nargs);
3522 else
3523 vargs.truncate (0);
3525 for (i = 0; i < nargs; i++)
3527 unsigned int k, l, m, o;
3528 tree atype;
3529 op = gimple_call_arg (stmt, i);
3530 switch (bestn->simdclone->args[i].arg_type)
3532 case SIMD_CLONE_ARG_TYPE_VECTOR:
3533 atype = bestn->simdclone->args[i].vector_type;
3534 o = nunits / TYPE_VECTOR_SUBPARTS (atype);
3535 for (m = j * o; m < (j + 1) * o; m++)
3537 if (TYPE_VECTOR_SUBPARTS (atype)
3538 < TYPE_VECTOR_SUBPARTS (arginfo[i].vectype))
3540 unsigned int prec = GET_MODE_BITSIZE (TYPE_MODE (atype));
3541 k = (TYPE_VECTOR_SUBPARTS (arginfo[i].vectype)
3542 / TYPE_VECTOR_SUBPARTS (atype));
3543 gcc_assert ((k & (k - 1)) == 0);
3544 if (m == 0)
3545 vec_oprnd0
3546 = vect_get_vec_def_for_operand (op, stmt);
3547 else
3549 vec_oprnd0 = arginfo[i].op;
3550 if ((m & (k - 1)) == 0)
3551 vec_oprnd0
3552 = vect_get_vec_def_for_stmt_copy (arginfo[i].dt,
3553 vec_oprnd0);
3555 arginfo[i].op = vec_oprnd0;
3556 vec_oprnd0
3557 = build3 (BIT_FIELD_REF, atype, vec_oprnd0,
3558 bitsize_int (prec),
3559 bitsize_int ((m & (k - 1)) * prec));
3560 new_stmt
3561 = gimple_build_assign (make_ssa_name (atype),
3562 vec_oprnd0);
3563 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3564 vargs.safe_push (gimple_assign_lhs (new_stmt));
3566 else
3568 k = (TYPE_VECTOR_SUBPARTS (atype)
3569 / TYPE_VECTOR_SUBPARTS (arginfo[i].vectype));
3570 gcc_assert ((k & (k - 1)) == 0);
3571 vec<constructor_elt, va_gc> *ctor_elts;
3572 if (k != 1)
3573 vec_alloc (ctor_elts, k);
3574 else
3575 ctor_elts = NULL;
3576 for (l = 0; l < k; l++)
3578 if (m == 0 && l == 0)
3579 vec_oprnd0
3580 = vect_get_vec_def_for_operand (op, stmt);
3581 else
3582 vec_oprnd0
3583 = vect_get_vec_def_for_stmt_copy (arginfo[i].dt,
3584 arginfo[i].op);
3585 arginfo[i].op = vec_oprnd0;
3586 if (k == 1)
3587 break;
3588 CONSTRUCTOR_APPEND_ELT (ctor_elts, NULL_TREE,
3589 vec_oprnd0);
3591 if (k == 1)
3592 vargs.safe_push (vec_oprnd0);
3593 else
3595 vec_oprnd0 = build_constructor (atype, ctor_elts);
3596 new_stmt
3597 = gimple_build_assign (make_ssa_name (atype),
3598 vec_oprnd0);
3599 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3600 vargs.safe_push (gimple_assign_lhs (new_stmt));
3604 break;
3605 case SIMD_CLONE_ARG_TYPE_UNIFORM:
3606 vargs.safe_push (op);
3607 break;
3608 case SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP:
3609 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP:
3610 if (j == 0)
3612 gimple_seq stmts;
3613 arginfo[i].op
3614 = force_gimple_operand (arginfo[i].op, &stmts, true,
3615 NULL_TREE);
3616 if (stmts != NULL)
3618 basic_block new_bb;
3619 edge pe = loop_preheader_edge (loop);
3620 new_bb = gsi_insert_seq_on_edge_immediate (pe, stmts);
3621 gcc_assert (!new_bb);
3623 if (arginfo[i].simd_lane_linear)
3625 vargs.safe_push (arginfo[i].op);
3626 break;
3628 tree phi_res = copy_ssa_name (op);
3629 gphi *new_phi = create_phi_node (phi_res, loop->header);
3630 set_vinfo_for_stmt (new_phi,
3631 new_stmt_vec_info (new_phi, loop_vinfo));
3632 add_phi_arg (new_phi, arginfo[i].op,
3633 loop_preheader_edge (loop), UNKNOWN_LOCATION);
3634 enum tree_code code
3635 = POINTER_TYPE_P (TREE_TYPE (op))
3636 ? POINTER_PLUS_EXPR : PLUS_EXPR;
3637 tree type = POINTER_TYPE_P (TREE_TYPE (op))
3638 ? sizetype : TREE_TYPE (op);
3639 widest_int cst
3640 = wi::mul (bestn->simdclone->args[i].linear_step,
3641 ncopies * nunits);
3642 tree tcst = wide_int_to_tree (type, cst);
3643 tree phi_arg = copy_ssa_name (op);
3644 new_stmt
3645 = gimple_build_assign (phi_arg, code, phi_res, tcst);
3646 gimple_stmt_iterator si = gsi_after_labels (loop->header);
3647 gsi_insert_after (&si, new_stmt, GSI_NEW_STMT);
3648 set_vinfo_for_stmt (new_stmt,
3649 new_stmt_vec_info (new_stmt, loop_vinfo));
3650 add_phi_arg (new_phi, phi_arg, loop_latch_edge (loop),
3651 UNKNOWN_LOCATION);
3652 arginfo[i].op = phi_res;
3653 vargs.safe_push (phi_res);
3655 else
3657 enum tree_code code
3658 = POINTER_TYPE_P (TREE_TYPE (op))
3659 ? POINTER_PLUS_EXPR : PLUS_EXPR;
3660 tree type = POINTER_TYPE_P (TREE_TYPE (op))
3661 ? sizetype : TREE_TYPE (op);
3662 widest_int cst
3663 = wi::mul (bestn->simdclone->args[i].linear_step,
3664 j * nunits);
3665 tree tcst = wide_int_to_tree (type, cst);
3666 new_temp = make_ssa_name (TREE_TYPE (op));
3667 new_stmt = gimple_build_assign (new_temp, code,
3668 arginfo[i].op, tcst);
3669 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3670 vargs.safe_push (new_temp);
3672 break;
3673 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP:
3674 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP:
3675 case SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP:
3676 case SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP:
3677 case SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP:
3678 case SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP:
3679 default:
3680 gcc_unreachable ();
3684 new_stmt = gimple_build_call_vec (fndecl, vargs);
3685 if (vec_dest)
3687 gcc_assert (ratype || TYPE_VECTOR_SUBPARTS (rtype) == nunits);
3688 if (ratype)
3689 new_temp = create_tmp_var (ratype);
3690 else if (TYPE_VECTOR_SUBPARTS (vectype)
3691 == TYPE_VECTOR_SUBPARTS (rtype))
3692 new_temp = make_ssa_name (vec_dest, new_stmt);
3693 else
3694 new_temp = make_ssa_name (rtype, new_stmt);
3695 gimple_call_set_lhs (new_stmt, new_temp);
3697 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3699 if (vec_dest)
3701 if (TYPE_VECTOR_SUBPARTS (vectype) < nunits)
3703 unsigned int k, l;
3704 unsigned int prec = GET_MODE_BITSIZE (TYPE_MODE (vectype));
3705 k = nunits / TYPE_VECTOR_SUBPARTS (vectype);
3706 gcc_assert ((k & (k - 1)) == 0);
3707 for (l = 0; l < k; l++)
3709 tree t;
3710 if (ratype)
3712 t = build_fold_addr_expr (new_temp);
3713 t = build2 (MEM_REF, vectype, t,
3714 build_int_cst (TREE_TYPE (t),
3715 l * prec / BITS_PER_UNIT));
3717 else
3718 t = build3 (BIT_FIELD_REF, vectype, new_temp,
3719 bitsize_int (prec), bitsize_int (l * prec));
3720 new_stmt
3721 = gimple_build_assign (make_ssa_name (vectype), t);
3722 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3723 if (j == 0 && l == 0)
3724 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
3725 else
3726 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
3728 prev_stmt_info = vinfo_for_stmt (new_stmt);
3731 if (ratype)
3733 tree clobber = build_constructor (ratype, NULL);
3734 TREE_THIS_VOLATILE (clobber) = 1;
3735 new_stmt = gimple_build_assign (new_temp, clobber);
3736 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3738 continue;
3740 else if (TYPE_VECTOR_SUBPARTS (vectype) > nunits)
3742 unsigned int k = (TYPE_VECTOR_SUBPARTS (vectype)
3743 / TYPE_VECTOR_SUBPARTS (rtype));
3744 gcc_assert ((k & (k - 1)) == 0);
3745 if ((j & (k - 1)) == 0)
3746 vec_alloc (ret_ctor_elts, k);
3747 if (ratype)
3749 unsigned int m, o = nunits / TYPE_VECTOR_SUBPARTS (rtype);
3750 for (m = 0; m < o; m++)
3752 tree tem = build4 (ARRAY_REF, rtype, new_temp,
3753 size_int (m), NULL_TREE, NULL_TREE);
3754 new_stmt
3755 = gimple_build_assign (make_ssa_name (rtype), tem);
3756 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3757 CONSTRUCTOR_APPEND_ELT (ret_ctor_elts, NULL_TREE,
3758 gimple_assign_lhs (new_stmt));
3760 tree clobber = build_constructor (ratype, NULL);
3761 TREE_THIS_VOLATILE (clobber) = 1;
3762 new_stmt = gimple_build_assign (new_temp, clobber);
3763 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3765 else
3766 CONSTRUCTOR_APPEND_ELT (ret_ctor_elts, NULL_TREE, new_temp);
3767 if ((j & (k - 1)) != k - 1)
3768 continue;
3769 vec_oprnd0 = build_constructor (vectype, ret_ctor_elts);
3770 new_stmt
3771 = gimple_build_assign (make_ssa_name (vec_dest), vec_oprnd0);
3772 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3774 if ((unsigned) j == k - 1)
3775 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
3776 else
3777 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
3779 prev_stmt_info = vinfo_for_stmt (new_stmt);
3780 continue;
3782 else if (ratype)
3784 tree t = build_fold_addr_expr (new_temp);
3785 t = build2 (MEM_REF, vectype, t,
3786 build_int_cst (TREE_TYPE (t), 0));
3787 new_stmt
3788 = gimple_build_assign (make_ssa_name (vec_dest), t);
3789 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3790 tree clobber = build_constructor (ratype, NULL);
3791 TREE_THIS_VOLATILE (clobber) = 1;
3792 vect_finish_stmt_generation (stmt,
3793 gimple_build_assign (new_temp,
3794 clobber), gsi);
3798 if (j == 0)
3799 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
3800 else
3801 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
3803 prev_stmt_info = vinfo_for_stmt (new_stmt);
3806 vargs.release ();
3808 /* The call in STMT might prevent it from being removed in dce.
3809 We however cannot remove it here, due to the way the ssa name
3810 it defines is mapped to the new definition. So just replace
3811 rhs of the statement with something harmless. */
3813 if (slp_node)
3814 return true;
3816 if (scalar_dest)
3818 type = TREE_TYPE (scalar_dest);
3819 if (is_pattern_stmt_p (stmt_info))
3820 lhs = gimple_call_lhs (STMT_VINFO_RELATED_STMT (stmt_info));
3821 else
3822 lhs = gimple_call_lhs (stmt);
3823 new_stmt = gimple_build_assign (lhs, build_zero_cst (type));
3825 else
3826 new_stmt = gimple_build_nop ();
3827 set_vinfo_for_stmt (new_stmt, stmt_info);
3828 set_vinfo_for_stmt (stmt, NULL);
3829 STMT_VINFO_STMT (stmt_info) = new_stmt;
3830 gsi_replace (gsi, new_stmt, true);
3831 unlink_stmt_vdef (stmt);
3833 return true;
3837 /* Function vect_gen_widened_results_half
3839 Create a vector stmt whose code, type, number of arguments, and result
3840 variable are CODE, OP_TYPE, and VEC_DEST, and its arguments are
3841 VEC_OPRND0 and VEC_OPRND1. The new vector stmt is to be inserted at BSI.
3842 In the case that CODE is a CALL_EXPR, this means that a call to DECL
3843 needs to be created (DECL is a function-decl of a target-builtin).
3844 STMT is the original scalar stmt that we are vectorizing. */
3846 static gimple *
3847 vect_gen_widened_results_half (enum tree_code code,
3848 tree decl,
3849 tree vec_oprnd0, tree vec_oprnd1, int op_type,
3850 tree vec_dest, gimple_stmt_iterator *gsi,
3851 gimple *stmt)
3853 gimple *new_stmt;
3854 tree new_temp;
3856 /* Generate half of the widened result: */
3857 if (code == CALL_EXPR)
3859 /* Target specific support */
3860 if (op_type == binary_op)
3861 new_stmt = gimple_build_call (decl, 2, vec_oprnd0, vec_oprnd1);
3862 else
3863 new_stmt = gimple_build_call (decl, 1, vec_oprnd0);
3864 new_temp = make_ssa_name (vec_dest, new_stmt);
3865 gimple_call_set_lhs (new_stmt, new_temp);
3867 else
3869 /* Generic support */
3870 gcc_assert (op_type == TREE_CODE_LENGTH (code));
3871 if (op_type != binary_op)
3872 vec_oprnd1 = NULL;
3873 new_stmt = gimple_build_assign (vec_dest, code, vec_oprnd0, vec_oprnd1);
3874 new_temp = make_ssa_name (vec_dest, new_stmt);
3875 gimple_assign_set_lhs (new_stmt, new_temp);
3877 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3879 return new_stmt;
3883 /* Get vectorized definitions for loop-based vectorization. For the first
3884 operand we call vect_get_vec_def_for_operand() (with OPRND containing
3885 scalar operand), and for the rest we get a copy with
3886 vect_get_vec_def_for_stmt_copy() using the previous vector definition
3887 (stored in OPRND). See vect_get_vec_def_for_stmt_copy() for details.
3888 The vectors are collected into VEC_OPRNDS. */
3890 static void
3891 vect_get_loop_based_defs (tree *oprnd, gimple *stmt, enum vect_def_type dt,
3892 vec<tree> *vec_oprnds, int multi_step_cvt)
3894 tree vec_oprnd;
3896 /* Get first vector operand. */
3897 /* All the vector operands except the very first one (that is scalar oprnd)
3898 are stmt copies. */
3899 if (TREE_CODE (TREE_TYPE (*oprnd)) != VECTOR_TYPE)
3900 vec_oprnd = vect_get_vec_def_for_operand (*oprnd, stmt);
3901 else
3902 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, *oprnd);
3904 vec_oprnds->quick_push (vec_oprnd);
3906 /* Get second vector operand. */
3907 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, vec_oprnd);
3908 vec_oprnds->quick_push (vec_oprnd);
3910 *oprnd = vec_oprnd;
3912 /* For conversion in multiple steps, continue to get operands
3913 recursively. */
3914 if (multi_step_cvt)
3915 vect_get_loop_based_defs (oprnd, stmt, dt, vec_oprnds, multi_step_cvt - 1);
3919 /* Create vectorized demotion statements for vector operands from VEC_OPRNDS.
3920 For multi-step conversions store the resulting vectors and call the function
3921 recursively. */
3923 static void
3924 vect_create_vectorized_demotion_stmts (vec<tree> *vec_oprnds,
3925 int multi_step_cvt, gimple *stmt,
3926 vec<tree> vec_dsts,
3927 gimple_stmt_iterator *gsi,
3928 slp_tree slp_node, enum tree_code code,
3929 stmt_vec_info *prev_stmt_info)
3931 unsigned int i;
3932 tree vop0, vop1, new_tmp, vec_dest;
3933 gimple *new_stmt;
3934 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
3936 vec_dest = vec_dsts.pop ();
3938 for (i = 0; i < vec_oprnds->length (); i += 2)
3940 /* Create demotion operation. */
3941 vop0 = (*vec_oprnds)[i];
3942 vop1 = (*vec_oprnds)[i + 1];
3943 new_stmt = gimple_build_assign (vec_dest, code, vop0, vop1);
3944 new_tmp = make_ssa_name (vec_dest, new_stmt);
3945 gimple_assign_set_lhs (new_stmt, new_tmp);
3946 vect_finish_stmt_generation (stmt, new_stmt, gsi);
3948 if (multi_step_cvt)
3949 /* Store the resulting vector for next recursive call. */
3950 (*vec_oprnds)[i/2] = new_tmp;
3951 else
3953 /* This is the last step of the conversion sequence. Store the
3954 vectors in SLP_NODE or in vector info of the scalar statement
3955 (or in STMT_VINFO_RELATED_STMT chain). */
3956 if (slp_node)
3957 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
3958 else
3960 if (!*prev_stmt_info)
3961 STMT_VINFO_VEC_STMT (stmt_info) = new_stmt;
3962 else
3963 STMT_VINFO_RELATED_STMT (*prev_stmt_info) = new_stmt;
3965 *prev_stmt_info = vinfo_for_stmt (new_stmt);
3970 /* For multi-step demotion operations we first generate demotion operations
3971 from the source type to the intermediate types, and then combine the
3972 results (stored in VEC_OPRNDS) in demotion operation to the destination
3973 type. */
3974 if (multi_step_cvt)
3976 /* At each level of recursion we have half of the operands we had at the
3977 previous level. */
3978 vec_oprnds->truncate ((i+1)/2);
3979 vect_create_vectorized_demotion_stmts (vec_oprnds, multi_step_cvt - 1,
3980 stmt, vec_dsts, gsi, slp_node,
3981 VEC_PACK_TRUNC_EXPR,
3982 prev_stmt_info);
3985 vec_dsts.quick_push (vec_dest);
3989 /* Create vectorized promotion statements for vector operands from VEC_OPRNDS0
3990 and VEC_OPRNDS1 (for binary operations). For multi-step conversions store
3991 the resulting vectors and call the function recursively. */
3993 static void
3994 vect_create_vectorized_promotion_stmts (vec<tree> *vec_oprnds0,
3995 vec<tree> *vec_oprnds1,
3996 gimple *stmt, tree vec_dest,
3997 gimple_stmt_iterator *gsi,
3998 enum tree_code code1,
3999 enum tree_code code2, tree decl1,
4000 tree decl2, int op_type)
4002 int i;
4003 tree vop0, vop1, new_tmp1, new_tmp2;
4004 gimple *new_stmt1, *new_stmt2;
4005 vec<tree> vec_tmp = vNULL;
4007 vec_tmp.create (vec_oprnds0->length () * 2);
4008 FOR_EACH_VEC_ELT (*vec_oprnds0, i, vop0)
4010 if (op_type == binary_op)
4011 vop1 = (*vec_oprnds1)[i];
4012 else
4013 vop1 = NULL_TREE;
4015 /* Generate the two halves of promotion operation. */
4016 new_stmt1 = vect_gen_widened_results_half (code1, decl1, vop0, vop1,
4017 op_type, vec_dest, gsi, stmt);
4018 new_stmt2 = vect_gen_widened_results_half (code2, decl2, vop0, vop1,
4019 op_type, vec_dest, gsi, stmt);
4020 if (is_gimple_call (new_stmt1))
4022 new_tmp1 = gimple_call_lhs (new_stmt1);
4023 new_tmp2 = gimple_call_lhs (new_stmt2);
4025 else
4027 new_tmp1 = gimple_assign_lhs (new_stmt1);
4028 new_tmp2 = gimple_assign_lhs (new_stmt2);
4031 /* Store the results for the next step. */
4032 vec_tmp.quick_push (new_tmp1);
4033 vec_tmp.quick_push (new_tmp2);
4036 vec_oprnds0->release ();
4037 *vec_oprnds0 = vec_tmp;
4041 /* Check if STMT performs a conversion operation, that can be vectorized.
4042 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
4043 stmt to replace it, put it in VEC_STMT, and insert it at GSI.
4044 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
4046 static bool
4047 vectorizable_conversion (gimple *stmt, gimple_stmt_iterator *gsi,
4048 gimple **vec_stmt, slp_tree slp_node)
4050 tree vec_dest;
4051 tree scalar_dest;
4052 tree op0, op1 = NULL_TREE;
4053 tree vec_oprnd0 = NULL_TREE, vec_oprnd1 = NULL_TREE;
4054 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
4055 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
4056 enum tree_code code, code1 = ERROR_MARK, code2 = ERROR_MARK;
4057 enum tree_code codecvt1 = ERROR_MARK, codecvt2 = ERROR_MARK;
4058 tree decl1 = NULL_TREE, decl2 = NULL_TREE;
4059 tree new_temp;
4060 gimple *def_stmt;
4061 enum vect_def_type dt[2] = {vect_unknown_def_type, vect_unknown_def_type};
4062 int ndts = 2;
4063 gimple *new_stmt = NULL;
4064 stmt_vec_info prev_stmt_info;
4065 int nunits_in;
4066 int nunits_out;
4067 tree vectype_out, vectype_in;
4068 int ncopies, i, j;
4069 tree lhs_type, rhs_type;
4070 enum { NARROW, NONE, WIDEN } modifier;
4071 vec<tree> vec_oprnds0 = vNULL;
4072 vec<tree> vec_oprnds1 = vNULL;
4073 tree vop0;
4074 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
4075 vec_info *vinfo = stmt_info->vinfo;
4076 int multi_step_cvt = 0;
4077 vec<tree> interm_types = vNULL;
4078 tree last_oprnd, intermediate_type, cvt_type = NULL_TREE;
4079 int op_type;
4080 unsigned short fltsz;
4082 /* Is STMT a vectorizable conversion? */
4084 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
4085 return false;
4087 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
4088 && ! vec_stmt)
4089 return false;
4091 if (!is_gimple_assign (stmt))
4092 return false;
4094 if (TREE_CODE (gimple_assign_lhs (stmt)) != SSA_NAME)
4095 return false;
4097 code = gimple_assign_rhs_code (stmt);
4098 if (!CONVERT_EXPR_CODE_P (code)
4099 && code != FIX_TRUNC_EXPR
4100 && code != FLOAT_EXPR
4101 && code != WIDEN_MULT_EXPR
4102 && code != WIDEN_LSHIFT_EXPR)
4103 return false;
4105 op_type = TREE_CODE_LENGTH (code);
4107 /* Check types of lhs and rhs. */
4108 scalar_dest = gimple_assign_lhs (stmt);
4109 lhs_type = TREE_TYPE (scalar_dest);
4110 vectype_out = STMT_VINFO_VECTYPE (stmt_info);
4112 op0 = gimple_assign_rhs1 (stmt);
4113 rhs_type = TREE_TYPE (op0);
4115 if ((code != FIX_TRUNC_EXPR && code != FLOAT_EXPR)
4116 && !((INTEGRAL_TYPE_P (lhs_type)
4117 && INTEGRAL_TYPE_P (rhs_type))
4118 || (SCALAR_FLOAT_TYPE_P (lhs_type)
4119 && SCALAR_FLOAT_TYPE_P (rhs_type))))
4120 return false;
4122 if (!VECTOR_BOOLEAN_TYPE_P (vectype_out)
4123 && ((INTEGRAL_TYPE_P (lhs_type)
4124 && !type_has_mode_precision_p (lhs_type))
4125 || (INTEGRAL_TYPE_P (rhs_type)
4126 && !type_has_mode_precision_p (rhs_type))))
4128 if (dump_enabled_p ())
4129 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4130 "type conversion to/from bit-precision unsupported."
4131 "\n");
4132 return false;
4135 /* Check the operands of the operation. */
4136 if (!vect_is_simple_use (op0, vinfo, &def_stmt, &dt[0], &vectype_in))
4138 if (dump_enabled_p ())
4139 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4140 "use not simple.\n");
4141 return false;
4143 if (op_type == binary_op)
4145 bool ok;
4147 op1 = gimple_assign_rhs2 (stmt);
4148 gcc_assert (code == WIDEN_MULT_EXPR || code == WIDEN_LSHIFT_EXPR);
4149 /* For WIDEN_MULT_EXPR, if OP0 is a constant, use the type of
4150 OP1. */
4151 if (CONSTANT_CLASS_P (op0))
4152 ok = vect_is_simple_use (op1, vinfo, &def_stmt, &dt[1], &vectype_in);
4153 else
4154 ok = vect_is_simple_use (op1, vinfo, &def_stmt, &dt[1]);
4156 if (!ok)
4158 if (dump_enabled_p ())
4159 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4160 "use not simple.\n");
4161 return false;
4165 /* If op0 is an external or constant defs use a vector type of
4166 the same size as the output vector type. */
4167 if (!vectype_in)
4168 vectype_in = get_same_sized_vectype (rhs_type, vectype_out);
4169 if (vec_stmt)
4170 gcc_assert (vectype_in);
4171 if (!vectype_in)
4173 if (dump_enabled_p ())
4175 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4176 "no vectype for scalar type ");
4177 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, rhs_type);
4178 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
4181 return false;
4184 if (VECTOR_BOOLEAN_TYPE_P (vectype_out)
4185 && !VECTOR_BOOLEAN_TYPE_P (vectype_in))
4187 if (dump_enabled_p ())
4189 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4190 "can't convert between boolean and non "
4191 "boolean vectors");
4192 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM, rhs_type);
4193 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
4196 return false;
4199 nunits_in = TYPE_VECTOR_SUBPARTS (vectype_in);
4200 nunits_out = TYPE_VECTOR_SUBPARTS (vectype_out);
4201 if (nunits_in < nunits_out)
4202 modifier = NARROW;
4203 else if (nunits_out == nunits_in)
4204 modifier = NONE;
4205 else
4206 modifier = WIDEN;
4208 /* Multiple types in SLP are handled by creating the appropriate number of
4209 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
4210 case of SLP. */
4211 if (slp_node)
4212 ncopies = 1;
4213 else if (modifier == NARROW)
4214 ncopies = vect_get_num_copies (loop_vinfo, vectype_out);
4215 else
4216 ncopies = vect_get_num_copies (loop_vinfo, vectype_in);
4218 /* Sanity check: make sure that at least one copy of the vectorized stmt
4219 needs to be generated. */
4220 gcc_assert (ncopies >= 1);
4222 bool found_mode = false;
4223 scalar_mode lhs_mode = SCALAR_TYPE_MODE (lhs_type);
4224 scalar_mode rhs_mode = SCALAR_TYPE_MODE (rhs_type);
4225 opt_scalar_mode rhs_mode_iter;
4227 /* Supportable by target? */
4228 switch (modifier)
4230 case NONE:
4231 if (code != FIX_TRUNC_EXPR && code != FLOAT_EXPR)
4232 return false;
4233 if (supportable_convert_operation (code, vectype_out, vectype_in,
4234 &decl1, &code1))
4235 break;
4236 /* FALLTHRU */
4237 unsupported:
4238 if (dump_enabled_p ())
4239 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4240 "conversion not supported by target.\n");
4241 return false;
4243 case WIDEN:
4244 if (supportable_widening_operation (code, stmt, vectype_out, vectype_in,
4245 &code1, &code2, &multi_step_cvt,
4246 &interm_types))
4248 /* Binary widening operation can only be supported directly by the
4249 architecture. */
4250 gcc_assert (!(multi_step_cvt && op_type == binary_op));
4251 break;
4254 if (code != FLOAT_EXPR
4255 || GET_MODE_SIZE (lhs_mode) <= GET_MODE_SIZE (rhs_mode))
4256 goto unsupported;
4258 fltsz = GET_MODE_SIZE (lhs_mode);
4259 FOR_EACH_2XWIDER_MODE (rhs_mode_iter, rhs_mode)
4261 rhs_mode = rhs_mode_iter.require ();
4262 if (GET_MODE_SIZE (rhs_mode) > fltsz)
4263 break;
4265 cvt_type
4266 = build_nonstandard_integer_type (GET_MODE_BITSIZE (rhs_mode), 0);
4267 cvt_type = get_same_sized_vectype (cvt_type, vectype_in);
4268 if (cvt_type == NULL_TREE)
4269 goto unsupported;
4271 if (GET_MODE_SIZE (rhs_mode) == fltsz)
4273 if (!supportable_convert_operation (code, vectype_out,
4274 cvt_type, &decl1, &codecvt1))
4275 goto unsupported;
4277 else if (!supportable_widening_operation (code, stmt, vectype_out,
4278 cvt_type, &codecvt1,
4279 &codecvt2, &multi_step_cvt,
4280 &interm_types))
4281 continue;
4282 else
4283 gcc_assert (multi_step_cvt == 0);
4285 if (supportable_widening_operation (NOP_EXPR, stmt, cvt_type,
4286 vectype_in, &code1, &code2,
4287 &multi_step_cvt, &interm_types))
4289 found_mode = true;
4290 break;
4294 if (!found_mode)
4295 goto unsupported;
4297 if (GET_MODE_SIZE (rhs_mode) == fltsz)
4298 codecvt2 = ERROR_MARK;
4299 else
4301 multi_step_cvt++;
4302 interm_types.safe_push (cvt_type);
4303 cvt_type = NULL_TREE;
4305 break;
4307 case NARROW:
4308 gcc_assert (op_type == unary_op);
4309 if (supportable_narrowing_operation (code, vectype_out, vectype_in,
4310 &code1, &multi_step_cvt,
4311 &interm_types))
4312 break;
4314 if (code != FIX_TRUNC_EXPR
4315 || GET_MODE_SIZE (lhs_mode) >= GET_MODE_SIZE (rhs_mode))
4316 goto unsupported;
4318 cvt_type
4319 = build_nonstandard_integer_type (GET_MODE_BITSIZE (rhs_mode), 0);
4320 cvt_type = get_same_sized_vectype (cvt_type, vectype_in);
4321 if (cvt_type == NULL_TREE)
4322 goto unsupported;
4323 if (!supportable_convert_operation (code, cvt_type, vectype_in,
4324 &decl1, &codecvt1))
4325 goto unsupported;
4326 if (supportable_narrowing_operation (NOP_EXPR, vectype_out, cvt_type,
4327 &code1, &multi_step_cvt,
4328 &interm_types))
4329 break;
4330 goto unsupported;
4332 default:
4333 gcc_unreachable ();
4336 if (!vec_stmt) /* transformation not required. */
4338 if (dump_enabled_p ())
4339 dump_printf_loc (MSG_NOTE, vect_location,
4340 "=== vectorizable_conversion ===\n");
4341 if (code == FIX_TRUNC_EXPR || code == FLOAT_EXPR)
4343 STMT_VINFO_TYPE (stmt_info) = type_conversion_vec_info_type;
4344 vect_model_simple_cost (stmt_info, ncopies, dt, ndts, NULL, NULL);
4346 else if (modifier == NARROW)
4348 STMT_VINFO_TYPE (stmt_info) = type_demotion_vec_info_type;
4349 vect_model_promotion_demotion_cost (stmt_info, dt, multi_step_cvt);
4351 else
4353 STMT_VINFO_TYPE (stmt_info) = type_promotion_vec_info_type;
4354 vect_model_promotion_demotion_cost (stmt_info, dt, multi_step_cvt);
4356 interm_types.release ();
4357 return true;
4360 /* Transform. */
4361 if (dump_enabled_p ())
4362 dump_printf_loc (MSG_NOTE, vect_location,
4363 "transform conversion. ncopies = %d.\n", ncopies);
4365 if (op_type == binary_op)
4367 if (CONSTANT_CLASS_P (op0))
4368 op0 = fold_convert (TREE_TYPE (op1), op0);
4369 else if (CONSTANT_CLASS_P (op1))
4370 op1 = fold_convert (TREE_TYPE (op0), op1);
4373 /* In case of multi-step conversion, we first generate conversion operations
4374 to the intermediate types, and then from that types to the final one.
4375 We create vector destinations for the intermediate type (TYPES) received
4376 from supportable_*_operation, and store them in the correct order
4377 for future use in vect_create_vectorized_*_stmts (). */
4378 auto_vec<tree> vec_dsts (multi_step_cvt + 1);
4379 vec_dest = vect_create_destination_var (scalar_dest,
4380 (cvt_type && modifier == WIDEN)
4381 ? cvt_type : vectype_out);
4382 vec_dsts.quick_push (vec_dest);
4384 if (multi_step_cvt)
4386 for (i = interm_types.length () - 1;
4387 interm_types.iterate (i, &intermediate_type); i--)
4389 vec_dest = vect_create_destination_var (scalar_dest,
4390 intermediate_type);
4391 vec_dsts.quick_push (vec_dest);
4395 if (cvt_type)
4396 vec_dest = vect_create_destination_var (scalar_dest,
4397 modifier == WIDEN
4398 ? vectype_out : cvt_type);
4400 if (!slp_node)
4402 if (modifier == WIDEN)
4404 vec_oprnds0.create (multi_step_cvt ? vect_pow2 (multi_step_cvt) : 1);
4405 if (op_type == binary_op)
4406 vec_oprnds1.create (1);
4408 else if (modifier == NARROW)
4409 vec_oprnds0.create (
4410 2 * (multi_step_cvt ? vect_pow2 (multi_step_cvt) : 1));
4412 else if (code == WIDEN_LSHIFT_EXPR)
4413 vec_oprnds1.create (slp_node->vec_stmts_size);
4415 last_oprnd = op0;
4416 prev_stmt_info = NULL;
4417 switch (modifier)
4419 case NONE:
4420 for (j = 0; j < ncopies; j++)
4422 if (j == 0)
4423 vect_get_vec_defs (op0, NULL, stmt, &vec_oprnds0, NULL, slp_node);
4424 else
4425 vect_get_vec_defs_for_stmt_copy (dt, &vec_oprnds0, NULL);
4427 FOR_EACH_VEC_ELT (vec_oprnds0, i, vop0)
4429 /* Arguments are ready, create the new vector stmt. */
4430 if (code1 == CALL_EXPR)
4432 new_stmt = gimple_build_call (decl1, 1, vop0);
4433 new_temp = make_ssa_name (vec_dest, new_stmt);
4434 gimple_call_set_lhs (new_stmt, new_temp);
4436 else
4438 gcc_assert (TREE_CODE_LENGTH (code1) == unary_op);
4439 new_stmt = gimple_build_assign (vec_dest, code1, vop0);
4440 new_temp = make_ssa_name (vec_dest, new_stmt);
4441 gimple_assign_set_lhs (new_stmt, new_temp);
4444 vect_finish_stmt_generation (stmt, new_stmt, gsi);
4445 if (slp_node)
4446 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
4447 else
4449 if (!prev_stmt_info)
4450 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
4451 else
4452 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
4453 prev_stmt_info = vinfo_for_stmt (new_stmt);
4457 break;
4459 case WIDEN:
4460 /* In case the vectorization factor (VF) is bigger than the number
4461 of elements that we can fit in a vectype (nunits), we have to
4462 generate more than one vector stmt - i.e - we need to "unroll"
4463 the vector stmt by a factor VF/nunits. */
4464 for (j = 0; j < ncopies; j++)
4466 /* Handle uses. */
4467 if (j == 0)
4469 if (slp_node)
4471 if (code == WIDEN_LSHIFT_EXPR)
4473 unsigned int k;
4475 vec_oprnd1 = op1;
4476 /* Store vec_oprnd1 for every vector stmt to be created
4477 for SLP_NODE. We check during the analysis that all
4478 the shift arguments are the same. */
4479 for (k = 0; k < slp_node->vec_stmts_size - 1; k++)
4480 vec_oprnds1.quick_push (vec_oprnd1);
4482 vect_get_vec_defs (op0, NULL_TREE, stmt, &vec_oprnds0, NULL,
4483 slp_node);
4485 else
4486 vect_get_vec_defs (op0, op1, stmt, &vec_oprnds0,
4487 &vec_oprnds1, slp_node);
4489 else
4491 vec_oprnd0 = vect_get_vec_def_for_operand (op0, stmt);
4492 vec_oprnds0.quick_push (vec_oprnd0);
4493 if (op_type == binary_op)
4495 if (code == WIDEN_LSHIFT_EXPR)
4496 vec_oprnd1 = op1;
4497 else
4498 vec_oprnd1 = vect_get_vec_def_for_operand (op1, stmt);
4499 vec_oprnds1.quick_push (vec_oprnd1);
4503 else
4505 vec_oprnd0 = vect_get_vec_def_for_stmt_copy (dt[0], vec_oprnd0);
4506 vec_oprnds0.truncate (0);
4507 vec_oprnds0.quick_push (vec_oprnd0);
4508 if (op_type == binary_op)
4510 if (code == WIDEN_LSHIFT_EXPR)
4511 vec_oprnd1 = op1;
4512 else
4513 vec_oprnd1 = vect_get_vec_def_for_stmt_copy (dt[1],
4514 vec_oprnd1);
4515 vec_oprnds1.truncate (0);
4516 vec_oprnds1.quick_push (vec_oprnd1);
4520 /* Arguments are ready. Create the new vector stmts. */
4521 for (i = multi_step_cvt; i >= 0; i--)
4523 tree this_dest = vec_dsts[i];
4524 enum tree_code c1 = code1, c2 = code2;
4525 if (i == 0 && codecvt2 != ERROR_MARK)
4527 c1 = codecvt1;
4528 c2 = codecvt2;
4530 vect_create_vectorized_promotion_stmts (&vec_oprnds0,
4531 &vec_oprnds1,
4532 stmt, this_dest, gsi,
4533 c1, c2, decl1, decl2,
4534 op_type);
4537 FOR_EACH_VEC_ELT (vec_oprnds0, i, vop0)
4539 if (cvt_type)
4541 if (codecvt1 == CALL_EXPR)
4543 new_stmt = gimple_build_call (decl1, 1, vop0);
4544 new_temp = make_ssa_name (vec_dest, new_stmt);
4545 gimple_call_set_lhs (new_stmt, new_temp);
4547 else
4549 gcc_assert (TREE_CODE_LENGTH (codecvt1) == unary_op);
4550 new_temp = make_ssa_name (vec_dest);
4551 new_stmt = gimple_build_assign (new_temp, codecvt1,
4552 vop0);
4555 vect_finish_stmt_generation (stmt, new_stmt, gsi);
4557 else
4558 new_stmt = SSA_NAME_DEF_STMT (vop0);
4560 if (slp_node)
4561 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
4562 else
4564 if (!prev_stmt_info)
4565 STMT_VINFO_VEC_STMT (stmt_info) = new_stmt;
4566 else
4567 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
4568 prev_stmt_info = vinfo_for_stmt (new_stmt);
4573 *vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
4574 break;
4576 case NARROW:
4577 /* In case the vectorization factor (VF) is bigger than the number
4578 of elements that we can fit in a vectype (nunits), we have to
4579 generate more than one vector stmt - i.e - we need to "unroll"
4580 the vector stmt by a factor VF/nunits. */
4581 for (j = 0; j < ncopies; j++)
4583 /* Handle uses. */
4584 if (slp_node)
4585 vect_get_vec_defs (op0, NULL_TREE, stmt, &vec_oprnds0, NULL,
4586 slp_node);
4587 else
4589 vec_oprnds0.truncate (0);
4590 vect_get_loop_based_defs (&last_oprnd, stmt, dt[0], &vec_oprnds0,
4591 vect_pow2 (multi_step_cvt) - 1);
4594 /* Arguments are ready. Create the new vector stmts. */
4595 if (cvt_type)
4596 FOR_EACH_VEC_ELT (vec_oprnds0, i, vop0)
4598 if (codecvt1 == CALL_EXPR)
4600 new_stmt = gimple_build_call (decl1, 1, vop0);
4601 new_temp = make_ssa_name (vec_dest, new_stmt);
4602 gimple_call_set_lhs (new_stmt, new_temp);
4604 else
4606 gcc_assert (TREE_CODE_LENGTH (codecvt1) == unary_op);
4607 new_temp = make_ssa_name (vec_dest);
4608 new_stmt = gimple_build_assign (new_temp, codecvt1,
4609 vop0);
4612 vect_finish_stmt_generation (stmt, new_stmt, gsi);
4613 vec_oprnds0[i] = new_temp;
4616 vect_create_vectorized_demotion_stmts (&vec_oprnds0, multi_step_cvt,
4617 stmt, vec_dsts, gsi,
4618 slp_node, code1,
4619 &prev_stmt_info);
4622 *vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
4623 break;
4626 vec_oprnds0.release ();
4627 vec_oprnds1.release ();
4628 interm_types.release ();
4630 return true;
4634 /* Function vectorizable_assignment.
4636 Check if STMT performs an assignment (copy) that can be vectorized.
4637 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
4638 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
4639 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
4641 static bool
4642 vectorizable_assignment (gimple *stmt, gimple_stmt_iterator *gsi,
4643 gimple **vec_stmt, slp_tree slp_node)
4645 tree vec_dest;
4646 tree scalar_dest;
4647 tree op;
4648 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
4649 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
4650 tree new_temp;
4651 gimple *def_stmt;
4652 enum vect_def_type dt[1] = {vect_unknown_def_type};
4653 int ndts = 1;
4654 int ncopies;
4655 int i, j;
4656 vec<tree> vec_oprnds = vNULL;
4657 tree vop;
4658 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
4659 vec_info *vinfo = stmt_info->vinfo;
4660 gimple *new_stmt = NULL;
4661 stmt_vec_info prev_stmt_info = NULL;
4662 enum tree_code code;
4663 tree vectype_in;
4665 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
4666 return false;
4668 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
4669 && ! vec_stmt)
4670 return false;
4672 /* Is vectorizable assignment? */
4673 if (!is_gimple_assign (stmt))
4674 return false;
4676 scalar_dest = gimple_assign_lhs (stmt);
4677 if (TREE_CODE (scalar_dest) != SSA_NAME)
4678 return false;
4680 code = gimple_assign_rhs_code (stmt);
4681 if (gimple_assign_single_p (stmt)
4682 || code == PAREN_EXPR
4683 || CONVERT_EXPR_CODE_P (code))
4684 op = gimple_assign_rhs1 (stmt);
4685 else
4686 return false;
4688 if (code == VIEW_CONVERT_EXPR)
4689 op = TREE_OPERAND (op, 0);
4691 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
4692 unsigned int nunits = TYPE_VECTOR_SUBPARTS (vectype);
4694 /* Multiple types in SLP are handled by creating the appropriate number of
4695 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
4696 case of SLP. */
4697 if (slp_node)
4698 ncopies = 1;
4699 else
4700 ncopies = vect_get_num_copies (loop_vinfo, vectype);
4702 gcc_assert (ncopies >= 1);
4704 if (!vect_is_simple_use (op, vinfo, &def_stmt, &dt[0], &vectype_in))
4706 if (dump_enabled_p ())
4707 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4708 "use not simple.\n");
4709 return false;
4712 /* We can handle NOP_EXPR conversions that do not change the number
4713 of elements or the vector size. */
4714 if ((CONVERT_EXPR_CODE_P (code)
4715 || code == VIEW_CONVERT_EXPR)
4716 && (!vectype_in
4717 || TYPE_VECTOR_SUBPARTS (vectype_in) != nunits
4718 || (GET_MODE_SIZE (TYPE_MODE (vectype))
4719 != GET_MODE_SIZE (TYPE_MODE (vectype_in)))))
4720 return false;
4722 /* We do not handle bit-precision changes. */
4723 if ((CONVERT_EXPR_CODE_P (code)
4724 || code == VIEW_CONVERT_EXPR)
4725 && INTEGRAL_TYPE_P (TREE_TYPE (scalar_dest))
4726 && (!type_has_mode_precision_p (TREE_TYPE (scalar_dest))
4727 || !type_has_mode_precision_p (TREE_TYPE (op)))
4728 /* But a conversion that does not change the bit-pattern is ok. */
4729 && !((TYPE_PRECISION (TREE_TYPE (scalar_dest))
4730 > TYPE_PRECISION (TREE_TYPE (op)))
4731 && TYPE_UNSIGNED (TREE_TYPE (op)))
4732 /* Conversion between boolean types of different sizes is
4733 a simple assignment in case their vectypes are same
4734 boolean vectors. */
4735 && (!VECTOR_BOOLEAN_TYPE_P (vectype)
4736 || !VECTOR_BOOLEAN_TYPE_P (vectype_in)))
4738 if (dump_enabled_p ())
4739 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4740 "type conversion to/from bit-precision "
4741 "unsupported.\n");
4742 return false;
4745 if (!vec_stmt) /* transformation not required. */
4747 STMT_VINFO_TYPE (stmt_info) = assignment_vec_info_type;
4748 if (dump_enabled_p ())
4749 dump_printf_loc (MSG_NOTE, vect_location,
4750 "=== vectorizable_assignment ===\n");
4751 vect_model_simple_cost (stmt_info, ncopies, dt, ndts, NULL, NULL);
4752 return true;
4755 /* Transform. */
4756 if (dump_enabled_p ())
4757 dump_printf_loc (MSG_NOTE, vect_location, "transform assignment.\n");
4759 /* Handle def. */
4760 vec_dest = vect_create_destination_var (scalar_dest, vectype);
4762 /* Handle use. */
4763 for (j = 0; j < ncopies; j++)
4765 /* Handle uses. */
4766 if (j == 0)
4767 vect_get_vec_defs (op, NULL, stmt, &vec_oprnds, NULL, slp_node);
4768 else
4769 vect_get_vec_defs_for_stmt_copy (dt, &vec_oprnds, NULL);
4771 /* Arguments are ready. create the new vector stmt. */
4772 FOR_EACH_VEC_ELT (vec_oprnds, i, vop)
4774 if (CONVERT_EXPR_CODE_P (code)
4775 || code == VIEW_CONVERT_EXPR)
4776 vop = build1 (VIEW_CONVERT_EXPR, vectype, vop);
4777 new_stmt = gimple_build_assign (vec_dest, vop);
4778 new_temp = make_ssa_name (vec_dest, new_stmt);
4779 gimple_assign_set_lhs (new_stmt, new_temp);
4780 vect_finish_stmt_generation (stmt, new_stmt, gsi);
4781 if (slp_node)
4782 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
4785 if (slp_node)
4786 continue;
4788 if (j == 0)
4789 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
4790 else
4791 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
4793 prev_stmt_info = vinfo_for_stmt (new_stmt);
4796 vec_oprnds.release ();
4797 return true;
4801 /* Return TRUE if CODE (a shift operation) is supported for SCALAR_TYPE
4802 either as shift by a scalar or by a vector. */
4804 bool
4805 vect_supportable_shift (enum tree_code code, tree scalar_type)
4808 machine_mode vec_mode;
4809 optab optab;
4810 int icode;
4811 tree vectype;
4813 vectype = get_vectype_for_scalar_type (scalar_type);
4814 if (!vectype)
4815 return false;
4817 optab = optab_for_tree_code (code, vectype, optab_scalar);
4818 if (!optab
4819 || optab_handler (optab, TYPE_MODE (vectype)) == CODE_FOR_nothing)
4821 optab = optab_for_tree_code (code, vectype, optab_vector);
4822 if (!optab
4823 || (optab_handler (optab, TYPE_MODE (vectype))
4824 == CODE_FOR_nothing))
4825 return false;
4828 vec_mode = TYPE_MODE (vectype);
4829 icode = (int) optab_handler (optab, vec_mode);
4830 if (icode == CODE_FOR_nothing)
4831 return false;
4833 return true;
4837 /* Function vectorizable_shift.
4839 Check if STMT performs a shift operation that can be vectorized.
4840 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
4841 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
4842 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
4844 static bool
4845 vectorizable_shift (gimple *stmt, gimple_stmt_iterator *gsi,
4846 gimple **vec_stmt, slp_tree slp_node)
4848 tree vec_dest;
4849 tree scalar_dest;
4850 tree op0, op1 = NULL;
4851 tree vec_oprnd1 = NULL_TREE;
4852 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
4853 tree vectype;
4854 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
4855 enum tree_code code;
4856 machine_mode vec_mode;
4857 tree new_temp;
4858 optab optab;
4859 int icode;
4860 machine_mode optab_op2_mode;
4861 gimple *def_stmt;
4862 enum vect_def_type dt[2] = {vect_unknown_def_type, vect_unknown_def_type};
4863 int ndts = 2;
4864 gimple *new_stmt = NULL;
4865 stmt_vec_info prev_stmt_info;
4866 int nunits_in;
4867 int nunits_out;
4868 tree vectype_out;
4869 tree op1_vectype;
4870 int ncopies;
4871 int j, i;
4872 vec<tree> vec_oprnds0 = vNULL;
4873 vec<tree> vec_oprnds1 = vNULL;
4874 tree vop0, vop1;
4875 unsigned int k;
4876 bool scalar_shift_arg = true;
4877 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
4878 vec_info *vinfo = stmt_info->vinfo;
4880 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
4881 return false;
4883 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
4884 && ! vec_stmt)
4885 return false;
4887 /* Is STMT a vectorizable binary/unary operation? */
4888 if (!is_gimple_assign (stmt))
4889 return false;
4891 if (TREE_CODE (gimple_assign_lhs (stmt)) != SSA_NAME)
4892 return false;
4894 code = gimple_assign_rhs_code (stmt);
4896 if (!(code == LSHIFT_EXPR || code == RSHIFT_EXPR || code == LROTATE_EXPR
4897 || code == RROTATE_EXPR))
4898 return false;
4900 scalar_dest = gimple_assign_lhs (stmt);
4901 vectype_out = STMT_VINFO_VECTYPE (stmt_info);
4902 if (!type_has_mode_precision_p (TREE_TYPE (scalar_dest)))
4904 if (dump_enabled_p ())
4905 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4906 "bit-precision shifts not supported.\n");
4907 return false;
4910 op0 = gimple_assign_rhs1 (stmt);
4911 if (!vect_is_simple_use (op0, vinfo, &def_stmt, &dt[0], &vectype))
4913 if (dump_enabled_p ())
4914 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4915 "use not simple.\n");
4916 return false;
4918 /* If op0 is an external or constant def use a vector type with
4919 the same size as the output vector type. */
4920 if (!vectype)
4921 vectype = get_same_sized_vectype (TREE_TYPE (op0), vectype_out);
4922 if (vec_stmt)
4923 gcc_assert (vectype);
4924 if (!vectype)
4926 if (dump_enabled_p ())
4927 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4928 "no vectype for scalar type\n");
4929 return false;
4932 nunits_out = TYPE_VECTOR_SUBPARTS (vectype_out);
4933 nunits_in = TYPE_VECTOR_SUBPARTS (vectype);
4934 if (nunits_out != nunits_in)
4935 return false;
4937 op1 = gimple_assign_rhs2 (stmt);
4938 if (!vect_is_simple_use (op1, vinfo, &def_stmt, &dt[1], &op1_vectype))
4940 if (dump_enabled_p ())
4941 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4942 "use not simple.\n");
4943 return false;
4946 /* Multiple types in SLP are handled by creating the appropriate number of
4947 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
4948 case of SLP. */
4949 if (slp_node)
4950 ncopies = 1;
4951 else
4952 ncopies = vect_get_num_copies (loop_vinfo, vectype);
4954 gcc_assert (ncopies >= 1);
4956 /* Determine whether the shift amount is a vector, or scalar. If the
4957 shift/rotate amount is a vector, use the vector/vector shift optabs. */
4959 if ((dt[1] == vect_internal_def
4960 || dt[1] == vect_induction_def)
4961 && !slp_node)
4962 scalar_shift_arg = false;
4963 else if (dt[1] == vect_constant_def
4964 || dt[1] == vect_external_def
4965 || dt[1] == vect_internal_def)
4967 /* In SLP, need to check whether the shift count is the same,
4968 in loops if it is a constant or invariant, it is always
4969 a scalar shift. */
4970 if (slp_node)
4972 vec<gimple *> stmts = SLP_TREE_SCALAR_STMTS (slp_node);
4973 gimple *slpstmt;
4975 FOR_EACH_VEC_ELT (stmts, k, slpstmt)
4976 if (!operand_equal_p (gimple_assign_rhs2 (slpstmt), op1, 0))
4977 scalar_shift_arg = false;
4980 /* If the shift amount is computed by a pattern stmt we cannot
4981 use the scalar amount directly thus give up and use a vector
4982 shift. */
4983 if (dt[1] == vect_internal_def)
4985 gimple *def = SSA_NAME_DEF_STMT (op1);
4986 if (is_pattern_stmt_p (vinfo_for_stmt (def)))
4987 scalar_shift_arg = false;
4990 else
4992 if (dump_enabled_p ())
4993 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
4994 "operand mode requires invariant argument.\n");
4995 return false;
4998 /* Vector shifted by vector. */
4999 if (!scalar_shift_arg)
5001 optab = optab_for_tree_code (code, vectype, optab_vector);
5002 if (dump_enabled_p ())
5003 dump_printf_loc (MSG_NOTE, vect_location,
5004 "vector/vector shift/rotate found.\n");
5006 if (!op1_vectype)
5007 op1_vectype = get_same_sized_vectype (TREE_TYPE (op1), vectype_out);
5008 if (op1_vectype == NULL_TREE
5009 || TYPE_MODE (op1_vectype) != TYPE_MODE (vectype))
5011 if (dump_enabled_p ())
5012 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5013 "unusable type for last operand in"
5014 " vector/vector shift/rotate.\n");
5015 return false;
5018 /* See if the machine has a vector shifted by scalar insn and if not
5019 then see if it has a vector shifted by vector insn. */
5020 else
5022 optab = optab_for_tree_code (code, vectype, optab_scalar);
5023 if (optab
5024 && optab_handler (optab, TYPE_MODE (vectype)) != CODE_FOR_nothing)
5026 if (dump_enabled_p ())
5027 dump_printf_loc (MSG_NOTE, vect_location,
5028 "vector/scalar shift/rotate found.\n");
5030 else
5032 optab = optab_for_tree_code (code, vectype, optab_vector);
5033 if (optab
5034 && (optab_handler (optab, TYPE_MODE (vectype))
5035 != CODE_FOR_nothing))
5037 scalar_shift_arg = false;
5039 if (dump_enabled_p ())
5040 dump_printf_loc (MSG_NOTE, vect_location,
5041 "vector/vector shift/rotate found.\n");
5043 /* Unlike the other binary operators, shifts/rotates have
5044 the rhs being int, instead of the same type as the lhs,
5045 so make sure the scalar is the right type if we are
5046 dealing with vectors of long long/long/short/char. */
5047 if (dt[1] == vect_constant_def)
5048 op1 = fold_convert (TREE_TYPE (vectype), op1);
5049 else if (!useless_type_conversion_p (TREE_TYPE (vectype),
5050 TREE_TYPE (op1)))
5052 if (slp_node
5053 && TYPE_MODE (TREE_TYPE (vectype))
5054 != TYPE_MODE (TREE_TYPE (op1)))
5056 if (dump_enabled_p ())
5057 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5058 "unusable type for last operand in"
5059 " vector/vector shift/rotate.\n");
5060 return false;
5062 if (vec_stmt && !slp_node)
5064 op1 = fold_convert (TREE_TYPE (vectype), op1);
5065 op1 = vect_init_vector (stmt, op1,
5066 TREE_TYPE (vectype), NULL);
5073 /* Supportable by target? */
5074 if (!optab)
5076 if (dump_enabled_p ())
5077 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5078 "no optab.\n");
5079 return false;
5081 vec_mode = TYPE_MODE (vectype);
5082 icode = (int) optab_handler (optab, vec_mode);
5083 if (icode == CODE_FOR_nothing)
5085 if (dump_enabled_p ())
5086 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5087 "op not supported by target.\n");
5088 /* Check only during analysis. */
5089 if (GET_MODE_SIZE (vec_mode) != UNITS_PER_WORD
5090 || (!vec_stmt
5091 && !vect_worthwhile_without_simd_p (vinfo, code)))
5092 return false;
5093 if (dump_enabled_p ())
5094 dump_printf_loc (MSG_NOTE, vect_location,
5095 "proceeding using word mode.\n");
5098 /* Worthwhile without SIMD support? Check only during analysis. */
5099 if (!vec_stmt
5100 && !VECTOR_MODE_P (TYPE_MODE (vectype))
5101 && !vect_worthwhile_without_simd_p (vinfo, code))
5103 if (dump_enabled_p ())
5104 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5105 "not worthwhile without SIMD support.\n");
5106 return false;
5109 if (!vec_stmt) /* transformation not required. */
5111 STMT_VINFO_TYPE (stmt_info) = shift_vec_info_type;
5112 if (dump_enabled_p ())
5113 dump_printf_loc (MSG_NOTE, vect_location,
5114 "=== vectorizable_shift ===\n");
5115 vect_model_simple_cost (stmt_info, ncopies, dt, ndts, NULL, NULL);
5116 return true;
5119 /* Transform. */
5121 if (dump_enabled_p ())
5122 dump_printf_loc (MSG_NOTE, vect_location,
5123 "transform binary/unary operation.\n");
5125 /* Handle def. */
5126 vec_dest = vect_create_destination_var (scalar_dest, vectype);
5128 prev_stmt_info = NULL;
5129 for (j = 0; j < ncopies; j++)
5131 /* Handle uses. */
5132 if (j == 0)
5134 if (scalar_shift_arg)
5136 /* Vector shl and shr insn patterns can be defined with scalar
5137 operand 2 (shift operand). In this case, use constant or loop
5138 invariant op1 directly, without extending it to vector mode
5139 first. */
5140 optab_op2_mode = insn_data[icode].operand[2].mode;
5141 if (!VECTOR_MODE_P (optab_op2_mode))
5143 if (dump_enabled_p ())
5144 dump_printf_loc (MSG_NOTE, vect_location,
5145 "operand 1 using scalar mode.\n");
5146 vec_oprnd1 = op1;
5147 vec_oprnds1.create (slp_node ? slp_node->vec_stmts_size : 1);
5148 vec_oprnds1.quick_push (vec_oprnd1);
5149 if (slp_node)
5151 /* Store vec_oprnd1 for every vector stmt to be created
5152 for SLP_NODE. We check during the analysis that all
5153 the shift arguments are the same.
5154 TODO: Allow different constants for different vector
5155 stmts generated for an SLP instance. */
5156 for (k = 0; k < slp_node->vec_stmts_size - 1; k++)
5157 vec_oprnds1.quick_push (vec_oprnd1);
5162 /* vec_oprnd1 is available if operand 1 should be of a scalar-type
5163 (a special case for certain kind of vector shifts); otherwise,
5164 operand 1 should be of a vector type (the usual case). */
5165 if (vec_oprnd1)
5166 vect_get_vec_defs (op0, NULL_TREE, stmt, &vec_oprnds0, NULL,
5167 slp_node);
5168 else
5169 vect_get_vec_defs (op0, op1, stmt, &vec_oprnds0, &vec_oprnds1,
5170 slp_node);
5172 else
5173 vect_get_vec_defs_for_stmt_copy (dt, &vec_oprnds0, &vec_oprnds1);
5175 /* Arguments are ready. Create the new vector stmt. */
5176 FOR_EACH_VEC_ELT (vec_oprnds0, i, vop0)
5178 vop1 = vec_oprnds1[i];
5179 new_stmt = gimple_build_assign (vec_dest, code, vop0, vop1);
5180 new_temp = make_ssa_name (vec_dest, new_stmt);
5181 gimple_assign_set_lhs (new_stmt, new_temp);
5182 vect_finish_stmt_generation (stmt, new_stmt, gsi);
5183 if (slp_node)
5184 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
5187 if (slp_node)
5188 continue;
5190 if (j == 0)
5191 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
5192 else
5193 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
5194 prev_stmt_info = vinfo_for_stmt (new_stmt);
5197 vec_oprnds0.release ();
5198 vec_oprnds1.release ();
5200 return true;
5204 /* Function vectorizable_operation.
5206 Check if STMT performs a binary, unary or ternary operation that can
5207 be vectorized.
5208 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
5209 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
5210 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
5212 static bool
5213 vectorizable_operation (gimple *stmt, gimple_stmt_iterator *gsi,
5214 gimple **vec_stmt, slp_tree slp_node)
5216 tree vec_dest;
5217 tree scalar_dest;
5218 tree op0, op1 = NULL_TREE, op2 = NULL_TREE;
5219 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
5220 tree vectype;
5221 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
5222 enum tree_code code;
5223 machine_mode vec_mode;
5224 tree new_temp;
5225 int op_type;
5226 optab optab;
5227 bool target_support_p;
5228 gimple *def_stmt;
5229 enum vect_def_type dt[3]
5230 = {vect_unknown_def_type, vect_unknown_def_type, vect_unknown_def_type};
5231 int ndts = 3;
5232 gimple *new_stmt = NULL;
5233 stmt_vec_info prev_stmt_info;
5234 int nunits_in;
5235 int nunits_out;
5236 tree vectype_out;
5237 int ncopies;
5238 int j, i;
5239 vec<tree> vec_oprnds0 = vNULL;
5240 vec<tree> vec_oprnds1 = vNULL;
5241 vec<tree> vec_oprnds2 = vNULL;
5242 tree vop0, vop1, vop2;
5243 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
5244 vec_info *vinfo = stmt_info->vinfo;
5246 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
5247 return false;
5249 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
5250 && ! vec_stmt)
5251 return false;
5253 /* Is STMT a vectorizable binary/unary operation? */
5254 if (!is_gimple_assign (stmt))
5255 return false;
5257 if (TREE_CODE (gimple_assign_lhs (stmt)) != SSA_NAME)
5258 return false;
5260 code = gimple_assign_rhs_code (stmt);
5262 /* For pointer addition, we should use the normal plus for
5263 the vector addition. */
5264 if (code == POINTER_PLUS_EXPR)
5265 code = PLUS_EXPR;
5267 /* Support only unary or binary operations. */
5268 op_type = TREE_CODE_LENGTH (code);
5269 if (op_type != unary_op && op_type != binary_op && op_type != ternary_op)
5271 if (dump_enabled_p ())
5272 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5273 "num. args = %d (not unary/binary/ternary op).\n",
5274 op_type);
5275 return false;
5278 scalar_dest = gimple_assign_lhs (stmt);
5279 vectype_out = STMT_VINFO_VECTYPE (stmt_info);
5281 /* Most operations cannot handle bit-precision types without extra
5282 truncations. */
5283 if (!VECTOR_BOOLEAN_TYPE_P (vectype_out)
5284 && !type_has_mode_precision_p (TREE_TYPE (scalar_dest))
5285 /* Exception are bitwise binary operations. */
5286 && code != BIT_IOR_EXPR
5287 && code != BIT_XOR_EXPR
5288 && code != BIT_AND_EXPR)
5290 if (dump_enabled_p ())
5291 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5292 "bit-precision arithmetic not supported.\n");
5293 return false;
5296 op0 = gimple_assign_rhs1 (stmt);
5297 if (!vect_is_simple_use (op0, vinfo, &def_stmt, &dt[0], &vectype))
5299 if (dump_enabled_p ())
5300 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5301 "use not simple.\n");
5302 return false;
5304 /* If op0 is an external or constant def use a vector type with
5305 the same size as the output vector type. */
5306 if (!vectype)
5308 /* For boolean type we cannot determine vectype by
5309 invariant value (don't know whether it is a vector
5310 of booleans or vector of integers). We use output
5311 vectype because operations on boolean don't change
5312 type. */
5313 if (VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (op0)))
5315 if (!VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (scalar_dest)))
5317 if (dump_enabled_p ())
5318 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5319 "not supported operation on bool value.\n");
5320 return false;
5322 vectype = vectype_out;
5324 else
5325 vectype = get_same_sized_vectype (TREE_TYPE (op0), vectype_out);
5327 if (vec_stmt)
5328 gcc_assert (vectype);
5329 if (!vectype)
5331 if (dump_enabled_p ())
5333 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5334 "no vectype for scalar type ");
5335 dump_generic_expr (MSG_MISSED_OPTIMIZATION, TDF_SLIM,
5336 TREE_TYPE (op0));
5337 dump_printf (MSG_MISSED_OPTIMIZATION, "\n");
5340 return false;
5343 nunits_out = TYPE_VECTOR_SUBPARTS (vectype_out);
5344 nunits_in = TYPE_VECTOR_SUBPARTS (vectype);
5345 if (nunits_out != nunits_in)
5346 return false;
5348 if (op_type == binary_op || op_type == ternary_op)
5350 op1 = gimple_assign_rhs2 (stmt);
5351 if (!vect_is_simple_use (op1, vinfo, &def_stmt, &dt[1]))
5353 if (dump_enabled_p ())
5354 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5355 "use not simple.\n");
5356 return false;
5359 if (op_type == ternary_op)
5361 op2 = gimple_assign_rhs3 (stmt);
5362 if (!vect_is_simple_use (op2, vinfo, &def_stmt, &dt[2]))
5364 if (dump_enabled_p ())
5365 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5366 "use not simple.\n");
5367 return false;
5371 /* Multiple types in SLP are handled by creating the appropriate number of
5372 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
5373 case of SLP. */
5374 if (slp_node)
5375 ncopies = 1;
5376 else
5377 ncopies = vect_get_num_copies (loop_vinfo, vectype);
5379 gcc_assert (ncopies >= 1);
5381 /* Shifts are handled in vectorizable_shift (). */
5382 if (code == LSHIFT_EXPR || code == RSHIFT_EXPR || code == LROTATE_EXPR
5383 || code == RROTATE_EXPR)
5384 return false;
5386 /* Supportable by target? */
5388 vec_mode = TYPE_MODE (vectype);
5389 if (code == MULT_HIGHPART_EXPR)
5390 target_support_p = can_mult_highpart_p (vec_mode, TYPE_UNSIGNED (vectype));
5391 else
5393 optab = optab_for_tree_code (code, vectype, optab_default);
5394 if (!optab)
5396 if (dump_enabled_p ())
5397 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5398 "no optab.\n");
5399 return false;
5401 target_support_p = (optab_handler (optab, vec_mode)
5402 != CODE_FOR_nothing);
5405 if (!target_support_p)
5407 if (dump_enabled_p ())
5408 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5409 "op not supported by target.\n");
5410 /* Check only during analysis. */
5411 if (GET_MODE_SIZE (vec_mode) != UNITS_PER_WORD
5412 || (!vec_stmt && !vect_worthwhile_without_simd_p (vinfo, code)))
5413 return false;
5414 if (dump_enabled_p ())
5415 dump_printf_loc (MSG_NOTE, vect_location,
5416 "proceeding using word mode.\n");
5419 /* Worthwhile without SIMD support? Check only during analysis. */
5420 if (!VECTOR_MODE_P (vec_mode)
5421 && !vec_stmt
5422 && !vect_worthwhile_without_simd_p (vinfo, code))
5424 if (dump_enabled_p ())
5425 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5426 "not worthwhile without SIMD support.\n");
5427 return false;
5430 if (!vec_stmt) /* transformation not required. */
5432 STMT_VINFO_TYPE (stmt_info) = op_vec_info_type;
5433 if (dump_enabled_p ())
5434 dump_printf_loc (MSG_NOTE, vect_location,
5435 "=== vectorizable_operation ===\n");
5436 vect_model_simple_cost (stmt_info, ncopies, dt, ndts, NULL, NULL);
5437 return true;
5440 /* Transform. */
5442 if (dump_enabled_p ())
5443 dump_printf_loc (MSG_NOTE, vect_location,
5444 "transform binary/unary operation.\n");
5446 /* Handle def. */
5447 vec_dest = vect_create_destination_var (scalar_dest, vectype);
5449 /* In case the vectorization factor (VF) is bigger than the number
5450 of elements that we can fit in a vectype (nunits), we have to generate
5451 more than one vector stmt - i.e - we need to "unroll" the
5452 vector stmt by a factor VF/nunits. In doing so, we record a pointer
5453 from one copy of the vector stmt to the next, in the field
5454 STMT_VINFO_RELATED_STMT. This is necessary in order to allow following
5455 stages to find the correct vector defs to be used when vectorizing
5456 stmts that use the defs of the current stmt. The example below
5457 illustrates the vectorization process when VF=16 and nunits=4 (i.e.,
5458 we need to create 4 vectorized stmts):
5460 before vectorization:
5461 RELATED_STMT VEC_STMT
5462 S1: x = memref - -
5463 S2: z = x + 1 - -
5465 step 1: vectorize stmt S1 (done in vectorizable_load. See more details
5466 there):
5467 RELATED_STMT VEC_STMT
5468 VS1_0: vx0 = memref0 VS1_1 -
5469 VS1_1: vx1 = memref1 VS1_2 -
5470 VS1_2: vx2 = memref2 VS1_3 -
5471 VS1_3: vx3 = memref3 - -
5472 S1: x = load - VS1_0
5473 S2: z = x + 1 - -
5475 step2: vectorize stmt S2 (done here):
5476 To vectorize stmt S2 we first need to find the relevant vector
5477 def for the first operand 'x'. This is, as usual, obtained from
5478 the vector stmt recorded in the STMT_VINFO_VEC_STMT of the stmt
5479 that defines 'x' (S1). This way we find the stmt VS1_0, and the
5480 relevant vector def 'vx0'. Having found 'vx0' we can generate
5481 the vector stmt VS2_0, and as usual, record it in the
5482 STMT_VINFO_VEC_STMT of stmt S2.
5483 When creating the second copy (VS2_1), we obtain the relevant vector
5484 def from the vector stmt recorded in the STMT_VINFO_RELATED_STMT of
5485 stmt VS1_0. This way we find the stmt VS1_1 and the relevant
5486 vector def 'vx1'. Using 'vx1' we create stmt VS2_1 and record a
5487 pointer to it in the STMT_VINFO_RELATED_STMT of the vector stmt VS2_0.
5488 Similarly when creating stmts VS2_2 and VS2_3. This is the resulting
5489 chain of stmts and pointers:
5490 RELATED_STMT VEC_STMT
5491 VS1_0: vx0 = memref0 VS1_1 -
5492 VS1_1: vx1 = memref1 VS1_2 -
5493 VS1_2: vx2 = memref2 VS1_3 -
5494 VS1_3: vx3 = memref3 - -
5495 S1: x = load - VS1_0
5496 VS2_0: vz0 = vx0 + v1 VS2_1 -
5497 VS2_1: vz1 = vx1 + v1 VS2_2 -
5498 VS2_2: vz2 = vx2 + v1 VS2_3 -
5499 VS2_3: vz3 = vx3 + v1 - -
5500 S2: z = x + 1 - VS2_0 */
5502 prev_stmt_info = NULL;
5503 for (j = 0; j < ncopies; j++)
5505 /* Handle uses. */
5506 if (j == 0)
5508 if (op_type == binary_op || op_type == ternary_op)
5509 vect_get_vec_defs (op0, op1, stmt, &vec_oprnds0, &vec_oprnds1,
5510 slp_node);
5511 else
5512 vect_get_vec_defs (op0, NULL_TREE, stmt, &vec_oprnds0, NULL,
5513 slp_node);
5514 if (op_type == ternary_op)
5515 vect_get_vec_defs (op2, NULL_TREE, stmt, &vec_oprnds2, NULL,
5516 slp_node);
5518 else
5520 vect_get_vec_defs_for_stmt_copy (dt, &vec_oprnds0, &vec_oprnds1);
5521 if (op_type == ternary_op)
5523 tree vec_oprnd = vec_oprnds2.pop ();
5524 vec_oprnds2.quick_push (vect_get_vec_def_for_stmt_copy (dt[2],
5525 vec_oprnd));
5529 /* Arguments are ready. Create the new vector stmt. */
5530 FOR_EACH_VEC_ELT (vec_oprnds0, i, vop0)
5532 vop1 = ((op_type == binary_op || op_type == ternary_op)
5533 ? vec_oprnds1[i] : NULL_TREE);
5534 vop2 = ((op_type == ternary_op)
5535 ? vec_oprnds2[i] : NULL_TREE);
5536 new_stmt = gimple_build_assign (vec_dest, code, vop0, vop1, vop2);
5537 new_temp = make_ssa_name (vec_dest, new_stmt);
5538 gimple_assign_set_lhs (new_stmt, new_temp);
5539 vect_finish_stmt_generation (stmt, new_stmt, gsi);
5540 if (slp_node)
5541 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
5544 if (slp_node)
5545 continue;
5547 if (j == 0)
5548 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
5549 else
5550 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
5551 prev_stmt_info = vinfo_for_stmt (new_stmt);
5554 vec_oprnds0.release ();
5555 vec_oprnds1.release ();
5556 vec_oprnds2.release ();
5558 return true;
5561 /* A helper function to ensure data reference DR's base alignment. */
5563 static void
5564 ensure_base_align (struct data_reference *dr)
5566 if (!dr->aux)
5567 return;
5569 if (DR_VECT_AUX (dr)->base_misaligned)
5571 tree base_decl = DR_VECT_AUX (dr)->base_decl;
5573 unsigned int align_base_to = DR_TARGET_ALIGNMENT (dr) * BITS_PER_UNIT;
5575 if (decl_in_symtab_p (base_decl))
5576 symtab_node::get (base_decl)->increase_alignment (align_base_to);
5577 else
5579 SET_DECL_ALIGN (base_decl, align_base_to);
5580 DECL_USER_ALIGN (base_decl) = 1;
5582 DR_VECT_AUX (dr)->base_misaligned = false;
5587 /* Function get_group_alias_ptr_type.
5589 Return the alias type for the group starting at FIRST_STMT. */
5591 static tree
5592 get_group_alias_ptr_type (gimple *first_stmt)
5594 struct data_reference *first_dr, *next_dr;
5595 gimple *next_stmt;
5597 first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
5598 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (first_stmt));
5599 while (next_stmt)
5601 next_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (next_stmt));
5602 if (get_alias_set (DR_REF (first_dr))
5603 != get_alias_set (DR_REF (next_dr)))
5605 if (dump_enabled_p ())
5606 dump_printf_loc (MSG_NOTE, vect_location,
5607 "conflicting alias set types.\n");
5608 return ptr_type_node;
5610 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
5612 return reference_alias_ptr_type (DR_REF (first_dr));
5616 /* Function vectorizable_store.
5618 Check if STMT defines a non scalar data-ref (array/pointer/structure) that
5619 can be vectorized.
5620 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
5621 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
5622 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
5624 static bool
5625 vectorizable_store (gimple *stmt, gimple_stmt_iterator *gsi, gimple **vec_stmt,
5626 slp_tree slp_node)
5628 tree scalar_dest;
5629 tree data_ref;
5630 tree op;
5631 tree vec_oprnd = NULL_TREE;
5632 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
5633 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info), *first_dr = NULL;
5634 tree elem_type;
5635 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
5636 struct loop *loop = NULL;
5637 machine_mode vec_mode;
5638 tree dummy;
5639 enum dr_alignment_support alignment_support_scheme;
5640 gimple *def_stmt;
5641 enum vect_def_type dt;
5642 stmt_vec_info prev_stmt_info = NULL;
5643 tree dataref_ptr = NULL_TREE;
5644 tree dataref_offset = NULL_TREE;
5645 gimple *ptr_incr = NULL;
5646 int ncopies;
5647 int j;
5648 gimple *next_stmt, *first_stmt;
5649 bool grouped_store;
5650 unsigned int group_size, i;
5651 vec<tree> oprnds = vNULL;
5652 vec<tree> result_chain = vNULL;
5653 bool inv_p;
5654 tree offset = NULL_TREE;
5655 vec<tree> vec_oprnds = vNULL;
5656 bool slp = (slp_node != NULL);
5657 unsigned int vec_num;
5658 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
5659 vec_info *vinfo = stmt_info->vinfo;
5660 tree aggr_type;
5661 gather_scatter_info gs_info;
5662 enum vect_def_type scatter_src_dt = vect_unknown_def_type;
5663 gimple *new_stmt;
5664 int vf;
5665 vec_load_store_type vls_type;
5666 tree ref_type;
5668 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
5669 return false;
5671 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
5672 && ! vec_stmt)
5673 return false;
5675 /* Is vectorizable store? */
5677 if (!is_gimple_assign (stmt))
5678 return false;
5680 scalar_dest = gimple_assign_lhs (stmt);
5681 if (TREE_CODE (scalar_dest) == VIEW_CONVERT_EXPR
5682 && is_pattern_stmt_p (stmt_info))
5683 scalar_dest = TREE_OPERAND (scalar_dest, 0);
5684 if (TREE_CODE (scalar_dest) != ARRAY_REF
5685 && TREE_CODE (scalar_dest) != BIT_FIELD_REF
5686 && TREE_CODE (scalar_dest) != INDIRECT_REF
5687 && TREE_CODE (scalar_dest) != COMPONENT_REF
5688 && TREE_CODE (scalar_dest) != IMAGPART_EXPR
5689 && TREE_CODE (scalar_dest) != REALPART_EXPR
5690 && TREE_CODE (scalar_dest) != MEM_REF)
5691 return false;
5693 /* Cannot have hybrid store SLP -- that would mean storing to the
5694 same location twice. */
5695 gcc_assert (slp == PURE_SLP_STMT (stmt_info));
5697 gcc_assert (gimple_assign_single_p (stmt));
5699 tree vectype = STMT_VINFO_VECTYPE (stmt_info), rhs_vectype = NULL_TREE;
5700 unsigned int nunits = TYPE_VECTOR_SUBPARTS (vectype);
5702 if (loop_vinfo)
5704 loop = LOOP_VINFO_LOOP (loop_vinfo);
5705 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo);
5707 else
5708 vf = 1;
5710 /* Multiple types in SLP are handled by creating the appropriate number of
5711 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
5712 case of SLP. */
5713 if (slp)
5714 ncopies = 1;
5715 else
5716 ncopies = vect_get_num_copies (loop_vinfo, vectype);
5718 gcc_assert (ncopies >= 1);
5720 /* FORNOW. This restriction should be relaxed. */
5721 if (loop && nested_in_vect_loop_p (loop, stmt) && ncopies > 1)
5723 if (dump_enabled_p ())
5724 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5725 "multiple types in nested loop.\n");
5726 return false;
5729 op = gimple_assign_rhs1 (stmt);
5731 /* In the case this is a store from a constant make sure
5732 native_encode_expr can handle it. */
5733 if (CONSTANT_CLASS_P (op) && native_encode_expr (op, NULL, 64) == 0)
5734 return false;
5736 if (!vect_is_simple_use (op, vinfo, &def_stmt, &dt, &rhs_vectype))
5738 if (dump_enabled_p ())
5739 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
5740 "use not simple.\n");
5741 return false;
5744 if (dt == vect_constant_def || dt == vect_external_def)
5745 vls_type = VLS_STORE_INVARIANT;
5746 else
5747 vls_type = VLS_STORE;
5749 if (rhs_vectype && !useless_type_conversion_p (vectype, rhs_vectype))
5750 return false;
5752 elem_type = TREE_TYPE (vectype);
5753 vec_mode = TYPE_MODE (vectype);
5755 /* FORNOW. In some cases can vectorize even if data-type not supported
5756 (e.g. - array initialization with 0). */
5757 if (optab_handler (mov_optab, vec_mode) == CODE_FOR_nothing)
5758 return false;
5760 if (!STMT_VINFO_DATA_REF (stmt_info))
5761 return false;
5763 vect_memory_access_type memory_access_type;
5764 if (!get_load_store_type (stmt, vectype, slp, vls_type, ncopies,
5765 &memory_access_type, &gs_info))
5766 return false;
5768 if (!vec_stmt) /* transformation not required. */
5770 STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info) = memory_access_type;
5771 STMT_VINFO_TYPE (stmt_info) = store_vec_info_type;
5772 /* The SLP costs are calculated during SLP analysis. */
5773 if (!PURE_SLP_STMT (stmt_info))
5774 vect_model_store_cost (stmt_info, ncopies, memory_access_type, dt,
5775 NULL, NULL, NULL);
5776 return true;
5778 gcc_assert (memory_access_type == STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info));
5780 /* Transform. */
5782 ensure_base_align (dr);
5784 if (memory_access_type == VMAT_GATHER_SCATTER)
5786 tree vec_oprnd0 = NULL_TREE, vec_oprnd1 = NULL_TREE, op, src;
5787 tree arglist = TYPE_ARG_TYPES (TREE_TYPE (gs_info.decl));
5788 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype;
5789 tree ptr, mask, var, scale, perm_mask = NULL_TREE;
5790 edge pe = loop_preheader_edge (loop);
5791 gimple_seq seq;
5792 basic_block new_bb;
5793 enum { NARROW, NONE, WIDEN } modifier;
5794 int scatter_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype);
5796 if (nunits == (unsigned int) scatter_off_nunits)
5797 modifier = NONE;
5798 else if (nunits == (unsigned int) scatter_off_nunits / 2)
5800 modifier = WIDEN;
5802 auto_vec_perm_indices sel (scatter_off_nunits);
5803 for (i = 0; i < (unsigned int) scatter_off_nunits; ++i)
5804 sel.quick_push (i | nunits);
5806 perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel);
5807 gcc_assert (perm_mask != NULL_TREE);
5809 else if (nunits == (unsigned int) scatter_off_nunits * 2)
5811 modifier = NARROW;
5813 auto_vec_perm_indices sel (nunits);
5814 for (i = 0; i < (unsigned int) nunits; ++i)
5815 sel.quick_push (i | scatter_off_nunits);
5817 perm_mask = vect_gen_perm_mask_checked (vectype, sel);
5818 gcc_assert (perm_mask != NULL_TREE);
5819 ncopies *= 2;
5821 else
5822 gcc_unreachable ();
5824 rettype = TREE_TYPE (TREE_TYPE (gs_info.decl));
5825 ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
5826 masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
5827 idxtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
5828 srctype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
5829 scaletype = TREE_VALUE (arglist);
5831 gcc_checking_assert (TREE_CODE (masktype) == INTEGER_TYPE
5832 && TREE_CODE (rettype) == VOID_TYPE);
5834 ptr = fold_convert (ptrtype, gs_info.base);
5835 if (!is_gimple_min_invariant (ptr))
5837 ptr = force_gimple_operand (ptr, &seq, true, NULL_TREE);
5838 new_bb = gsi_insert_seq_on_edge_immediate (pe, seq);
5839 gcc_assert (!new_bb);
5842 /* Currently we support only unconditional scatter stores,
5843 so mask should be all ones. */
5844 mask = build_int_cst (masktype, -1);
5845 mask = vect_init_vector (stmt, mask, masktype, NULL);
5847 scale = build_int_cst (scaletype, gs_info.scale);
5849 prev_stmt_info = NULL;
5850 for (j = 0; j < ncopies; ++j)
5852 if (j == 0)
5854 src = vec_oprnd1
5855 = vect_get_vec_def_for_operand (gimple_assign_rhs1 (stmt), stmt);
5856 op = vec_oprnd0
5857 = vect_get_vec_def_for_operand (gs_info.offset, stmt);
5859 else if (modifier != NONE && (j & 1))
5861 if (modifier == WIDEN)
5863 src = vec_oprnd1
5864 = vect_get_vec_def_for_stmt_copy (scatter_src_dt, vec_oprnd1);
5865 op = permute_vec_elements (vec_oprnd0, vec_oprnd0, perm_mask,
5866 stmt, gsi);
5868 else if (modifier == NARROW)
5870 src = permute_vec_elements (vec_oprnd1, vec_oprnd1, perm_mask,
5871 stmt, gsi);
5872 op = vec_oprnd0
5873 = vect_get_vec_def_for_stmt_copy (gs_info.offset_dt,
5874 vec_oprnd0);
5876 else
5877 gcc_unreachable ();
5879 else
5881 src = vec_oprnd1
5882 = vect_get_vec_def_for_stmt_copy (scatter_src_dt, vec_oprnd1);
5883 op = vec_oprnd0
5884 = vect_get_vec_def_for_stmt_copy (gs_info.offset_dt,
5885 vec_oprnd0);
5888 if (!useless_type_conversion_p (srctype, TREE_TYPE (src)))
5890 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (src))
5891 == TYPE_VECTOR_SUBPARTS (srctype));
5892 var = vect_get_new_ssa_name (srctype, vect_simple_var);
5893 src = build1 (VIEW_CONVERT_EXPR, srctype, src);
5894 new_stmt = gimple_build_assign (var, VIEW_CONVERT_EXPR, src);
5895 vect_finish_stmt_generation (stmt, new_stmt, gsi);
5896 src = var;
5899 if (!useless_type_conversion_p (idxtype, TREE_TYPE (op)))
5901 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (op))
5902 == TYPE_VECTOR_SUBPARTS (idxtype));
5903 var = vect_get_new_ssa_name (idxtype, vect_simple_var);
5904 op = build1 (VIEW_CONVERT_EXPR, idxtype, op);
5905 new_stmt = gimple_build_assign (var, VIEW_CONVERT_EXPR, op);
5906 vect_finish_stmt_generation (stmt, new_stmt, gsi);
5907 op = var;
5910 new_stmt
5911 = gimple_build_call (gs_info.decl, 5, ptr, mask, op, src, scale);
5913 vect_finish_stmt_generation (stmt, new_stmt, gsi);
5915 if (prev_stmt_info == NULL)
5916 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
5917 else
5918 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
5919 prev_stmt_info = vinfo_for_stmt (new_stmt);
5921 return true;
5924 grouped_store = STMT_VINFO_GROUPED_ACCESS (stmt_info);
5925 if (grouped_store)
5927 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
5928 first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
5929 group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
5931 GROUP_STORE_COUNT (vinfo_for_stmt (first_stmt))++;
5933 /* FORNOW */
5934 gcc_assert (!loop || !nested_in_vect_loop_p (loop, stmt));
5936 /* We vectorize all the stmts of the interleaving group when we
5937 reach the last stmt in the group. */
5938 if (GROUP_STORE_COUNT (vinfo_for_stmt (first_stmt))
5939 < GROUP_SIZE (vinfo_for_stmt (first_stmt))
5940 && !slp)
5942 *vec_stmt = NULL;
5943 return true;
5946 if (slp)
5948 grouped_store = false;
5949 /* VEC_NUM is the number of vect stmts to be created for this
5950 group. */
5951 vec_num = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
5952 first_stmt = SLP_TREE_SCALAR_STMTS (slp_node)[0];
5953 gcc_assert (GROUP_FIRST_ELEMENT (vinfo_for_stmt (first_stmt)) == first_stmt);
5954 first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
5955 op = gimple_assign_rhs1 (first_stmt);
5957 else
5958 /* VEC_NUM is the number of vect stmts to be created for this
5959 group. */
5960 vec_num = group_size;
5962 ref_type = get_group_alias_ptr_type (first_stmt);
5964 else
5966 first_stmt = stmt;
5967 first_dr = dr;
5968 group_size = vec_num = 1;
5969 ref_type = reference_alias_ptr_type (DR_REF (first_dr));
5972 if (dump_enabled_p ())
5973 dump_printf_loc (MSG_NOTE, vect_location,
5974 "transform store. ncopies = %d\n", ncopies);
5976 if (memory_access_type == VMAT_ELEMENTWISE
5977 || memory_access_type == VMAT_STRIDED_SLP)
5979 gimple_stmt_iterator incr_gsi;
5980 bool insert_after;
5981 gimple *incr;
5982 tree offvar;
5983 tree ivstep;
5984 tree running_off;
5985 gimple_seq stmts = NULL;
5986 tree stride_base, stride_step, alias_off;
5987 tree vec_oprnd;
5988 unsigned int g;
5990 gcc_assert (!nested_in_vect_loop_p (loop, stmt));
5992 stride_base
5993 = fold_build_pointer_plus
5994 (unshare_expr (DR_BASE_ADDRESS (first_dr)),
5995 size_binop (PLUS_EXPR,
5996 convert_to_ptrofftype (unshare_expr (DR_OFFSET (first_dr))),
5997 convert_to_ptrofftype (DR_INIT (first_dr))));
5998 stride_step = fold_convert (sizetype, unshare_expr (DR_STEP (first_dr)));
6000 /* For a store with loop-invariant (but other than power-of-2)
6001 stride (i.e. not a grouped access) like so:
6003 for (i = 0; i < n; i += stride)
6004 array[i] = ...;
6006 we generate a new induction variable and new stores from
6007 the components of the (vectorized) rhs:
6009 for (j = 0; ; j += VF*stride)
6010 vectemp = ...;
6011 tmp1 = vectemp[0];
6012 array[j] = tmp1;
6013 tmp2 = vectemp[1];
6014 array[j + stride] = tmp2;
6018 unsigned nstores = nunits;
6019 unsigned lnel = 1;
6020 tree ltype = elem_type;
6021 tree lvectype = vectype;
6022 if (slp)
6024 if (group_size < nunits
6025 && nunits % group_size == 0)
6027 nstores = nunits / group_size;
6028 lnel = group_size;
6029 ltype = build_vector_type (elem_type, group_size);
6030 lvectype = vectype;
6032 /* First check if vec_extract optab doesn't support extraction
6033 of vector elts directly. */
6034 scalar_mode elmode = SCALAR_TYPE_MODE (elem_type);
6035 machine_mode vmode;
6036 if (!mode_for_vector (elmode, group_size).exists (&vmode)
6037 || !VECTOR_MODE_P (vmode)
6038 || (convert_optab_handler (vec_extract_optab,
6039 TYPE_MODE (vectype), vmode)
6040 == CODE_FOR_nothing))
6042 /* Try to avoid emitting an extract of vector elements
6043 by performing the extracts using an integer type of the
6044 same size, extracting from a vector of those and then
6045 re-interpreting it as the original vector type if
6046 supported. */
6047 unsigned lsize
6048 = group_size * GET_MODE_BITSIZE (elmode);
6049 elmode = int_mode_for_size (lsize, 0).require ();
6050 /* If we can't construct such a vector fall back to
6051 element extracts from the original vector type and
6052 element size stores. */
6053 if (mode_for_vector (elmode,
6054 nunits / group_size).exists (&vmode)
6055 && VECTOR_MODE_P (vmode)
6056 && (convert_optab_handler (vec_extract_optab,
6057 vmode, elmode)
6058 != CODE_FOR_nothing))
6060 nstores = nunits / group_size;
6061 lnel = group_size;
6062 ltype = build_nonstandard_integer_type (lsize, 1);
6063 lvectype = build_vector_type (ltype, nstores);
6065 /* Else fall back to vector extraction anyway.
6066 Fewer stores are more important than avoiding spilling
6067 of the vector we extract from. Compared to the
6068 construction case in vectorizable_load no store-forwarding
6069 issue exists here for reasonable archs. */
6072 else if (group_size >= nunits
6073 && group_size % nunits == 0)
6075 nstores = 1;
6076 lnel = nunits;
6077 ltype = vectype;
6078 lvectype = vectype;
6080 ltype = build_aligned_type (ltype, TYPE_ALIGN (elem_type));
6081 ncopies = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
6084 ivstep = stride_step;
6085 ivstep = fold_build2 (MULT_EXPR, TREE_TYPE (ivstep), ivstep,
6086 build_int_cst (TREE_TYPE (ivstep), vf));
6088 standard_iv_increment_position (loop, &incr_gsi, &insert_after);
6090 create_iv (stride_base, ivstep, NULL,
6091 loop, &incr_gsi, insert_after,
6092 &offvar, NULL);
6093 incr = gsi_stmt (incr_gsi);
6094 set_vinfo_for_stmt (incr, new_stmt_vec_info (incr, loop_vinfo));
6096 stride_step = force_gimple_operand (stride_step, &stmts, true, NULL_TREE);
6097 if (stmts)
6098 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
6100 prev_stmt_info = NULL;
6101 alias_off = build_int_cst (ref_type, 0);
6102 next_stmt = first_stmt;
6103 for (g = 0; g < group_size; g++)
6105 running_off = offvar;
6106 if (g)
6108 tree size = TYPE_SIZE_UNIT (ltype);
6109 tree pos = fold_build2 (MULT_EXPR, sizetype, size_int (g),
6110 size);
6111 tree newoff = copy_ssa_name (running_off, NULL);
6112 incr = gimple_build_assign (newoff, POINTER_PLUS_EXPR,
6113 running_off, pos);
6114 vect_finish_stmt_generation (stmt, incr, gsi);
6115 running_off = newoff;
6117 unsigned int group_el = 0;
6118 unsigned HOST_WIDE_INT
6119 elsz = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (vectype)));
6120 for (j = 0; j < ncopies; j++)
6122 /* We've set op and dt above, from gimple_assign_rhs1(stmt),
6123 and first_stmt == stmt. */
6124 if (j == 0)
6126 if (slp)
6128 vect_get_vec_defs (op, NULL_TREE, stmt, &vec_oprnds, NULL,
6129 slp_node);
6130 vec_oprnd = vec_oprnds[0];
6132 else
6134 gcc_assert (gimple_assign_single_p (next_stmt));
6135 op = gimple_assign_rhs1 (next_stmt);
6136 vec_oprnd = vect_get_vec_def_for_operand (op, next_stmt);
6139 else
6141 if (slp)
6142 vec_oprnd = vec_oprnds[j];
6143 else
6145 vect_is_simple_use (vec_oprnd, vinfo, &def_stmt, &dt);
6146 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, vec_oprnd);
6149 /* Pun the vector to extract from if necessary. */
6150 if (lvectype != vectype)
6152 tree tem = make_ssa_name (lvectype);
6153 gimple *pun
6154 = gimple_build_assign (tem, build1 (VIEW_CONVERT_EXPR,
6155 lvectype, vec_oprnd));
6156 vect_finish_stmt_generation (stmt, pun, gsi);
6157 vec_oprnd = tem;
6159 for (i = 0; i < nstores; i++)
6161 tree newref, newoff;
6162 gimple *incr, *assign;
6163 tree size = TYPE_SIZE (ltype);
6164 /* Extract the i'th component. */
6165 tree pos = fold_build2 (MULT_EXPR, bitsizetype,
6166 bitsize_int (i), size);
6167 tree elem = fold_build3 (BIT_FIELD_REF, ltype, vec_oprnd,
6168 size, pos);
6170 elem = force_gimple_operand_gsi (gsi, elem, true,
6171 NULL_TREE, true,
6172 GSI_SAME_STMT);
6174 tree this_off = build_int_cst (TREE_TYPE (alias_off),
6175 group_el * elsz);
6176 newref = build2 (MEM_REF, ltype,
6177 running_off, this_off);
6179 /* And store it to *running_off. */
6180 assign = gimple_build_assign (newref, elem);
6181 vect_finish_stmt_generation (stmt, assign, gsi);
6183 group_el += lnel;
6184 if (! slp
6185 || group_el == group_size)
6187 newoff = copy_ssa_name (running_off, NULL);
6188 incr = gimple_build_assign (newoff, POINTER_PLUS_EXPR,
6189 running_off, stride_step);
6190 vect_finish_stmt_generation (stmt, incr, gsi);
6192 running_off = newoff;
6193 group_el = 0;
6195 if (g == group_size - 1
6196 && !slp)
6198 if (j == 0 && i == 0)
6199 STMT_VINFO_VEC_STMT (stmt_info)
6200 = *vec_stmt = assign;
6201 else
6202 STMT_VINFO_RELATED_STMT (prev_stmt_info) = assign;
6203 prev_stmt_info = vinfo_for_stmt (assign);
6207 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
6208 if (slp)
6209 break;
6212 vec_oprnds.release ();
6213 return true;
6216 auto_vec<tree> dr_chain (group_size);
6217 oprnds.create (group_size);
6219 alignment_support_scheme = vect_supportable_dr_alignment (first_dr, false);
6220 gcc_assert (alignment_support_scheme);
6221 /* Targets with store-lane instructions must not require explicit
6222 realignment. */
6223 gcc_assert (memory_access_type != VMAT_LOAD_STORE_LANES
6224 || alignment_support_scheme == dr_aligned
6225 || alignment_support_scheme == dr_unaligned_supported);
6227 if (memory_access_type == VMAT_CONTIGUOUS_DOWN
6228 || memory_access_type == VMAT_CONTIGUOUS_REVERSE)
6229 offset = size_int (-TYPE_VECTOR_SUBPARTS (vectype) + 1);
6231 if (memory_access_type == VMAT_LOAD_STORE_LANES)
6232 aggr_type = build_array_type_nelts (elem_type, vec_num * nunits);
6233 else
6234 aggr_type = vectype;
6236 /* In case the vectorization factor (VF) is bigger than the number
6237 of elements that we can fit in a vectype (nunits), we have to generate
6238 more than one vector stmt - i.e - we need to "unroll" the
6239 vector stmt by a factor VF/nunits. For more details see documentation in
6240 vect_get_vec_def_for_copy_stmt. */
6242 /* In case of interleaving (non-unit grouped access):
6244 S1: &base + 2 = x2
6245 S2: &base = x0
6246 S3: &base + 1 = x1
6247 S4: &base + 3 = x3
6249 We create vectorized stores starting from base address (the access of the
6250 first stmt in the chain (S2 in the above example), when the last store stmt
6251 of the chain (S4) is reached:
6253 VS1: &base = vx2
6254 VS2: &base + vec_size*1 = vx0
6255 VS3: &base + vec_size*2 = vx1
6256 VS4: &base + vec_size*3 = vx3
6258 Then permutation statements are generated:
6260 VS5: vx5 = VEC_PERM_EXPR < vx0, vx3, {0, 8, 1, 9, 2, 10, 3, 11} >
6261 VS6: vx6 = VEC_PERM_EXPR < vx0, vx3, {4, 12, 5, 13, 6, 14, 7, 15} >
6264 And they are put in STMT_VINFO_VEC_STMT of the corresponding scalar stmts
6265 (the order of the data-refs in the output of vect_permute_store_chain
6266 corresponds to the order of scalar stmts in the interleaving chain - see
6267 the documentation of vect_permute_store_chain()).
6269 In case of both multiple types and interleaving, above vector stores and
6270 permutation stmts are created for every copy. The result vector stmts are
6271 put in STMT_VINFO_VEC_STMT for the first copy and in the corresponding
6272 STMT_VINFO_RELATED_STMT for the next copies.
6275 prev_stmt_info = NULL;
6276 for (j = 0; j < ncopies; j++)
6279 if (j == 0)
6281 if (slp)
6283 /* Get vectorized arguments for SLP_NODE. */
6284 vect_get_vec_defs (op, NULL_TREE, stmt, &vec_oprnds,
6285 NULL, slp_node);
6287 vec_oprnd = vec_oprnds[0];
6289 else
6291 /* For interleaved stores we collect vectorized defs for all the
6292 stores in the group in DR_CHAIN and OPRNDS. DR_CHAIN is then
6293 used as an input to vect_permute_store_chain(), and OPRNDS as
6294 an input to vect_get_vec_def_for_stmt_copy() for the next copy.
6296 If the store is not grouped, GROUP_SIZE is 1, and DR_CHAIN and
6297 OPRNDS are of size 1. */
6298 next_stmt = first_stmt;
6299 for (i = 0; i < group_size; i++)
6301 /* Since gaps are not supported for interleaved stores,
6302 GROUP_SIZE is the exact number of stmts in the chain.
6303 Therefore, NEXT_STMT can't be NULL_TREE. In case that
6304 there is no interleaving, GROUP_SIZE is 1, and only one
6305 iteration of the loop will be executed. */
6306 gcc_assert (next_stmt
6307 && gimple_assign_single_p (next_stmt));
6308 op = gimple_assign_rhs1 (next_stmt);
6310 vec_oprnd = vect_get_vec_def_for_operand (op, next_stmt);
6311 dr_chain.quick_push (vec_oprnd);
6312 oprnds.quick_push (vec_oprnd);
6313 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
6317 /* We should have catched mismatched types earlier. */
6318 gcc_assert (useless_type_conversion_p (vectype,
6319 TREE_TYPE (vec_oprnd)));
6320 bool simd_lane_access_p
6321 = STMT_VINFO_SIMD_LANE_ACCESS_P (stmt_info);
6322 if (simd_lane_access_p
6323 && TREE_CODE (DR_BASE_ADDRESS (first_dr)) == ADDR_EXPR
6324 && VAR_P (TREE_OPERAND (DR_BASE_ADDRESS (first_dr), 0))
6325 && integer_zerop (DR_OFFSET (first_dr))
6326 && integer_zerop (DR_INIT (first_dr))
6327 && alias_sets_conflict_p (get_alias_set (aggr_type),
6328 get_alias_set (TREE_TYPE (ref_type))))
6330 dataref_ptr = unshare_expr (DR_BASE_ADDRESS (first_dr));
6331 dataref_offset = build_int_cst (ref_type, 0);
6332 inv_p = false;
6334 else
6335 dataref_ptr
6336 = vect_create_data_ref_ptr (first_stmt, aggr_type,
6337 simd_lane_access_p ? loop : NULL,
6338 offset, &dummy, gsi, &ptr_incr,
6339 simd_lane_access_p, &inv_p);
6340 gcc_assert (bb_vinfo || !inv_p);
6342 else
6344 /* For interleaved stores we created vectorized defs for all the
6345 defs stored in OPRNDS in the previous iteration (previous copy).
6346 DR_CHAIN is then used as an input to vect_permute_store_chain(),
6347 and OPRNDS as an input to vect_get_vec_def_for_stmt_copy() for the
6348 next copy.
6349 If the store is not grouped, GROUP_SIZE is 1, and DR_CHAIN and
6350 OPRNDS are of size 1. */
6351 for (i = 0; i < group_size; i++)
6353 op = oprnds[i];
6354 vect_is_simple_use (op, vinfo, &def_stmt, &dt);
6355 vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, op);
6356 dr_chain[i] = vec_oprnd;
6357 oprnds[i] = vec_oprnd;
6359 if (dataref_offset)
6360 dataref_offset
6361 = int_const_binop (PLUS_EXPR, dataref_offset,
6362 TYPE_SIZE_UNIT (aggr_type));
6363 else
6364 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi, stmt,
6365 TYPE_SIZE_UNIT (aggr_type));
6368 if (memory_access_type == VMAT_LOAD_STORE_LANES)
6370 tree vec_array;
6372 /* Combine all the vectors into an array. */
6373 vec_array = create_vector_array (vectype, vec_num);
6374 for (i = 0; i < vec_num; i++)
6376 vec_oprnd = dr_chain[i];
6377 write_vector_array (stmt, gsi, vec_oprnd, vec_array, i);
6380 /* Emit:
6381 MEM_REF[...all elements...] = STORE_LANES (VEC_ARRAY). */
6382 data_ref = create_array_ref (aggr_type, dataref_ptr, ref_type);
6383 gcall *call = gimple_build_call_internal (IFN_STORE_LANES, 1,
6384 vec_array);
6385 gimple_call_set_lhs (call, data_ref);
6386 gimple_call_set_nothrow (call, true);
6387 new_stmt = call;
6388 vect_finish_stmt_generation (stmt, new_stmt, gsi);
6390 else
6392 new_stmt = NULL;
6393 if (grouped_store)
6395 if (j == 0)
6396 result_chain.create (group_size);
6397 /* Permute. */
6398 vect_permute_store_chain (dr_chain, group_size, stmt, gsi,
6399 &result_chain);
6402 next_stmt = first_stmt;
6403 for (i = 0; i < vec_num; i++)
6405 unsigned align, misalign;
6407 if (i > 0)
6408 /* Bump the vector pointer. */
6409 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi,
6410 stmt, NULL_TREE);
6412 if (slp)
6413 vec_oprnd = vec_oprnds[i];
6414 else if (grouped_store)
6415 /* For grouped stores vectorized defs are interleaved in
6416 vect_permute_store_chain(). */
6417 vec_oprnd = result_chain[i];
6419 data_ref = fold_build2 (MEM_REF, vectype,
6420 dataref_ptr,
6421 dataref_offset
6422 ? dataref_offset
6423 : build_int_cst (ref_type, 0));
6424 align = DR_TARGET_ALIGNMENT (first_dr);
6425 if (aligned_access_p (first_dr))
6426 misalign = 0;
6427 else if (DR_MISALIGNMENT (first_dr) == -1)
6429 align = dr_alignment (vect_dr_behavior (first_dr));
6430 misalign = 0;
6431 TREE_TYPE (data_ref)
6432 = build_aligned_type (TREE_TYPE (data_ref),
6433 align * BITS_PER_UNIT);
6435 else
6437 TREE_TYPE (data_ref)
6438 = build_aligned_type (TREE_TYPE (data_ref),
6439 TYPE_ALIGN (elem_type));
6440 misalign = DR_MISALIGNMENT (first_dr);
6442 if (dataref_offset == NULL_TREE
6443 && TREE_CODE (dataref_ptr) == SSA_NAME)
6444 set_ptr_info_alignment (get_ptr_info (dataref_ptr), align,
6445 misalign);
6447 if (memory_access_type == VMAT_CONTIGUOUS_REVERSE)
6449 tree perm_mask = perm_mask_for_reverse (vectype);
6450 tree perm_dest
6451 = vect_create_destination_var (gimple_assign_rhs1 (stmt),
6452 vectype);
6453 tree new_temp = make_ssa_name (perm_dest);
6455 /* Generate the permute statement. */
6456 gimple *perm_stmt
6457 = gimple_build_assign (new_temp, VEC_PERM_EXPR, vec_oprnd,
6458 vec_oprnd, perm_mask);
6459 vect_finish_stmt_generation (stmt, perm_stmt, gsi);
6461 perm_stmt = SSA_NAME_DEF_STMT (new_temp);
6462 vec_oprnd = new_temp;
6465 /* Arguments are ready. Create the new vector stmt. */
6466 new_stmt = gimple_build_assign (data_ref, vec_oprnd);
6467 vect_finish_stmt_generation (stmt, new_stmt, gsi);
6469 if (slp)
6470 continue;
6472 next_stmt = GROUP_NEXT_ELEMENT (vinfo_for_stmt (next_stmt));
6473 if (!next_stmt)
6474 break;
6477 if (!slp)
6479 if (j == 0)
6480 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
6481 else
6482 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
6483 prev_stmt_info = vinfo_for_stmt (new_stmt);
6487 oprnds.release ();
6488 result_chain.release ();
6489 vec_oprnds.release ();
6491 return true;
6494 /* Given a vector type VECTYPE, turns permutation SEL into the equivalent
6495 VECTOR_CST mask. No checks are made that the target platform supports the
6496 mask, so callers may wish to test can_vec_perm_p separately, or use
6497 vect_gen_perm_mask_checked. */
6499 tree
6500 vect_gen_perm_mask_any (tree vectype, vec_perm_indices sel)
6502 tree mask_elt_type, mask_type, mask_vec;
6504 unsigned int nunits = sel.length ();
6505 gcc_checking_assert (nunits == TYPE_VECTOR_SUBPARTS (vectype));
6507 mask_elt_type = lang_hooks.types.type_for_mode
6508 (int_mode_for_mode (TYPE_MODE (TREE_TYPE (vectype))).require (), 1);
6509 mask_type = get_vectype_for_scalar_type (mask_elt_type);
6511 auto_vec<tree, 32> mask_elts (nunits);
6512 for (unsigned int i = 0; i < nunits; ++i)
6513 mask_elts.quick_push (build_int_cst (mask_elt_type, sel[i]));
6514 mask_vec = build_vector (mask_type, mask_elts);
6516 return mask_vec;
6519 /* Checked version of vect_gen_perm_mask_any. Asserts can_vec_perm_p,
6520 i.e. that the target supports the pattern _for arbitrary input vectors_. */
6522 tree
6523 vect_gen_perm_mask_checked (tree vectype, vec_perm_indices sel)
6525 gcc_assert (can_vec_perm_p (TYPE_MODE (vectype), false, &sel));
6526 return vect_gen_perm_mask_any (vectype, sel);
6529 /* Given a vector variable X and Y, that was generated for the scalar
6530 STMT, generate instructions to permute the vector elements of X and Y
6531 using permutation mask MASK_VEC, insert them at *GSI and return the
6532 permuted vector variable. */
6534 static tree
6535 permute_vec_elements (tree x, tree y, tree mask_vec, gimple *stmt,
6536 gimple_stmt_iterator *gsi)
6538 tree vectype = TREE_TYPE (x);
6539 tree perm_dest, data_ref;
6540 gimple *perm_stmt;
6542 perm_dest = vect_create_destination_var (gimple_get_lhs (stmt), vectype);
6543 data_ref = make_ssa_name (perm_dest);
6545 /* Generate the permute statement. */
6546 perm_stmt = gimple_build_assign (data_ref, VEC_PERM_EXPR, x, y, mask_vec);
6547 vect_finish_stmt_generation (stmt, perm_stmt, gsi);
6549 return data_ref;
6552 /* Hoist the definitions of all SSA uses on STMT out of the loop LOOP,
6553 inserting them on the loops preheader edge. Returns true if we
6554 were successful in doing so (and thus STMT can be moved then),
6555 otherwise returns false. */
6557 static bool
6558 hoist_defs_of_uses (gimple *stmt, struct loop *loop)
6560 ssa_op_iter i;
6561 tree op;
6562 bool any = false;
6564 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_USE)
6566 gimple *def_stmt = SSA_NAME_DEF_STMT (op);
6567 if (!gimple_nop_p (def_stmt)
6568 && flow_bb_inside_loop_p (loop, gimple_bb (def_stmt)))
6570 /* Make sure we don't need to recurse. While we could do
6571 so in simple cases when there are more complex use webs
6572 we don't have an easy way to preserve stmt order to fulfil
6573 dependencies within them. */
6574 tree op2;
6575 ssa_op_iter i2;
6576 if (gimple_code (def_stmt) == GIMPLE_PHI)
6577 return false;
6578 FOR_EACH_SSA_TREE_OPERAND (op2, def_stmt, i2, SSA_OP_USE)
6580 gimple *def_stmt2 = SSA_NAME_DEF_STMT (op2);
6581 if (!gimple_nop_p (def_stmt2)
6582 && flow_bb_inside_loop_p (loop, gimple_bb (def_stmt2)))
6583 return false;
6585 any = true;
6589 if (!any)
6590 return true;
6592 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_USE)
6594 gimple *def_stmt = SSA_NAME_DEF_STMT (op);
6595 if (!gimple_nop_p (def_stmt)
6596 && flow_bb_inside_loop_p (loop, gimple_bb (def_stmt)))
6598 gimple_stmt_iterator gsi = gsi_for_stmt (def_stmt);
6599 gsi_remove (&gsi, false);
6600 gsi_insert_on_edge_immediate (loop_preheader_edge (loop), def_stmt);
6604 return true;
6607 /* vectorizable_load.
6609 Check if STMT reads a non scalar data-ref (array/pointer/structure) that
6610 can be vectorized.
6611 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
6612 stmt to replace it, put it in VEC_STMT, and insert it at BSI.
6613 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
6615 static bool
6616 vectorizable_load (gimple *stmt, gimple_stmt_iterator *gsi, gimple **vec_stmt,
6617 slp_tree slp_node, slp_instance slp_node_instance)
6619 tree scalar_dest;
6620 tree vec_dest = NULL;
6621 tree data_ref = NULL;
6622 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
6623 stmt_vec_info prev_stmt_info;
6624 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
6625 struct loop *loop = NULL;
6626 struct loop *containing_loop = (gimple_bb (stmt))->loop_father;
6627 bool nested_in_vect_loop = false;
6628 struct data_reference *dr = STMT_VINFO_DATA_REF (stmt_info), *first_dr = NULL;
6629 tree elem_type;
6630 tree new_temp;
6631 machine_mode mode;
6632 gimple *new_stmt = NULL;
6633 tree dummy;
6634 enum dr_alignment_support alignment_support_scheme;
6635 tree dataref_ptr = NULL_TREE;
6636 tree dataref_offset = NULL_TREE;
6637 gimple *ptr_incr = NULL;
6638 int ncopies;
6639 int i, j, group_size, group_gap_adj;
6640 tree msq = NULL_TREE, lsq;
6641 tree offset = NULL_TREE;
6642 tree byte_offset = NULL_TREE;
6643 tree realignment_token = NULL_TREE;
6644 gphi *phi = NULL;
6645 vec<tree> dr_chain = vNULL;
6646 bool grouped_load = false;
6647 gimple *first_stmt;
6648 gimple *first_stmt_for_drptr = NULL;
6649 bool inv_p;
6650 bool compute_in_loop = false;
6651 struct loop *at_loop;
6652 int vec_num;
6653 bool slp = (slp_node != NULL);
6654 bool slp_perm = false;
6655 enum tree_code code;
6656 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
6657 int vf;
6658 tree aggr_type;
6659 gather_scatter_info gs_info;
6660 vec_info *vinfo = stmt_info->vinfo;
6661 tree ref_type;
6663 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
6664 return false;
6666 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
6667 && ! vec_stmt)
6668 return false;
6670 /* Is vectorizable load? */
6671 if (!is_gimple_assign (stmt))
6672 return false;
6674 scalar_dest = gimple_assign_lhs (stmt);
6675 if (TREE_CODE (scalar_dest) != SSA_NAME)
6676 return false;
6678 code = gimple_assign_rhs_code (stmt);
6679 if (code != ARRAY_REF
6680 && code != BIT_FIELD_REF
6681 && code != INDIRECT_REF
6682 && code != COMPONENT_REF
6683 && code != IMAGPART_EXPR
6684 && code != REALPART_EXPR
6685 && code != MEM_REF
6686 && TREE_CODE_CLASS (code) != tcc_declaration)
6687 return false;
6689 if (!STMT_VINFO_DATA_REF (stmt_info))
6690 return false;
6692 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
6693 int nunits = TYPE_VECTOR_SUBPARTS (vectype);
6695 if (loop_vinfo)
6697 loop = LOOP_VINFO_LOOP (loop_vinfo);
6698 nested_in_vect_loop = nested_in_vect_loop_p (loop, stmt);
6699 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo);
6701 else
6702 vf = 1;
6704 /* Multiple types in SLP are handled by creating the appropriate number of
6705 vectorized stmts for each SLP node. Hence, NCOPIES is always 1 in
6706 case of SLP. */
6707 if (slp)
6708 ncopies = 1;
6709 else
6710 ncopies = vect_get_num_copies (loop_vinfo, vectype);
6712 gcc_assert (ncopies >= 1);
6714 /* FORNOW. This restriction should be relaxed. */
6715 if (nested_in_vect_loop && ncopies > 1)
6717 if (dump_enabled_p ())
6718 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6719 "multiple types in nested loop.\n");
6720 return false;
6723 /* Invalidate assumptions made by dependence analysis when vectorization
6724 on the unrolled body effectively re-orders stmts. */
6725 if (ncopies > 1
6726 && STMT_VINFO_MIN_NEG_DIST (stmt_info) != 0
6727 && ((unsigned)LOOP_VINFO_VECT_FACTOR (loop_vinfo)
6728 > STMT_VINFO_MIN_NEG_DIST (stmt_info)))
6730 if (dump_enabled_p ())
6731 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6732 "cannot perform implicit CSE when unrolling "
6733 "with negative dependence distance\n");
6734 return false;
6737 elem_type = TREE_TYPE (vectype);
6738 mode = TYPE_MODE (vectype);
6740 /* FORNOW. In some cases can vectorize even if data-type not supported
6741 (e.g. - data copies). */
6742 if (optab_handler (mov_optab, mode) == CODE_FOR_nothing)
6744 if (dump_enabled_p ())
6745 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6746 "Aligned load, but unsupported type.\n");
6747 return false;
6750 /* Check if the load is a part of an interleaving chain. */
6751 if (STMT_VINFO_GROUPED_ACCESS (stmt_info))
6753 grouped_load = true;
6754 /* FORNOW */
6755 gcc_assert (!nested_in_vect_loop);
6756 gcc_assert (!STMT_VINFO_GATHER_SCATTER_P (stmt_info));
6758 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
6759 group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
6761 if (slp && SLP_TREE_LOAD_PERMUTATION (slp_node).exists ())
6762 slp_perm = true;
6764 /* Invalidate assumptions made by dependence analysis when vectorization
6765 on the unrolled body effectively re-orders stmts. */
6766 if (!PURE_SLP_STMT (stmt_info)
6767 && STMT_VINFO_MIN_NEG_DIST (stmt_info) != 0
6768 && ((unsigned)LOOP_VINFO_VECT_FACTOR (loop_vinfo)
6769 > STMT_VINFO_MIN_NEG_DIST (stmt_info)))
6771 if (dump_enabled_p ())
6772 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6773 "cannot perform implicit CSE when performing "
6774 "group loads with negative dependence distance\n");
6775 return false;
6778 /* Similarly when the stmt is a load that is both part of a SLP
6779 instance and a loop vectorized stmt via the same-dr mechanism
6780 we have to give up. */
6781 if (STMT_VINFO_GROUP_SAME_DR_STMT (stmt_info)
6782 && (STMT_SLP_TYPE (stmt_info)
6783 != STMT_SLP_TYPE (vinfo_for_stmt
6784 (STMT_VINFO_GROUP_SAME_DR_STMT (stmt_info)))))
6786 if (dump_enabled_p ())
6787 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
6788 "conflicting SLP types for CSEd load\n");
6789 return false;
6793 vect_memory_access_type memory_access_type;
6794 if (!get_load_store_type (stmt, vectype, slp, VLS_LOAD, ncopies,
6795 &memory_access_type, &gs_info))
6796 return false;
6798 if (!vec_stmt) /* transformation not required. */
6800 if (!slp)
6801 STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info) = memory_access_type;
6802 STMT_VINFO_TYPE (stmt_info) = load_vec_info_type;
6803 /* The SLP costs are calculated during SLP analysis. */
6804 if (!PURE_SLP_STMT (stmt_info))
6805 vect_model_load_cost (stmt_info, ncopies, memory_access_type,
6806 NULL, NULL, NULL);
6807 return true;
6810 if (!slp)
6811 gcc_assert (memory_access_type
6812 == STMT_VINFO_MEMORY_ACCESS_TYPE (stmt_info));
6814 if (dump_enabled_p ())
6815 dump_printf_loc (MSG_NOTE, vect_location,
6816 "transform load. ncopies = %d\n", ncopies);
6818 /* Transform. */
6820 ensure_base_align (dr);
6822 if (memory_access_type == VMAT_GATHER_SCATTER)
6824 tree vec_oprnd0 = NULL_TREE, op;
6825 tree arglist = TYPE_ARG_TYPES (TREE_TYPE (gs_info.decl));
6826 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype;
6827 tree ptr, mask, var, scale, merge, perm_mask = NULL_TREE, prev_res = NULL_TREE;
6828 edge pe = loop_preheader_edge (loop);
6829 gimple_seq seq;
6830 basic_block new_bb;
6831 enum { NARROW, NONE, WIDEN } modifier;
6832 int gather_off_nunits = TYPE_VECTOR_SUBPARTS (gs_info.offset_vectype);
6834 if (nunits == gather_off_nunits)
6835 modifier = NONE;
6836 else if (nunits == gather_off_nunits / 2)
6838 modifier = WIDEN;
6840 auto_vec_perm_indices sel (gather_off_nunits);
6841 for (i = 0; i < gather_off_nunits; ++i)
6842 sel.quick_push (i | nunits);
6844 perm_mask = vect_gen_perm_mask_checked (gs_info.offset_vectype, sel);
6846 else if (nunits == gather_off_nunits * 2)
6848 modifier = NARROW;
6850 auto_vec_perm_indices sel (nunits);
6851 for (i = 0; i < nunits; ++i)
6852 sel.quick_push (i < gather_off_nunits
6853 ? i : i + nunits - gather_off_nunits);
6855 perm_mask = vect_gen_perm_mask_checked (vectype, sel);
6856 ncopies *= 2;
6858 else
6859 gcc_unreachable ();
6861 rettype = TREE_TYPE (TREE_TYPE (gs_info.decl));
6862 srctype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
6863 ptrtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
6864 idxtype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
6865 masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist);
6866 scaletype = TREE_VALUE (arglist);
6867 gcc_checking_assert (types_compatible_p (srctype, rettype));
6869 vec_dest = vect_create_destination_var (scalar_dest, vectype);
6871 ptr = fold_convert (ptrtype, gs_info.base);
6872 if (!is_gimple_min_invariant (ptr))
6874 ptr = force_gimple_operand (ptr, &seq, true, NULL_TREE);
6875 new_bb = gsi_insert_seq_on_edge_immediate (pe, seq);
6876 gcc_assert (!new_bb);
6879 /* Currently we support only unconditional gather loads,
6880 so mask should be all ones. */
6881 if (TREE_CODE (masktype) == INTEGER_TYPE)
6882 mask = build_int_cst (masktype, -1);
6883 else if (TREE_CODE (TREE_TYPE (masktype)) == INTEGER_TYPE)
6885 mask = build_int_cst (TREE_TYPE (masktype), -1);
6886 mask = build_vector_from_val (masktype, mask);
6887 mask = vect_init_vector (stmt, mask, masktype, NULL);
6889 else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (masktype)))
6891 REAL_VALUE_TYPE r;
6892 long tmp[6];
6893 for (j = 0; j < 6; ++j)
6894 tmp[j] = -1;
6895 real_from_target (&r, tmp, TYPE_MODE (TREE_TYPE (masktype)));
6896 mask = build_real (TREE_TYPE (masktype), r);
6897 mask = build_vector_from_val (masktype, mask);
6898 mask = vect_init_vector (stmt, mask, masktype, NULL);
6900 else
6901 gcc_unreachable ();
6903 scale = build_int_cst (scaletype, gs_info.scale);
6905 if (TREE_CODE (TREE_TYPE (rettype)) == INTEGER_TYPE)
6906 merge = build_int_cst (TREE_TYPE (rettype), 0);
6907 else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (rettype)))
6909 REAL_VALUE_TYPE r;
6910 long tmp[6];
6911 for (j = 0; j < 6; ++j)
6912 tmp[j] = 0;
6913 real_from_target (&r, tmp, TYPE_MODE (TREE_TYPE (rettype)));
6914 merge = build_real (TREE_TYPE (rettype), r);
6916 else
6917 gcc_unreachable ();
6918 merge = build_vector_from_val (rettype, merge);
6919 merge = vect_init_vector (stmt, merge, rettype, NULL);
6921 prev_stmt_info = NULL;
6922 for (j = 0; j < ncopies; ++j)
6924 if (modifier == WIDEN && (j & 1))
6925 op = permute_vec_elements (vec_oprnd0, vec_oprnd0,
6926 perm_mask, stmt, gsi);
6927 else if (j == 0)
6928 op = vec_oprnd0
6929 = vect_get_vec_def_for_operand (gs_info.offset, stmt);
6930 else
6931 op = vec_oprnd0
6932 = vect_get_vec_def_for_stmt_copy (gs_info.offset_dt, vec_oprnd0);
6934 if (!useless_type_conversion_p (idxtype, TREE_TYPE (op)))
6936 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (op))
6937 == TYPE_VECTOR_SUBPARTS (idxtype));
6938 var = vect_get_new_ssa_name (idxtype, vect_simple_var);
6939 op = build1 (VIEW_CONVERT_EXPR, idxtype, op);
6940 new_stmt
6941 = gimple_build_assign (var, VIEW_CONVERT_EXPR, op);
6942 vect_finish_stmt_generation (stmt, new_stmt, gsi);
6943 op = var;
6946 new_stmt
6947 = gimple_build_call (gs_info.decl, 5, merge, ptr, op, mask, scale);
6949 if (!useless_type_conversion_p (vectype, rettype))
6951 gcc_assert (TYPE_VECTOR_SUBPARTS (vectype)
6952 == TYPE_VECTOR_SUBPARTS (rettype));
6953 op = vect_get_new_ssa_name (rettype, vect_simple_var);
6954 gimple_call_set_lhs (new_stmt, op);
6955 vect_finish_stmt_generation (stmt, new_stmt, gsi);
6956 var = make_ssa_name (vec_dest);
6957 op = build1 (VIEW_CONVERT_EXPR, vectype, op);
6958 new_stmt
6959 = gimple_build_assign (var, VIEW_CONVERT_EXPR, op);
6961 else
6963 var = make_ssa_name (vec_dest, new_stmt);
6964 gimple_call_set_lhs (new_stmt, var);
6967 vect_finish_stmt_generation (stmt, new_stmt, gsi);
6969 if (modifier == NARROW)
6971 if ((j & 1) == 0)
6973 prev_res = var;
6974 continue;
6976 var = permute_vec_elements (prev_res, var,
6977 perm_mask, stmt, gsi);
6978 new_stmt = SSA_NAME_DEF_STMT (var);
6981 if (prev_stmt_info == NULL)
6982 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
6983 else
6984 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
6985 prev_stmt_info = vinfo_for_stmt (new_stmt);
6987 return true;
6990 if (memory_access_type == VMAT_ELEMENTWISE
6991 || memory_access_type == VMAT_STRIDED_SLP)
6993 gimple_stmt_iterator incr_gsi;
6994 bool insert_after;
6995 gimple *incr;
6996 tree offvar;
6997 tree ivstep;
6998 tree running_off;
6999 vec<constructor_elt, va_gc> *v = NULL;
7000 gimple_seq stmts = NULL;
7001 tree stride_base, stride_step, alias_off;
7003 gcc_assert (!nested_in_vect_loop);
7005 if (slp && grouped_load)
7007 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
7008 first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
7009 group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
7010 ref_type = get_group_alias_ptr_type (first_stmt);
7012 else
7014 first_stmt = stmt;
7015 first_dr = dr;
7016 group_size = 1;
7017 ref_type = reference_alias_ptr_type (DR_REF (first_dr));
7020 stride_base
7021 = fold_build_pointer_plus
7022 (DR_BASE_ADDRESS (first_dr),
7023 size_binop (PLUS_EXPR,
7024 convert_to_ptrofftype (DR_OFFSET (first_dr)),
7025 convert_to_ptrofftype (DR_INIT (first_dr))));
7026 stride_step = fold_convert (sizetype, DR_STEP (first_dr));
7028 /* For a load with loop-invariant (but other than power-of-2)
7029 stride (i.e. not a grouped access) like so:
7031 for (i = 0; i < n; i += stride)
7032 ... = array[i];
7034 we generate a new induction variable and new accesses to
7035 form a new vector (or vectors, depending on ncopies):
7037 for (j = 0; ; j += VF*stride)
7038 tmp1 = array[j];
7039 tmp2 = array[j + stride];
7041 vectemp = {tmp1, tmp2, ...}
7044 ivstep = fold_build2 (MULT_EXPR, TREE_TYPE (stride_step), stride_step,
7045 build_int_cst (TREE_TYPE (stride_step), vf));
7047 standard_iv_increment_position (loop, &incr_gsi, &insert_after);
7049 create_iv (unshare_expr (stride_base), unshare_expr (ivstep), NULL,
7050 loop, &incr_gsi, insert_after,
7051 &offvar, NULL);
7052 incr = gsi_stmt (incr_gsi);
7053 set_vinfo_for_stmt (incr, new_stmt_vec_info (incr, loop_vinfo));
7055 stride_step = force_gimple_operand (unshare_expr (stride_step),
7056 &stmts, true, NULL_TREE);
7057 if (stmts)
7058 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
7060 prev_stmt_info = NULL;
7061 running_off = offvar;
7062 alias_off = build_int_cst (ref_type, 0);
7063 int nloads = nunits;
7064 int lnel = 1;
7065 tree ltype = TREE_TYPE (vectype);
7066 tree lvectype = vectype;
7067 auto_vec<tree> dr_chain;
7068 if (memory_access_type == VMAT_STRIDED_SLP)
7070 if (group_size < nunits)
7072 /* First check if vec_init optab supports construction from
7073 vector elts directly. */
7074 scalar_mode elmode = SCALAR_TYPE_MODE (TREE_TYPE (vectype));
7075 machine_mode vmode;
7076 if (mode_for_vector (elmode, group_size).exists (&vmode)
7077 && VECTOR_MODE_P (vmode)
7078 && (convert_optab_handler (vec_init_optab,
7079 TYPE_MODE (vectype), vmode)
7080 != CODE_FOR_nothing))
7082 nloads = nunits / group_size;
7083 lnel = group_size;
7084 ltype = build_vector_type (TREE_TYPE (vectype), group_size);
7086 else
7088 /* Otherwise avoid emitting a constructor of vector elements
7089 by performing the loads using an integer type of the same
7090 size, constructing a vector of those and then
7091 re-interpreting it as the original vector type.
7092 This avoids a huge runtime penalty due to the general
7093 inability to perform store forwarding from smaller stores
7094 to a larger load. */
7095 unsigned lsize
7096 = group_size * TYPE_PRECISION (TREE_TYPE (vectype));
7097 elmode = int_mode_for_size (lsize, 0).require ();
7098 /* If we can't construct such a vector fall back to
7099 element loads of the original vector type. */
7100 if (mode_for_vector (elmode,
7101 nunits / group_size).exists (&vmode)
7102 && VECTOR_MODE_P (vmode)
7103 && (convert_optab_handler (vec_init_optab, vmode, elmode)
7104 != CODE_FOR_nothing))
7106 nloads = nunits / group_size;
7107 lnel = group_size;
7108 ltype = build_nonstandard_integer_type (lsize, 1);
7109 lvectype = build_vector_type (ltype, nloads);
7113 else
7115 nloads = 1;
7116 lnel = nunits;
7117 ltype = vectype;
7119 ltype = build_aligned_type (ltype, TYPE_ALIGN (TREE_TYPE (vectype)));
7121 if (slp)
7123 /* For SLP permutation support we need to load the whole group,
7124 not only the number of vector stmts the permutation result
7125 fits in. */
7126 if (slp_perm)
7128 ncopies = (group_size * vf + nunits - 1) / nunits;
7129 dr_chain.create (ncopies);
7131 else
7132 ncopies = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
7134 int group_el = 0;
7135 unsigned HOST_WIDE_INT
7136 elsz = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (vectype)));
7137 for (j = 0; j < ncopies; j++)
7139 if (nloads > 1)
7140 vec_alloc (v, nloads);
7141 for (i = 0; i < nloads; i++)
7143 tree this_off = build_int_cst (TREE_TYPE (alias_off),
7144 group_el * elsz);
7145 new_stmt = gimple_build_assign (make_ssa_name (ltype),
7146 build2 (MEM_REF, ltype,
7147 running_off, this_off));
7148 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7149 if (nloads > 1)
7150 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
7151 gimple_assign_lhs (new_stmt));
7153 group_el += lnel;
7154 if (! slp
7155 || group_el == group_size)
7157 tree newoff = copy_ssa_name (running_off);
7158 gimple *incr = gimple_build_assign (newoff, POINTER_PLUS_EXPR,
7159 running_off, stride_step);
7160 vect_finish_stmt_generation (stmt, incr, gsi);
7162 running_off = newoff;
7163 group_el = 0;
7166 if (nloads > 1)
7168 tree vec_inv = build_constructor (lvectype, v);
7169 new_temp = vect_init_vector (stmt, vec_inv, lvectype, gsi);
7170 new_stmt = SSA_NAME_DEF_STMT (new_temp);
7171 if (lvectype != vectype)
7173 new_stmt = gimple_build_assign (make_ssa_name (vectype),
7174 VIEW_CONVERT_EXPR,
7175 build1 (VIEW_CONVERT_EXPR,
7176 vectype, new_temp));
7177 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7181 if (slp)
7183 if (slp_perm)
7184 dr_chain.quick_push (gimple_assign_lhs (new_stmt));
7185 else
7186 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
7188 else
7190 if (j == 0)
7191 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
7192 else
7193 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
7194 prev_stmt_info = vinfo_for_stmt (new_stmt);
7197 if (slp_perm)
7199 unsigned n_perms;
7200 vect_transform_slp_perm_load (slp_node, dr_chain, gsi, vf,
7201 slp_node_instance, false, &n_perms);
7203 return true;
7206 if (grouped_load)
7208 first_stmt = GROUP_FIRST_ELEMENT (stmt_info);
7209 group_size = GROUP_SIZE (vinfo_for_stmt (first_stmt));
7210 /* For SLP vectorization we directly vectorize a subchain
7211 without permutation. */
7212 if (slp && ! SLP_TREE_LOAD_PERMUTATION (slp_node).exists ())
7213 first_stmt = SLP_TREE_SCALAR_STMTS (slp_node)[0];
7214 /* For BB vectorization always use the first stmt to base
7215 the data ref pointer on. */
7216 if (bb_vinfo)
7217 first_stmt_for_drptr = SLP_TREE_SCALAR_STMTS (slp_node)[0];
7219 /* Check if the chain of loads is already vectorized. */
7220 if (STMT_VINFO_VEC_STMT (vinfo_for_stmt (first_stmt))
7221 /* For SLP we would need to copy over SLP_TREE_VEC_STMTS.
7222 ??? But we can only do so if there is exactly one
7223 as we have no way to get at the rest. Leave the CSE
7224 opportunity alone.
7225 ??? With the group load eventually participating
7226 in multiple different permutations (having multiple
7227 slp nodes which refer to the same group) the CSE
7228 is even wrong code. See PR56270. */
7229 && !slp)
7231 *vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
7232 return true;
7234 first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt));
7235 group_gap_adj = 0;
7237 /* VEC_NUM is the number of vect stmts to be created for this group. */
7238 if (slp)
7240 grouped_load = false;
7241 /* For SLP permutation support we need to load the whole group,
7242 not only the number of vector stmts the permutation result
7243 fits in. */
7244 if (slp_perm)
7246 vec_num = (group_size * vf + nunits - 1) / nunits;
7247 group_gap_adj = vf * group_size - nunits * vec_num;
7249 else
7251 vec_num = SLP_TREE_NUMBER_OF_VEC_STMTS (slp_node);
7252 group_gap_adj
7253 = group_size - SLP_INSTANCE_GROUP_SIZE (slp_node_instance);
7256 else
7257 vec_num = group_size;
7259 ref_type = get_group_alias_ptr_type (first_stmt);
7261 else
7263 first_stmt = stmt;
7264 first_dr = dr;
7265 group_size = vec_num = 1;
7266 group_gap_adj = 0;
7267 ref_type = reference_alias_ptr_type (DR_REF (first_dr));
7270 alignment_support_scheme = vect_supportable_dr_alignment (first_dr, false);
7271 gcc_assert (alignment_support_scheme);
7272 /* Targets with load-lane instructions must not require explicit
7273 realignment. */
7274 gcc_assert (memory_access_type != VMAT_LOAD_STORE_LANES
7275 || alignment_support_scheme == dr_aligned
7276 || alignment_support_scheme == dr_unaligned_supported);
7278 /* In case the vectorization factor (VF) is bigger than the number
7279 of elements that we can fit in a vectype (nunits), we have to generate
7280 more than one vector stmt - i.e - we need to "unroll" the
7281 vector stmt by a factor VF/nunits. In doing so, we record a pointer
7282 from one copy of the vector stmt to the next, in the field
7283 STMT_VINFO_RELATED_STMT. This is necessary in order to allow following
7284 stages to find the correct vector defs to be used when vectorizing
7285 stmts that use the defs of the current stmt. The example below
7286 illustrates the vectorization process when VF=16 and nunits=4 (i.e., we
7287 need to create 4 vectorized stmts):
7289 before vectorization:
7290 RELATED_STMT VEC_STMT
7291 S1: x = memref - -
7292 S2: z = x + 1 - -
7294 step 1: vectorize stmt S1:
7295 We first create the vector stmt VS1_0, and, as usual, record a
7296 pointer to it in the STMT_VINFO_VEC_STMT of the scalar stmt S1.
7297 Next, we create the vector stmt VS1_1, and record a pointer to
7298 it in the STMT_VINFO_RELATED_STMT of the vector stmt VS1_0.
7299 Similarly, for VS1_2 and VS1_3. This is the resulting chain of
7300 stmts and pointers:
7301 RELATED_STMT VEC_STMT
7302 VS1_0: vx0 = memref0 VS1_1 -
7303 VS1_1: vx1 = memref1 VS1_2 -
7304 VS1_2: vx2 = memref2 VS1_3 -
7305 VS1_3: vx3 = memref3 - -
7306 S1: x = load - VS1_0
7307 S2: z = x + 1 - -
7309 See in documentation in vect_get_vec_def_for_stmt_copy for how the
7310 information we recorded in RELATED_STMT field is used to vectorize
7311 stmt S2. */
7313 /* In case of interleaving (non-unit grouped access):
7315 S1: x2 = &base + 2
7316 S2: x0 = &base
7317 S3: x1 = &base + 1
7318 S4: x3 = &base + 3
7320 Vectorized loads are created in the order of memory accesses
7321 starting from the access of the first stmt of the chain:
7323 VS1: vx0 = &base
7324 VS2: vx1 = &base + vec_size*1
7325 VS3: vx3 = &base + vec_size*2
7326 VS4: vx4 = &base + vec_size*3
7328 Then permutation statements are generated:
7330 VS5: vx5 = VEC_PERM_EXPR < vx0, vx1, { 0, 2, ..., i*2 } >
7331 VS6: vx6 = VEC_PERM_EXPR < vx0, vx1, { 1, 3, ..., i*2+1 } >
7334 And they are put in STMT_VINFO_VEC_STMT of the corresponding scalar stmts
7335 (the order of the data-refs in the output of vect_permute_load_chain
7336 corresponds to the order of scalar stmts in the interleaving chain - see
7337 the documentation of vect_permute_load_chain()).
7338 The generation of permutation stmts and recording them in
7339 STMT_VINFO_VEC_STMT is done in vect_transform_grouped_load().
7341 In case of both multiple types and interleaving, the vector loads and
7342 permutation stmts above are created for every copy. The result vector
7343 stmts are put in STMT_VINFO_VEC_STMT for the first copy and in the
7344 corresponding STMT_VINFO_RELATED_STMT for the next copies. */
7346 /* If the data reference is aligned (dr_aligned) or potentially unaligned
7347 on a target that supports unaligned accesses (dr_unaligned_supported)
7348 we generate the following code:
7349 p = initial_addr;
7350 indx = 0;
7351 loop {
7352 p = p + indx * vectype_size;
7353 vec_dest = *(p);
7354 indx = indx + 1;
7357 Otherwise, the data reference is potentially unaligned on a target that
7358 does not support unaligned accesses (dr_explicit_realign_optimized) -
7359 then generate the following code, in which the data in each iteration is
7360 obtained by two vector loads, one from the previous iteration, and one
7361 from the current iteration:
7362 p1 = initial_addr;
7363 msq_init = *(floor(p1))
7364 p2 = initial_addr + VS - 1;
7365 realignment_token = call target_builtin;
7366 indx = 0;
7367 loop {
7368 p2 = p2 + indx * vectype_size
7369 lsq = *(floor(p2))
7370 vec_dest = realign_load (msq, lsq, realignment_token)
7371 indx = indx + 1;
7372 msq = lsq;
7373 } */
7375 /* If the misalignment remains the same throughout the execution of the
7376 loop, we can create the init_addr and permutation mask at the loop
7377 preheader. Otherwise, it needs to be created inside the loop.
7378 This can only occur when vectorizing memory accesses in the inner-loop
7379 nested within an outer-loop that is being vectorized. */
7381 if (nested_in_vect_loop
7382 && (DR_STEP_ALIGNMENT (dr) % GET_MODE_SIZE (TYPE_MODE (vectype))) != 0)
7384 gcc_assert (alignment_support_scheme != dr_explicit_realign_optimized);
7385 compute_in_loop = true;
7388 if ((alignment_support_scheme == dr_explicit_realign_optimized
7389 || alignment_support_scheme == dr_explicit_realign)
7390 && !compute_in_loop)
7392 msq = vect_setup_realignment (first_stmt, gsi, &realignment_token,
7393 alignment_support_scheme, NULL_TREE,
7394 &at_loop);
7395 if (alignment_support_scheme == dr_explicit_realign_optimized)
7397 phi = as_a <gphi *> (SSA_NAME_DEF_STMT (msq));
7398 byte_offset = size_binop (MINUS_EXPR, TYPE_SIZE_UNIT (vectype),
7399 size_one_node);
7402 else
7403 at_loop = loop;
7405 if (memory_access_type == VMAT_CONTIGUOUS_REVERSE)
7406 offset = size_int (-TYPE_VECTOR_SUBPARTS (vectype) + 1);
7408 if (memory_access_type == VMAT_LOAD_STORE_LANES)
7409 aggr_type = build_array_type_nelts (elem_type, vec_num * nunits);
7410 else
7411 aggr_type = vectype;
7413 prev_stmt_info = NULL;
7414 int group_elt = 0;
7415 for (j = 0; j < ncopies; j++)
7417 /* 1. Create the vector or array pointer update chain. */
7418 if (j == 0)
7420 bool simd_lane_access_p
7421 = STMT_VINFO_SIMD_LANE_ACCESS_P (stmt_info);
7422 if (simd_lane_access_p
7423 && TREE_CODE (DR_BASE_ADDRESS (first_dr)) == ADDR_EXPR
7424 && VAR_P (TREE_OPERAND (DR_BASE_ADDRESS (first_dr), 0))
7425 && integer_zerop (DR_OFFSET (first_dr))
7426 && integer_zerop (DR_INIT (first_dr))
7427 && alias_sets_conflict_p (get_alias_set (aggr_type),
7428 get_alias_set (TREE_TYPE (ref_type)))
7429 && (alignment_support_scheme == dr_aligned
7430 || alignment_support_scheme == dr_unaligned_supported))
7432 dataref_ptr = unshare_expr (DR_BASE_ADDRESS (first_dr));
7433 dataref_offset = build_int_cst (ref_type, 0);
7434 inv_p = false;
7436 else if (first_stmt_for_drptr
7437 && first_stmt != first_stmt_for_drptr)
7439 dataref_ptr
7440 = vect_create_data_ref_ptr (first_stmt_for_drptr, aggr_type,
7441 at_loop, offset, &dummy, gsi,
7442 &ptr_incr, simd_lane_access_p,
7443 &inv_p, byte_offset);
7444 /* Adjust the pointer by the difference to first_stmt. */
7445 data_reference_p ptrdr
7446 = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt_for_drptr));
7447 tree diff = fold_convert (sizetype,
7448 size_binop (MINUS_EXPR,
7449 DR_INIT (first_dr),
7450 DR_INIT (ptrdr)));
7451 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi,
7452 stmt, diff);
7454 else
7455 dataref_ptr
7456 = vect_create_data_ref_ptr (first_stmt, aggr_type, at_loop,
7457 offset, &dummy, gsi, &ptr_incr,
7458 simd_lane_access_p, &inv_p,
7459 byte_offset);
7461 else if (dataref_offset)
7462 dataref_offset = int_const_binop (PLUS_EXPR, dataref_offset,
7463 TYPE_SIZE_UNIT (aggr_type));
7464 else
7465 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi, stmt,
7466 TYPE_SIZE_UNIT (aggr_type));
7468 if (grouped_load || slp_perm)
7469 dr_chain.create (vec_num);
7471 if (memory_access_type == VMAT_LOAD_STORE_LANES)
7473 tree vec_array;
7475 vec_array = create_vector_array (vectype, vec_num);
7477 /* Emit:
7478 VEC_ARRAY = LOAD_LANES (MEM_REF[...all elements...]). */
7479 data_ref = create_array_ref (aggr_type, dataref_ptr, ref_type);
7480 gcall *call = gimple_build_call_internal (IFN_LOAD_LANES, 1,
7481 data_ref);
7482 gimple_call_set_lhs (call, vec_array);
7483 gimple_call_set_nothrow (call, true);
7484 new_stmt = call;
7485 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7487 /* Extract each vector into an SSA_NAME. */
7488 for (i = 0; i < vec_num; i++)
7490 new_temp = read_vector_array (stmt, gsi, scalar_dest,
7491 vec_array, i);
7492 dr_chain.quick_push (new_temp);
7495 /* Record the mapping between SSA_NAMEs and statements. */
7496 vect_record_grouped_load_vectors (stmt, dr_chain);
7498 else
7500 for (i = 0; i < vec_num; i++)
7502 if (i > 0)
7503 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi,
7504 stmt, NULL_TREE);
7506 /* 2. Create the vector-load in the loop. */
7507 switch (alignment_support_scheme)
7509 case dr_aligned:
7510 case dr_unaligned_supported:
7512 unsigned int align, misalign;
7514 data_ref
7515 = fold_build2 (MEM_REF, vectype, dataref_ptr,
7516 dataref_offset
7517 ? dataref_offset
7518 : build_int_cst (ref_type, 0));
7519 align = DR_TARGET_ALIGNMENT (dr);
7520 if (alignment_support_scheme == dr_aligned)
7522 gcc_assert (aligned_access_p (first_dr));
7523 misalign = 0;
7525 else if (DR_MISALIGNMENT (first_dr) == -1)
7527 align = dr_alignment (vect_dr_behavior (first_dr));
7528 misalign = 0;
7529 TREE_TYPE (data_ref)
7530 = build_aligned_type (TREE_TYPE (data_ref),
7531 align * BITS_PER_UNIT);
7533 else
7535 TREE_TYPE (data_ref)
7536 = build_aligned_type (TREE_TYPE (data_ref),
7537 TYPE_ALIGN (elem_type));
7538 misalign = DR_MISALIGNMENT (first_dr);
7540 if (dataref_offset == NULL_TREE
7541 && TREE_CODE (dataref_ptr) == SSA_NAME)
7542 set_ptr_info_alignment (get_ptr_info (dataref_ptr),
7543 align, misalign);
7544 break;
7546 case dr_explicit_realign:
7548 tree ptr, bump;
7550 tree vs = size_int (TYPE_VECTOR_SUBPARTS (vectype));
7552 if (compute_in_loop)
7553 msq = vect_setup_realignment (first_stmt, gsi,
7554 &realignment_token,
7555 dr_explicit_realign,
7556 dataref_ptr, NULL);
7558 if (TREE_CODE (dataref_ptr) == SSA_NAME)
7559 ptr = copy_ssa_name (dataref_ptr);
7560 else
7561 ptr = make_ssa_name (TREE_TYPE (dataref_ptr));
7562 unsigned int align = DR_TARGET_ALIGNMENT (first_dr);
7563 new_stmt = gimple_build_assign
7564 (ptr, BIT_AND_EXPR, dataref_ptr,
7565 build_int_cst
7566 (TREE_TYPE (dataref_ptr),
7567 -(HOST_WIDE_INT) align));
7568 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7569 data_ref
7570 = build2 (MEM_REF, vectype, ptr,
7571 build_int_cst (ref_type, 0));
7572 vec_dest = vect_create_destination_var (scalar_dest,
7573 vectype);
7574 new_stmt = gimple_build_assign (vec_dest, data_ref);
7575 new_temp = make_ssa_name (vec_dest, new_stmt);
7576 gimple_assign_set_lhs (new_stmt, new_temp);
7577 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
7578 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
7579 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7580 msq = new_temp;
7582 bump = size_binop (MULT_EXPR, vs,
7583 TYPE_SIZE_UNIT (elem_type));
7584 bump = size_binop (MINUS_EXPR, bump, size_one_node);
7585 ptr = bump_vector_ptr (dataref_ptr, NULL, gsi, stmt, bump);
7586 new_stmt = gimple_build_assign
7587 (NULL_TREE, BIT_AND_EXPR, ptr,
7588 build_int_cst
7589 (TREE_TYPE (ptr), -(HOST_WIDE_INT) align));
7590 ptr = copy_ssa_name (ptr, new_stmt);
7591 gimple_assign_set_lhs (new_stmt, ptr);
7592 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7593 data_ref
7594 = build2 (MEM_REF, vectype, ptr,
7595 build_int_cst (ref_type, 0));
7596 break;
7598 case dr_explicit_realign_optimized:
7600 if (TREE_CODE (dataref_ptr) == SSA_NAME)
7601 new_temp = copy_ssa_name (dataref_ptr);
7602 else
7603 new_temp = make_ssa_name (TREE_TYPE (dataref_ptr));
7604 unsigned int align = DR_TARGET_ALIGNMENT (first_dr);
7605 new_stmt = gimple_build_assign
7606 (new_temp, BIT_AND_EXPR, dataref_ptr,
7607 build_int_cst (TREE_TYPE (dataref_ptr),
7608 -(HOST_WIDE_INT) align));
7609 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7610 data_ref
7611 = build2 (MEM_REF, vectype, new_temp,
7612 build_int_cst (ref_type, 0));
7613 break;
7615 default:
7616 gcc_unreachable ();
7618 vec_dest = vect_create_destination_var (scalar_dest, vectype);
7619 new_stmt = gimple_build_assign (vec_dest, data_ref);
7620 new_temp = make_ssa_name (vec_dest, new_stmt);
7621 gimple_assign_set_lhs (new_stmt, new_temp);
7622 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7624 /* 3. Handle explicit realignment if necessary/supported.
7625 Create in loop:
7626 vec_dest = realign_load (msq, lsq, realignment_token) */
7627 if (alignment_support_scheme == dr_explicit_realign_optimized
7628 || alignment_support_scheme == dr_explicit_realign)
7630 lsq = gimple_assign_lhs (new_stmt);
7631 if (!realignment_token)
7632 realignment_token = dataref_ptr;
7633 vec_dest = vect_create_destination_var (scalar_dest, vectype);
7634 new_stmt = gimple_build_assign (vec_dest, REALIGN_LOAD_EXPR,
7635 msq, lsq, realignment_token);
7636 new_temp = make_ssa_name (vec_dest, new_stmt);
7637 gimple_assign_set_lhs (new_stmt, new_temp);
7638 vect_finish_stmt_generation (stmt, new_stmt, gsi);
7640 if (alignment_support_scheme == dr_explicit_realign_optimized)
7642 gcc_assert (phi);
7643 if (i == vec_num - 1 && j == ncopies - 1)
7644 add_phi_arg (phi, lsq,
7645 loop_latch_edge (containing_loop),
7646 UNKNOWN_LOCATION);
7647 msq = lsq;
7651 /* 4. Handle invariant-load. */
7652 if (inv_p && !bb_vinfo)
7654 gcc_assert (!grouped_load);
7655 /* If we have versioned for aliasing or the loop doesn't
7656 have any data dependencies that would preclude this,
7657 then we are sure this is a loop invariant load and
7658 thus we can insert it on the preheader edge. */
7659 if (LOOP_VINFO_NO_DATA_DEPENDENCIES (loop_vinfo)
7660 && !nested_in_vect_loop
7661 && hoist_defs_of_uses (stmt, loop))
7663 if (dump_enabled_p ())
7665 dump_printf_loc (MSG_NOTE, vect_location,
7666 "hoisting out of the vectorized "
7667 "loop: ");
7668 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
7670 tree tem = copy_ssa_name (scalar_dest);
7671 gsi_insert_on_edge_immediate
7672 (loop_preheader_edge (loop),
7673 gimple_build_assign (tem,
7674 unshare_expr
7675 (gimple_assign_rhs1 (stmt))));
7676 new_temp = vect_init_vector (stmt, tem, vectype, NULL);
7677 new_stmt = SSA_NAME_DEF_STMT (new_temp);
7678 set_vinfo_for_stmt (new_stmt,
7679 new_stmt_vec_info (new_stmt, vinfo));
7681 else
7683 gimple_stmt_iterator gsi2 = *gsi;
7684 gsi_next (&gsi2);
7685 new_temp = vect_init_vector (stmt, scalar_dest,
7686 vectype, &gsi2);
7687 new_stmt = SSA_NAME_DEF_STMT (new_temp);
7691 if (memory_access_type == VMAT_CONTIGUOUS_REVERSE)
7693 tree perm_mask = perm_mask_for_reverse (vectype);
7694 new_temp = permute_vec_elements (new_temp, new_temp,
7695 perm_mask, stmt, gsi);
7696 new_stmt = SSA_NAME_DEF_STMT (new_temp);
7699 /* Collect vector loads and later create their permutation in
7700 vect_transform_grouped_load (). */
7701 if (grouped_load || slp_perm)
7702 dr_chain.quick_push (new_temp);
7704 /* Store vector loads in the corresponding SLP_NODE. */
7705 if (slp && !slp_perm)
7706 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
7708 /* With SLP permutation we load the gaps as well, without
7709 we need to skip the gaps after we manage to fully load
7710 all elements. group_gap_adj is GROUP_SIZE here. */
7711 group_elt += nunits;
7712 if (group_gap_adj != 0 && ! slp_perm
7713 && group_elt == group_size - group_gap_adj)
7715 bool ovf;
7716 tree bump
7717 = wide_int_to_tree (sizetype,
7718 wi::smul (TYPE_SIZE_UNIT (elem_type),
7719 group_gap_adj, &ovf));
7720 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi,
7721 stmt, bump);
7722 group_elt = 0;
7725 /* Bump the vector pointer to account for a gap or for excess
7726 elements loaded for a permuted SLP load. */
7727 if (group_gap_adj != 0 && slp_perm)
7729 bool ovf;
7730 tree bump
7731 = wide_int_to_tree (sizetype,
7732 wi::smul (TYPE_SIZE_UNIT (elem_type),
7733 group_gap_adj, &ovf));
7734 dataref_ptr = bump_vector_ptr (dataref_ptr, ptr_incr, gsi,
7735 stmt, bump);
7739 if (slp && !slp_perm)
7740 continue;
7742 if (slp_perm)
7744 unsigned n_perms;
7745 if (!vect_transform_slp_perm_load (slp_node, dr_chain, gsi, vf,
7746 slp_node_instance, false,
7747 &n_perms))
7749 dr_chain.release ();
7750 return false;
7753 else
7755 if (grouped_load)
7757 if (memory_access_type != VMAT_LOAD_STORE_LANES)
7758 vect_transform_grouped_load (stmt, dr_chain, group_size, gsi);
7759 *vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
7761 else
7763 if (j == 0)
7764 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
7765 else
7766 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
7767 prev_stmt_info = vinfo_for_stmt (new_stmt);
7770 dr_chain.release ();
7773 return true;
7776 /* Function vect_is_simple_cond.
7778 Input:
7779 LOOP - the loop that is being vectorized.
7780 COND - Condition that is checked for simple use.
7782 Output:
7783 *COMP_VECTYPE - the vector type for the comparison.
7784 *DTS - The def types for the arguments of the comparison
7786 Returns whether a COND can be vectorized. Checks whether
7787 condition operands are supportable using vec_is_simple_use. */
7789 static bool
7790 vect_is_simple_cond (tree cond, vec_info *vinfo,
7791 tree *comp_vectype, enum vect_def_type *dts)
7793 tree lhs, rhs;
7794 tree vectype1 = NULL_TREE, vectype2 = NULL_TREE;
7796 /* Mask case. */
7797 if (TREE_CODE (cond) == SSA_NAME
7798 && VECT_SCALAR_BOOLEAN_TYPE_P (TREE_TYPE (cond)))
7800 gimple *lhs_def_stmt = SSA_NAME_DEF_STMT (cond);
7801 if (!vect_is_simple_use (cond, vinfo, &lhs_def_stmt,
7802 &dts[0], comp_vectype)
7803 || !*comp_vectype
7804 || !VECTOR_BOOLEAN_TYPE_P (*comp_vectype))
7805 return false;
7806 return true;
7809 if (!COMPARISON_CLASS_P (cond))
7810 return false;
7812 lhs = TREE_OPERAND (cond, 0);
7813 rhs = TREE_OPERAND (cond, 1);
7815 if (TREE_CODE (lhs) == SSA_NAME)
7817 gimple *lhs_def_stmt = SSA_NAME_DEF_STMT (lhs);
7818 if (!vect_is_simple_use (lhs, vinfo, &lhs_def_stmt, &dts[0], &vectype1))
7819 return false;
7821 else if (TREE_CODE (lhs) == INTEGER_CST || TREE_CODE (lhs) == REAL_CST
7822 || TREE_CODE (lhs) == FIXED_CST)
7823 dts[0] = vect_constant_def;
7824 else
7825 return false;
7827 if (TREE_CODE (rhs) == SSA_NAME)
7829 gimple *rhs_def_stmt = SSA_NAME_DEF_STMT (rhs);
7830 if (!vect_is_simple_use (rhs, vinfo, &rhs_def_stmt, &dts[1], &vectype2))
7831 return false;
7833 else if (TREE_CODE (rhs) == INTEGER_CST || TREE_CODE (rhs) == REAL_CST
7834 || TREE_CODE (rhs) == FIXED_CST)
7835 dts[1] = vect_constant_def;
7836 else
7837 return false;
7839 if (vectype1 && vectype2
7840 && TYPE_VECTOR_SUBPARTS (vectype1) != TYPE_VECTOR_SUBPARTS (vectype2))
7841 return false;
7843 *comp_vectype = vectype1 ? vectype1 : vectype2;
7844 return true;
7847 /* vectorizable_condition.
7849 Check if STMT is conditional modify expression that can be vectorized.
7850 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
7851 stmt using VEC_COND_EXPR to replace it, put it in VEC_STMT, and insert it
7852 at GSI.
7854 When STMT is vectorized as nested cycle, REDUC_DEF is the vector variable
7855 to be used at REDUC_INDEX (in then clause if REDUC_INDEX is 1, and in
7856 else clause if it is 2).
7858 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
7860 bool
7861 vectorizable_condition (gimple *stmt, gimple_stmt_iterator *gsi,
7862 gimple **vec_stmt, tree reduc_def, int reduc_index,
7863 slp_tree slp_node)
7865 tree scalar_dest = NULL_TREE;
7866 tree vec_dest = NULL_TREE;
7867 tree cond_expr, cond_expr0 = NULL_TREE, cond_expr1 = NULL_TREE;
7868 tree then_clause, else_clause;
7869 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
7870 tree comp_vectype = NULL_TREE;
7871 tree vec_cond_lhs = NULL_TREE, vec_cond_rhs = NULL_TREE;
7872 tree vec_then_clause = NULL_TREE, vec_else_clause = NULL_TREE;
7873 tree vec_compare;
7874 tree new_temp;
7875 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
7876 enum vect_def_type dts[4]
7877 = {vect_unknown_def_type, vect_unknown_def_type,
7878 vect_unknown_def_type, vect_unknown_def_type};
7879 int ndts = 4;
7880 int ncopies;
7881 enum tree_code code, cond_code, bitop1 = NOP_EXPR, bitop2 = NOP_EXPR;
7882 stmt_vec_info prev_stmt_info = NULL;
7883 int i, j;
7884 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
7885 vec<tree> vec_oprnds0 = vNULL;
7886 vec<tree> vec_oprnds1 = vNULL;
7887 vec<tree> vec_oprnds2 = vNULL;
7888 vec<tree> vec_oprnds3 = vNULL;
7889 tree vec_cmp_type;
7890 bool masked = false;
7892 if (reduc_index && STMT_SLP_TYPE (stmt_info))
7893 return false;
7895 if (STMT_VINFO_VEC_REDUCTION_TYPE (stmt_info) == TREE_CODE_REDUCTION)
7897 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
7898 return false;
7900 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
7901 && !(STMT_VINFO_DEF_TYPE (stmt_info) == vect_nested_cycle
7902 && reduc_def))
7903 return false;
7905 /* FORNOW: not yet supported. */
7906 if (STMT_VINFO_LIVE_P (stmt_info))
7908 if (dump_enabled_p ())
7909 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
7910 "value used after loop.\n");
7911 return false;
7915 /* Is vectorizable conditional operation? */
7916 if (!is_gimple_assign (stmt))
7917 return false;
7919 code = gimple_assign_rhs_code (stmt);
7921 if (code != COND_EXPR)
7922 return false;
7924 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
7925 tree vectype1 = NULL_TREE, vectype2 = NULL_TREE;
7927 if (slp_node)
7928 ncopies = 1;
7929 else
7930 ncopies = vect_get_num_copies (loop_vinfo, vectype);
7932 gcc_assert (ncopies >= 1);
7933 if (reduc_index && ncopies > 1)
7934 return false; /* FORNOW */
7936 cond_expr = gimple_assign_rhs1 (stmt);
7937 then_clause = gimple_assign_rhs2 (stmt);
7938 else_clause = gimple_assign_rhs3 (stmt);
7940 if (!vect_is_simple_cond (cond_expr, stmt_info->vinfo,
7941 &comp_vectype, &dts[0])
7942 || !comp_vectype)
7943 return false;
7945 gimple *def_stmt;
7946 if (!vect_is_simple_use (then_clause, stmt_info->vinfo, &def_stmt, &dts[2],
7947 &vectype1))
7948 return false;
7949 if (!vect_is_simple_use (else_clause, stmt_info->vinfo, &def_stmt, &dts[3],
7950 &vectype2))
7951 return false;
7953 if (vectype1 && !useless_type_conversion_p (vectype, vectype1))
7954 return false;
7956 if (vectype2 && !useless_type_conversion_p (vectype, vectype2))
7957 return false;
7959 masked = !COMPARISON_CLASS_P (cond_expr);
7960 vec_cmp_type = build_same_sized_truth_vector_type (comp_vectype);
7962 if (vec_cmp_type == NULL_TREE)
7963 return false;
7965 cond_code = TREE_CODE (cond_expr);
7966 if (!masked)
7968 cond_expr0 = TREE_OPERAND (cond_expr, 0);
7969 cond_expr1 = TREE_OPERAND (cond_expr, 1);
7972 if (!masked && VECTOR_BOOLEAN_TYPE_P (comp_vectype))
7974 /* Boolean values may have another representation in vectors
7975 and therefore we prefer bit operations over comparison for
7976 them (which also works for scalar masks). We store opcodes
7977 to use in bitop1 and bitop2. Statement is vectorized as
7978 BITOP2 (rhs1 BITOP1 rhs2) or rhs1 BITOP2 (BITOP1 rhs2)
7979 depending on bitop1 and bitop2 arity. */
7980 switch (cond_code)
7982 case GT_EXPR:
7983 bitop1 = BIT_NOT_EXPR;
7984 bitop2 = BIT_AND_EXPR;
7985 break;
7986 case GE_EXPR:
7987 bitop1 = BIT_NOT_EXPR;
7988 bitop2 = BIT_IOR_EXPR;
7989 break;
7990 case LT_EXPR:
7991 bitop1 = BIT_NOT_EXPR;
7992 bitop2 = BIT_AND_EXPR;
7993 std::swap (cond_expr0, cond_expr1);
7994 break;
7995 case LE_EXPR:
7996 bitop1 = BIT_NOT_EXPR;
7997 bitop2 = BIT_IOR_EXPR;
7998 std::swap (cond_expr0, cond_expr1);
7999 break;
8000 case NE_EXPR:
8001 bitop1 = BIT_XOR_EXPR;
8002 break;
8003 case EQ_EXPR:
8004 bitop1 = BIT_XOR_EXPR;
8005 bitop2 = BIT_NOT_EXPR;
8006 break;
8007 default:
8008 return false;
8010 cond_code = SSA_NAME;
8013 if (!vec_stmt)
8015 STMT_VINFO_TYPE (stmt_info) = condition_vec_info_type;
8016 if (bitop1 != NOP_EXPR)
8018 machine_mode mode = TYPE_MODE (comp_vectype);
8019 optab optab;
8021 optab = optab_for_tree_code (bitop1, comp_vectype, optab_default);
8022 if (!optab || optab_handler (optab, mode) == CODE_FOR_nothing)
8023 return false;
8025 if (bitop2 != NOP_EXPR)
8027 optab = optab_for_tree_code (bitop2, comp_vectype,
8028 optab_default);
8029 if (!optab || optab_handler (optab, mode) == CODE_FOR_nothing)
8030 return false;
8033 if (expand_vec_cond_expr_p (vectype, comp_vectype,
8034 cond_code))
8036 vect_model_simple_cost (stmt_info, ncopies, dts, ndts, NULL, NULL);
8037 return true;
8039 return false;
8042 /* Transform. */
8044 if (!slp_node)
8046 vec_oprnds0.create (1);
8047 vec_oprnds1.create (1);
8048 vec_oprnds2.create (1);
8049 vec_oprnds3.create (1);
8052 /* Handle def. */
8053 scalar_dest = gimple_assign_lhs (stmt);
8054 vec_dest = vect_create_destination_var (scalar_dest, vectype);
8056 /* Handle cond expr. */
8057 for (j = 0; j < ncopies; j++)
8059 gassign *new_stmt = NULL;
8060 if (j == 0)
8062 if (slp_node)
8064 auto_vec<tree, 4> ops;
8065 auto_vec<vec<tree>, 4> vec_defs;
8067 if (masked)
8068 ops.safe_push (cond_expr);
8069 else
8071 ops.safe_push (cond_expr0);
8072 ops.safe_push (cond_expr1);
8074 ops.safe_push (then_clause);
8075 ops.safe_push (else_clause);
8076 vect_get_slp_defs (ops, slp_node, &vec_defs);
8077 vec_oprnds3 = vec_defs.pop ();
8078 vec_oprnds2 = vec_defs.pop ();
8079 if (!masked)
8080 vec_oprnds1 = vec_defs.pop ();
8081 vec_oprnds0 = vec_defs.pop ();
8083 else
8085 gimple *gtemp;
8086 if (masked)
8088 vec_cond_lhs
8089 = vect_get_vec_def_for_operand (cond_expr, stmt,
8090 comp_vectype);
8091 vect_is_simple_use (cond_expr, stmt_info->vinfo,
8092 &gtemp, &dts[0]);
8094 else
8096 vec_cond_lhs
8097 = vect_get_vec_def_for_operand (cond_expr0,
8098 stmt, comp_vectype);
8099 vect_is_simple_use (cond_expr0, loop_vinfo, &gtemp, &dts[0]);
8101 vec_cond_rhs
8102 = vect_get_vec_def_for_operand (cond_expr1,
8103 stmt, comp_vectype);
8104 vect_is_simple_use (cond_expr1, loop_vinfo, &gtemp, &dts[1]);
8106 if (reduc_index == 1)
8107 vec_then_clause = reduc_def;
8108 else
8110 vec_then_clause = vect_get_vec_def_for_operand (then_clause,
8111 stmt);
8112 vect_is_simple_use (then_clause, loop_vinfo,
8113 &gtemp, &dts[2]);
8115 if (reduc_index == 2)
8116 vec_else_clause = reduc_def;
8117 else
8119 vec_else_clause = vect_get_vec_def_for_operand (else_clause,
8120 stmt);
8121 vect_is_simple_use (else_clause, loop_vinfo, &gtemp, &dts[3]);
8125 else
8127 vec_cond_lhs
8128 = vect_get_vec_def_for_stmt_copy (dts[0],
8129 vec_oprnds0.pop ());
8130 if (!masked)
8131 vec_cond_rhs
8132 = vect_get_vec_def_for_stmt_copy (dts[1],
8133 vec_oprnds1.pop ());
8135 vec_then_clause = vect_get_vec_def_for_stmt_copy (dts[2],
8136 vec_oprnds2.pop ());
8137 vec_else_clause = vect_get_vec_def_for_stmt_copy (dts[3],
8138 vec_oprnds3.pop ());
8141 if (!slp_node)
8143 vec_oprnds0.quick_push (vec_cond_lhs);
8144 if (!masked)
8145 vec_oprnds1.quick_push (vec_cond_rhs);
8146 vec_oprnds2.quick_push (vec_then_clause);
8147 vec_oprnds3.quick_push (vec_else_clause);
8150 /* Arguments are ready. Create the new vector stmt. */
8151 FOR_EACH_VEC_ELT (vec_oprnds0, i, vec_cond_lhs)
8153 vec_then_clause = vec_oprnds2[i];
8154 vec_else_clause = vec_oprnds3[i];
8156 if (masked)
8157 vec_compare = vec_cond_lhs;
8158 else
8160 vec_cond_rhs = vec_oprnds1[i];
8161 if (bitop1 == NOP_EXPR)
8162 vec_compare = build2 (cond_code, vec_cmp_type,
8163 vec_cond_lhs, vec_cond_rhs);
8164 else
8166 new_temp = make_ssa_name (vec_cmp_type);
8167 if (bitop1 == BIT_NOT_EXPR)
8168 new_stmt = gimple_build_assign (new_temp, bitop1,
8169 vec_cond_rhs);
8170 else
8171 new_stmt
8172 = gimple_build_assign (new_temp, bitop1, vec_cond_lhs,
8173 vec_cond_rhs);
8174 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8175 if (bitop2 == NOP_EXPR)
8176 vec_compare = new_temp;
8177 else if (bitop2 == BIT_NOT_EXPR)
8179 /* Instead of doing ~x ? y : z do x ? z : y. */
8180 vec_compare = new_temp;
8181 std::swap (vec_then_clause, vec_else_clause);
8183 else
8185 vec_compare = make_ssa_name (vec_cmp_type);
8186 new_stmt
8187 = gimple_build_assign (vec_compare, bitop2,
8188 vec_cond_lhs, new_temp);
8189 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8193 new_temp = make_ssa_name (vec_dest);
8194 new_stmt = gimple_build_assign (new_temp, VEC_COND_EXPR,
8195 vec_compare, vec_then_clause,
8196 vec_else_clause);
8197 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8198 if (slp_node)
8199 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
8202 if (slp_node)
8203 continue;
8205 if (j == 0)
8206 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
8207 else
8208 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
8210 prev_stmt_info = vinfo_for_stmt (new_stmt);
8213 vec_oprnds0.release ();
8214 vec_oprnds1.release ();
8215 vec_oprnds2.release ();
8216 vec_oprnds3.release ();
8218 return true;
8221 /* vectorizable_comparison.
8223 Check if STMT is comparison expression that can be vectorized.
8224 If VEC_STMT is also passed, vectorize the STMT: create a vectorized
8225 comparison, put it in VEC_STMT, and insert it at GSI.
8227 Return FALSE if not a vectorizable STMT, TRUE otherwise. */
8229 static bool
8230 vectorizable_comparison (gimple *stmt, gimple_stmt_iterator *gsi,
8231 gimple **vec_stmt, tree reduc_def,
8232 slp_tree slp_node)
8234 tree lhs, rhs1, rhs2;
8235 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
8236 tree vectype1 = NULL_TREE, vectype2 = NULL_TREE;
8237 tree vectype = STMT_VINFO_VECTYPE (stmt_info);
8238 tree vec_rhs1 = NULL_TREE, vec_rhs2 = NULL_TREE;
8239 tree new_temp;
8240 loop_vec_info loop_vinfo = STMT_VINFO_LOOP_VINFO (stmt_info);
8241 enum vect_def_type dts[2] = {vect_unknown_def_type, vect_unknown_def_type};
8242 int ndts = 2;
8243 unsigned nunits;
8244 int ncopies;
8245 enum tree_code code, bitop1 = NOP_EXPR, bitop2 = NOP_EXPR;
8246 stmt_vec_info prev_stmt_info = NULL;
8247 int i, j;
8248 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
8249 vec<tree> vec_oprnds0 = vNULL;
8250 vec<tree> vec_oprnds1 = vNULL;
8251 gimple *def_stmt;
8252 tree mask_type;
8253 tree mask;
8255 if (!STMT_VINFO_RELEVANT_P (stmt_info) && !bb_vinfo)
8256 return false;
8258 if (!vectype || !VECTOR_BOOLEAN_TYPE_P (vectype))
8259 return false;
8261 mask_type = vectype;
8262 nunits = TYPE_VECTOR_SUBPARTS (vectype);
8264 if (slp_node)
8265 ncopies = 1;
8266 else
8267 ncopies = vect_get_num_copies (loop_vinfo, vectype);
8269 gcc_assert (ncopies >= 1);
8270 if (STMT_VINFO_DEF_TYPE (stmt_info) != vect_internal_def
8271 && !(STMT_VINFO_DEF_TYPE (stmt_info) == vect_nested_cycle
8272 && reduc_def))
8273 return false;
8275 if (STMT_VINFO_LIVE_P (stmt_info))
8277 if (dump_enabled_p ())
8278 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
8279 "value used after loop.\n");
8280 return false;
8283 if (!is_gimple_assign (stmt))
8284 return false;
8286 code = gimple_assign_rhs_code (stmt);
8288 if (TREE_CODE_CLASS (code) != tcc_comparison)
8289 return false;
8291 rhs1 = gimple_assign_rhs1 (stmt);
8292 rhs2 = gimple_assign_rhs2 (stmt);
8294 if (!vect_is_simple_use (rhs1, stmt_info->vinfo, &def_stmt,
8295 &dts[0], &vectype1))
8296 return false;
8298 if (!vect_is_simple_use (rhs2, stmt_info->vinfo, &def_stmt,
8299 &dts[1], &vectype2))
8300 return false;
8302 if (vectype1 && vectype2
8303 && TYPE_VECTOR_SUBPARTS (vectype1) != TYPE_VECTOR_SUBPARTS (vectype2))
8304 return false;
8306 vectype = vectype1 ? vectype1 : vectype2;
8308 /* Invariant comparison. */
8309 if (!vectype)
8311 vectype = get_vectype_for_scalar_type (TREE_TYPE (rhs1));
8312 if (TYPE_VECTOR_SUBPARTS (vectype) != nunits)
8313 return false;
8315 else if (nunits != TYPE_VECTOR_SUBPARTS (vectype))
8316 return false;
8318 /* Can't compare mask and non-mask types. */
8319 if (vectype1 && vectype2
8320 && (VECTOR_BOOLEAN_TYPE_P (vectype1) ^ VECTOR_BOOLEAN_TYPE_P (vectype2)))
8321 return false;
8323 /* Boolean values may have another representation in vectors
8324 and therefore we prefer bit operations over comparison for
8325 them (which also works for scalar masks). We store opcodes
8326 to use in bitop1 and bitop2. Statement is vectorized as
8327 BITOP2 (rhs1 BITOP1 rhs2) or
8328 rhs1 BITOP2 (BITOP1 rhs2)
8329 depending on bitop1 and bitop2 arity. */
8330 if (VECTOR_BOOLEAN_TYPE_P (vectype))
8332 if (code == GT_EXPR)
8334 bitop1 = BIT_NOT_EXPR;
8335 bitop2 = BIT_AND_EXPR;
8337 else if (code == GE_EXPR)
8339 bitop1 = BIT_NOT_EXPR;
8340 bitop2 = BIT_IOR_EXPR;
8342 else if (code == LT_EXPR)
8344 bitop1 = BIT_NOT_EXPR;
8345 bitop2 = BIT_AND_EXPR;
8346 std::swap (rhs1, rhs2);
8347 std::swap (dts[0], dts[1]);
8349 else if (code == LE_EXPR)
8351 bitop1 = BIT_NOT_EXPR;
8352 bitop2 = BIT_IOR_EXPR;
8353 std::swap (rhs1, rhs2);
8354 std::swap (dts[0], dts[1]);
8356 else
8358 bitop1 = BIT_XOR_EXPR;
8359 if (code == EQ_EXPR)
8360 bitop2 = BIT_NOT_EXPR;
8364 if (!vec_stmt)
8366 STMT_VINFO_TYPE (stmt_info) = comparison_vec_info_type;
8367 vect_model_simple_cost (stmt_info, ncopies * (1 + (bitop2 != NOP_EXPR)),
8368 dts, ndts, NULL, NULL);
8369 if (bitop1 == NOP_EXPR)
8370 return expand_vec_cmp_expr_p (vectype, mask_type, code);
8371 else
8373 machine_mode mode = TYPE_MODE (vectype);
8374 optab optab;
8376 optab = optab_for_tree_code (bitop1, vectype, optab_default);
8377 if (!optab || optab_handler (optab, mode) == CODE_FOR_nothing)
8378 return false;
8380 if (bitop2 != NOP_EXPR)
8382 optab = optab_for_tree_code (bitop2, vectype, optab_default);
8383 if (!optab || optab_handler (optab, mode) == CODE_FOR_nothing)
8384 return false;
8386 return true;
8390 /* Transform. */
8391 if (!slp_node)
8393 vec_oprnds0.create (1);
8394 vec_oprnds1.create (1);
8397 /* Handle def. */
8398 lhs = gimple_assign_lhs (stmt);
8399 mask = vect_create_destination_var (lhs, mask_type);
8401 /* Handle cmp expr. */
8402 for (j = 0; j < ncopies; j++)
8404 gassign *new_stmt = NULL;
8405 if (j == 0)
8407 if (slp_node)
8409 auto_vec<tree, 2> ops;
8410 auto_vec<vec<tree>, 2> vec_defs;
8412 ops.safe_push (rhs1);
8413 ops.safe_push (rhs2);
8414 vect_get_slp_defs (ops, slp_node, &vec_defs);
8415 vec_oprnds1 = vec_defs.pop ();
8416 vec_oprnds0 = vec_defs.pop ();
8418 else
8420 vec_rhs1 = vect_get_vec_def_for_operand (rhs1, stmt, vectype);
8421 vec_rhs2 = vect_get_vec_def_for_operand (rhs2, stmt, vectype);
8424 else
8426 vec_rhs1 = vect_get_vec_def_for_stmt_copy (dts[0],
8427 vec_oprnds0.pop ());
8428 vec_rhs2 = vect_get_vec_def_for_stmt_copy (dts[1],
8429 vec_oprnds1.pop ());
8432 if (!slp_node)
8434 vec_oprnds0.quick_push (vec_rhs1);
8435 vec_oprnds1.quick_push (vec_rhs2);
8438 /* Arguments are ready. Create the new vector stmt. */
8439 FOR_EACH_VEC_ELT (vec_oprnds0, i, vec_rhs1)
8441 vec_rhs2 = vec_oprnds1[i];
8443 new_temp = make_ssa_name (mask);
8444 if (bitop1 == NOP_EXPR)
8446 new_stmt = gimple_build_assign (new_temp, code,
8447 vec_rhs1, vec_rhs2);
8448 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8450 else
8452 if (bitop1 == BIT_NOT_EXPR)
8453 new_stmt = gimple_build_assign (new_temp, bitop1, vec_rhs2);
8454 else
8455 new_stmt = gimple_build_assign (new_temp, bitop1, vec_rhs1,
8456 vec_rhs2);
8457 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8458 if (bitop2 != NOP_EXPR)
8460 tree res = make_ssa_name (mask);
8461 if (bitop2 == BIT_NOT_EXPR)
8462 new_stmt = gimple_build_assign (res, bitop2, new_temp);
8463 else
8464 new_stmt = gimple_build_assign (res, bitop2, vec_rhs1,
8465 new_temp);
8466 vect_finish_stmt_generation (stmt, new_stmt, gsi);
8469 if (slp_node)
8470 SLP_TREE_VEC_STMTS (slp_node).quick_push (new_stmt);
8473 if (slp_node)
8474 continue;
8476 if (j == 0)
8477 STMT_VINFO_VEC_STMT (stmt_info) = *vec_stmt = new_stmt;
8478 else
8479 STMT_VINFO_RELATED_STMT (prev_stmt_info) = new_stmt;
8481 prev_stmt_info = vinfo_for_stmt (new_stmt);
8484 vec_oprnds0.release ();
8485 vec_oprnds1.release ();
8487 return true;
8490 /* If SLP_NODE is nonnull, return true if vectorizable_live_operation
8491 can handle all live statements in the node. Otherwise return true
8492 if STMT is not live or if vectorizable_live_operation can handle it.
8493 GSI and VEC_STMT are as for vectorizable_live_operation. */
8495 static bool
8496 can_vectorize_live_stmts (gimple *stmt, gimple_stmt_iterator *gsi,
8497 slp_tree slp_node, gimple **vec_stmt)
8499 if (slp_node)
8501 gimple *slp_stmt;
8502 unsigned int i;
8503 FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (slp_node), i, slp_stmt)
8505 stmt_vec_info slp_stmt_info = vinfo_for_stmt (slp_stmt);
8506 if (STMT_VINFO_LIVE_P (slp_stmt_info)
8507 && !vectorizable_live_operation (slp_stmt, gsi, slp_node, i,
8508 vec_stmt))
8509 return false;
8512 else if (STMT_VINFO_LIVE_P (vinfo_for_stmt (stmt))
8513 && !vectorizable_live_operation (stmt, gsi, slp_node, -1, vec_stmt))
8514 return false;
8516 return true;
8519 /* Make sure the statement is vectorizable. */
8521 bool
8522 vect_analyze_stmt (gimple *stmt, bool *need_to_vectorize, slp_tree node,
8523 slp_instance node_instance)
8525 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
8526 bb_vec_info bb_vinfo = STMT_VINFO_BB_VINFO (stmt_info);
8527 enum vect_relevant relevance = STMT_VINFO_RELEVANT (stmt_info);
8528 bool ok;
8529 gimple *pattern_stmt;
8530 gimple_seq pattern_def_seq;
8532 if (dump_enabled_p ())
8534 dump_printf_loc (MSG_NOTE, vect_location, "==> examining statement: ");
8535 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
8538 if (gimple_has_volatile_ops (stmt))
8540 if (dump_enabled_p ())
8541 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
8542 "not vectorized: stmt has volatile operands\n");
8544 return false;
8547 /* Skip stmts that do not need to be vectorized. In loops this is expected
8548 to include:
8549 - the COND_EXPR which is the loop exit condition
8550 - any LABEL_EXPRs in the loop
8551 - computations that are used only for array indexing or loop control.
8552 In basic blocks we only analyze statements that are a part of some SLP
8553 instance, therefore, all the statements are relevant.
8555 Pattern statement needs to be analyzed instead of the original statement
8556 if the original statement is not relevant. Otherwise, we analyze both
8557 statements. In basic blocks we are called from some SLP instance
8558 traversal, don't analyze pattern stmts instead, the pattern stmts
8559 already will be part of SLP instance. */
8561 pattern_stmt = STMT_VINFO_RELATED_STMT (stmt_info);
8562 if (!STMT_VINFO_RELEVANT_P (stmt_info)
8563 && !STMT_VINFO_LIVE_P (stmt_info))
8565 if (STMT_VINFO_IN_PATTERN_P (stmt_info)
8566 && pattern_stmt
8567 && (STMT_VINFO_RELEVANT_P (vinfo_for_stmt (pattern_stmt))
8568 || STMT_VINFO_LIVE_P (vinfo_for_stmt (pattern_stmt))))
8570 /* Analyze PATTERN_STMT instead of the original stmt. */
8571 stmt = pattern_stmt;
8572 stmt_info = vinfo_for_stmt (pattern_stmt);
8573 if (dump_enabled_p ())
8575 dump_printf_loc (MSG_NOTE, vect_location,
8576 "==> examining pattern statement: ");
8577 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
8580 else
8582 if (dump_enabled_p ())
8583 dump_printf_loc (MSG_NOTE, vect_location, "irrelevant.\n");
8585 return true;
8588 else if (STMT_VINFO_IN_PATTERN_P (stmt_info)
8589 && node == NULL
8590 && pattern_stmt
8591 && (STMT_VINFO_RELEVANT_P (vinfo_for_stmt (pattern_stmt))
8592 || STMT_VINFO_LIVE_P (vinfo_for_stmt (pattern_stmt))))
8594 /* Analyze PATTERN_STMT too. */
8595 if (dump_enabled_p ())
8597 dump_printf_loc (MSG_NOTE, vect_location,
8598 "==> examining pattern statement: ");
8599 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, stmt, 0);
8602 if (!vect_analyze_stmt (pattern_stmt, need_to_vectorize, node,
8603 node_instance))
8604 return false;
8607 if (is_pattern_stmt_p (stmt_info)
8608 && node == NULL
8609 && (pattern_def_seq = STMT_VINFO_PATTERN_DEF_SEQ (stmt_info)))
8611 gimple_stmt_iterator si;
8613 for (si = gsi_start (pattern_def_seq); !gsi_end_p (si); gsi_next (&si))
8615 gimple *pattern_def_stmt = gsi_stmt (si);
8616 if (STMT_VINFO_RELEVANT_P (vinfo_for_stmt (pattern_def_stmt))
8617 || STMT_VINFO_LIVE_P (vinfo_for_stmt (pattern_def_stmt)))
8619 /* Analyze def stmt of STMT if it's a pattern stmt. */
8620 if (dump_enabled_p ())
8622 dump_printf_loc (MSG_NOTE, vect_location,
8623 "==> examining pattern def statement: ");
8624 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, pattern_def_stmt, 0);
8627 if (!vect_analyze_stmt (pattern_def_stmt,
8628 need_to_vectorize, node, node_instance))
8629 return false;
8634 switch (STMT_VINFO_DEF_TYPE (stmt_info))
8636 case vect_internal_def:
8637 break;
8639 case vect_reduction_def:
8640 case vect_nested_cycle:
8641 gcc_assert (!bb_vinfo
8642 && (relevance == vect_used_in_outer
8643 || relevance == vect_used_in_outer_by_reduction
8644 || relevance == vect_used_by_reduction
8645 || relevance == vect_unused_in_scope
8646 || relevance == vect_used_only_live));
8647 break;
8649 case vect_induction_def:
8650 gcc_assert (!bb_vinfo);
8651 break;
8653 case vect_constant_def:
8654 case vect_external_def:
8655 case vect_unknown_def_type:
8656 default:
8657 gcc_unreachable ();
8660 if (STMT_VINFO_RELEVANT_P (stmt_info))
8662 gcc_assert (!VECTOR_MODE_P (TYPE_MODE (gimple_expr_type (stmt))));
8663 gcc_assert (STMT_VINFO_VECTYPE (stmt_info)
8664 || (is_gimple_call (stmt)
8665 && gimple_call_lhs (stmt) == NULL_TREE));
8666 *need_to_vectorize = true;
8669 if (PURE_SLP_STMT (stmt_info) && !node)
8671 dump_printf_loc (MSG_NOTE, vect_location,
8672 "handled only by SLP analysis\n");
8673 return true;
8676 ok = true;
8677 if (!bb_vinfo
8678 && (STMT_VINFO_RELEVANT_P (stmt_info)
8679 || STMT_VINFO_DEF_TYPE (stmt_info) == vect_reduction_def))
8680 ok = (vectorizable_simd_clone_call (stmt, NULL, NULL, node)
8681 || vectorizable_conversion (stmt, NULL, NULL, node)
8682 || vectorizable_shift (stmt, NULL, NULL, node)
8683 || vectorizable_operation (stmt, NULL, NULL, node)
8684 || vectorizable_assignment (stmt, NULL, NULL, node)
8685 || vectorizable_load (stmt, NULL, NULL, node, NULL)
8686 || vectorizable_call (stmt, NULL, NULL, node)
8687 || vectorizable_store (stmt, NULL, NULL, node)
8688 || vectorizable_reduction (stmt, NULL, NULL, node, node_instance)
8689 || vectorizable_induction (stmt, NULL, NULL, node)
8690 || vectorizable_condition (stmt, NULL, NULL, NULL, 0, node)
8691 || vectorizable_comparison (stmt, NULL, NULL, NULL, node));
8692 else
8694 if (bb_vinfo)
8695 ok = (vectorizable_simd_clone_call (stmt, NULL, NULL, node)
8696 || vectorizable_conversion (stmt, NULL, NULL, node)
8697 || vectorizable_shift (stmt, NULL, NULL, node)
8698 || vectorizable_operation (stmt, NULL, NULL, node)
8699 || vectorizable_assignment (stmt, NULL, NULL, node)
8700 || vectorizable_load (stmt, NULL, NULL, node, NULL)
8701 || vectorizable_call (stmt, NULL, NULL, node)
8702 || vectorizable_store (stmt, NULL, NULL, node)
8703 || vectorizable_condition (stmt, NULL, NULL, NULL, 0, node)
8704 || vectorizable_comparison (stmt, NULL, NULL, NULL, node));
8707 if (!ok)
8709 if (dump_enabled_p ())
8711 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
8712 "not vectorized: relevant stmt not ");
8713 dump_printf (MSG_MISSED_OPTIMIZATION, "supported: ");
8714 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
8717 return false;
8720 if (bb_vinfo)
8721 return true;
8723 /* Stmts that are (also) "live" (i.e. - that are used out of the loop)
8724 need extra handling, except for vectorizable reductions. */
8725 if (STMT_VINFO_TYPE (stmt_info) != reduc_vec_info_type
8726 && !can_vectorize_live_stmts (stmt, NULL, node, NULL))
8728 if (dump_enabled_p ())
8730 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
8731 "not vectorized: live stmt not supported: ");
8732 dump_gimple_stmt (MSG_MISSED_OPTIMIZATION, TDF_SLIM, stmt, 0);
8735 return false;
8738 return true;
8742 /* Function vect_transform_stmt.
8744 Create a vectorized stmt to replace STMT, and insert it at BSI. */
8746 bool
8747 vect_transform_stmt (gimple *stmt, gimple_stmt_iterator *gsi,
8748 bool *grouped_store, slp_tree slp_node,
8749 slp_instance slp_node_instance)
8751 bool is_store = false;
8752 gimple *vec_stmt = NULL;
8753 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
8754 bool done;
8756 gcc_assert (slp_node || !PURE_SLP_STMT (stmt_info));
8757 gimple *old_vec_stmt = STMT_VINFO_VEC_STMT (stmt_info);
8759 switch (STMT_VINFO_TYPE (stmt_info))
8761 case type_demotion_vec_info_type:
8762 case type_promotion_vec_info_type:
8763 case type_conversion_vec_info_type:
8764 done = vectorizable_conversion (stmt, gsi, &vec_stmt, slp_node);
8765 gcc_assert (done);
8766 break;
8768 case induc_vec_info_type:
8769 done = vectorizable_induction (stmt, gsi, &vec_stmt, slp_node);
8770 gcc_assert (done);
8771 break;
8773 case shift_vec_info_type:
8774 done = vectorizable_shift (stmt, gsi, &vec_stmt, slp_node);
8775 gcc_assert (done);
8776 break;
8778 case op_vec_info_type:
8779 done = vectorizable_operation (stmt, gsi, &vec_stmt, slp_node);
8780 gcc_assert (done);
8781 break;
8783 case assignment_vec_info_type:
8784 done = vectorizable_assignment (stmt, gsi, &vec_stmt, slp_node);
8785 gcc_assert (done);
8786 break;
8788 case load_vec_info_type:
8789 done = vectorizable_load (stmt, gsi, &vec_stmt, slp_node,
8790 slp_node_instance);
8791 gcc_assert (done);
8792 break;
8794 case store_vec_info_type:
8795 done = vectorizable_store (stmt, gsi, &vec_stmt, slp_node);
8796 gcc_assert (done);
8797 if (STMT_VINFO_GROUPED_ACCESS (stmt_info) && !slp_node)
8799 /* In case of interleaving, the whole chain is vectorized when the
8800 last store in the chain is reached. Store stmts before the last
8801 one are skipped, and there vec_stmt_info shouldn't be freed
8802 meanwhile. */
8803 *grouped_store = true;
8804 if (STMT_VINFO_VEC_STMT (stmt_info))
8805 is_store = true;
8807 else
8808 is_store = true;
8809 break;
8811 case condition_vec_info_type:
8812 done = vectorizable_condition (stmt, gsi, &vec_stmt, NULL, 0, slp_node);
8813 gcc_assert (done);
8814 break;
8816 case comparison_vec_info_type:
8817 done = vectorizable_comparison (stmt, gsi, &vec_stmt, NULL, slp_node);
8818 gcc_assert (done);
8819 break;
8821 case call_vec_info_type:
8822 done = vectorizable_call (stmt, gsi, &vec_stmt, slp_node);
8823 stmt = gsi_stmt (*gsi);
8824 if (gimple_call_internal_p (stmt, IFN_MASK_STORE))
8825 is_store = true;
8826 break;
8828 case call_simd_clone_vec_info_type:
8829 done = vectorizable_simd_clone_call (stmt, gsi, &vec_stmt, slp_node);
8830 stmt = gsi_stmt (*gsi);
8831 break;
8833 case reduc_vec_info_type:
8834 done = vectorizable_reduction (stmt, gsi, &vec_stmt, slp_node,
8835 slp_node_instance);
8836 gcc_assert (done);
8837 break;
8839 default:
8840 if (!STMT_VINFO_LIVE_P (stmt_info))
8842 if (dump_enabled_p ())
8843 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
8844 "stmt not supported.\n");
8845 gcc_unreachable ();
8849 /* Verify SLP vectorization doesn't mess with STMT_VINFO_VEC_STMT.
8850 This would break hybrid SLP vectorization. */
8851 if (slp_node)
8852 gcc_assert (!vec_stmt
8853 && STMT_VINFO_VEC_STMT (stmt_info) == old_vec_stmt);
8855 /* Handle inner-loop stmts whose DEF is used in the loop-nest that
8856 is being vectorized, but outside the immediately enclosing loop. */
8857 if (vec_stmt
8858 && STMT_VINFO_LOOP_VINFO (stmt_info)
8859 && nested_in_vect_loop_p (LOOP_VINFO_LOOP (
8860 STMT_VINFO_LOOP_VINFO (stmt_info)), stmt)
8861 && STMT_VINFO_TYPE (stmt_info) != reduc_vec_info_type
8862 && (STMT_VINFO_RELEVANT (stmt_info) == vect_used_in_outer
8863 || STMT_VINFO_RELEVANT (stmt_info) ==
8864 vect_used_in_outer_by_reduction))
8866 struct loop *innerloop = LOOP_VINFO_LOOP (
8867 STMT_VINFO_LOOP_VINFO (stmt_info))->inner;
8868 imm_use_iterator imm_iter;
8869 use_operand_p use_p;
8870 tree scalar_dest;
8871 gimple *exit_phi;
8873 if (dump_enabled_p ())
8874 dump_printf_loc (MSG_NOTE, vect_location,
8875 "Record the vdef for outer-loop vectorization.\n");
8877 /* Find the relevant loop-exit phi-node, and reord the vec_stmt there
8878 (to be used when vectorizing outer-loop stmts that use the DEF of
8879 STMT). */
8880 if (gimple_code (stmt) == GIMPLE_PHI)
8881 scalar_dest = PHI_RESULT (stmt);
8882 else
8883 scalar_dest = gimple_assign_lhs (stmt);
8885 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, scalar_dest)
8887 if (!flow_bb_inside_loop_p (innerloop, gimple_bb (USE_STMT (use_p))))
8889 exit_phi = USE_STMT (use_p);
8890 STMT_VINFO_VEC_STMT (vinfo_for_stmt (exit_phi)) = vec_stmt;
8895 /* Handle stmts whose DEF is used outside the loop-nest that is
8896 being vectorized. */
8897 if (STMT_VINFO_TYPE (stmt_info) != reduc_vec_info_type)
8899 done = can_vectorize_live_stmts (stmt, gsi, slp_node, &vec_stmt);
8900 gcc_assert (done);
8903 if (vec_stmt)
8904 STMT_VINFO_VEC_STMT (stmt_info) = vec_stmt;
8906 return is_store;
8910 /* Remove a group of stores (for SLP or interleaving), free their
8911 stmt_vec_info. */
8913 void
8914 vect_remove_stores (gimple *first_stmt)
8916 gimple *next = first_stmt;
8917 gimple *tmp;
8918 gimple_stmt_iterator next_si;
8920 while (next)
8922 stmt_vec_info stmt_info = vinfo_for_stmt (next);
8924 tmp = GROUP_NEXT_ELEMENT (stmt_info);
8925 if (is_pattern_stmt_p (stmt_info))
8926 next = STMT_VINFO_RELATED_STMT (stmt_info);
8927 /* Free the attached stmt_vec_info and remove the stmt. */
8928 next_si = gsi_for_stmt (next);
8929 unlink_stmt_vdef (next);
8930 gsi_remove (&next_si, true);
8931 release_defs (next);
8932 free_stmt_vec_info (next);
8933 next = tmp;
8938 /* Function new_stmt_vec_info.
8940 Create and initialize a new stmt_vec_info struct for STMT. */
8942 stmt_vec_info
8943 new_stmt_vec_info (gimple *stmt, vec_info *vinfo)
8945 stmt_vec_info res;
8946 res = (stmt_vec_info) xcalloc (1, sizeof (struct _stmt_vec_info));
8948 STMT_VINFO_TYPE (res) = undef_vec_info_type;
8949 STMT_VINFO_STMT (res) = stmt;
8950 res->vinfo = vinfo;
8951 STMT_VINFO_RELEVANT (res) = vect_unused_in_scope;
8952 STMT_VINFO_LIVE_P (res) = false;
8953 STMT_VINFO_VECTYPE (res) = NULL;
8954 STMT_VINFO_VEC_STMT (res) = NULL;
8955 STMT_VINFO_VECTORIZABLE (res) = true;
8956 STMT_VINFO_IN_PATTERN_P (res) = false;
8957 STMT_VINFO_RELATED_STMT (res) = NULL;
8958 STMT_VINFO_PATTERN_DEF_SEQ (res) = NULL;
8959 STMT_VINFO_DATA_REF (res) = NULL;
8960 STMT_VINFO_VEC_REDUCTION_TYPE (res) = TREE_CODE_REDUCTION;
8961 STMT_VINFO_VEC_CONST_COND_REDUC_CODE (res) = ERROR_MARK;
8963 if (gimple_code (stmt) == GIMPLE_PHI
8964 && is_loop_header_bb_p (gimple_bb (stmt)))
8965 STMT_VINFO_DEF_TYPE (res) = vect_unknown_def_type;
8966 else
8967 STMT_VINFO_DEF_TYPE (res) = vect_internal_def;
8969 STMT_VINFO_SAME_ALIGN_REFS (res).create (0);
8970 STMT_SLP_TYPE (res) = loop_vect;
8971 STMT_VINFO_NUM_SLP_USES (res) = 0;
8973 GROUP_FIRST_ELEMENT (res) = NULL;
8974 GROUP_NEXT_ELEMENT (res) = NULL;
8975 GROUP_SIZE (res) = 0;
8976 GROUP_STORE_COUNT (res) = 0;
8977 GROUP_GAP (res) = 0;
8978 GROUP_SAME_DR_STMT (res) = NULL;
8980 return res;
8984 /* Create a hash table for stmt_vec_info. */
8986 void
8987 init_stmt_vec_info_vec (void)
8989 gcc_assert (!stmt_vec_info_vec.exists ());
8990 stmt_vec_info_vec.create (50);
8994 /* Free hash table for stmt_vec_info. */
8996 void
8997 free_stmt_vec_info_vec (void)
8999 unsigned int i;
9000 stmt_vec_info info;
9001 FOR_EACH_VEC_ELT (stmt_vec_info_vec, i, info)
9002 if (info != NULL)
9003 free_stmt_vec_info (STMT_VINFO_STMT (info));
9004 gcc_assert (stmt_vec_info_vec.exists ());
9005 stmt_vec_info_vec.release ();
9009 /* Free stmt vectorization related info. */
9011 void
9012 free_stmt_vec_info (gimple *stmt)
9014 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
9016 if (!stmt_info)
9017 return;
9019 /* Check if this statement has a related "pattern stmt"
9020 (introduced by the vectorizer during the pattern recognition
9021 pass). Free pattern's stmt_vec_info and def stmt's stmt_vec_info
9022 too. */
9023 if (STMT_VINFO_IN_PATTERN_P (stmt_info))
9025 stmt_vec_info patt_info
9026 = vinfo_for_stmt (STMT_VINFO_RELATED_STMT (stmt_info));
9027 if (patt_info)
9029 gimple_seq seq = STMT_VINFO_PATTERN_DEF_SEQ (patt_info);
9030 gimple *patt_stmt = STMT_VINFO_STMT (patt_info);
9031 gimple_set_bb (patt_stmt, NULL);
9032 tree lhs = gimple_get_lhs (patt_stmt);
9033 if (lhs && TREE_CODE (lhs) == SSA_NAME)
9034 release_ssa_name (lhs);
9035 if (seq)
9037 gimple_stmt_iterator si;
9038 for (si = gsi_start (seq); !gsi_end_p (si); gsi_next (&si))
9040 gimple *seq_stmt = gsi_stmt (si);
9041 gimple_set_bb (seq_stmt, NULL);
9042 lhs = gimple_get_lhs (seq_stmt);
9043 if (lhs && TREE_CODE (lhs) == SSA_NAME)
9044 release_ssa_name (lhs);
9045 free_stmt_vec_info (seq_stmt);
9048 free_stmt_vec_info (patt_stmt);
9052 STMT_VINFO_SAME_ALIGN_REFS (stmt_info).release ();
9053 STMT_VINFO_SIMD_CLONE_INFO (stmt_info).release ();
9054 set_vinfo_for_stmt (stmt, NULL);
9055 free (stmt_info);
9059 /* Function get_vectype_for_scalar_type_and_size.
9061 Returns the vector type corresponding to SCALAR_TYPE and SIZE as supported
9062 by the target. */
9064 static tree
9065 get_vectype_for_scalar_type_and_size (tree scalar_type, unsigned size)
9067 tree orig_scalar_type = scalar_type;
9068 scalar_mode inner_mode;
9069 machine_mode simd_mode;
9070 int nunits;
9071 tree vectype;
9073 if (!is_int_mode (TYPE_MODE (scalar_type), &inner_mode)
9074 && !is_float_mode (TYPE_MODE (scalar_type), &inner_mode))
9075 return NULL_TREE;
9077 unsigned int nbytes = GET_MODE_SIZE (inner_mode);
9079 /* For vector types of elements whose mode precision doesn't
9080 match their types precision we use a element type of mode
9081 precision. The vectorization routines will have to make sure
9082 they support the proper result truncation/extension.
9083 We also make sure to build vector types with INTEGER_TYPE
9084 component type only. */
9085 if (INTEGRAL_TYPE_P (scalar_type)
9086 && (GET_MODE_BITSIZE (inner_mode) != TYPE_PRECISION (scalar_type)
9087 || TREE_CODE (scalar_type) != INTEGER_TYPE))
9088 scalar_type = build_nonstandard_integer_type (GET_MODE_BITSIZE (inner_mode),
9089 TYPE_UNSIGNED (scalar_type));
9091 /* We shouldn't end up building VECTOR_TYPEs of non-scalar components.
9092 When the component mode passes the above test simply use a type
9093 corresponding to that mode. The theory is that any use that
9094 would cause problems with this will disable vectorization anyway. */
9095 else if (!SCALAR_FLOAT_TYPE_P (scalar_type)
9096 && !INTEGRAL_TYPE_P (scalar_type))
9097 scalar_type = lang_hooks.types.type_for_mode (inner_mode, 1);
9099 /* We can't build a vector type of elements with alignment bigger than
9100 their size. */
9101 else if (nbytes < TYPE_ALIGN_UNIT (scalar_type))
9102 scalar_type = lang_hooks.types.type_for_mode (inner_mode,
9103 TYPE_UNSIGNED (scalar_type));
9105 /* If we felt back to using the mode fail if there was
9106 no scalar type for it. */
9107 if (scalar_type == NULL_TREE)
9108 return NULL_TREE;
9110 /* If no size was supplied use the mode the target prefers. Otherwise
9111 lookup a vector mode of the specified size. */
9112 if (size == 0)
9113 simd_mode = targetm.vectorize.preferred_simd_mode (inner_mode);
9114 else if (!mode_for_vector (inner_mode, size / nbytes).exists (&simd_mode))
9115 return NULL_TREE;
9116 nunits = GET_MODE_SIZE (simd_mode) / nbytes;
9117 /* NOTE: nunits == 1 is allowed to support single element vector types. */
9118 if (nunits < 1)
9119 return NULL_TREE;
9121 vectype = build_vector_type (scalar_type, nunits);
9123 if (!VECTOR_MODE_P (TYPE_MODE (vectype))
9124 && !INTEGRAL_MODE_P (TYPE_MODE (vectype)))
9125 return NULL_TREE;
9127 /* Re-attach the address-space qualifier if we canonicalized the scalar
9128 type. */
9129 if (TYPE_ADDR_SPACE (orig_scalar_type) != TYPE_ADDR_SPACE (vectype))
9130 return build_qualified_type
9131 (vectype, KEEP_QUAL_ADDR_SPACE (TYPE_QUALS (orig_scalar_type)));
9133 return vectype;
9136 unsigned int current_vector_size;
9138 /* Function get_vectype_for_scalar_type.
9140 Returns the vector type corresponding to SCALAR_TYPE as supported
9141 by the target. */
9143 tree
9144 get_vectype_for_scalar_type (tree scalar_type)
9146 tree vectype;
9147 vectype = get_vectype_for_scalar_type_and_size (scalar_type,
9148 current_vector_size);
9149 if (vectype
9150 && current_vector_size == 0)
9151 current_vector_size = GET_MODE_SIZE (TYPE_MODE (vectype));
9152 return vectype;
9155 /* Function get_mask_type_for_scalar_type.
9157 Returns the mask type corresponding to a result of comparison
9158 of vectors of specified SCALAR_TYPE as supported by target. */
9160 tree
9161 get_mask_type_for_scalar_type (tree scalar_type)
9163 tree vectype = get_vectype_for_scalar_type (scalar_type);
9165 if (!vectype)
9166 return NULL;
9168 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype),
9169 current_vector_size);
9172 /* Function get_same_sized_vectype
9174 Returns a vector type corresponding to SCALAR_TYPE of size
9175 VECTOR_TYPE if supported by the target. */
9177 tree
9178 get_same_sized_vectype (tree scalar_type, tree vector_type)
9180 if (VECT_SCALAR_BOOLEAN_TYPE_P (scalar_type))
9181 return build_same_sized_truth_vector_type (vector_type);
9183 return get_vectype_for_scalar_type_and_size
9184 (scalar_type, GET_MODE_SIZE (TYPE_MODE (vector_type)));
9187 /* Function vect_is_simple_use.
9189 Input:
9190 VINFO - the vect info of the loop or basic block that is being vectorized.
9191 OPERAND - operand in the loop or bb.
9192 Output:
9193 DEF_STMT - the defining stmt in case OPERAND is an SSA_NAME.
9194 DT - the type of definition
9196 Returns whether a stmt with OPERAND can be vectorized.
9197 For loops, supportable operands are constants, loop invariants, and operands
9198 that are defined by the current iteration of the loop. Unsupportable
9199 operands are those that are defined by a previous iteration of the loop (as
9200 is the case in reduction/induction computations).
9201 For basic blocks, supportable operands are constants and bb invariants.
9202 For now, operands defined outside the basic block are not supported. */
9204 bool
9205 vect_is_simple_use (tree operand, vec_info *vinfo,
9206 gimple **def_stmt, enum vect_def_type *dt)
9208 *def_stmt = NULL;
9209 *dt = vect_unknown_def_type;
9211 if (dump_enabled_p ())
9213 dump_printf_loc (MSG_NOTE, vect_location,
9214 "vect_is_simple_use: operand ");
9215 dump_generic_expr (MSG_NOTE, TDF_SLIM, operand);
9216 dump_printf (MSG_NOTE, "\n");
9219 if (CONSTANT_CLASS_P (operand))
9221 *dt = vect_constant_def;
9222 return true;
9225 if (is_gimple_min_invariant (operand))
9227 *dt = vect_external_def;
9228 return true;
9231 if (TREE_CODE (operand) != SSA_NAME)
9233 if (dump_enabled_p ())
9234 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
9235 "not ssa-name.\n");
9236 return false;
9239 if (SSA_NAME_IS_DEFAULT_DEF (operand))
9241 *dt = vect_external_def;
9242 return true;
9245 *def_stmt = SSA_NAME_DEF_STMT (operand);
9246 if (dump_enabled_p ())
9248 dump_printf_loc (MSG_NOTE, vect_location, "def_stmt: ");
9249 dump_gimple_stmt (MSG_NOTE, TDF_SLIM, *def_stmt, 0);
9252 if (! vect_stmt_in_region_p (vinfo, *def_stmt))
9253 *dt = vect_external_def;
9254 else
9256 stmt_vec_info stmt_vinfo = vinfo_for_stmt (*def_stmt);
9257 *dt = STMT_VINFO_DEF_TYPE (stmt_vinfo);
9260 if (dump_enabled_p ())
9262 dump_printf_loc (MSG_NOTE, vect_location, "type of def: ");
9263 switch (*dt)
9265 case vect_uninitialized_def:
9266 dump_printf (MSG_NOTE, "uninitialized\n");
9267 break;
9268 case vect_constant_def:
9269 dump_printf (MSG_NOTE, "constant\n");
9270 break;
9271 case vect_external_def:
9272 dump_printf (MSG_NOTE, "external\n");
9273 break;
9274 case vect_internal_def:
9275 dump_printf (MSG_NOTE, "internal\n");
9276 break;
9277 case vect_induction_def:
9278 dump_printf (MSG_NOTE, "induction\n");
9279 break;
9280 case vect_reduction_def:
9281 dump_printf (MSG_NOTE, "reduction\n");
9282 break;
9283 case vect_double_reduction_def:
9284 dump_printf (MSG_NOTE, "double reduction\n");
9285 break;
9286 case vect_nested_cycle:
9287 dump_printf (MSG_NOTE, "nested cycle\n");
9288 break;
9289 case vect_unknown_def_type:
9290 dump_printf (MSG_NOTE, "unknown\n");
9291 break;
9295 if (*dt == vect_unknown_def_type)
9297 if (dump_enabled_p ())
9298 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
9299 "Unsupported pattern.\n");
9300 return false;
9303 switch (gimple_code (*def_stmt))
9305 case GIMPLE_PHI:
9306 case GIMPLE_ASSIGN:
9307 case GIMPLE_CALL:
9308 break;
9309 default:
9310 if (dump_enabled_p ())
9311 dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
9312 "unsupported defining stmt:\n");
9313 return false;
9316 return true;
9319 /* Function vect_is_simple_use.
9321 Same as vect_is_simple_use but also determines the vector operand
9322 type of OPERAND and stores it to *VECTYPE. If the definition of
9323 OPERAND is vect_uninitialized_def, vect_constant_def or
9324 vect_external_def *VECTYPE will be set to NULL_TREE and the caller
9325 is responsible to compute the best suited vector type for the
9326 scalar operand. */
9328 bool
9329 vect_is_simple_use (tree operand, vec_info *vinfo,
9330 gimple **def_stmt, enum vect_def_type *dt, tree *vectype)
9332 if (!vect_is_simple_use (operand, vinfo, def_stmt, dt))
9333 return false;
9335 /* Now get a vector type if the def is internal, otherwise supply
9336 NULL_TREE and leave it up to the caller to figure out a proper
9337 type for the use stmt. */
9338 if (*dt == vect_internal_def
9339 || *dt == vect_induction_def
9340 || *dt == vect_reduction_def
9341 || *dt == vect_double_reduction_def
9342 || *dt == vect_nested_cycle)
9344 stmt_vec_info stmt_info = vinfo_for_stmt (*def_stmt);
9346 if (STMT_VINFO_IN_PATTERN_P (stmt_info)
9347 && !STMT_VINFO_RELEVANT (stmt_info)
9348 && !STMT_VINFO_LIVE_P (stmt_info))
9349 stmt_info = vinfo_for_stmt (STMT_VINFO_RELATED_STMT (stmt_info));
9351 *vectype = STMT_VINFO_VECTYPE (stmt_info);
9352 gcc_assert (*vectype != NULL_TREE);
9354 else if (*dt == vect_uninitialized_def
9355 || *dt == vect_constant_def
9356 || *dt == vect_external_def)
9357 *vectype = NULL_TREE;
9358 else
9359 gcc_unreachable ();
9361 return true;
9365 /* Function supportable_widening_operation
9367 Check whether an operation represented by the code CODE is a
9368 widening operation that is supported by the target platform in
9369 vector form (i.e., when operating on arguments of type VECTYPE_IN
9370 producing a result of type VECTYPE_OUT).
9372 Widening operations we currently support are NOP (CONVERT), FLOAT
9373 and WIDEN_MULT. This function checks if these operations are supported
9374 by the target platform either directly (via vector tree-codes), or via
9375 target builtins.
9377 Output:
9378 - CODE1 and CODE2 are codes of vector operations to be used when
9379 vectorizing the operation, if available.
9380 - MULTI_STEP_CVT determines the number of required intermediate steps in
9381 case of multi-step conversion (like char->short->int - in that case
9382 MULTI_STEP_CVT will be 1).
9383 - INTERM_TYPES contains the intermediate type required to perform the
9384 widening operation (short in the above example). */
9386 bool
9387 supportable_widening_operation (enum tree_code code, gimple *stmt,
9388 tree vectype_out, tree vectype_in,
9389 enum tree_code *code1, enum tree_code *code2,
9390 int *multi_step_cvt,
9391 vec<tree> *interm_types)
9393 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
9394 loop_vec_info loop_info = STMT_VINFO_LOOP_VINFO (stmt_info);
9395 struct loop *vect_loop = NULL;
9396 machine_mode vec_mode;
9397 enum insn_code icode1, icode2;
9398 optab optab1, optab2;
9399 tree vectype = vectype_in;
9400 tree wide_vectype = vectype_out;
9401 enum tree_code c1, c2;
9402 int i;
9403 tree prev_type, intermediate_type;
9404 machine_mode intermediate_mode, prev_mode;
9405 optab optab3, optab4;
9407 *multi_step_cvt = 0;
9408 if (loop_info)
9409 vect_loop = LOOP_VINFO_LOOP (loop_info);
9411 switch (code)
9413 case WIDEN_MULT_EXPR:
9414 /* The result of a vectorized widening operation usually requires
9415 two vectors (because the widened results do not fit into one vector).
9416 The generated vector results would normally be expected to be
9417 generated in the same order as in the original scalar computation,
9418 i.e. if 8 results are generated in each vector iteration, they are
9419 to be organized as follows:
9420 vect1: [res1,res2,res3,res4],
9421 vect2: [res5,res6,res7,res8].
9423 However, in the special case that the result of the widening
9424 operation is used in a reduction computation only, the order doesn't
9425 matter (because when vectorizing a reduction we change the order of
9426 the computation). Some targets can take advantage of this and
9427 generate more efficient code. For example, targets like Altivec,
9428 that support widen_mult using a sequence of {mult_even,mult_odd}
9429 generate the following vectors:
9430 vect1: [res1,res3,res5,res7],
9431 vect2: [res2,res4,res6,res8].
9433 When vectorizing outer-loops, we execute the inner-loop sequentially
9434 (each vectorized inner-loop iteration contributes to VF outer-loop
9435 iterations in parallel). We therefore don't allow to change the
9436 order of the computation in the inner-loop during outer-loop
9437 vectorization. */
9438 /* TODO: Another case in which order doesn't *really* matter is when we
9439 widen and then contract again, e.g. (short)((int)x * y >> 8).
9440 Normally, pack_trunc performs an even/odd permute, whereas the
9441 repack from an even/odd expansion would be an interleave, which
9442 would be significantly simpler for e.g. AVX2. */
9443 /* In any case, in order to avoid duplicating the code below, recurse
9444 on VEC_WIDEN_MULT_EVEN_EXPR. If it succeeds, all the return values
9445 are properly set up for the caller. If we fail, we'll continue with
9446 a VEC_WIDEN_MULT_LO/HI_EXPR check. */
9447 if (vect_loop
9448 && STMT_VINFO_RELEVANT (stmt_info) == vect_used_by_reduction
9449 && !nested_in_vect_loop_p (vect_loop, stmt)
9450 && supportable_widening_operation (VEC_WIDEN_MULT_EVEN_EXPR,
9451 stmt, vectype_out, vectype_in,
9452 code1, code2, multi_step_cvt,
9453 interm_types))
9455 /* Elements in a vector with vect_used_by_reduction property cannot
9456 be reordered if the use chain with this property does not have the
9457 same operation. One such an example is s += a * b, where elements
9458 in a and b cannot be reordered. Here we check if the vector defined
9459 by STMT is only directly used in the reduction statement. */
9460 tree lhs = gimple_assign_lhs (stmt);
9461 use_operand_p dummy;
9462 gimple *use_stmt;
9463 stmt_vec_info use_stmt_info = NULL;
9464 if (single_imm_use (lhs, &dummy, &use_stmt)
9465 && (use_stmt_info = vinfo_for_stmt (use_stmt))
9466 && STMT_VINFO_DEF_TYPE (use_stmt_info) == vect_reduction_def)
9467 return true;
9469 c1 = VEC_WIDEN_MULT_LO_EXPR;
9470 c2 = VEC_WIDEN_MULT_HI_EXPR;
9471 break;
9473 case DOT_PROD_EXPR:
9474 c1 = DOT_PROD_EXPR;
9475 c2 = DOT_PROD_EXPR;
9476 break;
9478 case SAD_EXPR:
9479 c1 = SAD_EXPR;
9480 c2 = SAD_EXPR;
9481 break;
9483 case VEC_WIDEN_MULT_EVEN_EXPR:
9484 /* Support the recursion induced just above. */
9485 c1 = VEC_WIDEN_MULT_EVEN_EXPR;
9486 c2 = VEC_WIDEN_MULT_ODD_EXPR;
9487 break;
9489 case WIDEN_LSHIFT_EXPR:
9490 c1 = VEC_WIDEN_LSHIFT_LO_EXPR;
9491 c2 = VEC_WIDEN_LSHIFT_HI_EXPR;
9492 break;
9494 CASE_CONVERT:
9495 c1 = VEC_UNPACK_LO_EXPR;
9496 c2 = VEC_UNPACK_HI_EXPR;
9497 break;
9499 case FLOAT_EXPR:
9500 c1 = VEC_UNPACK_FLOAT_LO_EXPR;
9501 c2 = VEC_UNPACK_FLOAT_HI_EXPR;
9502 break;
9504 case FIX_TRUNC_EXPR:
9505 /* ??? Not yet implemented due to missing VEC_UNPACK_FIX_TRUNC_HI_EXPR/
9506 VEC_UNPACK_FIX_TRUNC_LO_EXPR tree codes and optabs used for
9507 computing the operation. */
9508 return false;
9510 default:
9511 gcc_unreachable ();
9514 if (BYTES_BIG_ENDIAN && c1 != VEC_WIDEN_MULT_EVEN_EXPR)
9515 std::swap (c1, c2);
9517 if (code == FIX_TRUNC_EXPR)
9519 /* The signedness is determined from output operand. */
9520 optab1 = optab_for_tree_code (c1, vectype_out, optab_default);
9521 optab2 = optab_for_tree_code (c2, vectype_out, optab_default);
9523 else
9525 optab1 = optab_for_tree_code (c1, vectype, optab_default);
9526 optab2 = optab_for_tree_code (c2, vectype, optab_default);
9529 if (!optab1 || !optab2)
9530 return false;
9532 vec_mode = TYPE_MODE (vectype);
9533 if ((icode1 = optab_handler (optab1, vec_mode)) == CODE_FOR_nothing
9534 || (icode2 = optab_handler (optab2, vec_mode)) == CODE_FOR_nothing)
9535 return false;
9537 *code1 = c1;
9538 *code2 = c2;
9540 if (insn_data[icode1].operand[0].mode == TYPE_MODE (wide_vectype)
9541 && insn_data[icode2].operand[0].mode == TYPE_MODE (wide_vectype))
9542 /* For scalar masks we may have different boolean
9543 vector types having the same QImode. Thus we
9544 add additional check for elements number. */
9545 return (!VECTOR_BOOLEAN_TYPE_P (vectype)
9546 || (TYPE_VECTOR_SUBPARTS (vectype) / 2
9547 == TYPE_VECTOR_SUBPARTS (wide_vectype)));
9549 /* Check if it's a multi-step conversion that can be done using intermediate
9550 types. */
9552 prev_type = vectype;
9553 prev_mode = vec_mode;
9555 if (!CONVERT_EXPR_CODE_P (code))
9556 return false;
9558 /* We assume here that there will not be more than MAX_INTERM_CVT_STEPS
9559 intermediate steps in promotion sequence. We try
9560 MAX_INTERM_CVT_STEPS to get to NARROW_VECTYPE, and fail if we do
9561 not. */
9562 interm_types->create (MAX_INTERM_CVT_STEPS);
9563 for (i = 0; i < MAX_INTERM_CVT_STEPS; i++)
9565 intermediate_mode = insn_data[icode1].operand[0].mode;
9566 if (VECTOR_BOOLEAN_TYPE_P (prev_type))
9568 intermediate_type
9569 = build_truth_vector_type (TYPE_VECTOR_SUBPARTS (prev_type) / 2,
9570 current_vector_size);
9571 if (intermediate_mode != TYPE_MODE (intermediate_type))
9572 return false;
9574 else
9575 intermediate_type
9576 = lang_hooks.types.type_for_mode (intermediate_mode,
9577 TYPE_UNSIGNED (prev_type));
9579 optab3 = optab_for_tree_code (c1, intermediate_type, optab_default);
9580 optab4 = optab_for_tree_code (c2, intermediate_type, optab_default);
9582 if (!optab3 || !optab4
9583 || (icode1 = optab_handler (optab1, prev_mode)) == CODE_FOR_nothing
9584 || insn_data[icode1].operand[0].mode != intermediate_mode
9585 || (icode2 = optab_handler (optab2, prev_mode)) == CODE_FOR_nothing
9586 || insn_data[icode2].operand[0].mode != intermediate_mode
9587 || ((icode1 = optab_handler (optab3, intermediate_mode))
9588 == CODE_FOR_nothing)
9589 || ((icode2 = optab_handler (optab4, intermediate_mode))
9590 == CODE_FOR_nothing))
9591 break;
9593 interm_types->quick_push (intermediate_type);
9594 (*multi_step_cvt)++;
9596 if (insn_data[icode1].operand[0].mode == TYPE_MODE (wide_vectype)
9597 && insn_data[icode2].operand[0].mode == TYPE_MODE (wide_vectype))
9598 return (!VECTOR_BOOLEAN_TYPE_P (vectype)
9599 || (TYPE_VECTOR_SUBPARTS (intermediate_type) / 2
9600 == TYPE_VECTOR_SUBPARTS (wide_vectype)));
9602 prev_type = intermediate_type;
9603 prev_mode = intermediate_mode;
9606 interm_types->release ();
9607 return false;
9611 /* Function supportable_narrowing_operation
9613 Check whether an operation represented by the code CODE is a
9614 narrowing operation that is supported by the target platform in
9615 vector form (i.e., when operating on arguments of type VECTYPE_IN
9616 and producing a result of type VECTYPE_OUT).
9618 Narrowing operations we currently support are NOP (CONVERT) and
9619 FIX_TRUNC. This function checks if these operations are supported by
9620 the target platform directly via vector tree-codes.
9622 Output:
9623 - CODE1 is the code of a vector operation to be used when
9624 vectorizing the operation, if available.
9625 - MULTI_STEP_CVT determines the number of required intermediate steps in
9626 case of multi-step conversion (like int->short->char - in that case
9627 MULTI_STEP_CVT will be 1).
9628 - INTERM_TYPES contains the intermediate type required to perform the
9629 narrowing operation (short in the above example). */
9631 bool
9632 supportable_narrowing_operation (enum tree_code code,
9633 tree vectype_out, tree vectype_in,
9634 enum tree_code *code1, int *multi_step_cvt,
9635 vec<tree> *interm_types)
9637 machine_mode vec_mode;
9638 enum insn_code icode1;
9639 optab optab1, interm_optab;
9640 tree vectype = vectype_in;
9641 tree narrow_vectype = vectype_out;
9642 enum tree_code c1;
9643 tree intermediate_type, prev_type;
9644 machine_mode intermediate_mode, prev_mode;
9645 int i;
9646 bool uns;
9648 *multi_step_cvt = 0;
9649 switch (code)
9651 CASE_CONVERT:
9652 c1 = VEC_PACK_TRUNC_EXPR;
9653 break;
9655 case FIX_TRUNC_EXPR:
9656 c1 = VEC_PACK_FIX_TRUNC_EXPR;
9657 break;
9659 case FLOAT_EXPR:
9660 /* ??? Not yet implemented due to missing VEC_PACK_FLOAT_EXPR
9661 tree code and optabs used for computing the operation. */
9662 return false;
9664 default:
9665 gcc_unreachable ();
9668 if (code == FIX_TRUNC_EXPR)
9669 /* The signedness is determined from output operand. */
9670 optab1 = optab_for_tree_code (c1, vectype_out, optab_default);
9671 else
9672 optab1 = optab_for_tree_code (c1, vectype, optab_default);
9674 if (!optab1)
9675 return false;
9677 vec_mode = TYPE_MODE (vectype);
9678 if ((icode1 = optab_handler (optab1, vec_mode)) == CODE_FOR_nothing)
9679 return false;
9681 *code1 = c1;
9683 if (insn_data[icode1].operand[0].mode == TYPE_MODE (narrow_vectype))
9684 /* For scalar masks we may have different boolean
9685 vector types having the same QImode. Thus we
9686 add additional check for elements number. */
9687 return (!VECTOR_BOOLEAN_TYPE_P (vectype)
9688 || (TYPE_VECTOR_SUBPARTS (vectype) * 2
9689 == TYPE_VECTOR_SUBPARTS (narrow_vectype)));
9691 /* Check if it's a multi-step conversion that can be done using intermediate
9692 types. */
9693 prev_mode = vec_mode;
9694 prev_type = vectype;
9695 if (code == FIX_TRUNC_EXPR)
9696 uns = TYPE_UNSIGNED (vectype_out);
9697 else
9698 uns = TYPE_UNSIGNED (vectype);
9700 /* For multi-step FIX_TRUNC_EXPR prefer signed floating to integer
9701 conversion over unsigned, as unsigned FIX_TRUNC_EXPR is often more
9702 costly than signed. */
9703 if (code == FIX_TRUNC_EXPR && uns)
9705 enum insn_code icode2;
9707 intermediate_type
9708 = lang_hooks.types.type_for_mode (TYPE_MODE (vectype_out), 0);
9709 interm_optab
9710 = optab_for_tree_code (c1, intermediate_type, optab_default);
9711 if (interm_optab != unknown_optab
9712 && (icode2 = optab_handler (optab1, vec_mode)) != CODE_FOR_nothing
9713 && insn_data[icode1].operand[0].mode
9714 == insn_data[icode2].operand[0].mode)
9716 uns = false;
9717 optab1 = interm_optab;
9718 icode1 = icode2;
9722 /* We assume here that there will not be more than MAX_INTERM_CVT_STEPS
9723 intermediate steps in promotion sequence. We try
9724 MAX_INTERM_CVT_STEPS to get to NARROW_VECTYPE, and fail if we do not. */
9725 interm_types->create (MAX_INTERM_CVT_STEPS);
9726 for (i = 0; i < MAX_INTERM_CVT_STEPS; i++)
9728 intermediate_mode = insn_data[icode1].operand[0].mode;
9729 if (VECTOR_BOOLEAN_TYPE_P (prev_type))
9731 intermediate_type
9732 = build_truth_vector_type (TYPE_VECTOR_SUBPARTS (prev_type) * 2,
9733 current_vector_size);
9734 if (intermediate_mode != TYPE_MODE (intermediate_type))
9735 return false;
9737 else
9738 intermediate_type
9739 = lang_hooks.types.type_for_mode (intermediate_mode, uns);
9740 interm_optab
9741 = optab_for_tree_code (VEC_PACK_TRUNC_EXPR, intermediate_type,
9742 optab_default);
9743 if (!interm_optab
9744 || ((icode1 = optab_handler (optab1, prev_mode)) == CODE_FOR_nothing)
9745 || insn_data[icode1].operand[0].mode != intermediate_mode
9746 || ((icode1 = optab_handler (interm_optab, intermediate_mode))
9747 == CODE_FOR_nothing))
9748 break;
9750 interm_types->quick_push (intermediate_type);
9751 (*multi_step_cvt)++;
9753 if (insn_data[icode1].operand[0].mode == TYPE_MODE (narrow_vectype))
9754 return (!VECTOR_BOOLEAN_TYPE_P (vectype)
9755 || (TYPE_VECTOR_SUBPARTS (intermediate_type) * 2
9756 == TYPE_VECTOR_SUBPARTS (narrow_vectype)));
9758 prev_mode = intermediate_mode;
9759 prev_type = intermediate_type;
9760 optab1 = interm_optab;
9763 interm_types->release ();
9764 return false;