2012-11-28 Marc Glisse <marc.glisse@inria.fr>
[official-gcc.git] / libsanitizer / tsan / tsan_stat.cc
blob8c6c9511581f5ab506b3a34bc5b3bcd4e66f9fa2
1 //===-- tsan_stat.cc ------------------------------------------------------===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file is a part of ThreadSanitizer (TSan), a race detector.
9 //
10 //===----------------------------------------------------------------------===//
11 #include "tsan_stat.h"
12 #include "tsan_rtl.h"
14 namespace __tsan {
16 void StatAggregate(u64 *dst, u64 *src) {
17 if (!kCollectStats)
18 return;
19 for (int i = 0; i < StatCnt; i++)
20 dst[i] += src[i];
23 void StatOutput(u64 *stat) {
24 if (!kCollectStats)
25 return;
27 stat[StatShadowNonZero] = stat[StatShadowProcessed] - stat[StatShadowZero];
29 static const char *name[StatCnt] = {};
30 name[StatMop] = "Memory accesses ";
31 name[StatMopRead] = " Including reads ";
32 name[StatMopWrite] = " writes ";
33 name[StatMop1] = " Including size 1 ";
34 name[StatMop2] = " size 2 ";
35 name[StatMop4] = " size 4 ";
36 name[StatMop8] = " size 8 ";
37 name[StatMopSame] = " Including same ";
38 name[StatMopRange] = " Including range ";
39 name[StatShadowProcessed] = "Shadow processed ";
40 name[StatShadowZero] = " Including empty ";
41 name[StatShadowNonZero] = " Including non empty ";
42 name[StatShadowSameSize] = " Including same size ";
43 name[StatShadowIntersect] = " intersect ";
44 name[StatShadowNotIntersect] = " not intersect ";
45 name[StatShadowSameThread] = " Including same thread ";
46 name[StatShadowAnotherThread] = " another thread ";
47 name[StatShadowReplace] = " Including evicted ";
49 name[StatFuncEnter] = "Function entries ";
50 name[StatFuncExit] = "Function exits ";
51 name[StatEvents] = "Events collected ";
53 name[StatThreadCreate] = "Total threads created ";
54 name[StatThreadFinish] = " threads finished ";
55 name[StatThreadReuse] = " threads reused ";
56 name[StatThreadMaxTid] = " max tid ";
57 name[StatThreadMaxAlive] = " max alive threads ";
59 name[StatMutexCreate] = "Mutexes created ";
60 name[StatMutexDestroy] = " destroyed ";
61 name[StatMutexLock] = " lock ";
62 name[StatMutexUnlock] = " unlock ";
63 name[StatMutexRecLock] = " recursive lock ";
64 name[StatMutexRecUnlock] = " recursive unlock ";
65 name[StatMutexReadLock] = " read lock ";
66 name[StatMutexReadUnlock] = " read unlock ";
68 name[StatSyncCreated] = "Sync objects created ";
69 name[StatSyncDestroyed] = " destroyed ";
70 name[StatSyncAcquire] = " acquired ";
71 name[StatSyncRelease] = " released ";
73 name[StatAtomic] = "Atomic operations ";
74 name[StatAtomicLoad] = " Including load ";
75 name[StatAtomicStore] = " store ";
76 name[StatAtomicExchange] = " exchange ";
77 name[StatAtomicFetchAdd] = " fetch_add ";
78 name[StatAtomicFetchSub] = " fetch_sub ";
79 name[StatAtomicFetchAnd] = " fetch_and ";
80 name[StatAtomicFetchOr] = " fetch_or ";
81 name[StatAtomicFetchXor] = " fetch_xor ";
82 name[StatAtomicFetchNand] = " fetch_nand ";
83 name[StatAtomicCAS] = " compare_exchange ";
84 name[StatAtomicFence] = " fence ";
85 name[StatAtomicRelaxed] = " Including relaxed ";
86 name[StatAtomicConsume] = " consume ";
87 name[StatAtomicAcquire] = " acquire ";
88 name[StatAtomicRelease] = " release ";
89 name[StatAtomicAcq_Rel] = " acq_rel ";
90 name[StatAtomicSeq_Cst] = " seq_cst ";
91 name[StatAtomic1] = " Including size 1 ";
92 name[StatAtomic2] = " size 2 ";
93 name[StatAtomic4] = " size 4 ";
94 name[StatAtomic8] = " size 8 ";
95 name[StatAtomic16] = " size 16 ";
97 name[StatInterceptor] = "Interceptors ";
98 name[StatInt_longjmp] = " longjmp ";
99 name[StatInt_siglongjmp] = " siglongjmp ";
100 name[StatInt_malloc] = " malloc ";
101 name[StatInt_calloc] = " calloc ";
102 name[StatInt_realloc] = " realloc ";
103 name[StatInt_free] = " free ";
104 name[StatInt_cfree] = " cfree ";
105 name[StatInt_mmap] = " mmap ";
106 name[StatInt_mmap64] = " mmap64 ";
107 name[StatInt_munmap] = " munmap ";
108 name[StatInt_memalign] = " memalign ";
109 name[StatInt_valloc] = " valloc ";
110 name[StatInt_pvalloc] = " pvalloc ";
111 name[StatInt_posix_memalign] = " posix_memalign ";
112 name[StatInt__Znwm] = " _Znwm ";
113 name[StatInt__ZnwmRKSt9nothrow_t] = " _ZnwmRKSt9nothrow_t ";
114 name[StatInt__Znam] = " _Znam ";
115 name[StatInt__ZnamRKSt9nothrow_t] = " _ZnamRKSt9nothrow_t ";
116 name[StatInt__ZdlPv] = " _ZdlPv ";
117 name[StatInt__ZdlPvRKSt9nothrow_t] = " _ZdlPvRKSt9nothrow_t ";
118 name[StatInt__ZdaPv] = " _ZdaPv ";
119 name[StatInt__ZdaPvRKSt9nothrow_t] = " _ZdaPvRKSt9nothrow_t ";
120 name[StatInt_strlen] = " strlen ";
121 name[StatInt_memset] = " memset ";
122 name[StatInt_memcpy] = " memcpy ";
123 name[StatInt_strcmp] = " strcmp ";
124 name[StatInt_memchr] = " memchr ";
125 name[StatInt_memrchr] = " memrchr ";
126 name[StatInt_memmove] = " memmove ";
127 name[StatInt_memcmp] = " memcmp ";
128 name[StatInt_strchr] = " strchr ";
129 name[StatInt_strchrnul] = " strchrnul ";
130 name[StatInt_strrchr] = " strrchr ";
131 name[StatInt_strncmp] = " strncmp ";
132 name[StatInt_strcpy] = " strcpy ";
133 name[StatInt_strncpy] = " strncpy ";
134 name[StatInt_strstr] = " strstr ";
135 name[StatInt_atexit] = " atexit ";
136 name[StatInt___cxa_guard_acquire] = " __cxa_guard_acquire ";
137 name[StatInt___cxa_guard_release] = " __cxa_guard_release ";
138 name[StatInt_pthread_create] = " pthread_create ";
139 name[StatInt_pthread_join] = " pthread_join ";
140 name[StatInt_pthread_detach] = " pthread_detach ";
141 name[StatInt_pthread_mutex_init] = " pthread_mutex_init ";
142 name[StatInt_pthread_mutex_destroy] = " pthread_mutex_destroy ";
143 name[StatInt_pthread_mutex_lock] = " pthread_mutex_lock ";
144 name[StatInt_pthread_mutex_trylock] = " pthread_mutex_trylock ";
145 name[StatInt_pthread_mutex_timedlock] = " pthread_mutex_timedlock ";
146 name[StatInt_pthread_mutex_unlock] = " pthread_mutex_unlock ";
147 name[StatInt_pthread_spin_init] = " pthread_spin_init ";
148 name[StatInt_pthread_spin_destroy] = " pthread_spin_destroy ";
149 name[StatInt_pthread_spin_lock] = " pthread_spin_lock ";
150 name[StatInt_pthread_spin_trylock] = " pthread_spin_trylock ";
151 name[StatInt_pthread_spin_unlock] = " pthread_spin_unlock ";
152 name[StatInt_pthread_rwlock_init] = " pthread_rwlock_init ";
153 name[StatInt_pthread_rwlock_destroy] = " pthread_rwlock_destroy ";
154 name[StatInt_pthread_rwlock_rdlock] = " pthread_rwlock_rdlock ";
155 name[StatInt_pthread_rwlock_tryrdlock] = " pthread_rwlock_tryrdlock ";
156 name[StatInt_pthread_rwlock_timedrdlock]
157 = " pthread_rwlock_timedrdlock ";
158 name[StatInt_pthread_rwlock_wrlock] = " pthread_rwlock_wrlock ";
159 name[StatInt_pthread_rwlock_trywrlock] = " pthread_rwlock_trywrlock ";
160 name[StatInt_pthread_rwlock_timedwrlock]
161 = " pthread_rwlock_timedwrlock ";
162 name[StatInt_pthread_rwlock_unlock] = " pthread_rwlock_unlock ";
163 name[StatInt_pthread_cond_init] = " pthread_cond_init ";
164 name[StatInt_pthread_cond_destroy] = " pthread_cond_destroy ";
165 name[StatInt_pthread_cond_signal] = " pthread_cond_signal ";
166 name[StatInt_pthread_cond_broadcast] = " pthread_cond_broadcast ";
167 name[StatInt_pthread_cond_wait] = " pthread_cond_wait ";
168 name[StatInt_pthread_cond_timedwait] = " pthread_cond_timedwait ";
169 name[StatInt_pthread_barrier_init] = " pthread_barrier_init ";
170 name[StatInt_pthread_barrier_destroy] = " pthread_barrier_destroy ";
171 name[StatInt_pthread_barrier_wait] = " pthread_barrier_wait ";
172 name[StatInt_pthread_once] = " pthread_once ";
173 name[StatInt_sem_init] = " sem_init ";
174 name[StatInt_sem_destroy] = " sem_destroy ";
175 name[StatInt_sem_wait] = " sem_wait ";
176 name[StatInt_sem_trywait] = " sem_trywait ";
177 name[StatInt_sem_timedwait] = " sem_timedwait ";
178 name[StatInt_sem_post] = " sem_post ";
179 name[StatInt_sem_getvalue] = " sem_getvalue ";
180 name[StatInt_read] = " read ";
181 name[StatInt_pread] = " pread ";
182 name[StatInt_pread64] = " pread64 ";
183 name[StatInt_readv] = " readv ";
184 name[StatInt_preadv64] = " preadv64 ";
185 name[StatInt_write] = " write ";
186 name[StatInt_pwrite] = " pwrite ";
187 name[StatInt_pwrite64] = " pwrite64 ";
188 name[StatInt_writev] = " writev ";
189 name[StatInt_pwritev64] = " pwritev64 ";
190 name[StatInt_send] = " send ";
191 name[StatInt_sendmsg] = " sendmsg ";
192 name[StatInt_recv] = " recv ";
193 name[StatInt_recvmsg] = " recvmsg ";
194 name[StatInt_unlink] = " unlink ";
195 name[StatInt_fopen] = " fopen ";
196 name[StatInt_fread] = " fread ";
197 name[StatInt_fwrite] = " fwrite ";
198 name[StatInt_puts] = " puts ";
199 name[StatInt_rmdir] = " rmdir ";
200 name[StatInt_opendir] = " opendir ";
201 name[StatInt_epoll_ctl] = " epoll_ctl ";
202 name[StatInt_epoll_wait] = " epoll_wait ";
203 name[StatInt_poll] = " poll ";
204 name[StatInt_sigaction] = " sigaction ";
205 name[StatInt_sleep] = " sleep ";
206 name[StatInt_usleep] = " usleep ";
207 name[StatInt_nanosleep] = " nanosleep ";
208 name[StatInt_gettimeofday] = " gettimeofday ";
210 name[StatAnnotation] = "Dynamic annotations ";
211 name[StatAnnotateHappensBefore] = " HappensBefore ";
212 name[StatAnnotateHappensAfter] = " HappensAfter ";
213 name[StatAnnotateCondVarSignal] = " CondVarSignal ";
214 name[StatAnnotateCondVarSignalAll] = " CondVarSignalAll ";
215 name[StatAnnotateMutexIsNotPHB] = " MutexIsNotPHB ";
216 name[StatAnnotateCondVarWait] = " CondVarWait ";
217 name[StatAnnotateRWLockCreate] = " RWLockCreate ";
218 name[StatAnnotateRWLockDestroy] = " RWLockDestroy ";
219 name[StatAnnotateRWLockAcquired] = " RWLockAcquired ";
220 name[StatAnnotateRWLockReleased] = " RWLockReleased ";
221 name[StatAnnotateTraceMemory] = " TraceMemory ";
222 name[StatAnnotateFlushState] = " FlushState ";
223 name[StatAnnotateNewMemory] = " NewMemory ";
224 name[StatAnnotateNoOp] = " NoOp ";
225 name[StatAnnotateFlushExpectedRaces] = " FlushExpectedRaces ";
226 name[StatAnnotateEnableRaceDetection] = " EnableRaceDetection ";
227 name[StatAnnotateMutexIsUsedAsCondVar] = " MutexIsUsedAsCondVar ";
228 name[StatAnnotatePCQGet] = " PCQGet ";
229 name[StatAnnotatePCQPut] = " PCQPut ";
230 name[StatAnnotatePCQDestroy] = " PCQDestroy ";
231 name[StatAnnotatePCQCreate] = " PCQCreate ";
232 name[StatAnnotateExpectRace] = " ExpectRace ";
233 name[StatAnnotateBenignRaceSized] = " BenignRaceSized ";
234 name[StatAnnotateBenignRace] = " BenignRace ";
235 name[StatAnnotateIgnoreReadsBegin] = " IgnoreReadsBegin ";
236 name[StatAnnotateIgnoreReadsEnd] = " IgnoreReadsEnd ";
237 name[StatAnnotateIgnoreWritesBegin] = " IgnoreWritesBegin ";
238 name[StatAnnotateIgnoreWritesEnd] = " IgnoreWritesEnd ";
239 name[StatAnnotatePublishMemoryRange] = " PublishMemoryRange ";
240 name[StatAnnotateUnpublishMemoryRange] = " UnpublishMemoryRange ";
241 name[StatAnnotateThreadName] = " ThreadName ";
243 name[StatMtxTotal] = "Contentionz ";
244 name[StatMtxTrace] = " Trace ";
245 name[StatMtxThreads] = " Threads ";
246 name[StatMtxReport] = " Report ";
247 name[StatMtxSyncVar] = " SyncVar ";
248 name[StatMtxSyncTab] = " SyncTab ";
249 name[StatMtxSlab] = " Slab ";
250 name[StatMtxAtExit] = " Atexit ";
251 name[StatMtxAnnotations] = " Annotations ";
253 Printf("Statistics:\n");
254 for (int i = 0; i < StatCnt; i++)
255 Printf("%s: %zu\n", name[i], (uptr)stat[i]);
258 } // namespace __tsan