fix bug
[cdsspec-compiler.git] / main.cc
1 /** @file main.cc
2  *  @brief Entry point for the model checker.
3  */
4
5 #include "libthreads.h"
6 #include "common.h"
7 #include "threads.h"
8
9 #include "datarace.h"
10
11 /* global "model" object */
12 #include "model.h"
13 #include "snapshot-interface.h"
14
15 /** The thread_system_next function takes the next step in the
16  *  execution.  @return Returns the 1 if there is another step and 0
17  *  otherwise.
18  */
19
20 static int thread_system_next(void) {
21         Thread *curr, *next;
22
23         curr = thread_current();
24         if (curr) {
25                 if (curr->get_state() == THREAD_READY) {
26                         model->check_current_action();
27                         model->scheduler->add_thread(curr);
28                 } else if (curr->get_state() == THREAD_RUNNING)
29                         /* Stopped while running; i.e., completed */
30                         curr->complete();
31                 else
32                         ASSERT(false);
33         }
34         next = model->scheduler->next_thread();
35         if (next)
36                 next->set_state(THREAD_RUNNING);
37         DEBUG("(%d, %d)\n", curr ? curr->get_id() : -1, next ? next->get_id() : -1);
38         if (!next)
39                 return 1;
40         return Thread::swap(model->get_system_context(), next);
41 }
42
43 /** The thread_wait_finish method runs the current execution until we
44  *  have no more steps to take.
45  */
46
47 static void thread_wait_finish(void) {
48         DBG();
49
50         while (!thread_system_next());
51 }
52
53
54 /** The real_main function contains the main model checking loop. */
55
56 void real_main() {
57         thrd_t user_thread;
58         ucontext_t main_context;
59   //Initialize race detector
60   initRaceDetector();
61
62         //Create the singleton SnapshotStack object
63         snapshotObject = new SnapshotStack();
64
65         model = new ModelChecker();
66
67         if (getcontext(&main_context))
68                 return;
69
70         model->set_system_context(&main_context);
71
72         snapshotObject->snapshotStep(0);
73
74         do {
75                 /* Start user program */
76                 model->add_thread(new Thread(&user_thread, (void (*)(void *)) &user_main, NULL));
77
78                 /* Wait for all threads to complete */
79                 thread_wait_finish();
80         } while (model->next_execution());
81
82         delete model;
83
84         DEBUG("Exiting\n");
85 }
86
87 int main_numargs;
88 char ** main_args;
89
90 /**
91  * Main function.  Just initializes snapshotting library and the
92  * snapshotting library calls the real_main function.
93  */
94 int main(int numargs, char ** args) {
95         /* Stash this stuff in case someone wants it eventually */
96         main_numargs=numargs;
97         main_args=args;
98
99         /* Let's jump in quickly and start running stuff */
100         initSnapShotLibrary(10000, 1024, 1024, 1000, &real_main);
101 }