blob: 0d32d4f81aa91c737d00ba3bbfc3659d6d0294f5 [file] [log] [blame]
bart9e4554c2009-08-02 07:46:43 +00001#
2# Suppression patterns for ld, the dynamic loader.
3#
4
5# Suppress all data races triggered by ld.
sewardjaf44c822007-11-25 14:01:38 +00006{
bart9e4554c2009-08-02 07:46:43 +00007 drd-ld
bartef1b9722008-07-04 15:34:23 +00008 drd:ConflictingAccess
sewardj8b09d4f2007-12-04 21:27:18 +00009 obj:/lib*/ld-*.so
sewardjaf44c822007-11-25 14:01:38 +000010}
bart9e4554c2009-08-02 07:46:43 +000011
12#
13# Suppression patterns for libc.
14#
15
16# Suppress all data races where the topmost frame is inside libc.so. Although
17# this could hide some real data races, unfortunately this is the only way to
18# not report any false positives on stdio functions. The glibc functions
19# manipulating FILE objects use locking primitives that cannot be intercepted
20# easily. See also the definitions of _IO_lock_lock() etc. in the file
21# nptl/sysdeps/pthread/bits/stdio-lock.h in the glibc source tree.
sewardjaf44c822007-11-25 14:01:38 +000022{
bart9e4554c2009-08-02 07:46:43 +000023 drd-libc-stdio
bart15c67b42009-01-29 09:57:22 +000024 drd:ConflictingAccess
25 obj:/lib*/libc-*
26}
bart9e4554c2009-08-02 07:46:43 +000027
28#
29# Suppression patterns for libstdc++, the implementation of the standard C++
30# library included with the gcc compiler.
31#
32# Note: several versions of the libstdc++ library (4.2.2, 4.3.2, 4.4.0, 4.5.0
33# and their predecessors) contain an implementation of the std::string class
34# that triggers conflicting memory accesses. See also
35# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40518
36#
37
38# {
39# drd-libstdc++-std::string::string()
40# drd:ConflictingAccess
41# fun:_ZNSsC1ERKSs
42# }
43
bart5478f842010-05-12 10:01:32 +000044{
45 drd-libstdc++-cxa_guard_release
46 drd:CondErr
47 fun:pthread_cond_broadcast@*
48 fun:__cxa_guard_release
49}
50
51
bart9e4554c2009-08-02 07:46:43 +000052#
53# Suppression patterns for libpthread.
54#
55
bart15c67b42009-01-29 09:57:22 +000056{
bart9e4554c2009-08-02 07:46:43 +000057 drd-libpthread-pthread_create
bartef1b9722008-07-04 15:34:23 +000058 drd:ConflictingAccess
bart00408ca2008-11-17 18:22:10 +000059 ...
bartebca7862008-03-09 19:21:14 +000060 fun:pthread_create*
61}
62{
bart0e08b102009-08-02 08:35:05 +000063 drd-libpthread-pthread_join
64 drd:ConflictingAccess
65 fun:pthread_join
66 fun:pthread_join
67}
68{
69 drd-libpthread-__deallocate_stack
bartef1b9722008-07-04 15:34:23 +000070 drd:ConflictingAccess
barta39b9a02008-11-17 17:57:15 +000071 ...
bartcea0e952008-03-01 10:50:45 +000072 fun:__deallocate_stack
bartcea0e952008-03-01 10:50:45 +000073}
74{
bart0e08b102009-08-02 08:35:05 +000075 drd-libpthread-__free_tcb
76 drd:ConflictingAccess
77 ...
78 fun:__free_tcb
79}
80{
bart9e4554c2009-08-02 07:46:43 +000081 drd-libpthread-pthread_detach
bartef1b9722008-07-04 15:34:23 +000082 drd:ConflictingAccess
sewardjaf44c822007-11-25 14:01:38 +000083 fun:pthread_detach
84 fun:pthread_detach
85}
86{
bart9e4554c2009-08-02 07:46:43 +000087 drd-libpthread-_Unwind_ForcedUnwind
bart81db8d42008-09-27 12:43:52 +000088 drd:ConflictingAccess
bartb98b2d52009-07-10 06:48:13 +000089 ...
90 fun:_Unwind_ForcedUnwind
bart81db8d42008-09-27 12:43:52 +000091}
92{
bart9e4554c2009-08-02 07:46:43 +000093 drd-libpthread-_Unwind_Resume
bartf0c61c22008-09-27 13:14:06 +000094 drd:ConflictingAccess
bartb98b2d52009-07-10 06:48:13 +000095 ...
bart9e4554c2009-08-02 07:46:43 +000096 fun:_Unwind_Resume
barta238ee52008-09-27 13:23:41 +000097}
bart2f2d6792009-08-14 13:22:48 +000098{
99 drd-libpthread-nanosleep
100 drd:ConflictingAccess
101 fun:nanosleep
102}
bart9e4554c2009-08-02 07:46:43 +0000103
104#
105# Suppression patterns for libgomp.
106#
107
108# Unfortunately many statements in libgomp trigger conflicting accesses. It is
109# not clear to me which of these are safe and which ones not. See also
110# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40362
barta238ee52008-09-27 13:23:41 +0000111{
bart9e4554c2009-08-02 07:46:43 +0000112 drd-libgomp
bartef1b9722008-07-04 15:34:23 +0000113 drd:ConflictingAccess
bart459caeb2008-03-11 19:46:45 +0000114 obj:/usr/lib*/libgomp.so*
bart459caeb2008-03-11 19:46:45 +0000115}
bart9e4554c2009-08-02 07:46:43 +0000116
117#
118# Suppression patterns for libX11.
119#
120
bartdd7a30d2008-03-22 17:36:23 +0000121{
bart9e4554c2009-08-02 07:46:43 +0000122 drd-libX11-XCreateFontSet
bartef1b9722008-07-04 15:34:23 +0000123 drd:CondErr
bart9483fd32008-07-01 14:13:25 +0000124 fun:pthread_cond_init*
125 fun:_XReply
126 fun:XListFontsWithInfo
127 obj:/usr/lib*/libX11.so*
128 fun:XCreateOC
129 fun:XCreateFontSet
130}
bart9e4554c2009-08-02 07:46:43 +0000131
132#
133# Suppression patterns for libxcb.
134#
135
bart9483fd32008-07-01 14:13:25 +0000136{
bart9e4554c2009-08-02 07:46:43 +0000137 drd-libxcb-xcb_wait_for_reply
bartef1b9722008-07-04 15:34:23 +0000138 drd:CondErr
bartdd7a30d2008-03-22 17:36:23 +0000139 fun:pthread_cond_destroy*
140 fun:xcb_wait_for_reply
141}
bart9e4554c2009-08-02 07:46:43 +0000142
143#
144# Suppression patterns for libglib.
145#
146
barte53fb262008-07-08 09:29:19 +0000147{
bart9e4554c2009-08-02 07:46:43 +0000148 drd-libglib-access-g_threads_got_initialized
barte53fb262008-07-08 09:29:19 +0000149 drd:ConflictingAccess
barta99ab012008-12-27 09:19:01 +0000150 ...
barte53fb262008-07-08 09:29:19 +0000151 fun:g_slice_alloc
152 fun:g_ptr_array_sized_new
barte53fb262008-07-08 09:29:19 +0000153}
154{
bart9e4554c2009-08-02 07:46:43 +0000155 drd-libglib-access-g_threads_got_initialized
barte53fb262008-07-08 09:29:19 +0000156 drd:ConflictingAccess
157 fun:_ZN27QEventDispatcherGlibPrivateC1EP13_GMainContext
158 fun:_ZN20QEventDispatcherGlibC1EP7QObject
159 obj:/usr/lib*/libQtCore.so.4.*
160 obj:/usr/lib*/libQtCore.so.4.*
161}
162{
bart9e4554c2009-08-02 07:46:43 +0000163 drd-libglib-access-g_mem_initialized
barte53fb262008-07-08 09:29:19 +0000164 drd:ConflictingAccess
165 fun:g_malloc0
166}
167{
bart9e4554c2009-08-02 07:46:43 +0000168 drd-libglib-g_private_get_posix_impl
barte53fb262008-07-08 09:29:19 +0000169 drd:ConflictingAccess
170 fun:g_private_get_posix_impl
171}
172{
bart9e4554c2009-08-02 07:46:43 +0000173 drd-libglib-g_private_set_posix_impl
barte53fb262008-07-08 09:29:19 +0000174 drd:ConflictingAccess
175 fun:g_private_set_posix_impl
176}
177{
bart9e4554c2009-08-02 07:46:43 +0000178 drd-libglib-g_get_language_names
barta99ab012008-12-27 09:19:01 +0000179 drd:ConflictingAccess
180 fun:g_slice_free_chain_with_offset
barta99ab012008-12-27 09:19:01 +0000181}
bart75516e52009-08-10 14:13:12 +0000182{
183 drd-libglib-g_main_context_new
184 drd:ConflictingAccess
185 fun:fcntl
186 obj:/usr/lib*/libglib-*.so*
187 fun:g_main_context_new
188}
bart9e4554c2009-08-02 07:46:43 +0000189
190#
191# Suppression patterns for libQtCore.
192#
193
barta99ab012008-12-27 09:19:01 +0000194{
bart9e4554c2009-08-02 07:46:43 +0000195 drd-libQtCore-deref-that-calls-QThreadData-destructor
bartddead322009-02-14 15:47:53 +0000196 drd:ConflictingAccess
197 fun:_ZN11QThreadDataD1Ev
198 fun:_ZN11QThreadData5derefEv
199 obj:/usr/lib*/libQtCore.so.4.*
200}
201{
bart9e4554c2009-08-02 07:46:43 +0000202 drd-libQtCore-4.0/4.1-Q_GLOBAL_STATIC-connectionList
barteb339152008-07-29 13:01:16 +0000203 drd:ConflictingAccess
204 obj:/usr/lib*/libQtCore.so.4.*
205 fun:_ZN11QMetaObject8activateEP7QObjectiiPPv
206 fun:_ZN11QMetaObject8activateEP7QObjectPKS_iPPv
207}
208{
bart9e4554c2009-08-02 07:46:43 +0000209 drd-libQtCore-QObjectPrivate::clearGuards(QObject*)
barte53fb262008-07-08 09:29:19 +0000210 drd:ConflictingAccess
211 fun:_ZN14QReadWriteLock12lockForWriteEv
212 fun:_ZN14QObjectPrivate11clearGuardsEP7QObject
213 fun:_ZN7QObjectD2Ev
barte53fb262008-07-08 09:29:19 +0000214}
bartf0d65952008-08-02 10:03:37 +0000215{
bart9e4554c2009-08-02 07:46:43 +0000216 drd-libQtCore-QObjectPrivate::clearGuards(QObject*)
bartf0d65952008-08-02 10:03:37 +0000217 drd:ConflictingAccess
218 fun:_ZN14QReadWriteLock12lockForWriteEv
219 fun:_ZN12QWriteLocker6relockEv
220 fun:_ZN12QWriteLockerC1EP14QReadWriteLock
221 fun:_ZN14QObjectPrivate11clearGuardsEP7QObject
222 fun:_ZN7QObjectD2Ev
223 fun:_ZN24QAbstractEventDispatcherD2Ev
224 fun:_ZN20QEventDispatcherGlibD0Ev
225}
bart75516e52009-08-10 14:13:12 +0000226{
227 drd-libQtCore-QMutexPool::get(void const*)
228 drd:ConflictingAccess
229 fun:_ZN10QMutexPool3getEPKv
230}
bart9e4554c2009-08-02 07:46:43 +0000231
232#
233# Suppression patterns for libboost.
234#
235
236# Suppress the races on boost::once_flag::epoch and on
237# boost::detail::once_global_epoch. See also the source file
238# boost/thread/pthread/once.hpp in the Boost source tree.
barta45b5722008-12-21 16:08:07 +0000239{
bart9e4554c2009-08-02 07:46:43 +0000240 drd-libboost-boost::call_once<void (*)()>(boost::once_flag&, void (*)())
barta45b5722008-12-21 16:08:07 +0000241 drd:ConflictingAccess
242 ...
243 fun:_ZN5boost9call_onceIPFvvEEEvRNS_9once_flagET_
barta45b5722008-12-21 16:08:07 +0000244}
bart35da3c42009-08-12 09:45:54 +0000245{
246 drd-libboost-boost::detail::get_once_per_thread_epoch()
247 drd:ConflictingAccess
248 fun:_ZN5boost6detail25get_once_per_thread_epochEv
249}
bart35da3c42009-08-12 09:45:54 +0000250{
251 drd-libboost-boost::detail::get_current_thread_data()
252 drd:ConflictingAccess
253 ...
254 fun:_ZN5boost6detail23get_current_thread_dataEv
255}