bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 1 | /* -*- mode: C; c-basic-offset: 3; -*- */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 2 | /* |
bart | 86562bd | 2009-02-16 19:43:56 +0000 | [diff] [blame] | 3 | This file is part of drd, a thread error detector. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 4 | |
sewardj | 9eecbbb | 2010-05-03 21:37:12 +0000 | [diff] [blame] | 5 | Copyright (C) 2006-2010 Bart Van Assche <bart.vanassche@gmail.com>. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 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" |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 27 | #include "pub_drd_bitmap.h" |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 28 | #include "pub_tool_libcassert.h" // tl_assert() |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 29 | #include "pub_tool_stacktrace.h" // VG_(get_and_pp_StackTrace)() |
| 30 | #include "pub_tool_threadstate.h" // VG_(get_running_tid)() |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 31 | #include "pub_tool_libcprint.h" // Vg_DebugMsg |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 32 | |
| 33 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 34 | /* Global variables. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 35 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 36 | Bool DRD_(g_any_address_traced) = False; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 37 | |
| 38 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 39 | /* Local variables. */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 40 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 41 | static struct bitmap* DRD_(s_suppressed); |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 42 | static struct bitmap* DRD_(s_traced); |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 43 | static Bool DRD_(s_trace_suppression); |
| 44 | |
| 45 | |
| 46 | /* Function definitions. */ |
| 47 | |
| 48 | void DRD_(suppression_set_trace)(const Bool trace_suppression) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 49 | { |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 50 | DRD_(s_trace_suppression) = trace_suppression; |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 51 | } |
| 52 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 53 | void DRD_(suppression_init)(void) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 54 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 55 | tl_assert(DRD_(s_suppressed) == 0); |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 56 | tl_assert(DRD_(s_traced) == 0); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 57 | DRD_(s_suppressed) = DRD_(bm_new)(); |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 58 | DRD_(s_traced) = DRD_(bm_new)(); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 59 | tl_assert(DRD_(s_suppressed)); |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 60 | tl_assert(DRD_(s_traced)); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 61 | } |
| 62 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 63 | void DRD_(start_suppression)(const Addr a1, const Addr a2, |
| 64 | const char* const reason) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 65 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 66 | if (DRD_(s_trace_suppression)) |
| 67 | { |
sewardj | 1e29ebc | 2009-07-15 14:49:17 +0000 | [diff] [blame] | 68 | VG_(message)(Vg_DebugMsg, "start suppression of 0x%lx sz %ld (%s)\n", |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 69 | a1, a2 - a1, reason); |
| 70 | } |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 71 | |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 72 | tl_assert(a1 < a2); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 73 | DRD_(bm_access_range_store)(DRD_(s_suppressed), a1, a2); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 74 | } |
| 75 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 76 | void DRD_(finish_suppression)(const Addr a1, const Addr a2) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 77 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 78 | if (DRD_(s_trace_suppression)) |
| 79 | { |
sewardj | 1e29ebc | 2009-07-15 14:49:17 +0000 | [diff] [blame] | 80 | VG_(message)(Vg_DebugMsg, "finish suppression of 0x%lx sz %ld\n", |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 81 | a1, a2 - a1); |
bart | 31b983d | 2010-02-21 14:52:59 +0000 | [diff] [blame] | 82 | VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 83 | } |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 84 | |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 85 | tl_assert(a1 < a2); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 86 | DRD_(bm_clear_store)(DRD_(s_suppressed), a1, a2); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Return true if data race detection suppression has been requested for all |
| 91 | * bytes in the range a1 .. a2 - 1 inclusive. Return false in case the range |
| 92 | * is only partially suppressed or not suppressed at all. |
| 93 | */ |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 94 | Bool DRD_(is_suppressed)(const Addr a1, const Addr a2) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 95 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 96 | return DRD_(bm_has)(DRD_(s_suppressed), a1, a2, eStore); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Return true if data race detection suppression has been requested for any |
| 101 | * of the bytes in the range a1 .. a2 - 1 inclusive. Return false in case none |
| 102 | * of the bytes in the specified range is suppressed. |
| 103 | */ |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 104 | Bool DRD_(is_any_suppressed)(const Addr a1, const Addr a2) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 105 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 106 | return DRD_(bm_has_any_store)(DRD_(s_suppressed), a1, a2); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 107 | } |
| 108 | |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 109 | void DRD_(mark_hbvar)(const Addr a1) |
| 110 | { |
| 111 | DRD_(bm_access_range_load)(DRD_(s_suppressed), a1, a1 + 1); |
| 112 | } |
| 113 | |
| 114 | Bool DRD_(range_contains_suppression_or_hbvar)(const Addr a1, const Addr a2) |
| 115 | { |
| 116 | return DRD_(bm_has_any_access)(DRD_(s_suppressed), a1, a2); |
| 117 | } |
| 118 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 119 | void DRD_(start_tracing_address_range)(const Addr a1, const Addr a2) |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 120 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 121 | tl_assert(a1 < a2); |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 122 | |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 123 | DRD_(bm_access_range_load)(DRD_(s_traced), a1, a2); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 124 | if (! DRD_(g_any_address_traced)) |
| 125 | { |
| 126 | DRD_(g_any_address_traced) = True; |
| 127 | } |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 128 | } |
| 129 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 130 | void DRD_(stop_tracing_address_range)(const Addr a1, const Addr a2) |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 131 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 132 | tl_assert(a1 < a2); |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 133 | |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 134 | DRD_(bm_clear_load)(DRD_(s_traced), a1, a2); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 135 | if (DRD_(g_any_address_traced)) |
| 136 | { |
| 137 | DRD_(g_any_address_traced) |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 138 | = DRD_(bm_has_any_load)(DRD_(s_traced), 0, ~(Addr)0); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 139 | } |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 140 | } |
| 141 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 142 | Bool DRD_(is_any_traced)(const Addr a1, const Addr a2) |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 143 | { |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 144 | return DRD_(bm_has_any_load)(DRD_(s_traced), a1, a2); |
bart | 005dc97 | 2008-03-29 14:42:59 +0000 | [diff] [blame] | 145 | } |
| 146 | |
bart | 1335ecc | 2009-02-14 16:10:53 +0000 | [diff] [blame] | 147 | void DRD_(suppression_stop_using_mem)(const Addr a1, const Addr a2) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 148 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 149 | if (DRD_(s_trace_suppression)) |
| 150 | { |
| 151 | Addr b; |
| 152 | for (b = a1; b < a2; b++) |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 153 | { |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 154 | if (DRD_(bm_has_1)(DRD_(s_suppressed), b, eStore)) |
| 155 | { |
| 156 | VG_(message)(Vg_DebugMsg, |
| 157 | "stop_using_mem(0x%lx, %ld) finish suppression of" |
sewardj | 1e29ebc | 2009-07-15 14:49:17 +0000 | [diff] [blame] | 158 | " 0x%lx\n", a1, a2 - a1, b); |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 159 | } |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 160 | } |
bart | bedfd23 | 2009-03-26 19:07:15 +0000 | [diff] [blame] | 161 | } |
| 162 | tl_assert(a1); |
| 163 | tl_assert(a1 < a2); |
| 164 | DRD_(bm_clear)(DRD_(s_suppressed), a1, a2); |
bart | b00ac4c | 2010-03-07 20:05:23 +0000 | [diff] [blame] | 165 | DRD_(bm_clear)(DRD_(s_traced), a1, a2); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 166 | } |