blob: c7f1fb168cd57a0c16c70058606503c771b0c729 [file] [log] [blame]
bartbedfd232009-03-26 19:07:15 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardjaf44c822007-11-25 14:01:38 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00004
bart86562bd2009-02-16 19:43:56 +00005 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
sewardjaf44c822007-11-25 14:01:38 +00006
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
26#ifndef __DRD_VC_H
27#define __DRD_VC_H
28
29
bart41b226c2009-02-14 16:55:19 +000030/*
31 * DRD vector clock implementation:
32 * - One counter per thread.
33 * - A vector clock is implemented as multiple pairs of (thread id, counter).
34 * - Pairs are stored in an array sorted by thread id.
35 *
36 * Semantics:
37 * - Each time a thread performs an action that implies an ordering between
38 * intra-thread events, the counter of that thread is incremented.
39 * - Vector clocks are compared by comparing all counters of all threads.
40 * - When a thread synchronization action is performed that guarantees that
41 * new actions of the current thread are executed after the actions of the
42 * other thread, the vector clock of the synchronization object and the
43 * current thread are combined (by taking the component-wise maximum).
44 * - A vector clock is incremented during actions such as
45 * pthread_create(), pthread_mutex_unlock(), sem_post(). (Actions where
46 * an inter-thread ordering "arrow" starts).
47 */
sewardjaf44c822007-11-25 14:01:38 +000048
49
50#include "pub_tool_basics.h" // Addr, SizeT
51
52
bart41b226c2009-02-14 16:55:19 +000053/** Vector clock element. */
sewardjaf44c822007-11-25 14:01:38 +000054typedef struct
55{
bartbedfd232009-03-26 19:07:15 +000056 DrdThreadId threadid;
57 UInt count;
sewardjaf44c822007-11-25 14:01:38 +000058} VCElem;
59
60typedef struct
61{
bartbedfd232009-03-26 19:07:15 +000062 unsigned capacity; /**< number of elements allocated for array vc. */
63 unsigned size; /**< number of elements used of array vc. */
64 VCElem* vc; /**< vector clock elements. */
sewardjaf44c822007-11-25 14:01:38 +000065} VectorClock;
66
67
bart41b226c2009-02-14 16:55:19 +000068void DRD_(vc_init)(VectorClock* const vc,
69 const VCElem* const vcelem,
70 const unsigned size);
71void DRD_(vc_cleanup)(VectorClock* const vc);
72void DRD_(vc_copy)(VectorClock* const new, const VectorClock* const rhs);
73void DRD_(vc_assign)(VectorClock* const lhs, const VectorClock* const rhs);
bart41b226c2009-02-14 16:55:19 +000074void DRD_(vc_increment)(VectorClock* const vc, DrdThreadId const tid);
bartfa1b2932008-06-22 13:05:00 +000075static __inline__
bart41b226c2009-02-14 16:55:19 +000076Bool DRD_(vc_lte)(const VectorClock* const vc1,
77 const VectorClock* const vc2);
78Bool DRD_(vc_ordered)(const VectorClock* const vc1,
79 const VectorClock* const vc2);
80void DRD_(vc_min)(VectorClock* const result,
81 const VectorClock* const rhs);
82void DRD_(vc_combine)(VectorClock* const result,
83 const VectorClock* const rhs);
84Bool DRD_(vc_combine2)(VectorClock* const result,
85 const VectorClock* const rhs,
86 const DrdThreadId tid);
87void DRD_(vc_print)(const VectorClock* const vc);
88void DRD_(vc_snprint)(Char* const str, const Int size,
89 const VectorClock* const vc);
90void DRD_(vc_check)(const VectorClock* const vc);
91void DRD_(vc_test)(void);
sewardjaf44c822007-11-25 14:01:38 +000092
93
bartfa1b2932008-06-22 13:05:00 +000094
95/**
96 * @return True if all thread id's that are present in vc1 also exist in
97 * vc2, and if additionally all corresponding counters in v2 are higher or
98 * equal.
99 */
100static __inline__
bart41b226c2009-02-14 16:55:19 +0000101Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2)
bartfa1b2932008-06-22 13:05:00 +0000102{
bartbedfd232009-03-26 19:07:15 +0000103 unsigned i;
104 unsigned j = 0;
bartfa1b2932008-06-22 13:05:00 +0000105
bartbedfd232009-03-26 19:07:15 +0000106 for (i = 0; i < vc1->size; i++)
107 {
108 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
109 {
110 j++;
111 }
112 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
113 return False;
bartfa1b2932008-06-22 13:05:00 +0000114#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
bartbedfd232009-03-26 19:07:15 +0000115 /* This assert statement has been commented out because of performance */
116 /* reasons.*/
117 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
bartfa1b2932008-06-22 13:05:00 +0000118#endif
bartbedfd232009-03-26 19:07:15 +0000119 if (vc1->vc[i].count > vc2->vc[j].count)
120 return False;
121 }
122 return True;
bartfa1b2932008-06-22 13:05:00 +0000123}
124
125
sewardjaf44c822007-11-25 14:01:38 +0000126#endif /* __DRD_VC_H */