2 Copyright (C) 2003, 2004 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 2, or (at your option) any later
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #ifndef GCC_TREE_VECTORIZER_H
23 #define GCC_TREE_VECTORIZER_H
25 /* Used for naming of new temporaries. */
31 /* Defines type of operation: unary or binary. */
37 /*-----------------------------------------------------------------*/
38 /* Info on vectorized defs. */
39 /*-----------------------------------------------------------------*/
40 enum stmt_vec_info_type
{
41 undef_vec_info_type
= 0,
45 assignment_vec_info_type
48 typedef struct _stmt_vec_info
{
50 enum stmt_vec_info_type type
;
52 /* The stmt to which this info struct refers to. */
55 /* The loop with respect to which STMT is vectorized. */
58 /* Not all stmts in the loop need to be vectorized. e.g, the incrementation
59 of the loop induction variable and computation of array indexes. relevant
60 indicates whether the stmt needs to be vectorized. */
63 /* The vector type to be used. */
66 /* The vectorized version of the stmt. */
70 /** The following is relevant only for stmts that contain a non-scalar
71 data-ref (array/pointer/struct access). A GIMPLE stmt is expected to have
72 at most one such data-ref. **/
74 /* Information about the data-ref (access function, etc). */
75 struct data_reference
*data_ref_info
;
77 /* Aliasing information. */
81 /* Access Functions. */
82 #define STMT_VINFO_TYPE(S) (S)->type
83 #define STMT_VINFO_STMT(S) (S)->stmt
84 #define STMT_VINFO_LOOP(S) (S)->loop
85 #define STMT_VINFO_RELEVANT_P(S) (S)->relevant
86 #define STMT_VINFO_VECTYPE(S) (S)->vectype
87 #define STMT_VINFO_VEC_STMT(S) (S)->vectorized_stmt
88 #define STMT_VINFO_DATA_REF(S) (S)->data_ref_info
89 #define STMT_VINFO_MEMTAG(S) (S)->memtag
91 static inline void set_stmt_info (stmt_ann_t ann
, stmt_vec_info stmt_info
);
92 static inline stmt_vec_info
vinfo_for_stmt (tree stmt
);
95 set_stmt_info (stmt_ann_t ann
, stmt_vec_info stmt_info
)
98 ann
->common
.aux
= (char *) stmt_info
;
101 static inline stmt_vec_info
102 vinfo_for_stmt (tree stmt
)
104 stmt_ann_t ann
= stmt_ann (stmt
);
105 return ann
? (stmt_vec_info
) ann
->common
.aux
: NULL
;
108 /*-----------------------------------------------------------------*/
109 /* Info on data references alignment. */
110 /*-----------------------------------------------------------------*/
112 #define DR_MISALIGNMENT(DR) (DR)->aux
115 aligned_access_p (struct data_reference
*data_ref_info
)
117 return (DR_MISALIGNMENT (data_ref_info
) == 0);
121 unknown_alignment_for_access_p (struct data_reference
*data_ref_info
)
123 return (DR_MISALIGNMENT (data_ref_info
) == -1);
127 /*-----------------------------------------------------------------*/
128 /* Info on vectorized loops. */
129 /*-----------------------------------------------------------------*/
130 typedef struct _loop_vec_info
{
132 /* The loop to which this info struct refers to. */
135 /* The loop basic blocks. */
138 /* The loop exit_condition. */
141 /* Number of iterations. -1 if unknown. */
142 HOST_WIDE_INT num_iters
;
144 /* Is the loop vectorizable? */
147 /* Unrolling factor */
148 int vectorization_factor
;
150 /* All data references in the loop that are being written to. */
151 varray_type data_ref_writes
;
153 /* All data references in the loop that are being read from. */
154 varray_type data_ref_reads
;
157 /* Access Functions. */
158 #define LOOP_VINFO_LOOP(L) (L)->loop
159 #define LOOP_VINFO_BBS(L) (L)->bbs
160 #define LOOP_VINFO_EXIT_COND(L) (L)->exit_cond
161 #define LOOP_VINFO_NITERS(L) (L)->num_iters
162 #define LOOP_VINFO_VECTORIZABLE_P(L) (L)->vectorizable
163 #define LOOP_VINFO_VECT_FACTOR(L) (L)->vectorization_factor
164 #define LOOP_VINFO_DATAREF_WRITES(L) (L)->data_ref_writes
165 #define LOOP_VINFO_DATAREF_READS(L) (L)->data_ref_reads
167 #define LOOP_VINFO_NITERS_KNOWN_P(L) ((L)->num_iters > 0)
169 /*-----------------------------------------------------------------*/
170 /* Function prototypes. */
171 /*-----------------------------------------------------------------*/
174 extern void vectorize_loops (struct loops
*);
176 /* creation and deletion of loop and stmt info structs. */
177 extern loop_vec_info
new_loop_vec_info (struct loop
*loop
);
178 extern void destroy_loop_vec_info (loop_vec_info
);
179 extern stmt_vec_info
new_stmt_vec_info (tree stmt
, struct loop
*loop
);
181 #endif /* GCC_TREE_VECTORIZER_H */