blob: d467128e6bf92f8f7334cd894f1453544df412d1 [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
sewardje0744f02007-12-01 02:09:50 +000026#include "drd_error.h"
27#include "drd_segment.h"
28#include "drd_thread.h"
sewardjaf44c822007-11-25 14:01:38 +000029#include "pub_tool_basics.h" // Addr, SizeT
30#include "pub_tool_errormgr.h" // VG_(unique_error)()
31#include "pub_tool_libcassert.h" // tl_assert()
32#include "pub_tool_libcbase.h" // VG_(strlen)()
33#include "pub_tool_libcprint.h" // VG_(printf)()
tomda3fdba2008-01-04 23:57:15 +000034#include "pub_tool_machine.h" // VG_(get_SP)()
sewardjaf44c822007-11-25 14:01:38 +000035#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardje0744f02007-12-01 02:09:50 +000036#include "pub_tool_threadstate.h" // VG_INVALID_THREADID
sewardjaf44c822007-11-25 14:01:38 +000037
38
bart62ada3f2009-02-14 17:19:58 +000039/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000040
bart1a3b0b32009-05-03 17:07:34 +000041static ULong s_segment_merge_count;
bart2adfc2a2009-03-12 18:38:00 +000042static ULong s_segments_created_count;
43static ULong s_segments_alive_count;
44static ULong s_max_segments_alive_count;
45static Bool s_trace_segment;
sewardjaf44c822007-11-25 14:01:38 +000046
47
bart62ada3f2009-02-14 17:19:58 +000048/* Function definitions. */
sewardjaf44c822007-11-25 14:01:38 +000049
bart62ada3f2009-02-14 17:19:58 +000050/**
51 * Initialize the memory 'sg' points at.
bart2adfc2a2009-03-12 18:38:00 +000052 *
53 * @note The creator and created thread ID's may be equal.
54 * @note This function copies the vector clock of thread 'creator', a technique
55 * also known as clock snooping. This will only work reliably if the thread
56 * that called pthread_create() waits until the created thread has copied
57 * the vector clock.
sewardjaf44c822007-11-25 14:01:38 +000058 */
bart2adfc2a2009-03-12 18:38:00 +000059static void sg_init(Segment* const sg,
60 const DrdThreadId creator,
61 const DrdThreadId created)
sewardjaf44c822007-11-25 14:01:38 +000062{
bartbedfd232009-03-26 19:07:15 +000063 Segment* creator_sg;
64 ThreadId vg_created = DRD_(DrdThreadIdToVgThreadId)(created);
sewardjaf44c822007-11-25 14:01:38 +000065
bartbedfd232009-03-26 19:07:15 +000066 tl_assert(sg);
67 tl_assert(creator == DRD_INVALID_THREADID
68 || DRD_(IsValidDrdThreadId)(creator));
sewardjaf44c822007-11-25 14:01:38 +000069
bartbedfd232009-03-26 19:07:15 +000070 creator_sg = (creator != DRD_INVALID_THREADID
71 ? DRD_(thread_get_segment)(creator) : 0);
barta2b6e1b2008-03-17 18:32:39 +000072
bartbedfd232009-03-26 19:07:15 +000073 sg->next = 0;
74 sg->prev = 0;
bart8f822af2009-06-08 18:20:42 +000075 sg->tid = created;
bartbedfd232009-03-26 19:07:15 +000076 sg->refcnt = 1;
sewardjaf44c822007-11-25 14:01:38 +000077
bartbedfd232009-03-26 19:07:15 +000078 if (vg_created != VG_INVALID_THREADID && VG_(get_SP)(vg_created) != 0)
79 sg->stacktrace = VG_(record_ExeContext)(vg_created, 0);
80 else
81 sg->stacktrace = 0;
sewardjaf44c822007-11-25 14:01:38 +000082
bartbedfd232009-03-26 19:07:15 +000083 if (creator_sg)
84 DRD_(vc_copy)(&sg->vc, &creator_sg->vc);
85 else
86 DRD_(vc_init)(&sg->vc, 0, 0);
87 DRD_(vc_increment)(&sg->vc, created);
bart8f822af2009-06-08 18:20:42 +000088 DRD_(bm_init)(&sg->bm);
sewardjaf44c822007-11-25 14:01:38 +000089
bartbedfd232009-03-26 19:07:15 +000090 if (s_trace_segment)
91 {
bart8f822af2009-06-08 18:20:42 +000092 char* vc;
93
94 vc = DRD_(vc_aprint)(&sg->vc);
95 VG_(message)(Vg_DebugMsg, "New segment for thread %d/%d with vc %s",
96 created != VG_INVALID_THREADID
97 ? DRD_(DrdThreadIdToVgThreadId)(created)
98 : DRD_INVALID_THREADID,
99 created, vc);
100 VG_(free)(vc);
bartbedfd232009-03-26 19:07:15 +0000101 }
sewardjaf44c822007-11-25 14:01:38 +0000102}
103
barta2b6e1b2008-03-17 18:32:39 +0000104/** Deallocate the memory that was allocated by sg_init(). */
bart62ada3f2009-02-14 17:19:58 +0000105static void DRD_(sg_cleanup)(Segment* const sg)
sewardjaf44c822007-11-25 14:01:38 +0000106{
bartbedfd232009-03-26 19:07:15 +0000107 tl_assert(sg);
108 tl_assert(sg->refcnt == 0);
barta2b6e1b2008-03-17 18:32:39 +0000109
bartbedfd232009-03-26 19:07:15 +0000110 DRD_(vc_cleanup)(&sg->vc);
bart8f822af2009-06-08 18:20:42 +0000111 DRD_(bm_cleanup)(&sg->bm);
sewardjaf44c822007-11-25 14:01:38 +0000112}
113
barta2b6e1b2008-03-17 18:32:39 +0000114/** Allocate and initialize a new segment. */
bart2adfc2a2009-03-12 18:38:00 +0000115Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created)
sewardjaf44c822007-11-25 14:01:38 +0000116{
bartbedfd232009-03-26 19:07:15 +0000117 Segment* sg;
sewardjaf44c822007-11-25 14:01:38 +0000118
bartbedfd232009-03-26 19:07:15 +0000119 s_segments_created_count++;
120 s_segments_alive_count++;
121 if (s_max_segments_alive_count < s_segments_alive_count)
122 s_max_segments_alive_count = s_segments_alive_count;
sewardjaf44c822007-11-25 14:01:38 +0000123
bartbedfd232009-03-26 19:07:15 +0000124 sg = VG_(malloc)("drd.segment.sn.1", sizeof(*sg));
125 tl_assert(sg);
126 sg_init(sg, creator, created);
127 return sg;
sewardjaf44c822007-11-25 14:01:38 +0000128}
129
bart62ada3f2009-02-14 17:19:58 +0000130static void DRD_(sg_delete)(Segment* const sg)
sewardjaf44c822007-11-25 14:01:38 +0000131{
bartbedfd232009-03-26 19:07:15 +0000132 if (DRD_(sg_get_trace)())
133 {
bart8f822af2009-06-08 18:20:42 +0000134 char* vc;
135
136 vc = DRD_(vc_aprint)(&sg->vc);
137 VG_(message)(Vg_DebugMsg, "Discarding the segment with vector clock %s",
138 vc);
139 VG_(free)(vc);
bartbedfd232009-03-26 19:07:15 +0000140 }
bart68edad52008-02-24 18:21:12 +0000141
bartbedfd232009-03-26 19:07:15 +0000142 s_segments_alive_count--;
sewardjaf44c822007-11-25 14:01:38 +0000143
bartbedfd232009-03-26 19:07:15 +0000144 tl_assert(sg);
145 DRD_(sg_cleanup)(sg);
146 VG_(free)(sg);
sewardjaf44c822007-11-25 14:01:38 +0000147}
148
barta2b6e1b2008-03-17 18:32:39 +0000149/** Increment the reference count of the specified segment. */
bart62ada3f2009-02-14 17:19:58 +0000150Segment* DRD_(sg_get)(Segment* const sg)
barta2b6e1b2008-03-17 18:32:39 +0000151{
bartbedfd232009-03-26 19:07:15 +0000152 tl_assert(sg);
barta2b6e1b2008-03-17 18:32:39 +0000153
bartbedfd232009-03-26 19:07:15 +0000154 sg->refcnt++;
155 return sg;
barta2b6e1b2008-03-17 18:32:39 +0000156}
157
bart62ada3f2009-02-14 17:19:58 +0000158/**
159 * Decrement the reference count of the specified segment and deallocate the
160 * segment if the reference count became zero.
barta2b6e1b2008-03-17 18:32:39 +0000161 */
bart62ada3f2009-02-14 17:19:58 +0000162void DRD_(sg_put)(Segment* const sg)
barta2b6e1b2008-03-17 18:32:39 +0000163{
bartbedfd232009-03-26 19:07:15 +0000164 if (sg == 0)
165 return;
barta2b6e1b2008-03-17 18:32:39 +0000166
bartbedfd232009-03-26 19:07:15 +0000167 if (s_trace_segment)
168 {
bart8f822af2009-06-08 18:20:42 +0000169 char* vc;
170
171 vc = DRD_(vc_aprint)(&sg->vc);
172 VG_(message)(Vg_DebugMsg,
173 "Decrementing segment reference count %d -> %d with vc %s",
174 sg->refcnt, sg->refcnt - 1, vc);
175 VG_(free)(vc);
bartbedfd232009-03-26 19:07:15 +0000176 }
barta2b6e1b2008-03-17 18:32:39 +0000177
bartbedfd232009-03-26 19:07:15 +0000178 tl_assert(sg->refcnt >= 1);
barta2b6e1b2008-03-17 18:32:39 +0000179
bartbedfd232009-03-26 19:07:15 +0000180 if (--sg->refcnt == 0)
181 {
182 DRD_(sg_delete)(sg);
183 }
barta2b6e1b2008-03-17 18:32:39 +0000184}
185
barta9c37392008-03-22 09:38:48 +0000186/** Merge sg1 and sg2 into sg1. */
bart8f822af2009-06-08 18:20:42 +0000187void DRD_(sg_merge)(Segment* const sg1, Segment* const sg2)
barta9c37392008-03-22 09:38:48 +0000188{
bartbedfd232009-03-26 19:07:15 +0000189 tl_assert(sg1);
190 tl_assert(sg1->refcnt == 1);
191 tl_assert(sg2);
192 tl_assert(sg2->refcnt == 1);
barta9c37392008-03-22 09:38:48 +0000193
bartbedfd232009-03-26 19:07:15 +0000194 if (s_trace_segment)
195 {
bart8f822af2009-06-08 18:20:42 +0000196 char *vc1, *vc2;
barta9c37392008-03-22 09:38:48 +0000197
bart8f822af2009-06-08 18:20:42 +0000198 vc1 = DRD_(vc_aprint)(&sg1->vc);
199 vc2 = DRD_(vc_aprint)(&sg2->vc);
200
201 VG_(message)(Vg_DebugMsg, "Merging segments with vector clocks %s and %s",
202 vc1, vc2);
203 VG_(free)(vc1);
204 VG_(free)(vc2);
bartbedfd232009-03-26 19:07:15 +0000205 }
barta9c37392008-03-22 09:38:48 +0000206
bart1a3b0b32009-05-03 17:07:34 +0000207 s_segment_merge_count++;
208
bartbedfd232009-03-26 19:07:15 +0000209 // Keep sg1->stacktrace.
210 // Keep sg1->vc.
211 // Merge sg2->bm into sg1->bm.
bart8f822af2009-06-08 18:20:42 +0000212 DRD_(bm_merge2)(&sg1->bm, &sg2->bm);
barta9c37392008-03-22 09:38:48 +0000213}
214
bart62ada3f2009-02-14 17:19:58 +0000215/** Print the vector clock and the bitmap of the specified segment. */
bart8f822af2009-06-08 18:20:42 +0000216void DRD_(sg_print)(Segment* const sg)
sewardjaf44c822007-11-25 14:01:38 +0000217{
bartbedfd232009-03-26 19:07:15 +0000218 tl_assert(sg);
219 VG_(printf)("vc: ");
220 DRD_(vc_print)(&sg->vc);
221 VG_(printf)("\n");
bart8f822af2009-06-08 18:20:42 +0000222 DRD_(bm_print)(&sg->bm);
sewardjaf44c822007-11-25 14:01:38 +0000223}
224
bart62ada3f2009-02-14 17:19:58 +0000225/** Query whether segment tracing has been enabled. */
226Bool DRD_(sg_get_trace)(void)
sewardjaf44c822007-11-25 14:01:38 +0000227{
bartbedfd232009-03-26 19:07:15 +0000228 return s_trace_segment;
sewardjaf44c822007-11-25 14:01:38 +0000229}
230
bart62ada3f2009-02-14 17:19:58 +0000231/** Enable or disable segment tracing. */
232void DRD_(sg_set_trace)(Bool const trace_segment)
sewardjaf44c822007-11-25 14:01:38 +0000233{
bartbedfd232009-03-26 19:07:15 +0000234 tl_assert(trace_segment == False || trace_segment == True);
235 s_trace_segment = trace_segment;
sewardjaf44c822007-11-25 14:01:38 +0000236}
237
bart62ada3f2009-02-14 17:19:58 +0000238ULong DRD_(sg_get_segments_created_count)(void)
sewardjaf44c822007-11-25 14:01:38 +0000239{
bartbedfd232009-03-26 19:07:15 +0000240 return s_segments_created_count;
sewardjaf44c822007-11-25 14:01:38 +0000241}
242
bart62ada3f2009-02-14 17:19:58 +0000243ULong DRD_(sg_get_segments_alive_count)(void)
sewardjaf44c822007-11-25 14:01:38 +0000244{
bartbedfd232009-03-26 19:07:15 +0000245 return s_segments_alive_count;
bart7102f102008-03-17 17:37:53 +0000246}
247
bart62ada3f2009-02-14 17:19:58 +0000248ULong DRD_(sg_get_max_segments_alive_count)(void)
bart7102f102008-03-17 17:37:53 +0000249{
bartbedfd232009-03-26 19:07:15 +0000250 return s_max_segments_alive_count;
sewardjaf44c822007-11-25 14:01:38 +0000251}
bart1a3b0b32009-05-03 17:07:34 +0000252
253ULong DRD_(sg_get_segment_merge_count)(void)
254{
255 return s_segment_merge_count;
256}