blob: 74b9c6a4f6eb6826e5ba6d97a6733b5c20608548 [file] [log] [blame]
Evan Cheng8608f2e2008-04-19 02:30:38 +00001; RUN: llvm-as < %s | llc -march=ppc32 | grep lwarx | count 4
2; RUN: llvm-as < %s | llc -march=ppc32 | grep stwcx. | count 4
3
4define i32 @exchange_and_add(i32* %mem, i32 %val) nounwind {
5 %tmp = call i32 @llvm.atomic.las.i32( i32* %mem, i32 %val )
6 ret i32 %tmp
7}
8
9define i32 @exchange_and_cmp(i32* %mem) nounwind {
10 %tmp = call i32 @llvm.atomic.lcs.i32( i32* %mem, i32 0, i32 1 )
11 ret i32 %tmp
12}
13
14define i16 @exchange_and_cmp16(i16* %mem) nounwind {
15 %tmp = call i16 @llvm.atomic.lcs.i16( i16* %mem, i16 0, i16 1 )
16 ret i16 %tmp
17}
18
19define i32 @exchange(i32* %mem, i32 %val) nounwind {
20 %tmp = call i32 @llvm.atomic.swap.i32( i32* %mem, i32 1 )
21 ret i32 %tmp
22}
23
24declare i32 @llvm.atomic.las.i32(i32*, i32) nounwind
25declare i32 @llvm.atomic.lcs.i32(i32*, i32, i32) nounwind
26declare i16 @llvm.atomic.lcs.i16(i16*, i16, i16) nounwind
27declare i32 @llvm.atomic.swap.i32(i32*, i32) nounwind