Home
last modified time | relevance | path

Searched refs:SynchronizationScope (Results 1 – 23 of 23) sorted by relevance

/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp60 llvm::SynchronizationScope synchScope = llvm::CrossThread,
67 llvm::SynchronizationScope SynchScope = llvm::CrossThread,
H A DsharkBuilder.cpp520 …teAtomicLoad(Value* ptr, unsigned align, AtomicOrdering ordering, SynchronizationScope synchScope,… in CreateAtomicLoad()
524 …(Value* val, Value* ptr, unsigned align, AtomicOrdering ordering, SynchronizationScope synchScope,… in CreateAtomicStore()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp60 llvm::SynchronizationScope synchScope = llvm::CrossThread,
67 llvm::SynchronizationScope SynchScope = llvm::CrossThread,
H A DsharkBuilder.cpp520 …teAtomicLoad(Value* ptr, unsigned align, AtomicOrdering ordering, SynchronizationScope synchScope,… in CreateAtomicLoad()
524 …(Value* val, Value* ptr, unsigned align, AtomicOrdering ordering, SynchronizationScope synchScope,… in CreateAtomicStore()
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/lang/clover/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/graphics/mesa-dri/mesa-21.3.6/src/gallium/drivers/swr/rasterizer/jitter/
H A Djit_pch.hpp132 static const auto Sync_CrossThread = llvm::SynchronizationScope::CrossThread;
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_ssa/src/mir/
H A Dintrinsic.rs376 use crate::common::{AtomicRmwBinOp, SynchronizationScope}; in codegen_intrinsic_call()
489 bx.atomic_fence(order, SynchronizationScope::CrossThread); in codegen_intrinsic_call()
494 bx.atomic_fence(order, SynchronizationScope::SingleThread); in codegen_intrinsic_call()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_ssa/src/traits/
H A Dbuilder.rs10 AtomicOrdering, AtomicRmwBinOp, IntPredicate, RealPredicate, SynchronizationScope,
288 fn atomic_fence(&mut self, order: AtomicOrdering, scope: SynchronizationScope); in atomic_fence() argument
/dports/graphics/vulkan-extension-layer/Vulkan-ExtensionLayer-1.2.203/layers/
H A Dsynchronization2.h32 enum SynchronizationScope { kFirst, kSecond }; enum
H A Dsynchronization2.cpp557 …ags ConvertPipelineStageMask(VkPipelineStageFlags2KHR stage_mask, SynchronizationScope scope, cons… in ConvertPipelineStageMask()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_llvm/src/llvm/
H A Dffi.rs380 pub enum SynchronizationScope { enum
385 impl SynchronizationScope { implementation
386 pub fn from_generic(sc: rustc_codegen_ssa::common::SynchronizationScope) -> Self { in from_generic()
388 rustc_codegen_ssa::common::SynchronizationScope::SingleThread => { in from_generic()
389 SynchronizationScope::SingleThread in from_generic()
391 rustc_codegen_ssa::common::SynchronizationScope::CrossThread => { in from_generic()
392 SynchronizationScope::CrossThread in from_generic()
1721 Scope: SynchronizationScope, in LLVMRustBuildAtomicFence() argument
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_ssa/src/
H A Dcommon.rs73 pub enum SynchronizationScope { enum
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/src/
H A Dbuilder.rs19 …n_ssa::common::{AtomicOrdering, AtomicRmwBinOp, IntPredicate, RealPredicate, SynchronizationScope};
1356 fn atomic_fence(&mut self, order: AtomicOrdering, scope: SynchronizationScope) { in atomic_fence() argument
1359 SynchronizationScope::SingleThread => "__atomic_signal_fence", in atomic_fence()
1360 SynchronizationScope::CrossThread => "__atomic_thread_fence", in atomic_fence()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_llvm/src/
H A Dbuilder.rs4 use crate::llvm::{AtomicOrdering, AtomicRmwBinOp, SynchronizationScope};
1114 scope: rustc_codegen_ssa::common::SynchronizationScope, in atomic_fence() argument
1120 SynchronizationScope::from_generic(scope), in atomic_fence()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Runtime/System/Activities/Statements/
H A DInterop.cs1372 validationResults.Add(InteropValidationEnum.SynchronizationScope); in ProcessAtRootLevel()
1495 SynchronizationScope, enumerator