HomeSort by: relevance | last modified time | path
    Searched defs:TLD (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_profiling.cc 63 thread_local ProfilingData TLD{{0}, {0}};
77 pthread_setspecific(ProfilingKey, &TLD);
90 if (atomic_compare_exchange_strong(&TLD.Allocators, &Allocators, 1,
95 atomic_store(&TLD.Allocators, 0, memory_order_release);
133 atomic_store(&TLD.Allocators, Allocators, memory_order_release);
140 if (atomic_compare_exchange_strong(&TLD.FCT, &FCT, 1, memory_order_acq_rel)) {
143 atomic_load_relaxed(&TLD.Allocators)));
146 atomic_store(&TLD.FCT, FCT, memory_order_release);
152 return &TLD;
156 auto FCT = atomic_exchange(&TLD.FCT, 0, memory_order_acq_rel)
    [all...]
xray_basic_logging.cc 126 thread_local ThreadLocalData TLD;
130 Report("Not initializing TLD since ThreadBufferSize == 0.\n");
133 pthread_setspecific(PThreadKey, &TLD);
134 TLD.LogWriter = getGlobalLog();
135 TLD.InMemoryBuffer = reinterpret_cast<XRayRecord *>(
138 TLD.BufferSize = GlobalOptions.ThreadBufferSize;
139 TLD.BufferOffset = 0;
143 TLD.StackSize = 0;
144 TLD.StackEntries = 0;
145 TLD.ShadowStack = nullptr
    [all...]
xray_fdr_logging.cc 319 auto &TLD = getThreadLocalData();
320 if (TLD.Controller != nullptr)
321 TLD.Controller->flush();
357 auto &TLD = getThreadLocalData();
358 if (TLD.Controller != nullptr)
359 TLD.Controller->flush();
447 static bool setupTLD(ThreadLocalData &TLD) XRAY_NEVER_INSTRUMENT {
453 if (TLD.Controller != nullptr) {
454 TLD.Controller->flush();
455 TLD.Controller = nullptr
    [all...]

Completed in 12 milliseconds