X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=execution.h;h=854513cd4b16cc4c6bc74ad0916fe6d108ea6a78;hp=356c59a27f604fcbb5c618495f33ec47ca148ba8;hb=4d1d81928c3688fbcfb96ee68eab70e73f7771e5;hpb=01ffef59b0692d6f43f4094372f0d70b71b0abd4 diff --git a/execution.h b/execution.h index 356c59a2..854513cd 100644 --- a/execution.h +++ b/execution.h @@ -85,9 +85,6 @@ public: HashTable * getMutexMap() {return &mutex_map;} ModelAction * check_current_action(ModelAction *curr); - SnapVector * get_thrd_func_list() { return &thrd_func_list; } - SnapVector * get_thrd_last_entered_func() { return &thrd_last_entered_func; } - SnapVector< SnapList *> * get_thrd_func_act_lists() { return &thrd_func_act_lists; } bool isFinished() {return isfinished;} void setFinished() {isfinished = true;} @@ -111,7 +108,6 @@ private: void process_thread_action(ModelAction *curr); void read_from(ModelAction *act, ModelAction *rf); bool synchronize(const ModelAction *first, ModelAction *second); - void add_uninit_action_to_lists(ModelAction *act); void add_action_to_lists(ModelAction *act); void add_normal_write_to_lists(ModelAction *act); void add_write_to_lists(ModelAction *act); @@ -124,8 +120,8 @@ private: bool r_modification_order(ModelAction *curr, const ModelAction *rf, SnapVector *priorset, bool *canprune, bool check_only = false); void w_modification_order(ModelAction *curr); ClockVector * get_hb_from_write(ModelAction *rf) const; - ModelAction * get_uninitialized_action(ModelAction *curr) const; ModelAction * convertNonAtomicStore(void*); + void removeAction(ModelAction *act); #ifdef TLS pthread_key_t pthreadkey; @@ -135,13 +131,14 @@ private: /** The scheduler to use: tracks the running/ready Threads */ Scheduler * const scheduler; - action_list_t action_trace; SnapVector thread_map; SnapVector pthread_map; uint32_t pthread_counter; + action_list_t action_trace; + /** Per-object list of actions. Maps an object (i.e., memory location) * to a trace of all actions performed on the object. @@ -204,20 +201,6 @@ private: Thread * action_select_next_thread(const ModelAction *curr) const; bool paused_by_fuzzer(const ModelAction * act) const; - /* thrd_func_list stores a list of function ids for each thread. - * Each element in thrd_func_list stores the functions that - * thread i has entered and yet to exit from - * - * This data structure is handled by ModelHistory - */ - SnapVector thrd_func_list; - SnapVector thrd_last_entered_func; - - /* Keeps track of atomic actions that thread i has performed in some - * function. Index of SnapVector is thread id. SnapList simulates - * the call stack. - */ - SnapVector< SnapList *> thrd_func_act_lists; bool isfinished; };