2 * @brief Core model checker.
15 #include "hashtable.h"
16 #include "workqueue.h"
18 #include "modeltypes.h"
20 /* Forward declaration */
27 /** @brief Shorthand for a list of release sequence heads */
28 typedef std::vector< const ModelAction *, ModelAlloc<const ModelAction *> > rel_heads_list_t;
31 * Model checker parameter structure. Holds run-time configuration options for
37 unsigned int fairwindow;
38 unsigned int enabledcount;
42 struct PendingFutureValue {
48 * Structure for holding small ModelChecker members that should be snapshotted
50 struct model_snapshot_members {
51 ModelAction *current_action;
52 unsigned int next_thread_id;
53 modelclock_t used_sequence_numbers;
55 ModelAction *next_backtrack;
58 /** @brief Records information regarding a single pending release sequence */
60 /** @brief The acquire operation */
62 /** @brief The head of the RMW chain from which 'acquire' reads; may be
63 * equal to 'release' */
64 const ModelAction *rf;
65 /** @brief The head of the potential longest release sequence chain */
66 const ModelAction *release;
67 /** @brief The write(s) that may break the release sequence */
68 std::vector<const ModelAction *> writes;
71 /** @brief The central structure for model-checking */
74 ModelChecker(struct model_params params);
77 /** @returns the context for the main model-checking system thread */
78 ucontext_t * get_system_context() { return &system_context; }
80 /** Prints an execution summary with trace information. */
82 #if SUPPORT_MOD_ORDER_DUMP
83 void dumpGraph(char *filename);
86 void add_thread(Thread *t);
87 void remove_thread(Thread *t);
88 Thread * get_thread(thread_id_t tid) const;
89 Thread * get_thread(ModelAction *act) const;
91 thread_id_t get_next_id();
92 unsigned int get_num_threads();
93 Thread * get_current_thread();
95 int switch_to_master(ModelAction *act);
96 ClockVector * get_cv(thread_id_t tid);
97 ModelAction * get_parent_action(thread_id_t tid);
98 bool next_execution();
100 bool isfeasibleotherthanRMW();
101 bool isfinalfeasible();
102 void mo_check_promises(thread_id_t tid, const ModelAction *write);
103 void check_promises(thread_id_t tid, ClockVector *old_cv, ClockVector * merge_cv);
104 void get_release_seq_heads(ModelAction *act, rel_heads_list_t *release_heads);
105 void finish_execution();
106 bool isfeasibleprefix();
107 void set_assert() {asserted=true;}
109 /** @brief Alert the model-checker that an incorrectly-ordered
110 * synchronization was made */
111 void set_bad_synchronization() { bad_synchronization = true; }
113 const model_params params;
114 Scheduler * get_scheduler() { return scheduler;}
118 /** The scheduler to use: tracks the running/ready Threads */
119 Scheduler *scheduler;
121 bool sleep_can_read_from(ModelAction * curr, const ModelAction *write);
122 bool thin_air_constraint_may_allow(const ModelAction * writer, const ModelAction *reader);
123 bool mo_may_allow(const ModelAction * writer, const ModelAction *reader);
124 bool has_asserted() {return asserted;}
125 void reset_asserted() {asserted=false;}
127 int num_feasible_executions;
128 bool promises_expired();
129 void execute_sleep_set();
130 void wake_up_sleeping_actions(ModelAction * curr);
131 modelclock_t get_next_seq_num();
134 * Stores the ModelAction for the current thread action. Call this
135 * immediately before switching from user- to system-context to pass
137 * @param act The ModelAction created by the user-thread action
139 void set_current_action(ModelAction *act) { priv->current_action = act; }
140 Thread * check_current_action(ModelAction *curr);
141 ModelAction * initialize_curr_action(ModelAction *curr);
142 bool process_read(ModelAction *curr, bool second_part_of_rmw);
143 bool process_write(ModelAction *curr);
144 bool process_mutex(ModelAction *curr);
145 bool process_thread_action(ModelAction *curr);
146 void process_relseq_fixup(ModelAction *curr, work_queue_t *work_queue);
147 bool check_action_enabled(ModelAction *curr);
151 void check_recency(ModelAction *curr, const ModelAction *rf);
152 ModelAction * get_last_conflict(ModelAction *act);
153 void set_backtracking(ModelAction *act);
154 Thread * get_next_thread(ModelAction *curr);
155 ModelAction * get_next_backtrack();
156 void reset_to_initial_state();
157 bool resolve_promises(ModelAction *curr);
158 void compute_promises(ModelAction *curr);
159 void compute_relseq_breakwrites(ModelAction *curr);
161 void check_curr_backtracking(ModelAction * curr);
162 void add_action_to_lists(ModelAction *act);
163 ModelAction * get_last_action(thread_id_t tid) const;
164 ModelAction * get_last_seq_cst(ModelAction *curr) const;
165 ModelAction * get_last_unlock(ModelAction *curr) const;
166 void build_reads_from_past(ModelAction *curr);
167 ModelAction * process_rmw(ModelAction *curr);
168 void post_r_modification_order(ModelAction *curr, const ModelAction *rf);
169 bool r_modification_order(ModelAction *curr, const ModelAction *rf);
170 bool w_modification_order(ModelAction *curr);
171 bool release_seq_heads(const ModelAction *rf, rel_heads_list_t *release_heads, struct release_seq *pending) const;
172 bool resolve_release_sequences(void *location, work_queue_t *work_queue);
174 ModelAction *diverge;
175 ModelAction *earliest_diverge;
177 ucontext_t system_context;
178 action_list_t *action_trace;
179 HashTable<int, Thread *, int> *thread_map;
181 /** Per-object list of actions. Maps an object (i.e., memory location)
182 * to a trace of all actions performed on the object. */
183 HashTable<const void *, action_list_t, uintptr_t, 4> *obj_map;
185 /** Per-object list of actions. Maps an object (i.e., memory location)
186 * to a trace of all actions performed on the object. */
187 HashTable<const void *, action_list_t, uintptr_t, 4> *lock_waiters_map;
189 HashTable<void *, std::vector<action_list_t>, uintptr_t, 4 > *obj_thrd_map;
190 std::vector< Promise *, SnapshotAlloc<Promise *> > *promises;
191 std::vector< struct PendingFutureValue, SnapshotAlloc<struct PendingFutureValue> > *futurevalues;
194 * List of pending release sequences. Release sequences might be
195 * determined lazily as promises are fulfilled and modification orders
196 * are established. Each entry in the list may only be partially
197 * filled, depending on its pending status.
199 std::vector< struct release_seq *, SnapshotAlloc<struct release_seq *> > *pending_rel_seqs;
201 std::vector< ModelAction *, SnapshotAlloc<ModelAction *> > *thrd_last_action;
202 NodeStack *node_stack;
204 /** Private data members that should be snapshotted. They are grouped
205 * together for efficiency and maintainability. */
206 struct model_snapshot_members *priv;
208 /** A special model-checker Thread; used for associating with
209 * model-checker-related ModelAcitons */
210 Thread *model_thread;
213 * @brief The modification order graph
215 * A directed acyclic graph recording observations of the modification
216 * order on all the atomic objects in the system. This graph should
217 * never contain any cycles, as that represents a violation of the
218 * memory model (total ordering). This graph really consists of many
219 * disjoint (unconnected) subgraphs, each graph corresponding to a
220 * separate ordering on a distinct object.
222 * The edges in this graph represent the "ordered before" relation,
223 * such that <tt>a --> b</tt> means <tt>a</tt> was ordered before
226 CycleGraph *mo_graph;
230 /** @brief Incorrectly-ordered synchronization was made */
231 bool bad_synchronization;
234 extern ModelChecker *model;
236 #endif /* __MODEL_H__ */