Home
last modified time | relevance | path

Searched refs:seq_cst (Results 1 – 25 of 25) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic_ref.h126 …_LIBCPP_HIDE_FROM_ABI void store(_Tp __desired, memory_order __order = memory_order::seq_cst) cons…
129 …r == memory_order::relaxed || __order == memory_order::release || __order == memory_order::seq_cst,
139 _LIBCPP_HIDE_FROM_ABI _Tp load(memory_order __order = memory_order::seq_cst) const noexcept
143 __order == memory_order::seq_cst,
153 …_LIBCPP_HIDE_FROM_ABI _Tp exchange(_Tp __desired, memory_order __order = memory_order::seq_cst) co…
165 __failure == memory_order::acquire || __failure == memory_order::seq_cst,
180 __failure == memory_order::acquire || __failure == memory_order::seq_cst,
192 …weak(_Tp& __expected, _Tp __desired, memory_order __order = memory_order::seq_cst) const noexcept {
202 …rong(_Tp& __expected, _Tp __desired, memory_order __order = memory_order::seq_cst) const noexcept {
212 …_LIBCPP_HIDE_FROM_ABI void wait(_Tp __old, memory_order __order = memory_order::seq_cst) const noe…
[all …]
H A Dmemory_order.h37 seq_cst = __mo_seq_cst enumerator
48 inline constexpr auto memory_order_seq_cst = memory_order::seq_cst;
/freebsd/contrib/llvm-project/libcxx/include/
H A Datomic35 seq_cst // store-release load-acquire
43 inline constexpr auto memory_order_seq_cst = memory_order::seq_cst;
104 void wait(T, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
105 void wait(T, memory_order = memory_order::seq_cst) const noexcept; // since C++20
187 … void wait(integral, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
188 … void wait(integral, memory_order = memory_order::seq_cst) const noexcept; // since C++20
257 void wait(T*, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
258 void wait(T*, memory_order = memory_order::seq_cst) const noexcept; // since C++20
280 void store(floating-point-type, memory_order = memory_order::seq_cst) volatile noexcept;
281 void store(floating-point-type, memory_order = memory_order::seq_cst) noexcept;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Datomic35 seq_cst // store-release load-acquire
43 inline constexpr auto memory_order_seq_cst = memory_order::seq_cst;
104 void wait(T, memory_order = memory_order::seq_cst) const volatile noexcept;
105 void wait(T, memory_order = memory_order::seq_cst) const noexcept;
187 void wait(integral, memory_order = memory_order::seq_cst) const volatile noexcept;
188 void wait(integral, memory_order = memory_order::seq_cst) const noexcept;
257 void wait(T*, memory_order = memory_order::seq_cst) const volatile noexcept;
258 void wait(T*, memory_order = memory_order::seq_cst) const noexcept;
280 void store(floating-point-type, memory_order = memory_order::seq_cst) volatile noexcept;
281 void store(floating-point-type, memory_order = memory_order::seq_cst) noexcept;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DAtomicOrdering.h34 seq_cst = 5, enumerator
46 I <= (Int)AtomicOrderingCABI::seq_cst; in isValidAtomicOrderingCABI()
156 /* seq_cst */ AtomicOrderingCABI::seq_cst, in toCABI()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenMPKinds.def150 OPENMP_ATOMIC_DEFAULT_MEM_ORDER_KIND(seq_cst)
155 OPENMP_ATOMIC_FAIL_MODIFIER(seq_cst)
H A DDiagnosticSemaKinds.td11860 …"directive '#pragma omp %0' cannot contain more than one 'seq_cst',%select{ 'relaxed',|}1 'acq_rel…
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.inc40 "If set, all atomics are effectively sequentially consistent (seq_cst), "
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Dompx.h.var183 seq_cst = ompx_seq_cst,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAMDGPU.cpp117 case llvm::AtomicOrderingCABI::seq_cst: in CheckAMDGCNBuiltinFunctionCall()
H A DSemaChecking.cpp4478 llvm::AtomicOrderingCABI::seq_cst}, in BuildAtomicExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp453 case llvm::AtomicOrderingCABI::seq_cst: in emitAtomicCmpXchgFailureSet()
481 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst), in emitAtomicCmpXchgFailureSet()
1313 case llvm::AtomicOrderingCABI::seq_cst: in EmitAtomicExpr()
1383 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst), in EmitAtomicExpr()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp3182 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; in makeAddAcquireOrderingTable()
3192 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = in makeAddAcquireOrderingTable()
3193 (int)AtomicOrderingCABI::seq_cst; in makeAddAcquireOrderingTable()
3225 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; in makeAddReleaseOrderingTable()
3235 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = in makeAddReleaseOrderingTable()
3236 (int)AtomicOrderingCABI::seq_cst; in makeAddReleaseOrderingTable()
H A DMemorySanitizer.cpp2244 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; in makeAddReleaseOrderingTable()
2254 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = in makeAddReleaseOrderingTable()
2255 (int)AtomicOrderingCABI::seq_cst; in makeAddReleaseOrderingTable()
2278 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; in makeAddAcquireOrderingTable()
2288 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = in makeAddAcquireOrderingTable()
2289 (int)AtomicOrderingCABI::seq_cst; in makeAddAcquireOrderingTable()
/freebsd/sys/kern/
H A Dsubr_csan.c673 CSAN_ATOMIC_FUNC_THREAD_FENCE(seq_cst)
H A Dsubr_asan.c888 ASAN_ATOMIC_FUNC_THREAD_FENCE(seq_cst);
H A Dsubr_msan.c1372 MSAN_ATOMIC_FUNC_THREAD_FENCE(seq_cst);
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp595 KEYWORD(seq_cst); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td284 def OMP_MEMORY_ORDER_SeqCst : EnumVal<"seq_cst", 1, 1> {}
475 def OMPC_SeqCst : Clause<[Spelling<"seq_cst">]> {
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrAtomics.td496 // assume seq_cst, strong cmpxchg and omit clrex on failure.
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DAMDGPU.cpp219 case llvm::AtomicOrderingCABI::seq_cst: in ProcessOrderScopeAMDGCN()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.td1984 // fence seq_cst -> fence rw, rw
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.td3428 // Only seq_cst fences require the heavyweight sync (SYNC 0).
3431 // The rule for seq_cst is duplicated to work with both 64 bits and 32 bits
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrInfo.td6527 // assume seq_cst, strong cmpxchg and omit clrex on failure.
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXIntrinsics.td1958 …// Note that AtomicExpand will convert cmpxchg seq_cst to a cmpxchg monotonic with fences around i…