future_value: add thread ID parameter
[c11tester.git] / promise.h
1 /** @file promise.h
2  *
3  *  @brief Promise class --- tracks future obligations for execution
4  *  related to weakly ordered writes.
5  */
6
7 #ifndef __PROMISE_H__
8 #define __PROMISE_H__
9
10 #include <inttypes.h>
11 #include "threads-model.h"
12
13 #include "model.h"
14 #include "modeltypes.h"
15
16 struct future_value {
17         uint64_t value;
18         modelclock_t expiration;
19         thread_id_t tid;
20 };
21
22 class Promise {
23  public:
24         Promise(ModelAction *act, struct future_value fv) :
25                 value(fv.value),
26                 expiration(fv.expiration),
27                 read(act),
28                 write(NULL)
29         {
30                 eliminate_thread(act->get_tid());
31         }
32         modelclock_t get_expiration() const { return expiration; }
33         ModelAction * get_action() const { return read; }
34         bool eliminate_thread(thread_id_t tid);
35         bool thread_is_eliminated(thread_id_t tid) const;
36         bool has_failed() const;
37         uint64_t get_value() const { return value; }
38         void set_write(const ModelAction *act) { write = act; }
39         const ModelAction * get_write() { return write; }
40
41         SNAPSHOTALLOC
42  private:
43         std::vector< bool, SnapshotAlloc<bool> > eliminated_thread;
44         const uint64_t value;
45         const modelclock_t expiration;
46         ModelAction * const read;
47         const ModelAction *write;
48 };
49
50 #endif