promise: record multiple readers in the same Promise
[c11tester.git] / cyclegraph.cc
1 #include "cyclegraph.h"
2 #include "action.h"
3 #include "common.h"
4 #include "promise.h"
5 #include "model.h"
6 #include "threads-model.h"
7
8 /** Initializes a CycleGraph object. */
9 CycleGraph::CycleGraph() :
10         discovered(new HashTable<const CycleNode *, const CycleNode *, uintptr_t, 4, model_malloc, model_calloc, model_free>(16)),
11         hasCycles(false),
12         oldCycles(false)
13 {
14 }
15
16 /** CycleGraph destructor */
17 CycleGraph::~CycleGraph()
18 {
19         delete discovered;
20 }
21
22 /**
23  * Add a CycleNode to the graph, corresponding to a store ModelAction
24  * @param act The write action that should be added
25  * @param node The CycleNode that corresponds to the store
26  */
27 void CycleGraph::putNode(const ModelAction *act, CycleNode *node)
28 {
29         actionToNode.put(act, node);
30 #if SUPPORT_MOD_ORDER_DUMP
31         nodeList.push_back(node);
32 #endif
33 }
34
35 /**
36  * Add a CycleNode to the graph, corresponding to a Promise
37  * @param promise The Promise that should be added
38  * @param node The CycleNode that corresponds to the Promise
39  */
40 void CycleGraph::putNode(const Promise *promise, CycleNode *node)
41 {
42         promiseToNode.put(promise, node);
43 #if SUPPORT_MOD_ORDER_DUMP
44         nodeList.push_back(node);
45 #endif
46 }
47
48 /**
49  * @brief Remove the Promise node from the graph
50  * @param promise The promise to remove from the graph
51  */
52 void CycleGraph::erasePromiseNode(const Promise *promise)
53 {
54         promiseToNode.put(promise, NULL);
55 #if SUPPORT_MOD_ORDER_DUMP
56         /* Remove the promise node from nodeList */
57         CycleNode *node = getNode_noCreate(promise);
58         for (unsigned int i = 0; i < nodeList.size(); )
59                 if (nodeList[i] == node)
60                         nodeList.erase(nodeList.begin() + i);
61                 else
62                         i++;
63 #endif
64 }
65
66 /** @return The corresponding CycleNode, if exists; otherwise NULL */
67 CycleNode * CycleGraph::getNode_noCreate(const ModelAction *act) const
68 {
69         return actionToNode.get(act);
70 }
71
72 /** @return The corresponding CycleNode, if exists; otherwise NULL */
73 CycleNode * CycleGraph::getNode_noCreate(const Promise *promise) const
74 {
75         return promiseToNode.get(promise);
76 }
77
78 /**
79  * @brief Returns the CycleNode corresponding to a given ModelAction
80  *
81  * Gets (or creates, if none exist) a CycleNode corresponding to a ModelAction
82  *
83  * @param action The ModelAction to find a node for
84  * @return The CycleNode paired with this action
85  */
86 CycleNode * CycleGraph::getNode(const ModelAction *action)
87 {
88         CycleNode *node = getNode_noCreate(action);
89         if (node == NULL) {
90                 node = new CycleNode(action);
91                 putNode(action, node);
92         }
93         return node;
94 }
95
96 /**
97  * @brief Returns a CycleNode corresponding to a promise
98  *
99  * Gets (or creates, if none exist) a CycleNode corresponding to a promised
100  * value.
101  *
102  * @param promise The Promise generated by a reader
103  * @return The CycleNode corresponding to the Promise
104  */
105 CycleNode * CycleGraph::getNode(const Promise *promise)
106 {
107         CycleNode *node = getNode_noCreate(promise);
108         if (node == NULL) {
109                 node = new CycleNode(promise);
110                 putNode(promise, node);
111         }
112         return node;
113 }
114
115 /**
116  * @return false if the resolution results in a cycle; true otherwise
117  */
118 bool CycleGraph::resolvePromise(const Promise *promise, ModelAction *writer,
119                 promise_list_t *mustResolve)
120 {
121         CycleNode *promise_node = promiseToNode.get(promise);
122         CycleNode *w_node = actionToNode.get(writer);
123         ASSERT(promise_node);
124
125         if (w_node)
126                 return mergeNodes(w_node, promise_node, mustResolve);
127         /* No existing write-node; just convert the promise-node */
128         promise_node->resolvePromise(writer);
129         erasePromiseNode(promise_node->getPromise());
130         putNode(writer, promise_node);
131         return true;
132 }
133
134 /**
135  * @brief Merge two CycleNodes that represent the same write
136  *
137  * Note that this operation cannot be rolled back.
138  *
139  * @param w_node The write ModelAction node with which to merge
140  * @param p_node The Promise node to merge. Will be destroyed after this
141  * function.
142  * @param mustMerge Return (pass-by-reference) any additional Promises that
143  * must also be merged with w_node
144  *
145  * @return false if the merge results in a cycle; true otherwise
146  */
147 bool CycleGraph::mergeNodes(CycleNode *w_node, CycleNode *p_node,
148                 promise_list_t *mustMerge)
149 {
150         ASSERT(!w_node->is_promise());
151         ASSERT(p_node->is_promise());
152
153         const Promise *promise = p_node->getPromise();
154         if (!promise->is_compatible(w_node->getAction())) {
155                 hasCycles = true;
156                 return false;
157         }
158
159         /* Transfer the RMW */
160         CycleNode *promise_rmw = p_node->getRMW();
161         if (promise_rmw && promise_rmw != w_node->getRMW() && w_node->setRMW(promise_rmw)) {
162                 hasCycles = true;
163                 return false;
164         }
165
166         /* Transfer back edges to w_node */
167         while (p_node->getNumBackEdges() > 0) {
168                 CycleNode *back = p_node->removeBackEdge();
169                 if (back == w_node)
170                         continue;
171                 if (back->is_promise()) {
172                         if (checkReachable(w_node, back)) {
173                                 /* Edge would create cycle; merge instead */
174                                 mustMerge->push_back(back->getPromise());
175                                 if (!mergeNodes(w_node, back, mustMerge))
176                                         return false;
177                         } else
178                                 back->addEdge(w_node);
179                 } else
180                         addNodeEdge(back, w_node);
181         }
182
183         /* Transfer forward edges to w_node */
184         while (p_node->getNumEdges() > 0) {
185                 CycleNode *forward = p_node->removeEdge();
186                 if (forward == w_node)
187                         continue;
188                 if (forward->is_promise()) {
189                         if (checkReachable(forward, w_node)) {
190                                 mustMerge->push_back(forward->getPromise());
191                                 if (!mergeNodes(w_node, forward, mustMerge))
192                                         return false;
193                         } else
194                                 w_node->addEdge(forward);
195                 } else
196                         addNodeEdge(w_node, forward);
197         }
198
199         erasePromiseNode(promise);
200         /* Not deleting p_node, to maintain consistency if mergeNodes() fails */
201
202         return !hasCycles;
203 }
204
205 /**
206  * Adds an edge between two CycleNodes.
207  * @param fromnode The edge comes from this CycleNode
208  * @param tonode The edge points to this CycleNode
209  * @return True, if new edge(s) are added; otherwise false
210  */
211 bool CycleGraph::addNodeEdge(CycleNode *fromnode, CycleNode *tonode)
212 {
213         bool added;
214
215         if (!hasCycles)
216                 hasCycles = checkReachable(tonode, fromnode);
217
218         if ((added = fromnode->addEdge(tonode)))
219                 rollbackvector.push_back(fromnode);
220
221         /*
222          * If the fromnode has a rmwnode that is not the tonode, we should add
223          * an edge between its rmwnode and the tonode
224          */
225         CycleNode *rmwnode = fromnode->getRMW();
226         if (rmwnode && rmwnode != tonode) {
227                 if (!hasCycles)
228                         hasCycles = checkReachable(tonode, rmwnode);
229
230                 if (rmwnode->addEdge(tonode)) {
231                         rollbackvector.push_back(rmwnode);
232                         added = true;
233                 }
234         }
235         return added;
236 }
237
238 /**
239  * @brief Add an edge between a write and the RMW which reads from it
240  *
241  * Handles special case of a RMW action, where the ModelAction rmw reads from
242  * the ModelAction/Promise from. The key differences are:
243  * (1) no write can occur in between the rmw and the from action.
244  * (2) Only one RMW action can read from a given write.
245  *
246  * @param from The edge comes from this ModelAction/Promise
247  * @param rmw The edge points to this ModelAction; this action must read from
248  * the ModelAction/Promise from
249  */
250 template <typename T>
251 void CycleGraph::addRMWEdge(const T *from, const ModelAction *rmw)
252 {
253         ASSERT(from);
254         ASSERT(rmw);
255
256         CycleNode *fromnode = getNode(from);
257         CycleNode *rmwnode = getNode(rmw);
258
259         /* Two RMW actions cannot read from the same write. */
260         if (fromnode->setRMW(rmwnode))
261                 hasCycles = true;
262         else
263                 rmwrollbackvector.push_back(fromnode);
264
265         /* Transfer all outgoing edges from the from node to the rmw node */
266         /* This process should not add a cycle because either:
267          * (1) The rmw should not have any incoming edges yet if it is the
268          * new node or
269          * (2) the fromnode is the new node and therefore it should not
270          * have any outgoing edges.
271          */
272         for (unsigned int i = 0; i < fromnode->getNumEdges(); i++) {
273                 CycleNode *tonode = fromnode->getEdge(i);
274                 if (tonode != rmwnode) {
275                         if (rmwnode->addEdge(tonode))
276                                 rollbackvector.push_back(rmwnode);
277                 }
278         }
279
280         addNodeEdge(fromnode, rmwnode);
281 }
282 /* Instantiate two forms of CycleGraph::addRMWEdge */
283 template void CycleGraph::addRMWEdge(const ModelAction *from, const ModelAction *rmw);
284 template void CycleGraph::addRMWEdge(const Promise *from, const ModelAction *rmw);
285
286 /**
287  * @brief Adds an edge between objects
288  *
289  * This function will add an edge between any two objects which can be
290  * associated with a CycleNode. That is, if they have a CycleGraph::getNode
291  * implementation.
292  *
293  * The object to is ordered after the object from.
294  *
295  * @param to The edge points to this object, of type T
296  * @param from The edge comes from this object, of type U
297  * @return True, if new edge(s) are added; otherwise false
298  */
299 template <typename T, typename U>
300 bool CycleGraph::addEdge(const T *from, const U *to)
301 {
302         ASSERT(from);
303         ASSERT(to);
304
305         CycleNode *fromnode = getNode(from);
306         CycleNode *tonode = getNode(to);
307
308         return addNodeEdge(fromnode, tonode);
309 }
310 /* Instantiate four forms of CycleGraph::addEdge */
311 template bool CycleGraph::addEdge(const ModelAction *from, const ModelAction *to);
312 template bool CycleGraph::addEdge(const ModelAction *from, const Promise *to);
313 template bool CycleGraph::addEdge(const Promise *from, const ModelAction *to);
314 template bool CycleGraph::addEdge(const Promise *from, const Promise *to);
315
316 #if SUPPORT_MOD_ORDER_DUMP
317
318 static void print_node(const CycleNode *node, FILE *file, int label)
319 {
320         modelclock_t idx;
321         if (node->is_promise()) {
322                 const Promise *promise = node->getPromise();
323                 idx = promise->get_reader(0)->get_seq_number();
324                 fprintf(file, "P%u", idx);
325                 if (label) {
326                         int first = 1;
327                         fprintf(file, " [label=\"P%u, T", idx);
328                         for (unsigned int i = 0 ; i < model->get_num_threads(); i++)
329                                 if (promise->thread_is_available(int_to_id(i))) {
330                                         fprintf(file, "%s%u", first ? "": ",", i);
331                                         first = 0;
332                                 }
333                         fprintf(file, "\"]");
334                 }
335         } else {
336                 const ModelAction *act = node->getAction();
337                 idx = act->get_seq_number();
338                 fprintf(file, "N%u", idx);
339                 if (label)
340                         fprintf(file, " [label=\"N%u, T%u\"]", idx, act->get_tid());
341         }
342 }
343
344 void CycleGraph::dumpNodes(FILE *file) const
345 {
346         for (unsigned int i = 0; i < nodeList.size(); i++) {
347                 CycleNode *n = nodeList[i];
348                 print_node(n, file, 1);
349                 fprintf(file, ";\n");
350                 if (n->getRMW() != NULL) {
351                         print_node(n, file, 0);
352                         fprintf(file, " -> ");
353                         print_node(n->getRMW(), file, 0);
354                         fprintf(file, "[style=dotted];\n");
355                 }
356                 for (unsigned int j = 0; j < n->getNumEdges(); j++) {
357                         print_node(n, file, 0);
358                         fprintf(file, " -> ");
359                         print_node(n->getEdge(j), file, 0);
360                         fprintf(file, ";\n");
361                 }
362         }
363 }
364
365 void CycleGraph::dumpGraphToFile(const char *filename) const
366 {
367         char buffer[200];
368         sprintf(buffer, "%s.dot", filename);
369         FILE *file = fopen(buffer, "w");
370         fprintf(file, "digraph %s {\n", filename);
371         dumpNodes(file);
372         fprintf(file, "}\n");
373         fclose(file);
374 }
375 #endif
376
377 /**
378  * Checks whether one CycleNode can reach another.
379  * @param from The CycleNode from which to begin exploration
380  * @param to The CycleNode to reach
381  * @return True, @a from can reach @a to; otherwise, false
382  */
383 bool CycleGraph::checkReachable(const CycleNode *from, const CycleNode *to) const
384 {
385         std::vector< const CycleNode *, ModelAlloc<const CycleNode *> > queue;
386         discovered->reset();
387
388         queue.push_back(from);
389         discovered->put(from, from);
390         while (!queue.empty()) {
391                 const CycleNode *node = queue.back();
392                 queue.pop_back();
393                 if (node == to)
394                         return true;
395
396                 for (unsigned int i = 0; i < node->getNumEdges(); i++) {
397                         CycleNode *next = node->getEdge(i);
398                         if (!discovered->contains(next)) {
399                                 discovered->put(next, next);
400                                 queue.push_back(next);
401                         }
402                 }
403         }
404         return false;
405 }
406
407 /**
408  * Checks whether one ModelAction/Promise can reach another ModelAction/Promise
409  * @param from The ModelAction or Promise from which to begin exploration
410  * @param to The ModelAction or Promise to reach
411  * @return True, @a from can reach @a to; otherwise, false
412  */
413 template <typename T, typename U>
414 bool CycleGraph::checkReachable(const T *from, const U *to) const
415 {
416         CycleNode *fromnode = getNode_noCreate(from);
417         CycleNode *tonode = getNode_noCreate(to);
418
419         if (!fromnode || !tonode)
420                 return false;
421
422         return checkReachable(fromnode, tonode);
423 }
424 /* Instantiate three forms of CycleGraph::checkReachable */
425 template bool CycleGraph::checkReachable(const ModelAction *from,
426                 const ModelAction *to) const;
427 template bool CycleGraph::checkReachable(const ModelAction *from,
428                 const Promise *to) const;
429 template bool CycleGraph::checkReachable(const Promise *from,
430                 const ModelAction *to) const;
431
432 /** @return True, if the promise has failed; false otherwise */
433 bool CycleGraph::checkPromise(const ModelAction *fromact, Promise *promise) const
434 {
435         std::vector< CycleNode *, ModelAlloc<CycleNode *> > queue;
436         discovered->reset();
437         CycleNode *from = actionToNode.get(fromact);
438
439         queue.push_back(from);
440         discovered->put(from, from);
441         while (!queue.empty()) {
442                 CycleNode *node = queue.back();
443                 queue.pop_back();
444
445                 if (node->getPromise() == promise)
446                         return true;
447                 if (!node->is_promise() &&
448                                 promise->eliminate_thread(node->getAction()->get_tid()))
449                         return true;
450
451                 for (unsigned int i = 0; i < node->getNumEdges(); i++) {
452                         CycleNode *next = node->getEdge(i);
453                         if (!discovered->contains(next)) {
454                                 discovered->put(next, next);
455                                 queue.push_back(next);
456                         }
457                 }
458         }
459         return false;
460 }
461
462 void CycleGraph::startChanges()
463 {
464         ASSERT(rollbackvector.empty());
465         ASSERT(rmwrollbackvector.empty());
466         ASSERT(oldCycles == hasCycles);
467 }
468
469 /** Commit changes to the cyclegraph. */
470 void CycleGraph::commitChanges()
471 {
472         rollbackvector.clear();
473         rmwrollbackvector.clear();
474         oldCycles = hasCycles;
475 }
476
477 /** Rollback changes to the previous commit. */
478 void CycleGraph::rollbackChanges()
479 {
480         for (unsigned int i = 0; i < rollbackvector.size(); i++)
481                 rollbackvector[i]->removeEdge();
482
483         for (unsigned int i = 0; i < rmwrollbackvector.size(); i++)
484                 rmwrollbackvector[i]->clearRMW();
485
486         hasCycles = oldCycles;
487         rollbackvector.clear();
488         rmwrollbackvector.clear();
489 }
490
491 /** @returns whether a CycleGraph contains cycles. */
492 bool CycleGraph::checkForCycles() const
493 {
494         return hasCycles;
495 }
496
497 /**
498  * @brief Constructor for a CycleNode
499  * @param act The ModelAction for this node
500  */
501 CycleNode::CycleNode(const ModelAction *act) :
502         action(act),
503         promise(NULL),
504         hasRMW(NULL)
505 {
506 }
507
508 /**
509  * @brief Constructor for a Promise CycleNode
510  * @param promise The Promise which was generated
511  */
512 CycleNode::CycleNode(const Promise *promise) :
513         action(NULL),
514         promise(promise),
515         hasRMW(NULL)
516 {
517 }
518
519 /**
520  * @param i The index of the edge to return
521  * @returns The a CycleNode edge indexed by i
522  */
523 CycleNode * CycleNode::getEdge(unsigned int i) const
524 {
525         return edges[i];
526 }
527
528 /** @returns The number of edges leaving this CycleNode */
529 unsigned int CycleNode::getNumEdges() const
530 {
531         return edges.size();
532 }
533
534 CycleNode * CycleNode::getBackEdge(unsigned int i) const
535 {
536         return back_edges[i];
537 }
538
539 unsigned int CycleNode::getNumBackEdges() const
540 {
541         return back_edges.size();
542 }
543
544 /**
545  * @brief Remove an element from a vector
546  * @param v The vector
547  * @param n The element to remove
548  * @return True if the element was found; false otherwise
549  */
550 template <typename T>
551 static bool vector_remove_node(std::vector<T, SnapshotAlloc<T> >& v, const T n)
552 {
553         for (unsigned int i = 0; i < v.size(); i++) {
554                 if (v[i] == n) {
555                         v.erase(v.begin() + i);
556                         return true;
557                 }
558         }
559         return false;
560 }
561
562 /**
563  * @brief Remove a (forward) edge from this CycleNode
564  * @return The CycleNode which was popped, if one exists; otherwise NULL
565  */
566 CycleNode * CycleNode::removeEdge()
567 {
568         if (edges.empty())
569                 return NULL;
570
571         CycleNode *ret = edges.back();
572         edges.pop_back();
573         vector_remove_node(ret->back_edges, this);
574         return ret;
575 }
576
577 /**
578  * @brief Remove a (back) edge from this CycleNode
579  * @return The CycleNode which was popped, if one exists; otherwise NULL
580  */
581 CycleNode * CycleNode::removeBackEdge()
582 {
583         if (back_edges.empty())
584                 return NULL;
585
586         CycleNode *ret = back_edges.back();
587         back_edges.pop_back();
588         vector_remove_node(ret->edges, this);
589         return ret;
590 }
591
592 /**
593  * Adds an edge from this CycleNode to another CycleNode.
594  * @param node The node to which we add a directed edge
595  * @return True if this edge is a new edge; false otherwise
596  */
597 bool CycleNode::addEdge(CycleNode *node)
598 {
599         for (unsigned int i = 0; i < edges.size(); i++)
600                 if (edges[i] == node)
601                         return false;
602         edges.push_back(node);
603         node->back_edges.push_back(this);
604         return true;
605 }
606
607 /** @returns the RMW CycleNode that reads from the current CycleNode */
608 CycleNode * CycleNode::getRMW() const
609 {
610         return hasRMW;
611 }
612
613 /**
614  * Set a RMW action node that reads from the current CycleNode.
615  * @param node The RMW that reads from the current node
616  * @return True, if this node already was read by another RMW; false otherwise
617  * @see CycleGraph::addRMWEdge
618  */
619 bool CycleNode::setRMW(CycleNode *node)
620 {
621         if (hasRMW != NULL)
622                 return true;
623         hasRMW = node;
624         return false;
625 }
626
627 /**
628  * Convert a Promise CycleNode into a concrete-valued CycleNode. Should only be
629  * used when there's no existing ModelAction CycleNode for this write.
630  *
631  * @param writer The ModelAction which wrote the future value represented by
632  * this CycleNode
633  */
634 void CycleNode::resolvePromise(const ModelAction *writer)
635 {
636         ASSERT(is_promise());
637         ASSERT(promise->is_compatible(writer));
638         action = writer;
639         promise = NULL;
640         ASSERT(!is_promise());
641 }