X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=action.h;h=d7d86ced55de125a0a8dbd6e167e30c47bf0bdd8;hb=1f2a30ddc8f38f3f45d62d169b766c0c38364ecd;hp=dc560174bee561ca9f32fcec2d11d358ab040782;hpb=4fa31aac91303266f4c87a6cd5d60cbab34135db;p=model-checker.git diff --git a/action.h b/action.h index dc56017..d7d86ce 100644 --- a/action.h +++ b/action.h @@ -37,6 +37,15 @@ using std::memory_order_seq_cst; */ #define VALUE_NONE 0xdeadbeef +/** + * @brief The "location" at which a fence occurs + * + * We need a non-zero memory location to associate with fences, since our hash + * tables don't handle NULL-pointer keys. HACK: Hopefully this doesn't collide + * with any legitimate memory locations. + */ +#define FENCE_LOCATION ((void *)0x7) + /** @brief Represents an action type, identifying one of several types of * ModelAction */ typedef enum action_type { @@ -173,6 +182,9 @@ 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;