X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=action.h;h=c8ad85bcc99bf1e051771d7a6779b99f58f0dae7;hb=a65e234b607444355eb6e34097ee55ba93d4c01b;hp=ad34c830f4b61d0b2a214199c5d208aa5abddca2;hpb=b5d7d602016a4640c31b79ba9598dceefa778ab6;p=c11tester.git diff --git a/action.h b/action.h index ad34c830..c8ad85bc 100644 --- a/action.h +++ b/action.h @@ -70,7 +70,9 @@ typedef enum action_type { ATOMIC_UNLOCK, /**< An unlock action */ ATOMIC_NOTIFY_ONE, /**< A notify_one action */ ATOMIC_NOTIFY_ALL, /**< A notify all action */ - ATOMIC_WAIT /**< A wait action */ + ATOMIC_WAIT, /**< A wait action */ + ATOMIC_ANNOTATION /**< An annotation action to pass information + to a trace analysis */ } action_type_t; /* Forward declaration */ @@ -94,6 +96,8 @@ public: thread_id_t get_tid() const { return tid; } action_type get_type() const { return type; } memory_order get_mo() const { return order; } + memory_order get_original_mo() const { return original_order; } + void set_mo(memory_order order) { this->order = order; } void * get_location() const { return location; } modelclock_t get_seq_number() const { return seq_number; } uint64_t get_value() const { return value; } @@ -142,6 +146,7 @@ public: bool is_rmw() const; bool is_fence() const; bool is_initialization() const; + bool is_annotation() const; bool is_relaxed() const; bool is_acquire() const; bool is_release() const; @@ -182,12 +187,18 @@ public: MEMALLOC private: + const char * get_type_str() const; + const char * get_mo_str() const; + /** @brief Type of action (read, write, RMW, fence, thread create, etc.) */ action_type type; /** @brief The memory order for this operation. */ memory_order order; + /** @brief The original memory order parameter for this operation. */ + memory_order original_order; + /** @brief A pointer to the memory location for this action. */ void *location;