bbc14db11617cfaa14b1ec7248c891b06ef47265
[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 #include "hashset.h"
8 #include "predicate.h"
9
10 typedef ModelList<FuncInst *> func_inst_list_mt;
11 typedef HashTable<void *, uint64_t, uintptr_t, 4, model_malloc, model_calloc, model_free> read_map_t;
12
13 class FuncNode {
14 public:
15         FuncNode();
16         ~FuncNode();
17
18         uint32_t get_func_id() { return func_id; }
19         const char * get_func_name() { return func_name; }
20         void set_func_id(uint32_t id) { func_id = id; }
21         void set_func_name(const char * name) { func_name = name; }
22
23         void add_inst(ModelAction *act);
24         FuncInst * get_inst(ModelAction *act);
25
26         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncInstMap() { return &func_inst_map; }
27         func_inst_list_mt * get_inst_list() { return &inst_list; }
28         func_inst_list_mt * get_entry_insts() { return &entry_insts; }
29         void add_entry_inst(FuncInst * inst);
30
31         void update_tree(action_list_t * act_list);
32         void update_inst_tree(func_inst_list_t * inst_list);
33
34         void store_read(ModelAction * act, uint32_t tid);
35         uint64_t query_last_read(void * location, uint32_t tid);
36         void clear_read_map(uint32_t tid);
37
38         /* TODO: generate EQUALITY or NULLITY predicate based on write_history in history.cc */
39         void update_predicate_tree(action_list_t * act_list);
40         void deep_update(Predicate * pred);
41         bool follow_branch(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act, HashTable<FuncInst *, ModelAction *, uintptr_t, 0>* inst_act_map, SnapVector<Predicate *> * unset_predicates);
42
43         void incr_exit_count() { exit_count++; }
44         uint32_t get_exit_count() { return exit_count; }
45
46         ModelList<action_list_t *> * get_action_list_buffer() { return &action_list_buffer; }
47
48         void print_predicate_tree();
49         void print_last_read(uint32_t tid);
50
51         MEMALLOC
52 private:
53         uint32_t func_id;
54         const char * func_name;
55         bool predicate_tree_initialized;
56         Predicate * predicate_tree_entry;       // a dummy node whose children are the real entries
57
58         uint32_t exit_count;
59
60         /* Use source line number as the key of hashtable, to check if
61          * atomic operation with this line number has been added or not
62          */
63         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> func_inst_map;
64
65         /* list of all atomic actions in this function */
66         func_inst_list_mt inst_list;
67
68         /* possible entry atomic actions in this function */
69         func_inst_list_mt entry_insts;
70
71         /* Store the values read by atomic read actions per memory location for each thread */
72         ModelVector<read_map_t *> thrd_read_map;
73
74         ModelList<action_list_t *> action_list_buffer;
75 };
76
77 #endif /* __FUNCNODE_H__ */