2011-09-19 21:41:28 +02:00
|
|
|
; RUN: opt < %s | opt -S | FileCheck %s
|
2014-08-19 23:08:27 +02:00
|
|
|
; RUN: verify-uselistorder %s
|
2011-08-13 00:50:01 +02:00
|
|
|
; Basic smoke test for atomic operations.
|
|
|
|
|
|
|
|
define void @f(i32* %x) {
|
2015-02-27 22:17:42 +01:00
|
|
|
; CHECK: load atomic i32, i32* %x unordered, align 4
|
|
|
|
load atomic i32, i32* %x unordered, align 4
|
2017-07-12 00:23:00 +02:00
|
|
|
; CHECK: load atomic volatile i32, i32* %x syncscope("singlethread") acquire, align 4
|
|
|
|
load atomic volatile i32, i32* %x syncscope("singlethread") acquire, align 4
|
|
|
|
; CHECK: load atomic volatile i32, i32* %x syncscope("agent") acquire, align 4
|
|
|
|
load atomic volatile i32, i32* %x syncscope("agent") acquire, align 4
|
2011-08-13 00:50:01 +02:00
|
|
|
; CHECK: store atomic i32 3, i32* %x release, align 4
|
|
|
|
store atomic i32 3, i32* %x release, align 4
|
2017-07-12 00:23:00 +02:00
|
|
|
; CHECK: store atomic volatile i32 3, i32* %x syncscope("singlethread") monotonic, align 4
|
|
|
|
store atomic volatile i32 3, i32* %x syncscope("singlethread") monotonic, align 4
|
|
|
|
; CHECK: store atomic volatile i32 3, i32* %x syncscope("workgroup") monotonic, align 4
|
|
|
|
store atomic volatile i32 3, i32* %x syncscope("workgroup") monotonic, align 4
|
|
|
|
; CHECK: cmpxchg i32* %x, i32 1, i32 0 syncscope("singlethread") monotonic monotonic
|
|
|
|
cmpxchg i32* %x, i32 1, i32 0 syncscope("singlethread") monotonic monotonic
|
|
|
|
; CHECK: cmpxchg i32* %x, i32 1, i32 0 syncscope("workitem") monotonic monotonic
|
|
|
|
cmpxchg i32* %x, i32 1, i32 0 syncscope("workitem") monotonic monotonic
|
2014-03-11 11:48:52 +01:00
|
|
|
; CHECK: cmpxchg volatile i32* %x, i32 0, i32 1 acq_rel acquire
|
|
|
|
cmpxchg volatile i32* %x, i32 0, i32 1 acq_rel acquire
|
|
|
|
; CHECK: cmpxchg i32* %x, i32 42, i32 0 acq_rel monotonic
|
|
|
|
cmpxchg i32* %x, i32 42, i32 0 acq_rel monotonic
|
IR: add "cmpxchg weak" variant to support permitted failure.
This commit adds a weak variant of the cmpxchg operation, as described
in C++11. A cmpxchg instruction with this modifier is permitted to
fail to store, even if the comparison indicated it should.
As a result, cmpxchg instructions must return a flag indicating
success in addition to their original iN value loaded. Thus, for
uniformity *all* cmpxchg instructions now return "{ iN, i1 }". The
second flag is 1 when the store succeeded.
At the DAG level, a new ATOMIC_CMP_SWAP_WITH_SUCCESS node has been
added as the natural representation for the new cmpxchg instructions.
It is a strong cmpxchg.
By default this gets Expanded to the existing ATOMIC_CMP_SWAP during
Legalization, so existing backends should see no change in behaviour.
If they wish to deal with the enhanced node instead, they can call
setOperationAction on it. Beware: as a node with 2 results, it cannot
be selected from TableGen.
Currently, no use is made of the extra information provided in this
patch. Test updates are almost entirely adapting the input IR to the
new scheme.
Summary for out of tree users:
------------------------------
+ Legacy Bitcode files are upgraded during read.
+ Legacy assembly IR files will be invalid.
+ Front-ends must adapt to different type for "cmpxchg".
+ Backends should be unaffected by default.
llvm-svn: 210903
2014-06-13 16:24:07 +02:00
|
|
|
; CHECK: cmpxchg weak i32* %x, i32 13, i32 0 seq_cst monotonic
|
|
|
|
cmpxchg weak i32* %x, i32 13, i32 0 seq_cst monotonic
|
2011-08-13 00:50:01 +02:00
|
|
|
; CHECK: atomicrmw add i32* %x, i32 10 seq_cst
|
|
|
|
atomicrmw add i32* %x, i32 10 seq_cst
|
|
|
|
; CHECK: atomicrmw volatile xchg i32* %x, i32 10 monotonic
|
|
|
|
atomicrmw volatile xchg i32* %x, i32 10 monotonic
|
2017-07-12 00:23:00 +02:00
|
|
|
; CHECK: atomicrmw volatile xchg i32* %x, i32 10 syncscope("agent") monotonic
|
|
|
|
atomicrmw volatile xchg i32* %x, i32 10 syncscope("agent") monotonic
|
|
|
|
; CHECK: fence syncscope("singlethread") release
|
|
|
|
fence syncscope("singlethread") release
|
2011-08-13 00:50:01 +02:00
|
|
|
; CHECK: fence seq_cst
|
|
|
|
fence seq_cst
|
2017-07-12 00:23:00 +02:00
|
|
|
; CHECK: fence syncscope("device") seq_cst
|
|
|
|
fence syncscope("device") seq_cst
|
2011-08-13 00:50:01 +02:00
|
|
|
ret void
|
|
|
|
}
|