aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-data-ref.h
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2004-08-26 17:10:50 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2004-08-26 17:10:50 +0000
commit36d59cf798c2bf339594ca6917851b9689f84b5d (patch)
treeed90480c751c97e7942fbc20064d66ab11f4b7bf /gcc/tree-data-ref.h
parenta46bbb5a39813fee56e20d11d90f91dc4319ad95 (diff)
downloadgcc-36d59cf798c2bf339594ca6917851b9689f84b5d.zip
gcc-36d59cf798c2bf339594ca6917851b9689f84b5d.tar.gz
gcc-36d59cf798c2bf339594ca6917851b9689f84b5d.tar.bz2
[multiple changes]
2004-08-26 Daniel Berlin <dberlin@dberlin.org> * Makefile.in (lambda-code.o): New. (lambda-trans.o): Ditto. (TREE_DATA_REF_H): Ditto. (LAMBDA_H): Ditto. (lambda-mat.o): Use LAMBDA_H. (tree-data-ref.o): Ditto. * lambda-code.c: New file. Lambda code generation algorithm. * lambda-trans.c: Ditto. Lambda transformation matrix support. * lambda.h: Add lambda loop structures. Add lambda loopnest structures. Add lambda body vector structure. Add lambda linear expression structures. Add prototypes for functions in new files. * lambda-mat.c: Include tree.h 2004-08-26 Daniel Berlin <dberlin@dberlin.org> Sebastian Pop <pop@cri.ensmp.fr> * tree-data-ref.h: Include lambda.h (free_dependence_relation): Declared here. (free_dependence_relations): Ditto. (free_data_refs): Ditto. * tree-data-ref.c (free_dependence_relation): New function. (free_dependence_relations): Ditto. (free_data_refs): Ditot. (analyze_all_data_dependences): Free datarefs and dependence_relations. (build_classic_dist_vector): Store in the dependence_relations the information. Each arc in the dependence_relations graph is labelled with the distance and direction vectors. (build_classic_dir_vector): Ditto. (compute_rw_wr_ww_dependences): Renamed again compute_all_dependences. Now computes again the whole dependence graph including read-read relations. (compute_data_dependences_for_loop): Now dependence_relations contains all the data, and thus it doesn't need to initialize the classic_dir and classic_dist vectors. (analyze_all_data_dependences): Adjusted for using the new interface of compute_data_dependences_for_loop. Remove the statistics dump. Co-Authored-By: Sebastian Pop <pop@cri.ensmp.fr> From-SVN: r86627
Diffstat (limited to 'gcc/tree-data-ref.h')
-rw-r--r--gcc/tree-data-ref.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/gcc/tree-data-ref.h b/gcc/tree-data-ref.h
index bc069c1..5dacb3e 100644
--- a/gcc/tree-data-ref.h
+++ b/gcc/tree-data-ref.h
@@ -22,11 +22,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#ifndef GCC_TREE_DATA_REF_H
#define GCC_TREE_DATA_REF_H
-struct data_reference GTY(())
+#include "lambda.h"
+
+struct data_reference
{
- /* An identifier. */
- unsigned int id;
-
/* A pointer to the statement that contains this DR. */
tree stmt;
@@ -47,7 +46,6 @@ struct data_reference GTY(())
};
-#define DR_ID(DR) DR->id
#define DR_STMT(DR) DR->stmt
#define DR_REF(DR) DR->ref
#define DR_BASE_NAME(DR) DR->base_name
@@ -74,7 +72,7 @@ enum data_dependence_direction {
are stored in the data_dependence_relation structure under the form
of an array of subscripts. */
-struct subscript GTY(())
+struct subscript
{
/* A description of the iterations for which the elements are
accessed twice. */
@@ -91,11 +89,6 @@ struct subscript GTY(())
B. The distance is a tree scalar expression, ie. a constant or a
symbolic expression, but certainly not a chrec function. */
tree distance;
-
- /* Direction (or sign) of the distance. This more abstract (less
- precise) information is extracted from the distance field, for
- the convenience of some analyzers. */
- enum data_dependence_direction direction;
};
#define SUB_CONFLICTS_IN_A(SUB) SUB->conflicting_iterations_in_a
@@ -103,12 +96,11 @@ struct subscript GTY(())
#define SUB_LAST_CONFLICT_IN_A(SUB) SUB->last_conflict_in_a
#define SUB_LAST_CONFLICT_IN_B(SUB) SUB->last_conflict_in_b
#define SUB_DISTANCE(SUB) SUB->distance
-#define SUB_DIRECTION(SUB) SUB->direction
/* A data_dependence_relation represents a relation between two
data_references A and B. */
-struct data_dependence_relation GTY(())
+struct data_dependence_relation
{
struct data_reference *a;
@@ -131,6 +123,12 @@ struct data_dependence_relation GTY(())
this array. This is the attribute that labels the edge A->B of
the data_dependence_relation. */
varray_type subscripts;
+
+ /* The classic direction vector. */
+ lambda_vector dir_vect;
+
+ /* The classic distance vector. */
+ lambda_vector dist_vect;
};
#define DDR_A(DDR) DDR->a
@@ -141,6 +139,8 @@ struct data_dependence_relation GTY(())
VARRAY_GENERIC_PTR_INIT (DDR_SUBSCRIPTS (DDR), N, "subscripts_vector");
#define DDR_SUBSCRIPT(DDR, I) VARRAY_GENERIC_PTR (DDR_SUBSCRIPTS (DDR), I)
#define DDR_NUM_SUBSCRIPTS(DDR) VARRAY_ACTIVE_SIZE (DDR_SUBSCRIPTS (DDR))
+#define DDR_DIR_VECT(DDR) DDR->dir_vect
+#define DDR_DIST_VECT(DDR) DDR->dist_vect
@@ -149,7 +149,6 @@ struct data_dependence_relation *initialize_data_dependence_relation
void compute_affine_dependence (struct data_dependence_relation *);
extern void analyze_all_data_dependences (struct loops *);
extern void compute_data_dependences_for_loop (unsigned, struct loop *,
- varray_type *, varray_type *,
varray_type *, varray_type *);
extern struct data_reference * init_data_ref (tree, tree, tree, tree, bool);
extern struct data_reference *analyze_array (tree, tree, bool);
@@ -163,6 +162,9 @@ extern void dump_data_dependence_direction (FILE *,
enum data_dependence_direction);
extern bool array_base_name_differ_p (struct data_reference *,
struct data_reference *, bool *p);
+extern void free_dependence_relation (struct data_dependence_relation *);
+extern void free_dependence_relations (varray_type);
+extern void free_data_refs (varray_type);