threads_internal: pass the current 'action' to the internal thread system
[model-checker.git] / model.cc
index b97352a97f15baebbf2c0ff578bab195a444928c..88d5ce32e21195d7106c291220d4eb2af7bb80a0 100644 (file)
--- a/model.cc
+++ b/model.cc
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
 #include "model.h"
 #include "schedule.h"
 
@@ -9,6 +11,8 @@ ModelChecker::ModelChecker()
        this->used_thread_id = 0;
        /* Initialize default scheduler */
        this->scheduler = new DefaultScheduler();
+
+       this->current_action = NULL;
 }
 
 ModelChecker::~ModelChecker()
@@ -25,3 +29,41 @@ void ModelChecker::add_system_thread(struct thread *t)
 {
        this->system_thread = t;
 }
+
+ModelAction::ModelAction(action_type_t type, memory_order order, void *loc, int value)
+{
+       struct thread *t = thread_current();
+       ModelAction *act = this;
+
+       act->type = type;
+       act->order = order;
+       act->location = loc;
+       act->tid = t->id;
+       act->value = value;
+}
+
+void ModelAction::print(void)
+{
+       const char *type_str;
+       switch (this->type) {
+       case THREAD_CREATE:
+               type_str = "thread create";
+               break;
+       case THREAD_YIELD:
+               type_str = "thread yield";
+               break;
+       case THREAD_JOIN:
+               type_str = "thread join";
+               break;
+       case ATOMIC_READ:
+               type_str = "atomic read";
+               break;
+       case ATOMIC_WRITE:
+               type_str = "atomic write";
+               break;
+       default:
+               type_str = "unknown type";
+       }
+
+       printf("Thread: %d\tAction: %s\tMO: %d\tLoc: %#014zx\tValue: %d\n", tid, type_str, order, (size_t)location, value);
+}