restructrue code of funcnode.cc, and planning for adding back edges in predicate...
[c11tester.git] / funcnode.cc
index 44c69e22b09d4f2c322e7c90cf1db32e57433bc4..7c14655065f018e5b990567b2b363d10cb9e1194 100644 (file)
@@ -7,15 +7,17 @@ FuncNode::FuncNode() :
        inst_list(),
        entry_insts(),
        thrd_read_map(),
-       predicate_tree_entry()
+       predicate_tree_entry(),
+       inst_pred_map()
 {}
 
 /* Check whether FuncInst with the same type, position, and location
- * as act has been added to func_inst_map or not. If so, return it;
- * if not, add it and return it.
+ * as act has been added to func_inst_map or not. If not, add it.
  *
- * @return FuncInst with the same type, position, and location as act */
-FuncInst * FuncNode::get_or_add_inst(ModelAction *act)
+ * Note: currently, actions with the same position are filtered out by process_action,
+ * so the collision list of FuncInst is not used. May remove it later. 
+ */
+void FuncNode::add_inst(ModelAction *act)
 {
        ASSERT(act);
        const char * position = act->get_position();
@@ -24,7 +26,7 @@ FuncInst * FuncNode::get_or_add_inst(ModelAction *act)
         * actions are not tagged with their source line numbers
         */
        if (position == NULL)
-               return NULL;
+               return;
 
        if ( func_inst_map.contains(position) ) {
                FuncInst * inst = func_inst_map.get(position);
@@ -33,29 +35,56 @@ FuncInst * FuncNode::get_or_add_inst(ModelAction *act)
                        // model_print("action with a different type occurs at line number %s\n", position);
                        FuncInst * func_inst = inst->search_in_collision(act);
 
-                       if (func_inst != NULL) {
-                               // return the FuncInst found in the collision list
-                               return func_inst;
-                       }
+                       if (func_inst != NULL)
+                               return;
 
                        func_inst = new FuncInst(act, this);
                        inst->get_collisions()->push_back(func_inst);
                        inst_list.push_back(func_inst); // delete?
-
-                       return func_inst;
                }
 
-               return inst;
+               return;
        }
 
        FuncInst * func_inst = new FuncInst(act, this);
 
        func_inst_map.put(position, func_inst);
        inst_list.push_back(func_inst);
+}
+
+/* Get the FuncInst with the same type, position, and location
+ * as act
+ *
+ * @return FuncInst with the same type, position, and location as act */
+FuncInst * FuncNode::get_inst(ModelAction *act)
+{
+       ASSERT(act);
+       const char * position = act->get_position();
+
+       /* THREAD* actions, ATOMIC_LOCK, ATOMIC_TRYLOCK, and ATOMIC_UNLOCK
+        * actions are not tagged with their source line numbers
+        */
+       if (position == NULL)
+               return NULL;
+
+       FuncInst * inst = func_inst_map.get(position);
+       if (inst == NULL)
+               return NULL;
 
-       return func_inst;
+       action_type inst_type = inst->get_type();
+       action_type act_type = act->get_type();
+
+       // else if branch: an RMWRCAS action is converted to a RMW or READ action
+       if (inst_type == act_type)
+               return inst;
+       else if (inst_type == ATOMIC_RMWRCAS &&
+                       (act_type == ATOMIC_RMW || act_type == ATOMIC_READ))
+               return inst;
+
+       return NULL;
 }
 
