X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=model.h;h=a5262d2b5c46e18e697cedf646cb0eb539fed3d6;hb=09c3eb5539455e82dcb357fbce82bf5974c3a37c;hp=6685ab365c64179ff91c303cf19b8fd709da05c4;hpb=b588ae090b73e131a824d5328e5e8a6ead760148;p=model-checker.git diff --git a/model.h b/model.h index 6685ab3..a5262d2 100644 --- a/model.h +++ b/model.h @@ -121,7 +121,7 @@ public: ClockVector * get_cv(thread_id_t tid) const; ModelAction * get_parent_action(thread_id_t tid) const; void check_promises_thread_disabled(); - void mo_check_promises(thread_id_t tid, const ModelAction *write, const ModelAction * read); + void mo_check_promises(const ModelAction *act, bool is_read_check); void check_promises(thread_id_t tid, ClockVector *old_cv, ClockVector *merge_cv); bool isfeasibleprefix() const; @@ -148,7 +148,6 @@ private: modelclock_t get_next_seq_num(); bool next_execution(); - void set_current_action(ModelAction *act); ModelAction * check_current_action(ModelAction *curr); bool initialize_curr_action(ModelAction **curr); bool process_read(ModelAction *curr, bool second_part_of_rmw); @@ -160,7 +159,7 @@ private: bool read_from(ModelAction *act, const ModelAction *rf); bool check_action_enabled(ModelAction *curr); - bool take_step(ModelAction *curr); + Thread * take_step(ModelAction *curr); void check_recency(ModelAction *curr, const ModelAction *rf); ModelAction * get_last_conflict(ModelAction *act); @@ -182,7 +181,6 @@ private: ModelAction * get_last_unlock(ModelAction *curr) const; void build_reads_from_past(ModelAction *curr); ModelAction * process_rmw(ModelAction *curr); - void post_r_modification_order(ModelAction *curr, const ModelAction *rf); template bool r_modification_order(ModelAction *curr, const rf_type *rf);