X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=cyclegraph.h;h=716e811d64ea6ea4153572d6d9c485762b0988ef;hp=818a3e88f3afca519cbff27e8d4310f485e130ff;hb=251ac4b4bf3a9f2d3cfacc1e6618200ca1c431ac;hpb=f3ef22bef8d339c7d45b7d7232cdcf183a0b7776 diff --git a/cyclegraph.h b/cyclegraph.h index 818a3e88..716e811d 100644 --- a/cyclegraph.h +++ b/cyclegraph.h @@ -1,38 +1,96 @@ -#ifndef CYCLEGRAPH_H -#define CYCLEGRAPH_H +/** + * @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__ -#include "hashtable.h" -#include "action.h" -#include #include +#include -class CycleNode; +#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, ModelAction *to); void addEdge(ModelAction *from, ModelAction *to); - bool checkForCycles(); + void addEdge(ModelAction *from, ModelAction *to, bool forceedge); + void addRMWEdge(ModelAction *from, ModelAction *rmw); + bool checkReachable(const ModelAction *from, const ModelAction *to) const; + void freeAction(const ModelAction * act); +#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 + + 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(ModelAction *act); + + /** @brief A table for mapping ModelActions to CycleNodes */ + HashTable actionToNode; + SnapVector * queue; - private: - CycleNode * getNode(ModelAction *); - HashTable actionToNode; - bool checkReachable(CycleNode *from, CycleNode *to); - - bool hasCycles; +#if SUPPORT_MOD_ORDER_DUMP + SnapVector nodeList; +#endif + bool checkReachable(const CycleNode *from, const CycleNode *to) const; }; +/** + * @brief A node within a CycleGraph; corresponds either to one ModelAction + */ class CycleNode { - public: - CycleNode(ModelAction *action); - void addEdge(CycleNode * node); - std::vector * getEdges(); +public: + CycleNode(ModelAction *act); + void addEdge(CycleNode *node); + CycleNode * getEdge(unsigned int i) const; + unsigned int getNumEdges() const; + CycleNode * getInEdge(unsigned int i) const; + unsigned int getNumInEdges() const; + bool setRMW(CycleNode *); + CycleNode * getRMW() const; + void clearRMW() { hasRMW = NULL; } + ModelAction * getAction() const { return action; } + void removeInEdge(CycleNode *src); + void removeEdge(CycleNode *dst); + ~CycleNode(); - private: + SNAPSHOTALLOC +private: + /** @brief The ModelAction that this node represents */ ModelAction *action; - std::vector edges; + + /** @brief The edges leading out from this node */ + SnapVector edges; + + /** @brief The edges leading in from this node */ + SnapVector inedges; + + /** Pointer to a RMW node that reads from this node, or NULL, if none + * exists */ + CycleNode *hasRMW; + + /** ClockVector for this Node. */ + ClockVector *cv; + friend class CycleGraph; }; -#endif +#endif /* __CYCLEGRAPH_H__ */