X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=promise.cc;h=86c3c584f12ba884d190c792b10f459e225c8330;hb=7bd9b5a1446863dc1a9de9683476f5a480dfba91;hp=7f6f5e7b1823bb5dd3285196ba57f4ee172b0f37;hpb=ac4c9ec2a1ddb227fbe88ee505f7126485b94cb9;p=model-checker.git diff --git a/promise.cc b/promise.cc index 7f6f5e7..86c3c58 100644 --- a/promise.cc +++ b/promise.cc @@ -1,6 +1,26 @@ +#define __STDC_FORMAT_MACROS +#include + #include "promise.h" #include "model.h" #include "schedule.h" +#include "action.h" +#include "threads-model.h" + +/** + * @brief Promise constructor + * @param read The read which reads from a promised future value + * @param fv The future value that is promised + */ +Promise::Promise(ModelAction *read, struct future_value fv) : + num_available_threads(0), + fv(fv), + read(read), + write(NULL) +{ + add_thread(fv.tid); + eliminate_thread(read->get_tid()); +} /** * Eliminate a thread which no longer can satisfy this promise. Once all @@ -13,27 +33,54 @@ bool Promise::eliminate_thread(thread_id_t tid) { unsigned int id = id_to_int(tid); - if (id >= eliminated_thread.size()) - eliminated_thread.resize(id + 1, false); - if (eliminated_thread[id]) + if (!thread_is_available(tid)) return false; - eliminated_thread[id] = true; + available_thread[id] = false; + num_available_threads--; return has_failed(); } /** - * Check if a thread has already been eliminated from resolving this - * promise + * Add a thread which may resolve this promise + * + * @param tid The thread ID + */ +void Promise::add_thread(thread_id_t tid) +{ + unsigned int id = id_to_int(tid); + if (id >= available_thread.size()) + available_thread.resize(id + 1, false); + if (!available_thread[id]) { + available_thread[id] = true; + num_available_threads++; + } +} + +/** + * Check if a thread is available for resolving this promise. That is, the + * thread must have been previously marked for resolving this promise, and it + * cannot have been eliminated due to synchronization, etc. + * * @param tid Thread ID of the thread to check - * @return True if the thread is already eliminated; false otherwise + * @return True if the thread is available; false otherwise */ -bool Promise::thread_is_eliminated(thread_id_t tid) const +bool Promise::thread_is_available(thread_id_t tid) const { unsigned int id = id_to_int(tid); - if (id >= eliminated_thread.size()) + if (id >= available_thread.size()) return false; - return eliminated_thread[id]; + return available_thread[id]; +} + +/** @brief Print debug info about the Promise */ +void Promise::print() const +{ + model_print("Promised value %#" PRIx64 ", read from thread %d, available threads to resolve: ", fv.value, id_to_int(read->get_tid())); + for (unsigned int i = 0; i < available_thread.size(); i++) + if (available_thread[i]) + model_print("[%d]", i); + model_print("\n"); } /** @@ -44,12 +91,27 @@ bool Promise::thread_is_eliminated(thread_id_t tid) const */ bool Promise::has_failed() const { - unsigned int size = eliminated_thread.size(); - int promise_tid = id_to_int(read->get_tid()); - for (unsigned int i = 1; i < model->get_num_threads(); i++) { - if ((i >= size || !eliminated_thread[i]) && ((int)i != promise_tid) && model->is_enabled(int_to_id(i))) { - return false; - } - } - return true; + return num_available_threads == 0; +} + +/** + * @brief Check if an action's thread and location are compatible for resolving + * this promise + * @param act The action to check against + * @return True if we are compatible; false otherwise + */ +bool Promise::is_compatible(const ModelAction *act) const +{ + return thread_is_available(act->get_tid()) && read->same_var(act); +} + +/** + * @brief Check if an action's thread and location are compatible for resolving + * this promise, and that the promise is thread-exclusive + * @param act The action to check against + * @return True if we are compatible and exclusive; false otherwise + */ +bool Promise::is_compatible_exclusive(const ModelAction *act) const +{ + return get_num_available_threads() == 1 && is_compatible(act); }