2015-01-06 18:00:21 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=SI < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2015-02-11 14:26:46 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=bonaire < %s | FileCheck -check-prefix=CI -check-prefix=FUNC %s
|
|
|
|
; RUN: llc -march=amdgcn -mcpu=tonga < %s | FileCheck -check-prefix=CI -check-prefix=FUNC %s
|
2014-10-03 23:54:27 +00:00
|
|
|
|
|
|
|
declare double @llvm.trunc.f64(double) nounwind readnone
|
|
|
|
declare <2 x double> @llvm.trunc.v2f64(<2 x double>) nounwind readnone
|
|
|
|
declare <3 x double> @llvm.trunc.v3f64(<3 x double>) nounwind readnone
|
|
|
|
declare <4 x double> @llvm.trunc.v4f64(<4 x double>) nounwind readnone
|
|
|
|
declare <8 x double> @llvm.trunc.v8f64(<8 x double>) nounwind readnone
|
|
|
|
declare <16 x double> @llvm.trunc.v16f64(<16 x double>) nounwind readnone
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_ftrunc_f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64
|
|
|
|
; SI: v_bfe_u32 {{v[0-9]+}}, {{v[0-9]+}}, 20, 11
|
|
|
|
; SI: s_endpgm
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @v_ftrunc_f64(double addrspace(1)* %out, double addrspace(1)* %in) {
|
2015-02-27 21:17:42 +00:00
|
|
|
%x = load double, double addrspace(1)* %in, align 8
|
2014-10-03 23:54:27 +00:00
|
|
|
%y = call double @llvm.trunc.f64(double %x) nounwind readnone
|
|
|
|
store double %y, double addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}ftrunc_f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_bfe_u32 [[SEXP:s[0-9]+]], {{s[0-9]+}}, 0xb0014
|
2015-01-29 16:55:25 +00:00
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 0x80000000
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_add_i32 s{{[0-9]+}}, [[SEXP]], 0xfffffc01
|
|
|
|
; SI: s_lshr_b64
|
|
|
|
; SI: s_not_b64
|
|
|
|
; SI: s_and_b64
|
2015-03-27 06:10:13 +00:00
|
|
|
; SI: cmp_gt_i32
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: cndmask_b32
|
|
|
|
; SI: cndmask_b32
|
2015-03-23 18:45:30 +00:00
|
|
|
; SI: cmp_lt_i32
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: cndmask_b32
|
|
|
|
; SI: cndmask_b32
|
|
|
|
; SI: s_endpgm
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @ftrunc_f64(double addrspace(1)* %out, double %x) {
|
|
|
|
%y = call double @llvm.trunc.f64(double %x) nounwind readnone
|
|
|
|
store double %y, double addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}ftrunc_v2f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @ftrunc_v2f64(<2 x double> addrspace(1)* %out, <2 x double> %x) {
|
|
|
|
%y = call <2 x double> @llvm.trunc.v2f64(<2 x double> %x) nounwind readnone
|
|
|
|
store <2 x double> %y, <2 x double> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FIXME-FUNC-LABEL: {{^}}ftrunc_v3f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; FIXME-CI: v_trunc_f64_e32
|
|
|
|
; FIXME-CI: v_trunc_f64_e32
|
|
|
|
; FIXME-CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
; define void @ftrunc_v3f64(<3 x double> addrspace(1)* %out, <3 x double> %x) {
|
|
|
|
; %y = call <3 x double> @llvm.trunc.v3f64(<3 x double> %x) nounwind readnone
|
|
|
|
; store <3 x double> %y, <3 x double> addrspace(1)* %out
|
|
|
|
; ret void
|
|
|
|
; }
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}ftrunc_v4f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @ftrunc_v4f64(<4 x double> addrspace(1)* %out, <4 x double> %x) {
|
|
|
|
%y = call <4 x double> @llvm.trunc.v4f64(<4 x double> %x) nounwind readnone
|
|
|
|
store <4 x double> %y, <4 x double> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}ftrunc_v8f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @ftrunc_v8f64(<8 x double> addrspace(1)* %out, <8 x double> %x) {
|
|
|
|
%y = call <8 x double> @llvm.trunc.v8f64(<8 x double> %x) nounwind readnone
|
|
|
|
store <8 x double> %y, <8 x double> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}ftrunc_v16f64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
|
|
|
; CI: v_trunc_f64_e32
|
2014-10-03 23:54:27 +00:00
|
|
|
define void @ftrunc_v16f64(<16 x double> addrspace(1)* %out, <16 x double> %x) {
|
|
|
|
%y = call <16 x double> @llvm.trunc.v16f64(<16 x double> %x) nounwind readnone
|
|
|
|
store <16 x double> %y, <16 x double> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|