diff options
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r-- | src/ir/properties.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h index 09486ee34..70f18c276 100644 --- a/src/ir/properties.h +++ b/src/ir/properties.h @@ -486,6 +486,30 @@ inline bool canEmitSelectWithArms(Expression* ifTrue, Expression* ifFalse) { return ifTrue->type.isSingle() && ifFalse->type.isSingle(); } +// If this instruction accesses memory or the heap, or otherwise participates in +// shared memory synchronization, return the memory order corresponding to the +// kind of synchronization it does. Return MemoryOrder::Unordered if there is no +// synchronization. Does not look at children. +inline MemoryOrder getMemoryOrder(Expression* curr) { + if (auto* get = curr->dynCast<StructGet>()) { + return get->order; + } + if (auto* set = curr->dynCast<StructSet>()) { + return set->order; + } + if (auto* load = curr->dynCast<Load>()) { + return load->isAtomic ? MemoryOrder::SeqCst : MemoryOrder::Unordered; + } + if (auto* store = curr->dynCast<Store>()) { + return store->isAtomic ? MemoryOrder::SeqCst : MemoryOrder::Unordered; + } + if (curr->is<AtomicRMW>() || curr->is<AtomicWait>() || + curr->is<AtomicNotify>() || curr->is<AtomicFence>()) { + return MemoryOrder::SeqCst; + } + return MemoryOrder::Unordered; +} + // A "generative" expression is one that can generate different results for the // same inputs, and that difference is *not* explained by other expressions that // interact with this one. This is an intrinsic/internal property of the |