change the data structure for storing last read values. The old one 'loc_thrd_read_ma...
[c11tester.git] / funcnode.h
1 #include "action.h"
2 #include "funcinst.h"
3 #include "hashtable.h"
4
5 class ModelAction;
6
7 typedef ModelList<FuncInst *> func_inst_list_mt;
8 typedef HashTable<void *, uint64_t, uintptr_t, 4, model_malloc, model_calloc, model_free> read_map_t;
9
10 class FuncNode {
11 public:
12         FuncNode();
13         ~FuncNode();
14
15         uint32_t get_func_id() { return func_id; }
16         const char * get_func_name() { return func_name; }
17         void set_func_id(uint32_t id) { func_id = id; }
18         void set_func_name(const char * name) { func_name = name; }
19
20         FuncInst * get_or_add_action(ModelAction *act);
21
22         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncInstMap() { return &func_inst_map; }
23         func_inst_list_mt * get_inst_list() { return &inst_list; }
24         func_inst_list_mt * get_entry_insts() { return &entry_insts; }
25         void add_entry_inst(FuncInst * inst);
26
27         void store_read(ModelAction * act, uint32_t tid);
28         uint64_t query_last_read(ModelAction * act, uint32_t tid);
29         void clear_read_map(uint32_t tid);
30
31         void print_last_read(uint32_t tid);
32
33         MEMALLOC
34 private:
35         uint32_t func_id;
36         const char * func_name;
37
38         /* Use source line number as the key of hashtable, to check if 
39          * atomic operation with this line number has been added or not
40          */
41         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> func_inst_map;
42
43         /* list of all atomic actions in this function */
44         func_inst_list_mt inst_list;
45
46         /* possible entry atomic actions in this function */
47         func_inst_list_mt entry_insts;
48
49         /* Store the values read by atomic read actions per memory location for each thread */
50         ModelVector<read_map_t *> thrd_read_map;
51         ModelList<void *> read_locations;
52 };