summaryrefslogtreecommitdiff
path: root/include/dep.hh
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-09-19 21:14:58 +0000
committerTuowen Zhao <ztuowen@gmail.com>2016-09-19 21:14:58 +0000
commit210f77d2c32f14d2e99577fd3c9842bb19d47e50 (patch)
tree5edb327c919b8309e301c3440fb6668a0075c8ef /include/dep.hh
parenta66ce5cd670c4d3c0dc449720f5bc45dd4c281b8 (diff)
downloadchill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.tar.gz
chill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.tar.bz2
chill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.zip
Moved most modules into lib
Diffstat (limited to 'include/dep.hh')
-rw-r--r--include/dep.hh94
1 files changed, 94 insertions, 0 deletions
diff --git a/include/dep.hh b/include/dep.hh
new file mode 100644
index 0000000..6c535ce
--- /dev/null
+++ b/include/dep.hh
@@ -0,0 +1,94 @@
+#ifndef DEP_HH
+#define DEP_HH
+
+/*!
+ * \file
+ * \brief Data dependence vector and graph.
+ *
+ * All dependence vectors are normalized, i.e., the first non-zero distance
+ * must be positve. Thus the correct dependence meaning can be given based on
+ * source/destination pair's read/write type. Suppose for a dependence vector
+ * 1, 0~5, -3), we want to permute the first and the second dimension,
+ * the result would be two dependence vectors (0, 1, -3) and (1~5, 1, -3).
+ * All operations on dependence vectors are non-destructive, i.e., new
+ * dependence vectors are returned.
+ */
+
+#include <omega.h>
+#include "graph.hh"
+#include "ir_code.hh"
+#include "chill_error.hh"
+
+enum DependenceType { DEP_W2R, DEP_R2W, DEP_W2W, DEP_R2R, DEP_CONTROL, DEP_UNKNOWN };
+
+class DependenceVector;
+typedef std::vector<DependenceVector> DependenceList;
+
+struct DependenceVector {
+ DependenceType type;
+ IR_Symbol *sym;
+
+ bool is_reduction; //!< used to identify a class of flow dependence
+ //!< that can be broken
+ std::vector<omega::coef_t> lbounds;
+ std::vector<omega::coef_t> ubounds;
+
+ bool quasi;
+ bool is_scalar_dependence;
+ DependenceVector() {
+ type = DEP_UNKNOWN;
+ sym = NULL;
+ is_reduction = false;
+ quasi = false;
+ is_scalar_dependence = false;
+ }
+ DependenceVector(const DependenceVector &that);
+ ~DependenceVector() {delete sym;}
+ DependenceVector &operator=(const DependenceVector &that);
+
+ bool is_data_dependence() const;
+ bool is_control_dependence() const;
+ bool has_negative_been_carried_at(int dim) const;
+ bool has_been_carried_at(int dim) const;
+ bool has_been_carried_before(int dim) const;
+
+ // TODO the following functions will be cleaned up or removed later
+ bool isZero() const;
+ bool isPositive() const;
+ bool isNegative() const;
+ bool isAllPositive() const;
+ bool isAllNegative() const;
+ bool isZero(int dim) const;
+ bool hasPositive(int dim) const;
+ bool hasNegative(int dim) const;
+ bool isCarried(int dim, omega::coef_t distance = posInfinity) const;
+ bool canPermute(const std::vector<int> &pi) const;
+
+ std::vector<DependenceVector> normalize() const;
+ std::vector<DependenceVector> permute(const std::vector<int> &pi) const;
+ DependenceVector reverse() const;
+ DependenceType getType() const;
+ friend std::ostream& operator<<(std::ostream &os, const DependenceVector &d);
+};
+
+
+
+class DependenceGraph: public Graph<Empty, DependenceVector> {
+
+protected:
+ int num_dim_;
+
+public:
+ DependenceGraph(int n) { num_dim_ = n; }
+ DependenceGraph() { num_dim_ = 0; }
+ ~DependenceGraph() {}
+ int num_dim() const { return num_dim_; }
+ DependenceGraph permute(const std::vector<int> &pi,
+ const std::set<int> &active = std::set<int>()) const;
+ DependenceGraph subspace(int dim) const;
+ bool isPositive() const;
+ bool hasPositive(int dim) const;
+ bool hasNegative(int dim) const;
+};
+
+#endif