Skip to content

Commit

Permalink
Basic tests for atomic load and store on x86.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138486 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
eefriedman committed Aug 24, 2011
1 parent a4c86ab commit bbc87a3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions 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
}

0 comments on commit bbc87a3

Please sign in to comment.