-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSyncPreservingRaceEvent.java
More file actions
353 lines (306 loc) · 10.1 KB
/
SyncPreservingRaceEvent.java
File metadata and controls
353 lines (306 loc) · 10.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
package engine.racedetectionengine.syncpreserving;
import java.util.HashSet;
import engine.racedetectionengine.RaceDetectionEvent;
import event.Thread;
import event.Variable;
import event.EventType;
import event.Lock;
import util.Pair;
import util.Quintet;
import util.ll.EfficientLLView;
import util.vectorclock.VectorClock;
public class SyncPreservingRaceEvent extends RaceDetectionEvent<SyncPreservingRaceState> {
static final int flushEventDuration = 100000;
static int flush_event_ctr = 0;
@Override
public boolean Handle(SyncPreservingRaceState state, int verbosity) {
EventType tp = this.getType();
// Check if this is a write and the last event was a write
// on the same variable by the same thread
// If so, skip everything
if (tp.isWrite()) {
if (state.lastType != null) {
if (state.lastType.isWrite()) {
if (state.lastDecor == this.getVariable().getId()) {
if (state.lastThread == this.getThread().getId()) {
return state.lastAnswer;
}
}
}
}
}
if (tp.isAccessType()) {
state.checkAndAddVariable(this.getVariable());
}
if (tp.isLockType()) {
state.checkAndAddLock(this.getLock());
}
boolean toReturn;
toReturn = this.HandleSub(state, verbosity);
state.lastDecor = -1;
state.lastThread = -1;
state.lastType = null;
state.lastAnswer = toReturn;
if (this.getType().isWrite()) {
state.lastDecor = this.getVariable().getId();
state.lastThread = this.getThread().getId();
state.lastType = tp;
}
flush_event_ctr = flush_event_ctr + 1;
if (flush_event_ctr == flushEventDuration) {
state.flushAcquireViews();
flush_event_ctr = 0;
}
return toReturn;
}
@Override
public void printRaceInfoLockType(SyncPreservingRaceState state, int verbosity) {
if (this.getType().isLockType()) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getLock().toString();
str += "|";
VectorClock C_t = state.getVectorClock(state.clockThread,
this.getThread());
str += "C_t = ";
str += C_t.toString();
str += "|";
str += this.getThread().getName();
System.out.println(str);
}
}
}
@Override
public void printRaceInfoAccessType(SyncPreservingRaceState state, int verbosity) {
if (this.getType().isAccessType()) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getVariable().getName();
str += "|";
VectorClock C_t = state.getVectorClock(state.clockThread,
this.getThread());
str += C_t.toString();
str += "|";
str += this.getThread().getName();
str += "|";
str += this.getAuxId();
System.out.println(str);
}
}
}
@Override
public void printRaceInfoExtremeType(SyncPreservingRaceState state, int verbosity) {
if (this.getType().isExtremeType()) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getTarget().toString();
str += "|";
VectorClock C_t = state.getVectorClock(state.clockThread,
this.getThread());
str += C_t.toString();
str += "|";
str += this.getThread().getName();
System.out.println(str);
}
}
}
@Override
public boolean HandleSubAcquire(SyncPreservingRaceState state, int verbosity) {
Thread t = this.getThread();
Lock l = this.getLock();
if (!state.threadsAccessingLocks.containsKey(l)) {
state.threadsAccessingLocks.put(l, new HashSet<Thread>());
}
state.threadsAccessingLocks.get(l).add(t);
state.numAcquires = state.numAcquires + 1;
state.incClockThread(getThread());
state.updateViewAsWriterAtAcquire(l, t);
this.printRaceInfo(state, verbosity);
state.addLockHeld(t, l);
return false;
}
@Override
public boolean HandleSubRelease(SyncPreservingRaceState state, int verbosity) {
Thread t = this.getThread();
Lock l = this.getLock();
state.incClockThread(t);
state.updateViewAsWriterAtRelease(l, t);
state.removeLockHeld(t, l);
this.printRaceInfo(state, verbosity);
return false;
}
private EventType getEarlierConflictingEvent(SyncPreservingRaceState state, Thread t,
Variable x, EventType a, Thread u) {
Pair<VectorClock, Integer> writeTriplet = null;
int writeClock = 0;
EfficientLLView<Thread, Pair<VectorClock, Integer>> store_write = state.accessInfo
.get(u).get(EventType.WRITE).get(x);
if (!store_write.isEmpty(t)) {
writeTriplet = store_write.bottom(t);
writeClock = writeTriplet.second;
}
Pair<VectorClock, Integer> readTriplet = null;
int readClock = 0;
if (a.equals(EventType.WRITE)) {
EfficientLLView<Thread, Pair<VectorClock, Integer>> store_read = state.accessInfo
.get(u).get(EventType.READ).get(x);
if (!store_read.isEmpty(t)) {
readTriplet = store_read.bottom(t);
readClock = readTriplet.second;
}
}
if (writeClock > 0 && readClock > 0) {
return readClock < writeClock ? EventType.READ : EventType.WRITE;
} else if (writeClock > 0) {
return EventType.WRITE;
} else if (readClock > 0) {
return EventType.READ;
} else
return null;
}
private boolean checkRaces(SyncPreservingRaceState state, Thread t, Variable x,
EventType a, VectorClock C_pred_t) {
HashSet<Thread> threadSet_x = state.variableToThreadSet.get(x);
for (Thread u : threadSet_x) {
if (!u.equals(t)) {
while (true) {
EventType aprime = getEarlierConflictingEvent(state, t, x, a, u);
if (!(aprime == null)) {
EfficientLLView<Thread, Pair<VectorClock, Integer>> store = state.accessInfo
.get(u).get(aprime).get(x);
if (!store.isEmpty(t)) {
Pair<VectorClock, Integer> conflictingTriplet = store
.bottom(t);
VectorClock C_pred_u = conflictingTriplet.first;
int C_u_u = conflictingTriplet.second;
// Cheap check
if (C_u_u <= state.getIndex(C_pred_t, u)) {
state.flushConflictingEventsEagerly(store, t, a, x, u,
C_u_u, C_pred_t);
continue;
}
Quintet<Thread, EventType, Thread, EventType, Variable> acquireInfoKey = new Quintet<Thread, EventType, Thread, EventType, Variable>(
u, aprime, t, a, x);
VectorClock I = new VectorClock(C_pred_t);
I.updateWithMax(I, C_pred_u);
VectorClock lastIeal = state.lastIdeal.get(acquireInfoKey);
I.updateWithMax(I, lastIeal);
I.copyFrom(state.fixPointIdeal(acquireInfoKey, I, t));
state.lastIdeal.put(acquireInfoKey, new VectorClock(I));
if (!(C_u_u <= state.getIndex(I, u))) {
return true;
} else {
state.flushConflictingEventsEagerly(store, t, a, x, u,
C_u_u, I);
}
}
} else {
break;
}
}
}
}
return false;
}
@Override
public boolean HandleSubRead(SyncPreservingRaceState state, int verbosity) {
Thread t = this.getThread();
Variable v = this.getVariable();
EventType tp = this.getType();
VectorClock C_t = state.getVectorClock(state.clockThread, t);
// Check race
VectorClock C_pred_t = new VectorClock(C_t);
boolean emptyLS = state.updateLocksetAtAccess(t, v, tp);
boolean raceDetected = false;
if (emptyLS) {
raceDetected = checkRaces(state, t, v, tp, C_pred_t);
}
// Update and send clocks
state.incClockThread(t);
VectorClock LW_v = state.getVectorClock(state.lastWriteVariable, v);
C_t.updateWithMax(C_t, LW_v);
// Eager computation of closure. Do it after checking for races.
C_t.copyFrom(state.updatePointersAtAccessAndGetFixPoint(t, C_t));
Pair<VectorClock, Integer> infoToStore = new Pair<VectorClock, Integer>(C_pred_t,
state.getIndex(C_t, t));
state.accessInfo.get(t).get(EventType.READ).get(v).pushTop(infoToStore);
this.printRaceInfo(state, verbosity);
return raceDetected;
}
@Override
public boolean HandleSubWrite(SyncPreservingRaceState state, int verbosity) {
Thread t = this.getThread();
Variable v = this.getVariable();
EventType tp = this.getType();
VectorClock C_t = state.getVectorClock(state.clockThread, t);
// Check race
VectorClock C_pred_t = new VectorClock(C_t);
boolean emptyLS = state.updateLocksetAtAccess(t, v, tp);
boolean raceDetected = false;
if (emptyLS) {
raceDetected = checkRaces(state, t, v, tp, C_pred_t);
}
// Do send stuff
state.incClockThread(t);
VectorClock LW_v = state.getVectorClock(state.lastWriteVariable, v);
LW_v.copyFrom(C_t);
Pair<VectorClock, Integer> infoToStore = new Pair<VectorClock, Integer>(C_pred_t,
state.getIndex(C_t, t));
state.accessInfo.get(t).get(EventType.WRITE).get(v).pushTop(infoToStore);
this.printRaceInfo(state, verbosity);
return raceDetected;
}
@Override
public boolean HandleSubFork(SyncPreservingRaceState state, int verbosity) {
if (state.isThreadRelevant(this.getTarget())) {
VectorClock C_t = state.getVectorClock(state.clockThread, this.getThread());
VectorClock C_tc = state.getVectorClock(state.clockThread, this.getTarget());
C_tc.copyFrom(C_t);
state.setIndex(C_tc, this.getTarget(), 1);
this.printRaceInfo(state, verbosity);
state.incClockThread(getThread());
}
return false;
}
@Override
public boolean HandleSubJoin(SyncPreservingRaceState state, int verbosity) {
if (state.isThreadRelevant(this.getTarget())) {
VectorClock C_t = state.getVectorClock(state.clockThread, this.getThread());
VectorClock C_tc = state.getVectorClock(state.clockThread, this.getTarget());
C_t.updateWithMax(C_t, C_tc);
this.printRaceInfo(state, verbosity);
state.incClockThread(getThread());
// Eager computation of closure.
C_t.copyFrom(
state.updatePointersAtAccessAndGetFixPoint(this.getThread(), C_t));
}
return false;
}
@Override
public void printRaceInfoTransactionType(SyncPreservingRaceState state,
int verbosity) {
// TODO Auto-generated method stub
}
@Override
public boolean HandleSubBegin(SyncPreservingRaceState state, int verbosity) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean HandleSubEnd(SyncPreservingRaceState state, int verbosity) {
// TODO Auto-generated method stub
return false;
}
}