add a dummy predicate entry node to make code simpler; back edges are also added
[c11tester.git] / history.cc
1 #include <inttypes.h>
2 #include "history.h"
3 #include "action.h"
4 #include "funcnode.h"
5 #include "common.h"
6
7 #include "model.h"
8 #include "execution.h"
9
10
11 /** @brief Constructor */
12 ModelHistory::ModelHistory() :
13         func_counter(1),        /* function id starts with 1 */
14         func_map(),
15         func_map_rev(),
16         func_nodes(),
17         write_history(),
18         write_locations()
19 {}
20
21 void ModelHistory::enter_function(const uint32_t func_id, thread_id_t tid)
22 {
23         //model_print("thread %d entering func %d\n", tid, func_id);
24         uint id = id_to_int(tid);
25         SnapVector<func_id_list_t> * thrd_func_list = model->get_execution()->get_thrd_func_list();
26         SnapVector< SnapList<action_list_t *> *> *
27                 thrd_func_act_lists = model->get_execution()->get_thrd_func_act_lists();
28
29         if ( thrd_func_list->size() <= id ) {
30                 uint oldsize = thrd_func_list->size();
31                 thrd_func_list->resize( id + 1 );
32                 for (uint i = oldsize; i < id + 1; i++) {
33                         new (&(*thrd_func_list)[i]) func_id_list_t();
34                         // push 0 as a dummy function id to a void seg fault
35                         (*thrd_func_list)[i].push_back(0);
36                 }
37
38                 thrd_func_act_lists->resize( id + 1 );
39                 for (uint i = oldsize; i < id + 1; i++) {
40                         (*thrd_func_act_lists)[i] = new SnapList<action_list_t *>();
41                 }
42         }
43
44         SnapList<action_list_t *> * func_act_lists = (*thrd_func_act_lists)[id];
45
46         (*thrd_func_list)[id].push_back(func_id);
47         func_act_lists->push_back( new action_list_t() );
48
49         if ( func_nodes.size() <= func_id )
50                 resize_func_nodes( func_id + 1 );
51 }
52
53 /* @param func_id a non-zero value */
54 void ModelHistory::exit_function(const uint32_t func_id, thread_id_t tid)
55 {
56         uint32_t id = id_to_int(tid);
57         SnapVector<func_id_list_t> * thrd_func_list = model->get_execution()->get_thrd_func_list();
58         SnapVector< SnapList<action_list_t *> *> *
59                 thrd_func_act_lists = model->get_execution()->get_thrd_func_act_lists();
60
61         SnapList<action_list_t *> * func_act_lists = (*thrd_func_act_lists)[id];
62         uint32_t last_func_id = (*thrd_func_list)[id].back();
63
64         if (last_func_id == func_id) {
65                 FuncNode * func_node = func_nodes[func_id];
66                 func_node->clear_read_map(tid);
67
68                 // model_print("hello function %s and thread %d\n", func_node->get_func_name(), tid);
69                 action_list_t * curr_act_list = func_act_lists->back();
70                 func_node->update_tree(curr_act_list);
71
72                 (*thrd_func_list)[id].pop_back();
73                 func_act_lists->pop_back();
74         } else {
75                 model_print("trying to exit with a wrong function id\n");
76                 model_print("--- last_func: %d, func_id: %d\n", last_func_id, func_id);
77         }
78         //model_print("thread %d exiting func %d\n", tid, func_id);
79 }
80
81 void ModelHistory::resize_func_nodes(uint32_t new_size)
82 {
83         uint32_t old_size = func_nodes.size();
84
85         if ( old_size < new_size )
86                 func_nodes.resize(new_size);
87
88         for (uint32_t id = old_size;id < new_size;id++) {
89                 const char * func_name = func_map_rev[id];
90                 FuncNode * func_node = new FuncNode();
91                 func_node->set_func_id(id);
92                 func_node->set_func_name(func_name);
93                 func_nodes[id] = func_node;
94         }
95 }
96
97 void ModelHistory::process_action(ModelAction *act, thread_id_t tid)
98 {
99         /* return if thread i has not entered any function or has exited
100            from all functions */
101         SnapVector<func_id_list_t> * thrd_func_list = model->get_execution()->get_thrd_func_list();
102         SnapVector< SnapList<action_list_t *> *> *
103                 thrd_func_act_lists = model->get_execution()->get_thrd_func_act_lists();
104
105         uint32_t id = id_to_int(tid);
106         if ( thrd_func_list->size() <= id )
107                 return;
108
109         /* get the function id that thread i is currently in */
110         uint32_t func_id = (*thrd_func_list)[id].back();
111         SnapList<action_list_t *> * func_act_lists = (*thrd_func_act_lists)[id];
112
113         if (func_id == 0)
114                 return;
115         else if ( func_nodes.size() <= func_id )
116                 resize_func_nodes( func_id + 1 );
117
118         FuncNode * func_node = func_nodes[func_id];
119
120         /* do not care about actions without a position */
121         if (act->get_position() == NULL)
122                 return;
123
124         if (act->is_read())
125                 func_node->store_read(act, tid);
126
127         if (act->is_write())
128                 add_to_write_history(act->get_location(), act->get_write_value());
129
130         /* add to curr_inst_list */
131         bool second_part_of_rmw = act->is_rmwc() || act->is_rmw();
132         if (!second_part_of_rmw) {
133                 action_list_t * curr_act_list = func_act_lists->back();
134                 ASSERT(curr_act_list != NULL);
135
136                 ModelAction * last_act;
137                 if (curr_act_list->size() != 0)
138                         last_act = curr_act_list->back();
139
140                 // do not add actions with the same sequence number twice
141                 if (last_act != NULL && last_act->get_seq_number() == act->get_seq_number())
142                         return;
143
144                 curr_act_list->push_back(act);
145                 func_node->add_inst(act);
146         }
147 }
148
149 /* return the FuncNode given its func_id  */
150 FuncNode * ModelHistory::get_func_node(uint32_t func_id)
151 {
152         if (func_nodes.size() <= func_id)       // this node has not been added to func_nodes
153                 return NULL;
154
155         return func_nodes[func_id];
156 }
157
158 uint64_t ModelHistory::query_last_read(void * location, thread_id_t tid)
159 {
160         SnapVector<func_id_list_t> * thrd_func_list = model->get_execution()->get_thrd_func_list();
161         uint32_t id = id_to_int(tid);
162
163         ASSERT( thrd_func_list->size() > id );
164         uint32_t func_id = (*thrd_func_list)[id].back();
165         FuncNode * func_node = func_nodes[func_id];
166
167         uint64_t last_read_val = 0xdeadbeef;
168         if (func_node != NULL) {
169                 last_read_val = func_node->query_last_read(location, tid);
170         }
171
172         return last_read_val;
173 }
174
175 void ModelHistory::add_to_write_history(void * location, uint64_t write_val)
176 {
177         write_set_t * write_set = write_history.get(location);
178
179         if (write_set == NULL) {
180                 write_set = new write_set_t();
181                 write_history.put(location, write_set);
182         }
183
184         write_set->add(write_val);
185         write_locations.add(location);
186 }
187
188 void ModelHistory::print_write()
189 {
190 }
191
192 void ModelHistory::print_func_node()
193 {
194         /* function id starts with 1 */
195         for (uint32_t i = 1; i < func_nodes.size(); i++) {
196                 FuncNode * func_node = func_nodes[i];
197
198                 func_inst_list_mt * entry_insts = func_node->get_entry_insts();
199                 model_print("function %s has entry actions\n", func_node->get_func_name());
200
201                 mllnode<FuncInst*>* it;
202                 for (it = entry_insts->begin();it != NULL;it=it->getNext()) {
203                         FuncInst *inst = it->getVal();
204                         model_print("type: %d, at: %s\n", inst->get_type(), inst->get_position());
205                 }
206 /*
207                 func_inst_list_mt * inst_list = funcNode->get_inst_list();
208
209                 model_print("function %s has following actions\n", funcNode->get_func_name());
210                 func_inst_list_mt::iterator it;
211                 for (it = inst_list->begin(); it != inst_list->end(); it++) {
212                         FuncInst *inst = *it;
213                         model_print("type: %d, at: %s\n", inst->get_type(), inst->get_position());
214                 }
215 */
216         }
217 }