X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=execution.h;h=9322f55b4c3e0de4ab37502e328d812bf479be68;hb=refs%2Fheads%2Fmaster;hp=9c9c1ca454431dc64a3ee8ddf17cd19d13c8a5d4;hpb=c3240e7376fc80855529257647bd010a2cce7d6f;p=model-checker.git diff --git a/execution.h b/execution.h index 9c9c1ca..9322f55 100644 --- a/execution.h +++ b/execution.h @@ -116,6 +116,8 @@ public: action_list_t * get_action_trace() { return &action_trace; } + CycleGraph * const get_mo_graph() { return mo_graph; } + SNAPSHOTALLOC private: int get_execution_number() const; @@ -132,6 +134,7 @@ private: bool mo_may_allow(const ModelAction *writer, const ModelAction *reader); bool promises_may_allow(const ModelAction *writer, const ModelAction *reader) const; void set_bad_synchronization(); + void set_bad_sc_read(); bool promises_expired() const; bool should_wake_up(const ModelAction *curr, const Thread *thread) const; void wake_up_sleeping_actions(ModelAction *curr); @@ -187,7 +190,7 @@ private: void propagate_clockvector(ModelAction *acquire, work_queue_t *work); bool resolve_release_sequences(void *location, work_queue_t *work_queue); void add_future_value(const ModelAction *writer, ModelAction *reader); - + bool check_coherence_promise(const ModelAction *write, const ModelAction *read); ModelAction * get_uninitialized_action(const ModelAction *curr) const; action_list_t action_trace;