Searched refs:atomic_load (Results 26 - 50 of 78) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_bytemap.h87 atomic_load(&map1_[idx], memory_order_acquire));
H A Dsanitizer_atomic_clang_mips.h90 INLINE atomic_uint64_t::Type atomic_load(const volatile atomic_uint64_t *ptr, function in namespace:__sanitizer
H A Dsanitizer_tls_get_addr.cpp102 atomic_load(&number_of_live_dtls, memory_order_relaxed));
H A Dsanitizer_deadlock_detector2.cpp195 uptr owner = atomic_load(&m->owner, memory_order_relaxed);
274 uptr owner = atomic_load(&m->owner, memory_order_relaxed);
306 uptr owner = atomic_load(&m->owner, memory_order_relaxed);
H A Dsanitizer_atomic_msvc.h71 INLINE typename T::Type atomic_load( function in namespace:__sanitizer
H A Dsanitizer_coverage_libcdep_new.cpp134 if (atomic_load(pc_ptr, memory_order_relaxed) == 0)
H A Dsanitizer_rtems.cpp140 CHECK_NE(MtxUnlocked, atomic_load(m, memory_order_relaxed));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h46 !atomic_load(&Disabled, memory_order_acquire))) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.cpp162 if (atomic_load(&Finalizing, memory_order_acquire))
212 atomic_store(B->Buff.Extents, atomic_load(Buf.Extents, memory_order_acquire),
H A Dxray_fdr_logging.cpp253 auto BufferSize = atomic_load(It->Extents, memory_order_acquire);
280 if (atomic_load(&LoggingStatus, memory_order_acquire) !=
367 auto BufferExtents = atomic_load(B.Extents, memory_order_acquire);
449 auto Status = atomic_load(&LoggingStatus, memory_order_acquire);
H A Dxray_profile_collector.cpp115 if (!atomic_load(&CollectorInitialized, memory_order_acquire)) {
233 if (!atomic_load(&CollectorInitialized, memory_order_acquire))
H A Dxray_profiling.cpp208 if (atomic_load(&ProfilerLogStatus, memory_order_acquire) !=
279 auto Status = atomic_load(&ProfilerLogStatus, memory_order_acquire);
H A Dxray_log_interface.cpp201 atomic_load(&XRayBufferIterator, memory_order_acquire));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp119 if (atomic_load(&stack_switching_, memory_order_relaxed)) {
141 if (!atomic_load(&stack_switching_, memory_order_relaxed)) {
163 if (!atomic_load(&stack_switching_, memory_order_acquire)) {
H A Dasan_allocator.cpp291 return atomic_load(&rss_limit_exceeded, memory_order_relaxed);
341 options->min_redzone = atomic_load(&min_redzone, memory_order_acquire);
342 options->max_redzone = atomic_load(&max_redzone, memory_order_acquire);
345 atomic_load(&alloc_dealloc_mismatch, memory_order_acquire);
359 u32 min_rz = atomic_load(&min_redzone, memory_order_acquire);
360 u32 max_rz = atomic_load(&max_redzone, memory_order_acquire);
650 if (atomic_load(&alloc_dealloc_mismatch, memory_order_acquire)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Dstdatomic.h120 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) macro
/freebsd-13-stable/sys/contrib/ck/include/gcc/aarch64/
H A Dck_pr.h70 CK_PR_FENCE(atomic_load, CK_DMB_SY)
/freebsd-13-stable/sys/contrib/ck/include/gcc/sparcv9/
H A Dck_pr.h72 CK_PR_FENCE(atomic_load, "membar #StoreLoad")
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.cpp101 u32 v = atomic_load(ref, memory_order_acquire);
351 if (atomic_load(ref, memory_order_acquire) == 1)
518 u32 v = atomic_load(ref, memory_order_acquire);
H A Dtsan_rtl.cpp178 atomic_load(&ctx->stop_background_thread, memory_order_relaxed) == 0;
213 u64 last = atomic_load(&ctx->last_symbolize_time_ns,
434 if (atomic_load(&bg_thread, memory_order_relaxed) == 0 &&
617 u64 raw = atomic_load((atomic_uint64_t*)p, memory_order_relaxed);
H A Dtsan_interceptors_posix.cpp326 if (atomic_load(&ctx->have_pending_signals, memory_order_relaxed) == 0)
503 atomic_load(&sctx->in_blocking_func, memory_order_relaxed) :
505 buf->in_signal_handler = atomic_load(&thr->in_signal_handler,
864 u32 cmp = atomic_load(g, memory_order_acquire);
949 while ((tid = atomic_load(&p->tid, memory_order_acquire)) == 0)
1013 while (atomic_load(&p.tid, memory_order_acquire) != 0)
1110 uptr cond = atomic_load(p, memory_order_acquire);
1136 CHECK_EQ(atomic_load(&ctx->in_blocking_func, memory_order_relaxed), 1);
1443 u32 v = atomic_load(a, memory_order_acquire);
1453 v = atomic_load(
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp425 while ((tid = atomic_load(&p->tid, memory_order_acquire)) == 0)
462 while (atomic_load(&p.tid, memory_order_acquire) != 0)
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp43 using __sanitizer::atomic_load;
/freebsd-13-stable/sys/contrib/ck/include/gcc/
H A Dck_pr.h134 CK_PR_FENCE(atomic_load)
/freebsd-13-stable/sys/contrib/ck/include/gcc/ppc/
H A Dck_pr.h78 CK_PR_FENCE(atomic_load, "sync")

Completed in 293 milliseconds

1234