model: schedule appropriate fence backtracking points
[c11tester.git] / promise.cc
index e3b8d65e48d7c542bcf7e27da0473bb012a39057..0f5ba4d1573d3ffc652ad28edb3bc69e62742248 100644 (file)
@@ -4,6 +4,24 @@
 #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),
+       value(fv.value),
+       expiration(fv.expiration),
+       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
@@ -59,7 +77,7 @@ bool Promise::thread_is_available(thread_id_t tid) const
 /** @brief Print debug info about the Promise */
 void Promise::print() const
 {
-       model_print("Promised value %#" PRIx64 ", read from thread %d, available threads to resolve: ", value, read->get_tid());
+       model_print("Promised value %#" PRIx64 ", read from thread %d, available threads to resolve: ", 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);
@@ -74,11 +92,27 @@ void Promise::print() const
  */
 bool Promise::has_failed() const
 {
-       for (unsigned int i = 0; i < available_thread.size(); i++) {
-               thread_id_t tid = int_to_id(i);
-               if (thread_is_available(tid) && model->is_enabled(tid))
-                       return false;
-       }
-       ASSERT(num_available_threads == 0);
-       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);
 }