Merge branch 'master' of ssh://plrg.eecs.uci.edu:/home/git/random-fuzzer into branch...
[c11tester.git] / newfuzzer.h
1 #ifndef __NEWFUZZER_H__
2 #define __NEWFUZZER_H__
3
4 #include "fuzzer.h"
5 #include "classlist.h"
6 #include "mymemory.h"
7 #include "stl-model.h"
8 #include "predicate.h"
9
10 struct node_dist_info {
11         node_dist_info(thread_id_t tid, FuncNode * node, int distance) : 
12                 tid(tid),
13                 target(node),
14                 dist(distance)
15         {}
16
17         thread_id_t tid;
18         FuncNode * target;
19         int dist;
20
21         SNAPSHOTALLOC
22 };
23
24 class NewFuzzer : public Fuzzer {
25 public:
26         NewFuzzer();
27         int selectWrite(ModelAction *read, SnapVector<ModelAction *>* rf_set);
28         bool has_paused_threads();
29         void notify_paused_thread(Thread * thread);
30
31         Thread * selectThread(int * threadlist, int numthreads);
32         Thread * selectNotify(action_list_t * waiters);
33         bool shouldSleep(const ModelAction * sleep);
34         bool shouldWake(const ModelAction * sleep);
35         bool shouldWait(const ModelAction * wait);
36
37         void register_engine(ModelHistory * history, ModelExecution * execution);
38
39         SNAPSHOTALLOC
40 private:
41         ModelHistory * history;
42         ModelExecution * execution;
43
44         SnapVector<ModelAction *> thrd_last_read_act;
45         SnapVector<FuncInst *> thrd_last_func_inst;
46
47         SnapVector<Predicate *> thrd_selected_child_branch;
48         SnapVector< SnapVector<ModelAction *> *> thrd_pruned_writes;
49
50         void check_store_visibility(Predicate * curr_pred, FuncInst * read_inst, inst_act_map_t * inst_act_map, SnapVector<ModelAction *> * rf_set);
51         Predicate * selectBranch(thread_id_t tid, Predicate * curr_pred, FuncInst * read_inst);
52         Predicate * get_selected_child_branch(thread_id_t tid);
53         bool prune_writes(thread_id_t tid, Predicate * pred, SnapVector<ModelAction *> * rf_set, inst_act_map_t * inst_act_map);
54         int choose_index(SnapVector<Predicate *> * branches, uint32_t numerator);
55
56         /* The set of Threads put to sleep by NewFuzzer because no writes in rf_set satisfies the selected predicate. Only used by selectWrite.
57          */
58         SnapVector<Thread *> paused_thread_list;        //-- (not in use)
59         HashTable<Thread *, int, uintptr_t, 0> paused_thread_table;     //--
60         HashTable<Predicate *, bool, uintptr_t, 0> failed_predicates;
61
62         SnapVector<struct node_dist_info> dist_info_vec;        //--
63
64         void conditional_sleep(Thread * thread);        //--
65         bool should_conditional_sleep(Predicate * predicate);
66         void wake_up_paused_threads(int * threadlist, int * numthreads);        //--
67
68         bool find_threads(ModelAction * pending_read);  //--
69         /*-- void update_predicate_score(Predicate * predicate, sleep_result_t type); */
70
71         bool check_predicate_expressions(PredExprSet * pred_expressions, inst_act_map_t * inst_act_map, uint64_t write_val, bool * no_predicate);
72 };
73
74 #endif /* end of __NEWFUZZER_H__ */