mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
24ed4de261
http://reviews.llvm.org/D9891 Following up on the VSX single precision loads and stores added earlier, this adds support for elementary arithmetic operations on single precision values in VSX registers. These instructions utilize the new VSSRC register class. Instructions added: xsaddsp xsdivsp xsmulsp xsresp xsrsqrtesp xssqrtsp xssubsp git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237937 91177308-0d34-0410-b5e6-96231b3b80d8
121 lines
2.8 KiB
LLVM
121 lines
2.8 KiB
LLVM
; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr8 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr8 | FileCheck %s
|
|
@a = global float 3.000000e+00, align 4
|
|
@b = global float 4.000000e+00, align 4
|
|
@c = global double 3.000000e+00, align 8
|
|
@d = global double 4.000000e+00, align 8
|
|
|
|
; Function Attrs: nounwind
|
|
define float @emit_xsaddsp() {
|
|
entry:
|
|
%0 = load float, float* @a, align 4
|
|
%1 = load float, float* @b, align 4
|
|
%add = fadd float %0, %1
|
|
ret float %add
|
|
; CHECK-LABEL: @emit_xsaddsp
|
|
; CHECK: xsaddsp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define float @emit_xssubsp() {
|
|
entry:
|
|
%0 = load float, float* @a, align 4
|
|
%1 = load float, float* @b, align 4
|
|
%sub = fsub float %0, %1
|
|
ret float %sub
|
|
; CHECK-LABEL: @emit_xssubsp
|
|
; CHECK: xssubsp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define float @emit_xsdivsp() {
|
|
entry:
|
|
%0 = load float, float* @a, align 4
|
|
%1 = load float, float* @b, align 4
|
|
%div = fdiv float %0, %1
|
|
ret float %div
|
|
; CHECK-LABEL: @emit_xsdivsp
|
|
; CHECK: xsdivsp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define float @emit_xsmulsp() {
|
|
entry:
|
|
%0 = load float, float* @a, align 4
|
|
%1 = load float, float* @b, align 4
|
|
%mul = fmul float %0, %1
|
|
ret float %mul
|
|
; CHECK-LABEL: @emit_xsmulsp
|
|
; CHECK: xsmulsp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define float @emit_xssqrtsp() {
|
|
entry:
|
|
%0 = load float, float* @b, align 4
|
|
%call = call float @sqrtf(float %0)
|
|
ret float %call
|
|
; CHECK-LABEL: @emit_xssqrtsp
|
|
; CHECK: xssqrtsp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
declare float @sqrtf(float)
|
|
|
|
; Function Attrs: nounwind
|
|
define double @emit_xsadddp() {
|
|
entry:
|
|
%0 = load double, double* @c, align 8
|
|
%1 = load double, double* @d, align 8
|
|
%add = fadd double %0, %1
|
|
ret double %add
|
|
; CHECK-LABEL: @emit_xsadddp
|
|
; CHECK: xsadddp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define double @emit_xssubdp() {
|
|
entry:
|
|
%0 = load double, double* @c, align 8
|
|
%1 = load double, double* @d, align 8
|
|
%sub = fsub double %0, %1
|
|
ret double %sub
|
|
; CHECK-LABEL: @emit_xssubdp
|
|
; CHECK: xssubdp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define double @emit_xsdivdp() {
|
|
entry:
|
|
%0 = load double, double* @c, align 8
|
|
%1 = load double, double* @d, align 8
|
|
%div = fdiv double %0, %1
|
|
ret double %div
|
|
; CHECK-LABEL: @emit_xsdivdp
|
|
; CHECK: xsdivdp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define double @emit_xsmuldp() {
|
|
entry:
|
|
%0 = load double, double* @c, align 8
|
|
%1 = load double, double* @d, align 8
|
|
%mul = fmul double %0, %1
|
|
ret double %mul
|
|
; CHECK-LABEL: @emit_xsmuldp
|
|
; CHECK: xsmuldp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define double @emit_xssqrtdp() {
|
|
entry:
|
|
%0 = load double, double* @d, align 8
|
|
%call = call double @sqrt(double %0)
|
|
ret double %call
|
|
; CHECK-LABEL: @emit_xssqrtdp
|
|
; CHECK: xssqrtdp {{[0-9]+}}
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
declare double @sqrt(double)
|