3 * @brief Promise class --- tracks future obligations for execution
4 * related to weakly ordered writes.
12 #include "modeltypes.h"
14 #include "stl-model.h"
21 modelclock_t expiration;
27 Promise(const ModelExecution *execution, ModelAction *read, struct future_value fv);
28 bool add_reader(ModelAction *reader);
29 ModelAction * get_reader(unsigned int i) const;
30 unsigned int get_num_readers() const { return readers.size(); }
31 bool eliminate_thread(thread_id_t tid);
32 void add_thread(thread_id_t tid);
33 bool thread_is_available(thread_id_t tid) const;
34 bool has_failed() const;
35 void set_write(const ModelAction *act) { write = act; }
36 const ModelAction * get_write() const { return write; }
37 int get_num_available_threads() const { return num_available_threads; }
38 bool is_compatible(const ModelAction *act) const;
39 bool is_compatible_exclusive(const ModelAction *act) const;
40 bool same_value(const ModelAction *write) const;
41 bool same_location(const ModelAction *act) const;
43 modelclock_t get_expiration() const { return fv.expiration; }
44 uint64_t get_value() const { return fv.value; }
45 struct future_value get_fv() const { return fv; }
47 int get_index() const;
51 bool equals(const Promise *x) const { return this == x; }
52 bool equals(const ModelAction *x) const { return false; }
56 /** @brief The execution which created this Promise */
57 const ModelExecution *execution;
59 /** @brief Thread ID(s) for thread(s) that potentially can satisfy this
61 SnapVector<bool> available_thread;
63 int num_available_threads;
65 const future_value fv;
67 /** @brief The action(s) which read the promised future value */
68 SnapVector<ModelAction *> readers;
70 const ModelAction *write;