Small ChangeLog tweak.
[official-gcc.git] / gcc / tree-vectorizer.h
blobeb47bd4f7ef6f0d692618779265fe4cb5f105ff7
1 /* Vectorizer
2 Copyright (C) 2003-2017 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,
69 CONST_COND_REDUCTION
72 #define VECTORIZABLE_CYCLE_DEF(D) (((D) == vect_reduction_def) \
73 || ((D) == vect_double_reduction_def) \
74 || ((D) == vect_nested_cycle))
76 /* Structure to encapsulate information about a group of like
77 instructions to be presented to the target cost model. */
78 struct stmt_info_for_cost {
79 int count;
80 enum vect_cost_for_stmt kind;
81 gimple *stmt;
82 int misalign;
85 typedef vec<stmt_info_for_cost> stmt_vector_for_cost;
87 /************************************************************************
88 SLP
89 ************************************************************************/
90 typedef struct _slp_tree *slp_tree;
92 /* A computation tree of an SLP instance. Each node corresponds to a group of
93 stmts to be packed in a SIMD stmt. */
94 struct _slp_tree {
95 /* Nodes that contain def-stmts of this node statements operands. */
96 vec<slp_tree> children;
97 /* A group of scalar stmts to be vectorized together. */
98 vec<gimple *> stmts;
99 /* Load permutation relative to the stores, NULL if there is no
100 permutation. */
101 vec<unsigned> load_permutation;
102 /* Vectorized stmt/s. */
103 vec<gimple *> vec_stmts;
104 /* Number of vector stmts that are created to replace the group of scalar
105 stmts. It is calculated during the transformation phase as the number of
106 scalar elements in one scalar iteration (GROUP_SIZE) multiplied by VF
107 divided by vector size. */
108 unsigned int vec_stmts_size;
109 /* Whether the scalar computations use two different operators. */
110 bool two_operators;
111 /* The DEF type of this node. */
112 enum vect_def_type def_type;
116 /* SLP instance is a sequence of stmts in a loop that can be packed into
117 SIMD stmts. */
118 typedef struct _slp_instance {
119 /* The root of SLP tree. */
120 slp_tree root;
122 /* Size of groups of scalar stmts that will be replaced by SIMD stmt/s. */
123 unsigned int group_size;
125 /* The unrolling factor required to vectorized this SLP instance. */
126 unsigned int unrolling_factor;
128 /* The group of nodes that contain loads of this SLP instance. */
129 vec<slp_tree> loads;
130 } *slp_instance;
133 /* Access Functions. */
134 #define SLP_INSTANCE_TREE(S) (S)->root
135 #define SLP_INSTANCE_GROUP_SIZE(S) (S)->group_size
136 #define SLP_INSTANCE_UNROLLING_FACTOR(S) (S)->unrolling_factor
137 #define SLP_INSTANCE_LOADS(S) (S)->loads
139 #define SLP_TREE_CHILDREN(S) (S)->children
140 #define SLP_TREE_SCALAR_STMTS(S) (S)->stmts
141 #define SLP_TREE_VEC_STMTS(S) (S)->vec_stmts
142 #define SLP_TREE_NUMBER_OF_VEC_STMTS(S) (S)->vec_stmts_size
143 #define SLP_TREE_LOAD_PERMUTATION(S) (S)->load_permutation
144 #define SLP_TREE_TWO_OPERATORS(S) (S)->two_operators
145 #define SLP_TREE_DEF_TYPE(S) (S)->def_type
149 /* Vectorizer state common between loop and basic-block vectorization. */
150 struct vec_info {
151 enum { bb, loop } kind;
153 /* All SLP instances. */
154 vec<slp_instance> slp_instances;
156 /* All data references. */
157 vec<data_reference_p> datarefs;
159 /* All data dependences. */
160 vec<ddr_p> ddrs;
162 /* All interleaving chains of stores, represented by the first
163 stmt in the chain. */
164 vec<gimple *> grouped_stores;
166 /* Cost data used by the target cost model. */
167 void *target_cost_data;
170 struct _loop_vec_info;
171 struct _bb_vec_info;
173 template<>
174 template<>
175 inline bool
176 is_a_helper <_loop_vec_info *>::test (vec_info *i)
178 return i->kind == vec_info::loop;
181 template<>
182 template<>
183 inline bool
184 is_a_helper <_bb_vec_info *>::test (vec_info *i)
186 return i->kind == vec_info::bb;
190 /*-----------------------------------------------------------------*/
191 /* Info on vectorized loops. */
192 /*-----------------------------------------------------------------*/
193 typedef struct _loop_vec_info : public vec_info {
195 /* The loop to which this info struct refers to. */
196 struct loop *loop;
198 /* The loop basic blocks. */
199 basic_block *bbs;
201 /* Number of latch executions. */
202 tree num_itersm1;
203 /* Number of iterations. */
204 tree num_iters;
205 /* Number of iterations of the original loop. */
206 tree num_iters_unchanged;
207 /* Condition under which this loop is analyzed and versioned. */
208 tree num_iters_assumptions;
210 /* Threshold of number of iterations below which vectorzation will not be
211 performed. It is calculated from MIN_PROFITABLE_ITERS and
212 PARAM_MIN_VECT_LOOP_BOUND. */
213 unsigned int th;
215 /* Unrolling factor */
216 int vectorization_factor;
218 /* Unknown DRs according to which loop was peeled. */
219 struct data_reference *unaligned_dr;
221 /* peeling_for_alignment indicates whether peeling for alignment will take
222 place, and what the peeling factor should be:
223 peeling_for_alignment = X means:
224 If X=0: Peeling for alignment will not be applied.
225 If X>0: Peel first X iterations.
226 If X=-1: Generate a runtime test to calculate the number of iterations
227 to be peeled, using the dataref recorded in the field
228 unaligned_dr. */
229 int peeling_for_alignment;
231 /* The mask used to check the alignment of pointers or arrays. */
232 int ptr_mask;
234 /* The loop nest in which the data dependences are computed. */
235 vec<loop_p> loop_nest;
237 /* Data Dependence Relations defining address ranges that are candidates
238 for a run-time aliasing check. */
239 vec<ddr_p> may_alias_ddrs;
241 /* Data Dependence Relations defining address ranges together with segment
242 lengths from which the run-time aliasing check is built. */
243 vec<dr_with_seg_len_pair_t> comp_alias_ddrs;
245 /* Statements in the loop that have data references that are candidates for a
246 runtime (loop versioning) misalignment check. */
247 vec<gimple *> may_misalign_stmts;
249 /* Reduction cycles detected in the loop. Used in loop-aware SLP. */
250 vec<gimple *> reductions;
252 /* All reduction chains in the loop, represented by the first
253 stmt in the chain. */
254 vec<gimple *> reduction_chains;
256 /* Cost vector for a single scalar iteration. */
257 vec<stmt_info_for_cost> scalar_cost_vec;
259 /* The unrolling factor needed to SLP the loop. In case of that pure SLP is
260 applied to the loop, i.e., no unrolling is needed, this is 1. */
261 unsigned slp_unrolling_factor;
263 /* Cost of a single scalar iteration. */
264 int single_scalar_iteration_cost;
266 /* Is the loop vectorizable? */
267 bool vectorizable;
269 /* When we have grouped data accesses with gaps, we may introduce invalid
270 memory accesses. We peel the last iteration of the loop to prevent
271 this. */
272 bool peeling_for_gaps;
274 /* When the number of iterations is not a multiple of the vector size
275 we need to peel off iterations at the end to form an epilogue loop. */
276 bool peeling_for_niter;
278 /* Reductions are canonicalized so that the last operand is the reduction
279 operand. If this places a constant into RHS1, this decanonicalizes
280 GIMPLE for other phases, so we must track when this has occurred and
281 fix it up. */
282 bool operands_swapped;
284 /* True if there are no loop carried data dependencies in the loop.
285 If loop->safelen <= 1, then this is always true, either the loop
286 didn't have any loop carried data dependencies, or the loop is being
287 vectorized guarded with some runtime alias checks, or couldn't
288 be vectorized at all, but then this field shouldn't be used.
289 For loop->safelen >= 2, the user has asserted that there are no
290 backward dependencies, but there still could be loop carried forward
291 dependencies in such loops. This flag will be false if normal
292 vectorizer data dependency analysis would fail or require versioning
293 for alias, but because of loop->safelen >= 2 it has been vectorized
294 even without versioning for alias. E.g. in:
295 #pragma omp simd
296 for (int i = 0; i < m; i++)
297 a[i] = a[i + k] * c;
298 (or #pragma simd or #pragma ivdep) we can vectorize this and it will
299 DTRT even for k > 0 && k < m, but without safelen we would not
300 vectorize this, so this field would be false. */
301 bool no_data_dependencies;
303 /* Mark loops having masked stores. */
304 bool has_mask_store;
306 /* If if-conversion versioned this loop before conversion, this is the
307 loop version without if-conversion. */
308 struct loop *scalar_loop;
310 /* For loops being epilogues of already vectorized loops
311 this points to the original vectorized loop. Otherwise NULL. */
312 _loop_vec_info *orig_loop_info;
314 } *loop_vec_info;
316 /* Access Functions. */
317 #define LOOP_VINFO_LOOP(L) (L)->loop
318 #define LOOP_VINFO_BBS(L) (L)->bbs
319 #define LOOP_VINFO_NITERSM1(L) (L)->num_itersm1
320 #define LOOP_VINFO_NITERS(L) (L)->num_iters
321 /* Since LOOP_VINFO_NITERS and LOOP_VINFO_NITERSM1 can change after
322 prologue peeling retain total unchanged scalar loop iterations for
323 cost model. */
324 #define LOOP_VINFO_NITERS_UNCHANGED(L) (L)->num_iters_unchanged
325 #define LOOP_VINFO_NITERS_ASSUMPTIONS(L) (L)->num_iters_assumptions
326 #define LOOP_VINFO_COST_MODEL_THRESHOLD(L) (L)->th
327 #define LOOP_VINFO_VECTORIZABLE_P(L) (L)->vectorizable
328 #define LOOP_VINFO_VECT_FACTOR(L) (L)->vectorization_factor
329 #define LOOP_VINFO_PTR_MASK(L) (L)->ptr_mask
330 #define LOOP_VINFO_LOOP_NEST(L) (L)->loop_nest
331 #define LOOP_VINFO_DATAREFS(L) (L)->datarefs
332 #define LOOP_VINFO_DDRS(L) (L)->ddrs
333 #define LOOP_VINFO_INT_NITERS(L) (TREE_INT_CST_LOW ((L)->num_iters))
334 #define LOOP_VINFO_PEELING_FOR_ALIGNMENT(L) (L)->peeling_for_alignment
335 #define LOOP_VINFO_UNALIGNED_DR(L) (L)->unaligned_dr
336 #define LOOP_VINFO_MAY_MISALIGN_STMTS(L) (L)->may_misalign_stmts
337 #define LOOP_VINFO_MAY_ALIAS_DDRS(L) (L)->may_alias_ddrs
338 #define LOOP_VINFO_COMP_ALIAS_DDRS(L) (L)->comp_alias_ddrs
339 #define LOOP_VINFO_GROUPED_STORES(L) (L)->grouped_stores
340 #define LOOP_VINFO_SLP_INSTANCES(L) (L)->slp_instances
341 #define LOOP_VINFO_SLP_UNROLLING_FACTOR(L) (L)->slp_unrolling_factor
342 #define LOOP_VINFO_REDUCTIONS(L) (L)->reductions
343 #define LOOP_VINFO_REDUCTION_CHAINS(L) (L)->reduction_chains
344 #define LOOP_VINFO_TARGET_COST_DATA(L) (L)->target_cost_data
345 #define LOOP_VINFO_PEELING_FOR_GAPS(L) (L)->peeling_for_gaps
346 #define LOOP_VINFO_OPERANDS_SWAPPED(L) (L)->operands_swapped
347 #define LOOP_VINFO_PEELING_FOR_NITER(L) (L)->peeling_for_niter
348 #define LOOP_VINFO_NO_DATA_DEPENDENCIES(L) (L)->no_data_dependencies
349 #define LOOP_VINFO_SCALAR_LOOP(L) (L)->scalar_loop
350 #define LOOP_VINFO_HAS_MASK_STORE(L) (L)->has_mask_store
351 #define LOOP_VINFO_SCALAR_ITERATION_COST(L) (L)->scalar_cost_vec
352 #define LOOP_VINFO_SINGLE_SCALAR_ITERATION_COST(L) (L)->single_scalar_iteration_cost
353 #define LOOP_VINFO_ORIG_LOOP_INFO(L) (L)->orig_loop_info
355 #define LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT(L) \
356 ((L)->may_misalign_stmts.length () > 0)
357 #define LOOP_REQUIRES_VERSIONING_FOR_ALIAS(L) \
358 ((L)->may_alias_ddrs.length () > 0)
359 #define LOOP_REQUIRES_VERSIONING_FOR_NITERS(L) \
360 (LOOP_VINFO_NITERS_ASSUMPTIONS (L))
361 #define LOOP_REQUIRES_VERSIONING(L) \
362 (LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT (L) \
363 || LOOP_REQUIRES_VERSIONING_FOR_ALIAS (L) \
364 || LOOP_REQUIRES_VERSIONING_FOR_NITERS (L))
366 #define LOOP_VINFO_NITERS_KNOWN_P(L) \
367 (tree_fits_shwi_p ((L)->num_iters) && tree_to_shwi ((L)->num_iters) > 0)
369 #define LOOP_VINFO_EPILOGUE_P(L) \
370 (LOOP_VINFO_ORIG_LOOP_INFO (L) != NULL)
372 #define LOOP_VINFO_ORIG_VECT_FACTOR(L) \
373 (LOOP_VINFO_VECT_FACTOR (LOOP_VINFO_ORIG_LOOP_INFO (L)))
375 static inline loop_vec_info
376 loop_vec_info_for_loop (struct loop *loop)
378 return (loop_vec_info) loop->aux;
381 static inline bool
382 nested_in_vect_loop_p (struct loop *loop, gimple *stmt)
384 return (loop->inner
385 && (loop->inner == (gimple_bb (stmt))->loop_father));
388 typedef struct _bb_vec_info : public vec_info
390 basic_block bb;
391 gimple_stmt_iterator region_begin;
392 gimple_stmt_iterator region_end;
393 } *bb_vec_info;
395 #define BB_VINFO_BB(B) (B)->bb
396 #define BB_VINFO_GROUPED_STORES(B) (B)->grouped_stores
397 #define BB_VINFO_SLP_INSTANCES(B) (B)->slp_instances
398 #define BB_VINFO_DATAREFS(B) (B)->datarefs
399 #define BB_VINFO_DDRS(B) (B)->ddrs
400 #define BB_VINFO_TARGET_COST_DATA(B) (B)->target_cost_data
402 static inline bb_vec_info
403 vec_info_for_bb (basic_block bb)
405 return (bb_vec_info) bb->aux;
408 /*-----------------------------------------------------------------*/
409 /* Info on vectorized defs. */
410 /*-----------------------------------------------------------------*/
411 enum stmt_vec_info_type {
412 undef_vec_info_type = 0,
413 load_vec_info_type,
414 store_vec_info_type,
415 shift_vec_info_type,
416 op_vec_info_type,
417 call_vec_info_type,
418 call_simd_clone_vec_info_type,
419 assignment_vec_info_type,
420 condition_vec_info_type,
421 comparison_vec_info_type,
422 reduc_vec_info_type,
423 induc_vec_info_type,
424 type_promotion_vec_info_type,
425 type_demotion_vec_info_type,
426 type_conversion_vec_info_type,
427 loop_exit_ctrl_vec_info_type
430 /* Indicates whether/how a variable is used in the scope of loop/basic
431 block. */
432 enum vect_relevant {
433 vect_unused_in_scope = 0,
435 /* The def is only used outside the loop. */
436 vect_used_only_live,
437 /* The def is in the inner loop, and the use is in the outer loop, and the
438 use is a reduction stmt. */
439 vect_used_in_outer_by_reduction,
440 /* The def is in the inner loop, and the use is in the outer loop (and is
441 not part of reduction). */
442 vect_used_in_outer,
444 /* defs that feed computations that end up (only) in a reduction. These
445 defs may be used by non-reduction stmts, but eventually, any
446 computations/values that are affected by these defs are used to compute
447 a reduction (i.e. don't get stored to memory, for example). We use this
448 to identify computations that we can change the order in which they are
449 computed. */
450 vect_used_by_reduction,
452 vect_used_in_scope
455 /* The type of vectorization that can be applied to the stmt: regular loop-based
456 vectorization; pure SLP - the stmt is a part of SLP instances and does not
457 have uses outside SLP instances; or hybrid SLP and loop-based - the stmt is
458 a part of SLP instance and also must be loop-based vectorized, since it has
459 uses outside SLP sequences.
461 In the loop context the meanings of pure and hybrid SLP are slightly
462 different. By saying that pure SLP is applied to the loop, we mean that we
463 exploit only intra-iteration parallelism in the loop; i.e., the loop can be
464 vectorized without doing any conceptual unrolling, cause we don't pack
465 together stmts from different iterations, only within a single iteration.
466 Loop hybrid SLP means that we exploit both intra-iteration and
467 inter-iteration parallelism (e.g., number of elements in the vector is 4
468 and the slp-group-size is 2, in which case we don't have enough parallelism
469 within an iteration, so we obtain the rest of the parallelism from subsequent
470 iterations by unrolling the loop by 2). */
471 enum slp_vect_type {
472 loop_vect = 0,
473 pure_slp,
474 hybrid
477 /* Describes how we're going to vectorize an individual load or store,
478 or a group of loads or stores. */
479 enum vect_memory_access_type {
480 /* An access to an invariant address. This is used only for loads. */
481 VMAT_INVARIANT,
483 /* A simple contiguous access. */
484 VMAT_CONTIGUOUS,
486 /* A contiguous access that goes down in memory rather than up,
487 with no additional permutation. This is used only for stores
488 of invariants. */
489 VMAT_CONTIGUOUS_DOWN,
491 /* A simple contiguous access in which the elements need to be permuted
492 after loading or before storing. Only used for loop vectorization;
493 SLP uses separate permutes. */
494 VMAT_CONTIGUOUS_PERMUTE,
496 /* A simple contiguous access in which the elements need to be reversed
497 after loading or before storing. */
498 VMAT_CONTIGUOUS_REVERSE,
500 /* An access that uses IFN_LOAD_LANES or IFN_STORE_LANES. */
501 VMAT_LOAD_STORE_LANES,
503 /* An access in which each scalar element is loaded or stored
504 individually. */
505 VMAT_ELEMENTWISE,
507 /* A hybrid of VMAT_CONTIGUOUS and VMAT_ELEMENTWISE, used for grouped
508 SLP accesses. Each unrolled iteration uses a contiguous load
509 or store for the whole group, but the groups from separate iterations
510 are combined in the same way as for VMAT_ELEMENTWISE. */
511 VMAT_STRIDED_SLP,
513 /* The access uses gather loads or scatter stores. */
514 VMAT_GATHER_SCATTER
517 typedef struct data_reference *dr_p;
519 typedef struct _stmt_vec_info {
521 enum stmt_vec_info_type type;
523 /* Indicates whether this stmts is part of a computation whose result is
524 used outside the loop. */
525 bool live;
527 /* Stmt is part of some pattern (computation idiom) */
528 bool in_pattern_p;
530 /* Is this statement vectorizable or should it be skipped in (partial)
531 vectorization. */
532 bool vectorizable;
534 /* The stmt to which this info struct refers to. */
535 gimple *stmt;
537 /* The vec_info with respect to which STMT is vectorized. */
538 vec_info *vinfo;
540 /* The vector type to be used for the LHS of this statement. */
541 tree vectype;
543 /* The vectorized version of the stmt. */
544 gimple *vectorized_stmt;
547 /** The following is relevant only for stmts that contain a non-scalar
548 data-ref (array/pointer/struct access). A GIMPLE stmt is expected to have
549 at most one such data-ref. **/
551 /* Information about the data-ref (access function, etc),
552 relative to the inner-most containing loop. */
553 struct data_reference *data_ref_info;
555 /* Information about the data-ref relative to this loop
556 nest (the loop that is being considered for vectorization). */
557 tree dr_base_address;
558 tree dr_init;
559 tree dr_offset;
560 tree dr_step;
561 tree dr_aligned_to;
563 /* For loop PHI nodes, the base and evolution part of it. This makes sure
564 this information is still available in vect_update_ivs_after_vectorizer
565 where we may not be able to re-analyze the PHI nodes evolution as
566 peeling for the prologue loop can make it unanalyzable. The evolution
567 part is still correct after peeling, but the base may have changed from
568 the version here. */
569 tree loop_phi_evolution_base_unchanged;
570 tree loop_phi_evolution_part;
572 /* Used for various bookkeeping purposes, generally holding a pointer to
573 some other stmt S that is in some way "related" to this stmt.
574 Current use of this field is:
575 If this stmt is part of a pattern (i.e. the field 'in_pattern_p' is
576 true): S is the "pattern stmt" that represents (and replaces) the
577 sequence of stmts that constitutes the pattern. Similarly, the
578 related_stmt of the "pattern stmt" points back to this stmt (which is
579 the last stmt in the original sequence of stmts that constitutes the
580 pattern). */
581 gimple *related_stmt;
583 /* Used to keep a sequence of def stmts of a pattern stmt if such exists. */
584 gimple_seq pattern_def_seq;
586 /* List of datarefs that are known to have the same alignment as the dataref
587 of this stmt. */
588 vec<dr_p> same_align_refs;
590 /* Selected SIMD clone's function info. First vector element
591 is SIMD clone's function decl, followed by a pair of trees (base + step)
592 for linear arguments (pair of NULLs for other arguments). */
593 vec<tree> simd_clone_info;
595 /* Classify the def of this stmt. */
596 enum vect_def_type def_type;
598 /* Whether the stmt is SLPed, loop-based vectorized, or both. */
599 enum slp_vect_type slp_type;
601 /* Interleaving and reduction chains info. */
602 /* First element in the group. */
603 gimple *first_element;
604 /* Pointer to the next element in the group. */
605 gimple *next_element;
606 /* For data-refs, in case that two or more stmts share data-ref, this is the
607 pointer to the previously detected stmt with the same dr. */
608 gimple *same_dr_stmt;
609 /* The size of the group. */
610 unsigned int size;
611 /* For stores, number of stores from this group seen. We vectorize the last
612 one. */
613 unsigned int store_count;
614 /* For loads only, the gap from the previous load. For consecutive loads, GAP
615 is 1. */
616 unsigned int gap;
618 /* The minimum negative dependence distance this stmt participates in
619 or zero if none. */
620 unsigned int min_neg_dist;
622 /* Not all stmts in the loop need to be vectorized. e.g, the increment
623 of the loop induction variable and computation of array indexes. relevant
624 indicates whether the stmt needs to be vectorized. */
625 enum vect_relevant relevant;
627 /* For loads if this is a gather, for stores if this is a scatter. */
628 bool gather_scatter_p;
630 /* True if this is an access with loop-invariant stride. */
631 bool strided_p;
633 /* For both loads and stores. */
634 bool simd_lane_access_p;
636 /* Classifies how the load or store is going to be implemented
637 for loop vectorization. */
638 vect_memory_access_type memory_access_type;
640 /* For reduction loops, this is the type of reduction. */
641 enum vect_reduction_type v_reduc_type;
643 /* For CONST_COND_REDUCTION, record the reduc code. */
644 enum tree_code const_cond_reduc_code;
646 /* The number of scalar stmt references from active SLP instances. */
647 unsigned int num_slp_uses;
648 } *stmt_vec_info;
650 /* Information about a gather/scatter call. */
651 struct gather_scatter_info {
652 /* The FUNCTION_DECL for the built-in gather/scatter function. */
653 tree decl;
655 /* The loop-invariant base value. */
656 tree base;
658 /* The original scalar offset, which is a non-loop-invariant SSA_NAME. */
659 tree offset;
661 /* Each offset element should be multiplied by this amount before
662 being added to the base. */
663 int scale;
665 /* The definition type for the vectorized offset. */
666 enum vect_def_type offset_dt;
668 /* The type of the vectorized offset. */
669 tree offset_vectype;
672 /* Access Functions. */
673 #define STMT_VINFO_TYPE(S) (S)->type
674 #define STMT_VINFO_STMT(S) (S)->stmt
675 inline loop_vec_info
676 STMT_VINFO_LOOP_VINFO (stmt_vec_info stmt_vinfo)
678 if (loop_vec_info loop_vinfo = dyn_cast <loop_vec_info> (stmt_vinfo->vinfo))
679 return loop_vinfo;
680 return NULL;
682 inline bb_vec_info
683 STMT_VINFO_BB_VINFO (stmt_vec_info stmt_vinfo)
685 if (bb_vec_info bb_vinfo = dyn_cast <bb_vec_info> (stmt_vinfo->vinfo))
686 return bb_vinfo;
687 return NULL;
689 #define STMT_VINFO_RELEVANT(S) (S)->relevant
690 #define STMT_VINFO_LIVE_P(S) (S)->live
691 #define STMT_VINFO_VECTYPE(S) (S)->vectype
692 #define STMT_VINFO_VEC_STMT(S) (S)->vectorized_stmt
693 #define STMT_VINFO_VECTORIZABLE(S) (S)->vectorizable
694 #define STMT_VINFO_DATA_REF(S) (S)->data_ref_info
695 #define STMT_VINFO_GATHER_SCATTER_P(S) (S)->gather_scatter_p
696 #define STMT_VINFO_STRIDED_P(S) (S)->strided_p
697 #define STMT_VINFO_MEMORY_ACCESS_TYPE(S) (S)->memory_access_type
698 #define STMT_VINFO_SIMD_LANE_ACCESS_P(S) (S)->simd_lane_access_p
699 #define STMT_VINFO_VEC_REDUCTION_TYPE(S) (S)->v_reduc_type
700 #define STMT_VINFO_VEC_CONST_COND_REDUC_CODE(S) (S)->const_cond_reduc_code
702 #define STMT_VINFO_DR_BASE_ADDRESS(S) (S)->dr_base_address
703 #define STMT_VINFO_DR_INIT(S) (S)->dr_init
704 #define STMT_VINFO_DR_OFFSET(S) (S)->dr_offset
705 #define STMT_VINFO_DR_STEP(S) (S)->dr_step
706 #define STMT_VINFO_DR_ALIGNED_TO(S) (S)->dr_aligned_to
708 #define STMT_VINFO_IN_PATTERN_P(S) (S)->in_pattern_p
709 #define STMT_VINFO_RELATED_STMT(S) (S)->related_stmt
710 #define STMT_VINFO_PATTERN_DEF_SEQ(S) (S)->pattern_def_seq
711 #define STMT_VINFO_SAME_ALIGN_REFS(S) (S)->same_align_refs
712 #define STMT_VINFO_SIMD_CLONE_INFO(S) (S)->simd_clone_info
713 #define STMT_VINFO_DEF_TYPE(S) (S)->def_type
714 #define STMT_VINFO_GROUP_FIRST_ELEMENT(S) (S)->first_element
715 #define STMT_VINFO_GROUP_NEXT_ELEMENT(S) (S)->next_element
716 #define STMT_VINFO_GROUP_SIZE(S) (S)->size
717 #define STMT_VINFO_GROUP_STORE_COUNT(S) (S)->store_count
718 #define STMT_VINFO_GROUP_GAP(S) (S)->gap
719 #define STMT_VINFO_GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
720 #define STMT_VINFO_GROUPED_ACCESS(S) ((S)->first_element != NULL && (S)->data_ref_info)
721 #define STMT_VINFO_LOOP_PHI_EVOLUTION_BASE_UNCHANGED(S) (S)->loop_phi_evolution_base_unchanged
722 #define STMT_VINFO_LOOP_PHI_EVOLUTION_PART(S) (S)->loop_phi_evolution_part
723 #define STMT_VINFO_MIN_NEG_DIST(S) (S)->min_neg_dist
724 #define STMT_VINFO_NUM_SLP_USES(S) (S)->num_slp_uses
726 #define GROUP_FIRST_ELEMENT(S) (S)->first_element
727 #define GROUP_NEXT_ELEMENT(S) (S)->next_element
728 #define GROUP_SIZE(S) (S)->size
729 #define GROUP_STORE_COUNT(S) (S)->store_count
730 #define GROUP_GAP(S) (S)->gap
731 #define GROUP_SAME_DR_STMT(S) (S)->same_dr_stmt
733 #define STMT_VINFO_RELEVANT_P(S) ((S)->relevant != vect_unused_in_scope)
735 #define HYBRID_SLP_STMT(S) ((S)->slp_type == hybrid)
736 #define PURE_SLP_STMT(S) ((S)->slp_type == pure_slp)
737 #define STMT_SLP_TYPE(S) (S)->slp_type
739 struct dataref_aux {
740 int misalignment;
741 /* If true the alignment of base_decl needs to be increased. */
742 bool base_misaligned;
743 /* If true we know the base is at least vector element alignment aligned. */
744 bool base_element_aligned;
745 tree base_decl;
748 #define DR_VECT_AUX(dr) ((dataref_aux *)(dr)->aux)
750 #define VECT_MAX_COST 1000
752 /* The maximum number of intermediate steps required in multi-step type
753 conversion. */
754 #define MAX_INTERM_CVT_STEPS 3
756 /* The maximum vectorization factor supported by any target (V64QI). */
757 #define MAX_VECTORIZATION_FACTOR 64
759 /* Nonzero if TYPE represents a (scalar) boolean type or type
760 in the middle-end compatible with it (unsigned precision 1 integral
761 types). Used to determine which types should be vectorized as
762 VECTOR_BOOLEAN_TYPE_P. */
764 #define VECT_SCALAR_BOOLEAN_TYPE_P(TYPE) \
765 (TREE_CODE (TYPE) == BOOLEAN_TYPE \
766 || ((TREE_CODE (TYPE) == INTEGER_TYPE \
767 || TREE_CODE (TYPE) == ENUMERAL_TYPE) \
768 && TYPE_PRECISION (TYPE) == 1 \
769 && TYPE_UNSIGNED (TYPE)))
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 struct loop *vect_do_peeling (loop_vec_info, tree, tree,
1031 tree *, int, bool, bool);
1032 extern source_location find_loop_location (struct loop *);
1033 extern bool vect_can_advance_ivs_p (loop_vec_info);
1035 /* In tree-vect-stmts.c. */
1036 extern unsigned int current_vector_size;
1037 extern tree get_vectype_for_scalar_type (tree);
1038 extern tree get_mask_type_for_scalar_type (tree);
1039 extern tree get_same_sized_vectype (tree, tree);
1040 extern bool vect_is_simple_use (tree, vec_info *, gimple **,
1041 enum vect_def_type *);
1042 extern bool vect_is_simple_use (tree, vec_info *, gimple **,
1043 enum vect_def_type *, tree *);
1044 extern bool supportable_widening_operation (enum tree_code, gimple *, tree,
1045 tree, enum tree_code *,
1046 enum tree_code *, int *,
1047 vec<tree> *);
1048 extern bool supportable_narrowing_operation (enum tree_code, tree, tree,
1049 enum tree_code *,
1050 int *, vec<tree> *);
1051 extern stmt_vec_info new_stmt_vec_info (gimple *stmt, vec_info *);
1052 extern void free_stmt_vec_info (gimple *stmt);
1053 extern void vect_model_simple_cost (stmt_vec_info, int, enum vect_def_type *,
1054 int, stmt_vector_for_cost *,
1055 stmt_vector_for_cost *);
1056 extern void vect_model_store_cost (stmt_vec_info, int, vect_memory_access_type,
1057 enum vect_def_type, slp_tree,
1058 stmt_vector_for_cost *,
1059 stmt_vector_for_cost *);
1060 extern void vect_model_load_cost (stmt_vec_info, int, vect_memory_access_type,
1061 slp_tree, stmt_vector_for_cost *,
1062 stmt_vector_for_cost *);
1063 extern unsigned record_stmt_cost (stmt_vector_for_cost *, int,
1064 enum vect_cost_for_stmt, stmt_vec_info,
1065 int, enum vect_cost_model_location);
1066 extern void vect_finish_stmt_generation (gimple *, gimple *,
1067 gimple_stmt_iterator *);
1068 extern bool vect_mark_stmts_to_be_vectorized (loop_vec_info);
1069 extern tree vect_get_vec_def_for_operand_1 (gimple *, enum vect_def_type);
1070 extern tree vect_get_vec_def_for_operand (tree, gimple *, tree = NULL);
1071 extern tree vect_init_vector (gimple *, tree, tree,
1072 gimple_stmt_iterator *);
1073 extern tree vect_get_vec_def_for_stmt_copy (enum vect_def_type, tree);
1074 extern bool vect_transform_stmt (gimple *, gimple_stmt_iterator *,
1075 bool *, slp_tree, slp_instance);
1076 extern void vect_remove_stores (gimple *);
1077 extern bool vect_analyze_stmt (gimple *, bool *, slp_tree);
1078 extern bool vectorizable_condition (gimple *, gimple_stmt_iterator *,
1079 gimple **, tree, int, slp_tree);
1080 extern void vect_get_load_cost (struct data_reference *, int, bool,
1081 unsigned int *, unsigned int *,
1082 stmt_vector_for_cost *,
1083 stmt_vector_for_cost *, bool);
1084 extern void vect_get_store_cost (struct data_reference *, int,
1085 unsigned int *, stmt_vector_for_cost *);
1086 extern bool vect_supportable_shift (enum tree_code, tree);
1087 extern void vect_get_vec_defs (tree, tree, gimple *, vec<tree> *,
1088 vec<tree> *, slp_tree, int);
1089 extern tree vect_gen_perm_mask_any (tree, const unsigned char *);
1090 extern tree vect_gen_perm_mask_checked (tree, const unsigned char *);
1091 extern void optimize_mask_stores (struct loop*);
1093 /* In tree-vect-data-refs.c. */
1094 extern bool vect_can_force_dr_alignment_p (const_tree, unsigned int);
1095 extern enum dr_alignment_support vect_supportable_dr_alignment
1096 (struct data_reference *, bool);
1097 extern tree vect_get_smallest_scalar_type (gimple *, HOST_WIDE_INT *,
1098 HOST_WIDE_INT *);
1099 extern bool vect_analyze_data_ref_dependences (loop_vec_info, int *);
1100 extern bool vect_slp_analyze_instance_dependence (slp_instance);
1101 extern bool vect_enhance_data_refs_alignment (loop_vec_info);
1102 extern bool vect_analyze_data_refs_alignment (loop_vec_info);
1103 extern bool vect_verify_datarefs_alignment (loop_vec_info);
1104 extern bool vect_slp_analyze_and_verify_instance_alignment (slp_instance);
1105 extern bool vect_analyze_data_ref_accesses (vec_info *);
1106 extern bool vect_prune_runtime_alias_test_list (loop_vec_info);
1107 extern bool vect_check_gather_scatter (gimple *, loop_vec_info,
1108 gather_scatter_info *);
1109 extern bool vect_analyze_data_refs (vec_info *, int *);
1110 extern tree vect_create_data_ref_ptr (gimple *, tree, struct loop *, tree,
1111 tree *, gimple_stmt_iterator *,
1112 gimple **, bool, bool *,
1113 tree = NULL_TREE);
1114 extern tree bump_vector_ptr (tree, gimple *, gimple_stmt_iterator *, gimple *,
1115 tree);
1116 extern tree vect_create_destination_var (tree, tree);
1117 extern bool vect_grouped_store_supported (tree, unsigned HOST_WIDE_INT);
1118 extern bool vect_store_lanes_supported (tree, unsigned HOST_WIDE_INT);
1119 extern bool vect_grouped_load_supported (tree, bool, unsigned HOST_WIDE_INT);
1120 extern bool vect_load_lanes_supported (tree, unsigned HOST_WIDE_INT);
1121 extern void vect_permute_store_chain (vec<tree> ,unsigned int, gimple *,
1122 gimple_stmt_iterator *, vec<tree> *);
1123 extern tree vect_setup_realignment (gimple *, gimple_stmt_iterator *, tree *,
1124 enum dr_alignment_support, tree,
1125 struct loop **);
1126 extern void vect_transform_grouped_load (gimple *, vec<tree> , int,
1127 gimple_stmt_iterator *);
1128 extern void vect_record_grouped_load_vectors (gimple *, vec<tree> );
1129 extern tree vect_get_new_vect_var (tree, enum vect_var_kind, const char *);
1130 extern tree vect_get_new_ssa_name (tree, enum vect_var_kind,
1131 const char * = NULL);
1132 extern tree vect_create_addr_base_for_vector_ref (gimple *, gimple_seq *,
1133 tree, struct loop *,
1134 tree = NULL_TREE);
1136 /* In tree-vect-loop.c. */
1137 /* FORNOW: Used in tree-parloops.c. */
1138 extern void destroy_loop_vec_info (loop_vec_info, bool);
1139 extern gimple *vect_force_simple_reduction (loop_vec_info, gimple *, bool,
1140 bool *, bool);
1141 /* Drive for loop analysis stage. */
1142 extern loop_vec_info vect_analyze_loop (struct loop *, loop_vec_info);
1143 extern tree vect_build_loop_niters (loop_vec_info);
1144 extern void vect_gen_vector_loop_niters (loop_vec_info, tree, tree *, bool);
1145 /* Drive for loop transformation stage. */
1146 extern struct loop *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, unsigned *);
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 */