blob: 73984048be5aaa743297612744ab108fe438f93e [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
sewardj85642922008-01-14 11:54:56 +000026#include "drd_barrier.h"
bart4bb53d82008-02-28 19:06:34 +000027#include "drd_clientobj.h"
bart09dc13f2009-02-14 15:13:31 +000028#include "drd_clientreq.h"
sewardjaf44c822007-11-25 14:01:38 +000029#include "drd_cond.h"
30#include "drd_error.h"
bart09dc13f2009-02-14 15:13:31 +000031#include "drd_load_store.h"
sewardjaf44c822007-11-25 14:01:38 +000032#include "drd_malloc_wrappers.h"
33#include "drd_mutex.h"
bart5bd9f2d2008-03-03 20:31:58 +000034#include "drd_rwlock.h"
sewardjaf44c822007-11-25 14:01:38 +000035#include "drd_segment.h"
sewardj85642922008-01-14 11:54:56 +000036#include "drd_semaphore.h"
sewardjaf44c822007-11-25 14:01:38 +000037#include "drd_suppression.h"
38#include "drd_thread.h"
barteacd9162008-06-16 20:22:18 +000039#include "libvex_guest_offsets.h"
sewardj85642922008-01-14 11:54:56 +000040#include "pub_drd_bitmap.h"
bart024a95a2008-04-01 18:27:41 +000041#include "pub_tool_vki.h" // Must be included before pub_tool_libcproc
sewardjaf44c822007-11-25 14:01:38 +000042#include "pub_tool_basics.h"
43#include "pub_tool_debuginfo.h" // VG_(describe_IP)()
44#include "pub_tool_libcassert.h" // tl_assert()
45#include "pub_tool_libcbase.h" // VG_(strcmp)
46#include "pub_tool_libcprint.h" // VG_(printf)
47#include "pub_tool_libcproc.h"
48#include "pub_tool_machine.h"
bart024a95a2008-04-01 18:27:41 +000049#include "pub_tool_mallocfree.h" // VG_(malloc)(), VG_(free)()
sewardjaf44c822007-11-25 14:01:38 +000050#include "pub_tool_options.h" // command line options
bartceded212008-03-26 17:39:52 +000051#include "pub_tool_replacemalloc.h"
bart72b751c2008-03-01 13:44:24 +000052#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
sewardjaf44c822007-11-25 14:01:38 +000053#include "pub_tool_tooliface.h"
sewardj234e5582011-02-09 12:47:23 +000054#include "pub_tool_aspacemgr.h" // VG_(am_is_valid_for_client)
sewardjaf44c822007-11-25 14:01:38 +000055
56
bart1335ecc2009-02-14 16:10:53 +000057/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000058
bart75c1cba2010-08-29 07:20:30 +000059static Bool s_print_stats = False;
60static Bool s_var_info = False;
61static Bool s_show_stack_usage = False;
bartf9427fd2010-08-29 09:19:07 +000062static Bool s_trace_alloc = False;
sewardjaf44c822007-11-25 14:01:38 +000063
64
bart1335ecc2009-02-14 16:10:53 +000065/**
66 * Implement the needs_command_line_options for drd.
67 */
68static Bool DRD_(process_cmd_line_option)(Char* arg)
sewardjaf44c822007-11-25 14:01:38 +000069{
bartbedfd232009-03-26 19:07:15 +000070 int check_stack_accesses = -1;
71 int exclusive_threshold_ms = -1;
bartf98a5692009-05-03 17:17:37 +000072 int first_race_only = -1;
bartbedfd232009-03-26 19:07:15 +000073 int report_signal_unlocked = -1;
74 int segment_merging = -1;
bart8f822af2009-06-08 18:20:42 +000075 int segment_merge_interval = -1;
bartbedfd232009-03-26 19:07:15 +000076 int shared_threshold_ms = -1;
77 int show_confl_seg = -1;
78 int trace_barrier = -1;
79 int trace_clientobj = -1;
80 int trace_cond = -1;
81 int trace_csw = -1;
82 int trace_fork_join = -1;
83 int trace_conflict_set = -1;
bart8f822af2009-06-08 18:20:42 +000084 int trace_conflict_set_bm = -1;
bartbedfd232009-03-26 19:07:15 +000085 int trace_mutex = -1;
86 int trace_rwlock = -1;
87 int trace_segment = -1;
88 int trace_semaphore = -1;
89 int trace_suppression = -1;
90 Char* trace_address = 0;
sewardjaf44c822007-11-25 14:01:38 +000091
bartbedfd232009-03-26 19:07:15 +000092 if VG_BOOL_CLO(arg, "--check-stack-var", check_stack_accesses) {}
bart75c1cba2010-08-29 07:20:30 +000093 else if VG_BOOL_CLO(arg, "--drd-stats", s_print_stats) {}
bartf98a5692009-05-03 17:17:37 +000094 else if VG_BOOL_CLO(arg, "--first-race-only", first_race_only) {}
bart8f822af2009-06-08 18:20:42 +000095 else if VG_BOOL_CLO(arg,"--report-signal-unlocked",report_signal_unlocked)
96 {}
bartbedfd232009-03-26 19:07:15 +000097 else if VG_BOOL_CLO(arg, "--segment-merging", segment_merging) {}
bart8f822af2009-06-08 18:20:42 +000098 else if VG_INT_CLO (arg, "--segment-merging-interval", segment_merge_interval)
99 {}
bartbedfd232009-03-26 19:07:15 +0000100 else if VG_BOOL_CLO(arg, "--show-confl-seg", show_confl_seg) {}
bart75c1cba2010-08-29 07:20:30 +0000101 else if VG_BOOL_CLO(arg, "--show-stack-usage", s_show_stack_usage) {}
bartf9427fd2010-08-29 09:19:07 +0000102 else if VG_BOOL_CLO(arg, "--trace-alloc", s_trace_alloc) {}
bartbedfd232009-03-26 19:07:15 +0000103 else if VG_BOOL_CLO(arg, "--trace-barrier", trace_barrier) {}
104 else if VG_BOOL_CLO(arg, "--trace-clientobj", trace_clientobj) {}
105 else if VG_BOOL_CLO(arg, "--trace-cond", trace_cond) {}
106 else if VG_BOOL_CLO(arg, "--trace-conflict-set", trace_conflict_set) {}
bart8f822af2009-06-08 18:20:42 +0000107 else if VG_BOOL_CLO(arg, "--trace-conflict-set-bm", trace_conflict_set_bm){}
bartbedfd232009-03-26 19:07:15 +0000108 else if VG_BOOL_CLO(arg, "--trace-csw", trace_csw) {}
109 else if VG_BOOL_CLO(arg, "--trace-fork-join", trace_fork_join) {}
110 else if VG_BOOL_CLO(arg, "--trace-mutex", trace_mutex) {}
111 else if VG_BOOL_CLO(arg, "--trace-rwlock", trace_rwlock) {}
112 else if VG_BOOL_CLO(arg, "--trace-segment", trace_segment) {}
113 else if VG_BOOL_CLO(arg, "--trace-semaphore", trace_semaphore) {}
114 else if VG_BOOL_CLO(arg, "--trace-suppr", trace_suppression) {}
bart75c1cba2010-08-29 07:20:30 +0000115 else if VG_BOOL_CLO(arg, "--var-info", s_var_info) {}
bartbedfd232009-03-26 19:07:15 +0000116 else if VG_INT_CLO (arg, "--exclusive-threshold", exclusive_threshold_ms) {}
117 else if VG_INT_CLO (arg, "--shared-threshold", shared_threshold_ms) {}
118 else if VG_STR_CLO (arg, "--trace-addr", trace_address) {}
119 else
120 return VG_(replacement_malloc_process_cmd_line_option)(arg);
sewardjaf44c822007-11-25 14:01:38 +0000121
bartbedfd232009-03-26 19:07:15 +0000122 if (check_stack_accesses != -1)
123 DRD_(set_check_stack_accesses)(check_stack_accesses);
124 if (exclusive_threshold_ms != -1)
125 {
126 DRD_(mutex_set_lock_threshold)(exclusive_threshold_ms);
127 DRD_(rwlock_set_exclusive_threshold)(exclusive_threshold_ms);
128 }
bartf98a5692009-05-03 17:17:37 +0000129 if (first_race_only != -1)
130 {
131 DRD_(set_first_race_only)(first_race_only);
132 }
bartbedfd232009-03-26 19:07:15 +0000133 if (report_signal_unlocked != -1)
134 {
135 DRD_(cond_set_report_signal_unlocked)(report_signal_unlocked);
136 }
137 if (shared_threshold_ms != -1)
138 {
139 DRD_(rwlock_set_shared_threshold)(shared_threshold_ms);
140 }
141 if (segment_merging != -1)
142 DRD_(thread_set_segment_merging)(segment_merging);
bart109d5da2009-06-22 18:06:29 +0000143 if (segment_merge_interval != -1)
bart8f822af2009-06-08 18:20:42 +0000144 DRD_(thread_set_segment_merge_interval)(segment_merge_interval);
bartbedfd232009-03-26 19:07:15 +0000145 if (show_confl_seg != -1)
146 DRD_(set_show_conflicting_segments)(show_confl_seg);
147 if (trace_address)
148 {
149 const Addr addr = VG_(strtoll16)(trace_address, 0);
150 DRD_(start_tracing_address_range)(addr, addr + 1);
151 }
152 if (trace_barrier != -1)
153 DRD_(barrier_set_trace)(trace_barrier);
154 if (trace_clientobj != -1)
155 DRD_(clientobj_set_trace)(trace_clientobj);
156 if (trace_cond != -1)
157 DRD_(cond_set_trace)(trace_cond);
158 if (trace_csw != -1)
159 DRD_(thread_trace_context_switches)(trace_csw);
160 if (trace_fork_join != -1)
161 DRD_(thread_set_trace_fork_join)(trace_fork_join);
162 if (trace_conflict_set != -1)
163 DRD_(thread_trace_conflict_set)(trace_conflict_set);
bart8f822af2009-06-08 18:20:42 +0000164 if (trace_conflict_set_bm != -1)
165 DRD_(thread_trace_conflict_set_bm)(trace_conflict_set_bm);
bartbedfd232009-03-26 19:07:15 +0000166 if (trace_mutex != -1)
167 DRD_(mutex_set_trace)(trace_mutex);
168 if (trace_rwlock != -1)
169 DRD_(rwlock_set_trace)(trace_rwlock);
170 if (trace_segment != -1)
171 DRD_(sg_set_trace)(trace_segment);
172 if (trace_semaphore != -1)
173 DRD_(semaphore_set_trace)(trace_semaphore);
174 if (trace_suppression != -1)
175 DRD_(suppression_set_trace)(trace_suppression);
sewardjaf44c822007-11-25 14:01:38 +0000176
bartbedfd232009-03-26 19:07:15 +0000177 return True;
sewardjaf44c822007-11-25 14:01:38 +0000178}
179
bart1335ecc2009-02-14 16:10:53 +0000180static void DRD_(print_usage)(void)
bartbd7e56e2008-03-31 18:14:12 +0000181{
bartbedfd232009-03-26 19:07:15 +0000182 VG_(printf)(
bart0ffa4832008-04-05 12:57:01 +0000183" --check-stack-var=yes|no Whether or not to report data races on\n"
184" stack variables [no].\n"
bart9d5b7962008-05-14 12:25:00 +0000185" --exclusive-threshold=<n> Print an error message if any mutex or\n"
bart8600c422010-10-25 18:18:54 +0000186" writer lock is held longer than the specified\n"
187" time (in milliseconds) [off].\n"
bart1a3b0b32009-05-03 17:07:34 +0000188" --first-race-only=yes|no Only report the first data race that occurs on\n"
189" a memory location instead of all races [no].\n"
bart46b5fce2008-06-28 13:01:30 +0000190" --report-signal-unlocked=yes|no Whether to report calls to\n"
191" pthread_cond_signal() where the mutex associated\n"
192" with the signal via pthread_cond_wait() is not\n"
193" locked at the time the signal is sent [yes].\n"
bart130463a2008-04-01 17:03:33 +0000194" --segment-merging=yes|no Controls segment merging [yes].\n"
bartbd7e56e2008-03-31 18:14:12 +0000195" Segment merging is an algorithm to limit memory usage of the\n"
196" data race detection algorithm. Disabling segment merging may\n"
197" improve the accuracy of the so-called 'other segments' displayed\n"
198" in race reports but can also trigger an out of memory error.\n"
bart8f822af2009-06-08 18:20:42 +0000199" --segment-merging-interval=<n> Perform segment merging every time n new\n"
200" segments have been created. Default: %d.\n"
bart9d5b7962008-05-14 12:25:00 +0000201" --shared-threshold=<n> Print an error message if a reader lock\n"
bart8600c422010-10-25 18:18:54 +0000202" is held longer than the specified time (in\n"
203" milliseconds) [off]\n"
bart130463a2008-04-01 17:03:33 +0000204" --show-confl-seg=yes|no Show conflicting segments in race reports [yes].\n"
205" --show-stack-usage=yes|no Print stack usage at thread exit time [no].\n"
bartbd7e56e2008-03-31 18:14:12 +0000206"\n"
bartef1b9722008-07-04 15:34:23 +0000207" drd options for monitoring process behavior:\n"
bart952e1a02008-04-06 13:06:36 +0000208" --trace-addr=<address> Trace all load and store activity for the.\n"
bart130463a2008-04-01 17:03:33 +0000209" specified address [off].\n"
bartf9427fd2010-08-29 09:19:07 +0000210" --trace-alloc=yes|no Trace all memory allocations and deallocations\n"" [no].\n"
bart130463a2008-04-01 17:03:33 +0000211" --trace-barrier=yes|no Trace all barrier activity [no].\n"
212" --trace-cond=yes|no Trace all condition variable activity [no].\n"
213" --trace-fork-join=yes|no Trace all thread fork/join activity [no].\n"
214" --trace-mutex=yes|no Trace all mutex activity [no].\n"
215" --trace-rwlock=yes|no Trace all reader-writer lock activity[no].\n"
bart8f822af2009-06-08 18:20:42 +0000216" --trace-semaphore=yes|no Trace all semaphore activity [no].\n",
217DRD_(thread_get_segment_merge_interval)()
bartbedfd232009-03-26 19:07:15 +0000218);
sewardjaf44c822007-11-25 14:01:38 +0000219}
220
bart1335ecc2009-02-14 16:10:53 +0000221static void DRD_(print_debug_usage)(void)
bart31b983d2010-02-21 14:52:59 +0000222{
bartbedfd232009-03-26 19:07:15 +0000223 VG_(printf)(
bart130463a2008-04-01 17:03:33 +0000224" --drd-stats=yes|no Print statistics about DRD activity [no].\n"
225" --trace-clientobj=yes|no Trace all client object activity [no].\n"
226" --trace-csw=yes|no Trace all scheduler context switches [no].\n"
barte73b0aa2008-06-28 07:19:56 +0000227" --trace-conflict-set=yes|no Trace all conflict set updates [no].\n"
bart8f822af2009-06-08 18:20:42 +0000228" --trace-conflict-set-bm=yes|no Trace all conflict set bitmap\n"
229" updates [no]. Note: enabling this option\n"
230" will generate a lot of output !\n"
bart987781d2008-06-27 15:00:07 +0000231" --trace-segment=yes|no Trace segment actions [no].\n"
232" --trace-suppr=yes|no Trace all address suppression actions [no].\n"
bartbedfd232009-03-26 19:07:15 +0000233);
sewardjaf44c822007-11-25 14:01:38 +0000234}
235
236
237//
238// Implements the thread-related core callbacks.
239//
240
sewardjaf44c822007-11-25 14:01:38 +0000241static void drd_pre_mem_read(const CorePart part,
242 const ThreadId tid,
243 Char* const s,
244 const Addr a,
245 const SizeT size)
246{
bartbedfd232009-03-26 19:07:15 +0000247 if (size > 0)
248 {
249 DRD_(trace_load)(a, size);
250 }
sewardjaf44c822007-11-25 14:01:38 +0000251}
252
bart5e85d262008-03-01 10:49:37 +0000253static void drd_pre_mem_read_asciiz(const CorePart part,
254 const ThreadId tid,
255 Char* const s,
256 const Addr a)
257{
bartbedfd232009-03-26 19:07:15 +0000258 const char* p = (void*)a;
259 SizeT size = 0;
bart5e85d262008-03-01 10:49:37 +0000260
sewardj234e5582011-02-09 12:47:23 +0000261 // Don't segfault if the string starts in an obviously stupid
262 // place. Actually we should check the whole string, not just
263 // the start address, but that's too much trouble. At least
264 // checking the first byte is better than nothing. See #255009.
265 if (!VG_(am_is_valid_for_client) (a, 1, VKI_PROT_READ))
266 return;
267
bartbedfd232009-03-26 19:07:15 +0000268 /* Note: the expression '*p' reads client memory and may crash if the */
269 /* client provided an invalid pointer ! */
270 while (*p)
271 {
272 p++;
273 size++;
274 }
bartbedfd232009-03-26 19:07:15 +0000275 if (size > 0)
276 {
277 DRD_(trace_load)(a, size);
278 }
bart5e85d262008-03-01 10:49:37 +0000279}
280
sewardjaf44c822007-11-25 14:01:38 +0000281static void drd_post_mem_write(const CorePart part,
282 const ThreadId tid,
283 const Addr a,
284 const SizeT size)
285{
bartbedfd232009-03-26 19:07:15 +0000286 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
287 if (size > 0)
288 {
289 DRD_(trace_store)(a, size);
290 }
sewardjaf44c822007-11-25 14:01:38 +0000291}
292
bart08865622008-06-06 14:31:36 +0000293static __inline__
bartf9427fd2010-08-29 09:19:07 +0000294void drd_start_using_mem(const Addr a1, const SizeT len,
295 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000296{
barta3003982010-09-08 16:29:17 +0000297 tl_assert(a1 <= a1 + len);
bart5e85d262008-03-01 10:49:37 +0000298
bartf9427fd2010-08-29 09:19:07 +0000299 if (!is_stack_mem && s_trace_alloc)
300 VG_(message)(Vg_UserMsg, "Started using memory range 0x%lx + %ld%s\n",
301 a1, len, DRD_(running_thread_inside_pthread_create)()
302 ? " (inside pthread_create())" : "");
303
bartbedfd232009-03-26 19:07:15 +0000304 if (UNLIKELY(DRD_(any_address_is_traced)()))
305 {
306 DRD_(trace_mem_access)(a1, len, eStart);
307 }
bart31b983d2010-02-21 14:52:59 +0000308
bartdd75cdf2009-07-24 08:20:10 +0000309 if (UNLIKELY(DRD_(running_thread_inside_pthread_create)()))
310 {
311 DRD_(start_suppression)(a1, a1 + len, "pthread_create()");
312 }
sewardjaf44c822007-11-25 14:01:38 +0000313}
314
sewardj7cf4e6b2008-05-01 20:24:26 +0000315static void drd_start_using_mem_w_ecu(const Addr a1,
316 const SizeT len,
317 UInt ec_uniq)
318{
bartf9427fd2010-08-29 09:19:07 +0000319 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000320}
321
322static void drd_start_using_mem_w_tid(const Addr a1,
323 const SizeT len,
324 ThreadId tid)
325{
bartf9427fd2010-08-29 09:19:07 +0000326 drd_start_using_mem(a1, len, False);
sewardj7cf4e6b2008-05-01 20:24:26 +0000327}
328
bart0ffa4832008-04-05 12:57:01 +0000329static __inline__
330void drd_stop_using_mem(const Addr a1, const SizeT len,
331 const Bool is_stack_mem)
sewardjaf44c822007-11-25 14:01:38 +0000332{
bartbedfd232009-03-26 19:07:15 +0000333 const Addr a2 = a1 + len;
bart5e85d262008-03-01 10:49:37 +0000334
barta3003982010-09-08 16:29:17 +0000335 tl_assert(a1 <= a2);
bart5e85d262008-03-01 10:49:37 +0000336
bartbedfd232009-03-26 19:07:15 +0000337 if (UNLIKELY(DRD_(any_address_is_traced)()))
bartbedfd232009-03-26 19:07:15 +0000338 DRD_(trace_mem_access)(a1, len, eEnd);
bartf9427fd2010-08-29 09:19:07 +0000339
340 if (!is_stack_mem && s_trace_alloc)
341 VG_(message)(Vg_UserMsg, "Stopped using memory range 0x%lx + %ld\n",
342 a1, len);
343
bart07595032010-08-29 09:51:06 +0000344 if (!is_stack_mem || DRD_(get_check_stack_accesses)())
bartbedfd232009-03-26 19:07:15 +0000345 {
bart8e0d2c12011-02-04 19:07:11 +0000346 DRD_(thread_stop_using_mem)(a1, a2, False);
bartbedfd232009-03-26 19:07:15 +0000347 DRD_(clientobj_stop_using_mem)(a1, a2);
348 DRD_(suppression_stop_using_mem)(a1, a2);
349 }
bart0ffa4832008-04-05 12:57:01 +0000350}
351
352static __inline__
353void drd_stop_using_nonstack_mem(const Addr a1, const SizeT len)
354{
bartbedfd232009-03-26 19:07:15 +0000355 drd_stop_using_mem(a1, len, False);
sewardjaf44c822007-11-25 14:01:38 +0000356}
357
bart1335ecc2009-02-14 16:10:53 +0000358/**
bartfdaa0182009-03-10 09:25:32 +0000359 * Discard all information DRD has about memory accesses and client objects
360 * in the specified address range.
361 */
362void DRD_(clean_memory)(const Addr a1, const SizeT len)
363{
bartbedfd232009-03-26 19:07:15 +0000364 const Bool is_stack_memory = DRD_(thread_address_on_any_stack)(a1);
365 drd_stop_using_mem(a1, len, is_stack_memory);
bartf9427fd2010-08-29 09:19:07 +0000366 drd_start_using_mem(a1, len, is_stack_memory);
bartfdaa0182009-03-10 09:25:32 +0000367}
368
369/**
bart1335ecc2009-02-14 16:10:53 +0000370 * Suppress data race reports on all addresses contained in .plt and
371 * .got.plt sections inside the address range [ a, a + len [. The data in
372 * these sections is modified by _dl_relocate_object() every time a function
373 * in a shared library is called for the first time. Since the first call
374 * to a function in a shared library can happen from a multithreaded context,
375 * such calls can cause conflicting accesses. See also Ulrich Drepper's
376 * paper "How to Write Shared Libraries" for more information about relocation
377 * (http://people.redhat.com/drepper/dsohowto.pdf).
bartcb2d0072008-05-31 07:55:51 +0000378 */
bart1335ecc2009-02-14 16:10:53 +0000379static void DRD_(suppress_relocation_conflicts)(const Addr a, const SizeT len)
bartcb2d0072008-05-31 07:55:51 +0000380{
bartbedfd232009-03-26 19:07:15 +0000381 const DebugInfo* di;
bartcb2d0072008-05-31 07:55:51 +0000382
383#if 0
bartbedfd232009-03-26 19:07:15 +0000384 VG_(printf)("Evaluating range @ 0x%lx size %ld\n", a, len);
bartcb2d0072008-05-31 07:55:51 +0000385#endif
386
sewardje3f1e592009-07-31 09:41:29 +0000387 for (di = VG_(next_DebugInfo)(0); di; di = VG_(next_DebugInfo)(di))
bartbedfd232009-03-26 19:07:15 +0000388 {
389 Addr avma;
390 SizeT size;
bartcb2d0072008-05-31 07:55:51 +0000391
sewardje3f1e592009-07-31 09:41:29 +0000392 avma = VG_(DebugInfo_get_plt_avma)(di);
393 size = VG_(DebugInfo_get_plt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000394 tl_assert((avma && size) || (avma == 0 && size == 0));
395 if (size > 0)
396 {
bartcb2d0072008-05-31 07:55:51 +0000397#if 0
bartbedfd232009-03-26 19:07:15 +0000398 VG_(printf)("Suppressing .plt @ 0x%lx size %ld\n", avma, size);
bartcb2d0072008-05-31 07:55:51 +0000399#endif
sewardje3f1e592009-07-31 09:41:29 +0000400 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectPLT);
bartbedfd232009-03-26 19:07:15 +0000401 DRD_(start_suppression)(avma, avma + size, ".plt");
402 }
bartcb2d0072008-05-31 07:55:51 +0000403
sewardje3f1e592009-07-31 09:41:29 +0000404 avma = VG_(DebugInfo_get_gotplt_avma)(di);
405 size = VG_(DebugInfo_get_gotplt_size)(di);
bartbedfd232009-03-26 19:07:15 +0000406 tl_assert((avma && size) || (avma == 0 && size == 0));
407 if (size > 0)
408 {
bartcb2d0072008-05-31 07:55:51 +0000409#if 0
bartbedfd232009-03-26 19:07:15 +0000410 VG_(printf)("Suppressing .got.plt @ 0x%lx size %ld\n", avma, size);
bartcb2d0072008-05-31 07:55:51 +0000411#endif
sewardje3f1e592009-07-31 09:41:29 +0000412 tl_assert(VG_(DebugInfo_sect_kind)(NULL, 0, avma) == Vg_SectGOTPLT);
bartbedfd232009-03-26 19:07:15 +0000413 DRD_(start_suppression)(avma, avma + size, ".gotplt");
414 }
415 }
bartcb2d0072008-05-31 07:55:51 +0000416}
417
bart5e85d262008-03-01 10:49:37 +0000418static
419void drd_start_using_mem_w_perms(const Addr a, const SizeT len,
sewardj9c606bd2008-09-18 18:12:50 +0000420 const Bool rr, const Bool ww, const Bool xx,
421 ULong di_handle)
bart5e85d262008-03-01 10:49:37 +0000422{
bartbedfd232009-03-26 19:07:15 +0000423 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartd5765912008-03-16 08:40:55 +0000424
bartf9427fd2010-08-29 09:19:07 +0000425 drd_start_using_mem(a, len, False);
bartcb2d0072008-05-31 07:55:51 +0000426
bartbedfd232009-03-26 19:07:15 +0000427 DRD_(suppress_relocation_conflicts)(a, len);
bart5e85d262008-03-01 10:49:37 +0000428}
429
sewardjaf44c822007-11-25 14:01:38 +0000430/* Called by the core when the stack of a thread grows, to indicate that */
431/* the addresses in range [ a, a + len [ may now be used by the client. */
432/* Assumption: stacks grow downward. */
bart08865622008-06-06 14:31:36 +0000433static __inline__
434void drd_start_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000435{
bartbedfd232009-03-26 19:07:15 +0000436 DRD_(thread_set_stack_min)(DRD_(thread_get_running_tid)(),
437 a - VG_STACK_REDZONE_SZB);
bart31b983d2010-02-21 14:52:59 +0000438 drd_start_using_mem(a - VG_STACK_REDZONE_SZB,
bartf9427fd2010-08-29 09:19:07 +0000439 len + VG_STACK_REDZONE_SZB,
440 True);
sewardjaf44c822007-11-25 14:01:38 +0000441}
442
443/* Called by the core when the stack of a thread shrinks, to indicate that */
444/* the addresses [ a, a + len [ are no longer accessible for the client. */
445/* Assumption: stacks grow downward. */
bart08865622008-06-06 14:31:36 +0000446static __inline__
447void drd_stop_using_mem_stack(const Addr a, const SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000448{
bartbedfd232009-03-26 19:07:15 +0000449 DRD_(thread_set_stack_min)(DRD_(thread_get_running_tid)(),
450 a + len - VG_STACK_REDZONE_SZB);
451 drd_stop_using_mem(a - VG_STACK_REDZONE_SZB, len + VG_STACK_REDZONE_SZB,
452 True);
sewardjaf44c822007-11-25 14:01:38 +0000453}
454
bart68a8afa2010-09-02 14:50:41 +0000455static
456Bool on_alt_stack(const Addr a)
457{
458 ThreadId vg_tid;
459 Addr alt_min;
460 SizeT alt_size;
461
462 vg_tid = VG_(get_running_tid)();
463 alt_min = VG_(thread_get_altstack_min)(vg_tid);
464 alt_size = VG_(thread_get_altstack_size)(vg_tid);
465 return (SizeT)(a - alt_min) < alt_size;
466}
467
468static
469void drd_start_using_mem_alt_stack(const Addr a, const SizeT len)
470{
471 if (!on_alt_stack(a))
472 drd_start_using_mem_stack(a, len);
473}
474
475static
476void drd_stop_using_mem_alt_stack(const Addr a, const SizeT len)
477{
478 if (!on_alt_stack(a))
479 drd_stop_using_mem_stack(a, len);
480}
481
482/**
483 * Callback function invoked by the Valgrind core before a signal is delivered.
484 */
485static
486void drd_pre_deliver_signal(const ThreadId vg_tid, const Int sigNo,
487 const Bool alt_stack)
488{
489 DrdThreadId drd_tid;
490
491 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
492 DRD_(thread_set_on_alt_stack)(drd_tid, alt_stack);
493 if (alt_stack)
494 {
495 /*
496 * As soon a signal handler has been invoked on the alternate stack,
497 * switch to stack memory handling functions that can handle the
498 * alternate stack.
499 */
500 VG_(track_new_mem_stack)(drd_start_using_mem_alt_stack);
501 VG_(track_die_mem_stack)(drd_stop_using_mem_alt_stack);
502 }
503}
504
505/**
506 * Callback function invoked by the Valgrind core after a signal is delivered,
507 * at least if the signal handler did not longjmp().
508 */
509static
510void drd_post_deliver_signal(const ThreadId vg_tid, const Int sigNo)
511{
512 DrdThreadId drd_tid;
513
514 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
515 DRD_(thread_set_on_alt_stack)(drd_tid, False);
516 if (DRD_(thread_get_threads_on_alt_stack)() == 0)
517 {
518 VG_(track_new_mem_stack)(drd_start_using_mem_stack);
519 VG_(track_die_mem_stack)(drd_stop_using_mem_stack);
520 }
521}
522
bartbedfd232009-03-26 19:07:15 +0000523/**
524 * Callback function called by the Valgrind core before a stack area is
525 * being used by a signal handler.
526 *
527 * @param[in] a Start of address range.
528 * @param[in] len Address range length.
529 * @param[in] tid Valgrind thread ID for whom the signal frame is being
530 * constructed.
531 */
532static void drd_start_using_mem_stack_signal(const Addr a, const SizeT len,
533 ThreadId tid)
sewardjaf44c822007-11-25 14:01:38 +0000534{
bartbedfd232009-03-26 19:07:15 +0000535 DRD_(thread_set_vg_running_tid)(VG_(get_running_tid)());
bartf9427fd2010-08-29 09:19:07 +0000536 drd_start_using_mem(a, len, True);
sewardjaf44c822007-11-25 14:01:38 +0000537}
538
bart5e85d262008-03-01 10:49:37 +0000539static void drd_stop_using_mem_stack_signal(Addr a, SizeT len)
sewardjaf44c822007-11-25 14:01:38 +0000540{
bartbedfd232009-03-26 19:07:15 +0000541 drd_stop_using_mem(a, len, True);
sewardjaf44c822007-11-25 14:01:38 +0000542}
543
544static
545void drd_pre_thread_create(const ThreadId creator, const ThreadId created)
546{
bartbedfd232009-03-26 19:07:15 +0000547 const DrdThreadId drd_creator = DRD_(VgThreadIdToDrdThreadId)(creator);
548 tl_assert(created != VG_INVALID_THREADID);
549 DRD_(thread_pre_create)(drd_creator, created);
550 if (DRD_(IsValidDrdThreadId)(drd_creator))
551 {
552 DRD_(thread_new_segment)(drd_creator);
553 }
554 if (DRD_(thread_get_trace_fork_join)())
555 {
556 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000557 "drd_pre_thread_create creator = %d, created = %d\n",
558 drd_creator, created);
bartbedfd232009-03-26 19:07:15 +0000559 }
sewardjaf44c822007-11-25 14:01:38 +0000560}
561
562/* Called by Valgrind's core before any loads or stores are performed on */
563/* the context of thread "created". At startup, this function is called */
564/* with arguments (0,1). */
565static
bart0ffa4832008-04-05 12:57:01 +0000566void drd_post_thread_create(const ThreadId vg_created)
sewardjaf44c822007-11-25 14:01:38 +0000567{
bartbedfd232009-03-26 19:07:15 +0000568 DrdThreadId drd_created;
bart0ffa4832008-04-05 12:57:01 +0000569
bartbedfd232009-03-26 19:07:15 +0000570 tl_assert(vg_created != VG_INVALID_THREADID);
bart0ffa4832008-04-05 12:57:01 +0000571
bartbedfd232009-03-26 19:07:15 +0000572 drd_created = DRD_(thread_post_create)(vg_created);
573 if (DRD_(thread_get_trace_fork_join)())
574 {
575 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000576 "drd_post_thread_create created = %d\n",
577 drd_created);
bartbedfd232009-03-26 19:07:15 +0000578 }
579 if (! DRD_(get_check_stack_accesses)())
580 {
581 DRD_(start_suppression)(DRD_(thread_get_stack_max)(drd_created)
582 - DRD_(thread_get_stack_size)(drd_created),
583 DRD_(thread_get_stack_max)(drd_created),
584 "stack");
585 }
sewardjaf44c822007-11-25 14:01:38 +0000586}
587
sewardjaf44c822007-11-25 14:01:38 +0000588/* Called after a thread has performed its last memory access. */
bartd43f8d32008-03-16 17:29:20 +0000589static void drd_thread_finished(ThreadId vg_tid)
sewardjaf44c822007-11-25 14:01:38 +0000590{
bartbedfd232009-03-26 19:07:15 +0000591 DrdThreadId drd_tid;
sewardj85642922008-01-14 11:54:56 +0000592
bartbedfd232009-03-26 19:07:15 +0000593 tl_assert(VG_(get_running_tid)() == vg_tid);
sewardj85642922008-01-14 11:54:56 +0000594
bartbedfd232009-03-26 19:07:15 +0000595 drd_tid = DRD_(VgThreadIdToDrdThreadId)(vg_tid);
596 if (DRD_(thread_get_trace_fork_join)())
597 {
598 VG_(message)(Vg_DebugMsg,
bart63c92ea2009-07-19 17:53:56 +0000599 "drd_thread_finished tid = %d%s\n",
bartbedfd232009-03-26 19:07:15 +0000600 drd_tid,
601 DRD_(thread_get_joinable)(drd_tid)
602 ? ""
603 : " (which is a detached thread)");
604 }
bart75c1cba2010-08-29 07:20:30 +0000605 if (s_show_stack_usage)
bartbedfd232009-03-26 19:07:15 +0000606 {
607 const SizeT stack_size = DRD_(thread_get_stack_size)(drd_tid);
608 const SizeT used_stack
609 = (DRD_(thread_get_stack_max)(drd_tid)
610 - DRD_(thread_get_stack_min_min)(drd_tid));
611 VG_(message)(Vg_UserMsg,
bart63c92ea2009-07-19 17:53:56 +0000612 "thread %d%s finished and used %ld bytes out of %ld"
sewardj1e29ebc2009-07-15 14:49:17 +0000613 " on its stack. Margin: %ld bytes.\n",
bartbedfd232009-03-26 19:07:15 +0000614 drd_tid,
615 DRD_(thread_get_joinable)(drd_tid)
616 ? ""
617 : " (which is a detached thread)",
618 used_stack,
619 stack_size,
620 stack_size - used_stack);
sewardjaf44c822007-11-25 14:01:38 +0000621
bartbedfd232009-03-26 19:07:15 +0000622 }
623 drd_stop_using_mem(DRD_(thread_get_stack_min)(drd_tid),
624 DRD_(thread_get_stack_max)(drd_tid)
625 - DRD_(thread_get_stack_min)(drd_tid),
626 True);
bartd45d9952009-05-31 18:53:54 +0000627 DRD_(thread_set_record_loads)(drd_tid, False);
628 DRD_(thread_set_record_stores)(drd_tid, False);
bartbedfd232009-03-26 19:07:15 +0000629 DRD_(thread_finished)(drd_tid);
sewardjaf44c822007-11-25 14:01:38 +0000630}
631
bart5c7e6b62011-02-03 17:47:50 +0000632/*
633 * Called immediately after fork for the child process only. 'tid' is the
634 * only surviving thread in the child process. Cleans up thread state.
635 * See also http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html for a detailed discussion of using fork() in combination with mutexes.
636 */
637static
638void drd__atfork_child(ThreadId tid)
639{
640 DRD_(drd_thread_atfork_child)(tid);
641}
642
643
sewardjaf44c822007-11-25 14:01:38 +0000644//
645// Implementation of the tool interface.
646//
647
bart1335ecc2009-02-14 16:10:53 +0000648static void DRD_(post_clo_init)(void)
sewardjdcbb8d32007-11-26 21:34:30 +0000649{
bart0c6bf352009-07-25 14:03:53 +0000650#if defined(VGO_linux) || defined(VGO_darwin)
bartc6ef4af2009-07-23 10:10:30 +0000651 /* fine */
bartc6ef4af2009-07-23 10:10:30 +0000652#else
653 VG_(printf)("\nWARNING: DRD has not yet been tested on this operating system.\n\n");
sewardjdcbb8d32007-11-26 21:34:30 +0000654# endif
bart95761b52008-03-29 08:34:03 +0000655
bart75c1cba2010-08-29 07:20:30 +0000656 if (s_var_info)
bartbedfd232009-03-26 19:07:15 +0000657 {
658 VG_(needs_var_info)();
659 }
sewardjdcbb8d32007-11-26 21:34:30 +0000660}
sewardjaf44c822007-11-25 14:01:38 +0000661
sewardjaf44c822007-11-25 14:01:38 +0000662static void drd_start_client_code(const ThreadId tid, const ULong bbs_done)
663{
bartbedfd232009-03-26 19:07:15 +0000664 tl_assert(tid == VG_(get_running_tid)());
665 DRD_(thread_set_vg_running_tid)(tid);
sewardjaf44c822007-11-25 14:01:38 +0000666}
667
bart1335ecc2009-02-14 16:10:53 +0000668static void DRD_(fini)(Int exitcode)
sewardjaf44c822007-11-25 14:01:38 +0000669{
bartbedfd232009-03-26 19:07:15 +0000670 // thread_print_all();
sewardj2d9e8742009-08-07 15:46:56 +0000671 if (VG_(clo_verbosity) == 1 && !VG_(clo_xml)) {
bart31b983d2010-02-21 14:52:59 +0000672 VG_(message)(Vg_UserMsg,
sewardj2d9e8742009-08-07 15:46:56 +0000673 "For counts of detected and suppressed errors, "
674 "rerun with: -v\n");
675 }
676
bart75c1cba2010-08-29 07:20:30 +0000677 if (VG_(clo_stats) || s_print_stats)
bartbedfd232009-03-26 19:07:15 +0000678 {
barte5214662009-06-21 11:51:23 +0000679 ULong pu = DRD_(thread_get_update_conflict_set_count)();
680 ULong pu_seg_cr = DRD_(thread_get_update_conflict_set_new_sg_count)();
681 ULong pu_mtx_cv = DRD_(thread_get_update_conflict_set_sync_count)();
682 ULong pu_join = DRD_(thread_get_update_conflict_set_join_count)();
683
bartbedfd232009-03-26 19:07:15 +0000684 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000685 " thread: %lld context switches.\n",
bart54803fe2009-06-21 09:26:27 +0000686 DRD_(thread_get_context_switch_count)());
bartbedfd232009-03-26 19:07:15 +0000687 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000688 "confl set: %lld full updates and %lld partial updates;\n",
bart54803fe2009-06-21 09:26:27 +0000689 DRD_(thread_get_compute_conflict_set_count)(),
barte5214662009-06-21 11:51:23 +0000690 pu);
bartbedfd232009-03-26 19:07:15 +0000691 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000692 " %lld partial updates during segment creation,\n",
barte5214662009-06-21 11:51:23 +0000693 pu_seg_cr);
694 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000695 " %lld because of mutex/sema/cond.var. operations,\n",
barte5214662009-06-21 11:51:23 +0000696 pu_mtx_cv);
697 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000698 " %lld because of barrier/rwlock operations and\n",
barte5214662009-06-21 11:51:23 +0000699 pu - pu_seg_cr - pu_mtx_cv - pu_join);
700 VG_(message)(Vg_UserMsg,
701 " %lld partial updates because of thread join"
sewardj1e29ebc2009-07-15 14:49:17 +0000702 " operations.\n",
barte5214662009-06-21 11:51:23 +0000703 pu_join);
704 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000705 " segments: created %lld segments, max %lld alive,\n",
bart9dedafe2009-06-21 18:09:02 +0000706 DRD_(sg_get_segments_created_count)(),
707 DRD_(sg_get_max_segments_alive_count)());
bartbedfd232009-03-26 19:07:15 +0000708 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000709 " %lld discard points and %lld merges.\n",
bart9dedafe2009-06-21 18:09:02 +0000710 DRD_(thread_get_discard_ordered_segments_count)(),
bart1a3b0b32009-05-03 17:07:34 +0000711 DRD_(sg_get_segment_merge_count)());
712 VG_(message)(Vg_UserMsg,
bart54803fe2009-06-21 09:26:27 +0000713 "segmnt cr: %lld mutex, %lld rwlock, %lld semaphore and"
sewardj1e29ebc2009-07-15 14:49:17 +0000714 " %lld barrier.\n",
bartbedfd232009-03-26 19:07:15 +0000715 DRD_(get_mutex_segment_creation_count)(),
716 DRD_(get_rwlock_segment_creation_count)(),
717 DRD_(get_semaphore_segment_creation_count)(),
718 DRD_(get_barrier_segment_creation_count)());
719 VG_(message)(Vg_UserMsg,
bart9dedafe2009-06-21 18:09:02 +0000720 " bitmaps: %lld level one"
sewardj1e29ebc2009-07-15 14:49:17 +0000721 " and %lld level two bitmaps were allocated.\n",
bartbedfd232009-03-26 19:07:15 +0000722 DRD_(bm_get_bitmap_creation_count)(),
bartbedfd232009-03-26 19:07:15 +0000723 DRD_(bm_get_bitmap2_creation_count)());
724 VG_(message)(Vg_UserMsg,
sewardj1e29ebc2009-07-15 14:49:17 +0000725 " mutex: %lld non-recursive lock/unlock events.\n",
bartbedfd232009-03-26 19:07:15 +0000726 DRD_(get_mutex_lock_count)());
727 DRD_(print_malloc_stats)();
728 }
sewardjaf44c822007-11-25 14:01:38 +0000729}
730
sewardjaf44c822007-11-25 14:01:38 +0000731static
732void drd_pre_clo_init(void)
733{
njnf76d27a2009-05-28 01:53:07 +0000734 // Basic tool stuff.
bartbedfd232009-03-26 19:07:15 +0000735 VG_(details_name) ("drd");
736 VG_(details_version) (NULL);
737 VG_(details_description) ("a thread error detector");
sewardj9eecbbb2010-05-03 21:37:12 +0000738 VG_(details_copyright_author)("Copyright (C) 2006-2010, and GNU GPL'd,"
bartbedfd232009-03-26 19:07:15 +0000739 " by Bart Van Assche.");
740 VG_(details_bug_reports_to) (VG_BUGS_TO);
sewardjaf44c822007-11-25 14:01:38 +0000741
bartbedfd232009-03-26 19:07:15 +0000742 VG_(basic_tool_funcs) (DRD_(post_clo_init),
743 DRD_(instrument),
744 DRD_(fini));
sewardjaf44c822007-11-25 14:01:38 +0000745
bartbedfd232009-03-26 19:07:15 +0000746 // Command line stuff.
747 VG_(needs_command_line_options)(DRD_(process_cmd_line_option),
748 DRD_(print_usage),
749 DRD_(print_debug_usage));
sewardjaf44c822007-11-25 14:01:38 +0000750
bartbedfd232009-03-26 19:07:15 +0000751 // Error handling.
752 DRD_(register_error_handlers)();
sewardjaf44c822007-11-25 14:01:38 +0000753
bartbedfd232009-03-26 19:07:15 +0000754 // Core event tracking.
755 VG_(track_pre_mem_read) (drd_pre_mem_read);
756 VG_(track_pre_mem_read_asciiz) (drd_pre_mem_read_asciiz);
757 VG_(track_post_mem_write) (drd_post_mem_write);
758 VG_(track_new_mem_brk) (drd_start_using_mem_w_tid);
759 VG_(track_new_mem_mmap) (drd_start_using_mem_w_perms);
760 VG_(track_new_mem_stack) (drd_start_using_mem_stack);
761 VG_(track_new_mem_stack_signal) (drd_start_using_mem_stack_signal);
762 VG_(track_new_mem_startup) (drd_start_using_mem_w_perms);
763 VG_(track_die_mem_brk) (drd_stop_using_nonstack_mem);
764 VG_(track_die_mem_munmap) (drd_stop_using_nonstack_mem);
765 VG_(track_die_mem_stack) (drd_stop_using_mem_stack);
766 VG_(track_die_mem_stack_signal) (drd_stop_using_mem_stack_signal);
bart68a8afa2010-09-02 14:50:41 +0000767 VG_(track_pre_deliver_signal) (drd_pre_deliver_signal);
768 VG_(track_post_deliver_signal) (drd_post_deliver_signal);
bartbedfd232009-03-26 19:07:15 +0000769 VG_(track_start_client_code) (drd_start_client_code);
770 VG_(track_pre_thread_ll_create) (drd_pre_thread_create);
771 VG_(track_pre_thread_first_insn)(drd_post_thread_create);
772 VG_(track_pre_thread_ll_exit) (drd_thread_finished);
bart5c7e6b62011-02-03 17:47:50 +0000773 VG_(atfork) (NULL/*pre*/, NULL/*parent*/,
774 drd__atfork_child/*child*/);
sewardjaf44c822007-11-25 14:01:38 +0000775
bartbedfd232009-03-26 19:07:15 +0000776 // Other stuff.
777 DRD_(register_malloc_wrappers)(drd_start_using_mem_w_ecu,
778 drd_stop_using_nonstack_mem);
sewardjaf44c822007-11-25 14:01:38 +0000779
bartbedfd232009-03-26 19:07:15 +0000780 DRD_(clientreq_init)();
sewardjaf44c822007-11-25 14:01:38 +0000781
bartbedfd232009-03-26 19:07:15 +0000782 DRD_(suppression_init)();
bart4bb53d82008-02-28 19:06:34 +0000783
bartbedfd232009-03-26 19:07:15 +0000784 DRD_(clientobj_init)();
barte5e0efa2009-06-24 18:35:02 +0000785
786 {
787 Char* const smi = VG_(getenv)("DRD_SEGMENT_MERGING_INTERVAL");
788 if (smi)
789 DRD_(thread_set_segment_merge_interval)(VG_(strtoll10)(smi, NULL));
790 }
sewardjaf44c822007-11-25 14:01:38 +0000791}
792
793
794VG_DETERMINE_INTERFACE_VERSION(drd_pre_clo_init)