46c65305bd7ea98038dee2460a137012322728b6
[cdsspec-compiler.git] / benchmark / mcs-lock / mcs-lock.h
1 // mcs on stack
2
3 #include <stdatomic.h>
4 #include <unrelacy.h>
5
6 #include <spec_lib.h>
7 #include <stdlib.h>
8 #include <cdsannotate.h>
9 #include <specannotation.h>
10 #include <model_memory.h>
11 #include "common.h" 
12
13 struct mcs_node {
14         std::atomic<mcs_node *> next;
15         std::atomic<int> gate;
16
17         mcs_node() {
18                 next.store(0);
19                 gate.store(0);
20         }
21 };
22
23
24 struct mcs_mutex {
25 public:
26         // tail is null when lock is not held
27         std::atomic<mcs_node *> m_tail;
28
29         mcs_mutex() {
30                 /**
31                         @Begin
32                 @Entry_point
33                         @End
34                 */
35                 m_tail.store( NULL );
36         }
37         ~mcs_mutex() {
38                 //ASSERT( m_tail.load() == NULL );
39         }
40
41         // Each thread will have their own guard.
42         class guard {
43         public:
44                 mcs_mutex * m_t;
45                 mcs_node    m_node; // node held on the stack
46
47                 guard(mcs_mutex * t) : m_t(t) { t->lock(this); }
48                 ~guard() { m_t->unlock(this); }
49         };
50
51         /**
52                 @Begin
53                 @Options:
54                         LANG = CPP;
55                         CLASS = mcs_mutex;
56                 @Global_define:
57                         @DeclareVar:
58                                 bool _lock_acquired;
59                         @InitVar:
60                                 _lock_acquired = false;
61                 @Happens_before:
62                         Unlock -> Lock
63                 @End
64         */
65
66         /**
67                 @Begin
68                 @Interface: Lock
69                 @Commit_point_set: Lock_Enqueue_Point1 | Lock_Enqueue_Point2
70                 @Check:
71                         _lock_acquired == false;
72                 @Action:
73                         _lock_acquired = true;
74                 @End
75         */
76         void lock(guard * I) {
77                 mcs_node * me = &(I->m_node);
78
79                 // set up my node :
80                 // not published yet so relaxed :
81                 me->next.store(NULL, std::mo_relaxed );
82                 me->gate.store(1, std::mo_relaxed );
83
84                 /** Run this in the -Y mode to expose the HB bug */
85                 // publish my node as the new tail :
86                 mcs_node * pred = m_tail.exchange(me, std::mo_acq_rel);
87                 /**
88                         @Begin
89                         @Commit_point_define_check: pred == NULL
90                         @Label: Lock_Enqueue_Point1
91                         @End
92                 */
93                 if ( pred != NULL ) {
94                         // (*1) race here
95                         // unlock of pred can see me in the tail before I fill next
96
97                         // publish me to previous lock-holder :
98                         // FIXME: detection miss, execution never ends
99                         // If this is relaxed, the store 0 to gate will be read before and
100                         // that lock will never ends.
101                         pred->next.store(me, std::mo_release );
102                         //printf("lock_miss1\n");
103
104                         // (*2) pred not touched any more       
105
106                         // now this is the spin -
107                         // wait on predecessor setting my flag -
108                         rl::linear_backoff bo;
109                         int my_gate = 1;
110                         while (my_gate ) {
111                                 my_gate = me->gate.load(std::mo_acquire);
112                                 //if (my_gate == 0)
113                                         //printf("lock at gate!\n");
114                                 /**
115                                         @Begin
116                                         @Commit_point_define_check: my_gate == 0
117                                         @Label: Lock_Enqueue_Point2
118                                         @End
119                                 */
120                                 thrd_yield();
121                         }
122                 }
123         }
124
125         /**
126                 @Begin
127                 @Interface: Unlock
128                 @Commit_point_set:
129                         Unlock_Point_Success_1 | Unlock_Point_Success_2
130                 @Check:
131                         _lock_acquired == true
132                 @Action:
133                         _lock_acquired = false;
134                 @End
135         */
136         void unlock(guard * I) {
137                 mcs_node * me = &(I->m_node);
138
139                 // FIXME: detection miss, execution never ends
140                 mcs_node * next = me->next.load(std::mo_acquire);
141                 //printf("unlock_miss2\n");
142                 if ( next == NULL )
143                 {
144                         mcs_node * tail_was_me = me;
145                         bool success;
146                         success = m_tail.compare_exchange_strong(
147                                 tail_was_me,NULL,std::mo_acq_rel);
148                         /**
149                                 @Begin
150                                 @Commit_point_define_check: success == true
151                                 @Label: Unlock_Point_Success_1
152                                 @End
153                         */
154                         if (success) {
155                                 
156                                 // got null in tail, mutex is unlocked
157                                 return;
158                         }
159
160                         // (*1) catch the race :
161                         rl::linear_backoff bo;
162                         for(;;) {
163                                 // FIXME: detection miss, execution never ends
164                                 next = me->next.load(std::mo_acquire);
165                                 //printf("unlock_miss3\n");
166                                 if ( next != NULL )
167                                         break;
168                                 thrd_yield();
169                         }
170                 }
171
172                 // (*2) - store to next must be done,
173                 //  so no locker can be viewing my node any more        
174
175                 // let next guy in :
176                 next->gate.store( 0, std::mo_release );
177                 /**
178                         @Begin
179                         @Commit_point_define_check: true
180                         @Label: Unlock_Point_Success_2
181                         @End
182                 */
183         }
184 };
185 /**
186         @Begin
187         @Class_end
188         @End
189 */