[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / cmpxchg8b.ll
blob8eb3dda6b6eba6560f8da81a62f483e920d0801d
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-unknown- -mcpu=core2 | FileCheck %s --check-prefixes=CHECK,X86
3 ; RUN: llc < %s -mtriple=x86_64-unknown- -mcpu=core2 | FileCheck %s --check-prefixes=CHECK,X64
4 ; RUN: llc < %s -mtriple=i686-unknown- -mcpu=i486 | FileCheck %s --check-prefixes=I486
6 ; Basic 64-bit cmpxchg
7 define void @t1(i64* nocapture %p) nounwind ssp {
8 ; X86-LABEL: t1:
9 ; X86:       # %bb.0: # %entry
10 ; X86-NEXT:    pushl %ebx
11 ; X86-NEXT:    pushl %esi
12 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %esi
13 ; X86-NEXT:    xorl %eax, %eax
14 ; X86-NEXT:    xorl %edx, %edx
15 ; X86-NEXT:    xorl %ecx, %ecx
16 ; X86-NEXT:    movl $1, %ebx
17 ; X86-NEXT:    lock cmpxchg8b (%esi)
18 ; X86-NEXT:    popl %esi
19 ; X86-NEXT:    popl %ebx
20 ; X86-NEXT:    retl
22 ; X64-LABEL: t1:
23 ; X64:       # %bb.0: # %entry
24 ; X64-NEXT:    movl $1, %ecx
25 ; X64-NEXT:    xorl %eax, %eax
26 ; X64-NEXT:    lock cmpxchgq %rcx, (%rdi)
27 ; X64-NEXT:    retq
29 ; I486-LABEL: t1:
30 ; I486:       # %bb.0: # %entry
31 ; I486-NEXT:    pushl %ebp
32 ; I486-NEXT:    movl %esp, %ebp
33 ; I486-NEXT:    andl $-8, %esp
34 ; I486-NEXT:    subl $8, %esp
35 ; I486-NEXT:    movl 8(%ebp), %eax
36 ; I486-NEXT:    movl $0, {{[0-9]+}}(%esp)
37 ; I486-NEXT:    movl $0, (%esp)
38 ; I486-NEXT:    movl %esp, %ecx
39 ; I486-NEXT:    pushl $5
40 ; I486-NEXT:    pushl $5
41 ; I486-NEXT:    pushl $0
42 ; I486-NEXT:    pushl $1
43 ; I486-NEXT:    pushl %ecx
44 ; I486-NEXT:    pushl %eax
45 ; I486-NEXT:    calll __atomic_compare_exchange_8
46 ; I486-NEXT:    addl $24, %esp
47 ; I486-NEXT:    movl %ebp, %esp
48 ; I486-NEXT:    popl %ebp
49 ; I486-NEXT:    retl
50 entry:
51   %r = cmpxchg i64* %p, i64 0, i64 1 seq_cst seq_cst
52   ret void