/external/compiler-rt/lib/tsan/go/ |
D | tsan_go.cc | 97 thr->in_rtl++; in __tsan_init() 99 thr->in_rtl--; in __tsan_init() 105 thr->in_rtl++; in __tsan_fini() 107 thr->in_rtl--; in __tsan_fini() 133 thr->in_rtl++; in __tsan_malloc() 136 thr->in_rtl--; in __tsan_malloc() 149 thr->in_rtl++; in __tsan_go_start() 150 parent->in_rtl++; in __tsan_go_start() 153 parent->in_rtl--; in __tsan_go_start() 154 thr->in_rtl--; in __tsan_go_start() [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_mman.cc | 46 CHECK_GT(thr->in_rtl, 0); in user_alloc() 63 CHECK_GT(thr->in_rtl, 0); in user_free() 79 if (CTX() && CTX()->initialized && thr->in_rtl == 1) { in user_free() 87 CHECK_GT(thr->in_rtl, 0); in user_realloc() 114 CHECK_GT(thr->in_rtl, 0); in internal_alloc() 124 CHECK_GT(thr->in_rtl, 0); in internal_free()
|
D | tsan_rtl_mutex.cc | 26 CHECK_GT(thr->in_rtl, 0); in MutexCreate() 40 CHECK_GT(thr->in_rtl, 0); in MutexDestroy() 73 CHECK_GT(thr->in_rtl, 0); in MutexLock() 105 CHECK_GT(thr->in_rtl, 0); in MutexUnlock() 141 CHECK_GT(thr->in_rtl, 0); in MutexReadLock() 161 CHECK_GT(thr->in_rtl, 0); in MutexReadUnlock() 182 CHECK_GT(thr->in_rtl, 0); in MutexReadOrWriteUnlock() 225 CHECK_GT(thr->in_rtl, 0); in Acquire() 235 CHECK_GT(thr->in_rtl, 0); in Release() 245 CHECK_GT(thr->in_rtl, 0); in ReleaseStore()
|
D | tsan_platform_linux.cc | 59 in_rtl_ = thr_->in_rtl; in ScopedInRtl() 60 thr_->in_rtl++; in ScopedInRtl() 65 thr_->in_rtl--; in ~ScopedInRtl() 67 CHECK_EQ(in_rtl_, thr_->in_rtl); in ~ScopedInRtl() 89 ScopedInRtl in_rtl; in ProtectRange() local
|
D | tsan_interceptors.cc | 116 ScopedInRtl in_rtl; in SigCtx() local 134 , in_rtl_(thr->in_rtl) { in ScopedInterceptor() 135 if (thr_->in_rtl == 0) { in ScopedInterceptor() 138 thr_->in_rtl++; in ScopedInterceptor() 141 thr_->in_rtl++; in ScopedInterceptor() 146 thr_->in_rtl--; in ~ScopedInterceptor() 147 if (thr_->in_rtl == 0) { in ~ScopedInterceptor() 151 CHECK_EQ(in_rtl_, thr_->in_rtl); in ~ScopedInterceptor() 171 if (thr->in_rtl > 1) \ 182 if (thr->in_rtl > 1) \ [all …]
|
D | tsan_rtl_thread.cc | 42 CHECK_GT(thr->in_rtl, 0); in ThreadFinalize() 57 CHECK_GT(thr->in_rtl, 0); in ThreadDead() 76 CHECK_GT(thr->in_rtl, 0); in ThreadCreate() 141 CHECK_GT(thr->in_rtl, 0); in ThreadStart() 197 CHECK_GT(thr->in_rtl, 0); in ThreadFinish() 251 CHECK_GT(thr->in_rtl, 0); in ThreadTid() 269 CHECK_GT(thr->in_rtl, 0); in ThreadJoin() 288 CHECK_GT(thr->in_rtl, 0); in ThreadDetach()
|
D | tsan_rtl.cc | 122 ScopedInRtl in_rtl; in MemoryProfileThread() local 147 ScopedInRtl in_rtl; in MemoryFlushThread() local 168 ScopedInRtl in_rtl; in Initialize() local 200 CHECK_EQ(thr->in_rtl, 1); in Initialize() 212 ScopedInRtl in_rtl; in Finalize() local 251 ScopedInRtl in_rtl; in TraceSwitch() local 490 DCHECK_EQ(thr->in_rtl, 0); in FuncEntry() 519 DCHECK_EQ(thr->in_rtl, 0); in FuncExit()
|
D | tsan_interface_ann.cc | 34 , in_rtl_(thr->in_rtl) { in ScopedAnnotation() 35 CHECK_EQ(thr_->in_rtl, 0); in ScopedAnnotation() 37 thr_->in_rtl++; in ScopedAnnotation() 42 thr_->in_rtl--; in ~ScopedAnnotation() 43 CHECK_EQ(in_rtl_, thr_->in_rtl); in ~ScopedAnnotation()
|
D | tsan_printf.cc | 29 ScopedInRtl in_rtl; in TsanPrintf() local
|
D | tsan_interface_atomic.cc | 25 CHECK_EQ(thr_->in_rtl, 1); // 1 due to our own ScopedInRtl member. in ScopedAtomic() 29 CHECK_EQ(thr_->in_rtl, 1); in ~ScopedAtomic()
|
D | tsan_rtl_report.cc | 30 ScopedInRtl in_rtl; in CheckFailed() local 371 ScopedInRtl in_rtl; in ReportRace() local
|
D | tsan_rtl.h | 277 int in_rtl; member
|
/external/compiler-rt/lib/tsan/unit_tests/ |
D | tsan_clock_test.cc | 20 ScopedInRtl in_rtl; in TEST() local 37 ScopedInRtl in_rtl; in TEST() local 54 ScopedInRtl in_rtl; in TEST() local 70 ScopedInRtl in_rtl; in TEST() local 88 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_suppressions_test.cc | 22 ScopedInRtl in_rtl; in TEST() local 47 ScopedInRtl in_rtl; in TEST() local 66 ScopedInRtl in_rtl; in TEST() local 83 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_stack_test.cc | 45 ScopedInRtl in_rtl; in TEST() local 51 ScopedInRtl in_rtl; in TEST() local 60 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_flags_test.cc | 20 ScopedInRtl in_rtl; in TEST() local 28 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_vector_test.cc | 20 ScopedInRtl in_rtl; in TEST() local 33 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_mman_test.cc | 20 ScopedInRtl in_rtl; in TEST() local 37 ScopedInRtl in_rtl; in TEST() local 64 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_sync_test.cc | 28 ScopedInRtl in_rtl; in TEST() local
|
D | tsan_platform_test.cc | 20 ScopedInRtl in_rtl; in TestThreadInfo() local
|