blob: da01f15996a56e4aa4e47dade043809d7dd2890a [file] [log] [blame]
bartbedfd232009-03-26 19:07:15 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardjaf44c822007-11-25 14:01:38 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00004
bart86562bd2009-02-16 19:43:56 +00005 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
sewardjaf44c822007-11-25 14:01:38 +00006
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
26#include "drd_suppression.h"
sewardjaf44c822007-11-25 14:01:38 +000027#include "pub_drd_bitmap.h"
sewardj85642922008-01-14 11:54:56 +000028#include "pub_tool_libcassert.h" // tl_assert()
sewardjaf44c822007-11-25 14:01:38 +000029#include "pub_tool_stacktrace.h" // VG_(get_and_pp_StackTrace)()
30#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
sewardj85642922008-01-14 11:54:56 +000031#include "pub_tool_libcprint.h" // Vg_DebugMsg
sewardjaf44c822007-11-25 14:01:38 +000032
33
bart1335ecc2009-02-14 16:10:53 +000034/* Global variables. */
sewardjaf44c822007-11-25 14:01:38 +000035
bart1335ecc2009-02-14 16:10:53 +000036Bool DRD_(g_any_address_traced) = False;
sewardjaf44c822007-11-25 14:01:38 +000037
38
bart1335ecc2009-02-14 16:10:53 +000039/* Local variables. */
sewardjaf44c822007-11-25 14:01:38 +000040
bart1335ecc2009-02-14 16:10:53 +000041static struct bitmap* DRD_(s_suppressed);
42static Bool DRD_(s_trace_suppression);
43
44
45/* Function definitions. */
46
47void DRD_(suppression_set_trace)(const Bool trace_suppression)
sewardjaf44c822007-11-25 14:01:38 +000048{
bart1335ecc2009-02-14 16:10:53 +000049 DRD_(s_trace_suppression) = trace_suppression;
sewardjaf44c822007-11-25 14:01:38 +000050}
51
bart1335ecc2009-02-14 16:10:53 +000052void DRD_(suppression_init)(void)
sewardjaf44c822007-11-25 14:01:38 +000053{
bartbedfd232009-03-26 19:07:15 +000054 tl_assert(DRD_(s_suppressed) == 0);
55 DRD_(s_suppressed) = DRD_(bm_new)();
56 tl_assert(DRD_(s_suppressed));
sewardjaf44c822007-11-25 14:01:38 +000057}
58
bart1335ecc2009-02-14 16:10:53 +000059void DRD_(start_suppression)(const Addr a1, const Addr a2,
60 const char* const reason)
sewardjaf44c822007-11-25 14:01:38 +000061{
bartbedfd232009-03-26 19:07:15 +000062 if (DRD_(s_trace_suppression))
63 {
sewardj1e29ebc2009-07-15 14:49:17 +000064 VG_(message)(Vg_DebugMsg, "start suppression of 0x%lx sz %ld (%s)\n",
bartbedfd232009-03-26 19:07:15 +000065 a1, a2 - a1, reason);
66 }
sewardjaf44c822007-11-25 14:01:38 +000067
bartbedfd232009-03-26 19:07:15 +000068 tl_assert(a1 < a2);
69 // tl_assert(! drd_is_any_suppressed(a1, a2));
70 DRD_(bm_access_range_store)(DRD_(s_suppressed), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +000071}
72
bart1335ecc2009-02-14 16:10:53 +000073void DRD_(finish_suppression)(const Addr a1, const Addr a2)
sewardjaf44c822007-11-25 14:01:38 +000074{
bartbedfd232009-03-26 19:07:15 +000075 if (DRD_(s_trace_suppression))
76 {
sewardj1e29ebc2009-07-15 14:49:17 +000077 VG_(message)(Vg_DebugMsg, "finish suppression of 0x%lx sz %ld\n",
bartbedfd232009-03-26 19:07:15 +000078 a1, a2 - a1);
79 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
80 }
sewardjaf44c822007-11-25 14:01:38 +000081
bartbedfd232009-03-26 19:07:15 +000082 tl_assert(a1 < a2);
83 if (! DRD_(is_suppressed)(a1, a2))
84 {
sewardj1e29ebc2009-07-15 14:49:17 +000085 VG_(message)(Vg_DebugMsg, "?? [0x%lx,0x%lx[ not suppressed ??\n", a1, a2);
bartbedfd232009-03-26 19:07:15 +000086 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
87 tl_assert(False);
88 }
89 DRD_(bm_clear_store)(DRD_(s_suppressed), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +000090}
91
92/**
93 * Return true if data race detection suppression has been requested for all
94 * bytes in the range a1 .. a2 - 1 inclusive. Return false in case the range
95 * is only partially suppressed or not suppressed at all.
96 */
bart1335ecc2009-02-14 16:10:53 +000097Bool DRD_(is_suppressed)(const Addr a1, const Addr a2)
sewardjaf44c822007-11-25 14:01:38 +000098{
bartbedfd232009-03-26 19:07:15 +000099 return DRD_(bm_has)(DRD_(s_suppressed), a1, a2, eStore);
sewardjaf44c822007-11-25 14:01:38 +0000100}
101
102/**
103 * Return true if data race detection suppression has been requested for any
104 * of the bytes in the range a1 .. a2 - 1 inclusive. Return false in case none
105 * of the bytes in the specified range is suppressed.
106 */
bart1335ecc2009-02-14 16:10:53 +0000107Bool DRD_(is_any_suppressed)(const Addr a1, const Addr a2)
sewardjaf44c822007-11-25 14:01:38 +0000108{
bartbedfd232009-03-26 19:07:15 +0000109 return DRD_(bm_has_any_store)(DRD_(s_suppressed), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +0000110}
111
bart1335ecc2009-02-14 16:10:53 +0000112void DRD_(start_tracing_address_range)(const Addr a1, const Addr a2)
bart005dc972008-03-29 14:42:59 +0000113{
bartbedfd232009-03-26 19:07:15 +0000114 tl_assert(a1 < a2);
bart005dc972008-03-29 14:42:59 +0000115
bartbedfd232009-03-26 19:07:15 +0000116 DRD_(bm_access_range_load)(DRD_(s_suppressed), a1, a2);
117 if (! DRD_(g_any_address_traced))
118 {
119 DRD_(g_any_address_traced) = True;
120 }
bart005dc972008-03-29 14:42:59 +0000121}
122
bart1335ecc2009-02-14 16:10:53 +0000123void DRD_(stop_tracing_address_range)(const Addr a1, const Addr a2)
bart005dc972008-03-29 14:42:59 +0000124{
bartbedfd232009-03-26 19:07:15 +0000125 tl_assert(a1 < a2);
bart005dc972008-03-29 14:42:59 +0000126
bartbedfd232009-03-26 19:07:15 +0000127 DRD_(bm_clear_load)(DRD_(s_suppressed), a1, a2);
128 if (DRD_(g_any_address_traced))
129 {
130 DRD_(g_any_address_traced)
131 = DRD_(bm_has_any_load)(DRD_(s_suppressed), 0, ~(Addr)0);
132 }
bart005dc972008-03-29 14:42:59 +0000133}
134
bart1335ecc2009-02-14 16:10:53 +0000135Bool DRD_(is_any_traced)(const Addr a1, const Addr a2)
bart005dc972008-03-29 14:42:59 +0000136{
bartbedfd232009-03-26 19:07:15 +0000137 return DRD_(bm_has_any_load)(DRD_(s_suppressed), a1, a2);
bart005dc972008-03-29 14:42:59 +0000138}
139
bart1335ecc2009-02-14 16:10:53 +0000140void DRD_(suppression_stop_using_mem)(const Addr a1, const Addr a2)
sewardjaf44c822007-11-25 14:01:38 +0000141{
bartbedfd232009-03-26 19:07:15 +0000142 if (DRD_(s_trace_suppression))
143 {
144 Addr b;
145 for (b = a1; b < a2; b++)
sewardjaf44c822007-11-25 14:01:38 +0000146 {
bartbedfd232009-03-26 19:07:15 +0000147 if (DRD_(bm_has_1)(DRD_(s_suppressed), b, eStore))
148 {
149 VG_(message)(Vg_DebugMsg,
150 "stop_using_mem(0x%lx, %ld) finish suppression of"
sewardj1e29ebc2009-07-15 14:49:17 +0000151 " 0x%lx\n", a1, a2 - a1, b);
bartbedfd232009-03-26 19:07:15 +0000152 }
sewardjaf44c822007-11-25 14:01:38 +0000153 }
bartbedfd232009-03-26 19:07:15 +0000154 }
155 tl_assert(a1);
156 tl_assert(a1 < a2);
157 DRD_(bm_clear)(DRD_(s_suppressed), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +0000158}