mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
05fbbee99e
Return is now considered a predicable instruction, and is converted to a newly-added CondReturn (which maps to BCR to %r14) instruction by the if conversion pass. Also, fused compare-and-branch transform knows about conditional returns, emitting the proper fused instructions for them. This transform triggers on a *lot* of tests, hence the huge diffstat. The changes are mostly jX to br %r14 -> bXr %r14. Author: koriakin Differential Revision: http://reviews.llvm.org/D17339 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265689 91177308-0d34-0410-b5e6-96231b3b80d8
81 lines
2.0 KiB
LLVM
81 lines
2.0 KiB
LLVM
; Test that floating-point instructions that set cc are used to
|
|
; eliminate compares for load complement, load negative and load
|
|
; positive.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
|
|
|
|
; Load complement (sign-bit flipped).
|
|
; Test f32
|
|
define float @f1(float %a, float %b, float %f) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: lcebr
|
|
; CHECK-NEXT: ber %r14
|
|
%neg = fsub float -0.0, %f
|
|
%cond = fcmp oeq float %neg, 0.0
|
|
%res = select i1 %cond, float %a, float %b
|
|
ret float %res
|
|
}
|
|
|
|
; Test f64
|
|
define double @f2(double %a, double %b, double %f) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: lcdbr
|
|
; CHECK-NEXT: ber %r14
|
|
%neg = fsub double -0.0, %f
|
|
%cond = fcmp oeq double %neg, 0.0
|
|
%res = select i1 %cond, double %a, double %b
|
|
ret double %res
|
|
}
|
|
|
|
; Negation of floating-point absolute.
|
|
; Test f32
|
|
declare float @llvm.fabs.f32(float %f)
|
|
define float @f3(float %a, float %b, float %f) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: lnebr
|
|
; CHECK-NEXT: ber %r14
|
|
%abs = call float @llvm.fabs.f32(float %f)
|
|
%neg = fsub float -0.0, %abs
|
|
%cond = fcmp oeq float %neg, 0.0
|
|
%res = select i1 %cond, float %a, float %b
|
|
ret float %res
|
|
}
|
|
|
|
; Test f64
|
|
declare double @llvm.fabs.f64(double %f)
|
|
define double @f4(double %a, double %b, double %f) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: lndbr
|
|
; CHECK-NEXT: ber %r14
|
|
%abs = call double @llvm.fabs.f64(double %f)
|
|
%neg = fsub double -0.0, %abs
|
|
%cond = fcmp oeq double %neg, 0.0
|
|
%res = select i1 %cond, double %a, double %b
|
|
ret double %res
|
|
}
|
|
|
|
; Absolute floating-point value.
|
|
; Test f32
|
|
define float @f5(float %a, float %b, float %f) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: lpebr
|
|
; CHECK-NEXT: ber %r14
|
|
%abs = call float @llvm.fabs.f32(float %f)
|
|
%cond = fcmp oeq float %abs, 0.0
|
|
%res = select i1 %cond, float %a, float %b
|
|
ret float %res
|
|
}
|
|
|
|
; Test f64
|
|
define double @f6(double %a, double %b, double %f) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: lpdbr
|
|
; CHECK-NEXT: ber %r14
|
|
%abs = call double @llvm.fabs.f64(double %f)
|
|
%cond = fcmp oeq double %abs, 0.0
|
|
%res = select i1 %cond, double %a, double %b
|
|
ret double %res
|
|
}
|
|
|