X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=schedule.cc;h=915bbc90fb3daa8d5985decdf9e1641a93e59993;hp=93379c2d9df3f1a03a4046ae4753a07115400625;hb=1cdcdc24156572a63fd8261a7a3dd2f04ca6648c;hpb=15fabc6f4e6591341940a8087a8dd088af59bb5c diff --git a/schedule.cc b/schedule.cc index 93379c2d..915bbc90 100644 --- a/schedule.cc +++ b/schedule.cc @@ -7,6 +7,32 @@ #include "model.h" #include "nodestack.h" +/** + * Format an "enabled_type_t" for printing + * @param e The type to format + * @param str The output character array + */ +static void enabled_type_to_string(enabled_type_t e, char *str) +{ + const char *res; + switch (e) { + case THREAD_DISABLED: + res = "disabled"; + break; + case THREAD_ENABLED: + res = "enabled"; + break; + case THREAD_SLEEP_SET: + res = "sleep"; + break; + default: + ASSERT(0); + res = NULL; + break; + } + strcpy(str, res); +} + /** Constructor */ Scheduler::Scheduler() : enabled(NULL), @@ -17,44 +43,71 @@ Scheduler::Scheduler() : } void Scheduler::set_enabled(Thread *t, enabled_type_t enabled_status) { - int threadid=id_to_int(t->get_id()); - if (threadid>=enabled_len) { + int threadid = id_to_int(t->get_id()); + if (threadid >= enabled_len) { enabled_type_t *new_enabled = (enabled_type_t *)snapshot_malloc(sizeof(enabled_type_t) * (threadid + 1)); - memset(&new_enabled[enabled_len], 0, (threadid+1-enabled_len)*sizeof(enabled_type_t)); + memset(&new_enabled[enabled_len], 0, (threadid + 1 - enabled_len) * sizeof(enabled_type_t)); if (enabled != NULL) { - memcpy(new_enabled, enabled, enabled_len*sizeof(enabled_type_t)); + memcpy(new_enabled, enabled, enabled_len * sizeof(enabled_type_t)); snapshot_free(enabled); } - enabled=new_enabled; - enabled_len=threadid+1; + enabled = new_enabled; + enabled_len = threadid + 1; } - enabled[threadid]=enabled_status; + enabled[threadid] = enabled_status; if (enabled_status == THREAD_DISABLED) model->check_promises_thread_disabled(); } /** * @brief Check if a Thread is currently enabled + * + * Check if a Thread is currently enabled. "Enabled" includes both + * THREAD_ENABLED and THREAD_SLEEP_SET. * @param t The Thread to check * @return True if the Thread is currently enabled */ -bool Scheduler::is_enabled(Thread *t) const +bool Scheduler::is_enabled(const Thread *t) const { - int id = id_to_int(t->get_id()); - return (id >= enabled_len) ? false : (enabled[id] != THREAD_DISABLED); + return is_enabled(t->get_id()); +} + +/** + * @brief Check if a Thread is currently enabled + * + * Check if a Thread is currently enabled. "Enabled" includes both + * THREAD_ENABLED and THREAD_SLEEP_SET. + * @param tid The ID of the Thread to check + * @return True if the Thread is currently enabled + */ +bool Scheduler::is_enabled(thread_id_t tid) const +{ + int i = id_to_int(tid); + return (i >= enabled_len) ? false : (enabled[i] != THREAD_DISABLED); } -enabled_type_t Scheduler::get_enabled(Thread *t) { +/** + * @brief Check if a Thread is currently in the sleep set + * @param t The Thread to check + * @return True if the Thread is currently enabled + */ +bool Scheduler::is_sleep_set(const Thread *t) const +{ + return get_enabled(t) == THREAD_SLEEP_SET; +} + +enabled_type_t Scheduler::get_enabled(const Thread *t) const +{ int id = id_to_int(t->get_id()); - ASSERT(idget_enabled_array(); - for(int i=0;iget_enabled_array(); + for (int i = 0; i < enabled_len; i++) { + if (enabled_array[i] == THREAD_SLEEP_SET) { + enabled[i] = THREAD_SLEEP_SET; } } } @@ -133,30 +186,32 @@ void Scheduler::wake(Thread *t) */ Thread * Scheduler::next_thread(Thread *t) { - if ( t == NULL ) { + if (t == NULL) { int old_curr_thread = curr_thread_index; - bool have_enabled_thread_with_priority=false; - Node *n=model->get_curr_node(); + bool have_enabled_thread_with_priority = false; + Node *n = model->get_curr_node(); - for(int i=0;ihas_priority(tid)) { + DEBUG("Node (tid %d) has priority\n", i); //Have a thread with priority - if (enabled[i]!=THREAD_DISABLED) - have_enabled_thread_with_priority=true; + if (enabled[i] != THREAD_DISABLED) + have_enabled_thread_with_priority = true; } } - while(true) { - curr_thread_index = (curr_thread_index+1) % enabled_len; - thread_id_t curr_tid=int_to_id(curr_thread_index); - if (enabled[curr_thread_index]==THREAD_ENABLED&& - (!have_enabled_thread_with_priority||n->has_priority(curr_tid))) { + while (true) { + curr_thread_index = (curr_thread_index + 1) % enabled_len; + thread_id_t curr_tid = int_to_id(curr_thread_index); + if (enabled[curr_thread_index] == THREAD_ENABLED && + (!have_enabled_thread_with_priority || n->has_priority(curr_tid))) { t = model->get_thread(curr_tid); break; } if (curr_thread_index == old_curr_thread) { - print(); + if (DBG_ENABLED()) + print(); return NULL; } } @@ -168,7 +223,8 @@ Thread * Scheduler::next_thread(Thread *t) } current = t; - print(); + if (DBG_ENABLED()) + print(); return t; } @@ -187,8 +243,13 @@ Thread * Scheduler::get_current_thread() const */ void Scheduler::print() const { - if (current) - DEBUG("Current thread: %d\n", id_to_int(current->get_id())); - else - DEBUG("No current thread\n"); + int curr_id = current ? id_to_int(current->get_id()) : -1; + + model_print("Scheduler: "); + for (int i = 0; i < enabled_len; i++) { + char str[20]; + enabled_type_to_string(enabled[i], str); + model_print("[%i: %s%s]", i, i == curr_id ? "current, " : "", str); + } + model_print("\n"); }