summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/atomic-2.ll
blob: 77b7b08d8c225568831e425ff5a55908ce60a0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: llvm-as < %s | llc -march=ppc64 | grep ldarx  | count 3
; RUN: llvm-as < %s | llc -march=ppc64 | grep stdcx. | count 4

define i64 @exchange_and_add(i64* %mem, i64 %val) nounwind  {
	%tmp = call i64 @llvm.atomic.load.add.i64( i64* %mem, i64 %val )
	ret i64 %tmp
}

define i64 @exchange_and_cmp(i64* %mem) nounwind  {
       	%tmp = call i64 @llvm.atomic.cmp.swap.i64( i64* %mem, i64 0, i64 1 )
	ret i64 %tmp
}

define i64 @exchange(i64* %mem, i64 %val) nounwind  {
	%tmp = call i64 @llvm.atomic.swap.i64( i64* %mem, i64 1 )
	ret i64 %tmp
}

declare i64 @llvm.atomic.load.add.i64(i64*, i64) nounwind 
declare i64 @llvm.atomic.cmp.swap.i64(i64*, i64, i64) nounwind 
declare i64 @llvm.atomic.swap.i64(i64*, i64) nounwind 
OpenPOWER on IntegriCloud