mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
9105f66d6f
I'm doing this in two phases for a better "git blame" record. This commit removes the previous AArch64 backend and redirects all functionality to ARM64. It also deduplicates test-lines and removes orphaned AArch64 tests. The next step will be "git mv ARM64 AArch64" and rewire most of the tests. Hopefully LLVM is still functional, though it would be even better if no-one ever had to care because the rename happens straight afterwards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209576 91177308-0d34-0410-b5e6-96231b3b80d8
109 lines
4.0 KiB
LLVM
109 lines
4.0 KiB
LLVM
; RUN: llc < %s -verify-machineinstrs -mtriple=arm64-none-linux-gnu -mattr=+neon -fp-contract=fast | FileCheck %s
|
|
|
|
declare float @llvm.fma.f32(float, float, float)
|
|
declare double @llvm.fma.f64(double, double, double)
|
|
|
|
define float @test_fmla_ss4S(float %a, float %b, <4 x float> %v) {
|
|
; CHECK-LABEL: test_fmla_ss4S
|
|
; CHECK: fmla {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[3]
|
|
%tmp1 = extractelement <4 x float> %v, i32 3
|
|
%tmp2 = call float @llvm.fma.f32(float %b, float %tmp1, float %a)
|
|
ret float %tmp2
|
|
}
|
|
|
|
define float @test_fmla_ss4S_swap(float %a, float %b, <4 x float> %v) {
|
|
; CHECK-LABEL: test_fmla_ss4S_swap
|
|
; CHECK: fmla {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[3]
|
|
%tmp1 = extractelement <4 x float> %v, i32 3
|
|
%tmp2 = call float @llvm.fma.f32(float %tmp1, float %a, float %a)
|
|
ret float %tmp2
|
|
}
|
|
|
|
define float @test_fmla_ss2S(float %a, float %b, <2 x float> %v) {
|
|
; CHECK-LABEL: test_fmla_ss2S
|
|
; CHECK: fmla {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[1]
|
|
%tmp1 = extractelement <2 x float> %v, i32 1
|
|
%tmp2 = call float @llvm.fma.f32(float %b, float %tmp1, float %a)
|
|
ret float %tmp2
|
|
}
|
|
|
|
define double @test_fmla_ddD(double %a, double %b, <1 x double> %v) {
|
|
; CHECK-LABEL: test_fmla_ddD
|
|
; CHECK: {{fmla d[0-9]+, d[0-9]+, v[0-9]+.d\[0]|fmadd d[0-9]+, d[0-9]+, d[0-9]+, d[0-9]+}}
|
|
%tmp1 = extractelement <1 x double> %v, i32 0
|
|
%tmp2 = call double @llvm.fma.f64(double %b, double %tmp1, double %a)
|
|
ret double %tmp2
|
|
}
|
|
|
|
define double @test_fmla_dd2D(double %a, double %b, <2 x double> %v) {
|
|
; CHECK-LABEL: test_fmla_dd2D
|
|
; CHECK: fmla {{d[0-9]+}}, {{d[0-9]+}}, {{v[0-9]+}}.d[1]
|
|
%tmp1 = extractelement <2 x double> %v, i32 1
|
|
%tmp2 = call double @llvm.fma.f64(double %b, double %tmp1, double %a)
|
|
ret double %tmp2
|
|
}
|
|
|
|
define double @test_fmla_dd2D_swap(double %a, double %b, <2 x double> %v) {
|
|
; CHECK-LABEL: test_fmla_dd2D_swap
|
|
; CHECK: fmla {{d[0-9]+}}, {{d[0-9]+}}, {{v[0-9]+}}.d[1]
|
|
%tmp1 = extractelement <2 x double> %v, i32 1
|
|
%tmp2 = call double @llvm.fma.f64(double %tmp1, double %b, double %a)
|
|
ret double %tmp2
|
|
}
|
|
|
|
define float @test_fmls_ss4S(float %a, float %b, <4 x float> %v) {
|
|
; CHECK-LABEL: test_fmls_ss4S
|
|
; CHECK: fmls {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[3]
|
|
%tmp1 = extractelement <4 x float> %v, i32 3
|
|
%tmp2 = fsub float -0.0, %tmp1
|
|
%tmp3 = call float @llvm.fma.f32(float %tmp2, float %tmp1, float %a)
|
|
ret float %tmp3
|
|
}
|
|
|
|
define float @test_fmls_ss4S_swap(float %a, float %b, <4 x float> %v) {
|
|
; CHECK-LABEL: test_fmls_ss4S_swap
|
|
; CHECK: fmls {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[3]
|
|
%tmp1 = extractelement <4 x float> %v, i32 3
|
|
%tmp2 = fsub float -0.0, %tmp1
|
|
%tmp3 = call float @llvm.fma.f32(float %tmp1, float %tmp2, float %a)
|
|
ret float %tmp3
|
|
}
|
|
|
|
|
|
define float @test_fmls_ss2S(float %a, float %b, <2 x float> %v) {
|
|
; CHECK-LABEL: test_fmls_ss2S
|
|
; CHECK: fmls {{s[0-9]+}}, {{s[0-9]+}}, {{v[0-9]+}}.s[1]
|
|
%tmp1 = extractelement <2 x float> %v, i32 1
|
|
%tmp2 = fsub float -0.0, %tmp1
|
|
%tmp3 = call float @llvm.fma.f32(float %tmp2, float %tmp1, float %a)
|
|
ret float %tmp3
|
|
}
|
|
|
|
define double @test_fmls_ddD(double %a, double %b, <1 x double> %v) {
|
|
; CHECK-LABEL: test_fmls_ddD
|
|
; CHECK: {{fmls d[0-9]+, d[0-9]+, v[0-9]+.d\[0]|fmsub d[0-9]+, d[0-9]+, d[0-9]+, d[0-9]+}}
|
|
%tmp1 = extractelement <1 x double> %v, i32 0
|
|
%tmp2 = fsub double -0.0, %tmp1
|
|
%tmp3 = call double @llvm.fma.f64(double %tmp2, double %tmp1, double %a)
|
|
ret double %tmp3
|
|
}
|
|
|
|
define double @test_fmls_dd2D(double %a, double %b, <2 x double> %v) {
|
|
; CHECK-LABEL: test_fmls_dd2D
|
|
; CHECK: fmls {{d[0-9]+}}, {{d[0-9]+}}, {{v[0-9]+}}.d[1]
|
|
%tmp1 = extractelement <2 x double> %v, i32 1
|
|
%tmp2 = fsub double -0.0, %tmp1
|
|
%tmp3 = call double @llvm.fma.f64(double %tmp2, double %tmp1, double %a)
|
|
ret double %tmp3
|
|
}
|
|
|
|
define double @test_fmls_dd2D_swap(double %a, double %b, <2 x double> %v) {
|
|
; CHECK-LABEL: test_fmls_dd2D_swap
|
|
; CHECK: fmls {{d[0-9]+}}, {{d[0-9]+}}, {{v[0-9]+}}.d[1]
|
|
%tmp1 = extractelement <2 x double> %v, i32 1
|
|
%tmp2 = fsub double -0.0, %tmp1
|
|
%tmp3 = call double @llvm.fma.f64(double %tmp1, double %tmp2, double %a)
|
|
ret double %tmp3
|
|
}
|
|
|