blob: 1bb186efad983bf4f1a8a7aea69de7855a1276cf [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)
76 vc_copy(&sg->vc, &creator_sg->vc);
77 else
78 vc_init(&sg->vc, 0, 0);
79 vc_increment(&sg->vc, created);
80 sg->bm = bm_new();
81
82 if (drd_trace_segment)
83 {
84 char msg[256];
85 VG_(snprintf)(msg, sizeof(msg),
barta2b6e1b2008-03-17 18:32:39 +000086 "New segment for thread %d/%d for vc ",
87 creator != VG_INVALID_THREADID
88 ? DrdThreadIdToVgThreadId(creator)
89 : DRD_INVALID_THREADID,
90 creator);
sewardjaf44c822007-11-25 14:01:38 +000091 vc_snprint(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
92 &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
sewardjaf44c822007-11-25 14:01:38 +0000104 vc_cleanup(&sg->vc);
105 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
119 sg = VG_(malloc)(sizeof(*sg));
120 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 ");
134 vc_snprint(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
135 &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);
178 vc_snprint(msg + VG_(strlen)(msg), sizeof(msg) - VG_(strlen)(msg),
179 &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
sewardjaf44c822007-11-25 14:01:38 +0000191void sg_print(const Segment* const sg)
192{
193 tl_assert(sg);
194 VG_(printf)("vc: ");
195 vc_print(&sg->vc);
196 VG_(printf)("\n");
197 bm_print(sg->bm);
198}
199
200Bool sg_get_trace(void)
201{
202 return drd_trace_segment;
203}
204
205void sg_set_trace(Bool const trace_segment)
206{
207 tl_assert(trace_segment == False || trace_segment == True);
208 drd_trace_segment = trace_segment;
209}
210
bart7102f102008-03-17 17:37:53 +0000211ULong sg_get_created_segments_count(void)
sewardjaf44c822007-11-25 14:01:38 +0000212{
bart7102f102008-03-17 17:37:53 +0000213 return s_created_segments_count;
sewardjaf44c822007-11-25 14:01:38 +0000214}
215
bart7102f102008-03-17 17:37:53 +0000216ULong sg_get_alive_segments_count(void)
sewardjaf44c822007-11-25 14:01:38 +0000217{
bart7102f102008-03-17 17:37:53 +0000218 return s_alive_segments_count;
219}
220
221ULong sg_get_max_alive_segments_count(void)
222{
223 return s_max_alive_segments_count;
sewardjaf44c822007-11-25 14:01:38 +0000224}