Add macro for recording atomic statics and report data races
[c11tester.git] / schedule.cc
1 #include <string.h>
2 #include <stdlib.h>
3
4 #include "threads-model.h"
5 #include "schedule.h"
6 #include "common.h"
7 #include "model.h"
8 #include "execution.h"
9 #include "fuzzer.h"
10
11 /**
12  * Format an "enabled_type_t" for printing
13  * @param e The type to format
14  * @param str The output character array
15  */
16 void enabled_type_to_string(enabled_type_t e, char *str)
17 {
18         const char *res;
19         switch (e) {
20         case THREAD_DISABLED:
21                 res = "disabled";
22                 break;
23         case THREAD_ENABLED:
24                 res = "enabled";
25                 break;
26         case THREAD_SLEEP_SET:
27                 res = "sleep";
28                 break;
29         default:
30                 ASSERT(0);
31                 res = NULL;
32                 break;
33         }
34         strcpy(str, res);
35 }
36
37 /** Constructor */
38 Scheduler::Scheduler() :
39         execution(NULL),
40         enabled(NULL),
41         enabled_len(0),
42         curr_thread_index(0),
43         current(NULL)
44 {
45 }
46
47 /**
48  * @brief Register the ModelExecution engine
49  * @param execution The ModelExecution which is controlling execution
50  */
51 void Scheduler::register_engine(ModelExecution *execution)
52 {
53         this->execution = execution;
54 }
55
56 void Scheduler::set_enabled(Thread *t, enabled_type_t enabled_status) {
57         int threadid = id_to_int(t->get_id());
58         if (threadid >= enabled_len) {
59                 enabled_type_t *new_enabled = (enabled_type_t *)snapshot_malloc(sizeof(enabled_type_t) * (threadid + 1));
60                 memset(&new_enabled[enabled_len], 0, (threadid + 1 - enabled_len) * sizeof(enabled_type_t));
61                 if (enabled != NULL) {
62                         memcpy(new_enabled, enabled, enabled_len * sizeof(enabled_type_t));
63                         snapshot_free(enabled);
64                 }
65                 enabled = new_enabled;
66                 enabled_len = threadid + 1;
67         }
68         enabled[threadid] = enabled_status;
69 }
70
71 /**
72  * @brief Check if a Thread is currently enabled
73  *
74  * Check if a Thread is currently enabled. "Enabled" includes both
75  * THREAD_ENABLED and THREAD_SLEEP_SET.
76  * @param t The Thread to check
77  * @return True if the Thread is currently enabled
78  */
79 bool Scheduler::is_enabled(const Thread *t) const
80 {
81         return is_enabled(t->get_id());
82 }
83
84 /**
85  * @brief Check if a Thread is currently enabled
86  *
87  * Check if a Thread is currently enabled. "Enabled" includes both
88  * THREAD_ENABLED and THREAD_SLEEP_SET.
89  * @param tid The ID of the Thread to check
90  * @return True if the Thread is currently enabled
91  */
92 bool Scheduler::is_enabled(thread_id_t tid) const
93 {
94         int i = id_to_int(tid);
95         return (i >= enabled_len) ? false : (enabled[i] != THREAD_DISABLED);
96 }
97
98 /**
99  * @brief Check if a Thread is currently in the sleep set
100  * @param t The Thread to check
101  * @return True if the Thread is currently enabled
102  */
103 bool Scheduler::is_sleep_set(const Thread *t) const
104 {
105         return get_enabled(t) == THREAD_SLEEP_SET;
106 }
107
108 /**
109  * @brief Check if execution is stuck with no enabled threads and some sleeping
110  * thread
111  * @return True if no threads are enabled and some thread is in the sleep set;
112  * false otherwise
113  */
114 bool Scheduler::all_threads_sleeping() const
115 {
116         bool sleeping = false;
117         for (int i = 0;i < enabled_len;i++)
118                 if (enabled[i] == THREAD_ENABLED)
119                         return false;
120                 else if (enabled[i] == THREAD_SLEEP_SET)
121                         sleeping = true;
122         return sleeping;
123 }
124
125 enabled_type_t Scheduler::get_enabled(const Thread *t) const
126 {
127         int id = id_to_int(t->get_id());
128         ASSERT(id < enabled_len);
129         return enabled[id];
130 }
131
132 /**
133  * Add a Thread to the sleep set.
134  * @param t The Thread to add
135  */
136 void Scheduler::add_sleep(Thread *t)
137 {
138         DEBUG("thread %d\n", id_to_int(t->get_id()));
139         set_enabled(t, THREAD_SLEEP_SET);
140 }
141
142 /**
143  * Remove a Thread from the sleep set.
144  * @param t The Thread to remove
145  */
146 void Scheduler::remove_sleep(Thread *t)
147 {
148         DEBUG("thread %d\n", id_to_int(t->get_id()));
149         set_enabled(t, THREAD_ENABLED);
150 }
151
152 /**
153  * Add a Thread to the scheduler's ready list.
154  * @param t The Thread to add
155  */
156 void Scheduler::add_thread(Thread *t)
157 {
158         DEBUG("thread %d\n", id_to_int(t->get_id()));
159         ASSERT(!t->is_model_thread());
160         set_enabled(t, THREAD_ENABLED);
161 }
162
163 /**
164  * Remove a given Thread from the scheduler.
165  * @param t The Thread to remove
166  */
167 void Scheduler::remove_thread(Thread *t)
168 {
169         if (current == t)
170                 current = NULL;
171         set_enabled(t, THREAD_DISABLED);
172 }
173
174 /**
175  * Prevent a Thread from being scheduled. The sleeping Thread should be
176  * re-awoken via Scheduler::wake.
177  * @param thread The Thread that should sleep
178  */
179 void Scheduler::sleep(Thread *t)
180 {
181         set_enabled(t, THREAD_DISABLED);
182         t->set_state(THREAD_BLOCKED);
183 }
184
185 /**
186  * Wake a Thread up that was previously waiting (see Scheduler::wait)
187  * @param t The Thread to wake up
188  */
189 void Scheduler::wake(Thread *t)
190 {
191         ASSERT(!t->is_model_thread());
192         set_enabled(t, THREAD_ENABLED);
193         t->set_state(THREAD_READY);
194 }
195
196 /**
197  * @brief Select a Thread to run via round-robin
198  *
199  *
200  * @return The next Thread to run
201  */
202 Thread * Scheduler::select_next_thread()
203 {
204         int avail_threads = 0;
205         int sleep_threads = 0;
206         int thread_list[enabled_len], sleep_list[enabled_len];
207         Thread * thread;
208
209         for (int i = 0;i < enabled_len;i++) {
210                 if (enabled[i] == THREAD_ENABLED)
211                         thread_list[avail_threads++] = i;
212                 else if (enabled[i] == THREAD_SLEEP_SET)
213                         sleep_list[sleep_threads++] = i;
214         }
215
216         if (avail_threads == 0 && !execution->getFuzzer()->has_paused_threads()) {
217                 if (sleep_threads != 0) {
218                         // No threads available, but some threads sleeping. Wake up one of them
219                         thread = execution->getFuzzer()->selectThread(sleep_list, sleep_threads);
220                         remove_sleep(thread);
221                         thread->set_wakeup_state(true);
222                 } else {
223                         return NULL;    // No threads available and no threads sleeping.
224                 }
225         } else {
226                 // Some threads are available
227                 thread = execution->getFuzzer()->selectThread(thread_list, avail_threads);
228         }
229
230         curr_thread_index = id_to_int(thread->get_id());
231         return thread;
232 }
233
234 void Scheduler::set_scheduler_thread(thread_id_t tid) {
235         curr_thread_index=id_to_int(tid);
236 }
237
238 /**
239  * @brief Set the current "running" Thread
240  * @param t Thread to run
241  */
242 void Scheduler::set_current_thread(Thread *t)
243 {
244         ASSERT(!t || !t->is_model_thread());
245
246         current = t;
247         if (DBG_ENABLED())
248                 print();
249 }
250
251 /**
252  * @return The currently-running Thread
253  */
254 Thread * Scheduler::get_current_thread() const
255 {
256         ASSERT(!current || !current->is_model_thread());
257         return current;
258 }
259
260 /**
261  * Print debugging information about the current state of the scheduler. Only
262  * prints something if debugging is enabled.
263  */
264 void Scheduler::print() const
265 {
266         int curr_id = current ? id_to_int(current->get_id()) : -1;
267
268         model_print("Scheduler: ");
269         for (int i = 0;i < enabled_len;i++) {
270                 char str[20];
271                 enabled_type_to_string(enabled[i], str);
272                 model_print("[%i: %s%s]", i, i == curr_id ? "current, " : "", str);
273         }
274         model_print("\n");
275 }