mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
506ed4d4a5
On pre-v6 hardware, 'MOV lo, lo' gives undefined results, so such copies need to be avoided. This patch trades simplicity for implementation time at the expense of performance... As they say: correctness first, then performance. See http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-August/075998.html for a few ideas on how to make this better. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216138 91177308-0d34-0410-b5e6-96231b3b80d8
54 lines
1.9 KiB
LLVM
54 lines
1.9 KiB
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi -verify-machineinstrs | FileCheck %s -check-prefix=CHECK-ARM
|
|
; RUN: llc < %s -mtriple=thumb-linux-gnueabi -verify-machineinstrs | FileCheck %s -check-prefix=CHECK-THUMB
|
|
|
|
; RUN: llc < %s -mtriple=armv7-linux-gnueabi -verify-machineinstrs | FileCheck %s -check-prefix=CHECK-ARMV7
|
|
; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi -verify-machineinstrs | FileCheck %s -check-prefix=CHECK-THUMBV7
|
|
|
|
define zeroext i1 @test_cmpxchg_res_i8(i8* %addr, i8 %desired, i8 zeroext %new) {
|
|
entry:
|
|
%0 = cmpxchg i8* %addr, i8 %desired, i8 %new monotonic monotonic
|
|
%1 = extractvalue { i8, i1 } %0, 1
|
|
ret i1 %1
|
|
}
|
|
|
|
; CHECK-ARM-LABEL: test_cmpxchg_res_i8
|
|
; CHECK-ARM: bl __sync_val_compare_and_swap_1
|
|
; CHECK-ARM: mov [[REG:r[0-9]+]], #0
|
|
; CHECK-ARM: cmp r0, {{r[0-9]+}}
|
|
; CHECK-ARM: moveq [[REG]], #1
|
|
; CHECK-ARM: mov r0, [[REG]]
|
|
|
|
; CHECK-THUMB-LABEL: test_cmpxchg_res_i8
|
|
; CHECK-THUMB: bl __sync_val_compare_and_swap_1
|
|
; CHECK-THUMB-NOT: mov [[R1:r[0-7]]], r0
|
|
; CHECK-THUMB: push {r0}
|
|
; CHECK-THUMB: pop {[[R1:r[0-7]]]}
|
|
; CHECK-THUMB: movs r0, #1
|
|
; CHECK-THUMB: movs [[R2:r[0-9]+]], #0
|
|
; CHECK-THUMB: cmp [[R1]], {{r[0-9]+}}
|
|
; CHECK-THU<B: beq
|
|
; CHECK-THUMB: push {[[R2]]}
|
|
; CHECK-THUMB: pop {r0}
|
|
|
|
; CHECK-ARMV7-LABEL: test_cmpxchg_res_i8
|
|
; CHECK-ARMV7: ldrexb [[R3:r[0-9]+]], [r0]
|
|
; CHECK-ARMV7: mov [[R1:r[0-9]+]], #0
|
|
; CHECK-ARMV7: cmp [[R3]], {{r[0-9]+}}
|
|
; CHECK-ARMV7: bne
|
|
; CHECK-ARMV7: strexb [[R3]], {{r[0-9]+}}, [{{r[0-9]+}}]
|
|
; CHECK-ARMV7: mov [[R1]], #1
|
|
; CHECK-ARMV7: cmp [[R3]], #0
|
|
; CHECK-ARMV7: bne
|
|
; CHECK-ARMV7: mov r0, [[R1]]
|
|
|
|
; CHECK-THUMBV7-LABEL: test_cmpxchg_res_i8
|
|
; CHECK-THUMBV7: ldrexb [[R3:r[0-9]+]], [r0]
|
|
; CHECK-THUMBV7: cmp [[R3]], {{r[0-9]+}}
|
|
; CHECK-THUMBV7: movne r0, #0
|
|
; CHECK-THUMBV7: bxne lr
|
|
; CHECK-THUMBV7: strexb [[R3]], {{r[0-9]+}}, [{{r[0-9]+}}]
|
|
; CHECK-THUMBV7: cmp [[R3]], #0
|
|
; CHECK-THUMBV7: itt eq
|
|
; CHECK-THUMBV7: moveq r0, #1
|
|
; CHECK-THUMBV7: bxeq lr
|