+
 void FuncNode::add_entry_inst(FuncInst * inst)
 {
        if (inst == NULL)
@@ -88,18 +117,15 @@ void FuncNode::update_tree(action_list_t * act_list)
 
        for (sllnode<ModelAction *> * it = act_list->begin(); it != NULL; it = it->getNext()) {
                ModelAction * act = it->getVal();
-               FuncInst * func_inst = get_or_add_inst(act);
+               FuncInst * func_inst = get_inst(act);
 
                if (func_inst == NULL)
                        continue;
 
                inst_list.push_back(func_inst);
 
-/*             if (!predicate_tree_initialized) {
-                       model_print("position: %s ", act->get_position());
-                       act->print();
-               }
-*/
+//             model_print("position: %s ", act->get_position());
+//             act->print();
 
                if (func_inst->is_read()) {
                        read_inst_list.push_back(func_inst);
@@ -108,7 +134,7 @@ void FuncNode::update_tree(action_list_t * act_list)
        }
 
        update_inst_tree(&inst_list);
-       init_predicate_tree(&read_inst_list, &read_val_map);
+       update_predicate_tree(&read_inst_list, &read_val_map);
 }
 
 /** 
@@ -195,11 +221,10 @@ void FuncNode::clear_read_map(uint32_t tid)
        thrd_read_map[tid]->reset();
 }
 
-void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncInst *, uint64_t, uintptr_t, 4> * read_val_map)
+void FuncNode::update_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncInst *, uint64_t, uintptr_t, 4> * read_val_map)
 {
        if (inst_list == NULL || inst_list->size() == 0)
                return;
-
 /*
        if (predicate_tree_initialized) {
                return;
@@ -217,7 +242,6 @@ void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncI
        PredSetIter * pit = predicate_tree_entry.iterator();
        while (pit->hasNext()) {
                Predicate * p = pit->next();
-               p->get_func_inst()->print();
                if (p->get_func_inst() == entry_inst) {
                        curr_pred = p;
                        break;
@@ -225,6 +249,7 @@ void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncI
        }
        if (curr_pred == NULL) {
                curr_pred = new Predicate(entry_inst);
+               curr_pred->set_entry_predicate();
                predicate_tree_entry.add(curr_pred);
        }
 
@@ -233,28 +258,9 @@ void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncI
        it = it->getNext();
        while (it != NULL) {
                FuncInst * curr_inst = it->getVal();
-               bool child_found = false;
-
-               /* check if a child with the same func_inst and corresponding predicate exists */
-               ModelVector<Predicate *> * children = curr_pred->get_children();
-               for (uint i = 0; i < children->size(); i++) {
-                       Predicate * child = (*children)[i];
-                       if (child->get_func_inst() != curr_inst)
-                               continue;
-
-                       PredExprSet * pred_expressions = child->get_pred_expressions();
-
-                       /* no predicate, follow the only child */
-                       if (pred_expressions->getSize() == 0) {
-                               model_print("no predicate exists: ");
-                               curr_inst->print();
-                               curr_pred = child;
-                               child_found = true;
-                               break;
-                       }
-               }
+               bool branch_found = follow_branch(&curr_pred, curr_inst, read_val_map, &loc_inst_map);
 
-               if (!child_found) {
+               if (!branch_found) {
                        if ( loc_inst_map.contains(curr_inst->get_location()) ) {
                                Predicate * new_pred1 = new Predicate(curr_inst);
                                new_pred1->add_predicate(EQUALITY, curr_inst->get_location(), true);
@@ -262,6 +268,7 @@ void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncI
                                Predicate * new_pred2 = new Predicate(curr_inst);
                                new_pred2->add_predicate(EQUALITY, curr_inst->get_location(), false);
 
+                               /* TODO: add to inst_pred_map */
                                curr_pred->add_child(new_pred1);
                                curr_pred->add_child(new_pred2);
 
@@ -287,6 +294,61 @@ void FuncNode::init_predicate_tree(func_inst_list_t * inst_list, HashTable<FuncI
 //     print_predicate_tree();
 }
 
+/* Given curr_pred and next_inst, find the branch following curr_pred that contains next_inst and the correct predicate
+ * @return true if branch found, false otherwise.
+ */
+bool FuncNode::follow_branch(Predicate ** curr_pred, FuncInst * next_inst,
+       HashTable<FuncInst *, uint64_t, uintptr_t, 4> * read_val_map, HashTable<void *, FuncInst *, uintptr_t, 4> * loc_inst_map)
+{
+       /* check if a branch with func_inst and corresponding predicate exists */
+       bool branch_found = false;
+       ModelVector<Predicate *> * branches = (*curr_pred)->get_children();
+       for (uint i = 0; i < branches->size(); i++) {
+               Predicate * branch = (*branches)[i];
+               if (branch->get_func_inst() != next_inst)
+                       continue;
+
+               PredExprSet * pred_expressions = branch->get_pred_expressions();
+
+               /* no predicate, follow the only branch */
+               if (pred_expressions->getSize() == 0) {
+//                     model_print("no predicate exists: "); next_inst->print();
+                       *curr_pred = branch;
+                       branch_found = true;
+                       break;
+               }
+
+               PredExprSetIter * pred_expr_it = pred_expressions->iterator();
+               while (pred_expr_it->hasNext()) {
+                       pred_expr * pred_expression = pred_expr_it->next();
+                       uint64_t last_read, curr_read;
+                       FuncInst * last_inst;
+                       bool equality;
+
+                       switch(pred_expression->token) {
+                               case EQUALITY:
+                                       last_inst = loc_inst_map->get(next_inst->get_location());
+                                       last_read = read_val_map->get(last_inst);
+                                       curr_read = read_val_map->get(next_inst);
+                                       equality = (last_read == curr_read);
+                                       if (equality == pred_expression->value) {
+                                               *curr_pred = branch;
+//                                             model_print("predicate: token: %d, location: %p, value: %d - ", pred_expression->token, pred_expression->location, pred_expression->value); next_inst->print();
+                                               branch_found = true;
+                                       }
+                                       break;
+                               case NULLITY:
+                                       break;
+                               default:
+                                       model_print("unkown predicate token\n");
+                                       break;
+                       }
+               }
+
+       }
+
+       return branch_found;
+}
 
 void FuncNode::print_predicate_tree()
 {