mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
b3ecd3b03e
System z branches have a mask to select which of the 4 CC values should cause the branch to be taken. We can invert a branch by inverting the mask. However, not all instructions can produce all 4 CC values, so inverting the branch like this can lead to some oddities. For example, integer comparisons only produce a CC of 0 (equal), 1 (less) or 2 (greater). If an integer EQ is reversed to NE before instruction selection, the branch will test for 1 or 2. If instead the branch is reversed after instruction selection (by inverting the mask), it will test for 1, 2 or 3. Both are correct, but the second isn't really canonical. This patch therefore keeps track of which CC values are possible and uses this when inverting a mask. Although this is mostly cosmestic, it fixes undefined behavior for the CIJNLH in branch-08.ll. Another fix would have been to mask out bit 0 when generating the fused compare and branch, but the point of this patch is that we shouldn't need to do that in the first place. The patch also makes it easier to reuse CC results from other instructions. llvm-svn: 187495
141 lines
3.7 KiB
LLVM
141 lines
3.7 KiB
LLVM
; Test 64-bit atomic minimum and maximum.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
; Check signed minium.
|
|
define i64 @f1(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: [[LOOP:\.[^:]*]]:
|
|
; CHECK: lgr [[NEW:%r[0-9]+]], %r2
|
|
; CHECK: cgrjle %r2, %r4, [[KEEP:\..*]]
|
|
; CHECK: lgr [[NEW]], %r4
|
|
; CHECK: csg %r2, [[NEW]], 0(%r3)
|
|
; CHECK: jl [[LOOP]]
|
|
; CHECK: br %r14
|
|
%res = atomicrmw min i64 *%src, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check signed maximum.
|
|
define i64 @f2(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: [[LOOP:\.[^:]*]]:
|
|
; CHECK: lgr [[NEW:%r[0-9]+]], %r2
|
|
; CHECK: cgrjhe %r2, %r4, [[KEEP:\..*]]
|
|
; CHECK: lgr [[NEW]], %r4
|
|
; CHECK: csg %r2, [[NEW]], 0(%r3)
|
|
; CHECK: jl [[LOOP]]
|
|
; CHECK: br %r14
|
|
%res = atomicrmw max i64 *%src, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check unsigned minimum.
|
|
define i64 @f3(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: [[LOOP:\.[^:]*]]:
|
|
; CHECK: clgr %r2, %r4
|
|
; CHECK: lgr [[NEW:%r[0-9]+]], %r2
|
|
; CHECK: jle [[KEEP:\..*]]
|
|
; CHECK: lgr [[NEW]], %r4
|
|
; CHECK: csg %r2, [[NEW]], 0(%r3)
|
|
; CHECK: jl [[LOOP]]
|
|
; CHECK: br %r14
|
|
%res = atomicrmw umin i64 *%src, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check unsigned maximum.
|
|
define i64 @f4(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: [[LOOP:\.[^:]*]]:
|
|
; CHECK: clgr %r2, %r4
|
|
; CHECK: lgr [[NEW:%r[0-9]+]], %r2
|
|
; CHECK: jhe [[KEEP:\..*]]
|
|
; CHECK: lgr [[NEW]], %r4
|
|
; CHECK: csg %r2, [[NEW]], 0(%r3)
|
|
; CHECK: jl [[LOOP]]
|
|
; CHECK: br %r14
|
|
%res = atomicrmw umax i64 *%src, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check the high end of the aligned CSG range.
|
|
define i64 @f5(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: lg %r2, 524280(%r3)
|
|
; CHECK: csg %r2, {{%r[0-9]+}}, 524280(%r3)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i64 *%src, i64 65535
|
|
%res = atomicrmw min i64 *%ptr, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check the next doubleword up, which requires separate address logic.
|
|
define i64 @f6(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: agfi %r3, 524288
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: csg %r2, {{%r[0-9]+}}, 0(%r3)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i64 *%src, i64 65536
|
|
%res = atomicrmw min i64 *%ptr, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check the low end of the CSG range.
|
|
define i64 @f7(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: lg %r2, -524288(%r3)
|
|
; CHECK: csg %r2, {{%r[0-9]+}}, -524288(%r3)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i64 *%src, i64 -65536
|
|
%res = atomicrmw min i64 *%ptr, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check the next doubleword down, which requires separate address logic.
|
|
define i64 @f8(i64 %dummy, i64 *%src, i64 %b) {
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: agfi %r3, -524296
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: csg %r2, {{%r[0-9]+}}, 0(%r3)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr i64 *%src, i64 -65537
|
|
%res = atomicrmw min i64 *%ptr, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check that indexed addresses are not allowed.
|
|
define i64 @f9(i64 %dummy, i64 %base, i64 %index, i64 %b) {
|
|
; CHECK-LABEL: f9:
|
|
; CHECK: agr %r3, %r4
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: csg %r2, {{%r[0-9]+}}, 0(%r3)
|
|
; CHECK: br %r14
|
|
%add = add i64 %base, %index
|
|
%ptr = inttoptr i64 %add to i64 *
|
|
%res = atomicrmw min i64 *%ptr, i64 %b seq_cst
|
|
ret i64 %res
|
|
}
|
|
|
|
; Check that constants are handled.
|
|
define i64 @f10(i64 %dummy, i64 *%ptr) {
|
|
; CHECK-LABEL: f10:
|
|
; CHECK: lghi [[LIMIT:%r[0-9]+]], 42
|
|
; CHECK: lg %r2, 0(%r3)
|
|
; CHECK: [[LOOP:\.[^:]*]]:
|
|
; CHECK: lgr [[NEW:%r[0-9]+]], %r2
|
|
; CHECK: cgrjle %r2, [[LIMIT]], [[KEEP:\..*]]
|
|
; CHECK: lghi [[NEW]], 42
|
|
; CHECK: csg %r2, [[NEW]], 0(%r3)
|
|
; CHECK: jl [[LOOP]]
|
|
; CHECK: br %r14
|
|
%res = atomicrmw min i64 *%ptr, i64 42 seq_cst
|
|
ret i64 %res
|
|
}
|