main/model: add future value expiration sloppiness parameter
[model-checker.git] / model.h
1 /** @file model.h
2  *  @brief Core model checker.
3  */
4
5 #ifndef __MODEL_H__
6 #define __MODEL_H__
7
8 #include <list>
9 #include <vector>
10 #include <cstddef>
11 #include <ucontext.h>
12
13 #include "mymemory.h"
14 #include "action.h"
15 #include "hashtable.h"
16 #include "workqueue.h"
17 #include "config.h"
18 #include "modeltypes.h"
19
20 /* Forward declaration */
21 class NodeStack;
22 class CycleGraph;
23 class Promise;
24 class Scheduler;
25 class Thread;
26
27 /** @brief Shorthand for a list of release sequence heads */
28 typedef std::vector< const ModelAction *, ModelAlloc<const ModelAction *> > rel_heads_list_t;
29
30 /**
31  * Model checker parameter structure. Holds run-time configuration options for
32  * the model checker.
33  */
34 struct model_params {
35         int maxreads;
36         int maxfuturedelay;
37         unsigned int fairwindow;
38         unsigned int enabledcount;
39         unsigned int bound;
40
41         /** @brief Maximum number of future values that can be sent to the same
42          *  read */
43         int maxfuturevalues;
44
45         /** @brief Only generate a new future value/expiration pair if the
46          *  expiration time exceeds the existing one by more than the slop
47          *  value */
48         unsigned int expireslop;
49 };
50
51 struct PendingFutureValue {
52         ModelAction *writer;
53         ModelAction * act;
54 };
55
56 /**
57  * Structure for holding small ModelChecker members that should be snapshotted
58  */
59 struct model_snapshot_members {
60         ModelAction *current_action;
61         unsigned int next_thread_id;
62         modelclock_t used_sequence_numbers;
63         Thread *nextThread;
64         ModelAction *next_backtrack;
65 };
66
67 /** @brief Records information regarding a single pending release sequence */
68 struct release_seq {
69         /** @brief The acquire operation */
70         ModelAction *acquire;
71         /** @brief The head of the RMW chain from which 'acquire' reads; may be
72          *  equal to 'release' */
73         const ModelAction *rf;
74         /** @brief The head of the potential longest release sequence chain */
75         const ModelAction *release;
76         /** @brief The write(s) that may break the release sequence */
77         std::vector<const ModelAction *> writes;
78 };
79
80 /** @brief The central structure for model-checking */
81 class ModelChecker {
82 public:
83         ModelChecker(struct model_params params);
84         ~ModelChecker();
85
86         /** @returns the context for the main model-checking system thread */
87         ucontext_t * get_system_context() { return &system_context; }
88
89         /** Prints an execution summary with trace information. */
90         void print_summary();
91 #if SUPPORT_MOD_ORDER_DUMP
92         void dumpGraph(char *filename);
93 #endif
94
95         void add_thread(Thread *t);
96         void remove_thread(Thread *t);
97         Thread * get_thread(thread_id_t tid) const;
98         Thread * get_thread(ModelAction *act) const;
99
100         thread_id_t get_next_id();
101         unsigned int get_num_threads();
102         Thread * get_current_thread();
103
104         int switch_to_master(ModelAction *act);
105         ClockVector * get_cv(thread_id_t tid);
106         ModelAction * get_parent_action(thread_id_t tid);
107         bool next_execution();
108         bool isfeasible();
109         bool isfeasibleotherthanRMW();
110         bool isfinalfeasible();
111         void check_promises_thread_disabled();
112         void mo_check_promises(thread_id_t tid, const ModelAction *write);
113         void check_promises(thread_id_t tid, ClockVector *old_cv, ClockVector * merge_cv);
114         void get_release_seq_heads(ModelAction *act, rel_heads_list_t *release_heads);
115         void finish_execution();
116         bool isfeasibleprefix();
117         void set_assert() {asserted=true;}
118
119         /** @brief Alert the model-checker that an incorrectly-ordered
120          * synchronization was made */
121         void set_bad_synchronization() { bad_synchronization = true; }
122
123         const model_params params;
124         Scheduler * get_scheduler() { return scheduler;}
125         Node * get_curr_node();
126
127         MEMALLOC
128 private:
129         /** The scheduler to use: tracks the running/ready Threads */
130         Scheduler *scheduler;
131
132         bool sleep_can_read_from(ModelAction * curr, const ModelAction *write);
133         bool thin_air_constraint_may_allow(const ModelAction * writer, const ModelAction *reader);
134         bool mo_may_allow(const ModelAction * writer, const ModelAction *reader);
135         bool has_asserted() {return asserted;}
136         void reset_asserted() {asserted=false;}
137         int num_executions;
138         int num_feasible_executions;
139         bool promises_expired();
140         void execute_sleep_set();
141         void wake_up_sleeping_actions(ModelAction * curr);
142         modelclock_t get_next_seq_num();
143
144         /**
145          * Stores the ModelAction for the current thread action.  Call this
146          * immediately before switching from user- to system-context to pass
147          * data between them.
148          * @param act The ModelAction created by the user-thread action
149          */
150         void set_current_action(ModelAction *act) { priv->current_action = act; }
151         Thread * check_current_action(ModelAction *curr);
152         bool initialize_curr_action(ModelAction **curr);
153         bool process_read(ModelAction *curr, bool second_part_of_rmw);
154         bool process_write(ModelAction *curr);
155         bool process_mutex(ModelAction *curr);
156         bool process_thread_action(ModelAction *curr);
157         void process_relseq_fixup(ModelAction *curr, work_queue_t *work_queue);
158         bool check_action_enabled(ModelAction *curr);
159
160         bool take_step();
161
162         void check_recency(ModelAction *curr, const ModelAction *rf);
163         ModelAction * get_last_conflict(ModelAction *act);
164         void set_backtracking(ModelAction *act);
165         Thread * get_next_thread(ModelAction *curr);
166         ModelAction * get_next_backtrack();
167         void reset_to_initial_state();
168         bool resolve_promises(ModelAction *curr);
169         void compute_promises(ModelAction *curr);
170         void compute_relseq_breakwrites(ModelAction *curr);
171
172         void check_curr_backtracking(ModelAction * curr);
173         void add_action_to_lists(ModelAction *act);
174         ModelAction * get_last_action(thread_id_t tid) const;
175         ModelAction * get_last_seq_cst(ModelAction *curr) const;
176         ModelAction * get_last_unlock(ModelAction *curr) const;
177         void build_reads_from_past(ModelAction *curr);
178         ModelAction * process_rmw(ModelAction *curr);
179         void post_r_modification_order(ModelAction *curr, const ModelAction *rf);
180         bool r_modification_order(ModelAction *curr, const ModelAction *rf);
181         bool w_modification_order(ModelAction *curr);
182         bool release_seq_heads(const ModelAction *rf, rel_heads_list_t *release_heads, struct release_seq *pending) const;
183         bool resolve_release_sequences(void *location, work_queue_t *work_queue);
184
185         ModelAction *diverge;
186         ModelAction *earliest_diverge;
187
188         ucontext_t system_context;
189         action_list_t *action_trace;
190         HashTable<int, Thread *, int> *thread_map;
191
192         /** Per-object list of actions. Maps an object (i.e., memory location)
193          * to a trace of all actions performed on the object. */
194         HashTable<const void *, action_list_t, uintptr_t, 4> *obj_map;
195
196         /** Per-object list of actions. Maps an object (i.e., memory location)
197          * to a trace of all actions performed on the object. */
198         HashTable<const void *, action_list_t, uintptr_t, 4> *lock_waiters_map;
199
200         /** Per-object list of actions. Maps an object (i.e., memory location)
201          * to a trace of all actions performed on the object. */
202         HashTable<const void *, action_list_t, uintptr_t, 4> *condvar_waiters_map;
203
204         HashTable<void *, std::vector<action_list_t>, uintptr_t, 4 > *obj_thrd_map;
205         std::vector< Promise *, SnapshotAlloc<Promise *> > *promises;
206         std::vector< struct PendingFutureValue, SnapshotAlloc<struct PendingFutureValue> > *futurevalues;
207
208         /**
209          * List of pending release sequences. Release sequences might be
210          * determined lazily as promises are fulfilled and modification orders
211          * are established. Each entry in the list may only be partially
212          * filled, depending on its pending status.
213          */
214         std::vector< struct release_seq *, SnapshotAlloc<struct release_seq *> > *pending_rel_seqs;
215
216         std::vector< ModelAction *, SnapshotAlloc<ModelAction *> > *thrd_last_action;
217         NodeStack *node_stack;
218
219         /** Private data members that should be snapshotted. They are grouped
220          * together for efficiency and maintainability. */
221         struct model_snapshot_members *priv;
222
223         /** A special model-checker Thread; used for associating with
224          *  model-checker-related ModelAcitons */
225         Thread *model_thread;
226
227         /**
228          * @brief The modification order graph
229          *
230          * A directed acyclic graph recording observations of the modification
231          * order on all the atomic objects in the system. This graph should
232          * never contain any cycles, as that represents a violation of the
233          * memory model (total ordering). This graph really consists of many
234          * disjoint (unconnected) subgraphs, each graph corresponding to a
235          * separate ordering on a distinct object.
236          *
237          * The edges in this graph represent the "ordered before" relation,
238          * such that <tt>a --> b</tt> means <tt>a</tt> was ordered before
239          * <tt>b</tt>.
240          */
241         CycleGraph *mo_graph;
242         bool failed_promise;
243         bool too_many_reads;
244         bool asserted;
245         /** @brief Incorrectly-ordered synchronization was made */
246         bool bad_synchronization;
247 };
248
249 extern ModelChecker *model;
250
251 #endif /* __MODEL_H__ */