blob: a31531ed9de63ef27c81f5f12c6f2809c29d7e68 [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
bart876cafd2010-10-10 18:07:31 +00005 Copyright (C) 2006-2010 Bart Van Assche <bvanassche@acm.org>.
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#include "drd_error.h"
bart09dc13f2009-02-14 15:13:31 +000027#include "drd_barrier.h"
bartd2c5eae2009-02-21 15:27:04 +000028#include "drd_clientobj.h"
bart09dc13f2009-02-14 15:13:31 +000029#include "drd_cond.h"
30#include "drd_mutex.h"
sewardjaf44c822007-11-25 14:01:38 +000031#include "drd_segment.h"
bart09dc13f2009-02-14 15:13:31 +000032#include "drd_semaphore.h"
sewardjaf44c822007-11-25 14:01:38 +000033#include "drd_suppression.h"
34#include "drd_thread.h"
bart82195c12008-04-13 17:35:08 +000035#include "pub_tool_vki.h"
sewardjaf44c822007-11-25 14:01:38 +000036#include "pub_tool_basics.h" // Addr, SizeT
sewardjaf44c822007-11-25 14:01:38 +000037#include "pub_tool_libcassert.h" // tl_assert()
38#include "pub_tool_libcbase.h" // VG_(strlen)()
39#include "pub_tool_libcprint.h" // VG_(printf)()
bart82195c12008-04-13 17:35:08 +000040#include "pub_tool_libcproc.h" // VG_(getenv)()
sewardjaf44c822007-11-25 14:01:38 +000041#include "pub_tool_machine.h"
42#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardj85642922008-01-14 11:54:56 +000043#include "pub_tool_options.h" // VG_(clo_backtrace_size)
sewardjaf44c822007-11-25 14:01:38 +000044#include "pub_tool_threadstate.h" // VG_(get_pthread_id)()
45
bart32ba2082008-06-05 08:53:42 +000046
sewardjaf44c822007-11-25 14:01:38 +000047
bart324a23b2009-02-15 12:14:52 +000048/* Local functions. */
sewardjaf44c822007-11-25 14:01:38 +000049
bart86a87df2009-03-04 19:26:47 +000050static void thread_append_segment(const DrdThreadId tid, Segment* const sg);
51static void thread_discard_segment(const DrdThreadId tid, Segment* const sg);
52static void thread_compute_conflict_set(struct bitmap** conflict_set,
53 const DrdThreadId tid);
bart8f822af2009-06-08 18:20:42 +000054static Bool thread_conflict_set_up_to_date(const DrdThreadId tid);
sewardjaf44c822007-11-25 14:01:38 +000055
56
bart324a23b2009-02-15 12:14:52 +000057/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000058
bart86a87df2009-03-04 19:26:47 +000059static ULong s_context_switch_count;
60static ULong s_discard_ordered_segments_count;
bart54803fe2009-06-21 09:26:27 +000061static ULong s_compute_conflict_set_count;
bart86a87df2009-03-04 19:26:47 +000062static ULong s_update_conflict_set_count;
barte5214662009-06-21 11:51:23 +000063static ULong s_update_conflict_set_new_sg_count;
64static ULong s_update_conflict_set_sync_count;
65static ULong s_update_conflict_set_join_count;
bart86a87df2009-03-04 19:26:47 +000066static ULong s_conflict_set_bitmap_creation_count;
67static ULong s_conflict_set_bitmap2_creation_count;
68static ThreadId s_vg_running_tid = VG_INVALID_THREADID;
bart324a23b2009-02-15 12:14:52 +000069DrdThreadId DRD_(g_drd_running_tid) = DRD_INVALID_THREADID;
70ThreadInfo DRD_(g_threadinfo)[DRD_N_THREADS];
71struct bitmap* DRD_(g_conflict_set);
bart86a87df2009-03-04 19:26:47 +000072static Bool s_trace_context_switches = False;
73static Bool s_trace_conflict_set = False;
bart8f822af2009-06-08 18:20:42 +000074static Bool s_trace_conflict_set_bm = False;
bart86a87df2009-03-04 19:26:47 +000075static Bool s_trace_fork_join = False;
76static Bool s_segment_merging = True;
bart8f822af2009-06-08 18:20:42 +000077static Bool s_new_segments_since_last_merge;
bart6f1d7162009-06-24 18:34:10 +000078static int s_segment_merge_interval = 10;
sewardjaf44c822007-11-25 14:01:38 +000079
80
bart324a23b2009-02-15 12:14:52 +000081/* Function definitions. */
sewardjaf44c822007-11-25 14:01:38 +000082
bart86a87df2009-03-04 19:26:47 +000083/** Enables/disables context switch tracing. */
bart62a784c2009-02-15 13:11:14 +000084void DRD_(thread_trace_context_switches)(const Bool t)
bart26f73e12008-02-24 18:37:08 +000085{
bartbedfd232009-03-26 19:07:15 +000086 tl_assert(t == False || t == True);
87 s_trace_context_switches = t;
bart26f73e12008-02-24 18:37:08 +000088}
89
bart86a87df2009-03-04 19:26:47 +000090/** Enables/disables conflict set tracing. */
bart62a784c2009-02-15 13:11:14 +000091void DRD_(thread_trace_conflict_set)(const Bool t)
bart26f73e12008-02-24 18:37:08 +000092{
bartbedfd232009-03-26 19:07:15 +000093 tl_assert(t == False || t == True);
94 s_trace_conflict_set = t;
bart26f73e12008-02-24 18:37:08 +000095}
96
bart8f822af2009-06-08 18:20:42 +000097/** Enables/disables conflict set bitmap tracing. */
98void DRD_(thread_trace_conflict_set_bm)(const Bool t)
99{
100 tl_assert(t == False || t == True);
101 s_trace_conflict_set_bm = t;
102}
103
bart86a87df2009-03-04 19:26:47 +0000104/** Report whether fork/join tracing is enabled. */
bart09dc13f2009-02-14 15:13:31 +0000105Bool DRD_(thread_get_trace_fork_join)(void)
106{
bartbedfd232009-03-26 19:07:15 +0000107 return s_trace_fork_join;
bart09dc13f2009-02-14 15:13:31 +0000108}
109
bart86a87df2009-03-04 19:26:47 +0000110/** Enables/disables fork/join tracing. */
bart09dc13f2009-02-14 15:13:31 +0000111void DRD_(thread_set_trace_fork_join)(const Bool t)
112{
bartbedfd232009-03-26 19:07:15 +0000113 tl_assert(t == False || t == True);
114 s_trace_fork_join = t;
bart09dc13f2009-02-14 15:13:31 +0000115}
116
bart86a87df2009-03-04 19:26:47 +0000117/** Enables/disables segment merging. */
bart62a784c2009-02-15 13:11:14 +0000118void DRD_(thread_set_segment_merging)(const Bool m)
barta9c37392008-03-22 09:38:48 +0000119{
bartbedfd232009-03-26 19:07:15 +0000120 tl_assert(m == False || m == True);
121 s_segment_merging = m;
barta9c37392008-03-22 09:38:48 +0000122}
123
bart8f822af2009-06-08 18:20:42 +0000124/** Get the segment merging interval. */
125int DRD_(thread_get_segment_merge_interval)(void)
126{
127 return s_segment_merge_interval;
128}
129
130/** Set the segment merging interval. */
131void DRD_(thread_set_segment_merge_interval)(const int i)
132{
133 s_segment_merge_interval = i;
134}
135
sewardjaf44c822007-11-25 14:01:38 +0000136/**
bart86a87df2009-03-04 19:26:47 +0000137 * Convert Valgrind's ThreadId into a DrdThreadId.
138 *
139 * @return DRD thread ID upon success and DRD_INVALID_THREADID if the passed
140 * Valgrind ThreadId does not yet exist.
bart324a23b2009-02-15 12:14:52 +0000141 */
bart62a784c2009-02-15 13:11:14 +0000142DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000143{
bartbedfd232009-03-26 19:07:15 +0000144 int i;
sewardjaf44c822007-11-25 14:01:38 +0000145
bartbedfd232009-03-26 19:07:15 +0000146 if (tid == VG_INVALID_THREADID)
147 return DRD_INVALID_THREADID;
sewardjaf44c822007-11-25 14:01:38 +0000148
bartbedfd232009-03-26 19:07:15 +0000149 for (i = 1; i < DRD_N_THREADS; i++)
150 {
151 if (DRD_(g_threadinfo)[i].vg_thread_exists == True
152 && DRD_(g_threadinfo)[i].vg_threadid == tid)
153 {
154 return i;
155 }
156 }
sewardjaf44c822007-11-25 14:01:38 +0000157
bartbedfd232009-03-26 19:07:15 +0000158 return DRD_INVALID_THREADID;
sewardjaf44c822007-11-25 14:01:38 +0000159}
160
bart86a87df2009-03-04 19:26:47 +0000161/** Allocate a new DRD thread ID for the specified Valgrind thread ID. */
bart62a784c2009-02-15 13:11:14 +0000162static DrdThreadId DRD_(VgThreadIdToNewDrdThreadId)(const ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000163{
bartbedfd232009-03-26 19:07:15 +0000164 int i;
sewardjaf44c822007-11-25 14:01:38 +0000165
bartbedfd232009-03-26 19:07:15 +0000166 tl_assert(DRD_(VgThreadIdToDrdThreadId)(tid) == DRD_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +0000167
bartbedfd232009-03-26 19:07:15 +0000168 for (i = 1; i < DRD_N_THREADS; i++)
169 {
170 if (DRD_(g_threadinfo)[i].vg_thread_exists == False
171 && DRD_(g_threadinfo)[i].posix_thread_exists == False
172 && DRD_(g_threadinfo)[i].detached_posix_thread == False)
173 {
174 tl_assert(! DRD_(IsValidDrdThreadId)(i));
bart86a87df2009-03-04 19:26:47 +0000175
bartbedfd232009-03-26 19:07:15 +0000176 DRD_(g_threadinfo)[i].vg_thread_exists = True;
177 DRD_(g_threadinfo)[i].vg_threadid = tid;
178 DRD_(g_threadinfo)[i].pt_threadid = INVALID_POSIX_THREADID;
179 DRD_(g_threadinfo)[i].stack_min = 0;
180 DRD_(g_threadinfo)[i].stack_min_min = 0;
181 DRD_(g_threadinfo)[i].stack_startup = 0;
182 DRD_(g_threadinfo)[i].stack_max = 0;
bartd45d9952009-05-31 18:53:54 +0000183 DRD_(thread_set_name)(i, "");
bart383d6132010-09-02 14:43:18 +0000184 DRD_(g_threadinfo)[i].on_alt_stack = False;
bartd45d9952009-05-31 18:53:54 +0000185 DRD_(g_threadinfo)[i].is_recording_loads = True;
186 DRD_(g_threadinfo)[i].is_recording_stores = True;
bartdd75cdf2009-07-24 08:20:10 +0000187 DRD_(g_threadinfo)[i].pthread_create_nesting_level = 0;
bartbedfd232009-03-26 19:07:15 +0000188 DRD_(g_threadinfo)[i].synchr_nesting = 0;
189 tl_assert(DRD_(g_threadinfo)[i].first == 0);
190 tl_assert(DRD_(g_threadinfo)[i].last == 0);
bart86a87df2009-03-04 19:26:47 +0000191
bartbedfd232009-03-26 19:07:15 +0000192 tl_assert(DRD_(IsValidDrdThreadId)(i));
bart86a87df2009-03-04 19:26:47 +0000193
bartbedfd232009-03-26 19:07:15 +0000194 return i;
195 }
196 }
sewardjaf44c822007-11-25 14:01:38 +0000197
bart3c9afb12009-07-24 11:11:30 +0000198 VG_(printf)(
199"\nSorry, but the maximum number of threads supported by DRD has been exceeded."
200"Aborting.\n");
201
bartbedfd232009-03-26 19:07:15 +0000202 tl_assert(False);
sewardjaf44c822007-11-25 14:01:38 +0000203
bartbedfd232009-03-26 19:07:15 +0000204 return DRD_INVALID_THREADID;
sewardjaf44c822007-11-25 14:01:38 +0000205}
206
bart86a87df2009-03-04 19:26:47 +0000207/** Convert a POSIX thread ID into a DRD thread ID. */
bart62a784c2009-02-15 13:11:14 +0000208DrdThreadId DRD_(PtThreadIdToDrdThreadId)(const PThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000209{
bartbedfd232009-03-26 19:07:15 +0000210 int i;
sewardjaf44c822007-11-25 14:01:38 +0000211
bartb48bde22009-07-31 08:26:17 +0000212 if (tid != INVALID_POSIX_THREADID)
bartbedfd232009-03-26 19:07:15 +0000213 {
bartb48bde22009-07-31 08:26:17 +0000214 for (i = 1; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +0000215 {
bartb48bde22009-07-31 08:26:17 +0000216 if (DRD_(g_threadinfo)[i].posix_thread_exists
217 && DRD_(g_threadinfo)[i].pt_threadid == tid)
218 {
219 return i;
220 }
bartbedfd232009-03-26 19:07:15 +0000221 }
222 }
223 return DRD_INVALID_THREADID;
sewardjaf44c822007-11-25 14:01:38 +0000224}
225
bart86a87df2009-03-04 19:26:47 +0000226/** Convert a DRD thread ID into a Valgrind thread ID. */
bart62a784c2009-02-15 13:11:14 +0000227ThreadId DRD_(DrdThreadIdToVgThreadId)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000228{
bartbedfd232009-03-26 19:07:15 +0000229 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
230 && tid != DRD_INVALID_THREADID);
bart8f822af2009-06-08 18:20:42 +0000231
bartbedfd232009-03-26 19:07:15 +0000232 return (DRD_(g_threadinfo)[tid].vg_thread_exists
233 ? DRD_(g_threadinfo)[tid].vg_threadid
234 : VG_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +0000235}
236
bart8f822af2009-06-08 18:20:42 +0000237#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
bart324a23b2009-02-15 12:14:52 +0000238/**
239 * Sanity check of the doubly linked list of segments referenced by a
240 * ThreadInfo struct.
241 * @return True if sane, False if not.
sewardjaf44c822007-11-25 14:01:38 +0000242 */
bart62a784c2009-02-15 13:11:14 +0000243static Bool DRD_(sane_ThreadInfo)(const ThreadInfo* const ti)
sewardjaf44c822007-11-25 14:01:38 +0000244{
bartbedfd232009-03-26 19:07:15 +0000245 Segment* p;
bart8f822af2009-06-08 18:20:42 +0000246
bartbedfd232009-03-26 19:07:15 +0000247 for (p = ti->first; p; p = p->next) {
248 if (p->next && p->next->prev != p)
249 return False;
250 if (p->next == 0 && p != ti->last)
251 return False;
252 }
253 for (p = ti->last; p; p = p->prev) {
254 if (p->prev && p->prev->next != p)
255 return False;
256 if (p->prev == 0 && p != ti->first)
257 return False;
258 }
259 return True;
sewardjaf44c822007-11-25 14:01:38 +0000260}
bart23d3a4e2008-04-05 12:53:00 +0000261#endif
sewardjaf44c822007-11-25 14:01:38 +0000262
bart439c55f2009-02-15 10:38:37 +0000263/**
264 * Create the first segment for a newly started thread.
265 *
266 * This function is called from the handler installed via
267 * VG_(track_pre_thread_ll_create)(). The Valgrind core invokes this handler
268 * from the context of the creator thread, before the new thread has been
269 * created.
bart86a87df2009-03-04 19:26:47 +0000270 *
271 * @param[in] creator DRD thread ID of the creator thread.
272 * @param[in] vg_created Valgrind thread ID of the created thread.
273 *
274 * @return DRD thread ID of the created thread.
bart439c55f2009-02-15 10:38:37 +0000275 */
bart62a784c2009-02-15 13:11:14 +0000276DrdThreadId DRD_(thread_pre_create)(const DrdThreadId creator,
277 const ThreadId vg_created)
sewardjaf44c822007-11-25 14:01:38 +0000278{
bartbedfd232009-03-26 19:07:15 +0000279 DrdThreadId created;
sewardjaf44c822007-11-25 14:01:38 +0000280
bartbedfd232009-03-26 19:07:15 +0000281 tl_assert(DRD_(VgThreadIdToDrdThreadId)(vg_created) == DRD_INVALID_THREADID);
282 created = DRD_(VgThreadIdToNewDrdThreadId)(vg_created);
283 tl_assert(0 <= (int)created && created < DRD_N_THREADS
284 && created != DRD_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +0000285
bartbedfd232009-03-26 19:07:15 +0000286 tl_assert(DRD_(g_threadinfo)[created].first == 0);
287 tl_assert(DRD_(g_threadinfo)[created].last == 0);
bart8f822af2009-06-08 18:20:42 +0000288 /* Create an initial segment for the newly created thread. */
bartbedfd232009-03-26 19:07:15 +0000289 thread_append_segment(created, DRD_(sg_new)(creator, created));
sewardjaf44c822007-11-25 14:01:38 +0000290
bartbedfd232009-03-26 19:07:15 +0000291 return created;
sewardjaf44c822007-11-25 14:01:38 +0000292}
293
bart439c55f2009-02-15 10:38:37 +0000294/**
bart86a87df2009-03-04 19:26:47 +0000295 * Initialize DRD_(g_threadinfo)[] for a newly created thread. Must be called
296 * after the thread has been created and before any client instructions are run
bart439c55f2009-02-15 10:38:37 +0000297 * on the newly created thread, e.g. from the handler installed via
298 * VG_(track_pre_thread_first_insn)().
bart86a87df2009-03-04 19:26:47 +0000299 *
300 * @param[in] vg_created Valgrind thread ID of the newly created thread.
301 *
302 * @return DRD thread ID for the new thread.
bart439c55f2009-02-15 10:38:37 +0000303 */
bart62a784c2009-02-15 13:11:14 +0000304DrdThreadId DRD_(thread_post_create)(const ThreadId vg_created)
bart439c55f2009-02-15 10:38:37 +0000305{
bartbedfd232009-03-26 19:07:15 +0000306 const DrdThreadId created = DRD_(VgThreadIdToDrdThreadId)(vg_created);
bart439c55f2009-02-15 10:38:37 +0000307
bartbedfd232009-03-26 19:07:15 +0000308 tl_assert(0 <= (int)created && created < DRD_N_THREADS
309 && created != DRD_INVALID_THREADID);
bart439c55f2009-02-15 10:38:37 +0000310
bartbedfd232009-03-26 19:07:15 +0000311 DRD_(g_threadinfo)[created].stack_max
312 = VG_(thread_get_stack_max)(vg_created);
313 DRD_(g_threadinfo)[created].stack_startup
314 = DRD_(g_threadinfo)[created].stack_max;
315 DRD_(g_threadinfo)[created].stack_min
316 = DRD_(g_threadinfo)[created].stack_max;
317 DRD_(g_threadinfo)[created].stack_min_min
318 = DRD_(g_threadinfo)[created].stack_max;
319 DRD_(g_threadinfo)[created].stack_size
320 = VG_(thread_get_stack_size)(vg_created);
321 tl_assert(DRD_(g_threadinfo)[created].stack_max != 0);
bart439c55f2009-02-15 10:38:37 +0000322
bartbedfd232009-03-26 19:07:15 +0000323 return created;
bart439c55f2009-02-15 10:38:37 +0000324}
bart09dc13f2009-02-14 15:13:31 +0000325
bart324a23b2009-02-15 12:14:52 +0000326/**
327 * Process VG_USERREQ__POST_THREAD_JOIN. This client request is invoked just
328 * after thread drd_joiner joined thread drd_joinee.
329 */
bart09dc13f2009-02-14 15:13:31 +0000330void DRD_(thread_post_join)(DrdThreadId drd_joiner, DrdThreadId drd_joinee)
331{
bartbedfd232009-03-26 19:07:15 +0000332 tl_assert(DRD_(IsValidDrdThreadId)(drd_joiner));
333 tl_assert(DRD_(IsValidDrdThreadId)(drd_joinee));
bart7627be32009-06-06 12:26:05 +0000334
bartbedfd232009-03-26 19:07:15 +0000335 DRD_(thread_new_segment)(drd_joiner);
bart8f822af2009-06-08 18:20:42 +0000336 DRD_(thread_combine_vc_join)(drd_joiner, drd_joinee);
bart7627be32009-06-06 12:26:05 +0000337 DRD_(thread_new_segment)(drd_joinee);
bart09dc13f2009-02-14 15:13:31 +0000338
bartbedfd232009-03-26 19:07:15 +0000339 if (s_trace_fork_join)
340 {
341 const ThreadId joiner = DRD_(DrdThreadIdToVgThreadId)(drd_joiner);
bartbedfd232009-03-26 19:07:15 +0000342 const unsigned msg_size = 256;
343 char* msg;
bart09dc13f2009-02-14 15:13:31 +0000344
bartbedfd232009-03-26 19:07:15 +0000345 msg = VG_(malloc)("drd.main.dptj.1", msg_size);
346 tl_assert(msg);
347 VG_(snprintf)(msg, msg_size,
bart63c92ea2009-07-19 17:53:56 +0000348 "drd_post_thread_join joiner = %d, joinee = %d",
349 drd_joiner, drd_joinee);
bartbedfd232009-03-26 19:07:15 +0000350 if (joiner)
351 {
bart8f822af2009-06-08 18:20:42 +0000352 char* vc;
353
354 vc = DRD_(vc_aprint)(DRD_(thread_get_vc)(drd_joiner));
bartbedfd232009-03-26 19:07:15 +0000355 VG_(snprintf)(msg + VG_(strlen)(msg), msg_size - VG_(strlen)(msg),
bart8f822af2009-06-08 18:20:42 +0000356 ", new vc: %s", vc);
357 VG_(free)(vc);
bartbedfd232009-03-26 19:07:15 +0000358 }
sewardj1e29ebc2009-07-15 14:49:17 +0000359 VG_(message)(Vg_DebugMsg, "%s\n", msg);
bartbedfd232009-03-26 19:07:15 +0000360 VG_(free)(msg);
361 }
bart09dc13f2009-02-14 15:13:31 +0000362
bartbedfd232009-03-26 19:07:15 +0000363 if (! DRD_(get_check_stack_accesses)())
364 {
365 DRD_(finish_suppression)(DRD_(thread_get_stack_max)(drd_joinee)
366 - DRD_(thread_get_stack_size)(drd_joinee),
367 DRD_(thread_get_stack_max)(drd_joinee));
368 }
369 DRD_(clientobj_delete_thread)(drd_joinee);
bart9194e932011-02-09 11:55:12 +0000370 DRD_(thread_delete)(drd_joinee, False);
bart09dc13f2009-02-14 15:13:31 +0000371}
372
bart324a23b2009-02-15 12:14:52 +0000373/**
374 * NPTL hack: NPTL allocates the 'struct pthread' on top of the stack,
375 * and accesses this data structure from multiple threads without locking.
376 * Any conflicting accesses in the range stack_startup..stack_max will be
377 * ignored.
378 */
bart62a784c2009-02-15 13:11:14 +0000379void DRD_(thread_set_stack_startup)(const DrdThreadId tid,
380 const Addr stack_startup)
sewardjaf44c822007-11-25 14:01:38 +0000381{
bartbedfd232009-03-26 19:07:15 +0000382 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
383 && tid != DRD_INVALID_THREADID);
384 tl_assert(DRD_(g_threadinfo)[tid].stack_min <= stack_startup);
385 tl_assert(stack_startup <= DRD_(g_threadinfo)[tid].stack_max);
386 DRD_(g_threadinfo)[tid].stack_startup = stack_startup;
sewardjaf44c822007-11-25 14:01:38 +0000387}
388
bart86a87df2009-03-04 19:26:47 +0000389/** Return the stack pointer for the specified thread. */
bart62a784c2009-02-15 13:11:14 +0000390Addr DRD_(thread_get_stack_min)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000391{
bartbedfd232009-03-26 19:07:15 +0000392 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
393 && tid != DRD_INVALID_THREADID);
394 return DRD_(g_threadinfo)[tid].stack_min;
sewardjaf44c822007-11-25 14:01:38 +0000395}
396
bart86a87df2009-03-04 19:26:47 +0000397/**
398 * Return the lowest value that was ever assigned to the stack pointer
399 * for the specified thread.
400 */
bart62a784c2009-02-15 13:11:14 +0000401Addr DRD_(thread_get_stack_min_min)(const DrdThreadId tid)
bartcac53462008-03-29 09:27:08 +0000402{
bartbedfd232009-03-26 19:07:15 +0000403 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
404 && tid != DRD_INVALID_THREADID);
405 return DRD_(g_threadinfo)[tid].stack_min_min;
bartcac53462008-03-29 09:27:08 +0000406}
407
bart86a87df2009-03-04 19:26:47 +0000408/** Return the top address for the stack of the specified thread. */
bart62a784c2009-02-15 13:11:14 +0000409Addr DRD_(thread_get_stack_max)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000410{
bartbedfd232009-03-26 19:07:15 +0000411 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
412 && tid != DRD_INVALID_THREADID);
413 return DRD_(g_threadinfo)[tid].stack_max;
sewardjaf44c822007-11-25 14:01:38 +0000414}
415
bart86a87df2009-03-04 19:26:47 +0000416/** Return the maximum stack size for the specified thread. */
bart62a784c2009-02-15 13:11:14 +0000417SizeT DRD_(thread_get_stack_size)(const DrdThreadId tid)
bartcac53462008-03-29 09:27:08 +0000418{
bartbedfd232009-03-26 19:07:15 +0000419 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
420 && tid != DRD_INVALID_THREADID);
421 return DRD_(g_threadinfo)[tid].stack_size;
bartcac53462008-03-29 09:27:08 +0000422}
423
bart383d6132010-09-02 14:43:18 +0000424Bool DRD_(thread_get_on_alt_stack)(const DrdThreadId tid)
425{
426 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
427 && tid != DRD_INVALID_THREADID);
428 return DRD_(g_threadinfo)[tid].on_alt_stack;
429}
430
431void DRD_(thread_set_on_alt_stack)(const DrdThreadId tid,
432 const Bool on_alt_stack)
433{
434 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
435 && tid != DRD_INVALID_THREADID);
436 tl_assert(on_alt_stack == !!on_alt_stack);
437 DRD_(g_threadinfo)[tid].on_alt_stack = on_alt_stack;
438}
439
440Int DRD_(thread_get_threads_on_alt_stack)(void)
441{
442 int i, n = 0;
443
444 for (i = 1; i < DRD_N_THREADS; i++)
445 n += DRD_(g_threadinfo)[i].on_alt_stack;
446 return n;
447}
448
bart09dc13f2009-02-14 15:13:31 +0000449/**
bart31b983d2010-02-21 14:52:59 +0000450 * Clean up thread-specific data structures. Call this just after
bart09dc13f2009-02-14 15:13:31 +0000451 * pthread_join().
sewardjaf44c822007-11-25 14:01:38 +0000452 */
bart9194e932011-02-09 11:55:12 +0000453void DRD_(thread_delete)(const DrdThreadId tid, const Bool detached)
sewardjaf44c822007-11-25 14:01:38 +0000454{
bartbedfd232009-03-26 19:07:15 +0000455 Segment* sg;
456 Segment* sg_prev;
sewardjaf44c822007-11-25 14:01:38 +0000457
bartbedfd232009-03-26 19:07:15 +0000458 tl_assert(DRD_(IsValidDrdThreadId)(tid));
bart86a87df2009-03-04 19:26:47 +0000459
bartbedfd232009-03-26 19:07:15 +0000460 tl_assert(DRD_(g_threadinfo)[tid].synchr_nesting >= 0);
461 for (sg = DRD_(g_threadinfo)[tid].last; sg; sg = sg_prev)
462 {
463 sg_prev = sg->prev;
464 sg->prev = 0;
465 sg->next = 0;
466 DRD_(sg_put)(sg);
467 }
468 DRD_(g_threadinfo)[tid].vg_thread_exists = False;
469 DRD_(g_threadinfo)[tid].posix_thread_exists = False;
bart9194e932011-02-09 11:55:12 +0000470 if (detached)
471 DRD_(g_threadinfo)[tid].detached_posix_thread = False;
472 else
473 tl_assert(!DRD_(g_threadinfo)[tid].detached_posix_thread);
bartbedfd232009-03-26 19:07:15 +0000474 DRD_(g_threadinfo)[tid].first = 0;
475 DRD_(g_threadinfo)[tid].last = 0;
bart86a87df2009-03-04 19:26:47 +0000476
bartbedfd232009-03-26 19:07:15 +0000477 tl_assert(! DRD_(IsValidDrdThreadId)(tid));
sewardjaf44c822007-11-25 14:01:38 +0000478}
479
bart324a23b2009-02-15 12:14:52 +0000480/**
481 * Called after a thread performed its last memory access and before
482 * thread_delete() is called. Note: thread_delete() is only called for
483 * joinable threads, not for detached threads.
484 */
bart62a784c2009-02-15 13:11:14 +0000485void DRD_(thread_finished)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000486{
bartbedfd232009-03-26 19:07:15 +0000487 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
488 && tid != DRD_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +0000489
bartbedfd232009-03-26 19:07:15 +0000490 DRD_(g_threadinfo)[tid].vg_thread_exists = False;
sewardjaf44c822007-11-25 14:01:38 +0000491
bartbedfd232009-03-26 19:07:15 +0000492 if (DRD_(g_threadinfo)[tid].detached_posix_thread)
493 {
494 /*
495 * Once a detached thread has finished, its stack is deallocated and
496 * should no longer be taken into account when computing the conflict set.
497 */
498 DRD_(g_threadinfo)[tid].stack_min = DRD_(g_threadinfo)[tid].stack_max;
sewardjaf44c822007-11-25 14:01:38 +0000499
bartbedfd232009-03-26 19:07:15 +0000500 /*
501 * For a detached thread, calling pthread_exit() invalidates the
502 * POSIX thread ID associated with the detached thread. For joinable
503 * POSIX threads however, the POSIX thread ID remains live after the
504 * pthread_exit() call until pthread_join() is called.
505 */
506 DRD_(g_threadinfo)[tid].posix_thread_exists = False;
507 }
sewardjaf44c822007-11-25 14:01:38 +0000508}
509
bart5c7e6b62011-02-03 17:47:50 +0000510/** Called just after fork() in the child process. */
511void DRD_(drd_thread_atfork_child)(const DrdThreadId tid)
512{
513 unsigned i;
514
515 for (i = 1; i < DRD_N_THREADS; i++)
516 {
517 if (i == tid)
518 continue;
519 if (DRD_(IsValidDrdThreadId(i)))
bart9194e932011-02-09 11:55:12 +0000520 DRD_(thread_delete)(i, True);
bart5c7e6b62011-02-03 17:47:50 +0000521 tl_assert(!DRD_(IsValidDrdThreadId(i)));
522 }
523}
524
bart9b2974a2008-09-27 12:35:31 +0000525/** Called just before pthread_cancel(). */
bart62a784c2009-02-15 13:11:14 +0000526void DRD_(thread_pre_cancel)(const DrdThreadId tid)
bartaf0691b2008-09-27 12:26:50 +0000527{
bartbedfd232009-03-26 19:07:15 +0000528 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
529 && tid != DRD_INVALID_THREADID);
530 tl_assert(DRD_(g_threadinfo)[tid].pt_threadid != INVALID_POSIX_THREADID);
bartaf0691b2008-09-27 12:26:50 +0000531
bartbedfd232009-03-26 19:07:15 +0000532 DRD_(g_threadinfo)[tid].synchr_nesting = 0;
bartaf0691b2008-09-27 12:26:50 +0000533}
534
barte7dff242009-04-23 17:12:39 +0000535/**
536 * Store the POSIX thread ID for the specified thread.
537 *
538 * @note This function can be called two times for the same thread -- see also
539 * the comment block preceding the pthread_create() wrapper in
540 * drd_pthread_intercepts.c.
541 */
bart62a784c2009-02-15 13:11:14 +0000542void DRD_(thread_set_pthreadid)(const DrdThreadId tid, const PThreadId ptid)
sewardjaf44c822007-11-25 14:01:38 +0000543{
bartbedfd232009-03-26 19:07:15 +0000544 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
545 && tid != DRD_INVALID_THREADID);
barte7dff242009-04-23 17:12:39 +0000546 tl_assert(DRD_(g_threadinfo)[tid].pt_threadid == INVALID_POSIX_THREADID
547 || DRD_(g_threadinfo)[tid].pt_threadid == ptid);
bartbedfd232009-03-26 19:07:15 +0000548 tl_assert(ptid != INVALID_POSIX_THREADID);
549 DRD_(g_threadinfo)[tid].posix_thread_exists = True;
550 DRD_(g_threadinfo)[tid].pt_threadid = ptid;
sewardjaf44c822007-11-25 14:01:38 +0000551}
552
bart86a87df2009-03-04 19:26:47 +0000553/** Returns true for joinable threads and false for detached threads. */
bart62a784c2009-02-15 13:11:14 +0000554Bool DRD_(thread_get_joinable)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000555{
bartbedfd232009-03-26 19:07:15 +0000556 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
557 && tid != DRD_INVALID_THREADID);
558 return ! DRD_(g_threadinfo)[tid].detached_posix_thread;
sewardjaf44c822007-11-25 14:01:38 +0000559}
560
bart86a87df2009-03-04 19:26:47 +0000561/** Store the thread mode: joinable or detached. */
bart62a784c2009-02-15 13:11:14 +0000562void DRD_(thread_set_joinable)(const DrdThreadId tid, const Bool joinable)
sewardjaf44c822007-11-25 14:01:38 +0000563{
bartbedfd232009-03-26 19:07:15 +0000564 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
565 && tid != DRD_INVALID_THREADID);
566 tl_assert(!! joinable == joinable);
567 tl_assert(DRD_(g_threadinfo)[tid].pt_threadid != INVALID_POSIX_THREADID);
bart8f822af2009-06-08 18:20:42 +0000568
bartbedfd232009-03-26 19:07:15 +0000569 DRD_(g_threadinfo)[tid].detached_posix_thread = ! joinable;
sewardjaf44c822007-11-25 14:01:38 +0000570}
571
bartdd75cdf2009-07-24 08:20:10 +0000572/** Tells DRD that the calling thread is about to enter pthread_create(). */
573void DRD_(thread_entering_pthread_create)(const DrdThreadId tid)
574{
575 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
576 && tid != DRD_INVALID_THREADID);
577 tl_assert(DRD_(g_threadinfo)[tid].pt_threadid != INVALID_POSIX_THREADID);
578 tl_assert(DRD_(g_threadinfo)[tid].pthread_create_nesting_level >= 0);
579
580 DRD_(g_threadinfo)[tid].pthread_create_nesting_level++;
581}
582
583/** Tells DRD that the calling thread has left pthread_create(). */
584void DRD_(thread_left_pthread_create)(const DrdThreadId tid)
585{
586 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
587 && tid != DRD_INVALID_THREADID);
588 tl_assert(DRD_(g_threadinfo)[tid].pt_threadid != INVALID_POSIX_THREADID);
589 tl_assert(DRD_(g_threadinfo)[tid].pthread_create_nesting_level > 0);
590
591 DRD_(g_threadinfo)[tid].pthread_create_nesting_level--;
592}
593
bartd45d9952009-05-31 18:53:54 +0000594/** Obtain the thread number and the user-assigned thread name. */
595const char* DRD_(thread_get_name)(const DrdThreadId tid)
596{
597 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
598 && tid != DRD_INVALID_THREADID);
599
600 return DRD_(g_threadinfo)[tid].name;
601}
602
603/** Set the name of the specified thread. */
604void DRD_(thread_set_name)(const DrdThreadId tid, const char* const name)
605{
606 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
607 && tid != DRD_INVALID_THREADID);
bart31b983d2010-02-21 14:52:59 +0000608
bartd45d9952009-05-31 18:53:54 +0000609 if (name == NULL || name[0] == 0)
610 VG_(snprintf)(DRD_(g_threadinfo)[tid].name,
611 sizeof(DRD_(g_threadinfo)[tid].name),
612 "Thread %d",
613 tid);
614 else
615 VG_(snprintf)(DRD_(g_threadinfo)[tid].name,
616 sizeof(DRD_(g_threadinfo)[tid].name),
617 "Thread %d (%s)",
618 tid, name);
619 DRD_(g_threadinfo)[tid].name[sizeof(DRD_(g_threadinfo)[tid].name) - 1] = 0;
620}
621
bart86a87df2009-03-04 19:26:47 +0000622/**
623 * Update s_vg_running_tid, DRD_(g_drd_running_tid) and recalculate the
624 * conflict set.
625 */
bart62a784c2009-02-15 13:11:14 +0000626void DRD_(thread_set_vg_running_tid)(const ThreadId vg_tid)
sewardjaf44c822007-11-25 14:01:38 +0000627{
bartbedfd232009-03-26 19:07:15 +0000628 tl_assert(vg_tid != VG_INVALID_THREADID);
sewardj8b09d4f2007-12-04 21:27:18 +0000629
bartbedfd232009-03-26 19:07:15 +0000630 if (vg_tid != s_vg_running_tid)
631 {
632 DRD_(thread_set_running_tid)(vg_tid,
633 DRD_(VgThreadIdToDrdThreadId)(vg_tid));
634 }
sewardj8b09d4f2007-12-04 21:27:18 +0000635
bartbedfd232009-03-26 19:07:15 +0000636 tl_assert(s_vg_running_tid != VG_INVALID_THREADID);
637 tl_assert(DRD_(g_drd_running_tid) != DRD_INVALID_THREADID);
sewardj8b09d4f2007-12-04 21:27:18 +0000638}
639
bart86a87df2009-03-04 19:26:47 +0000640/**
641 * Update s_vg_running_tid, DRD_(g_drd_running_tid) and recalculate the
642 * conflict set.
643 */
bart62a784c2009-02-15 13:11:14 +0000644void DRD_(thread_set_running_tid)(const ThreadId vg_tid,
645 const DrdThreadId drd_tid)
sewardj8b09d4f2007-12-04 21:27:18 +0000646{
bartbedfd232009-03-26 19:07:15 +0000647 tl_assert(vg_tid != VG_INVALID_THREADID);
648 tl_assert(drd_tid != DRD_INVALID_THREADID);
bart31b983d2010-02-21 14:52:59 +0000649
bartbedfd232009-03-26 19:07:15 +0000650 if (vg_tid != s_vg_running_tid)
651 {
652 if (s_trace_context_switches
653 && DRD_(g_drd_running_tid) != DRD_INVALID_THREADID)
654 {
655 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000656 "Context switch from thread %d to thread %d;"
sewardj1e29ebc2009-07-15 14:49:17 +0000657 " segments: %llu\n",
bart63c92ea2009-07-19 17:53:56 +0000658 DRD_(g_drd_running_tid), drd_tid,
bartbedfd232009-03-26 19:07:15 +0000659 DRD_(sg_get_segments_alive_count)());
660 }
661 s_vg_running_tid = vg_tid;
662 DRD_(g_drd_running_tid) = drd_tid;
663 thread_compute_conflict_set(&DRD_(g_conflict_set), drd_tid);
664 s_context_switch_count++;
665 }
sewardj8b09d4f2007-12-04 21:27:18 +0000666
bartbedfd232009-03-26 19:07:15 +0000667 tl_assert(s_vg_running_tid != VG_INVALID_THREADID);
668 tl_assert(DRD_(g_drd_running_tid) != DRD_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +0000669}
670
bart86a87df2009-03-04 19:26:47 +0000671/**
672 * Increase the synchronization nesting counter. Must be called before the
673 * client calls a synchronization function.
674 */
bart62a784c2009-02-15 13:11:14 +0000675int DRD_(thread_enter_synchr)(const DrdThreadId tid)
bart0268dfa2008-03-11 20:10:21 +0000676{
bartbedfd232009-03-26 19:07:15 +0000677 tl_assert(DRD_(IsValidDrdThreadId)(tid));
678 return DRD_(g_threadinfo)[tid].synchr_nesting++;
bart0268dfa2008-03-11 20:10:21 +0000679}
680
bart86a87df2009-03-04 19:26:47 +0000681/**
682 * Decrease the synchronization nesting counter. Must be called after the
683 * client left a synchronization function.
684 */
bart62a784c2009-02-15 13:11:14 +0000685int DRD_(thread_leave_synchr)(const DrdThreadId tid)
bart0268dfa2008-03-11 20:10:21 +0000686{
bartbedfd232009-03-26 19:07:15 +0000687 tl_assert(DRD_(IsValidDrdThreadId)(tid));
688 tl_assert(DRD_(g_threadinfo)[tid].synchr_nesting >= 1);
689 return --DRD_(g_threadinfo)[tid].synchr_nesting;
bart0268dfa2008-03-11 20:10:21 +0000690}
691
bart86a87df2009-03-04 19:26:47 +0000692/** Returns the synchronization nesting counter. */
bart62a784c2009-02-15 13:11:14 +0000693int DRD_(thread_get_synchr_nesting_count)(const DrdThreadId tid)
bart0268dfa2008-03-11 20:10:21 +0000694{
bartbedfd232009-03-26 19:07:15 +0000695 tl_assert(DRD_(IsValidDrdThreadId)(tid));
696 return DRD_(g_threadinfo)[tid].synchr_nesting;
bart0268dfa2008-03-11 20:10:21 +0000697}
698
bart1a473c72008-03-13 19:03:38 +0000699/** Append a new segment at the end of the segment list. */
bart62a784c2009-02-15 13:11:14 +0000700static
bart86a87df2009-03-04 19:26:47 +0000701void thread_append_segment(const DrdThreadId tid, Segment* const sg)
sewardjaf44c822007-11-25 14:01:38 +0000702{
bartbedfd232009-03-26 19:07:15 +0000703 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
704 && tid != DRD_INVALID_THREADID);
bart8f822af2009-06-08 18:20:42 +0000705
706#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
707 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[tid]));
708#endif
709
bartbedfd232009-03-26 19:07:15 +0000710 sg->prev = DRD_(g_threadinfo)[tid].last;
711 sg->next = 0;
712 if (DRD_(g_threadinfo)[tid].last)
713 DRD_(g_threadinfo)[tid].last->next = sg;
714 DRD_(g_threadinfo)[tid].last = sg;
715 if (DRD_(g_threadinfo)[tid].first == 0)
716 DRD_(g_threadinfo)[tid].first = sg;
bart8f822af2009-06-08 18:20:42 +0000717
718#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
719 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[tid]));
720#endif
sewardjaf44c822007-11-25 14:01:38 +0000721}
722
bart324a23b2009-02-15 12:14:52 +0000723/**
724 * Remove a segment from the segment list of thread threadid, and free the
725 * associated memory.
sewardjaf44c822007-11-25 14:01:38 +0000726 */
bart62a784c2009-02-15 13:11:14 +0000727static
bart86a87df2009-03-04 19:26:47 +0000728void thread_discard_segment(const DrdThreadId tid, Segment* const sg)
sewardjaf44c822007-11-25 14:01:38 +0000729{
bartbedfd232009-03-26 19:07:15 +0000730 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
731 && tid != DRD_INVALID_THREADID);
bart8f822af2009-06-08 18:20:42 +0000732
733#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
734 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[tid]));
735#endif
bart26f73e12008-02-24 18:37:08 +0000736
bartbedfd232009-03-26 19:07:15 +0000737 if (sg->prev)
738 sg->prev->next = sg->next;
739 if (sg->next)
740 sg->next->prev = sg->prev;
741 if (sg == DRD_(g_threadinfo)[tid].first)
742 DRD_(g_threadinfo)[tid].first = sg->next;
743 if (sg == DRD_(g_threadinfo)[tid].last)
744 DRD_(g_threadinfo)[tid].last = sg->prev;
745 DRD_(sg_put)(sg);
bart3f749672008-03-22 09:49:40 +0000746
bart8f822af2009-06-08 18:20:42 +0000747#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
748 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[tid]));
749#endif
sewardjaf44c822007-11-25 14:01:38 +0000750}
751
bart86a87df2009-03-04 19:26:47 +0000752/**
753 * Returns a pointer to the vector clock of the most recent segment associated
754 * with thread 'tid'.
755 */
bart62a784c2009-02-15 13:11:14 +0000756VectorClock* DRD_(thread_get_vc)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000757{
bartbedfd232009-03-26 19:07:15 +0000758 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
759 && tid != DRD_INVALID_THREADID);
760 tl_assert(DRD_(g_threadinfo)[tid].last);
761 return &DRD_(g_threadinfo)[tid].last->vc;
sewardjaf44c822007-11-25 14:01:38 +0000762}
763
bart324a23b2009-02-15 12:14:52 +0000764/**
765 * Return the latest segment of thread 'tid' and increment its reference count.
barta2b6e1b2008-03-17 18:32:39 +0000766 */
bart62a784c2009-02-15 13:11:14 +0000767void DRD_(thread_get_latest_segment)(Segment** sg, const DrdThreadId tid)
barta2b6e1b2008-03-17 18:32:39 +0000768{
bartbedfd232009-03-26 19:07:15 +0000769 tl_assert(sg);
770 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
771 && tid != DRD_INVALID_THREADID);
772 tl_assert(DRD_(g_threadinfo)[tid].last);
barta2b6e1b2008-03-17 18:32:39 +0000773
bartbedfd232009-03-26 19:07:15 +0000774 DRD_(sg_put)(*sg);
775 *sg = DRD_(sg_get)(DRD_(g_threadinfo)[tid].last);
barta2b6e1b2008-03-17 18:32:39 +0000776}
777
sewardjaf44c822007-11-25 14:01:38 +0000778/**
779 * Compute the minimum of all latest vector clocks of all threads
780 * (Michiel Ronsse calls this "clock snooping" in his papers about DIOTA).
bart86a87df2009-03-04 19:26:47 +0000781 *
sewardjaf44c822007-11-25 14:01:38 +0000782 * @param vc pointer to a vectorclock, holds result upon return.
783 */
bart62a784c2009-02-15 13:11:14 +0000784static void DRD_(thread_compute_minimum_vc)(VectorClock* vc)
sewardjaf44c822007-11-25 14:01:38 +0000785{
bartbedfd232009-03-26 19:07:15 +0000786 unsigned i;
787 Bool first;
788 Segment* latest_sg;
sewardjaf44c822007-11-25 14:01:38 +0000789
bartbedfd232009-03-26 19:07:15 +0000790 first = True;
bart8f822af2009-06-08 18:20:42 +0000791 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +0000792 {
793 latest_sg = DRD_(g_threadinfo)[i].last;
794 if (latest_sg)
795 {
796 if (first)
797 DRD_(vc_assign)(vc, &latest_sg->vc);
798 else
799 DRD_(vc_min)(vc, &latest_sg->vc);
800 first = False;
801 }
802 }
sewardjaf44c822007-11-25 14:01:38 +0000803}
804
bart86a87df2009-03-04 19:26:47 +0000805/**
806 * Compute the maximum of all latest vector clocks of all threads.
807 *
808 * @param vc pointer to a vectorclock, holds result upon return.
809 */
bart62a784c2009-02-15 13:11:14 +0000810static void DRD_(thread_compute_maximum_vc)(VectorClock* vc)
sewardjaf44c822007-11-25 14:01:38 +0000811{
bartbedfd232009-03-26 19:07:15 +0000812 unsigned i;
813 Bool first;
814 Segment* latest_sg;
sewardjaf44c822007-11-25 14:01:38 +0000815
bartbedfd232009-03-26 19:07:15 +0000816 first = True;
bart8f822af2009-06-08 18:20:42 +0000817 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +0000818 {
819 latest_sg = DRD_(g_threadinfo)[i].last;
820 if (latest_sg)
821 {
822 if (first)
823 DRD_(vc_assign)(vc, &latest_sg->vc);
824 else
825 DRD_(vc_combine)(vc, &latest_sg->vc);
826 first = False;
827 }
828 }
sewardjaf44c822007-11-25 14:01:38 +0000829}
830
831/**
bart5bd9f2d2008-03-03 20:31:58 +0000832 * Discard all segments that have a defined order against the latest vector
bart86a87df2009-03-04 19:26:47 +0000833 * clock of all threads -- these segments can no longer be involved in a
sewardjaf44c822007-11-25 14:01:38 +0000834 * data race.
835 */
bart8f822af2009-06-08 18:20:42 +0000836static void thread_discard_ordered_segments(void)
sewardjaf44c822007-11-25 14:01:38 +0000837{
bartbedfd232009-03-26 19:07:15 +0000838 unsigned i;
839 VectorClock thread_vc_min;
sewardjaf44c822007-11-25 14:01:38 +0000840
bartbedfd232009-03-26 19:07:15 +0000841 s_discard_ordered_segments_count++;
sewardjaf44c822007-11-25 14:01:38 +0000842
bartbedfd232009-03-26 19:07:15 +0000843 DRD_(vc_init)(&thread_vc_min, 0, 0);
844 DRD_(thread_compute_minimum_vc)(&thread_vc_min);
845 if (DRD_(sg_get_trace)())
846 {
bart8f822af2009-06-08 18:20:42 +0000847 char *vc_min, *vc_max;
bartbedfd232009-03-26 19:07:15 +0000848 VectorClock thread_vc_max;
sewardjaf44c822007-11-25 14:01:38 +0000849
bartbedfd232009-03-26 19:07:15 +0000850 DRD_(vc_init)(&thread_vc_max, 0, 0);
851 DRD_(thread_compute_maximum_vc)(&thread_vc_max);
bart8f822af2009-06-08 18:20:42 +0000852 vc_min = DRD_(vc_aprint)(&thread_vc_min);
853 vc_max = DRD_(vc_aprint)(&thread_vc_max);
854 VG_(message)(Vg_DebugMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000855 "Discarding ordered segments -- min vc is %s, max vc is %s\n",
bart8f822af2009-06-08 18:20:42 +0000856 vc_min, vc_max);
857 VG_(free)(vc_min);
858 VG_(free)(vc_max);
bartbedfd232009-03-26 19:07:15 +0000859 DRD_(vc_cleanup)(&thread_vc_max);
860 }
sewardjaf44c822007-11-25 14:01:38 +0000861
bart8f822af2009-06-08 18:20:42 +0000862 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +0000863 {
864 Segment* sg;
865 Segment* sg_next;
866 for (sg = DRD_(g_threadinfo)[i].first;
867 sg && (sg_next = sg->next) && DRD_(vc_lte)(&sg->vc, &thread_vc_min);
868 sg = sg_next)
869 {
870 thread_discard_segment(i, sg);
871 }
872 }
873 DRD_(vc_cleanup)(&thread_vc_min);
sewardjaf44c822007-11-25 14:01:38 +0000874}
875
bart324a23b2009-02-15 12:14:52 +0000876/**
bart8f822af2009-06-08 18:20:42 +0000877 * An implementation of the property 'equiv(sg1, sg2)' as defined in the paper
878 * by Mark Christiaens e.a. The property equiv(sg1, sg2) holds if and only if
879 * all segments in the set CS are ordered consistently against both sg1 and
880 * sg2. The set CS is defined as the set of segments that can immediately
881 * precede future segments via inter-thread synchronization operations. In
882 * DRD the set CS consists of the latest segment of each thread combined with
883 * all segments for which the reference count is strictly greater than one.
884 * The code below is an optimized version of the following:
885 *
886 * for (i = 0; i < DRD_N_THREADS; i++)
887 * {
888 * Segment* sg;
889 *
890 * for (sg = DRD_(g_threadinfo)[i].first; sg; sg = sg->next)
891 * {
892 * if (sg == DRD_(g_threadinfo)[i].last || DRD_(sg_get_refcnt)(sg) > 1)
893 * {
894 * if ( DRD_(vc_lte)(&sg1->vc, &sg->vc)
895 * != DRD_(vc_lte)(&sg2->vc, &sg->vc)
896 * || DRD_(vc_lte)(&sg->vc, &sg1->vc)
897 * != DRD_(vc_lte)(&sg->vc, &sg2->vc))
898 * {
899 * return False;
900 * }
901 * }
902 * }
903 * }
904 */
905static Bool thread_consistent_segment_ordering(const DrdThreadId tid,
906 Segment* const sg1,
907 Segment* const sg2)
908{
909 unsigned i;
910
911 tl_assert(sg1->next);
912 tl_assert(sg2->next);
913 tl_assert(sg1->next == sg2);
914 tl_assert(DRD_(vc_lte)(&sg1->vc, &sg2->vc));
915
916 for (i = 0; i < DRD_N_THREADS; i++)
917 {
918 Segment* sg;
919
920 for (sg = DRD_(g_threadinfo)[i].first; sg; sg = sg->next)
921 {
922 if (! sg->next || DRD_(sg_get_refcnt)(sg) > 1)
923 {
924 if (DRD_(vc_lte)(&sg2->vc, &sg->vc))
925 break;
926 if (DRD_(vc_lte)(&sg1->vc, &sg->vc))
927 return False;
928 }
929 }
930 for (sg = DRD_(g_threadinfo)[i].last; sg; sg = sg->prev)
931 {
932 if (! sg->next || DRD_(sg_get_refcnt)(sg) > 1)
933 {
934 if (DRD_(vc_lte)(&sg->vc, &sg1->vc))
935 break;
936 if (DRD_(vc_lte)(&sg->vc, &sg2->vc))
937 return False;
938 }
939 }
940 }
941 return True;
942}
943
944/**
bart324a23b2009-02-15 12:14:52 +0000945 * Merge all segments that may be merged without triggering false positives
946 * or discarding real data races. For the theoretical background of segment
bart8f822af2009-06-08 18:20:42 +0000947 * merging, see also the following paper: Mark Christiaens, Michiel Ronsse
948 * and Koen De Bosschere. Bounding the number of segment histories during
949 * data race detection. Parallel Computing archive, Volume 28, Issue 9,
950 * pp 1221-1238, September 2002. This paper contains a proof that merging
951 * consecutive segments for which the property equiv(s1,s2) holds can be
952 * merged without reducing the accuracy of datarace detection. Furthermore
953 * it is also proven that the total number of all segments will never grow
954 * unbounded if all segments s1, s2 for which equiv(s1, s2) holds are merged
955 * every time a new segment is created. The property equiv(s1, s2) is defined
956 * as follows: equiv(s1, s2) <=> for all segments in the set CS, the vector
957 * clocks of segments s and s1 are ordered in the same way as those of segments
958 * s and s2. The set CS is defined as the set of existing segments s that have
959 * the potential to conflict with not yet created segments, either because the
960 * segment s is the latest segment of a thread or because it can become the
961 * immediate predecessor of a new segment due to a synchronization operation.
barta9c37392008-03-22 09:38:48 +0000962 */
963static void thread_merge_segments(void)
964{
bartbedfd232009-03-26 19:07:15 +0000965 unsigned i;
barta9c37392008-03-22 09:38:48 +0000966
bart8f822af2009-06-08 18:20:42 +0000967 s_new_segments_since_last_merge = 0;
968
969 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +0000970 {
971 Segment* sg;
barta9c37392008-03-22 09:38:48 +0000972
bart8f822af2009-06-08 18:20:42 +0000973#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
974 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[i]));
975#endif
barta9c37392008-03-22 09:38:48 +0000976
bartbedfd232009-03-26 19:07:15 +0000977 for (sg = DRD_(g_threadinfo)[i].first; sg; sg = sg->next)
barta9c37392008-03-22 09:38:48 +0000978 {
bartbedfd232009-03-26 19:07:15 +0000979 if (DRD_(sg_get_refcnt)(sg) == 1
980 && sg->next
981 && DRD_(sg_get_refcnt)(sg->next) == 1
bart8f822af2009-06-08 18:20:42 +0000982 && sg->next->next
983 && thread_consistent_segment_ordering(i, sg, sg->next))
bartbedfd232009-03-26 19:07:15 +0000984 {
985 /* Merge sg and sg->next into sg. */
986 DRD_(sg_merge)(sg, sg->next);
987 thread_discard_segment(i, sg->next);
988 }
barta9c37392008-03-22 09:38:48 +0000989 }
barta9c37392008-03-22 09:38:48 +0000990
bart8f822af2009-06-08 18:20:42 +0000991#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
992 tl_assert(DRD_(sane_ThreadInfo)(&DRD_(g_threadinfo)[i]));
993#endif
bartbedfd232009-03-26 19:07:15 +0000994 }
barta9c37392008-03-22 09:38:48 +0000995}
996
bart324a23b2009-02-15 12:14:52 +0000997/**
bart324a23b2009-02-15 12:14:52 +0000998 * Create a new segment for the specified thread, and discard any segments
999 * that cannot cause races anymore.
sewardjaf44c822007-11-25 14:01:38 +00001000 */
bart62a784c2009-02-15 13:11:14 +00001001void DRD_(thread_new_segment)(const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +00001002{
bart8f822af2009-06-08 18:20:42 +00001003 Segment* last_sg;
bartbedfd232009-03-26 19:07:15 +00001004 Segment* new_sg;
bartd66e3a82008-04-06 15:02:17 +00001005
bartbedfd232009-03-26 19:07:15 +00001006 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1007 && tid != DRD_INVALID_THREADID);
bart8f822af2009-06-08 18:20:42 +00001008 tl_assert(thread_conflict_set_up_to_date(DRD_(g_drd_running_tid)));
sewardjaf44c822007-11-25 14:01:38 +00001009
bart8f822af2009-06-08 18:20:42 +00001010 last_sg = DRD_(g_threadinfo)[tid].last;
bartbedfd232009-03-26 19:07:15 +00001011 new_sg = DRD_(sg_new)(tid, tid);
1012 thread_append_segment(tid, new_sg);
bart8f822af2009-06-08 18:20:42 +00001013 if (tid == DRD_(g_drd_running_tid) && last_sg)
barte5214662009-06-21 11:51:23 +00001014 {
bart8f822af2009-06-08 18:20:42 +00001015 DRD_(thread_update_conflict_set)(tid, &last_sg->vc);
barte5214662009-06-21 11:51:23 +00001016 s_update_conflict_set_new_sg_count++;
1017 }
bartd66e3a82008-04-06 15:02:17 +00001018
bart8f822af2009-06-08 18:20:42 +00001019 tl_assert(thread_conflict_set_up_to_date(DRD_(g_drd_running_tid)));
sewardjaf44c822007-11-25 14:01:38 +00001020
bart8f822af2009-06-08 18:20:42 +00001021 if (s_segment_merging
1022 && ++s_new_segments_since_last_merge >= s_segment_merge_interval)
bartbedfd232009-03-26 19:07:15 +00001023 {
bart8f822af2009-06-08 18:20:42 +00001024 thread_discard_ordered_segments();
bartbedfd232009-03-26 19:07:15 +00001025 thread_merge_segments();
1026 }
sewardjaf44c822007-11-25 14:01:38 +00001027}
1028
bart26f73e12008-02-24 18:37:08 +00001029/** Call this function after thread 'joiner' joined thread 'joinee'. */
bart8f822af2009-06-08 18:20:42 +00001030void DRD_(thread_combine_vc_join)(DrdThreadId joiner, DrdThreadId joinee)
sewardjaf44c822007-11-25 14:01:38 +00001031{
bartbedfd232009-03-26 19:07:15 +00001032 tl_assert(joiner != joinee);
1033 tl_assert(0 <= (int)joiner && joiner < DRD_N_THREADS
1034 && joiner != DRD_INVALID_THREADID);
1035 tl_assert(0 <= (int)joinee && joinee < DRD_N_THREADS
1036 && joinee != DRD_INVALID_THREADID);
1037 tl_assert(DRD_(g_threadinfo)[joiner].last);
1038 tl_assert(DRD_(g_threadinfo)[joinee].last);
bart8f822af2009-06-08 18:20:42 +00001039
1040 if (DRD_(sg_get_trace)())
1041 {
1042 char *str1, *str2;
1043 str1 = DRD_(vc_aprint)(&DRD_(g_threadinfo)[joiner].last->vc);
1044 str2 = DRD_(vc_aprint)(&DRD_(g_threadinfo)[joinee].last->vc);
sewardj1e29ebc2009-07-15 14:49:17 +00001045 VG_(message)(Vg_DebugMsg, "Before join: joiner %s, joinee %s\n",
bart8f822af2009-06-08 18:20:42 +00001046 str1, str2);
1047 VG_(free)(str1);
1048 VG_(free)(str2);
1049 }
barte5214662009-06-21 11:51:23 +00001050 if (joiner == DRD_(g_drd_running_tid))
1051 {
1052 VectorClock old_vc;
1053
1054 DRD_(vc_copy)(&old_vc, &DRD_(g_threadinfo)[joiner].last->vc);
1055 DRD_(vc_combine)(&DRD_(g_threadinfo)[joiner].last->vc,
bartf6ec1fe2009-06-21 18:07:35 +00001056 &DRD_(g_threadinfo)[joinee].last->vc);
barte5214662009-06-21 11:51:23 +00001057 DRD_(thread_update_conflict_set)(joiner, &old_vc);
1058 s_update_conflict_set_join_count++;
1059 DRD_(vc_cleanup)(&old_vc);
1060 }
1061 else
1062 {
1063 DRD_(vc_combine)(&DRD_(g_threadinfo)[joiner].last->vc,
bartf6ec1fe2009-06-21 18:07:35 +00001064 &DRD_(g_threadinfo)[joinee].last->vc);
barte5214662009-06-21 11:51:23 +00001065 }
1066
1067 thread_discard_ordered_segments();
1068
bart8f822af2009-06-08 18:20:42 +00001069 if (DRD_(sg_get_trace)())
1070 {
1071 char* str;
1072 str = DRD_(vc_aprint)(&DRD_(g_threadinfo)[joiner].last->vc);
sewardj1e29ebc2009-07-15 14:49:17 +00001073 VG_(message)(Vg_DebugMsg, "After join: %s\n", str);
bart8f822af2009-06-08 18:20:42 +00001074 VG_(free)(str);
1075 }
sewardjaf44c822007-11-25 14:01:38 +00001076}
1077
bart324a23b2009-02-15 12:14:52 +00001078/**
bart8f822af2009-06-08 18:20:42 +00001079 * Update the vector clock of the last segment of thread tid with the
bartf6ec1fe2009-06-21 18:07:35 +00001080 * the vector clock of segment sg.
bart26f73e12008-02-24 18:37:08 +00001081 */
bartf6ec1fe2009-06-21 18:07:35 +00001082static void thread_combine_vc_sync(DrdThreadId tid, const Segment* sg)
sewardjaf44c822007-11-25 14:01:38 +00001083{
bart8f822af2009-06-08 18:20:42 +00001084 const VectorClock* const vc = &sg->vc;
1085
bartbedfd232009-03-26 19:07:15 +00001086 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1087 && tid != DRD_INVALID_THREADID);
1088 tl_assert(DRD_(g_threadinfo)[tid].last);
bart8f822af2009-06-08 18:20:42 +00001089 tl_assert(sg);
bartbedfd232009-03-26 19:07:15 +00001090 tl_assert(vc);
bart8f822af2009-06-08 18:20:42 +00001091
1092 if (tid != sg->tid)
1093 {
1094 VectorClock old_vc;
1095
1096 DRD_(vc_copy)(&old_vc, &DRD_(g_threadinfo)[tid].last->vc);
1097 DRD_(vc_combine)(&DRD_(g_threadinfo)[tid].last->vc, vc);
1098 if (DRD_(sg_get_trace)())
1099 {
1100 char *str1, *str2;
1101 str1 = DRD_(vc_aprint)(&old_vc);
1102 str2 = DRD_(vc_aprint)(&DRD_(g_threadinfo)[tid].last->vc);
sewardj1e29ebc2009-07-15 14:49:17 +00001103 VG_(message)(Vg_DebugMsg, "thread %d: vc %s -> %s\n", tid, str1, str2);
bart8f822af2009-06-08 18:20:42 +00001104 VG_(free)(str1);
1105 VG_(free)(str2);
1106 }
barte5214662009-06-21 11:51:23 +00001107
bart8f822af2009-06-08 18:20:42 +00001108 thread_discard_ordered_segments();
barte5214662009-06-21 11:51:23 +00001109
bart8f822af2009-06-08 18:20:42 +00001110 DRD_(thread_update_conflict_set)(tid, &old_vc);
barte5214662009-06-21 11:51:23 +00001111 s_update_conflict_set_sync_count++;
1112
bart8f822af2009-06-08 18:20:42 +00001113 DRD_(vc_cleanup)(&old_vc);
1114 }
1115 else
1116 {
1117 tl_assert(DRD_(vc_lte)(vc, &DRD_(g_threadinfo)[tid].last->vc));
1118 }
sewardjaf44c822007-11-25 14:01:38 +00001119}
1120
bart324a23b2009-02-15 12:14:52 +00001121/**
bartf6ec1fe2009-06-21 18:07:35 +00001122 * Create a new segment for thread tid and update the vector clock of the last
1123 * segment of this thread with the the vector clock of segment sg. Call this
1124 * function after thread tid had to wait because of thread synchronization
1125 * until the memory accesses in the segment sg finished.
1126 */
1127void DRD_(thread_new_segment_and_combine_vc)(DrdThreadId tid, const Segment* sg)
1128{
1129 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1130 && tid != DRD_INVALID_THREADID);
1131 tl_assert(thread_conflict_set_up_to_date(DRD_(g_drd_running_tid)));
1132 tl_assert(sg);
1133
1134 thread_append_segment(tid, DRD_(sg_new)(tid, tid));
1135
1136 thread_combine_vc_sync(tid, sg);
1137
1138 if (s_segment_merging
1139 && ++s_new_segments_since_last_merge >= s_segment_merge_interval)
1140 {
1141 thread_discard_ordered_segments();
1142 thread_merge_segments();
1143 }
1144}
1145
1146/**
bart324a23b2009-02-15 12:14:52 +00001147 * Call this function whenever a thread is no longer using the memory
1148 * [ a1, a2 [, e.g. because of a call to free() or a stack pointer
1149 * increase.
bart26f73e12008-02-24 18:37:08 +00001150 */
bartf9427fd2010-08-29 09:19:07 +00001151void DRD_(thread_stop_using_mem)(const Addr a1, const Addr a2,
1152 const Bool dont_clear_access)
sewardjaf44c822007-11-25 14:01:38 +00001153{
bartbedfd232009-03-26 19:07:15 +00001154 DrdThreadId other_user;
1155 unsigned i;
sewardjaf44c822007-11-25 14:01:38 +00001156
bartbedfd232009-03-26 19:07:15 +00001157 /* For all threads, mark the range [ a1, a2 [ as no longer in use. */
1158 other_user = DRD_INVALID_THREADID;
bart8f822af2009-06-08 18:20:42 +00001159 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +00001160 {
1161 Segment* p;
1162 for (p = DRD_(g_threadinfo)[i].first; p; p = p->next)
sewardjaf44c822007-11-25 14:01:38 +00001163 {
bartbedfd232009-03-26 19:07:15 +00001164 if (other_user == DRD_INVALID_THREADID
1165 && i != DRD_(g_drd_running_tid))
1166 {
bartf9427fd2010-08-29 09:19:07 +00001167 if (UNLIKELY((!dont_clear_access
1168 && DRD_(bm_test_and_clear)(DRD_(sg_bm)(p), a1, a2))
1169 || (dont_clear_access
1170 && DRD_(bm_has_any_access)(DRD_(sg_bm)(p), a1, a2))
1171 ))
bartbedfd232009-03-26 19:07:15 +00001172 {
1173 other_user = i;
1174 }
1175 continue;
1176 }
bartf9427fd2010-08-29 09:19:07 +00001177 if (!dont_clear_access)
1178 DRD_(bm_clear)(DRD_(sg_bm)(p), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +00001179 }
bartbedfd232009-03-26 19:07:15 +00001180 }
sewardjaf44c822007-11-25 14:01:38 +00001181
bartbedfd232009-03-26 19:07:15 +00001182 /*
1183 * If any other thread had accessed memory in [ a1, a2 [, update the
1184 * conflict set.
1185 */
1186 if (other_user != DRD_INVALID_THREADID
1187 && DRD_(bm_has_any_access)(DRD_(g_conflict_set), a1, a2))
1188 {
1189 thread_compute_conflict_set(&DRD_(g_conflict_set),
1190 DRD_(thread_get_running_tid)());
1191 }
sewardjaf44c822007-11-25 14:01:38 +00001192}
1193
bartd45d9952009-05-31 18:53:54 +00001194/** Specify whether memory loads should be recorded. */
1195void DRD_(thread_set_record_loads)(const DrdThreadId tid, const Bool enabled)
bart0268dfa2008-03-11 20:10:21 +00001196{
bartbedfd232009-03-26 19:07:15 +00001197 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1198 && tid != DRD_INVALID_THREADID);
bartd45d9952009-05-31 18:53:54 +00001199 tl_assert(enabled == !! enabled);
1200
1201 DRD_(g_threadinfo)[tid].is_recording_loads = enabled;
bart0268dfa2008-03-11 20:10:21 +00001202}
1203
bartd45d9952009-05-31 18:53:54 +00001204/** Specify whether memory stores should be recorded. */
1205void DRD_(thread_set_record_stores)(const DrdThreadId tid, const Bool enabled)
bart0268dfa2008-03-11 20:10:21 +00001206{
bartbedfd232009-03-26 19:07:15 +00001207 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1208 && tid != DRD_INVALID_THREADID);
bartd45d9952009-05-31 18:53:54 +00001209 tl_assert(enabled == !! enabled);
1210
1211 DRD_(g_threadinfo)[tid].is_recording_stores = enabled;
bart0268dfa2008-03-11 20:10:21 +00001212}
1213
bart86a87df2009-03-04 19:26:47 +00001214/**
1215 * Print the segment information for all threads.
1216 *
1217 * This function is only used for debugging purposes.
1218 */
bart62a784c2009-02-15 13:11:14 +00001219void DRD_(thread_print_all)(void)
sewardjaf44c822007-11-25 14:01:38 +00001220{
bartbedfd232009-03-26 19:07:15 +00001221 unsigned i;
1222 Segment* p;
sewardjaf44c822007-11-25 14:01:38 +00001223
bart8f822af2009-06-08 18:20:42 +00001224 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +00001225 {
1226 if (DRD_(g_threadinfo)[i].first)
sewardjaf44c822007-11-25 14:01:38 +00001227 {
bartbedfd232009-03-26 19:07:15 +00001228 VG_(printf)("**************\n"
1229 "* thread %3d (%d/%d/%d/0x%lx/%d) *\n"
1230 "**************\n",
1231 i,
1232 DRD_(g_threadinfo)[i].vg_thread_exists,
1233 DRD_(g_threadinfo)[i].vg_threadid,
1234 DRD_(g_threadinfo)[i].posix_thread_exists,
1235 DRD_(g_threadinfo)[i].pt_threadid,
1236 DRD_(g_threadinfo)[i].detached_posix_thread);
1237 for (p = DRD_(g_threadinfo)[i].first; p; p = p->next)
1238 {
1239 DRD_(sg_print)(p);
1240 }
sewardjaf44c822007-11-25 14:01:38 +00001241 }
bartbedfd232009-03-26 19:07:15 +00001242 }
sewardjaf44c822007-11-25 14:01:38 +00001243}
1244
bart86a87df2009-03-04 19:26:47 +00001245/** Show a call stack involved in a data race. */
sewardjaf44c822007-11-25 14:01:38 +00001246static void show_call_stack(const DrdThreadId tid,
1247 const Char* const msg,
1248 ExeContext* const callstack)
1249{
bartbedfd232009-03-26 19:07:15 +00001250 const ThreadId vg_tid = DRD_(DrdThreadIdToVgThreadId)(tid);
sewardjaf44c822007-11-25 14:01:38 +00001251
bart63c92ea2009-07-19 17:53:56 +00001252 VG_(message)(Vg_UserMsg, "%s (thread %d)\n", msg, tid);
sewardjaf44c822007-11-25 14:01:38 +00001253
bartbedfd232009-03-26 19:07:15 +00001254 if (vg_tid != VG_INVALID_THREADID)
1255 {
1256 if (callstack)
1257 {
1258 VG_(pp_ExeContext)(callstack);
1259 }
1260 else
1261 {
1262 VG_(get_and_pp_StackTrace)(vg_tid, VG_(clo_backtrace_size));
1263 }
1264 }
1265 else
1266 {
1267 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +00001268 " (thread finished, call stack no longer available)\n");
bartbedfd232009-03-26 19:07:15 +00001269 }
sewardjaf44c822007-11-25 14:01:38 +00001270}
1271
bart86a87df2009-03-04 19:26:47 +00001272/** Print information about the segments involved in a data race. */
sewardjaf44c822007-11-25 14:01:38 +00001273static void
1274thread_report_conflicting_segments_segment(const DrdThreadId tid,
1275 const Addr addr,
1276 const SizeT size,
1277 const BmAccessTypeT access_type,
1278 const Segment* const p)
1279{
bartbedfd232009-03-26 19:07:15 +00001280 unsigned i;
sewardjaf44c822007-11-25 14:01:38 +00001281
bartbedfd232009-03-26 19:07:15 +00001282 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1283 && tid != DRD_INVALID_THREADID);
1284 tl_assert(p);
sewardjaf44c822007-11-25 14:01:38 +00001285
bart8f822af2009-06-08 18:20:42 +00001286 for (i = 0; i < DRD_N_THREADS; i++)
bartbedfd232009-03-26 19:07:15 +00001287 {
1288 if (i != tid)
sewardjaf44c822007-11-25 14:01:38 +00001289 {
bartbedfd232009-03-26 19:07:15 +00001290 Segment* q;
1291 for (q = DRD_(g_threadinfo)[i].last; q; q = q->prev)
1292 {
1293 /*
bart31b983d2010-02-21 14:52:59 +00001294 * Since q iterates over the segments of thread i in order of
1295 * decreasing vector clocks, if q->vc <= p->vc, then
bartbedfd232009-03-26 19:07:15 +00001296 * q->next->vc <= p->vc will also hold. Hence, break out of the
1297 * loop once this condition is met.
1298 */
1299 if (DRD_(vc_lte)(&q->vc, &p->vc))
1300 break;
1301 if (! DRD_(vc_lte)(&p->vc, &q->vc))
1302 {
bart8f822af2009-06-08 18:20:42 +00001303 if (DRD_(bm_has_conflict_with)(DRD_(sg_bm)(q), addr, addr + size,
bartbedfd232009-03-26 19:07:15 +00001304 access_type))
1305 {
1306 tl_assert(q->stacktrace);
1307 show_call_stack(i, "Other segment start",
1308 q->stacktrace);
1309 show_call_stack(i, "Other segment end",
1310 q->next ? q->next->stacktrace : 0);
1311 }
1312 }
1313 }
sewardjaf44c822007-11-25 14:01:38 +00001314 }
bartbedfd232009-03-26 19:07:15 +00001315 }
sewardjaf44c822007-11-25 14:01:38 +00001316}
1317
bart86a87df2009-03-04 19:26:47 +00001318/** Print information about all segments involved in a data race. */
bart62a784c2009-02-15 13:11:14 +00001319void DRD_(thread_report_conflicting_segments)(const DrdThreadId tid,
1320 const Addr addr,
1321 const SizeT size,
1322 const BmAccessTypeT access_type)
sewardjaf44c822007-11-25 14:01:38 +00001323{
bartbedfd232009-03-26 19:07:15 +00001324 Segment* p;
sewardjaf44c822007-11-25 14:01:38 +00001325
bartbedfd232009-03-26 19:07:15 +00001326 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1327 && tid != DRD_INVALID_THREADID);
sewardjaf44c822007-11-25 14:01:38 +00001328
bartbedfd232009-03-26 19:07:15 +00001329 for (p = DRD_(g_threadinfo)[tid].first; p; p = p->next)
1330 {
bart8f822af2009-06-08 18:20:42 +00001331 if (DRD_(bm_has)(DRD_(sg_bm)(p), addr, addr + size, access_type))
bartbedfd232009-03-26 19:07:15 +00001332 {
1333 thread_report_conflicting_segments_segment(tid, addr, size,
1334 access_type, p);
1335 }
1336 }
sewardjaf44c822007-11-25 14:01:38 +00001337}
sewardjaf44c822007-11-25 14:01:38 +00001338
bart324a23b2009-02-15 12:14:52 +00001339/**
bart8f822af2009-06-08 18:20:42 +00001340 * Verify whether the conflict set for thread tid is up to date. Only perform
1341 * the check if the environment variable DRD_VERIFY_CONFLICT_SET has been set.
1342 */
1343static Bool thread_conflict_set_up_to_date(const DrdThreadId tid)
1344{
1345 static int do_verify_conflict_set = -1;
1346 Bool result;
1347 struct bitmap* computed_conflict_set = 0;
1348
1349 if (do_verify_conflict_set < 0)
1350 do_verify_conflict_set = VG_(getenv)("DRD_VERIFY_CONFLICT_SET") != 0;
1351
1352 if (do_verify_conflict_set == 0)
1353 return True;
1354
1355 thread_compute_conflict_set(&computed_conflict_set, tid);
1356 result = DRD_(bm_equal)(DRD_(g_conflict_set), computed_conflict_set);
1357 if (! result)
1358 {
1359 VG_(printf)("actual conflict set:\n");
1360 DRD_(bm_print)(DRD_(g_conflict_set));
1361 VG_(printf)("\n");
1362 VG_(printf)("computed conflict set:\n");
1363 DRD_(bm_print)(computed_conflict_set);
1364 VG_(printf)("\n");
1365 }
1366 DRD_(bm_delete)(computed_conflict_set);
1367 return result;
1368}
1369
1370/**
1371 * Compute the conflict set: a bitmap that represents the union of all memory
1372 * accesses of all segments that are unordered to the current segment of the
1373 * thread tid.
sewardjaf44c822007-11-25 14:01:38 +00001374 */
bart86a87df2009-03-04 19:26:47 +00001375static void thread_compute_conflict_set(struct bitmap** conflict_set,
1376 const DrdThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +00001377{
bartbedfd232009-03-26 19:07:15 +00001378 Segment* p;
sewardjaf44c822007-11-25 14:01:38 +00001379
bartbedfd232009-03-26 19:07:15 +00001380 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1381 && tid != DRD_INVALID_THREADID);
1382 tl_assert(tid == DRD_(g_drd_running_tid));
sewardjaf44c822007-11-25 14:01:38 +00001383
bart54803fe2009-06-21 09:26:27 +00001384 s_compute_conflict_set_count++;
bartbedfd232009-03-26 19:07:15 +00001385 s_conflict_set_bitmap_creation_count
1386 -= DRD_(bm_get_bitmap_creation_count)();
1387 s_conflict_set_bitmap2_creation_count
1388 -= DRD_(bm_get_bitmap2_creation_count)();
sewardjaf44c822007-11-25 14:01:38 +00001389
bartbedfd232009-03-26 19:07:15 +00001390 if (*conflict_set)
1391 {
bartf6ec1fe2009-06-21 18:07:35 +00001392 DRD_(bm_cleanup)(*conflict_set);
1393 DRD_(bm_init)(*conflict_set);
bartbedfd232009-03-26 19:07:15 +00001394 }
bartf6ec1fe2009-06-21 18:07:35 +00001395 else
1396 {
1397 *conflict_set = DRD_(bm_new)();
1398 }
bart26f73e12008-02-24 18:37:08 +00001399
bartbedfd232009-03-26 19:07:15 +00001400 if (s_trace_conflict_set)
1401 {
bart8f822af2009-06-08 18:20:42 +00001402 char* str;
bart26f73e12008-02-24 18:37:08 +00001403
bart8f822af2009-06-08 18:20:42 +00001404 str = DRD_(vc_aprint)(&DRD_(g_threadinfo)[tid].last->vc);
1405 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +00001406 "computing conflict set for thread %d with vc %s\n",
1407 tid, str);
bart8f822af2009-06-08 18:20:42 +00001408 VG_(free)(str);
bartbedfd232009-03-26 19:07:15 +00001409 }
sewardjaf44c822007-11-25 14:01:38 +00001410
bartbedfd232009-03-26 19:07:15 +00001411 p = DRD_(g_threadinfo)[tid].last;
1412 {
1413 unsigned j;
1414
1415 if (s_trace_conflict_set)
bart26f73e12008-02-24 18:37:08 +00001416 {
bart8f822af2009-06-08 18:20:42 +00001417 char* vc;
bartbedfd232009-03-26 19:07:15 +00001418
bart8f822af2009-06-08 18:20:42 +00001419 vc = DRD_(vc_aprint)(&p->vc);
sewardj1e29ebc2009-07-15 14:49:17 +00001420 VG_(message)(Vg_DebugMsg, "conflict set: thread [%d] at vc %s\n",
bart8f822af2009-06-08 18:20:42 +00001421 tid, vc);
1422 VG_(free)(vc);
bart26f73e12008-02-24 18:37:08 +00001423 }
sewardjaf44c822007-11-25 14:01:38 +00001424
bart8f822af2009-06-08 18:20:42 +00001425 for (j = 0; j < DRD_N_THREADS; j++)
bartbedfd232009-03-26 19:07:15 +00001426 {
1427 if (j != tid && DRD_(IsValidDrdThreadId)(j))
1428 {
bart8f822af2009-06-08 18:20:42 +00001429 Segment* q;
bartbedfd232009-03-26 19:07:15 +00001430 for (q = DRD_(g_threadinfo)[j].last; q; q = q->prev)
1431 {
1432 if (! DRD_(vc_lte)(&q->vc, &p->vc)
1433 && ! DRD_(vc_lte)(&p->vc, &q->vc))
1434 {
1435 if (s_trace_conflict_set)
1436 {
bart8f822af2009-06-08 18:20:42 +00001437 char* str;
1438
1439 str = DRD_(vc_aprint)(&q->vc);
1440 VG_(message)(Vg_DebugMsg,
sewardj1e29ebc2009-07-15 14:49:17 +00001441 "conflict set: [%d] merging segment %s\n",
bart8f822af2009-06-08 18:20:42 +00001442 j, str);
1443 VG_(free)(str);
bartbedfd232009-03-26 19:07:15 +00001444 }
bart8f822af2009-06-08 18:20:42 +00001445 DRD_(bm_merge2)(*conflict_set, DRD_(sg_bm)(q));
bartbedfd232009-03-26 19:07:15 +00001446 }
1447 else
1448 {
1449 if (s_trace_conflict_set)
1450 {
bart8f822af2009-06-08 18:20:42 +00001451 char* str;
1452
1453 str = DRD_(vc_aprint)(&q->vc);
1454 VG_(message)(Vg_DebugMsg,
sewardj1e29ebc2009-07-15 14:49:17 +00001455 "conflict set: [%d] ignoring segment %s\n",
bart8f822af2009-06-08 18:20:42 +00001456 j, str);
1457 VG_(free)(str);
bartbedfd232009-03-26 19:07:15 +00001458 }
1459 }
1460 }
1461 }
1462 }
1463 }
sewardjaf44c822007-11-25 14:01:38 +00001464
bartbedfd232009-03-26 19:07:15 +00001465 s_conflict_set_bitmap_creation_count
1466 += DRD_(bm_get_bitmap_creation_count)();
1467 s_conflict_set_bitmap2_creation_count
1468 += DRD_(bm_get_bitmap2_creation_count)();
1469
bart8f822af2009-06-08 18:20:42 +00001470 if (s_trace_conflict_set_bm)
bartbedfd232009-03-26 19:07:15 +00001471 {
sewardj1e29ebc2009-07-15 14:49:17 +00001472 VG_(message)(Vg_DebugMsg, "[%d] new conflict set:\n", tid);
bartbedfd232009-03-26 19:07:15 +00001473 DRD_(bm_print)(*conflict_set);
sewardj1e29ebc2009-07-15 14:49:17 +00001474 VG_(message)(Vg_DebugMsg, "[%d] end of new conflict set.\n", tid);
bartbedfd232009-03-26 19:07:15 +00001475 }
sewardjaf44c822007-11-25 14:01:38 +00001476}
1477
bart8f822af2009-06-08 18:20:42 +00001478/**
1479 * Update the conflict set after the vector clock of thread tid has been
1480 * updated from old_vc to its current value, either because a new segment has
1481 * been created or because of a synchronization operation.
1482 */
1483void DRD_(thread_update_conflict_set)(const DrdThreadId tid,
1484 const VectorClock* const old_vc)
1485{
1486 const VectorClock* new_vc;
1487 Segment* p;
1488 unsigned j;
1489
1490 tl_assert(0 <= (int)tid && tid < DRD_N_THREADS
1491 && tid != DRD_INVALID_THREADID);
1492 tl_assert(old_vc);
1493 tl_assert(tid == DRD_(g_drd_running_tid));
1494 tl_assert(DRD_(g_conflict_set));
1495
1496 if (s_trace_conflict_set)
1497 {
1498 char* str;
1499
1500 str = DRD_(vc_aprint)(&DRD_(g_threadinfo)[tid].last->vc);
1501 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +00001502 "updating conflict set for thread %d with vc %s\n",
1503 tid, str);
bart8f822af2009-06-08 18:20:42 +00001504 VG_(free)(str);
1505 }
1506
1507 new_vc = &DRD_(g_threadinfo)[tid].last->vc;
1508
1509 DRD_(bm_unmark)(DRD_(g_conflict_set));
1510
1511 for (j = 0; j < DRD_N_THREADS; j++)
1512 {
1513 Segment* q;
1514
1515 if (j == tid || ! DRD_(IsValidDrdThreadId)(j))
1516 continue;
1517
1518 for (q = DRD_(g_threadinfo)[j].last; q; q = q->prev)
1519 {
1520 const int included_in_old_conflict_set
1521 = ! DRD_(vc_lte)(&q->vc, old_vc)
1522 && ! DRD_(vc_lte)(old_vc, &q->vc);
1523 const int included_in_new_conflict_set
1524 = ! DRD_(vc_lte)(&q->vc, new_vc)
1525 && ! DRD_(vc_lte)(new_vc, &q->vc);
1526 if (included_in_old_conflict_set != included_in_new_conflict_set)
1527 {
1528 if (s_trace_conflict_set)
1529 {
1530 char* str;
1531
1532 str = DRD_(vc_aprint)(&q->vc);
1533 VG_(message)(Vg_DebugMsg,
sewardj1e29ebc2009-07-15 14:49:17 +00001534 "conflict set: [%d] merging segment %s\n", j, str);
bart8f822af2009-06-08 18:20:42 +00001535 VG_(free)(str);
1536 }
1537 DRD_(bm_mark)(DRD_(g_conflict_set), DRD_(sg_bm)(q));
1538 }
1539 else
1540 {
1541 if (s_trace_conflict_set)
1542 {
1543 char* str;
1544
1545 str = DRD_(vc_aprint)(&q->vc);
1546 VG_(message)(Vg_DebugMsg,
sewardj1e29ebc2009-07-15 14:49:17 +00001547 "conflict set: [%d] ignoring segment %s\n", j, str);
bart8f822af2009-06-08 18:20:42 +00001548 VG_(free)(str);
1549 }
1550 }
1551 }
1552 }
1553
1554 DRD_(bm_clear_marked)(DRD_(g_conflict_set));
1555
1556 p = DRD_(g_threadinfo)[tid].last;
1557 {
1558 for (j = 0; j < DRD_N_THREADS; j++)
1559 {
1560 if (j != tid && DRD_(IsValidDrdThreadId)(j))
1561 {
1562 Segment* q;
1563 for (q = DRD_(g_threadinfo)[j].last; q; q = q->prev)
1564 {
1565 if (! DRD_(vc_lte)(&q->vc, &p->vc)
1566 && ! DRD_(vc_lte)(&p->vc, &q->vc))
1567 {
1568 DRD_(bm_merge2_marked)(DRD_(g_conflict_set), DRD_(sg_bm)(q));
1569 }
1570 }
1571 }
1572 }
1573 }
1574
1575 DRD_(bm_remove_cleared_marked)(DRD_(g_conflict_set));
1576
bart54803fe2009-06-21 09:26:27 +00001577 s_update_conflict_set_count++;
bart8f822af2009-06-08 18:20:42 +00001578
1579 if (s_trace_conflict_set_bm)
1580 {
sewardj1e29ebc2009-07-15 14:49:17 +00001581 VG_(message)(Vg_DebugMsg, "[%d] updated conflict set:\n", tid);
bart8f822af2009-06-08 18:20:42 +00001582 DRD_(bm_print)(DRD_(g_conflict_set));
sewardj1e29ebc2009-07-15 14:49:17 +00001583 VG_(message)(Vg_DebugMsg, "[%d] end of updated conflict set.\n", tid);
bart8f822af2009-06-08 18:20:42 +00001584 }
1585
1586 tl_assert(thread_conflict_set_up_to_date(DRD_(g_drd_running_tid)));
1587}
1588
bart86a87df2009-03-04 19:26:47 +00001589/** Report the number of context switches performed. */
bart62a784c2009-02-15 13:11:14 +00001590ULong DRD_(thread_get_context_switch_count)(void)
sewardjaf44c822007-11-25 14:01:38 +00001591{
bartbedfd232009-03-26 19:07:15 +00001592 return s_context_switch_count;
sewardjaf44c822007-11-25 14:01:38 +00001593}
1594
bart86a87df2009-03-04 19:26:47 +00001595/** Report the number of ordered segments that have been discarded. */
bart62a784c2009-02-15 13:11:14 +00001596ULong DRD_(thread_get_discard_ordered_segments_count)(void)
sewardjaf44c822007-11-25 14:01:38 +00001597{
bartbedfd232009-03-26 19:07:15 +00001598 return s_discard_ordered_segments_count;
sewardjaf44c822007-11-25 14:01:38 +00001599}
1600
bart54803fe2009-06-21 09:26:27 +00001601/** Return how many times the conflict set has been updated entirely. */
1602ULong DRD_(thread_get_compute_conflict_set_count)()
sewardjaf44c822007-11-25 14:01:38 +00001603{
bart54803fe2009-06-21 09:26:27 +00001604 return s_compute_conflict_set_count;
1605}
1606
1607/** Return how many times the conflict set has been updated partially. */
1608ULong DRD_(thread_get_update_conflict_set_count)(void)
1609{
bartbedfd232009-03-26 19:07:15 +00001610 return s_update_conflict_set_count;
sewardjaf44c822007-11-25 14:01:38 +00001611}
1612
bart86a87df2009-03-04 19:26:47 +00001613/**
barte5214662009-06-21 11:51:23 +00001614 * Return how many times the conflict set has been updated partially
1615 * because a new segment has been created.
1616 */
1617ULong DRD_(thread_get_update_conflict_set_new_sg_count)(void)
1618{
1619 return s_update_conflict_set_new_sg_count;
1620}
1621
1622/**
1623 * Return how many times the conflict set has been updated partially
1624 * because of combining vector clocks due to synchronization operations
1625 * other than reader/writer lock or barrier operations.
1626 */
1627ULong DRD_(thread_get_update_conflict_set_sync_count)(void)
1628{
1629 return s_update_conflict_set_sync_count;
1630}
1631
1632/**
1633 * Return how many times the conflict set has been updated partially
1634 * because of thread joins.
1635 */
1636ULong DRD_(thread_get_update_conflict_set_join_count)(void)
1637{
1638 return s_update_conflict_set_join_count;
1639}
1640
1641/**
bart86a87df2009-03-04 19:26:47 +00001642 * Return the number of first-level bitmaps that have been created during
1643 * conflict set updates.
1644 */
bart62a784c2009-02-15 13:11:14 +00001645ULong DRD_(thread_get_conflict_set_bitmap_creation_count)(void)
sewardjaf44c822007-11-25 14:01:38 +00001646{
bartbedfd232009-03-26 19:07:15 +00001647 return s_conflict_set_bitmap_creation_count;
sewardjaf44c822007-11-25 14:01:38 +00001648}
1649
bart86a87df2009-03-04 19:26:47 +00001650/**
1651 * Return the number of second-level bitmaps that have been created during
1652 * conflict set updates.
1653 */
bart62a784c2009-02-15 13:11:14 +00001654ULong DRD_(thread_get_conflict_set_bitmap2_creation_count)(void)
sewardjaf44c822007-11-25 14:01:38 +00001655{
bartbedfd232009-03-26 19:07:15 +00001656 return s_conflict_set_bitmap2_creation_count;
sewardjaf44c822007-11-25 14:01:38 +00001657}