blob: 6cb3246249517538159c37cb1422b144e58ae038 [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
2 This file is part of drd, a data race detector.
3
sewardj85642922008-01-14 11:54:56 +00004 Copyright (C) 2006-2008 Bart Van Assche
sewardjaf44c822007-11-25 14:01:38 +00005 bart.vanassche@gmail.com
6
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
39// Local variables.
40
bart7102f102008-03-17 17:37:53 +000041static ULong s_created_segments_count;
42static ULong s_alive_segments_count;
43static ULong s_max_alive_segments_count;
sewardjaf44c822007-11-25 14:01:38 +000044static Bool drd_trace_segment = False;
45
46
47// Function definitions.
48
barta2b6e1b2008-03-17 18:32:39 +000049/** Initialize the memory pointed at by sg.
50 * @note The creator and created thread ID's may be equal.
sewardjaf44c822007-11-25 14:01:38 +000051 */
bart7102f102008-03-17 17:37:53 +000052static
sewardjaf44c822007-11-25 14:01:38 +000053void sg_init(Segment* const sg,
54 DrdThreadId const creator,
55 DrdThreadId const created)
56{
57 Segment* creator_sg;
sewardje0744f02007-12-01 02:09:50 +000058 ThreadId vg_created = DrdThreadIdToVgThreadId(created);
sewardjaf44c822007-11-25 14:01:38 +000059
60 tl_assert(sg);
61 tl_assert(creator == DRD_INVALID_THREADID || IsValidDrdThreadId(creator));
62
63 creator_sg = (creator != DRD_INVALID_THREADID
64 ? thread_get_segment(creator) : 0);
barta2b6e1b2008-03-17 18:32:39 +000065
sewardjaf44c822007-11-25 14:01:38 +000066 sg->next = 0;
67 sg->prev = 0;
barta2b6e1b2008-03-17 18:32:39 +000068 sg->refcnt = 1;
sewardjaf44c822007-11-25 14:01:38 +000069
tom9e86a122008-01-02 10:07:44 +000070 if (vg_created != VG_INVALID_THREADID && VG_(get_SP)(vg_created) != 0)
sewardje0744f02007-12-01 02:09:50 +000071 sg->stacktrace = VG_(record_ExeContext)(vg_created, 0);
72 else
73 sg->stacktrace = 0;
sewardjaf44c822007-11-25 14:01:38 +000074
75 if (creator_sg)
bart41b226c2009-02-14 16:55:19 +000076 DRD_(vc_copy)(&sg->vc, &creator_sg->vc);
sewardjaf44c822007-11-25 14:01:38 +000077 else
bart41b226c2009-02-14 16:55:19 +000078 DRD_(vc_init)(&sg->vc, 0, 0);
79 DRD_(vc_increment)(&sg->vc, created);
sewardjaf44c822007-11-25 14:01:38 +000080 sg->bm = bm_new();
81
82 if (drd_trace_segment)
83 {
84 char msg[256];
85 VG_(snprintf)(msg, sizeof(msg),
bart85145022008-04-06 13:07:45 +000086 "New segment for thread %d/%d with vc ",
87 created != VG_INVALID_THREADID
88 ? DrdThreadIdToVgThreadId(created)
barta2b6e1b2008-03-17 18:32:39 +000089 : DRD_INVALID_THREADID,
bart85145022008-04-06 13:07:45 +000090 created);
bart41b226c2009-02-14 16:55:19 +000091 DRD_(vc_snprint)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
sewardjaf44c822007-11-25 14:01:38 +000092 &sg->vc);
bart2c7c1d52008-02-29 19:17:28 +000093 VG_(message)(Vg_UserMsg, "%s", msg);
sewardjaf44c822007-11-25 14:01:38 +000094 }
95}
96
barta2b6e1b2008-03-17 18:32:39 +000097/** Deallocate the memory that was allocated by sg_init(). */
bart7102f102008-03-17 17:37:53 +000098static
sewardjaf44c822007-11-25 14:01:38 +000099void sg_cleanup(Segment* const sg)
100{
101 tl_assert(sg);
barta2b6e1b2008-03-17 18:32:39 +0000102 tl_assert(sg->refcnt == 0);
103
bart41b226c2009-02-14 16:55:19 +0000104 DRD_(vc_cleanup)(&sg->vc);
sewardjaf44c822007-11-25 14:01:38 +0000105 bm_delete(sg->bm);
106 sg->bm = 0;
107}
108
barta2b6e1b2008-03-17 18:32:39 +0000109/** Allocate and initialize a new segment. */
sewardjaf44c822007-11-25 14:01:38 +0000110Segment* sg_new(ThreadId const creator, ThreadId const created)
111{
112 Segment* sg;
113
bart7102f102008-03-17 17:37:53 +0000114 s_created_segments_count++;
115 s_alive_segments_count++;
116 if (s_max_alive_segments_count < s_alive_segments_count)
117 s_max_alive_segments_count = s_alive_segments_count;
sewardjaf44c822007-11-25 14:01:38 +0000118
sewardj9c606bd2008-09-18 18:12:50 +0000119 sg = VG_(malloc)("drd.segment.sn.1", sizeof(*sg));
sewardjaf44c822007-11-25 14:01:38 +0000120 tl_assert(sg);
121 sg_init(sg, creator, created);
122 return sg;
123}
124
barta2b6e1b2008-03-17 18:32:39 +0000125static
sewardjaf44c822007-11-25 14:01:38 +0000126void sg_delete(Segment* const sg)
127{
bart68edad52008-02-24 18:21:12 +0000128#if 1
bart3772a982008-03-15 08:11:03 +0000129 if (sg_get_trace())
130 {
131 char msg[256];
132 VG_(snprintf)(msg, sizeof(msg),
133 "Discarding the segment with vector clock ");
bart41b226c2009-02-14 16:55:19 +0000134 DRD_(vc_snprint)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
bart3772a982008-03-15 08:11:03 +0000135 &sg->vc);
136 VG_(message)(Vg_UserMsg, "%s", msg);
137 }
bart68edad52008-02-24 18:21:12 +0000138#endif
139
bart7102f102008-03-17 17:37:53 +0000140 s_alive_segments_count--;
sewardjaf44c822007-11-25 14:01:38 +0000141
142 tl_assert(sg);
143 sg_cleanup(sg);
144 VG_(free)(sg);
145}
146
barta2b6e1b2008-03-17 18:32:39 +0000147/** Query the reference count of the specified segment. */
148int sg_get_refcnt(const Segment* const sg)
149{
150 tl_assert(sg);
151
152 return sg->refcnt;
153}
154
155/** Increment the reference count of the specified segment. */
156Segment* sg_get(Segment* const sg)
157{
158 tl_assert(sg);
159
160 sg->refcnt++;
161 return sg;
162}
163
164/** Decrement the reference count of the specified segment and deallocate the
165 * segment if the reference count became zero.
166 */
167void sg_put(Segment* const sg)
168{
169 if (sg == 0)
170 return;
171
172 if (drd_trace_segment)
173 {
174 char msg[256];
175 VG_(snprintf)(msg, sizeof(msg),
176 "Decrementing segment reference count %d -> %d with vc ",
177 sg->refcnt, sg->refcnt - 1);
bart41b226c2009-02-14 16:55:19 +0000178 DRD_(vc_snprint)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
barta2b6e1b2008-03-17 18:32:39 +0000179 &sg->vc);
180 VG_(message)(Vg_UserMsg, "%s", msg);
181 }
182
183 tl_assert(sg->refcnt >= 1);
184
185 if (--sg->refcnt == 0)
186 {
187 sg_delete(sg);
188 }
189}
190
barta9c37392008-03-22 09:38:48 +0000191/** Merge sg1 and sg2 into sg1. */
192void sg_merge(const Segment* const sg1, Segment* const sg2)
193{
194 tl_assert(sg1);
barta71e5792008-03-22 17:09:04 +0000195 tl_assert(sg1->refcnt == 1);
barta9c37392008-03-22 09:38:48 +0000196 tl_assert(sg2);
barta71e5792008-03-22 17:09:04 +0000197 tl_assert(sg2->refcnt == 1);
barta9c37392008-03-22 09:38:48 +0000198
199 if (drd_trace_segment)
200 {
201 char msg[256];
202
203 VG_(snprintf)(msg, sizeof(msg), "Merging segments with vector clocks ");
bart41b226c2009-02-14 16:55:19 +0000204 DRD_(vc_snprint)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
barta9c37392008-03-22 09:38:48 +0000205 &sg1->vc);
206 VG_(snprintf)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
207 " and ");
bart41b226c2009-02-14 16:55:19 +0000208 DRD_(vc_snprint)(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
barta9c37392008-03-22 09:38:48 +0000209 &sg2->vc);
210 VG_(message)(Vg_UserMsg, "%s", msg);
211 }
212
213 // Keep sg1->stacktrace.
214 // Keep sg1->vc.
215 // Merge sg2->bm into sg1->bm.
216 bm_merge2(sg1->bm, sg2->bm);
217}
218
sewardjaf44c822007-11-25 14:01:38 +0000219void sg_print(const Segment* const sg)
220{
221 tl_assert(sg);
222 VG_(printf)("vc: ");
bart41b226c2009-02-14 16:55:19 +0000223 DRD_(vc_print)(&sg->vc);
sewardjaf44c822007-11-25 14:01:38 +0000224 VG_(printf)("\n");
225 bm_print(sg->bm);
226}
227
228Bool sg_get_trace(void)
229{
230 return drd_trace_segment;
231}
232
233void sg_set_trace(Bool const trace_segment)
234{
235 tl_assert(trace_segment == False || trace_segment == True);
236 drd_trace_segment = trace_segment;
237}
238
bart7102f102008-03-17 17:37:53 +0000239ULong sg_get_created_segments_count(void)
sewardjaf44c822007-11-25 14:01:38 +0000240{
bart7102f102008-03-17 17:37:53 +0000241 return s_created_segments_count;
sewardjaf44c822007-11-25 14:01:38 +0000242}
243
bart7102f102008-03-17 17:37:53 +0000244ULong sg_get_alive_segments_count(void)
sewardjaf44c822007-11-25 14:01:38 +0000245{
bart7102f102008-03-17 17:37:53 +0000246 return s_alive_segments_count;
247}
248
249ULong sg_get_max_alive_segments_count(void)
250{
251 return s_max_alive_segments_count;
sewardjaf44c822007-11-25 14:01:38 +0000252}