mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-27 13:40:30 +00:00
9100579a4f
Currently, SelectionDAG assumes 8/16-bit cmpxchg returns either a sign extended result, or a zero extended result. SystemZ takes a third option by returning junk in the high bits (rotated contents of the other bytes in the memory word). In that case, don't use Assert*ext, and zero-extend the result ourselves if a comparison is needed. Differential Revision: http://reviews.llvm.org/D19800 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269075 91177308-0d34-0410-b5e6-96231b3b80d8
82 lines
2.1 KiB
LLVM
82 lines
2.1 KiB
LLVM
; Test proper extension of 8-bit/16-bit cmpxchg.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
; CHECK-LABEL: f1
|
|
; CHECK: crjlh
|
|
; CHECK-NOT: llcr
|
|
; CHECK-NOT: cr
|
|
; CHECK: llgcr %r2, [[RES:%r[0-9]+]]
|
|
; CHECK-NOT: llcr
|
|
; CHECK-NOT: cr
|
|
define zeroext i8 @f1(i8* nocapture, i8 zeroext, i8 zeroext) {
|
|
%cx = cmpxchg i8* %0, i8 %1, i8 %2 seq_cst seq_cst
|
|
%res = extractvalue { i8, i1 } %cx, 0
|
|
ret i8 %res
|
|
}
|
|
|
|
; CHECK-LABEL: f2
|
|
; CHECK: crjlh
|
|
; CHECK-NOT: llhr
|
|
; CHECK-NOT: cr
|
|
; CHECK: llghr %r2, [[RES:%r[0-9]+]]
|
|
; CHECK-NOT: llhr
|
|
; CHECK-NOT: cr
|
|
define zeroext i16 @f2(i16* nocapture, i16 zeroext, i16 zeroext) {
|
|
%cx = cmpxchg i16* %0, i16 %1, i16 %2 seq_cst seq_cst
|
|
%res = extractvalue { i16, i1 } %cx, 0
|
|
ret i16 %res
|
|
}
|
|
|
|
; CHECK-LABEL: f3
|
|
; CHECK: crjlh
|
|
; CHECK-NOT: llcr
|
|
; CHECK-NOT: cr
|
|
; CHECK: lgbr %r2, [[RES:%r[0-9]+]]
|
|
; CHECK-NOT: llcr
|
|
; CHECK-NOT: cr
|
|
define signext i8 @f3(i8* nocapture, i8 signext, i8 signext) {
|
|
%cx = cmpxchg i8* %0, i8 %1, i8 %2 seq_cst seq_cst
|
|
%res = extractvalue { i8, i1 } %cx, 0
|
|
ret i8 %res
|
|
}
|
|
|
|
; CHECK-LABEL: f4
|
|
; CHECK: crjlh
|
|
; CHECK-NOT: llhr
|
|
; CHECK-NOT: cr
|
|
; CHECK: lghr %r2, [[RES:%r[0-9]+]]
|
|
; CHECK-NOT: llhr
|
|
; CHECK-NOT: cr
|
|
define signext i16 @f4(i16* nocapture, i16 signext, i16 signext) {
|
|
%cx = cmpxchg i16* %0, i16 %1, i16 %2 seq_cst seq_cst
|
|
%res = extractvalue { i16, i1 } %cx, 0
|
|
ret i16 %res
|
|
}
|
|
|
|
; Now use the comparison result.
|
|
; CHECK-LABEL: f5
|
|
; CHECK: llcr [[REG:%r[0-9]+]], [[RES:%r[0-9]+]]
|
|
; CHECK: cr [[REG]], %r3
|
|
define zeroext i8 @f5(i8* nocapture, i8 zeroext, i8 zeroext) {
|
|
%cx = cmpxchg i8* %0, i8 %1, i8 %2 seq_cst seq_cst
|
|
%res = extractvalue { i8, i1 } %cx, 1
|
|
%xres = sext i1 %res to i8
|
|
ret i8 %xres
|
|
}
|
|
|
|
; Now use the comparison result and zero-extended old value.
|
|
; CHECK-LABEL: f6
|
|
; CHECK: llcr [[REG:%r[0-9]+]], [[RES:%r[0-9]+]]
|
|
; CHECK: st [[REG]], 0(%r5)
|
|
; CHECK: cr [[REG]], %r3
|
|
define zeroext i8 @f6(i8* nocapture, i8 zeroext, i8 zeroext, i32*) {
|
|
%cx = cmpxchg i8* %0, i8 %1, i8 %2 seq_cst seq_cst
|
|
%old = extractvalue { i8, i1 } %cx, 0
|
|
%xold = zext i8 %old to i32
|
|
store i32 %xold, i32* %3
|
|
%res = extractvalue { i8, i1 } %cx, 1
|
|
%xres = sext i1 %res to i8
|
|
ret i8 %xres
|
|
}
|