2 This file is part of drd, a thread error detector.
4 Copyright (C) 2006-2011 Bart Van Assche <bvanassche@acm.org>.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 The GNU General Public License is contained in the file COPYING.
26 #include "pub_tool_basics.h" // Addr, SizeT
27 #include "pub_tool_libcassert.h" // tl_assert()
28 #include "pub_tool_libcbase.h" // VG_(memcpy)
29 #include "pub_tool_libcprint.h" // VG_(printf)
30 #include "pub_tool_mallocfree.h" // VG_(malloc), VG_(free)
33 /* Local function declarations. */
36 void DRD_(vc_reserve
)(VectorClock
* const vc
, const unsigned new_capacity
);
39 /* Function definitions. */
42 * Initialize the memory 'vc' points at as a vector clock with size 'size'.
43 * If the pointer 'vcelem' is not null, it is assumed to be an array with
44 * 'size' elements and it becomes the initial value of the vector clock.
46 void DRD_(vc_init
)(VectorClock
* const vc
,
47 const VCElem
* const vcelem
,
54 DRD_(vc_reserve
)(vc
, size
);
55 tl_assert(size
== 0 || vc
->vc
!= 0);
58 VG_(memcpy
)(vc
->vc
, vcelem
, size
* sizeof(vcelem
[0]));
63 /** Reset vc to the empty vector clock. */
64 void DRD_(vc_cleanup
)(VectorClock
* const vc
)
66 DRD_(vc_reserve
)(vc
, 0);
69 /** Copy constructor -- initializes *new. */
70 void DRD_(vc_copy
)(VectorClock
* const new, const VectorClock
* const rhs
)
72 DRD_(vc_init
)(new, rhs
->vc
, rhs
->size
);
75 /** Assignment operator -- *lhs is already a valid vector clock. */
76 void DRD_(vc_assign
)(VectorClock
* const lhs
, const VectorClock
* const rhs
)
78 DRD_(vc_cleanup
)(lhs
);
79 DRD_(vc_copy
)(lhs
, rhs
);
82 /** Increment the clock of thread 'tid' in vector clock 'vc'. */
83 void DRD_(vc_increment
)(VectorClock
* const vc
, DrdThreadId
const tid
)
86 for (i
= 0; i
< vc
->size
; i
++)
88 if (vc
->vc
[i
].threadid
== tid
)
90 typeof(vc
->vc
[i
].count
) const oldcount
= vc
->vc
[i
].count
;
92 // Check for integer overflow.
93 tl_assert(oldcount
< vc
->vc
[i
].count
);
99 * The specified thread ID does not yet exist in the vector clock
103 const VCElem vcelem
= { tid
, 1 };
105 DRD_(vc_init
)(&vc2
, &vcelem
, 1);
106 DRD_(vc_combine
)(vc
, &vc2
);
107 DRD_(vc_cleanup
)(&vc2
);
112 * @return True if vector clocks vc1 and vc2 are ordered, and false otherwise.
113 * Order is as imposed by thread synchronization actions ("happens before").
115 Bool
DRD_(vc_ordered
)(const VectorClock
* const vc1
,
116 const VectorClock
* const vc2
)
118 return DRD_(vc_lte
)(vc1
, vc2
) || DRD_(vc_lte
)(vc2
, vc1
);
121 /** Compute elementwise minimum. */
122 void DRD_(vc_min
)(VectorClock
* const result
, const VectorClock
* const rhs
)
130 DRD_(vc_check
)(result
);
132 /* Next, combine both vector clocks into one. */
134 for (j
= 0; j
< rhs
->size
; j
++)
136 while (i
< result
->size
&& result
->vc
[i
].threadid
< rhs
->vc
[j
].threadid
)
138 /* Thread ID is missing in second vector clock. Clear the count. */
139 result
->vc
[i
].count
= 0;
142 if (i
>= result
->size
)
146 if (result
->vc
[i
].threadid
<= rhs
->vc
[j
].threadid
)
148 /* The thread ID is present in both vector clocks. Compute the */
149 /* minimum of vc[i].count and vc[j].count. */
150 tl_assert(result
->vc
[i
].threadid
== rhs
->vc
[j
].threadid
);
151 if (rhs
->vc
[j
].count
< result
->vc
[i
].count
)
153 result
->vc
[i
].count
= rhs
->vc
[j
].count
;
157 DRD_(vc_check
)(result
);
161 * Compute elementwise maximum.
163 void DRD_(vc_combine
)(VectorClock
* const result
, const VectorClock
* const rhs
)
173 // First count the number of shared thread id's.
176 for (i
= 0; i
< result
->size
; i
++)
178 while (j
< rhs
->size
&& rhs
->vc
[j
].threadid
< result
->vc
[i
].threadid
)
182 if (result
->vc
[i
].threadid
== rhs
->vc
[j
].threadid
)
186 DRD_(vc_check
)(result
);
188 new_size
= result
->size
+ rhs
->size
- shared
;
189 if (new_size
> result
->capacity
)
190 DRD_(vc_reserve
)(result
, new_size
);
192 DRD_(vc_check
)(result
);
194 // Next, combine both vector clocks into one.
196 for (j
= 0; j
< rhs
->size
; j
++)
198 /* First of all, skip those clocks in result->vc[] for which there */
199 /* is no corresponding clock in rhs->vc[]. */
200 while (i
< result
->size
&& result
->vc
[i
].threadid
< rhs
->vc
[j
].threadid
)
204 /* If the end of *result is met, append rhs->vc[j] to *result. */
205 if (i
>= result
->size
)
208 result
->vc
[i
] = rhs
->vc
[j
];
210 /* If clock rhs->vc[j] is not in *result, insert it. */
211 else if (result
->vc
[i
].threadid
> rhs
->vc
[j
].threadid
)
214 for (k
= result
->size
; k
> i
; k
--)
216 result
->vc
[k
] = result
->vc
[k
- 1];
219 result
->vc
[i
] = rhs
->vc
[j
];
221 /* Otherwise, both *result and *rhs have a clock for thread */
222 /* result->vc[i].threadid == rhs->vc[j].threadid. Compute the maximum. */
225 tl_assert(result
->vc
[i
].threadid
== rhs
->vc
[j
].threadid
);
226 if (rhs
->vc
[j
].count
> result
->vc
[i
].count
)
228 result
->vc
[i
].count
= rhs
->vc
[j
].count
;
232 DRD_(vc_check
)(result
);
233 tl_assert(result
->size
== new_size
);
236 /** Print the contents of vector clock 'vc'. */
237 void DRD_(vc_print
)(const VectorClock
* const vc
)
241 if ((str
= DRD_(vc_aprint
)(vc
)) != NULL
)
243 VG_(printf
)("%s", str
);
249 * Print the contents of vector clock 'vc' to a newly allocated string.
250 * The caller must call VG_(free)() on the return value of this function.
252 char* DRD_(vc_aprint
)(const VectorClock
* const vc
)
262 str
= VG_(realloc
)("drd.vc.aprint.1", str
, reserved
);
265 size
+= VG_(snprintf
)(str
, reserved
, "[");
266 for (i
= 0; i
< vc
->size
; i
++)
269 if (VG_(strlen
)(str
) + 32 > reserved
)
272 str
= VG_(realloc
)("drd.vc.aprint.2", str
, reserved
);
276 size
+= VG_(snprintf
)(str
+ size
, reserved
- size
,
277 "%s %d: %d", i
> 0 ? "," : "",
278 vc
->vc
[i
].threadid
, vc
->vc
[i
].count
);
280 size
+= VG_(snprintf
)(str
+ size
, reserved
- size
, " ]");
288 * The function below tests whether the following two conditions are
290 * - size <= capacity.
291 * - Vector clock elements are stored in thread ID order.
293 * If one of these conditions is not met, an assertion failure is triggered.
295 void DRD_(vc_check
)(const VectorClock
* const vc
)
298 tl_assert(vc
->size
<= vc
->capacity
);
299 for (i
= 1; i
< vc
->size
; i
++)
301 tl_assert(vc
->vc
[i
-1].threadid
< vc
->vc
[i
].threadid
);
306 * Change the size of the memory block pointed at by vc->vc.
307 * Changes capacity, but does not change size. If the size of the memory
308 * block is increased, the newly allocated memory is not initialized.
311 void DRD_(vc_reserve
)(VectorClock
* const vc
, const unsigned new_capacity
)
314 tl_assert(vc
->capacity
> VC_PREALLOCATED
316 || vc
->vc
== vc
->preallocated
);
318 if (new_capacity
> vc
->capacity
)
320 if (vc
->vc
&& vc
->capacity
> VC_PREALLOCATED
)
323 && vc
->vc
!= vc
->preallocated
324 && vc
->capacity
> VC_PREALLOCATED
);
325 vc
->vc
= VG_(realloc
)("drd.vc.vr.1",
326 vc
->vc
, new_capacity
* sizeof(vc
->vc
[0]));
328 else if (vc
->vc
&& new_capacity
> VC_PREALLOCATED
)
330 tl_assert((vc
->vc
== 0 || vc
->vc
== vc
->preallocated
)
331 && new_capacity
> VC_PREALLOCATED
332 && vc
->capacity
<= VC_PREALLOCATED
);
333 vc
->vc
= VG_(malloc
)("drd.vc.vr.2",
334 new_capacity
* sizeof(vc
->vc
[0]));
335 VG_(memcpy
)(vc
->vc
, vc
->preallocated
,
336 vc
->capacity
* sizeof(vc
->vc
[0]));
340 tl_assert(vc
->vc
== vc
->preallocated
341 && new_capacity
<= VC_PREALLOCATED
342 && vc
->capacity
<= VC_PREALLOCATED
);
344 else if (new_capacity
> VC_PREALLOCATED
)
346 tl_assert(vc
->vc
== 0
347 && new_capacity
> VC_PREALLOCATED
348 && vc
->capacity
== 0);
349 vc
->vc
= VG_(malloc
)("drd.vc.vr.3",
350 new_capacity
* sizeof(vc
->vc
[0]));
354 tl_assert(vc
->vc
== 0
355 && new_capacity
<= VC_PREALLOCATED
356 && vc
->capacity
== 0);
357 vc
->vc
= vc
->preallocated
;
359 vc
->capacity
= new_capacity
;
361 else if (new_capacity
== 0 && vc
->vc
)
363 if (vc
->capacity
> VC_PREALLOCATED
)
369 tl_assert(new_capacity
== 0 || vc
->vc
!= 0);
370 tl_assert(vc
->capacity
> VC_PREALLOCATED
372 || vc
->vc
== vc
->preallocated
);