X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=cyclegraph.h;h=3ea4e3bbd2c9382562c39ca7ce05754d2b61301c;hp=013a11a793bd9f20971a881af2c104a59e3085ec;hb=c0c4fcf47d8209da26e686b308d8c20ffc8220d3;hpb=0cb05db166b91ab2820fd8c58b6903ca3a455e04 diff --git a/cyclegraph.h b/cyclegraph.h index 013a11a7..3ea4e3bb 100644 --- a/cyclegraph.h +++ b/cyclegraph.h @@ -1,76 +1,89 @@ -/** @file cyclegraph.h @brief Data structure to track ordering - * constraints on modification order. The idea is to see whether a - * total order exists that satisfies the ordering constriants.*/ +/** + * @file cyclegraph.h + * @brief Data structure to track ordering constraints on modification order + * + * Used to determine whether a total order exists that satisfies the ordering + * constraints. + */ -#ifndef CYCLEGRAPH_H -#define CYCLEGRAPH_H +#ifndef __CYCLEGRAPH_H__ +#define __CYCLEGRAPH_H__ -#include "hashtable.h" -#include #include +#include -class CycleNode; -class ModelAction; +#include "hashtable.h" +#include "config.h" +#include "mymemory.h" +#include "stl-model.h" +#include "classlist.h" /** @brief A graph of Model Actions for tracking cycles. */ class CycleGraph { - public: +public: CycleGraph(); ~CycleGraph(); + void addEdges(SnapList * edgeset, const ModelAction *to); void addEdge(const ModelAction *from, const ModelAction *to); - bool checkForCycles(); - bool checkForRMWViolation(); + void addEdge(const ModelAction *from, const ModelAction *to, bool forceedge); void addRMWEdge(const ModelAction *from, const ModelAction *rmw); + bool checkReachable(const ModelAction *from, const ModelAction *to) const; - bool checkReachable(const ModelAction *from, const ModelAction *to); - void startChanges(); - void commitChanges(); - void rollbackChanges(); +#if SUPPORT_MOD_ORDER_DUMP + void dumpNodes(FILE *file) const; + void dumpGraphToFile(const char *filename) const; + void dot_print_node(FILE *file, const ModelAction *act); + void dot_print_edge(FILE *file, const ModelAction *from, const ModelAction *to, const char *prop); +#endif - private: - CycleNode * getNode(const ModelAction *); + CycleNode * getNode_noCreate(const ModelAction *act) const; + SNAPSHOTALLOC +private: + void addNodeEdge(CycleNode *fromnode, CycleNode *tonode, bool forceedge); + void putNode(const ModelAction *act, CycleNode *node); + CycleNode * getNode(const ModelAction *act); /** @brief A table for mapping ModelActions to CycleNodes */ HashTable actionToNode; + SnapVector * queue; - bool checkReachable(CycleNode *from, CycleNode *to); - - /** @brief A flag: true if this graph contains cycles */ - bool hasCycles; - bool oldCycles; - - bool hasRMWViolation; - bool oldRMWViolation; +#if SUPPORT_MOD_ORDER_DUMP + SnapVector nodeList; +#endif - std::vector rollbackvector; - std::vector rmwrollbackvector; + bool checkReachable(const CycleNode *from, const CycleNode *to) const; }; -/** @brief A node within a CycleGraph; corresponds to one ModelAction */ +/** + * @brief A node within a CycleGraph; corresponds either to one ModelAction + */ class CycleNode { - public: - CycleNode(const ModelAction *action); - void addEdge(CycleNode * node); - std::vector * getEdges(); +public: + CycleNode(const ModelAction *act); + void addEdge(CycleNode *node); + CycleNode * getEdge(unsigned int i) const; + unsigned int getNumEdges() const; + CycleNode * removeEdge(); bool setRMW(CycleNode *); - CycleNode* getRMW(); - void popEdge() { - edges.pop_back(); - }; - void clearRMW() { - hasRMW=NULL; - } + CycleNode * getRMW() const; + void clearRMW() { hasRMW = NULL; } + const ModelAction * getAction() const { return action; } - private: + SNAPSHOTALLOC +private: /** @brief The ModelAction that this node represents */ const ModelAction *action; /** @brief The edges leading out from this node */ - std::vector edges; + SnapVector edges; /** Pointer to a RMW node that reads from this node, or NULL, if none * exists */ - CycleNode * hasRMW; + CycleNode *hasRMW; + + /** ClockVector for this Node. */ + ClockVector *cv; + friend class CycleGraph; }; -#endif +#endif /* __CYCLEGRAPH_H__ */