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