-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathWCPEvent.java
More file actions
448 lines (378 loc) · 14.4 KB
/
WCPEvent.java
File metadata and controls
448 lines (378 loc) · 14.4 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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
package engine.racedetectionengine.wcp;
import java.util.HashSet;
import java.util.Stack;
import engine.racedetectionengine.RaceDetectionEvent;
import event.Lock;
import event.Thread;
import event.Variable;
import util.vectorclock.VectorClock;
public class WCPEvent extends RaceDetectionEvent<WCPState> {
public WCPEvent() {
super();
}
public boolean Handle(WCPState state, int verbosity) {
// Do some booking
if (!(state.mapThreadLockStack.containsKey(this.thread))) {
state.mapThreadLockStack.put(thread, new Stack<Lock>());
state.mapThreadReadVarSetStack.put(thread, new Stack<HashSet<Variable>>());
state.mapThreadWriteVarSetStack.put(thread, new Stack<HashSet<Variable>>());
}
// Now call the appropriate function according to event type
return this.HandleSub(state, verbosity);
}
/************** Pretty Printing *******************/
@Override
public void printRaceInfoLockType(WCPState state, int verbosity) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getLock().toString();
str += "|";
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
str += C_t.toString();
str += "|";
str += this.getThread().getName();
System.out.println(str);
}
}
@Override
public void printRaceInfoAccessType(WCPState state, int verbosity) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getVariable().getName();
str += "|";
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
str += C_t.toString();
str += "|";
str += this.getThread().getName();
System.out.println(str);
}
}
@Override
public void printRaceInfoExtremeType(WCPState state, int verbosity) {
if (verbosity >= 2) {
String str = "#";
str += Integer.toString(getLocId());
str += "|";
str += this.getType().toString();
str += "|";
str += this.getTarget().toString();
str += "|";
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
str += C_t.toString();
str += "|";
str += this.getThread().getName();
System.out.println(str);
}
}
/************************************************/
/************** Acquire/Release *******************/
// Handler for acquire event
@Override
public boolean HandleSubAcquire(WCPState state, int verbosity) {
/*** Extra Pre-processing for reEntrants *****/
boolean reEntrant = state.isLockAcquired(this.getThread(), this.getLock());
/*** Extra Pre-processing for reEntrants done *****/
/****** Annotation phase starts **********/
state.mapThreadLockStack.get(getThread()).push(getLock());
state.mapThreadReadVarSetStack.get(getThread()).push(new HashSet<Variable>());
state.mapThreadWriteVarSetStack.get(getThread()).push(new HashSet<Variable>());
/****** Annotation phase ends **********/
VectorClock H_t = state.getVectorClock(state.HBPredecessorThread,
this.getThread());
VectorClock H_l = state.getVectorClock(state.HBPredecessorLock, this.getLock());
H_t.updateWithMax(H_t, H_l); // Line 1 of algorithm
VectorClock P_t = state.getVectorClock(state.WCPPredecessorThread, getThread());
VectorClock P_l = state.getVectorClock(state.WCPPredecessorLock, getLock());
P_t.updateWithMax(P_t, P_l); // Line 2 of algorithm
// No need to update the queue(s) for re-entrant lock
if (!reEntrant) {
state.updateViewAsWriterAtAcquire(getLock(), getThread()); // Line 3 of
// algorithm
}
this.printRaceInfo(state, verbosity);
return false;
}
// Handler for Release event
@Override
public boolean HandleSubRelease(WCPState state, int verbosity) {
/****** Annotation phase starts **********/
HashSet<Variable> readVarSet = state.mapThreadReadVarSetStack.get(getThread())
.pop();
HashSet<Variable> writeVarSet = state.mapThreadWriteVarSetStack.get(getThread())
.pop();
this.setReadVarSet(readVarSet);
this.setWriteVarSet(writeVarSet);
state.mapThreadLockStack.get(getThread()).pop();
if (!(state.mapThreadLockStack.get(getThread()).isEmpty())) {
state.mapThreadReadVarSetStack.get(getThread()).peek().addAll(readVarSet);
state.mapThreadWriteVarSetStack.get(getThread()).peek().addAll(writeVarSet);
}
/****** Annotation phase ends **********/
state.readViewOfWriters(getLock(), getThread()); // Lines 4-6 of algorithm
VectorClock H_t = state.getVectorClock(state.HBPredecessorThread, getThread());
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
for (Thread tPrime : state.threadToIndex.keySet()) {
if (tPrime.getId() != this.getThread().getId()) {
for (Variable r : this.readVarSet) {
if (state.existsLockReadVariableThreads
.containsKey(this.getLock().getName())) {
if (state.existsLockReadVariableThreads
.get(this.getLock().getName()).containsKey(r.getName())) {
if (state.existsLockReadVariableThreads
.get(this.getLock().getName()).get(r.getName())
.contains(tPrime.getName())) {
VectorClock L_r_l_x_tprime = state.getVectorClock(
state.lastReleaseLockReadVariableThread,
this.getLock(), r, tPrime);
L_r_l_x_tprime.updateWithMax(L_r_l_x_tprime, H_t, C_t); // Body
// of
// loop
// at
// Line
// 7
// of
// algorithm.
// This
// is
// slightly
// different
// from
// the
// presented
// algorithm
// owing
// to
// an
// optimization
}
}
}
}
for (Variable w : this.writeVarSet) {
if (state.existsLockWriteVariableThreads
.containsKey(this.getLock().getName())) {
if (state.existsLockWriteVariableThreads
.get(this.getLock().getName()).containsKey(w.getName())) {
if (state.existsLockWriteVariableThreads
.get(this.getLock().getName()).get(w.getName())
.contains(tPrime.getName())) {
VectorClock L_w_l_x_tprime = state.getVectorClock(
state.lastReleaseLockWriteVariableThread,
this.getLock(), w, tPrime);
L_w_l_x_tprime.updateWithMax(L_w_l_x_tprime, H_t, C_t); // Body
// of
// loop
// at
// Line
// 8
// of
// algorithm.
// This
// is
// slightly
// different
// from
// the
// presented
// algorithm
// owing
// to
// an
// optimization
}
}
}
}
}
}
VectorClock H_l = state.getVectorClock(state.HBPredecessorLock, this.getLock());
H_l.updateWithMax(H_t, C_t); // Line 9 of algorithm
VectorClock P_l = state.getVectorClock(state.WCPPredecessorLock, this.getLock());
VectorClock P_t = state.getVectorClock(state.WCPPredecessorThread, getThread());
P_l.copyFrom(P_t); // Line 9 of algorithm
state.updateViewAsWriterAtRelease(getLock(), getThread()); // Line 10 of algorithm
this.printRaceInfo(state, verbosity);
state.incClockThread(getThread()); // Vector clock increment at the end of a
// release event
return false;
}
/************************************************/
/**************** Read/Write **********************/
@Override
// Handler for Read event
public boolean HandleSubRead(WCPState state, int verbosity) {
/****** Annotation phase starts **********/
if (!(state.mapThreadLockStack.get(getThread()).isEmpty())) {
state.mapThreadReadVarSetStack.get(getThread()).peek().add(getVariable());
this.setLockSet(state.getSetFromStack(getThread()));
}
/****** Annotation phase ends **********/
/***** Update P_t **************/
VectorClock P_t = state.getVectorClock(state.WCPPredecessorThread,
this.getThread());
// Line 11 of algorithm
for (Lock l : this.getLockSet()) {
if (state.existsLockWriteVariableThreads.containsKey(l.getName())) {
if (state.existsLockWriteVariableThreads.get(l.getName())
.containsKey(this.getVariable().getName())) {
if (state.existsLockWriteVariableThreads.get(l.getName())
.get(this.getVariable().getName())
.contains(this.getThread().getName())) {
VectorClock writeClock = state.getVectorClock(
state.lastReleaseLockWriteVariableThread, l,
this.getVariable(), this.getThread());
P_t.updateWithMax(P_t, writeClock); // Body of loop at Line 11 of
// algorithm
}
}
}
}
/***** P_t updated **************/
boolean raceDetected = false;
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
VectorClock R_v = state.getVectorClock(state.readVariable, getVariable());
VectorClock W_v = state.getVectorClock(state.writeVariable, getVariable());
this.printRaceInfo(state, verbosity);
// Check if an earlier write of same variable is incomparable with this read
// event
if (!(W_v.isLessThanOrEqual(C_t))) {
raceDetected = true;
}
// Update the Read(v) clock
R_v.updateWithMax(R_v, C_t);
return raceDetected;
}
// Handler for write event
@Override
public boolean HandleSubWrite(WCPState state, int verbosity) {
/****** Annotation phase starts **********/
if (!(state.mapThreadLockStack.get(getThread()).isEmpty())) {
state.mapThreadWriteVarSetStack.get(getThread()).peek().add(getVariable());
this.setLockSet(state.getSetFromStack(getThread()));
}
/****** Annotation phase ends **********/
/***** Update P_t **************/
VectorClock P_t = state.getVectorClock(state.WCPPredecessorThread,
this.getThread());
// Line 12 of algorithm
for (Lock l : this.getLockSet()) {
if (state.existsLockWriteVariableThreads.containsKey(l.getName())) {
if (state.existsLockWriteVariableThreads.get(l.getName())
.containsKey(this.getVariable().getName())) {
if (state.existsLockWriteVariableThreads.get(l.getName())
.get(this.getVariable().getName())
.contains(this.getThread().getName())) {
VectorClock writeClock = state.getVectorClock(
state.lastReleaseLockWriteVariableThread, l,
this.getVariable(), this.getThread());
P_t.updateWithMax(P_t, writeClock); // Body of loop at Line 12 of
// algorithm
}
}
}
if (state.existsLockReadVariableThreads.containsKey(l.getName())) {
if (state.existsLockReadVariableThreads.get(l.getName())
.containsKey(this.getVariable().getName())) {
if (state.existsLockReadVariableThreads.get(l.getName())
.get(this.getVariable().getName())
.contains(this.getThread().getName())) {
VectorClock readClock = state.getVectorClock(
state.lastReleaseLockReadVariableThread, l,
this.getVariable(), this.getThread());
P_t.updateWithMax(P_t, readClock); // Body of loop at Line 12 of
// algorithm
}
}
}
}
/***** P_t updated **************/
boolean raceDetected = false;
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
VectorClock R_v = state.getVectorClock(state.readVariable, getVariable());
VectorClock W_v = state.getVectorClock(state.writeVariable, getVariable());
this.printRaceInfo(state, verbosity);
// Check if an earlier read of same variable is incomparable with this write
// event
if (!(R_v.isLessThanOrEqual(C_t))) {
raceDetected = true;
}
// Check if an earlier write of same variable is incomparable with this write
// event
if (!(W_v.isLessThanOrEqual(C_t))) {
raceDetected = true;
}
// Update the Write(v) clock
W_v.updateWithMax(W_v, C_t);
return raceDetected;
}
/************************************************/
/***************** Fork/Join **********************/
// Handler for Fork event
@Override
public boolean HandleSubFork(WCPState state, int verbosity) {
if (state.isThreadRelevant(this.getTarget())) {
/****** Annotation phase starts **********/
// No annotation required
/****** Annotation phase ends **********/
VectorClock H_t = state.getVectorClock(state.HBPredecessorThread,
this.getThread());
VectorClock C_t = state.generateVectorClockFromClockThread(this.getThread());
VectorClock H_tc = state.getVectorClock(state.HBPredecessorThread,
this.getTarget());
H_tc.updateWithMax(C_t, H_t); // Update the HB predecessor of the child
// (forked) thread
VectorClock P_tc = state.getVectorClock(state.WCPPredecessorThread,
this.getTarget());
P_tc.updateWithMax(C_t, H_t); // Update the WCP predecessor of the child
// (forked) thread
this.printRaceInfo(state, verbosity);
state.incClockThread(this.getThread());
}
return false;
}
// Handler for Join event
@Override
public boolean HandleSubJoin(WCPState state, int verbosity) {
if (state.isThreadRelevant(this.getTarget())) {
/****** Annotation phase starts **********/
// No annotation required
/****** Annotation phase ends **********/
VectorClock H_t = state.getVectorClock(state.HBPredecessorThread,
this.getThread());
VectorClock H_tc = state.getVectorClock(state.HBPredecessorThread,
this.getTarget());
VectorClock C_tc = state.generateVectorClockFromClockThread(this.getTarget());
VectorClock P_t = state.getVectorClock(state.WCPPredecessorThread,
this.getThread());
H_t.updateWithMax(H_t, H_tc, C_tc); // Update the HB predecessor of this
// thread
P_t.updateWithMax(P_t, H_tc, C_tc); // Update the WCP predecessor of this
// thread
this.printRaceInfo(state, verbosity);
}
return false;
}
/************************************************/
@Override
public void printRaceInfoTransactionType(WCPState state, int verbosity) {
// TODO Auto-generated method stub
}
@Override
public boolean HandleSubBegin(WCPState state, int verbosity) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean HandleSubEnd(WCPState state, int verbosity) {
// TODO Auto-generated method stub
return false;
}
}