aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-24 21:16:59 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-24 21:16:59 +0000
commitbbc87a3a9ac82f2560a59a1ae37c89d3d5af4f39 (patch)
treea2041d34d66de60befbd521a7044cc6133e0ead7
parenta4c86ab073d4b7a36477fc7c54c9d52499f04586 (diff)
Basic tests for atomic load and store on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138486 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/atomic-load-store.ll22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/CodeGen/X86/atomic-load-store.ll b/test/CodeGen/X86/atomic-load-store.ll
new file mode 100644
index 0000000000..7738ace4ff
--- /dev/null
+++ b/test/CodeGen/X86/atomic-load-store.ll
@@ -0,0 +1,22 @@
+; RUN: llc < %s -mtriple=x86_64-apple-macosx10.7.0 | FileCheck %s
+
+define void @test1(i32* %ptr, i32 %val1) {
+; CHECK: test1
+; CHECK: xchgl %esi, (%rdi)
+ store atomic i32 %val1, i32* %ptr seq_cst, align 4
+ ret void
+}
+
+define void @test2(i32* %ptr, i32 %val1) {
+; CHECK: test2
+; CHECK: movl %esi, (%rdi)
+ store atomic i32 %val1, i32* %ptr release, align 4
+ ret void
+}
+
+define i32 @test3(i32* %ptr) {
+; CHECK: test3
+; CHECK: movl (%rdi), %eax
+ %val = load atomic i32* %ptr seq_cst, align 4
+ ret i32 %val
+}