PR tree-optimization/57558
[official-gcc.git] / gcc / tree-vectorizer.h
blob31570d8ed1fb816125e09d11e4b8f65ddae2b608
1 /* Vectorizer
2 Copyright (C) 2003-2016 Free Software Foundation, Inc.
3 Contributed by Dorit Naishlos <dorit@il.ibm.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_TREE_VECTORIZER_H
22 #define GCC_TREE_VECTORIZER_H
24 #include "tree-data-ref.h"
25 #include "target.h"
27 /* Used for naming of new temporaries. */
28 enum vect_var_kind {
29 vect_simple_var,
30 vect_pointer_var,
31 vect_scalar_var,
32 vect_mask_var
35 /* Defines type of operation. */
36 enum operation_type {
37 unary_op = 1,
38 binary_op,
39 ternary_op
42 /* Define type of available alignment support. */
43 enum dr_alignment_support {
44 dr_unaligned_unsupported,
45 dr_unaligned_supported,
46 dr_explicit_realign,
47 dr_explicit_realign_optimized,
48 dr_aligned
51 /* Define type of def-use cross-iteration cycle. */
52 enum vect_def_type {
53 vect_uninitialized_def = 0,
54 vect_constant_def = 1,
55 vect_external_def,
56 vect_internal_def,
57 vect_induction_def,
58 vect_reduction_def,
59 vect_double_reduction_def,
60 vect_nested_cycle,
61 vect_unknown_def_type
64 /* Define type of reduction. */
65 enum vect_reduction_type {
66 TREE_CODE_REDUCTION,
67 COND_REDUCTION,
68 INTEGER_INDUC_COND_REDUCTION
71 #define VECTORIZABLE_CYCLE_DEF(D) (((D) == vect_reduction_def) \
72 || ((D) == vect_double_reduction_def) \
73 || ((D) == vect_nested_cycle))
75 /* Structure to encapsulate information about a group of like
76 instructions to be presented to the target cost model. */
77 struct stmt_info_for_cost {
78 int count;
79 enum vect_cost_for_stmt kind;
80 gimple *stmt;
81 int misalign;
84 typedef vec<stmt_info_for_cost> stmt_vector_for_cost;
86 /************************************************************************
87 SLP
88 ************************************************************************/
89 typedef struct _slp_tree *slp_tree;
91 /* A computation tree of an SLP instance. Each node corresponds to a group of
92 stmts to be packed in a SIMD stmt. */
93 struct _slp_tree {
94 /* Nodes that contain def-stmts of this node statements operands. */
95 vec<slp_tree> children;
96 /* A group of scalar stmts to be vectorized together. */
97 vec<gimple *> stmts;
98 /* Load permutation relative to the stores, NULL if there is no
99 permutation. */
100 vec<unsigned> load_permutation;
101 /* Vectorized stmt/s. */
102 vec<gimple *> vec_stmts;
103 /* Number of vector stmts that are created to replace the group of scalar
104 stmts. It is calculated during the transformation phase as the number of
105 scalar elements in one scalar iteration (GROUP_SIZE) multiplied by VF
106 divided by vector size. */
107 unsigned int vec_stmts_size;
108 /* Whether the scalar computations use two different operators. */
109 bool two_operators;
110 /* The DEF type of this node. */
111 enum vect_def_type def_type;
115 /* SLP instance is a sequence of stmts in a loop that can be packed into
116 SIMD stmts. */
117 typedef struct _slp_instance {
118 /* The root of SLP tree. */
119 slp_tree root;
121 /* Size of groups of scalar stmts that will be replaced by SIMD stmt/s. */
122 unsigned int group_size;
124 /* The unrolling factor required to vectorized this SLP instance. */
125 unsigned int unrolling_factor;
127 /* The group of nodes that contain loads of this SLP instance. */
128 vec<slp_tree> loads;
129 } *slp_instance;
132 /* Access Functions. */
133 #define SLP_INSTANCE_TREE(S) (S)->root
134 #define SLP_INSTANCE_GROUP_SIZE(S) (S)->group_size
135 #define SLP_INSTANCE_UNROLLING_FACTOR(S) (S)->unrolling_factor
136 #define SLP_INSTANCE_LOADS(S) (S)->loads
138 #define SLP_TREE_CHILDREN(S) (S)->children
139 #define SLP_TREE_SCALAR_STMTS(S) (S)->stmts
140 #define SLP_TREE_VEC_STMTS(S) (S)->vec_stmts
141 #define SLP_TREE_NUMBER_OF_VEC_STMTS(S) (S)->vec_stmts_size
142 #define SLP_TREE_LOAD_PERMUTATION(S) (S)->load_permutation
143 #define SLP_TREE_TWO_OPERATORS(S) (S)->two_operators
144 #define SLP_TREE_DEF_TYPE(S) (S)->def_type
148 /* This struct is used to store the information of a data reference,
149 including the data ref itself and the segment length for aliasing
150 checks. This is used to merge alias checks. */
152 struct dr_with_seg_len
154 dr_with_seg_len (data_reference_p d, tree len)
155 : dr (d), seg_len (len) {}
157 data_reference_p dr;
158 tree seg_len;
161 /* This struct contains two dr_with_seg_len objects with aliasing data
162 refs. Two comparisons are generated from them. */
164 struct dr_with_seg_len_pair_t
166 dr_with_seg_len_pair_t (const dr_with_seg_len& d1,
167 const dr_with_seg_len& d2)
168 : first (d1), second (d2) {}
170 dr_with_seg_len first;
171 dr_with_seg_len second;
176 /* Vectorizer state common between loop and basic-block vectorization. */
177 struct vec_info {
178 enum { bb, loop } kind;
180 /* All SLP instances. */
181 vec<slp_instance> slp_instances;
183 /* All data references. */
184 vec<data_reference_p> datarefs;
186 /* All data dependences. */
187 vec<ddr_p> ddrs;
189 /* All interleaving chains of stores, represented by the first
190 stmt in the chain. */
191 vec<gimple *> grouped_stores;
193 /* Cost data used by the target cost model. */
194 void *target_cost_data;
197 struct _loop_vec_info;
198 struct _bb_vec_info;
200 template<>
201 template<>
202 inline bool
203 is_a_helper <_loop_vec_info *>::test (vec_info *i)
205 return i->kind == vec_info::loop;
208 template<>
209 template<>
210 inline bool
211 is_a_helper <_bb_vec_info *>::test (vec_info *i)
213 return i->kind == vec_info::bb;
217 /*-----------------------------------------------------------------*/
218 /* Info on vectorized loops. */
219 /*-----------------------------------------------------------------*/
220 typedef struct _loop_vec_info : public vec_info {
222 /* The loop to which this info struct refers to. */
223 struct loop *loop;
225 /* The loop basic blocks. */
226 basic_block *bbs;
228 /* Number of latch executions. */
229 tree num_itersm1;
230 /* Number of iterations. */
231 tree num_iters;
232 /* Number of iterations of the original loop. */
233 tree num_iters_unchanged;
234 /* Condition under which this loop is analyzed and versioned. */
235 tree num_iters_assumptions;
237 /* Threshold of number of iterations below which vectorzation will not be
238 performed. It is calculated from MIN_PROFITABLE_ITERS and
239 PARAM_MIN_VECT_LOOP_BOUND. */
240 unsigned int th;
242 /* Is the loop vectorizable? */
243 bool vectorizable;
245 /* Unrolling factor */
246 int vectorization_factor;
248 /* Unknown DRs according to which loop was peeled. */
249 struct data_reference *unaligned_dr;
251 /* peeling_for_alignment indicates whether peeling for alignment will take
252 place, and what the peeling factor should be:
253 peeling_for_alignment = X means:
254 If X=0: Peeling for alignment will not be applied.
255 If X>0: Peel first X iterations.
256 If X=-1: Generate a runtime test to calculate the number of iterations
257 to be peeled, using the dataref recorded in the field
258 unaligned_dr. */
259 int peeling_for_alignment;
261 /* The mask used to check the alignment of pointers or arrays. */
262 int ptr_mask;
264 /* The loop nest in which the data dependences are computed. */
265 vec<loop_p> loop_nest;
267 /* Data Dependence Relations defining address ranges that are candidates
268 for a run-time aliasing check. */
269 vec<ddr_p> may_alias_ddrs;
271 /* Data Dependence Relations defining address ranges together with segment
272 lengths from which the run-time aliasing check is built. */
273 vec<dr_with_seg_len_pair_t> comp_alias_ddrs;
275 /* Statements in the loop that have data references that are candidates for a
276 runtime (loop versioning) misalignment check. */
277 vec<gimple *> may_misalign_stmts;
279 /* The unrolling factor needed to SLP the loop. In case of that pure SLP is
280 applied to the loop, i.e., no unrolling is needed, this is 1. */
281 unsigned slp_unrolling_factor;
283 /* Reduction cycles detected in the loop. Used in loop-aware SLP. */
284 vec<gimple *> reductions;
286 /* All reduction chains in the loop, represented by the first
287 stmt in the chain. */
288 vec<gimple *> reduction_chains;
290 /* Cost vector for a single scalar iteration. */
291 vec<stmt_info_for_cost> scalar_cost_vec;
293 /* Cost of a single scalar iteration. */
294 int single_scalar_iteration_cost;
296 /* When we have grouped data accesses with gaps, we may introduce invalid
297 memory accesses. We peel the last iteration of the loop to prevent
298 this. */
299 bool peeling_for_gaps;
301 /* When the number of iterations is not a multiple of the vector size
302 we need to peel off iterations at the end to form an epilogue loop. */
303 bool peeling_for_niter;
305 /* Reductions are canonicalized so that the last operand is the reduction
306 operand. If this places a constant into RHS1, this decanonicalizes
307 GIMPLE for other phases, so we must track when this has occurred and
308 fix it up. */
309 bool operands_swapped;
311 /* True if there are no loop carried data dependencies in the loop.
312 If loop->safelen <= 1, then this is always true, either the loop
313 didn't have any loop carried data dependencies, or the loop is being
314 vectorized guarded with some runtime alias checks, or couldn't
315 be vectorized at all, but then this field shouldn't be used.
316 For loop->safelen >= 2, the user has asserted that there are no
317 backward dependencies, but there still could be loop carried forward
318 dependencies in such loops. This flag will be false if normal
319 vectorizer data dependency analysis would fail or require versioning
320 for alias, but because of loop->safelen >= 2 it has been vectorized
321 even without versioning for alias. E.g. in:
322 #pragma omp simd
323 for (int i = 0; i < m; i++)
324 a[i] = a[i + k] * c;
325 (or #pragma simd or #pragma ivdep) we can vectorize this and it will
326 DTRT even for k > 0 && k < m, but without safelen we would not
327 vectorize this, so this field would be false. */
328 bool no_data_dependencies;
330 /* If if-conversion versioned this loop before conversion, this is the
331 loop version without if-conversion. */
332 struct loop *scalar_loop;
334 /* Mark loops having masked stores. */
335 bool has_mask_store;
337 } *loop_vec_info;
339 /* Access Functions. */
340 #define LOOP_VINFO_LOOP(L) (L)->loop
341 #define LOOP_VINFO_BBS(L) (L)->bbs
342 #define LOOP_VINFO_NITERSM1(L) (L)->num_itersm1
343 #define LOOP_VINFO_NITERS(L) (L)->num_iters
344 /* Since LOOP_VINFO_NITERS and LOOP_VINFO_NITERSM1 can change after
345 prologue peeling retain total unchanged scalar loop iterations for
346 cost model. */
347 #define LOOP_VINFO_NITERS_UNCHANGED(L) (L)->num_iters_unchanged
348 #define LOOP_VINFO_NITERS_ASSUMPTIONS(L) (L)->num_iters_assumptions
349 #define LOOP_VINFO_COST_MODEL_THRESHOLD(L) (L)->th
350 #define LOOP_VINFO_VECTORIZABLE_P(L) (L)->vectorizable
351 #define LOOP_VINFO_VECT_FACTOR(L) (L)->vectorization_factor
352 #define LOOP_VINFO_PTR_MASK(L) (L)->ptr_mask
353 #define LOOP_VINFO_LOOP_NEST(L) (L)->loop_nest
354 #define LOOP_VINFO_DATAREFS(L) (L)->datarefs
355 #define LOOP_VINFO_DDRS(L) (L)->ddrs
356 #define LOOP_VINFO_INT_NITERS(L) (TREE_INT_CST_LOW ((L)->num_iters))
357 #define LOOP_VINFO_PEELING_FOR_ALIGNMENT(L) (L)->peeling_for_alignment
358 #define LOOP_VINFO_UNALIGNED_DR(L) (L)->unaligned_dr
359 #define LOOP_VINFO_MAY_MISALIGN_STMTS(L) (L)->may_misalign_stmts
360 #define LOOP_VINFO_MAY_ALIAS_DDRS(L) (L)->may_alias_ddrs
361 #define LOOP_VINFO_COMP_ALIAS_DDRS(L) (L)->comp_alias_ddrs
362 #define LOOP_VINFO_GROUPED_STORES(L) (L)->grouped_stores
363 #define LOOP_VINFO_SLP_INSTANCES(L) (L)->slp_instances
364 #define LOOP_VINFO_SLP_UNROLLING_FACTOR(L) (L)->slp_unrolling_factor
365 #define LOOP_VINFO_REDUCTIONS(L) (L)->reductions
366 #define LOOP_VINFO_REDUCTION_CHAINS(L) (L)->reduction_chains
367 #define LOOP_VINFO_TARGET_COST_DATA(L) (L)->target_cost_data
368 #define LOOP_VINFO_PEELING_FOR_GAPS(L) (L)->peeling_for_gaps
369 #define LOOP_VINFO_OPERANDS_SWAPPED(L) (L)->operands_swapped
370 #define LOOP_VINFO_PEELING_FOR_NITER(L) (L)->peeling_for_niter
371 #define LOOP_VINFO_NO_DATA_DEPENDENCIES(L) (L)->no_data_dependencies
372 #define LOOP_VINFO_SCALAR_LOOP(L) (L)->scalar_loop
373 #define LOOP_VINFO_HAS_MASK_STORE(L) (L)->has_mask_store
374 #define LOOP_VINFO_SCALAR_ITERATION_COST(L) (L)->scalar_cost_vec
375 #define LOOP_VINFO_SINGLE_SCALAR_ITERATION_COST(L) (L)->single_scalar_iteration_cost
377 #define LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT(L) \
378 ((L)->may_misalign_stmts.length () > 0)
379 #define LOOP_REQUIRES_VERSIONING_FOR_ALIAS(L) \
380 ((L)->may_alias_ddrs.length () > 0)
381 #define LOOP_REQUIRES_VERSIONING_FOR_NITERS(L) \
382 (LOOP_VINFO_NITERS_ASSUMPTIONS (L))
383 #define LOOP_REQUIRES_VERSIONING(L) \
384 (LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT (L) \
385 || LOOP_REQUIRES_VERSIONING_FOR_ALIAS (L) \
386 || LOOP_REQUIRES_VERSIONING_FOR_NITERS (L))
388 #define LOOP_VINFO_NITERS_KNOWN_P(L) \
389 (tree_fits_shwi_p ((L)->num_iters) && tree_to_shwi ((L)->num_iters) > 0)
391 static inline loop_vec_info
392 loop_vec_info_for_loop (struct loop *loop)
394 return (loop_vec_info) loop->aux;
397 static inline bool
398 nested_in_vect_loop_p (struct loop *loop, gimple *stmt)
400 return (loop->inner
401 && (loop->inner == (gimple_bb (stmt))->loop_father));
404 typedef struct _bb_vec_info : public vec_info
406 basic_block bb;
407 gimple_stmt_iterator region_begin;
408 gimple_stmt_iterator region_end;
409 } *bb_vec_info;
411 #define BB_VINFO_BB(B) (B)->bb
412 #define BB_VINFO_GROUPED_STORES(B) (B)->grouped_stores
413 #define BB_VINFO_SLP_INSTANCES(B) (B)->slp_instances
414 #define BB_VINFO_DATAREFS(B) (B)->datarefs
415 #define BB_VINFO_DDRS(B) (B)->ddrs
416 #define BB_VINFO_TARGET_COST_DATA(B) (B)->target_cost_data
418 static inline bb_vec_info
419 vec_info_for_bb (basic_block bb)
421 return (bb_vec_info) bb->aux;
424 /*-----------------------------------------------------------------*/
425 /* Info on vectorized defs. */
426 /*-----------------------------------------------------------------*/
427 enum stmt_vec_info_type {
428 undef_vec_info_type = 0,
429 load_vec_info_type,
430 store_vec_info_type,
431 shift_vec_info_type,
432 op_vec_info_type,
433 call_vec_info_type,
434 call_simd_clone_vec_info_type,
435 assignment_vec_info_type,
436 condition_vec_info_type,
437 comparison_vec_info_type,
438 reduc_vec_info_type,
439 induc_vec_info_type,
440 type_promotion_vec_info_type,
441 type_demotion_vec_info_type,
442 type_conversion_vec_info_type,
443 loop_exit_ctrl_vec_info_type
446 /* Indicates whether/how a variable is used in the scope of loop/basic
447 block. */
448 enum vect_relevant {
449 vect_unused_in_scope = 0,
451 /* The def is only used outside the loop. */
452 vect_used_only_live,
453 /* The def is in the inner loop, and the use is in the outer loop, and the
454 use is a reduction stmt. */
455 vect_used_in_outer_by_reduction,
456 /* The def is in the inner loop, and the use is in the outer loop (and is
457 not part of reduction). */
458 vect_used_in_outer,
460 /* defs that feed computations that end up (only) in a reduction. These
461 defs may be used by non-reduction stmts, but eventually, any
462 computations/values that are affected by these defs are used to compute
463 a reduction (i.e. don't get stored to memory, for example). We use this
464 to identify computations that we can change the order in which they are
465 computed. */
466 vect_used_by_reduction,
468 vect_used_in_scope
471 /* The type of vectorization that can be applied to the stmt: regular loop-based
472 vectorization; pure SLP - the stmt is a part of SLP instances and does not
473 have uses outside SLP instances; or hybrid SLP and loop-based - the stmt is
474 a part of SLP instance and also must be loop-based vectorized, since it has
475 uses outside SLP sequences.
477 In the loop context the meanings of pure and hybrid SLP are slightly
478 different. By saying that pure SLP is applied to the loop, we mean that we
479 exploit only intra-iteration parallelism in the loop; i.e., the loop can be
480 vectorized without doing any conceptual unrolling, cause we don't pack
481 together stmts from different iterations, only within a single iteration.
482 Loop hybrid SLP means that we exploit both intra-iteration and
483 inter-iteration parallelism (e.g., number of elements in the vector is 4
484 and the slp-group-size is 2, in which case we don't have enough parallelism
485 within an iteration, so we obtain the rest of the parallelism from subsequent
486 iterations by unrolling the loop by 2). */
487 enum slp_vect_type {
488 loop_vect = 0,
489 pure_slp,
490 hybrid
493 /* Describes how we're going to vectorize an individual load or store,
494 or a group of loads or stores. */
495 enum vect_memory_access_type {
496 /* An access to an invariant address. This is used only for loads. */
497 VMAT_INVARIANT,
499 /* A simple contiguous access. */
500 VMAT_CONTIGUOUS,
502 /* A contiguous access that goes down in memory rather than up,
503 with no additional permutation. This is used only for stores
504 of invariants. */
505 VMAT_CONTIGUOUS_DOWN,
507 /* A simple contiguous access in which the elements need to be permuted
508 after loading or before storing. Only used for loop vectorization;
509 SLP uses separate permutes. */
510 VMAT_CONTIGUOUS_PERMUTE,
512 /* A simple contiguous access in which the elements need to be reversed
513 after loading or before storing. */
514 VMAT_CONTIGUOUS_REVERSE,
516 /* An access that uses IFN_LOAD_LANES or IFN_STORE_LANES. */
517 VMAT_LOAD_STORE_LANES,
519 /* An access in which each scalar element is loaded or stored
520 individually. */
521 VMAT_ELEMENTWISE,
523 /* A hybrid of VMAT_CONTIGUOUS and VMAT_ELEMENTWISE, used for grouped
524 SLP accesses. Each unrolled iteration uses a contiguous load
525 or store for the whole group, but the groups from separate iterations
526 are combined in the same way as for VMAT_ELEMENTWISE. */
527 VMAT_STRIDED_SLP,
529 /* The access uses gather loads or scatter stores. */
530 VMAT_GATHER_SCATTER
533 typedef struct data_reference *dr_p;
535 typedef struct _stmt_vec_info {
537 enum stmt_vec_info_type type;
539 /* Indicates whether this stmts is part of a computation whose result is
540 used outside the loop. */
541 bool live;
543 /* Stmt is part of some pattern (computation idiom) */
544 bool in_pattern_p;
546 /* The stmt to which this info struct refers to. */
547 gimple *stmt;
549 /* The vec_info with respect to which STMT is vectorized. */
550 vec_info *vinfo;
552 /* The vector type to be used for the LHS of this statement. */
553 tree vectype;
555 /* The vectorized version of the stmt. */
556 gimple *vectorized_stmt;
559 /** The following is relevant only for stmts that contain a non-scalar
560 data-ref (array/pointer/struct access). A GIMPLE stmt is expected to have
561 at most one such data-ref. **/
563 /* Information about the data-ref (access function, etc),
564 relative to the inner-most containing loop. */
565 struct data_reference *data_ref_info;
567 /* Information about the data-ref relative to this loop
568 nest (the loop that is being considered for vectorization). */
569 tree dr_base_address;
570 tree dr_init;
571 tree dr_offset;
572 tree dr_step;
573 tree dr_aligned_to;
575 /* For loop PHI nodes, the base and evolution part of it. This makes sure
576 this information is still available in vect_update_ivs_after_vectorizer
577 where we may not be able to re-analyze the PHI nodes evolution as
578 peeling for the prologue loop can make it unanalyzable. The evolution
579 part is still correct after peeling, but the base may have changed from
580 the version here. */
581 tree loop_phi_evolution_base_unchanged;
582 tree loop_phi_evolution_part;
584 /* Used for various bookkeeping purposes, generally holding a pointer to
585 some other stmt S that is in some way "related" to this stmt.
586 Current use of this field is:
587 If this stmt is part of a pattern (i.e. the field 'in_pattern_p' is
588 true): S is the "pattern stmt" that represents (and replaces) the
589 sequence of stmts that constitutes the pattern. Similarly, the
590 related_stmt of the "pattern stmt" points back to this stmt (which is
591 the last stmt in the original sequence of stmts that constitutes the
592 pattern). */
593 gimple *related_stmt;
595 /* Used to keep a sequence of def stmts of a pattern stmt if such exists. */
596 gimple_seq pattern_def_seq;
598 /* List of datarefs that are known to have the same alignment as the dataref
599 of this stmt. */
600 vec<dr_p> same_align_refs;
602 /* Selected SIMD clone's function info. First vector element
603 is SIMD clone's function decl, followed by a pair of trees (base + step)
604 for linear arguments (pair of NULLs for other arguments). */
605 vec<tree> simd_clone_info;
607 /* Classify the def of this stmt. */
608 enum vect_def_type def_type;
610 /* Whether the stmt is SLPed, loop-based vectorized, or both. */
611 enum slp_vect_type slp_type;
613 /* Interleaving and reduction chains info. */
614 /* First element in the group. */
615 gimple *first_element;
616 /* Pointer to the next element in the group. */
617 gimple *next_element;
618 /* For data-refs, in case that two or more stmts share data-ref, this is the
619 pointer to the previously detected stmt with the same dr. */
620 gimple *same_dr_stmt;
621 /* The size of the group. */
622 unsigned int size;
623 /* For stores, number of stores from this group seen. We vectorize the last
624 one. */
625 unsigned int store_count;
626 /* For loads only, the gap from the previous load. For consecutive loads, GAP
627 is 1. */
628 unsigned int gap;
630 /* The minimum negative dependence distance this stmt participates in
631 or zero if none. */
632 unsigned int min_neg_dist;
634 /* Not all stmts in the loop need to be vectorized. e.g, the increment
635 of the loop induction variable and computation of array indexes. relevant
636 indicates whether the stmt needs to be vectorized. */
637 enum vect_relevant relevant;
639 /* Is this statement vectorizable or should it be skipped in (partial)
640 vectorization. */
641 bool vectorizable;
643 /* For loads if this is a gather, for stores if this is a scatter. */
644 bool gather_scatter_p;
646 /* True if this is an access with loop-invariant stride. */
647 bool strided_p;
649 /* Classifies how the load or store is going to be implemented
650 for loop vectorization. */
651 vect_memory_access_type memory_access_type;
653 /* For both loads and stores. */
654 bool simd_lane_access_p;
656 /* For reduction loops, this is the type of reduction. */
657 enum vect_reduction_type v_reduc_type;
659 /* The number of scalar stmt references from active SLP instances. */
660 unsigned int num_slp_uses;
661 } *stmt_vec_info;
663 /* Information about a gather/scatter call. */
664 struct gather_scatter_info {
665 /* The FUNCTION_DECL for the built-in gather/scatter function. */
666 tree decl;
668 /* The loop-invariant base value. */
669 tree base;
671 /* The original scalar offset, which is a non-loop-invariant SSA_NAME. */
672 tree offset;
674 /* Each offset element should be multiplied by this amount before
675 being added to the base. */
676 int scale;
678 /* The definition type for the vectorized offset. */
679 enum vect_def_type offset_dt;
681 /* The type of the vectorized offset. */
682 tree offset_vectype;
685 /* Access Functions. */
686 #define STMT_VINFO_TYPE(S) (S)->type
687 #define STMT_VINFO_STMT(S) (S)->stmt
688 inline loop_vec_info
689 STMT_VINFO_LOOP_VINFO (stmt_vec_info stmt_vinfo)
691 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (stmt_vinfo->vinfo))
692 return loop_vinfo;
693 return NULL;
695 inline bb_vec_info
696 STMT_VINFO_BB_VINFO (stmt_vec_info stmt_vinfo)
698 if (bb_vec_info bb_vinfo = dyn_cast <bb_vec_info> (stmt_vinfo->vinfo))
699 return bb_vinfo;
700 return NULL;
702 #define STMT_VINFO_RELEVANT(S) (S)->relevant
703 #define STMT_VINFO_LIVE_P(S) (S)->live
704 #define STMT_VINFO_VECTYPE(S) (S)->vectype
705 #define STMT_VINFO_VEC_STMT(S) (S)->vectorized_stmt
706 #define STMT_VINFO_VECTORIZABLE(S) (S)->vectorizable
707 #define STMT_VINFO_DATA_REF(S) (S)->data_ref_info
708 #define STMT_VINFO_GATHER_SCATTER_P(S) (S)->gather_scatter_p
709 #define STMT_VINFO_STRIDED_P(S) (S)->strided_p
710 #define STMT_VINFO_MEMORY_ACCESS_TYPE(S) (S)->memory_access_type
711 #define STMT_VINFO_SIMD_LANE_ACCESS_P(S) (S)->simd_lane_access_p
712 #define STMT_VINFO_VEC_REDUCTION_TYPE(S) (S)->v_reduc_type
714 #define STMT_VINFO_DR_BASE_ADDRESS(S) (S)->dr_base_address
715 #define STMT_VINFO_DR_INIT(S) (S)->dr_init
716 #define STMT_VINFO_DR_OFFSET(S) (S)->dr_offset
717 #define STMT_VINFO_DR_STEP(S) (S)->dr_step
718 #define STMT_VINFO_DR_ALIGNED_TO(S) (S)->dr_aligned_to
720 #define STMT_VINFO_IN_PATTERN_P(S) (S)->in_pattern_p
721 #define STMT_VINFO_RELATED_STMT(S) (S)->related_stmt
722 #define STMT_VINFO_PATTERN_DEF_SEQ(S) (S)->pattern_def_seq
723 #define STMT_VINFO_SAME_ALIGN_REFS(S) (S)->same_align_refs
724 #define STMT_VINFO_SIMD_CLONE_INFO(S) (S)->simd_clone_info
725 #define STMT_VINFO_DEF_TYPE(S) (S)->def_type
726 #define STMT_VINFO_GROUP_FIRST_ELEMENT(S) (S)->first_element
727 #define STMT_VINFO_GROUP_NEXT_ELEMENT(S) (S)->next_element
728 #define STMT_VINFO_GROUP_SIZE(S) (S)->size
729 #define STMT_VINFO_GROUP_STORE_COUNT(S) (S)->store_count
730 #define STMT_VINFO_GROUP_GAP(S) (S)->gap
731 #define STMT_VINFO_GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
732 #define STMT_VINFO_GROUPED_ACCESS(S) ((S)->first_element != NULL && (S)->data_ref_info)
733 #define STMT_VINFO_LOOP_PHI_EVOLUTION_BASE_UNCHANGED(S) (S)->loop_phi_evolution_base_unchanged
734 #define STMT_VINFO_LOOP_PHI_EVOLUTION_PART(S) (S)->loop_phi_evolution_part
735 #define STMT_VINFO_MIN_NEG_DIST(S) (S)->min_neg_dist
736 #define STMT_VINFO_NUM_SLP_USES(S) (S)->num_slp_uses
738 #define GROUP_FIRST_ELEMENT(S) (S)->first_element
739 #define GROUP_NEXT_ELEMENT(S) (S)->next_element
740 #define GROUP_SIZE(S) (S)->size
741 #define GROUP_STORE_COUNT(S) (S)->store_count
742 #define GROUP_GAP(S) (S)->gap
743 #define GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
745 #define STMT_VINFO_RELEVANT_P(S) ((S)->relevant != vect_unused_in_scope)
747 #define HYBRID_SLP_STMT(S) ((S)->slp_type == hybrid)
748 #define PURE_SLP_STMT(S) ((S)->slp_type == pure_slp)
749 #define STMT_SLP_TYPE(S) (S)->slp_type
751 struct dataref_aux {
752 int misalignment;
753 /* If true the alignment of base_decl needs to be increased. */
754 bool base_misaligned;
755 /* If true we know the base is at least vector element alignment aligned. */
756 bool base_element_aligned;
757 tree base_decl;
760 #define DR_VECT_AUX(dr) ((dataref_aux *)(dr)->aux)
762 #define VECT_MAX_COST 1000
764 /* The maximum number of intermediate steps required in multi-step type
765 conversion. */
766 #define MAX_INTERM_CVT_STEPS 3
768 /* The maximum vectorization factor supported by any target (V64QI). */
769 #define MAX_VECTORIZATION_FACTOR 64
771 extern vec<stmt_vec_info> stmt_vec_info_vec;
773 void init_stmt_vec_info_vec (void);
774 void free_stmt_vec_info_vec (void);
776 /* Return a stmt_vec_info corresponding to STMT. */
778 static inline stmt_vec_info
779 vinfo_for_stmt (gimple *stmt)
781 unsigned int uid = gimple_uid (stmt);
782 if (uid == 0)
783 return NULL;
785 return stmt_vec_info_vec[uid - 1];
788 /* Set vectorizer information INFO for STMT. */
790 static inline void
791 set_vinfo_for_stmt (gimple *stmt, stmt_vec_info info)
793 unsigned int uid = gimple_uid (stmt);
794 if (uid == 0)
796 gcc_checking_assert (info);
797 uid = stmt_vec_info_vec.length () + 1;
798 gimple_set_uid (stmt, uid);
799 stmt_vec_info_vec.safe_push (info);
801 else
803 gcc_checking_assert (info == NULL);
804 stmt_vec_info_vec[uid - 1] = info;
808 /* Return the earlier statement between STMT1 and STMT2. */
810 static inline gimple *
811 get_earlier_stmt (gimple *stmt1, gimple *stmt2)
813 unsigned int uid1, uid2;
815 if (stmt1 == NULL)
816 return stmt2;
818 if (stmt2 == NULL)
819 return stmt1;
821 uid1 = gimple_uid (stmt1);
822 uid2 = gimple_uid (stmt2);
824 if (uid1 == 0 || uid2 == 0)
825 return NULL;
827 gcc_checking_assert (uid1 <= stmt_vec_info_vec.length ()
828 && uid2 <= stmt_vec_info_vec.length ());
830 if (uid1 < uid2)
831 return stmt1;
832 else
833 return stmt2;
836 /* Return the later statement between STMT1 and STMT2. */
838 static inline gimple *
839 get_later_stmt (gimple *stmt1, gimple *stmt2)
841 unsigned int uid1, uid2;
843 if (stmt1 == NULL)
844 return stmt2;
846 if (stmt2 == NULL)
847 return stmt1;
849 uid1 = gimple_uid (stmt1);
850 uid2 = gimple_uid (stmt2);
852 if (uid1 == 0 || uid2 == 0)
853 return NULL;
855 gcc_assert (uid1 <= stmt_vec_info_vec.length ());
856 gcc_assert (uid2 <= stmt_vec_info_vec.length ());
858 if (uid1 > uid2)
859 return stmt1;
860 else
861 return stmt2;
864 /* Return TRUE if a statement represented by STMT_INFO is a part of a
865 pattern. */
867 static inline bool
868 is_pattern_stmt_p (stmt_vec_info stmt_info)
870 gimple *related_stmt;
871 stmt_vec_info related_stmt_info;
873 related_stmt = STMT_VINFO_RELATED_STMT (stmt_info);
874 if (related_stmt
875 && (related_stmt_info = vinfo_for_stmt (related_stmt))
876 && STMT_VINFO_IN_PATTERN_P (related_stmt_info))
877 return true;
879 return false;
882 /* Return true if BB is a loop header. */
884 static inline bool
885 is_loop_header_bb_p (basic_block bb)
887 if (bb == (bb->loop_father)->header)
888 return true;
889 gcc_checking_assert (EDGE_COUNT (bb->preds) == 1);
890 return false;
893 /* Return pow2 (X). */
895 static inline int
896 vect_pow2 (int x)
898 int i, res = 1;
900 for (i = 0; i < x; i++)
901 res *= 2;
903 return res;
906 /* Alias targetm.vectorize.builtin_vectorization_cost. */
908 static inline int
909 builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
910 tree vectype, int misalign)
912 return targetm.vectorize.builtin_vectorization_cost (type_of_cost,
913 vectype, misalign);
916 /* Get cost by calling cost target builtin. */
918 static inline
919 int vect_get_stmt_cost (enum vect_cost_for_stmt type_of_cost)
921 return builtin_vectorization_cost (type_of_cost, NULL, 0);
924 /* Alias targetm.vectorize.init_cost. */
926 static inline void *
927 init_cost (struct loop *loop_info)
929 return targetm.vectorize.init_cost (loop_info);
932 /* Alias targetm.vectorize.add_stmt_cost. */
934 static inline unsigned
935 add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
936 stmt_vec_info stmt_info, int misalign,
937 enum vect_cost_model_location where)
939 return targetm.vectorize.add_stmt_cost (data, count, kind,
940 stmt_info, misalign, where);
943 /* Alias targetm.vectorize.finish_cost. */
945 static inline void
946 finish_cost (void *data, unsigned *prologue_cost,
947 unsigned *body_cost, unsigned *epilogue_cost)
949 targetm.vectorize.finish_cost (data, prologue_cost, body_cost, epilogue_cost);
952 /* Alias targetm.vectorize.destroy_cost_data. */
954 static inline void
955 destroy_cost_data (void *data)
957 targetm.vectorize.destroy_cost_data (data);
960 /*-----------------------------------------------------------------*/
961 /* Info on data references alignment. */
962 /*-----------------------------------------------------------------*/
963 inline void
964 set_dr_misalignment (struct data_reference *dr, int val)
966 dataref_aux *data_aux = DR_VECT_AUX (dr);
968 if (!data_aux)
970 data_aux = XCNEW (dataref_aux);
971 dr->aux = data_aux;
974 data_aux->misalignment = val;
977 inline int
978 dr_misalignment (struct data_reference *dr)
980 return DR_VECT_AUX (dr)->misalignment;
983 /* Reflects actual alignment of first access in the vectorized loop,
984 taking into account peeling/versioning if applied. */
985 #define DR_MISALIGNMENT(DR) dr_misalignment (DR)
986 #define SET_DR_MISALIGNMENT(DR, VAL) set_dr_misalignment (DR, VAL)
988 /* Return TRUE if the data access is aligned, and FALSE otherwise. */
990 static inline bool
991 aligned_access_p (struct data_reference *data_ref_info)
993 return (DR_MISALIGNMENT (data_ref_info) == 0);
996 /* Return TRUE if the alignment of the data access is known, and FALSE
997 otherwise. */
999 static inline bool
1000 known_alignment_for_access_p (struct data_reference *data_ref_info)
1002 return (DR_MISALIGNMENT (data_ref_info) != -1);
1006 /* Return true if the vect cost model is unlimited. */
1007 static inline bool
1008 unlimited_cost_model (loop_p loop)
1010 if (loop != NULL && loop->force_vectorize
1011 && flag_simd_cost_model != VECT_COST_MODEL_DEFAULT)
1012 return flag_simd_cost_model == VECT_COST_MODEL_UNLIMITED;
1013 return (flag_vect_cost_model == VECT_COST_MODEL_UNLIMITED);
1016 /* Source location */
1017 extern source_location vect_location;
1019 /*-----------------------------------------------------------------*/
1020 /* Function prototypes. */
1021 /*-----------------------------------------------------------------*/
1023 /* Simple loop peeling and versioning utilities for vectorizer's purposes -
1024 in tree-vect-loop-manip.c. */
1025 extern void slpeel_make_loop_iterate_ntimes (struct loop *, tree);
1026 extern bool slpeel_can_duplicate_loop_p (const struct loop *, const_edge);
1027 struct loop *slpeel_tree_duplicate_loop_to_edge_cfg (struct loop *,
1028 struct loop *, edge);
1029 extern void vect_loop_versioning (loop_vec_info, unsigned int, bool);
1030 extern void vect_do_peeling_for_loop_bound (loop_vec_info, tree, tree,
1031 unsigned int, bool);
1032 extern void vect_do_peeling_for_alignment (loop_vec_info, tree,
1033 unsigned int, bool);
1034 extern source_location find_loop_location (struct loop *);
1035 extern bool vect_can_advance_ivs_p (loop_vec_info);
1037 /* In tree-vect-stmts.c. */
1038 extern unsigned int current_vector_size;
1039 extern tree get_vectype_for_scalar_type (tree);
1040 extern tree get_mask_type_for_scalar_type (tree);
1041 extern tree get_same_sized_vectype (tree, tree);
1042 extern bool vect_is_simple_use (tree, vec_info *, gimple **,
1043 enum vect_def_type *);
1044 extern bool vect_is_simple_use (tree, vec_info *, gimple **,
1045 enum vect_def_type *, tree *);
1046 extern bool supportable_widening_operation (enum tree_code, gimple *, tree,
1047 tree, enum tree_code *,
1048 enum tree_code *, int *,
1049 vec<tree> *);
1050 extern bool supportable_narrowing_operation (enum tree_code, tree, tree,
1051 enum tree_code *,
1052 int *, vec<tree> *);
1053 extern stmt_vec_info new_stmt_vec_info (gimple *stmt, vec_info *);
1054 extern void free_stmt_vec_info (gimple *stmt);
1055 extern void vect_model_simple_cost (stmt_vec_info, int, enum vect_def_type *,
1056 stmt_vector_for_cost *,
1057 stmt_vector_for_cost *);
1058 extern void vect_model_store_cost (stmt_vec_info, int, vect_memory_access_type,
1059 enum vect_def_type, slp_tree,
1060 stmt_vector_for_cost *,
1061 stmt_vector_for_cost *);
1062 extern void vect_model_load_cost (stmt_vec_info, int, vect_memory_access_type,
1063 slp_tree, stmt_vector_for_cost *,
1064 stmt_vector_for_cost *);
1065 extern unsigned record_stmt_cost (stmt_vector_for_cost *, int,
1066 enum vect_cost_for_stmt, stmt_vec_info,
1067 int, enum vect_cost_model_location);
1068 extern void vect_finish_stmt_generation (gimple *, gimple *,
1069 gimple_stmt_iterator *);
1070 extern bool vect_mark_stmts_to_be_vectorized (loop_vec_info);
1071 extern tree vect_get_vec_def_for_operand_1 (gimple *, enum vect_def_type);
1072 extern tree vect_get_vec_def_for_operand (tree, gimple *, tree = NULL);
1073 extern tree vect_init_vector (gimple *, tree, tree,
1074 gimple_stmt_iterator *);
1075 extern tree vect_get_vec_def_for_stmt_copy (enum vect_def_type, tree);
1076 extern bool vect_transform_stmt (gimple *, gimple_stmt_iterator *,
1077 bool *, slp_tree, slp_instance);
1078 extern void vect_remove_stores (gimple *);
1079 extern bool vect_analyze_stmt (gimple *, bool *, slp_tree);
1080 extern bool vectorizable_condition (gimple *, gimple_stmt_iterator *,
1081 gimple **, tree, int, slp_tree);
1082 extern void vect_get_load_cost (struct data_reference *, int, bool,
1083 unsigned int *, unsigned int *,
1084 stmt_vector_for_cost *,
1085 stmt_vector_for_cost *, bool);
1086 extern void vect_get_store_cost (struct data_reference *, int,
1087 unsigned int *, stmt_vector_for_cost *);
1088 extern bool vect_supportable_shift (enum tree_code, tree);
1089 extern void vect_get_vec_defs (tree, tree, gimple *, vec<tree> *,
1090 vec<tree> *, slp_tree, int);
1091 extern tree vect_gen_perm_mask_any (tree, const unsigned char *);
1092 extern tree vect_gen_perm_mask_checked (tree, const unsigned char *);
1093 extern void optimize_mask_stores (struct loop*);
1095 /* In tree-vect-data-refs.c. */
1096 extern bool vect_can_force_dr_alignment_p (const_tree, unsigned int);
1097 extern enum dr_alignment_support vect_supportable_dr_alignment
1098 (struct data_reference *, bool);
1099 extern tree vect_get_smallest_scalar_type (gimple *, HOST_WIDE_INT *,
1100 HOST_WIDE_INT *);
1101 extern bool vect_analyze_data_ref_dependences (loop_vec_info, int *);
1102 extern bool vect_slp_analyze_instance_dependence (slp_instance);
1103 extern bool vect_enhance_data_refs_alignment (loop_vec_info);
1104 extern bool vect_analyze_data_refs_alignment (loop_vec_info);
1105 extern bool vect_verify_datarefs_alignment (loop_vec_info);
1106 extern bool vect_slp_analyze_and_verify_instance_alignment (slp_instance);
1107 extern bool vect_analyze_data_ref_accesses (vec_info *);
1108 extern bool vect_prune_runtime_alias_test_list (loop_vec_info);
1109 extern bool vect_check_gather_scatter (gimple *, loop_vec_info,
1110 gather_scatter_info *);
1111 extern bool vect_analyze_data_refs (vec_info *, int *);
1112 extern tree vect_create_data_ref_ptr (gimple *, tree, struct loop *, tree,
1113 tree *, gimple_stmt_iterator *,
1114 gimple **, bool, bool *,
1115 tree = NULL_TREE);
1116 extern tree bump_vector_ptr (tree, gimple *, gimple_stmt_iterator *, gimple *,
1117 tree);
1118 extern tree vect_create_destination_var (tree, tree);
1119 extern bool vect_grouped_store_supported (tree, unsigned HOST_WIDE_INT);
1120 extern bool vect_store_lanes_supported (tree, unsigned HOST_WIDE_INT);
1121 extern bool vect_grouped_load_supported (tree, bool, unsigned HOST_WIDE_INT);
1122 extern bool vect_load_lanes_supported (tree, unsigned HOST_WIDE_INT);
1123 extern void vect_permute_store_chain (vec<tree> ,unsigned int, gimple *,
1124 gimple_stmt_iterator *, vec<tree> *);
1125 extern tree vect_setup_realignment (gimple *, gimple_stmt_iterator *, tree *,
1126 enum dr_alignment_support, tree,
1127 struct loop **);
1128 extern void vect_transform_grouped_load (gimple *, vec<tree> , int,
1129 gimple_stmt_iterator *);
1130 extern void vect_record_grouped_load_vectors (gimple *, vec<tree> );
1131 extern tree vect_get_new_vect_var (tree, enum vect_var_kind, const char *);
1132 extern tree vect_get_new_ssa_name (tree, enum vect_var_kind,
1133 const char * = NULL);
1134 extern tree vect_create_addr_base_for_vector_ref (gimple *, gimple_seq *,
1135 tree, struct loop *,
1136 tree = NULL_TREE);
1138 /* In tree-vect-loop.c. */
1139 /* FORNOW: Used in tree-parloops.c. */
1140 extern void destroy_loop_vec_info (loop_vec_info, bool);
1141 extern gimple *vect_force_simple_reduction (loop_vec_info, gimple *, bool,
1142 bool *, bool);
1143 /* Drive for loop analysis stage. */
1144 extern loop_vec_info vect_analyze_loop (struct loop *);
1145 /* Drive for loop transformation stage. */
1146 extern void vect_transform_loop (loop_vec_info);
1147 extern loop_vec_info vect_analyze_loop_form (struct loop *);
1148 extern bool vectorizable_live_operation (gimple *, gimple_stmt_iterator *,
1149 slp_tree, int, gimple **);
1150 extern bool vectorizable_reduction (gimple *, gimple_stmt_iterator *,
1151 gimple **, slp_tree);
1152 extern bool vectorizable_induction (gimple *, gimple_stmt_iterator *, gimple **);
1153 extern tree get_initial_def_for_reduction (gimple *, tree, tree *);
1154 extern int vect_min_worthwhile_factor (enum tree_code);
1155 extern int vect_get_known_peeling_cost (loop_vec_info, int, int *,
1156 stmt_vector_for_cost *,
1157 stmt_vector_for_cost *,
1158 stmt_vector_for_cost *);
1160 /* In tree-vect-slp.c. */
1161 extern void vect_free_slp_instance (slp_instance);
1162 extern bool vect_transform_slp_perm_load (slp_tree, vec<tree> ,
1163 gimple_stmt_iterator *, int,
1164 slp_instance, bool);
1165 extern bool vect_slp_analyze_operations (vec<slp_instance> slp_instances,
1166 void *);
1167 extern bool vect_schedule_slp (vec_info *);
1168 extern bool vect_analyze_slp (vec_info *, unsigned);
1169 extern bool vect_make_slp_decision (loop_vec_info);
1170 extern void vect_detect_hybrid_slp (loop_vec_info);
1171 extern void vect_get_slp_defs (vec<tree> , slp_tree,
1172 vec<vec<tree> > *, int);
1173 extern bool vect_slp_bb (basic_block);
1174 extern gimple *vect_find_last_scalar_stmt_in_slp (slp_tree);
1175 extern bool is_simple_and_all_uses_invariant (gimple *, loop_vec_info);
1177 /* In tree-vect-patterns.c. */
1178 /* Pattern recognition functions.
1179 Additional pattern recognition functions can (and will) be added
1180 in the future. */
1181 typedef gimple *(* vect_recog_func_ptr) (vec<gimple *> *, tree *, tree *);
1182 #define NUM_PATTERNS 14
1183 void vect_pattern_recog (vec_info *);
1185 /* In tree-vectorizer.c. */
1186 unsigned vectorize_loops (void);
1187 void vect_destroy_datarefs (vec_info *);
1188 bool vect_stmt_in_region_p (vec_info *, gimple *);
1189 void vect_free_loop_info_assumptions (struct loop *);
1191 #endif /* GCC_TREE_VECTORIZER_H */