Remove duplicate functions
authorweiyu <weiyuluo1232@gmail.com>
Mon, 24 Aug 2020 23:37:37 +0000 (16:37 -0700)
committerweiyu <weiyuluo1232@gmail.com>
Mon, 24 Aug 2020 23:37:37 +0000 (16:37 -0700)
model.cc
model.h

index ea8f268ff270fa8d59674570103699c1eb36eb03..090743a49ff0ce6da1a1627acdd1367ebdc5c0ac 100644 (file)
--- a/model.cc
+++ b/model.cc
@@ -344,7 +344,7 @@ uint64_t ModelChecker::switch_to_master(ModelAction *act)
        return old->get_return_value();
 }
 
-void ModelChecker::continueRunExecution(Thread *old) 
+void ModelChecker::startRunExecution(Thread *old) 
 {
 
        if (params.traceminsize != 0 &&
@@ -358,34 +358,19 @@ void ModelChecker::continueRunExecution(Thread *old)
        Thread *thr = getNextThread();
        if (thr != nullptr) {
                scheduler->set_current_thread(thr);
-               if (Thread::swap(old, thr) < 0) {
-                       perror("swap threads");
-                       exit(EXIT_FAILURE);
-               }
-       } else
-               handleChosenThread(old);        
-}
-
-void ModelChecker::startRunExecution(ucontext_t *old) 
-{
-
-       if (params.traceminsize != 0 &&
-                       execution->get_curr_seq_num() > checkfree) {
-               checkfree += params.checkthreshold;
-               execution->collectActions();
-       }
-
-       thread_chosen = false;
-       curr_thread_num = 1;
-       Thread *thr = getNextThread();
-       if (thr != nullptr) {
-               scheduler->set_current_thread(thr);
-               if (Thread::swap(old, thr) < 0) {
-                       perror("swap threads");
-                       exit(EXIT_FAILURE);
+               if (old) {
+                       if (Thread::swap(old, thr) < 0) {
+                               perror("swap threads");
+                               exit(EXIT_FAILURE);
+                       }
+               } else {
+                       if (Thread::swap(&system_context, thr) < 0) {
+                               perror("swap threads");
+                               exit(EXIT_FAILURE);
+                       }       
                }
        } else
-               handleChosenThread(old);        
+               handleChosenThread(old);
 }
 
 Thread* ModelChecker::getNextThread()
@@ -414,15 +399,12 @@ Thread* ModelChecker::getNextThread()
 void ModelChecker::finishRunExecution(Thread *old) 
 {
        scheduler->set_current_thread(NULL);
-       if (Thread::swap(old, &system_context) < 0) {
-               perror("swap threads");
-               exit(EXIT_FAILURE);
+       if (old != NULL) {
+               if (Thread::swap(old, &system_context) < 0) {
+                       perror("swap threads");
+                       exit(EXIT_FAILURE);
+               }
        }
-}
-
-void ModelChecker::finishRunExecution(ucontext_t *old) 
-{
-       scheduler->set_current_thread(NULL);
        break_execution = true;
 }
 
@@ -507,52 +489,25 @@ uint64_t ModelChecker::switch_thread(ModelAction *act)
 
 void ModelChecker::handleNewValidThread(Thread *old, Thread *next)
 {
-       scheduler->set_current_thread(next);    
+       scheduler->set_current_thread(next);
 
        if (Thread::swap(old, next) < 0) {
                perror("swap threads");
                exit(EXIT_FAILURE);
-       }               
-}
-
-void ModelChecker::handleChosenThread(Thread *old)
-{
-       if (execution->has_asserted())
-               finishRunExecution(old);
-       if (!chosen_thread)
-               chosen_thread = get_next_thread();
-       if (!chosen_thread || chosen_thread->is_model_thread())
-               finishRunExecution(old);
-       if (chosen_thread->just_woken_up()) {
-               chosen_thread->set_wakeup_state(false);
-               chosen_thread->set_pending(NULL);
-               chosen_thread = NULL;
-               // Allow this thread to stash the next pending action
-               if (should_terminate_execution())
-                       finishRunExecution(old);
-               else
-                       continueRunExecution(old);      
-       } else {
-               /* Consume the next action for a Thread */
-               consumeAction();
-
-               if (should_terminate_execution())
-                       finishRunExecution(old);
-               else
-                       continueRunExecution(old);              
        }
 }
 
-void ModelChecker::handleChosenThread(ucontext_t *old)
+void ModelChecker::handleChosenThread(Thread *old)
 {
+       Thread * th = old ? old : thread_current();
        if (execution->has_asserted()) {
-               finishRunExecution(old);
+               finishRunExecution(th);
                return;
        }
        if (!chosen_thread)
                chosen_thread = get_next_thread();
        if (!chosen_thread || chosen_thread->is_model_thread()) {
-               finishRunExecution(old);
+               finishRunExecution(th);
                return;
        }
        if (chosen_thread->just_woken_up()) {
@@ -561,21 +516,20 @@ void ModelChecker::handleChosenThread(ucontext_t *old)
                chosen_thread = NULL;
                // Allow this thread to stash the next pending action
                if (should_terminate_execution())
-                       finishRunExecution(old);
+                       finishRunExecution(th);
                else
-                       startRunExecution(old); 
+                       startRunExecution(th);
        } else {
                /* Consume the next action for a Thread */
                consumeAction();
 
                if (should_terminate_execution())
-                       finishRunExecution(old);
+                       finishRunExecution(th);
                else
-                       startRunExecution(old);         
+                       startRunExecution(th);
        }
 }
 
-
 static void runChecker() {
        model->run();
        delete model;
@@ -614,7 +568,7 @@ void ModelChecker::run()
 
                        thread_chosen = false;
                        curr_thread_num = 1;
-                       startRunExecution(&system_context);
+                       startRunExecution(NULL);
                } while (!should_terminate_execution());
 
                finish_execution((exec+1) < params.maxexecutions);
diff --git a/model.h b/model.h
index 08f51b41752a8eced66f210b4a0c5477f82ff753..60e19f634de146247d59386345fa35da2d9450cb 100644 (file)
--- a/model.h
+++ b/model.h
@@ -55,15 +55,12 @@ public:
        uint64_t switch_to_master(ModelAction *act);
        uint64_t switch_thread(ModelAction *act);
 
-       void continueRunExecution(Thread *old);
-       void startRunExecution(ucontext_t *old);
+       void startRunExecution(Thread *old);
        void finishRunExecution(Thread *old);
-       void finishRunExecution(ucontext_t *old);
        void consumeAction();
        void chooseThread(ModelAction *act, Thread *thr);
        Thread * getNextThread();
        void handleChosenThread(Thread *old);
-       void handleChosenThread(ucontext_t *old);
        void handleNewValidThread(Thread *old, Thread *next);
 
        void assert_bug(const char *msg, ...);