/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_thread.h | 21 struct DTLS; 37 DTLS *dtls() { return dtls_; } function in class:__lsan::ThreadContext 43 DTLS *dtls_;
|
lsan_thread.cc | 56 DTLS *dtls; member in struct:__lsan::OnStartedArgs 67 dtls_ = args->dtls; 89 args.dtls = DTLS_Get(); 132 uptr *cache_end, DTLS **dtls) { 142 *dtls = context->dtls();
|
lsan_common.cc | 226 DTLS *dtls; local in function:__lsan::ProcessThreads 229 &cache_begin, &cache_end, &dtls); 293 if (dtls && !DTLSInDestruction(dtls)) { 294 for (uptr j = 0; j < dtls->dtv_size; ++j) { 295 uptr dtls_beg = dtls->dtv[j].beg; 296 uptr dtls_end = dtls_beg + dtls->dtv[j].size; 298 LOG_THREADS("DTLS %zu at %p-%p.\n", j, dtls_beg, dtls_end); 299 ScanRangeForPointers(dtls_beg, dtls_end, frontier, "DTLS", [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_thread.cc | 38 DTLS *dtls = DTLS_Get(); local in function:__msan::MsanThread::ClearShadowForThreadStackAndTLS 39 CHECK_NE(dtls, 0); 40 for (uptr i = 0; i < dtls->dtv_size; ++i) 41 __msan_unpoison((void *)(dtls->dtv[i].beg), dtls->dtv[i].size);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_tls_get_addr.cc | 38 static __thread DTLS dtls; variable in namespace:__sanitizer 40 // Make sure we properly destroy the DTLS objects: 46 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) { 49 UnmapOrDie(dtv, size * sizeof(DTLS::DTV)); 54 if (dtls.dtv_size >= new_size) return; 56 new_size = Max(new_size, 4096UL / sizeof(DTLS::DTV)); 57 DTLS::DTV *new_dtv = 58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize") [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_thread.h | 27 struct DTLS; 81 DTLS *dtls() { return dtls_; } function in class:__asan::AsanThread 163 DTLS *dtls_;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_deadlock_detector_test.cc | 38 dtls.clear(); 42 DeadlockDetectorTLS<BV> dtls; member in struct:ScopedDD 50 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunBasicTest 76 dtls.clear(); 79 EXPECT_FALSE(d.onLock(&dtls, n1)); 80 EXPECT_FALSE(d.onLock(&dtls, n2)); 81 d.onUnlock(&dtls, n2); 82 d.onUnlock(&dtls, n1); 84 EXPECT_FALSE(d.onLock(&dtls, n2)) 141 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunRemoveNodeTest 247 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunMultipleEpochsTest 292 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunCorrectEpochFlush 324 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunTryLockTest 351 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunOnFirstLockTest 389 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunRecusriveLockTest 419 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunLockContextTest 457 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local in function:RunRemoveEdgesTest [all...] |