mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
The benchmarking summarized in http://lists.llvm.org/pipermail/llvm-dev/2017-May/113525.html showed this is beneficial for a wide range of cores. As is to be expected, quite a few small adaptations are needed to the regressions tests, as the difference in scheduling results in: - Quite a few small instruction schedule differences. - A few changes in register allocation decisions caused by different instruction schedules. - A few changes in IfConversion decisions, due to a difference in instruction schedule and/or the estimated cost of a branch mispredict. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306514 91177308-0d34-0410-b5e6-96231b3b80d8
60 lines
1.8 KiB
LLVM
60 lines
1.8 KiB
LLVM
; RUN: llc < %s -mtriple=armv7-apple-ios -verify-machineinstrs | FileCheck %s
|
|
|
|
define void @test_cmpxchg_weak(i32 *%addr, i32 %desired, i32 %new) {
|
|
; CHECK-LABEL: test_cmpxchg_weak:
|
|
|
|
%pair = cmpxchg weak i32* %addr, i32 %desired, i32 %new seq_cst monotonic
|
|
%oldval = extractvalue { i32, i1 } %pair, 0
|
|
; CHECK-NEXT: BB#0:
|
|
; CHECK-NEXT: ldrex [[LOADED:r[0-9]+]], [r0]
|
|
; CHECK-NEXT: cmp [[LOADED]], r1
|
|
; CHECK-NEXT: bne [[LDFAILBB:LBB[0-9]+_[0-9]+]]
|
|
; CHECK-NEXT: BB#1:
|
|
; CHECK-NEXT: dmb ish
|
|
; CHECK-NEXT: strex [[SUCCESS:r[0-9]+]], r2, [r0]
|
|
; CHECK-NEXT: cmp [[SUCCESS]], #0
|
|
; CHECK-NEXT: beq [[SUCCESSBB:LBB[0-9]+_[0-9]+]]
|
|
; CHECK-NEXT: BB#2:
|
|
; CHECK-NEXT: str r3, [r0]
|
|
; CHECK-NEXT: bx lr
|
|
; CHECK-NEXT: [[LDFAILBB]]:
|
|
; CHECK-NEXT: clrex
|
|
; CHECK-NEXT: str r3, [r0]
|
|
; CHECK-NEXT: bx lr
|
|
; CHECK-NEXT: [[SUCCESSBB]]:
|
|
; CHECK-NEXT: dmb ish
|
|
; CHECK-NEXT: str r3, [r0]
|
|
; CHECK-NEXT: bx lr
|
|
|
|
store i32 %oldval, i32* %addr
|
|
ret void
|
|
}
|
|
|
|
|
|
define i1 @test_cmpxchg_weak_to_bool(i32, i32 *%addr, i32 %desired, i32 %new) {
|
|
; CHECK-LABEL: test_cmpxchg_weak_to_bool:
|
|
|
|
%pair = cmpxchg weak i32* %addr, i32 %desired, i32 %new seq_cst monotonic
|
|
%success = extractvalue { i32, i1 } %pair, 1
|
|
|
|
; CHECK-NEXT: BB#0:
|
|
; CHECK-NEXT: ldrex [[LOADED:r[0-9]+]], [r1]
|
|
; CHECK-NEXT: cmp [[LOADED]], r2
|
|
; CHECK-NEXT: bne [[LDFAILBB:LBB[0-9]+_[0-9]+]]
|
|
; CHECK-NEXT: BB#1:
|
|
; CHECK-NEXT: dmb ish
|
|
; CHECK-NEXT: mov r0, #0
|
|
; CHECK-NEXT: strex [[SUCCESS:r[0-9]+]], r3, [r1]
|
|
; CHECK-NEXT: cmp [[SUCCESS]], #0
|
|
; CHECK-NEXT: bxne lr
|
|
; CHECK-NEXT: mov r0, #1
|
|
; CHECK-NEXT: dmb ish
|
|
; CHECK-NEXT: bx lr
|
|
; CHECK-NEXT: [[LDFAILBB]]:
|
|
; CHECK-NEXT: mov r0, #0
|
|
; CHECK-NEXT: clrex
|
|
; CHECK-NEXT: bx lr
|
|
|
|
ret i1 %success
|
|
}
|