Not sure why this change prevents a segfault in iris
[c11tester.git] / predicate.cc
1 #include "funcinst.h"
2 #include "predicate.h"
3 #include "concretepredicate.h"
4
5 Predicate::Predicate(FuncInst * func_inst, bool is_entry, bool is_exit) :
6         func_inst(func_inst),
7         entry_predicate(is_entry),
8         exit_predicate(is_exit),
9         does_write(false),
10         exploration_count(0),
11         store_visible_count(0),
12         total_checking_count(0),
13         pred_expressions(16),
14         children(),
15         parent(NULL),
16         exit(NULL),
17         backedges(16)
18 {}
19
20 Predicate::~Predicate()
21 {
22         // parent and func_inst should not be deleted
23         pred_expressions.reset();
24         backedges.reset();
25         children.clear();
26 }
27
28 unsigned int pred_expr_hash(struct pred_expr * expr)
29 {
30         return (unsigned int)((uintptr_t)expr);
31 }
32
33 bool pred_expr_equal(struct pred_expr * p1, struct pred_expr * p2)
34 {
35         if (p1->token != p2->token)
36                 return false;
37         if (p1->token == EQUALITY && p1->func_inst != p2->func_inst)
38                 return false;
39         if (p1->value != p2->value)
40                 return false;
41         return true;
42 }
43
44 void Predicate::add_predicate_expr(token_t token, FuncInst * func_inst, bool value)
45 {
46         struct pred_expr *ptr = new pred_expr(token, func_inst, value);
47         pred_expressions.add(ptr);
48 }
49
50 void Predicate::add_child(Predicate * child)
51 {
52         /* check duplication? */
53         children.push_back(child);
54 }
55
56 void Predicate::copy_predicate_expr(Predicate * other)
57 {
58         PredExprSet * other_pred_expressions = other->get_pred_expressions();
59         PredExprSetIter * it = other_pred_expressions->iterator();
60
61         while (it->hasNext()) {
62                 struct pred_expr * ptr = it->next();
63                 struct pred_expr * copy = new pred_expr(ptr->token, ptr->func_inst, ptr->value);
64                 pred_expressions.add(copy);
65         }
66 }
67
68 /* Evaluate predicate expressions against the given inst_act_map */
69 ConcretePredicate * Predicate::evaluate(inst_act_map_t * inst_act_map, thread_id_t tid)
70 {
71         ConcretePredicate * concrete = new ConcretePredicate(tid);
72         PredExprSetIter * it = pred_expressions.iterator();
73
74         while (it->hasNext()) {
75                 struct pred_expr * ptr = it->next();
76                 uint64_t value = 0;
77
78                 switch(ptr->token) {
79                         case NOPREDICATE:
80                                 break;
81                         case EQUALITY:
82                                 FuncInst * to_be_compared;
83                                 ModelAction * last_act;
84
85                                 to_be_compared = ptr->func_inst;
86                                 last_act = inst_act_map->get(to_be_compared);
87                                 value = last_act->get_reads_from_value();
88                                 break;
89                         case NULLITY:
90                                 break;
91                         default:
92                                 break;
93                 }
94
95                 concrete->add_expression(ptr->token, value, ptr->value);
96         }
97
98         return concrete;
99 }
100
101 void Predicate::print_predicate()
102 {
103         model_print("\"%p\" [shape=box, label=\"\n", this);
104         if (entry_predicate) {
105                 model_print("entry node\"];\n");
106                 return;
107         }
108
109         if (exit_predicate) {
110                 model_print("exit node\"];\n");
111                 return;
112         }
113
114         func_inst->print();
115
116         if (pred_expressions.getSize() == 0)
117                 model_print("predicate unset\n");
118
119         PredExprSetIter * it = pred_expressions.iterator();
120         while (it->hasNext()) {
121                 struct pred_expr * expr = it->next();
122                 FuncInst * inst = expr->func_inst;
123                 switch (expr->token) {
124                         case NOPREDICATE:
125                                 break;
126                         case EQUALITY:
127                                 model_print("predicate token: equality, position: %s, value: %d\n", inst->get_position(), expr->value);
128                                 break;
129                         case NULLITY:
130                                 model_print("predicate token: nullity, value: %d\n", expr->value);
131                                 break;
132                         default:
133                                 model_print("unknown predicate token\n");
134                                 break;
135                 }
136         }
137
138         if (does_write) {
139                 model_print("Does write\n");
140         }
141
142         double prob = (double) store_visible_count / total_checking_count;
143         model_print("Total checks: %d, visible count: %d; prob: %f\n", total_checking_count, store_visible_count, prob);
144         model_print("Exploration count: %d", exploration_count);
145         model_print("\"];\n");
146 }
147
148 void Predicate::print_pred_subtree()
149 {
150         print_predicate();
151         for (uint i = 0; i < children.size(); i++) {
152                 Predicate * child = children[i];
153                 child->print_pred_subtree();
154                 model_print("\"%p\" -> \"%p\"\n", this, child);
155         }
156
157         PredSetIter * it = backedges.iterator();
158         while (it->hasNext()) {
159                 Predicate * backedge = it->next();
160                 model_print("\"%p\" -> \"%p\"[style=dashed, color=grey]\n", this, backedge);
161         }
162
163         if (exit) {
164                 model_print("\"%p\" -> \"%p\"[style=dashed, color=red]\n", this, exit);
165         }
166 }