separate out rmw actions
[cdsspec-compiler.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 "schedule.h"
14 #include "mymemory.h"
15 #include "libthreads.h"
16 #include "threads.h"
17 #include "action.h"
18 #include "clockvector.h"
19 #include "hashtable.h"
20
21 /* Forward declaration */
22 class NodeStack;
23 class CycleGraph;
24 class Promise;
25
26 /**
27  * Model checker parameter structure. Holds run-time configuration options for
28  * the model checker.
29  */
30 struct model_params {
31         int maxreads;
32         int maxfuturedelay;
33 };
34
35 /**
36  * Structure for holding small ModelChecker members that should be snapshotted
37  */
38 struct model_snapshot_members {
39         ModelAction *current_action;
40         int next_thread_id;
41         modelclock_t used_sequence_numbers;
42         Thread *nextThread;
43         ModelAction *next_backtrack;
44
45         /** @see ModelChecker::lazy_sync_size */
46         unsigned int lazy_sync_size;
47 };
48
49 /** @brief The central structure for model-checking */
50 class ModelChecker {
51 public:
52         ModelChecker(struct model_params params);
53         ~ModelChecker();
54
55         /** @returns the context for the main model-checking system thread */
56         ucontext_t * get_system_context() { return &system_context; }
57
58         /** Prints an execution summary with trace information. */
59         void print_summary();
60
61         void add_thread(Thread *t);
62         void remove_thread(Thread *t);
63         Thread * get_thread(thread_id_t tid) { return thread_map->get(id_to_int(tid)); }
64         Thread * get_thread(ModelAction *act) { return get_thread(act->get_tid()); }
65
66         thread_id_t get_next_id();
67         int get_num_threads();
68         modelclock_t get_next_seq_num();
69
70         /** @return The currently executing Thread. */
71         Thread * get_current_thread() { return scheduler->get_current_thread(); }
72
73         int switch_to_master(ModelAction *act);
74         ClockVector * get_cv(thread_id_t tid);
75         ModelAction * get_parent_action(thread_id_t tid);
76         bool next_execution();
77         bool isfeasible();
78         bool isfeasibleotherthanRMW();
79         bool isfinalfeasible();
80         void check_promises(ClockVector *old_cv, ClockVector * merge_cv);
81         void get_release_seq_heads(ModelAction *act,
82                         std::vector<const ModelAction *> *release_heads);
83         void finish_execution();
84         bool isfeasibleprefix();
85         void set_assert() {asserted=true;}
86
87         MEMALLOC
88 private:
89         /** The scheduler to use: tracks the running/ready Threads */
90         Scheduler *scheduler;
91         
92         bool thin_air_constraint_may_allow(const ModelAction * writer, const ModelAction *reader);
93         bool has_asserted() {return asserted;}
94         void reset_asserted() {asserted=false;}
95         int num_executions;
96         bool promises_expired();
97         const model_params params;
98
99         /**
100          * Stores the ModelAction for the current thread action.  Call this
101          * immediately before switching from user- to system-context to pass
102          * data between them.
103          * @param act The ModelAction created by the user-thread action
104          */
105         void set_current_action(ModelAction *act) { priv->current_action = act; }
106         Thread * check_current_action(ModelAction *curr);
107         bool process_read(ModelAction *curr, Thread * th, bool second_part_of_rmw);
108
109         bool take_step();
110
111         void check_recency(ModelAction *curr, bool already_added);
112         ModelAction * get_last_conflict(ModelAction *act);
113         void set_backtracking(ModelAction *act);
114         Thread * get_next_thread(ModelAction *curr);
115         ModelAction * get_next_backtrack();
116         void reset_to_initial_state();
117         bool resolve_promises(ModelAction *curr);
118         void compute_promises(ModelAction *curr);
119
120
121         void check_curr_backtracking(ModelAction * curr);
122         void add_action_to_lists(ModelAction *act);
123         ModelAction * get_last_action(thread_id_t tid);
124         ModelAction * get_last_seq_cst(const void *location);
125         void build_reads_from_past(ModelAction *curr);
126         ModelAction * process_rmw(ModelAction *curr);
127         void post_r_modification_order(ModelAction *curr, const ModelAction *rf);
128         bool r_modification_order(ModelAction *curr, const ModelAction *rf);
129         bool w_modification_order(ModelAction *curr);
130         bool release_seq_head(const ModelAction *rf,
131                         std::vector<const ModelAction *> *release_heads) const;
132         bool resolve_release_sequences(void *location);
133
134         ModelAction *diverge;
135
136         ucontext_t system_context;
137         action_list_t *action_trace;
138         HashTable<int, Thread *, int> *thread_map;
139
140         /** Per-object list of actions. Maps an object (i.e., memory location)
141          * to a trace of all actions performed on the object. */
142         HashTable<const void *, action_list_t, uintptr_t, 4> *obj_map;
143
144         HashTable<void *, std::vector<action_list_t>, uintptr_t, 4 > *obj_thrd_map;
145         std::vector<Promise *> *promises;
146
147         /**
148          * Collection of lists of objects that might synchronize with one or
149          * more release sequence. Release sequences might be determined lazily
150          * as promises are fulfilled and modification orders are established.
151          * This structure maps its lists by object location. Each ModelAction
152          * in the lists should be an acquire operation.
153          */
154         HashTable<void *, std::list<ModelAction *>, uintptr_t, 4> *lazy_sync_with_release;
155
156         /**
157          * Represents the total size of the
158          * ModelChecker::lazy_sync_with_release lists. This count should be
159          * snapshotted, so it is actually a pointer to a location within
160          * ModelChecker::priv
161          */
162         unsigned int *lazy_sync_size;
163
164         std::vector<ModelAction *> *thrd_last_action;
165         NodeStack *node_stack;
166
167         /** Private data members that should be snapshotted. They are grouped
168          * together for efficiency and maintainability. */
169         struct model_snapshot_members *priv;
170
171         /**
172          * @brief The modification order graph
173          *
174          * A directed acyclic graph recording observations of the modification
175          * order on all the atomic objects in the system. This graph should
176          * never contain any cycles, as that represents a violation of the
177          * memory model (total ordering). This graph really consists of many
178          * disjoint (unconnected) subgraphs, each graph corresponding to a
179          * separate ordering on a distinct object.
180          *
181          * The edges in this graph represent the "ordered before" relation,
182          * such that <tt>a --> b</tt> means <tt>a</tt> was ordered before
183          * <tt>b</tt>.
184          */
185         CycleGraph *mo_graph;
186         bool failed_promise;
187         bool too_many_reads;
188         bool asserted;
189 };
190
191 extern ModelChecker *model;
192
193 #endif /* __MODEL_H__ */