README: add more `code` formatting
[model-checker.git] / cmodelint.cc
1 #include "model.h"
2 #include "action.h"
3 #include "cmodelint.h"
4 #include "threads-model.h"
5
6 /** Performs a read action.*/
7 uint64_t model_read_action(void * obj, memory_order ord) {
8         return model->switch_to_master(new ModelAction(ATOMIC_READ, ord, obj));
9 }
10
11 /** Performs a write action.*/
12 void model_write_action(void * obj, memory_order ord, uint64_t val) {
13         model->switch_to_master(new ModelAction(ATOMIC_WRITE, ord, obj, val));
14 }
15
16 /** Performs an init action. */
17 void model_init_action(void * obj, uint64_t val) {
18         model->switch_to_master(new ModelAction(ATOMIC_INIT, memory_order_relaxed, obj, val));
19 }
20
21 /**
22  * Performs the read part of a RMW action. The next action must either be the
23  * write part of the RMW action or an explicit close out of the RMW action w/o
24  * a write.
25  */
26 uint64_t model_rmwr_action(void *obj, memory_order ord) {
27         return model->switch_to_master(new ModelAction(ATOMIC_RMWR, ord, obj));
28 }
29
30 /** Performs the write part of a RMW action. */
31 void model_rmw_action(void *obj, memory_order ord, uint64_t val) {
32         model->switch_to_master(new ModelAction(ATOMIC_RMW, ord, obj, val));
33 }
34
35 /** Closes out a RMW action without doing a write. */
36 void model_rmwc_action(void *obj, memory_order ord) {
37         model->switch_to_master(new ModelAction(ATOMIC_RMWC, ord, obj));
38 }
39
40 /** Issues a fence operation. */
41 void model_fence_action(memory_order ord) {
42         model->switch_to_master(new ModelAction(ATOMIC_FENCE, ord, FENCE_LOCATION));
43 }