Implement spurious wakeup for ATOMIC_WAIT
[c11tester.git] / execution.h
1 /** @file execution.h
2  *  @brief Model-checker core
3  */
4
5 #ifndef __EXECUTION_H__
6 #define __EXECUTION_H__
7
8 #include <cstddef>
9 #include <inttypes.h>
10
11 #include "mymemory.h"
12 #include "hashtable.h"
13 #include "config.h"
14 #include "modeltypes.h"
15 #include "stl-model.h"
16 #include "params.h"
17 #include "mypthread.h"
18 #include "mutex.h"
19 #include <condition_variable>
20 #include "classlist.h"
21
22 struct PendingFutureValue {
23         PendingFutureValue(ModelAction *writer, ModelAction *reader) :
24                 writer(writer), reader(reader)
25         { }
26         const ModelAction *writer;
27         ModelAction *reader;
28 };
29
30 #ifdef COLLECT_STAT
31 void print_atomic_accesses();
32 #endif
33
34 /** @brief The central structure for model-checking */
35 class ModelExecution {
36 public:
37         ModelExecution(ModelChecker *m, Scheduler *scheduler);
38         ~ModelExecution();
39
40         struct model_params * get_params() const { return params; }
41         void setParams(struct model_params * _params) {params = _params;}
42
43         Thread * take_step(ModelAction *curr);
44
45         void print_summary();
46         void print_tail();
47 #if SUPPORT_MOD_ORDER_DUMP
48         void dumpGraph(char *filename);
49 #endif
50
51         void add_thread(Thread *t);
52         Thread * get_thread(thread_id_t tid) const;
53         Thread * get_thread(const ModelAction *act) const;
54
55         uint32_t get_pthread_counter() { return pthread_counter; }
56         void incr_pthread_counter() { pthread_counter++; }
57         Thread * get_pthread(pthread_t pid);
58
59         bool is_enabled(Thread *t) const;
60         bool is_enabled(thread_id_t tid) const;
61
62         thread_id_t get_next_id();
63         unsigned int get_num_threads() const;
64
65         ClockVector * get_cv(thread_id_t tid) const;
66         ModelAction * get_parent_action(thread_id_t tid) const;
67
68         ModelAction * get_last_action(thread_id_t tid) const;
69
70         bool check_action_enabled(ModelAction *curr);
71
72         void assert_bug(const char *msg);
73
74         bool have_bug_reports() const;
75
76         SnapVector<bug_message *> * get_bugs() const;
77
78         bool has_asserted() const;
79         void set_assert();
80         bool is_complete_execution() const;
81
82         bool is_deadlocked() const;
83
84         action_list_t * get_action_trace() { return &action_trace; }
85         Fuzzer * getFuzzer();
86         CycleGraph * const get_mo_graph() { return mo_graph; }
87         HashTable<pthread_cond_t *, cdsc::snapcondition_variable *, uintptr_t, 4> * getCondMap() {return &cond_map;}
88         HashTable<pthread_mutex_t *, cdsc::snapmutex *, uintptr_t, 4> * getMutexMap() {return &mutex_map;}
89         ModelAction * check_current_action(ModelAction *curr);
90
91         bool isFinished() {return isfinished;}
92         void setFinished() {isfinished = true;}
93         void restore_last_seq_num();
94         void collectActions();
95         modelclock_t get_curr_seq_num();
96 #ifdef TLS
97         pthread_key_t getPthreadKey() {return pthreadkey;}
98 #endif
99         SNAPSHOTALLOC
100 private:
101         int get_execution_number() const;
102         bool should_wake_up(const Thread *thread) const;
103         void wake_up_sleeping_actions();
104         modelclock_t get_next_seq_num();
105         bool next_execution();
106         bool initialize_curr_action(ModelAction **curr);
107         bool process_read(ModelAction *curr, SnapVector<ModelAction *> * rf_set);
108         void process_write(ModelAction *curr);
109         void process_fence(ModelAction *curr);
110         bool process_mutex(ModelAction *curr);
111         void process_thread_action(ModelAction *curr);
112         void read_from(ModelAction *act, ModelAction *rf);
113         bool synchronize(const ModelAction *first, ModelAction *second);
114         void add_action_to_lists(ModelAction *act, bool canprune);
115         void add_normal_write_to_lists(ModelAction *act);
116         void add_write_to_lists(ModelAction *act);
117         ModelAction * get_last_fence_release(thread_id_t tid) const;
118         ModelAction * get_last_seq_cst_write(ModelAction *curr) const;
119         ModelAction * get_last_seq_cst_fence(thread_id_t tid, const ModelAction *before_fence) const;
120         ModelAction * get_last_unlock(ModelAction *curr) const;
121         SnapVector<ModelAction *> * build_may_read_from(ModelAction *curr);
122         ModelAction * process_rmw(ModelAction *curr);
123         bool r_modification_order(ModelAction *curr, const ModelAction *rf, SnapVector<ModelAction *> *priorset, bool *canprune);
124         void w_modification_order(ModelAction *curr);
125         ClockVector * get_hb_from_write(ModelAction *rf) const;
126         ModelAction * convertNonAtomicStore(void*);
127         ClockVector * computeMinimalCV();
128         void removeAction(ModelAction *act);
129         void fixupLastAct(ModelAction *act);
130
131 #ifdef TLS
132         pthread_key_t pthreadkey;
133 #endif
134         ModelChecker *model;
135         struct model_params * params;
136
137         /** The scheduler to use: tracks the running/ready Threads */
138         Scheduler * const scheduler;
139
140
141         SnapVector<Thread *> thread_map;
142         SnapVector<Thread *> pthread_map;
143         uint32_t pthread_counter;
144
145         action_list_t action_trace;
146
147
148         /** Per-object list of actions. Maps an object (i.e., memory location)
149          * to a trace of all actions performed on the object.
150          * Used only for SC fences, unlocks, & wait.
151          */
152         HashTable<const void *, simple_action_list_t *, uintptr_t, 2> obj_map;
153
154         /** Per-object list of actions. Maps an object (i.e., memory location)
155          * to a trace of all actions performed on the object. */
156         HashTable<const void *, simple_action_list_t *, uintptr_t, 2> condvar_waiters_map;
157
158         /** Per-object list of actions that each thread performed. */
159         HashTable<const void *, SnapVector<action_list_t> *, uintptr_t, 2> obj_thrd_map;
160
161         /** Per-object list of writes that each thread performed. */
162         HashTable<const void *, SnapVector<simple_action_list_t> *, uintptr_t, 2> obj_wr_thrd_map;
163
164         HashTable<const void *, ModelAction *, uintptr_t, 4> obj_last_sc_map;
165
166
167         HashTable<pthread_mutex_t *, cdsc::snapmutex *, uintptr_t, 4> mutex_map;
168         HashTable<pthread_cond_t *, cdsc::snapcondition_variable *, uintptr_t, 4> cond_map;
169
170         /**
171          * List of pending release sequences. Release sequences might be
172          * determined lazily as promises are fulfilled and modification orders
173          * are established. Each entry in the list may only be partially
174          * filled, depending on its pending status.
175          */
176
177         SnapVector<ModelAction *> thrd_last_action;
178         SnapVector<ModelAction *> thrd_last_fence_release;
179
180         /** A special model-checker Thread; used for associating with
181          *  model-checker-related ModelAcitons */
182         Thread *model_thread;
183
184         /** Private data members that should be snapshotted. They are grouped
185          * together for efficiency and maintainability. */
186         struct model_snapshot_members * const priv;
187
188         /**
189          * @brief The modification order graph
190          *
191          * A directed acyclic graph recording observations of the modification
192          * order on all the atomic objects in the system. This graph should
193          * never contain any cycles, as that represents a violation of the
194          * memory model (total ordering). This graph really consists of many
195          * disjoint (unconnected) subgraphs, each graph corresponding to a
196          * separate ordering on a distinct object.
197          *
198          * The edges in this graph represent the "ordered before" relation,
199          * such that <tt>a --> b</tt> means <tt>a</tt> was ordered before
200          * <tt>b</tt>.
201          */
202         CycleGraph * const mo_graph;
203
204         Fuzzer * fuzzer;
205
206         Thread * action_select_next_thread(const ModelAction *curr) const;
207
208         bool isfinished;
209 };
210
211 #endif  /* __EXECUTION_H__ */