1 /** @file threads-model.h
2 * @brief Model Checker Thread class.
5 #ifndef __THREADS_MODEL_H__
6 #define __THREADS_MODEL_H__
12 #include "modeltypes.h"
13 #include "stl-model.h"
16 struct thread_params {
21 /** @brief Represents the state of a user Thread */
22 typedef enum thread_state {
23 /** Thread was just created and hasn't run yet */
25 /** Thread is running */
27 /** Thread is not currently running but is ready to run */
30 * Thread is waiting on another action (e.g., thread completion, lock
34 /** Thread has completed its execution */
40 /** @brief A Thread is created for each user-space thread */
43 Thread(thread_id_t tid);
44 Thread(thrd_t *t, void (*func)(void *), void *a, Thread *parent);
48 static int swap(ucontext_t *ctxt, Thread *t);
49 static int swap(Thread *t, ucontext_t *ctxt);
51 thread_state get_state() const { return state; }
52 void set_state(thread_state s);
53 thread_id_t get_id() const;
54 thrd_t get_thrd_t() const { return *user_thread; }
55 Thread * get_parent() const { return parent; }
57 void set_creation(ModelAction *act) { creation = act; }
58 ModelAction * get_creation() const { return creation; }
61 * Set a return value for the last action in this thread (e.g., for an
63 * @param value The value to return
65 void set_return_value(uint64_t value) { last_action_val = value; }
68 * Retrieve a return value for the last action in this thread. Used,
69 * for instance, for an atomic read to return the 'read' value. Should
70 * be called from a user context.
71 * @return The value 'returned' by the action
73 uint64_t get_return_value() const { return last_action_val; }
75 /** @return True if this thread is finished executing */
76 bool is_complete() const { return state == THREAD_COMPLETED; }
78 /** @return True if this thread is blocked */
79 bool is_blocked() const { return state == THREAD_BLOCKED; }
81 /** @return The pending (next) ModelAction for this Thread
82 * @see Thread::pending */
83 ModelAction * get_pending() const { return pending; }
85 /** @brief Set the pending (next) ModelAction for this Thread
86 * @param act The pending ModelAction
87 * @see Thread::pending */
88 void set_pending(ModelAction *act) { pending = act; }
90 Thread * waiting_on() const;
91 bool is_waiting_on(const Thread *t) const;
93 bool is_model_thread() const { return model_thread; }
95 friend void thread_startup();
98 * Intentionally NOT allocated with MODELALLOC or SNAPSHOTALLOC.
99 * Threads should be allocated on the user's normal (snapshotting) heap
100 * to allow their allocation/deallocation to follow the same pattern as
101 * the rest of the backtracked/replayed program.
103 void * operator new(size_t size) {
104 return Thread_malloc(size);
106 void operator delete(void *p, size_t size) {
109 void * operator new[](size_t size) {
110 return Thread_malloc(size);
112 void operator delete[](void *p, size_t size) {
116 int create_context();
118 /** @brief The parent Thread which created this Thread */
119 Thread * const parent;
121 /** @brief The THREAD_CREATE ModelAction which created this Thread */
122 ModelAction *creation;
125 * @brief The next ModelAction to be run by this Thread
127 * This action should be kept updated by the ModelChecker, so that we
128 * always know what the next ModelAction's memory_order, action type,
131 ModelAction *pending;
133 void (*start_routine)(void *);
142 * The value returned by the last action in this thread
143 * @see Thread::set_return_value()
144 * @see Thread::get_return_value()
146 uint64_t last_action_val;
148 /** @brief Is this Thread a special model-checker thread? */
149 const bool model_thread;
152 Thread * thread_current();
154 static inline thread_id_t thrd_to_id(thrd_t t)
156 return t.priv->get_id();
160 * @brief Map a zero-based integer index to a unique thread ID
162 * This is the inverse of id_to_int
164 static inline thread_id_t int_to_id(int i)
170 * @brief Map a unique thread ID to a zero-based integer index
172 * This is the inverse of int_to_id
174 static inline int id_to_int(thread_id_t id)
179 #endif /* __THREADS_MODEL_H__ */