Searched refs:TLD (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_basic_logging.cpp125 thread_local ThreadLocalData TLD; variable
129 Report("Not initializing TLD since ThreadBufferSize == 0.\n");
132 pthread_setspecific(PThreadKey, &TLD);
133 TLD.LogWriter = getGlobalLog();
134 TLD.InMemoryBuffer = reinterpret_cast<XRayRecord *>(
137 TLD.BufferSize = GlobalOptions.ThreadBufferSize;
138 TLD.BufferOffset = 0;
142 TLD.StackSize = 0;
143 TLD.StackEntries = 0;
144 TLD
160 auto &TLD = getThreadLocalData(); variable
257 auto &TLD = getThreadLocalData(); variable
340 ThreadLocalData &TLD = *reinterpret_cast<ThreadLocalData *>(P); variable
[all...]
H A Dxray_fdr_logging.cpp317 auto &TLD = getThreadLocalData();
318 if (TLD.Controller != nullptr)
319 TLD.Controller->flush();
355 auto &TLD = getThreadLocalData(); variable
356 if (TLD.Controller != nullptr)
357 TLD.Controller->flush();
445 static bool setupTLD(ThreadLocalData &TLD) XRAY_NEVER_INSTRUMENT {
451 if (TLD.Controller != nullptr) {
452 TLD.Controller->flush();
453 TLD
575 auto &TLD = getThreadLocalData(); variable
605 auto &TLD = getThreadLocalData(); variable
[all...]
H A Dxray_profiling.cpp62 thread_local ProfilingData TLD{{0}, {0}};
76 pthread_setspecific(ProfilingKey, &TLD);
89 if (atomic_compare_exchange_strong(&TLD.Allocators, &Allocators, 1,
94 atomic_store(&TLD.Allocators, 0, memory_order_release);
132 atomic_store(&TLD.Allocators, Allocators, memory_order_release);
139 if (atomic_compare_exchange_strong(&TLD.FCT, &FCT, 1, memory_order_acq_rel)) {
142 atomic_load_relaxed(&TLD.Allocators)));
145 atomic_store(&TLD.FCT, FCT, memory_order_release);
151 return &TLD;
155 auto FCT = atomic_exchange(&TLD
286 postCurrentThreadFCT(TLD); variable
[all...]
/openbsd-current/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp9309 for (TopLevelDeclsMap::iterator TLD = TopLevelDecls.begin(),
9310 TLDEnd = TopLevelDecls.end(); TLD != TLDEnd; ++TLD) {
9311 IdentifierInfo *II = TLD->first;
9312 for (unsigned I = 0, N = TLD->second.size(); I != N; ++I) {
9313 pushExternalDeclIntoScope(cast<NamedDecl>(TLD->second[I]), II);

Completed in 179 milliseconds