X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=action.h;h=63c0375211c513ef704c4ee4c3fbb8abe832fdb5;hb=084fd1d6e7a9680f3ec48f38c37dda0600ffb612;hp=d0f02a327e6d8373d35b2d56c3dd250a40aa948b;hpb=75fd45bf45d7ec1ac8db7cb6209106ea4e3fc5ab;p=c11tester.git diff --git a/action.h b/action.h index d0f02a32..63c03752 100644 --- a/action.h +++ b/action.h @@ -15,6 +15,7 @@ class ClockVector; class Thread; +class Promise; using std::memory_order; using std::memory_order_relaxed; @@ -79,13 +80,14 @@ public: void * get_location() const { return location; } modelclock_t get_seq_number() const { return seq_number; } uint64_t get_value() const { return value; } - void set_value(uint64_t v) { value = v; } const ModelAction * get_reads_from() const { return reads_from; } + const Promise * get_reads_from_promise() const { return reads_from_promise; } Node * get_node() const; void set_node(Node *n) { node = n; } void set_read_from(const ModelAction *act); + void set_read_from_promise(const Promise *promise); /** Store the most recent fence-release from the same thread * @param fence The fence-release that occured prior to this */ @@ -149,6 +151,8 @@ public: bool get_sleep_flag() { return sleep_flag; } unsigned int hash() const; + bool equals(const ModelAction *x) const { return this == x; } + bool equals(const Promise *x) const { return false; } MEMALLOC private: @@ -170,6 +174,9 @@ private: /** The action that this action reads from. Only valid for reads */ const ModelAction *reads_from; + /** The promise that this action reads from. Only valid for reads */ + const Promise *reads_from_promise; + /** The last fence release from the same thread */ const ModelAction *last_fence_release; @@ -186,6 +193,4 @@ private: bool sleep_flag; }; -typedef std::list< ModelAction *, SnapshotAlloc > action_list_t; - #endif /* __ACTION_H__ */