blob: d3cf567c3e3ef1019528f7f671e4876198b6c51d [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00003
bartd4bab992013-10-04 05:55:30 +00004 Copyright (C) 2006-2013 Bart Van Assche <bvanassche@acm.org>.
sewardjaf44c822007-11-25 14:01:38 +00005
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.
10
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.
15
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
19 02111-1307, USA.
20
21 The GNU General Public License is contained in the file COPYING.
22*/
23
24
25#include "drd_vc.h"
26#include "pub_tool_basics.h" // Addr, SizeT
27#include "pub_tool_libcassert.h" // tl_assert()
bart41b226c2009-02-14 16:55:19 +000028#include "pub_tool_libcbase.h" // VG_(memcpy)
sewardjaf44c822007-11-25 14:01:38 +000029#include "pub_tool_libcprint.h" // VG_(printf)
30#include "pub_tool_mallocfree.h" // VG_(malloc), VG_(free)
sewardjaf44c822007-11-25 14:01:38 +000031
32
bart41b226c2009-02-14 16:55:19 +000033/* Local function declarations. */
34
sewardjaf44c822007-11-25 14:01:38 +000035static
bart41b226c2009-02-14 16:55:19 +000036void DRD_(vc_reserve)(VectorClock* const vc, const unsigned new_capacity);
sewardjaf44c822007-11-25 14:01:38 +000037
38
bart41b226c2009-02-14 16:55:19 +000039/* Function definitions. */
40
41/**
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.
45 */
46void DRD_(vc_init)(VectorClock* const vc,
47 const VCElem* const vcelem,
48 const unsigned size)
sewardjaf44c822007-11-25 14:01:38 +000049{
bartbedfd232009-03-26 19:07:15 +000050 tl_assert(vc);
51 vc->size = 0;
52 vc->capacity = 0;
53 vc->vc = 0;
54 DRD_(vc_reserve)(vc, size);
55 tl_assert(size == 0 || vc->vc != 0);
56 if (vcelem)
57 {
58 VG_(memcpy)(vc->vc, vcelem, size * sizeof(vcelem[0]));
59 vc->size = size;
60 }
sewardjaf44c822007-11-25 14:01:38 +000061}
62
bart41b226c2009-02-14 16:55:19 +000063/** Reset vc to the empty vector clock. */
64void DRD_(vc_cleanup)(VectorClock* const vc)
sewardjaf44c822007-11-25 14:01:38 +000065{
bartbedfd232009-03-26 19:07:15 +000066 DRD_(vc_reserve)(vc, 0);
sewardjaf44c822007-11-25 14:01:38 +000067}
68
bartc46c2322008-02-24 18:26:46 +000069/** Copy constructor -- initializes *new. */
bart41b226c2009-02-14 16:55:19 +000070void DRD_(vc_copy)(VectorClock* const new, const VectorClock* const rhs)
sewardjaf44c822007-11-25 14:01:38 +000071{
bartbedfd232009-03-26 19:07:15 +000072 DRD_(vc_init)(new, rhs->vc, rhs->size);
sewardjaf44c822007-11-25 14:01:38 +000073}
74
bartc46c2322008-02-24 18:26:46 +000075/** Assignment operator -- *lhs is already a valid vector clock. */
bart41b226c2009-02-14 16:55:19 +000076void DRD_(vc_assign)(VectorClock* const lhs, const VectorClock* const rhs)
bartc46c2322008-02-24 18:26:46 +000077{
bartbedfd232009-03-26 19:07:15 +000078 DRD_(vc_cleanup)(lhs);
79 DRD_(vc_copy)(lhs, rhs);
bartc46c2322008-02-24 18:26:46 +000080}
81
bart41b226c2009-02-14 16:55:19 +000082/** Increment the clock of thread 'tid' in vector clock 'vc'. */
83void DRD_(vc_increment)(VectorClock* const vc, DrdThreadId const tid)
sewardjaf44c822007-11-25 14:01:38 +000084{
bartbedfd232009-03-26 19:07:15 +000085 unsigned i;
86 for (i = 0; i < vc->size; i++)
87 {
88 if (vc->vc[i].threadid == tid)
89 {
90 typeof(vc->vc[i].count) const oldcount = vc->vc[i].count;
91 vc->vc[i].count++;
92 // Check for integer overflow.
93 tl_assert(oldcount < vc->vc[i].count);
94 return;
95 }
96 }
sewardjaf44c822007-11-25 14:01:38 +000097
bartbedfd232009-03-26 19:07:15 +000098 /*
99 * The specified thread ID does not yet exist in the vector clock
100 * -- insert it.
101 */
102 {
103 const VCElem vcelem = { tid, 1 };
104 VectorClock vc2;
105 DRD_(vc_init)(&vc2, &vcelem, 1);
106 DRD_(vc_combine)(vc, &vc2);
107 DRD_(vc_cleanup)(&vc2);
108 }
sewardjaf44c822007-11-25 14:01:38 +0000109}
110
111/**
sewardjaf44c822007-11-25 14:01:38 +0000112 * @return True if vector clocks vc1 and vc2 are ordered, and false otherwise.
113 * Order is as imposed by thread synchronization actions ("happens before").
114 */
bart41b226c2009-02-14 16:55:19 +0000115Bool DRD_(vc_ordered)(const VectorClock* const vc1,
116 const VectorClock* const vc2)
sewardjaf44c822007-11-25 14:01:38 +0000117{
bartbedfd232009-03-26 19:07:15 +0000118 return DRD_(vc_lte)(vc1, vc2) || DRD_(vc_lte)(vc2, vc1);
sewardjaf44c822007-11-25 14:01:38 +0000119}
120
bart5bd9f2d2008-03-03 20:31:58 +0000121/** Compute elementwise minimum. */
bart41b226c2009-02-14 16:55:19 +0000122void DRD_(vc_min)(VectorClock* const result, const VectorClock* const rhs)
sewardjaf44c822007-11-25 14:01:38 +0000123{
bartbedfd232009-03-26 19:07:15 +0000124 unsigned i;
125 unsigned j;
sewardjaf44c822007-11-25 14:01:38 +0000126
bartbedfd232009-03-26 19:07:15 +0000127 tl_assert(result);
128 tl_assert(rhs);
sewardjaf44c822007-11-25 14:01:38 +0000129
bartbedfd232009-03-26 19:07:15 +0000130 DRD_(vc_check)(result);
sewardjaf44c822007-11-25 14:01:38 +0000131
bartbedfd232009-03-26 19:07:15 +0000132 /* Next, combine both vector clocks into one. */
133 i = 0;
134 for (j = 0; j < rhs->size; j++)
135 {
136 while (i < result->size && result->vc[i].threadid < rhs->vc[j].threadid)
sewardjaf44c822007-11-25 14:01:38 +0000137 {
bartbedfd232009-03-26 19:07:15 +0000138 /* Thread ID is missing in second vector clock. Clear the count. */
139 result->vc[i].count = 0;
140 i++;
sewardjaf44c822007-11-25 14:01:38 +0000141 }
bartbedfd232009-03-26 19:07:15 +0000142 if (i >= result->size)
143 {
144 break;
145 }
146 if (result->vc[i].threadid <= rhs->vc[j].threadid)
147 {
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)
152 {
153 result->vc[i].count = rhs->vc[j].count;
154 }
155 }
156 }
157 DRD_(vc_check)(result);
sewardjaf44c822007-11-25 14:01:38 +0000158}
159
160/**
161 * Compute elementwise maximum.
162 */
bart41b226c2009-02-14 16:55:19 +0000163void DRD_(vc_combine)(VectorClock* const result, const VectorClock* const rhs)
sewardjaf44c822007-11-25 14:01:38 +0000164{
bartbedfd232009-03-26 19:07:15 +0000165 unsigned i;
166 unsigned j;
167 unsigned shared;
168 unsigned new_size;
sewardjaf44c822007-11-25 14:01:38 +0000169
bartbedfd232009-03-26 19:07:15 +0000170 tl_assert(result);
171 tl_assert(rhs);
sewardjaf44c822007-11-25 14:01:38 +0000172
bartbedfd232009-03-26 19:07:15 +0000173 // First count the number of shared thread id's.
174 j = 0;
175 shared = 0;
176 for (i = 0; i < result->size; i++)
177 {
178 while (j < rhs->size && rhs->vc[j].threadid < result->vc[i].threadid)
179 j++;
180 if (j >= rhs->size)
181 break;
182 if (result->vc[i].threadid == rhs->vc[j].threadid)
183 shared++;
184 }
sewardjaf44c822007-11-25 14:01:38 +0000185
bartbedfd232009-03-26 19:07:15 +0000186 DRD_(vc_check)(result);
sewardjaf44c822007-11-25 14:01:38 +0000187
bartbedfd232009-03-26 19:07:15 +0000188 new_size = result->size + rhs->size - shared;
189 if (new_size > result->capacity)
190 DRD_(vc_reserve)(result, new_size);
sewardjaf44c822007-11-25 14:01:38 +0000191
bartbedfd232009-03-26 19:07:15 +0000192 DRD_(vc_check)(result);
sewardjaf44c822007-11-25 14:01:38 +0000193
bartbedfd232009-03-26 19:07:15 +0000194 // Next, combine both vector clocks into one.
195 i = 0;
196 for (j = 0; j < rhs->size; j++)
197 {
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)
bartfbbac092008-04-06 14:57:37 +0000201 {
bartbedfd232009-03-26 19:07:15 +0000202 i++;
bartfbbac092008-04-06 14:57:37 +0000203 }
bartbedfd232009-03-26 19:07:15 +0000204 /* If the end of *result is met, append rhs->vc[j] to *result. */
205 if (i >= result->size)
bartfbbac092008-04-06 14:57:37 +0000206 {
bartbedfd232009-03-26 19:07:15 +0000207 result->size++;
208 result->vc[i] = rhs->vc[j];
bartfbbac092008-04-06 14:57:37 +0000209 }
bartbedfd232009-03-26 19:07:15 +0000210 /* If clock rhs->vc[j] is not in *result, insert it. */
211 else if (result->vc[i].threadid > rhs->vc[j].threadid)
sewardjaf44c822007-11-25 14:01:38 +0000212 {
bartbedfd232009-03-26 19:07:15 +0000213 unsigned k;
214 for (k = result->size; k > i; k--)
215 {
216 result->vc[k] = result->vc[k - 1];
217 }
218 result->size++;
219 result->vc[i] = rhs->vc[j];
sewardjaf44c822007-11-25 14:01:38 +0000220 }
bartbedfd232009-03-26 19:07:15 +0000221 /* Otherwise, both *result and *rhs have a clock for thread */
222 /* result->vc[i].threadid == rhs->vc[j].threadid. Compute the maximum. */
223 else
bartfbbac092008-04-06 14:57:37 +0000224 {
bartbedfd232009-03-26 19:07:15 +0000225 tl_assert(result->vc[i].threadid == rhs->vc[j].threadid);
bartbedfd232009-03-26 19:07:15 +0000226 if (rhs->vc[j].count > result->vc[i].count)
227 {
228 result->vc[i].count = rhs->vc[j].count;
229 }
bartfbbac092008-04-06 14:57:37 +0000230 }
bartbedfd232009-03-26 19:07:15 +0000231 }
232 DRD_(vc_check)(result);
233 tl_assert(result->size == new_size);
sewardjaf44c822007-11-25 14:01:38 +0000234}
235
bart41b226c2009-02-14 16:55:19 +0000236/** Print the contents of vector clock 'vc'. */
237void DRD_(vc_print)(const VectorClock* const vc)
sewardjaf44c822007-11-25 14:01:38 +0000238{
florian19f91bb2012-11-10 22:29:54 +0000239 HChar* str;
sewardjaf44c822007-11-25 14:01:38 +0000240
bart8f822af2009-06-08 18:20:42 +0000241 if ((str = DRD_(vc_aprint)(vc)) != NULL)
bartbedfd232009-03-26 19:07:15 +0000242 {
bart8f822af2009-06-08 18:20:42 +0000243 VG_(printf)("%s", str);
244 VG_(free)(str);
bartbedfd232009-03-26 19:07:15 +0000245 }
sewardjaf44c822007-11-25 14:01:38 +0000246}
247
bart41b226c2009-02-14 16:55:19 +0000248/**
bart8f822af2009-06-08 18:20:42 +0000249 * 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.
bart41b226c2009-02-14 16:55:19 +0000251 */
florian19f91bb2012-11-10 22:29:54 +0000252HChar* DRD_(vc_aprint)(const VectorClock* const vc)
sewardjaf44c822007-11-25 14:01:38 +0000253{
bartbedfd232009-03-26 19:07:15 +0000254 unsigned i;
bart8f822af2009-06-08 18:20:42 +0000255 unsigned reserved;
256 unsigned size;
florian19f91bb2012-11-10 22:29:54 +0000257 HChar* str = 0;
sewardjaf44c822007-11-25 14:01:38 +0000258
bartbedfd232009-03-26 19:07:15 +0000259 tl_assert(vc);
bart8f822af2009-06-08 18:20:42 +0000260 reserved = 64;
261 size = 0;
262 str = VG_(realloc)("drd.vc.aprint.1", str, reserved);
263 if (! str)
264 return str;
265 size += VG_(snprintf)(str, reserved, "[");
bartbedfd232009-03-26 19:07:15 +0000266 for (i = 0; i < vc->size; i++)
267 {
268 tl_assert(vc->vc);
bart8f822af2009-06-08 18:20:42 +0000269 if (VG_(strlen)(str) + 32 > reserved)
bartbedfd232009-03-26 19:07:15 +0000270 {
bart8f822af2009-06-08 18:20:42 +0000271 reserved *= 2;
272 str = VG_(realloc)("drd.vc.aprint.2", str, reserved);
273 if (! str)
274 return str;
bartbedfd232009-03-26 19:07:15 +0000275 }
bart8f822af2009-06-08 18:20:42 +0000276 size += VG_(snprintf)(str + size, reserved - size,
277 "%s %d: %d", i > 0 ? "," : "",
278 vc->vc[i].threadid, vc->vc[i].count);
bartbedfd232009-03-26 19:07:15 +0000279 }
bart8f822af2009-06-08 18:20:42 +0000280 size += VG_(snprintf)(str + size, reserved - size, " ]");
281
282 return str;
sewardjaf44c822007-11-25 14:01:38 +0000283}
284
285/**
286 * Invariant test.
bart41b226c2009-02-14 16:55:19 +0000287 *
288 * The function below tests whether the following two conditions are
289 * satisfied:
290 * - size <= capacity.
291 * - Vector clock elements are stored in thread ID order.
292 *
293 * If one of these conditions is not met, an assertion failure is triggered.
sewardjaf44c822007-11-25 14:01:38 +0000294 */
bart41b226c2009-02-14 16:55:19 +0000295void DRD_(vc_check)(const VectorClock* const vc)
sewardjaf44c822007-11-25 14:01:38 +0000296{
bartbedfd232009-03-26 19:07:15 +0000297 unsigned i;
298 tl_assert(vc->size <= vc->capacity);
299 for (i = 1; i < vc->size; i++)
300 {
301 tl_assert(vc->vc[i-1].threadid < vc->vc[i].threadid);
302 }
sewardjaf44c822007-11-25 14:01:38 +0000303}
304
305/**
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.
309 */
310static
bart41b226c2009-02-14 16:55:19 +0000311void DRD_(vc_reserve)(VectorClock* const vc, const unsigned new_capacity)
sewardjaf44c822007-11-25 14:01:38 +0000312{
bartbedfd232009-03-26 19:07:15 +0000313 tl_assert(vc);
bart8f822af2009-06-08 18:20:42 +0000314 tl_assert(vc->capacity > VC_PREALLOCATED
315 || vc->vc == 0
316 || vc->vc == vc->preallocated);
317
bartbedfd232009-03-26 19:07:15 +0000318 if (new_capacity > vc->capacity)
319 {
bart8f822af2009-06-08 18:20:42 +0000320 if (vc->vc && vc->capacity > VC_PREALLOCATED)
bartbedfd232009-03-26 19:07:15 +0000321 {
bart8f822af2009-06-08 18:20:42 +0000322 tl_assert(vc->vc
323 && vc->vc != vc->preallocated
324 && vc->capacity > VC_PREALLOCATED);
bartbedfd232009-03-26 19:07:15 +0000325 vc->vc = VG_(realloc)("drd.vc.vr.1",
326 vc->vc, new_capacity * sizeof(vc->vc[0]));
327 }
bart8f822af2009-06-08 18:20:42 +0000328 else if (vc->vc && new_capacity > VC_PREALLOCATED)
bartbedfd232009-03-26 19:07:15 +0000329 {
bart8f822af2009-06-08 18:20:42 +0000330 tl_assert((vc->vc == 0 || vc->vc == vc->preallocated)
331 && new_capacity > VC_PREALLOCATED
332 && vc->capacity <= VC_PREALLOCATED);
bartbedfd232009-03-26 19:07:15 +0000333 vc->vc = VG_(malloc)("drd.vc.vr.2",
334 new_capacity * sizeof(vc->vc[0]));
bart8f822af2009-06-08 18:20:42 +0000335 VG_(memcpy)(vc->vc, vc->preallocated,
336 vc->capacity * sizeof(vc->vc[0]));
337 }
338 else if (vc->vc)
339 {
340 tl_assert(vc->vc == vc->preallocated
341 && new_capacity <= VC_PREALLOCATED
342 && vc->capacity <= VC_PREALLOCATED);
343 }
344 else if (new_capacity > VC_PREALLOCATED)
345 {
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]));
bartbedfd232009-03-26 19:07:15 +0000351 }
352 else
353 {
bart8f822af2009-06-08 18:20:42 +0000354 tl_assert(vc->vc == 0
355 && new_capacity <= VC_PREALLOCATED
356 && vc->capacity == 0);
357 vc->vc = vc->preallocated;
bartbedfd232009-03-26 19:07:15 +0000358 }
359 vc->capacity = new_capacity;
360 }
bart48fcfc62009-06-03 12:44:50 +0000361 else if (new_capacity == 0 && vc->vc)
362 {
bart8f822af2009-06-08 18:20:42 +0000363 if (vc->capacity > VC_PREALLOCATED)
364 VG_(free)(vc->vc);
bart48fcfc62009-06-03 12:44:50 +0000365 vc->vc = 0;
bart8f822af2009-06-08 18:20:42 +0000366 vc->capacity = 0;
bart48fcfc62009-06-03 12:44:50 +0000367 }
bart8f822af2009-06-08 18:20:42 +0000368
bartbedfd232009-03-26 19:07:15 +0000369 tl_assert(new_capacity == 0 || vc->vc != 0);
bart8f822af2009-06-08 18:20:42 +0000370 tl_assert(vc->capacity > VC_PREALLOCATED
371 || vc->vc == 0
372 || vc->vc == vc->preallocated);
sewardjaf44c822007-11-25 14:01:38 +0000373}