cyclegraph: add putNode() helper
[c11tester.git] / cyclegraph.h
1 /**
2  * @file cyclegraph.h
3  * @brief Data structure to track ordering constraints on modification order
4  *
5  * Used to determine whether a total order exists that satisfies the ordering
6  * constraints.
7  */
8
9 #ifndef __CYCLEGRAPH_H__
10 #define __CYCLEGRAPH_H__
11
12 #include "hashtable.h"
13 #include <vector>
14 #include <inttypes.h>
15 #include "config.h"
16 #include "mymemory.h"
17
18 class Promise;
19 class CycleNode;
20 class ModelAction;
21
22 /** @brief A graph of Model Actions for tracking cycles. */
23 class CycleGraph {
24  public:
25         CycleGraph();
26         ~CycleGraph();
27         void addEdge(const ModelAction *from, const ModelAction *to);
28         bool checkForCycles() const;
29         bool checkForRMWViolation() const;
30         void addRMWEdge(const ModelAction *from, const ModelAction *rmw);
31         bool checkPromise(const ModelAction *from, Promise *p) const;
32         bool checkReachable(const ModelAction *from, const ModelAction *to) const;
33         void startChanges();
34         void commitChanges();
35         void rollbackChanges();
36 #if SUPPORT_MOD_ORDER_DUMP
37         void dumpNodes(FILE *file) const;
38         void dumpGraphToFile(const char *filename) const;
39 #endif
40
41         SNAPSHOTALLOC
42  private:
43         void putNode(const ModelAction *act, CycleNode *node);
44         CycleNode * getNode(const ModelAction *);
45         HashTable<CycleNode *, CycleNode *, uintptr_t, 4, model_malloc, model_calloc, model_free> *discovered;
46
47         /** @brief A table for mapping ModelActions to CycleNodes */
48         HashTable<const ModelAction *, CycleNode *, uintptr_t, 4> actionToNode;
49 #if SUPPORT_MOD_ORDER_DUMP
50         std::vector<CycleNode *> nodeList;
51 #endif
52
53         bool checkReachable(CycleNode *from, CycleNode *to) const;
54
55         /** @brief A flag: true if this graph contains cycles */
56         bool hasCycles;
57         bool oldCycles;
58
59         bool hasRMWViolation;
60         bool oldRMWViolation;
61
62         std::vector< CycleNode *, SnapshotAlloc<CycleNode *> > rollbackvector;
63         std::vector< CycleNode *, SnapshotAlloc<CycleNode *> > rmwrollbackvector;
64 };
65
66 /** @brief A node within a CycleGraph; corresponds to one ModelAction */
67 class CycleNode {
68  public:
69         CycleNode(const ModelAction *act);
70         bool addEdge(CycleNode *node);
71         CycleNode * getEdge(unsigned int i) const;
72         unsigned int getNumEdges() const;
73         bool setRMW(CycleNode *);
74         CycleNode * getRMW() const;
75         const ModelAction * getAction() const { return action; }
76
77         void popEdge() {
78                 edges.pop_back();
79         }
80         void clearRMW() {
81                 hasRMW = NULL;
82         }
83
84         SNAPSHOTALLOC
85  private:
86         /** @brief The ModelAction that this node represents */
87         const ModelAction *action;
88
89         /** @brief The edges leading out from this node */
90         std::vector< CycleNode *, SnapshotAlloc<CycleNode *> > edges;
91
92         /** Pointer to a RMW node that reads from this node, or NULL, if none
93          * exists */
94         CycleNode *hasRMW;
95 };
96
97 #endif /* __CYCLEGRAPH_H__ */