model: add check_recency()
authorBrian Norris <banorris@uci.edu>
Tue, 11 Sep 2012 17:20:06 +0000 (10:20 -0700)
committerBrian Norris <banorris@uci.edu>
Tue, 11 Sep 2012 19:14:03 +0000 (12:14 -0700)
Note the weaknesses of the code, as documented in @todo.

model.cc
model.h

index c77d4e17d4627213d2510774fe9c5d853b91257e..cbabe7145c94c8853f41c9aa243469bf6629dbd8 100644 (file)
--- a/model.cc
+++ b/model.cc
@@ -329,6 +329,8 @@ Thread * ModelChecker::check_current_action(ModelAction *curr)
                        value = reads_from->get_value();
                        /* Assign reads_from, perform release/acquire synchronization */
                        curr->read_from(reads_from);
+                       check_recency(curr, already_added);
+
                        if (r_modification_order(curr,reads_from))
                                updated = true;
                } else {
@@ -400,6 +402,56 @@ ModelAction * ModelChecker::process_rmw(ModelAction *act) {
        return lastread;
 }
 
+/**
+ * Checks whether a thread has read from the same write for too many times.
+ * @todo This may be more subtle than this code segment addresses at this
+ * point...  Potential problems to ponder and fix:
+ * (1) What if the reads_from set keeps changing such that there is no common
+ * write?
+ * (2) What if the problem is that the other writes would break modification
+ * order.
+ */
+void ModelChecker::check_recency(ModelAction *curr, bool already_added) {
+       if (params.maxreads != 0) {
+               if (curr->get_node()->get_read_from_size() <= 1)
+                       return;
+
+               std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
+               int tid = id_to_int(curr->get_tid());
+
+               /* Skip checks */
+               if ((int)thrd_lists->size() <= tid)
+                       return;
+
+               action_list_t *list = &(*thrd_lists)[tid];
+
+               action_list_t::reverse_iterator rit = list->rbegin();
+               /* Skip past curr */
+               if (!already_added) {
+                       for (; (*rit) != curr; rit++)
+                               ;
+                       /* go past curr now */
+                       rit++;
+               }
+
+               int count=0;
+               for (; rit != list->rend(); rit++) {
+                       ModelAction *act = *rit;
+                       if (!act->is_read())
+                               return;
+                       if (act->get_reads_from() != curr->get_reads_from())
+                               return;
+                       if (act->get_node()->get_read_from_size() <= 1)
+                               return;
+                       count++;
+                       if (count >= params.maxreads) {
+                               /* We've read from the same write for too many times */
+                               too_many_reads = true;
+                       }
+               }
+       }
+}
+
 /**
  * Updates the mo_graph with the constraints imposed from the current read.
  * @param curr The current action. Must be a read.
diff --git a/model.h b/model.h
index 5d34b4aa3e2694bcfd725e4170131592b884eba0..70ec80427a7e7a0995defb0978e6025e49b4143a 100644 (file)
--- a/model.h
+++ b/model.h
@@ -104,6 +104,7 @@ private:
 
        bool take_step();
 
+       void check_recency(ModelAction *curr, bool already_added);
        ModelAction * get_last_conflict(ModelAction *act);
        void set_backtracking(ModelAction *act);
        Thread * get_next_replay_thread();