blob: 6e7cc089208fc995a8d57572552abeffe361f140 [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
2 This file is part of drd, a data race detector.
3
sewardj85642922008-01-14 11:54:56 +00004 Copyright (C) 2006-2008 Bart Van Assche
sewardjaf44c822007-11-25 14:01:38 +00005 bart.vanassche@gmail.com
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
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{
bart1335ecc2009-02-14 16:10:53 +000054 tl_assert(DRD_(s_suppressed) == 0);
55 DRD_(s_suppressed) = 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{
bart1335ecc2009-02-14 16:10:53 +000062 if (DRD_(s_trace_suppression))
sewardjaf44c822007-11-25 14:01:38 +000063 {
64 VG_(message)(Vg_DebugMsg, "start suppression of 0x%lx sz %ld (%s)",
65 a1, a2 - a1, reason);
66 }
67
68 tl_assert(a1 < a2);
bartd43f8d32008-03-16 17:29:20 +000069 // tl_assert(! drd_is_any_suppressed(a1, a2));
bart1335ecc2009-02-14 16:10:53 +000070 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{
bart1335ecc2009-02-14 16:10:53 +000075 if (DRD_(s_trace_suppression))
sewardjaf44c822007-11-25 14:01:38 +000076 {
77 VG_(message)(Vg_DebugMsg, "finish suppression of 0x%lx sz %ld",
78 a1, a2 - a1);
sewardj85642922008-01-14 11:54:56 +000079 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
sewardjaf44c822007-11-25 14:01:38 +000080 }
81
82 tl_assert(a1 < a2);
bart1335ecc2009-02-14 16:10:53 +000083 if (! DRD_(is_suppressed)(a1, a2))
sewardjaf44c822007-11-25 14:01:38 +000084 {
bartb78312c2008-02-29 11:00:17 +000085 VG_(message)(Vg_DebugMsg, "?? [0x%lx,0x%lx[ not suppressed ??", a1, a2);
sewardj85642922008-01-14 11:54:56 +000086 VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
sewardjaf44c822007-11-25 14:01:38 +000087 tl_assert(False);
88 }
bart1335ecc2009-02-14 16:10:53 +000089 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{
bart1335ecc2009-02-14 16:10:53 +000099 return 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{
bart1335ecc2009-02-14 16:10:53 +0000109 return 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{
114 tl_assert(a1 < a2);
115
bart1335ecc2009-02-14 16:10:53 +0000116 bm_access_range_load(DRD_(s_suppressed), a1, a2);
117 if (! DRD_(g_any_address_traced))
bart005dc972008-03-29 14:42:59 +0000118 {
bart1335ecc2009-02-14 16:10:53 +0000119 DRD_(g_any_address_traced) = True;
bart005dc972008-03-29 14:42:59 +0000120 }
121}
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{
125 tl_assert(a1 < a2);
126
bart1335ecc2009-02-14 16:10:53 +0000127 bm_clear_load(DRD_(s_suppressed), a1, a2);
128 if (DRD_(g_any_address_traced))
bart005dc972008-03-29 14:42:59 +0000129 {
bart1335ecc2009-02-14 16:10:53 +0000130 DRD_(g_any_address_traced)
131 = bm_has_any_load(DRD_(s_suppressed), 0, ~(Addr)0);
bart005dc972008-03-29 14:42:59 +0000132 }
133}
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{
bart1335ecc2009-02-14 16:10:53 +0000137 return 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{
bart1335ecc2009-02-14 16:10:53 +0000142 if (DRD_(s_trace_suppression))
sewardjaf44c822007-11-25 14:01:38 +0000143 {
144 Addr b;
145 for (b = a1; b < a2; b++)
146 {
bart1335ecc2009-02-14 16:10:53 +0000147 if (bm_has_1(DRD_(s_suppressed), b, eStore))
sewardjaf44c822007-11-25 14:01:38 +0000148 {
149 VG_(message)(Vg_DebugMsg,
150 "stop_using_mem(0x%lx, %ld) finish suppression of 0x%lx",
151 a1, a2 - a1, b);
sewardjaf44c822007-11-25 14:01:38 +0000152 }
153 }
154 }
155 tl_assert(a1);
156 tl_assert(a1 < a2);
bart1335ecc2009-02-14 16:10:53 +0000157 bm_clear(DRD_(s_suppressed), a1, a2);
sewardjaf44c822007-11-25 14:01:38 +0000158}