Fix a memory bug
[c11tester.git] / funcnode.h
1 #ifndef __FUNCNODE_H__
2 #define __FUNCNODE_H__
3
4 #include "hashset.h"
5 #include "classlist.h"
6 #include "threads-model.h"
7
8 typedef ModelList<FuncInst *> func_inst_list_mt;
9
10 typedef enum edge_type {
11         IN_EDGE, OUT_EDGE, BI_EDGE
12 } edge_type_t;
13
14 class FuncNode {
15 public:
16         FuncNode(ModelHistory * history);
17         ~FuncNode();
18
19         uint32_t get_func_id() { return func_id; }
20         const char * get_func_name() { return func_name; }
21         void set_func_id(uint32_t id) { func_id = id; }
22         void set_func_name(const char * name) { func_name = name; }
23         void set_new_exec_flag();
24
25         void add_inst(ModelAction *act);
26         FuncInst * get_inst(ModelAction *act);
27
28         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncInstMap() { return &func_inst_map; }
29         func_inst_list_mt * get_inst_list() { return &inst_list; }
30         func_inst_list_mt * get_entry_insts() { return &entry_insts; }
31         void add_entry_inst(FuncInst * inst);
32
33         void update_tree(action_list_t * act_list);
34         void update_inst_tree(func_inst_list_t * inst_list);
35         void update_predicate_tree(action_list_t * act_list);
36         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);
37
38         void incr_exit_count() { exit_count++; }
39         uint32_t get_exit_count() { return exit_count; }
40
41         SnapList<action_list_t *> * get_action_list_buffer() { return action_list_buffer; }
42
43         void add_to_val_loc_map(uint64_t val, void * loc);
44         void add_to_val_loc_map(value_set_t * values, void * loc);
45         void update_loc_may_equal_map(void * new_loc, loc_set_t * old_locations);
46
47         void init_predicate_tree_position(thread_id_t tid);
48         void set_predicate_tree_position(thread_id_t tid, Predicate * pred);
49         Predicate * get_predicate_tree_position(thread_id_t tid);
50
51         void init_inst_act_map(thread_id_t tid);
52         void reset_inst_act_map(thread_id_t tid);
53         void update_inst_act_map(thread_id_t tid, ModelAction * read_act);
54         inst_act_map_t * get_inst_act_map(thread_id_t tid);
55
56         void add_out_edge(FuncNode * other);
57         ModelList<FuncNode *> * get_out_edges() { return &out_edges; }
58
59         void print_predicate_tree();
60         void print_val_loc_map();
61         void print_last_read(thread_id_t tid);
62
63         MEMALLOC
64 private:
65         uint32_t func_id;
66         const char * func_name;
67         ModelHistory * history;
68         Predicate * predicate_tree_entry;       // a dummy node whose children are the real entries
69
70         uint32_t exit_count;
71
72         /* Use source line number as the key of hashtable, to check if
73          * atomic operation with this line number has been added or not
74          */
75         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> func_inst_map;
76
77         /* List of all atomic actions in this function */
78         func_inst_list_mt inst_list;
79
80         /* Possible entry atomic actions in this function */
81         func_inst_list_mt entry_insts;
82
83         void infer_predicates(FuncInst * next_inst, ModelAction * next_act, HashTable<void *, ModelAction *, uintptr_t, 0> * loc_act_map, SnapVector<struct half_pred_expr *> * half_pred_expressions);
84         void generate_predicates(Predicate ** curr_pred, FuncInst * next_inst, SnapVector<struct half_pred_expr *> * half_pred_expressions);
85         bool amend_predicate_expr(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act);
86
87         /* Store action_lists when calls to update_tree are deferred */
88         SnapList<action_list_t *> * action_list_buffer;
89
90         /* Set of locations read by this FuncNode */
91         loc_set_t * read_locations;
92
93         /* Set of locations written to by this FuncNode */
94         loc_set_t * write_locations;
95
96         /* Keeps track of locations that have the same values written to */
97         HashTable<uint64_t, loc_set_t *, uint64_t, 0> * val_loc_map;
98
99         /* Keeps track of locations that may share the same value as key, deduced from val_loc_map */
100         HashTable<void *, loc_set_t *, uintptr_t, 0> * loc_may_equal_map;
101
102         // value_set_t * values_may_read_from;
103
104         /* Run-time position in the predicate tree for each thread */
105         ModelVector<Predicate *> predicate_tree_position;
106
107         /* Store the relation between this FuncNode and other FuncNodes */
108         HashTable<FuncNode *, edge_type_t, uintptr_t, 0, model_malloc, model_calloc, model_free> edge_table;
109
110         /* FuncNodes that follow this node */
111         ModelList<FuncNode *> out_edges;
112 };
113
114 #endif /* __FUNCNODE_H__ */