Add failed predicates to predicate trace; remove unused codes
[c11tester.git] / funcnode.h
1 #ifndef __FUNCNODE_H__
2 #define __FUNCNODE_H__
3
4 #include "hashset.h"
5 #include "hashfunction.h"
6 #include "classlist.h"
7 #include "threads-model.h"
8
9 #define MAX_DIST 10
10
11 typedef ModelList<FuncInst *> func_inst_list_mt;
12 typedef ModelList<Predicate *> predicate_trace_t;
13
14 typedef HashTable<void *, FuncInst *, uintptr_t, 0, model_malloc, model_calloc, model_free> loc_inst_map_t;
15 typedef HashTable<FuncInst *, uint32_t, uintptr_t, 0, model_malloc, model_calloc, model_free> inst_id_map_t;
16 typedef HashTable<FuncInst *, Predicate *, uintptr_t, 0, model_malloc, model_calloc, model_free> inst_pred_map_t;
17
18 typedef enum edge_type {
19         IN_EDGE, OUT_EDGE, BI_EDGE
20 } edge_type_t;
21
22 class FuncNode {
23 public:
24         FuncNode(ModelHistory * history);
25         ~FuncNode();
26
27         uint32_t get_func_id() { return func_id; }
28         const char * get_func_name() { return func_name; }
29         void set_func_id(uint32_t id) { func_id = id; }
30         void set_func_name(const char * name) { func_name = name; }
31         void set_new_exec_flag();
32
33         void add_inst(ModelAction *act);
34         FuncInst * create_new_inst(ModelAction *act);
35         FuncInst * get_inst(ModelAction *act);
36
37         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> * getFuncInstMap() { return &func_inst_map; }
38         func_inst_list_mt * get_inst_list() { return &inst_list; }
39         func_inst_list_mt * get_entry_insts() { return &entry_insts; }
40         void add_entry_inst(FuncInst * inst);
41
42         void function_entry_handler(thread_id_t tid);
43         void function_exit_handler(thread_id_t tid);
44
45         void update_tree(ModelAction * act);
46         void update_inst_tree(func_inst_list_t * inst_list);
47         void update_predicate_tree(ModelAction * act);
48         bool follow_branch(Predicate ** curr_pred, FuncInst * next_inst, ModelAction * next_act, Predicate ** unset_predicate);
49
50         void add_to_val_loc_map(uint64_t val, void * loc);
51         void add_to_val_loc_map(value_set_t * values, void * loc);
52         void update_loc_may_equal_map(void * new_loc, loc_set_t * old_locations);
53
54         void set_predicate_tree_position(thread_id_t tid, Predicate * pred);
55         Predicate * get_predicate_tree_position(thread_id_t tid);
56
57         void add_predicate_to_trace(thread_id_t tid, Predicate *pred);
58
59         uint32_t get_marker(thread_id_t tid);
60         int get_recursion_depth(thread_id_t tid);
61
62         void add_out_edge(FuncNode * other);
63         ModelList<FuncNode *> * get_out_edges() { return &out_edges; }
64         int compute_distance(FuncNode * target, int max_step = MAX_DIST);
65
66         void print_predicate_tree();
67
68         MEMALLOC
69 private:
70         uint32_t func_id;
71         const char * func_name;
72         ModelHistory * history;
73         Predicate * predicate_tree_entry;       // A dummy node whose children are the real entries
74         Predicate * predicate_tree_exit;        // A dummy node
75
76         uint32_t inst_counter;
77         uint32_t marker;
78         ModelVector< ModelVector<uint32_t> *> thrd_markers;
79         ModelVector<int> thrd_recursion_depth;  // Recursion depth starts from 0 to match with vector indexes.
80
81         void init_marker(thread_id_t tid);
82
83         /* Use source line number as the key of hashtable, to check if
84          * atomic operation with this line number has been added or not
85          */
86         HashTable<const char *, FuncInst *, uintptr_t, 4, model_malloc, model_calloc, model_free> func_inst_map;
87
88         /* List of all atomic actions in this function */
89         func_inst_list_mt inst_list;
90
91         /* Possible entry atomic actions in this function */
92         func_inst_list_mt entry_insts;
93
94         /* Map a FuncInst to the its predicate when updating predicate trees */
95         ModelVector< ModelVector<inst_pred_map_t *> * > thrd_inst_pred_maps;
96
97         /* Number FuncInsts to detect loops when updating predicate trees */
98         ModelVector< ModelVector<inst_id_map_t *> *> thrd_inst_id_maps;
99
100         /* Detect read actions at the same locations when updating predicate trees */
101         ModelVector< ModelVector<loc_inst_map_t *> *> thrd_loc_inst_maps;
102
103         void init_local_maps(thread_id_t tid);
104         void reset_local_maps(thread_id_t tid);
105
106         void infer_predicates(FuncInst * next_inst, ModelAction * next_act, SnapVector<struct half_pred_expr *> * half_pred_expressions);
107         void generate_predicates(Predicate * curr_pred, FuncInst * next_inst, SnapVector<struct half_pred_expr *> * half_pred_expressions);
108         bool amend_predicate_expr(Predicate * curr_pred, FuncInst * next_inst, ModelAction * next_act);
109
110         /* Set of locations read by this FuncNode */
111         loc_set_t * read_locations;
112
113         /* Set of locations written to by this FuncNode */
114         loc_set_t * write_locations;
115
116         /* Keeps track of locations that have the same values written to */
117         HashTable<uint64_t, loc_set_t *, uint64_t, 0, snapshot_malloc, snapshot_calloc, snapshot_free, int64_hash> * val_loc_map;
118
119         /* Keeps track of locations that may share the same value as key, deduced from val_loc_map */
120         HashTable<void *, loc_set_t *, uintptr_t, 0> * loc_may_equal_map;
121
122         // value_set_t * values_may_read_from;
123
124         /* Run-time position in the predicate tree for each thread
125          * The inner vector is used to deal with recursive functions. */
126         ModelVector< ModelVector<Predicate *> * > thrd_predicate_tree_position;
127
128         ModelVector< ModelVector<predicate_trace_t *> * > thrd_predicate_trace;
129
130         void init_predicate_tree_data_structure(thread_id_t tid);
131         void reset_predicate_tree_data_structure(thread_id_t tid);
132
133         /* Store the relation between this FuncNode and other FuncNodes */
134         HashTable<FuncNode *, edge_type_t, uintptr_t, 0, model_malloc, model_calloc, model_free> edge_table;
135
136         /* FuncNodes that follow this node */
137         ModelList<FuncNode *> out_edges;
138
139         void update_predicate_tree_weight(thread_id_t tid);
140 };
141
142 #endif  /* __FUNCNODE_H__ */