Small edits
[c11tester.git] / model.cc
index 596e528d84e75adcacdda1d3f6bd71345333100a..5292b24745a3eaa2c9ddd99c904dfd05718bc1b6 100644 (file)
--- a/model.cc
+++ b/model.cc
@@ -65,6 +65,7 @@ ModelChecker::ModelChecker() :
        history(new ModelHistory()),
        execution(new ModelExecution(this, scheduler)),
        execution_number(1),
+       curr_thread_num(1),
        trace_analyses(),
        inspect_plugin(NULL)
 {
@@ -331,7 +332,6 @@ void ModelChecker::startRunExecution(Thread *old) {
 
                thread_chosen = false;
                curr_thread_num = 1;
-
                Thread *thr = getNextThread(old);
                if (thr != nullptr) {
                        scheduler->set_current_thread(thr);
@@ -343,29 +343,7 @@ void ModelChecker::startRunExecution(Thread *old) {
                        return;
                }
 
-               if (execution->has_asserted()) {
-                       finishRunExecution(old);
-                       return;
-               }
-               if (!chosen_thread)
-                       chosen_thread = get_next_thread();
-               if (!chosen_thread || chosen_thread->is_model_thread()) {
-                       finishRunExecution(old);
-                       return;
-               }
-               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
-                       continue;
-               }
-
-               /* Consume the next action for a Thread */
-               consumeAction();
-
-               if (should_terminate_execution()) {
-                       finishRunExecution(old);
+               if (!handleChosenThread(old)) {
                        return;
                }
        }
@@ -403,6 +381,9 @@ void ModelChecker::finishRunExecution(Thread *old)
 {
        scheduler->set_current_thread(NULL);
 
+       /** Reset curr_thread_num to initial value for next execution. */
+       curr_thread_num = 1;
+
        /** If we have more executions, we won't make it past this call. */
        finish_execution(execution_number < params.maxexecutions);
 
@@ -424,13 +405,6 @@ void ModelChecker::finishRunExecution(Thread *old)
        _Exit(0);
 }
 
-void ModelChecker::consumeAction()
-{
-       ModelAction *curr = chosen_thread->get_pending();
-       chosen_thread->set_pending(NULL);
-       chosen_thread = execution->take_step(curr);
-}
-
 /* Allow pending relaxed/release stores or thread actions to perform first */
 void ModelChecker::chooseThread(ModelAction *act, Thread *thr)
 {
@@ -479,12 +453,6 @@ uint64_t ModelChecker::switch_thread(ModelAction *act)
        if (old->is_waiting_on(old))
                assert_bug("Deadlock detected (thread %u)", curr_thread_num);
 
-       if (act && execution->is_enabled(old) && !execution->check_action_enabled(act)) {
-               scheduler->sleep(old);
-       }
-       chooseThread(act, old);
-
-       curr_thread_num++;
        Thread* next = getNextThread(old);
        if (next != nullptr) {
                scheduler->set_current_thread(next);
@@ -492,41 +460,46 @@ uint64_t ModelChecker::switch_thread(ModelAction *act)
                        perror("swap threads");
                        exit(EXIT_FAILURE);
                }
-       } else
-               handleChosenThread(old);
-
+       } else {
+               if (handleChosenThread(old)) {
+                       startRunExecution(old);
+               }
+       }
        return old->get_return_value();
 }
 
-void ModelChecker::handleChosenThread(Thread *old)
+bool ModelChecker::handleChosenThread(Thread *old)
 {
        if (execution->has_asserted()) {
                finishRunExecution(old);
-               return;
+               return false;
        }
-       if (!chosen_thread)
+       if (!chosen_thread) {
                chosen_thread = get_next_thread();
+       }
        if (!chosen_thread || chosen_thread->is_model_thread()) {
                finishRunExecution(old);
-               return;
+               return false;
        }
        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
-               startRunExecution(old);
-               return;
+               return true;
        }
 
        // Consume the next action for a Thread
-       consumeAction();
+       ModelAction *curr = chosen_thread->get_pending();
+       chosen_thread->set_pending(NULL);
+       chosen_thread = execution->take_step(curr);
 
        if (should_terminate_execution()) {
                finishRunExecution(old);
-               return;
-       } else
-               startRunExecution(old);
+               return false;
+       } else {
+               return true;
+       }
 }
 
 void ModelChecker::startChecker() {