1 /* Data references and dependences detectors.
2 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <s.pop@laposte.net>
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_DATA_REF_H
23 #define GCC_TREE_DATA_REF_H
29 /* A pointer to the statement that contains this DR. */
32 /* A pointer to the ARRAY_REF node. */
35 /* The name of the array. */
38 /* A list of chrecs. */
39 varray_type access_fns
;
41 /* Auxiliary info specific to a pass. */
44 /* True when the data reference is in RHS of a stmt. */
49 #define DR_STMT(DR) DR->stmt
50 #define DR_REF(DR) DR->ref
51 #define DR_BASE_NAME(DR) DR->base_name
52 #define DR_ACCESS_FNS(DR) DR->access_fns
53 #define DR_ACCESS_FN(DR, I) VARRAY_TREE (DR_ACCESS_FNS (DR), I)
54 #define DR_NUM_DIMENSIONS(DR) VARRAY_ACTIVE_SIZE (DR_ACCESS_FNS (DR))
55 #define DR_IS_READ(DR) DR->is_read
57 enum data_dependence_direction
{
61 dir_positive_or_negative
,
62 dir_positive_or_equal
,
63 dir_negative_or_equal
,
68 /* What is a subscript? Given two array accesses a subscript is the
69 tuple composed of the access functions for a given dimension.
70 Example: Given A[f1][f2][f3] and B[g1][g2][g3], there are three
71 subscripts: (f1, g1), (f2, g2), (f3, g3). These three subscripts
72 are stored in the data_dependence_relation structure under the form
73 of an array of subscripts. */
77 /* A description of the iterations for which the elements are
79 tree conflicting_iterations_in_a
;
80 tree conflicting_iterations_in_b
;
82 /* This field stores the information about the iteration domain
83 validity of the dependence relation. */
86 /* Distance from the iteration that access a conflicting element in
87 A to the iteration that access this same conflicting element in
88 B. The distance is a tree scalar expression, i.e. a constant or a
89 symbolic expression, but certainly not a chrec function. */
93 #define SUB_CONFLICTS_IN_A(SUB) SUB->conflicting_iterations_in_a
94 #define SUB_CONFLICTS_IN_B(SUB) SUB->conflicting_iterations_in_b
95 #define SUB_LAST_CONFLICT(SUB) SUB->last_conflict
96 #define SUB_DISTANCE(SUB) SUB->distance
98 /* A data_dependence_relation represents a relation between two
99 data_references A and B. */
101 struct data_dependence_relation
104 struct data_reference
*a
;
105 struct data_reference
*b
;
107 /* When the dependence relation is affine, it can be represented by
108 a distance vector. */
111 /* A "yes/no/maybe" field for the dependence relation:
113 - when "ARE_DEPENDENT == NULL_TREE", there exist a dependence
114 relation between A and B, and the description of this relation
115 is given in the SUBSCRIPTS array,
117 - when "ARE_DEPENDENT == chrec_known", there is no dependence and
120 - when "ARE_DEPENDENT == chrec_dont_know", there may be a dependence,
121 but the analyzer cannot be more specific. */
124 /* For each subscript in the dependence test, there is an element in
125 this array. This is the attribute that labels the edge A->B of
126 the data_dependence_relation. */
127 varray_type subscripts
;
129 /* The size of the direction/distance vectors. */
132 /* The classic direction vector. */
133 lambda_vector dir_vect
;
135 /* The classic distance vector. */
136 lambda_vector dist_vect
;
139 #define DDR_A(DDR) DDR->a
140 #define DDR_B(DDR) DDR->b
141 #define DDR_AFFINE_P(DDR) DDR->affine_p
142 #define DDR_ARE_DEPENDENT(DDR) DDR->are_dependent
143 #define DDR_SUBSCRIPTS(DDR) DDR->subscripts
144 #define DDR_SUBSCRIPTS_VECTOR_INIT(DDR, N) \
145 VARRAY_GENERIC_PTR_INIT (DDR_SUBSCRIPTS (DDR), N, "subscripts_vector");
146 #define DDR_SUBSCRIPT(DDR, I) VARRAY_GENERIC_PTR (DDR_SUBSCRIPTS (DDR), I)
147 #define DDR_NUM_SUBSCRIPTS(DDR) VARRAY_ACTIVE_SIZE (DDR_SUBSCRIPTS (DDR))
148 #define DDR_SIZE_VECT(DDR) DDR->size_vect
149 #define DDR_DIR_VECT(DDR) DDR->dir_vect
150 #define DDR_DIST_VECT(DDR) DDR->dist_vect
154 extern tree
find_data_references_in_loop (struct loop
*, varray_type
*);
155 extern struct data_dependence_relation
*initialize_data_dependence_relation
156 (struct data_reference
*, struct data_reference
*);
157 extern void compute_affine_dependence (struct data_dependence_relation
*);
158 extern void analyze_all_data_dependences (struct loops
*);
159 extern void compute_data_dependences_for_loop (unsigned, struct loop
*,
160 varray_type
*, varray_type
*);
161 extern struct data_reference
* init_data_ref (tree
, tree
, tree
, tree
, bool);
162 extern struct data_reference
*analyze_array (tree
, tree
, bool);
164 extern void dump_subscript (FILE *, struct subscript
*);
165 extern void dump_ddrs (FILE *, varray_type
);
166 extern void dump_dist_dir_vectors (FILE *, varray_type
);
167 extern void dump_data_reference (FILE *, struct data_reference
*);
168 extern void dump_data_references (FILE *, varray_type
);
169 extern void dump_data_dependence_relation (FILE *,
170 struct data_dependence_relation
*);
171 extern void dump_data_dependence_relations (FILE *, varray_type
);
172 extern void dump_data_dependence_direction (FILE *,
173 enum data_dependence_direction
);
174 extern bool array_base_name_differ_p (struct data_reference
*,
175 struct data_reference
*, bool *);
176 extern void free_dependence_relation (struct data_dependence_relation
*);
177 extern void free_dependence_relations (varray_type
);
178 extern void free_data_refs (varray_type
);
183 #endif /* GCC_TREE_DATA_REF_H */