2018-07-12 04:25:49 +08:00
|
|
|
; RUN: llc < %s -asm-verbose=false -mtriple=aarch64-none-eabi -mattr=-fullfp16 | FileCheck -allow-deprecated-dag-overlap %s --check-prefix=CHECK-CVT --check-prefix=CHECK
|
|
|
|
; RUN: llc < %s -asm-verbose=false -mtriple=aarch64-none-eabi -mattr=+fullfp16 | FileCheck -allow-deprecated-dag-overlap %s --check-prefix=CHECK-FP16 --check-prefix=CHECK
|
2014-08-28 00:16:04 +08:00
|
|
|
|
|
|
|
define <8 x half> @add_h(<8 x half> %a, <8 x half> %b) {
|
|
|
|
entry:
|
2017-09-15 17:24:48 +08:00
|
|
|
; CHECK-CVT-LABEL: add_h:
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fadd
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: add_h:
|
|
|
|
; CHECK-FP16: fadd v0.8h, v0.8h, v1.8h
|
|
|
|
; CHECK-FP16-NEXT: ret
|
|
|
|
|
2014-08-28 00:16:04 +08:00
|
|
|
%0 = fadd <8 x half> %a, %b
|
|
|
|
ret <8 x half> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @sub_h(<8 x half> %a, <8 x half> %b) {
|
|
|
|
entry:
|
2017-09-15 17:24:48 +08:00
|
|
|
; CHECK-CVT-LABEL: sub_h:
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fsub
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: sub_h:
|
|
|
|
; CHECK-FP16: fsub v0.8h, v0.8h, v1.8h
|
|
|
|
; CHECK-FP16-NEXT: ret
|
|
|
|
|
2014-08-28 00:16:04 +08:00
|
|
|
%0 = fsub <8 x half> %a, %b
|
|
|
|
ret <8 x half> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @mul_h(<8 x half> %a, <8 x half> %b) {
|
|
|
|
entry:
|
2017-09-15 17:24:48 +08:00
|
|
|
; CHECK-CVT-LABEL: mul_h:
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fmul
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: mul_h:
|
|
|
|
; CHECK-FP16: fmul v0.8h, v0.8h, v1.8h
|
|
|
|
; CHECK-FP16-NEXT: ret
|
|
|
|
|
2014-08-28 00:16:04 +08:00
|
|
|
%0 = fmul <8 x half> %a, %b
|
|
|
|
ret <8 x half> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @div_h(<8 x half> %a, <8 x half> %b) {
|
|
|
|
entry:
|
2017-09-15 17:24:48 +08:00
|
|
|
; CHECK-CVT-LABEL: div_h:
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fdiv
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT-DAG: fcvt
|
|
|
|
; CHECK-CVT: fcvt
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: div_h:
|
|
|
|
; CHECK-FP16: fdiv v0.8h, v0.8h, v1.8h
|
|
|
|
; CHECK-FP16-NEXT: ret
|
|
|
|
|
2014-08-28 00:16:04 +08:00
|
|
|
%0 = fdiv <8 x half> %a, %b
|
|
|
|
ret <8 x half> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @load_h(<8 x half>* %a) {
|
|
|
|
entry:
|
|
|
|
; CHECK-LABEL: load_h:
|
|
|
|
; CHECK: ldr q0, [x0]
|
2015-02-28 05:17:42 +08:00
|
|
|
%0 = load <8 x half>, <8 x half>* %a, align 4
|
2014-08-28 00:16:04 +08:00
|
|
|
ret <8 x half> %0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define void @store_h(<8 x half>* %a, <8 x half> %b) {
|
|
|
|
entry:
|
|
|
|
; CHECK-LABEL: store_h:
|
|
|
|
; CHECK: str q0, [x0]
|
|
|
|
store <8 x half> %b, <8 x half>* %a, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x half> @s_to_h(<8 x float> %a) {
|
|
|
|
; CHECK-LABEL: s_to_h:
|
|
|
|
; CHECK-DAG: fcvtn v0.4h, v0.4s
|
|
|
|
; CHECK-DAG: fcvtn [[REG:v[0-9+]]].4h, v1.4s
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK: mov v0.d[1], [[REG]].d[0]
|
2014-08-28 00:16:04 +08:00
|
|
|
%1 = fptrunc <8 x float> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x half> @d_to_h(<8 x double> %a) {
|
|
|
|
; CHECK-LABEL: d_to_h:
|
2015-02-03 01:55:57 +08:00
|
|
|
; CHECK-DAG: mov d{{[0-9]+}}, v{{[0-9]+}}.d[1]
|
|
|
|
; CHECK-DAG: mov d{{[0-9]+}}, v{{[0-9]+}}.d[1]
|
|
|
|
; CHECK-DAG: mov d{{[0-9]+}}, v{{[0-9]+}}.d[1]
|
|
|
|
; CHECK-DAG: mov d{{[0-9]+}}, v{{[0-9]+}}.d[1]
|
2014-08-28 00:16:04 +08:00
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
|
|
|
; CHECK-DAG: fcvt h
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
|
|
|
; CHECK-DAG: mov v{{[0-9]+}}.h
|
2014-08-28 00:16:04 +08:00
|
|
|
%1 = fptrunc <8 x double> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x float> @h_to_s(<8 x half> %a) {
|
|
|
|
; CHECK-LABEL: h_to_s:
|
|
|
|
; CHECK: fcvtl2 v1.4s, v0.8h
|
|
|
|
; CHECK: fcvtl v0.4s, v0.4h
|
|
|
|
%1 = fpext <8 x half> %a to <8 x float>
|
|
|
|
ret <8 x float> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x double> @h_to_d(<8 x half> %a) {
|
|
|
|
; CHECK-LABEL: h_to_d:
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
|
|
|
; CHECK-DAG: mov h{{[0-9]+}}, v0.h
|
2014-08-28 00:16:04 +08:00
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
; CHECK-DAG: fcvt d
|
|
|
|
%1 = fpext <8 x half> %a to <8 x double>
|
|
|
|
ret <8 x double> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @bitcast_i_to_h(float, <8 x i16> %a) {
|
|
|
|
; CHECK-LABEL: bitcast_i_to_h:
|
|
|
|
; CHECK: mov v0.16b, v1.16b
|
|
|
|
%2 = bitcast <8 x i16> %a to <8 x half>
|
|
|
|
ret <8 x half> %2
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i16> @bitcast_h_to_i(float, <8 x half> %a) {
|
|
|
|
; CHECK-LABEL: bitcast_h_to_i:
|
|
|
|
; CHECK: mov v0.16b, v1.16b
|
|
|
|
%2 = bitcast <8 x half> %a to <8 x i16>
|
|
|
|
ret <8 x i16> %2
|
|
|
|
}
|
|
|
|
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
|
|
|
|
define <8 x half> @sitofp_i8(<8 x i8> %a) #0 {
|
|
|
|
; CHECK-LABEL: sitofp_i8:
|
|
|
|
; CHECK-NEXT: sshll v[[REG1:[0-9]+]].8h, v0.8b, #0
|
|
|
|
; CHECK-NEXT: sshll2 [[LO:v[0-9]+\.4s]], v[[REG1]].8h, #0
|
|
|
|
; CHECK-NEXT: sshll [[HI:v[0-9]+\.4s]], v[[REG1]].4h, #0
|
|
|
|
; CHECK-DAG: scvtf [[HIF:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-DAG: scvtf [[LOF:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-DAG: fcvtn v[[LOREG:[0-9]+]].4h, [[LOF]]
|
|
|
|
; CHECK-DAG: fcvtn v0.4h, [[HIF]]
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK: mov v0.d[1], v[[LOREG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = sitofp <8 x i8> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @sitofp_i16(<8 x i16> %a) #0 {
|
|
|
|
; CHECK-LABEL: sitofp_i16:
|
2019-03-01 04:21:46 +08:00
|
|
|
; CHECK-FP16-NEXT: scvtf v0.8h, v0.8h
|
|
|
|
; CHECK-CVT-NEXT: sshll2 [[LO:v[0-9]+\.4s]], v0.8h, #0
|
|
|
|
; CHECK-CVT-NEXT: sshll [[HI:v[0-9]+\.4s]], v0.4h, #0
|
|
|
|
; CHECK-CVT-DAG: scvtf [[HIF:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT-DAG: scvtf [[LOF:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT-DAG: fcvtn v[[LOREG:[0-9]+]].4h, [[LOF]]
|
|
|
|
; CHECK-CVT-DAG: fcvtn v0.4h, [[HIF]]
|
|
|
|
; CHECK-CVT-NEXT: mov v0.d[1], v[[LOREG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = sitofp <8 x i16> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @sitofp_i32(<8 x i32> %a) #0 {
|
|
|
|
; CHECK-LABEL: sitofp_i32:
|
|
|
|
; CHECK-DAG: scvtf [[OP1:v[0-9]+\.4s]], v0.4s
|
|
|
|
; CHECK-DAG: scvtf [[OP2:v[0-9]+\.4s]], v1.4s
|
|
|
|
; CHECK-DAG: fcvtn v[[REG:[0-9]+]].4h, [[OP2]]
|
|
|
|
; CHECK-DAG: fcvtn v0.4h, [[OP1]]
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK: mov v0.d[1], v[[REG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = sitofp <8 x i32> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @sitofp_i64(<8 x i64> %a) #0 {
|
|
|
|
; CHECK-LABEL: sitofp_i64:
|
|
|
|
; CHECK-DAG: scvtf [[OP1:v[0-9]+\.2d]], v0.2d
|
|
|
|
; CHECK-DAG: scvtf [[OP2:v[0-9]+\.2d]], v1.2d
|
|
|
|
; CHECK-DAG: fcvtn [[OP3:v[0-9]+]].2s, [[OP1]]
|
|
|
|
; CHECK-DAG: fcvtn2 [[OP3]].4s, [[OP2]]
|
|
|
|
; CHECK: fcvtn v0.4h, [[OP3]].4s
|
|
|
|
%1 = sitofp <8 x i64> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x half> @uitofp_i8(<8 x i8> %a) #0 {
|
|
|
|
; CHECK-LABEL: uitofp_i8:
|
|
|
|
; CHECK-NEXT: ushll v[[REG1:[0-9]+]].8h, v0.8b, #0
|
|
|
|
; CHECK-NEXT: ushll2 [[LO:v[0-9]+\.4s]], v[[REG1]].8h, #0
|
|
|
|
; CHECK-NEXT: ushll [[HI:v[0-9]+\.4s]], v[[REG1]].4h, #0
|
|
|
|
; CHECK-DAG: ucvtf [[HIF:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-DAG: ucvtf [[LOF:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-DAG: fcvtn v[[LOREG:[0-9]+]].4h, [[LOF]]
|
|
|
|
; CHECK-DAG: fcvtn v0.4h, [[HIF]]
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK: mov v0.d[1], v[[LOREG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = uitofp <8 x i8> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @uitofp_i16(<8 x i16> %a) #0 {
|
|
|
|
; CHECK-LABEL: uitofp_i16:
|
2019-03-01 04:21:46 +08:00
|
|
|
; CHECK-FP16-NEXT: ucvtf v0.8h, v0.8h
|
|
|
|
; CHECK-CVT-NEXT: ushll2 [[LO:v[0-9]+\.4s]], v0.8h, #0
|
|
|
|
; CHECK-CVT-NEXT: ushll [[HI:v[0-9]+\.4s]], v0.4h, #0
|
|
|
|
; CHECK-CVT-DAG: ucvtf [[HIF:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT-DAG: ucvtf [[LOF:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT-DAG: fcvtn v[[LOREG:[0-9]+]].4h, [[LOF]]
|
|
|
|
; CHECK-CVT-DAG: fcvtn v0.4h, [[HIF]]
|
|
|
|
; CHECK-CVT-NEXT: mov v0.d[1], v[[LOREG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = uitofp <8 x i16> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @uitofp_i32(<8 x i32> %a) #0 {
|
|
|
|
; CHECK-LABEL: uitofp_i32:
|
|
|
|
; CHECK-DAG: ucvtf [[OP1:v[0-9]+\.4s]], v0.4s
|
|
|
|
; CHECK-DAG: ucvtf [[OP2:v[0-9]+\.4s]], v1.4s
|
|
|
|
; CHECK-DAG: fcvtn v[[REG:[0-9]+]].4h, [[OP2]]
|
|
|
|
; CHECK-DAG: fcvtn v0.4h, [[OP1]]
|
[AArch64][TableGen] Skip tied result operands for InstAlias
Summary:
This patch fixes an issue so that the right alias is printed when the instruction has tied operands. It checks the number of operands in the resulting instruction as opposed to the alias, and then skips over tied operands that should not be printed in the alias.
This allows to generate the preferred assembly syntax for the AArch64 'ins' instruction, which should always be displayed as 'mov' according to the ARM Architecture Reference Manual. Several unit tests have changed as a result, but only to reflect the preferred disassembly. Some other InstAlias patterns (movk/bic/orr) needed a slight adjustment to stop them becoming the default and breaking other unit tests.
Please note that the patch is mostly the same as https://reviews.llvm.org/D29219 which was reverted because of an issue found when running TableGen with the Address Sanitizer. That issue has been addressed in this iteration of the patch.
Reviewers: rengolin, stoklund, huntergr, SjoerdMeijer, rovka
Reviewed By: rengolin, SjoerdMeijer
Subscribers: fhahn, aemerson, javed.absar, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D40030
llvm-svn: 318650
2017-11-20 22:36:40 +08:00
|
|
|
; CHECK: mov v0.d[1], v[[REG]].d[0]
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
%1 = uitofp <8 x i32> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define <8 x half> @uitofp_i64(<8 x i64> %a) #0 {
|
|
|
|
; CHECK-LABEL: uitofp_i64:
|
|
|
|
; CHECK-DAG: ucvtf [[OP1:v[0-9]+\.2d]], v0.2d
|
|
|
|
; CHECK-DAG: ucvtf [[OP2:v[0-9]+\.2d]], v1.2d
|
|
|
|
; CHECK-DAG: fcvtn [[OP3:v[0-9]+]].2s, [[OP1]]
|
|
|
|
; CHECK-DAG: fcvtn2 [[OP3]].4s, [[OP2]]
|
|
|
|
; CHECK: fcvtn v0.4h, [[OP3]].4s
|
|
|
|
%1 = uitofp <8 x i64> %a to <8 x half>
|
|
|
|
ret <8 x half> %1
|
|
|
|
}
|
|
|
|
|
2015-12-09 07:07:06 +08:00
|
|
|
define void @test_insert_at_zero(half %a, <8 x half>* %b) #0 {
|
|
|
|
; CHECK-LABEL: test_insert_at_zero:
|
|
|
|
; CHECK-NEXT: str q0, [x0]
|
|
|
|
; CHECK-NEXT: ret
|
|
|
|
%1 = insertelement <8 x half> undef, half %a, i64 0
|
|
|
|
store <8 x half> %1, <8 x half>* %b, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-12-11 01:16:49 +08:00
|
|
|
define <8 x i8> @fptosi_i8(<8 x half> %a) #0 {
|
|
|
|
; CHECK-LABEL: fptosi_i8:
|
2019-03-07 04:30:06 +08:00
|
|
|
; CHECK-FP16-NEXT: fcvtzs [[LO:v[0-9]+\.8h]], v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtl [[LO:v[0-9]+\.4s]], v0.4h
|
|
|
|
; CHECK-CVT-DAG: fcvtl2 [[HI:v[0-9]+\.4s]], v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtzs [[LOF32:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT-DAG: xtn [[I16:v[0-9]+]].4h, [[LOF32]]
|
|
|
|
; CHECK-CVT-DAG: fcvtzs [[HIF32:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT-DAG: xtn2 [[I16]].8h, [[HIF32]]
|
|
|
|
; CHECK-CVT-DAG: xtn v0.8b, [[I16]].8h
|
|
|
|
; CHECK-FP16-NEXT: xtn v0.8b, [[LO]]
|
|
|
|
; CHECK-NEXT: ret
|
2015-12-11 01:16:49 +08:00
|
|
|
%1 = fptosi<8 x half> %a to <8 x i8>
|
|
|
|
ret <8 x i8> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i16> @fptosi_i16(<8 x half> %a) #0 {
|
|
|
|
; CHECK-LABEL: fptosi_i16:
|
2019-03-07 04:30:06 +08:00
|
|
|
; CHECK-FP16-NEXT: fcvtzs v0.8h, v0.8h
|
|
|
|
; CHECK-CVT_DAG: fcvtl [[LO:v[0-9]+\.4s]], v0.4h
|
|
|
|
; CHECK-CVT_DAG: fcvtl2 [[HI:v[0-9]+\.4s]], v0.8h
|
|
|
|
; CHECK-CVT_DAG: fcvtzs [[LOF32:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT_DAG: xtn [[I16:v[0-9]+]].4h, [[LOF32]]
|
|
|
|
; CHECK-CVT_DAG: fcvtzs [[HIF32:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT_DAG: xtn2 [[I16]].8h, [[HIF32]]
|
|
|
|
; CHECK-COMMON_NEXT: ret
|
2015-12-11 01:16:49 +08:00
|
|
|
%1 = fptosi<8 x half> %a to <8 x i16>
|
|
|
|
ret <8 x i16> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i8> @fptoui_i8(<8 x half> %a) #0 {
|
|
|
|
; CHECK-LABEL: fptoui_i8:
|
2019-03-07 04:30:06 +08:00
|
|
|
; CHECK-FP16-NEXT: fcvtzu [[LO:v[0-9]+\.8h]], v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtl [[LO:v[0-9]+\.4s]], v0.4h
|
|
|
|
; CHECK-CVT-DAG: fcvtl2 [[HI:v[0-9]+\.4s]], v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtzu [[LOF32:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT-DAG: xtn [[I16:v[0-9]+]].4h, [[LOF32]]
|
|
|
|
; CHECK-CVT-DAG: fcvtzu [[HIF32:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT-DAG: xtn2 [[I16]].8h, [[HIF32]]
|
|
|
|
; CHECK-CVT-DAG: xtn v0.8b, [[I16]].8h
|
|
|
|
; CHECK-FP16-NEXT: xtn v0.8b, [[LO]]
|
2015-12-11 01:16:49 +08:00
|
|
|
; CHECK-NEXT: ret
|
|
|
|
%1 = fptoui<8 x half> %a to <8 x i8>
|
|
|
|
ret <8 x i8> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i16> @fptoui_i16(<8 x half> %a) #0 {
|
|
|
|
; CHECK-LABEL: fptoui_i16:
|
2019-03-07 04:30:06 +08:00
|
|
|
; CHECK-FP16-NEXT: fcvtzu v0.8h, v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtl [[LO:v[0-9]+\.4s]], v0.4h
|
|
|
|
; CHECK-CVT-DAG: fcvtl2 [[HI:v[0-9]+\.4s]], v0.8h
|
|
|
|
; CHECK-CVT-DAG: fcvtzu [[LOF32:v[0-9]+\.4s]], [[LO]]
|
|
|
|
; CHECK-CVT-DAG: xtn [[I16:v[0-9]+]].4h, [[LOF32]]
|
|
|
|
; CHECK-CVT-DAG: fcvtzu [[HIF32:v[0-9]+\.4s]], [[HI]]
|
|
|
|
; CHECK-CVT-DAG: xtn2 [[I16]].8h, [[HIF32]]
|
|
|
|
; CHECK-NEXT: ret
|
2015-12-11 01:16:49 +08:00
|
|
|
%1 = fptoui<8 x half> %a to <8 x i16>
|
|
|
|
ret <8 x i16> %1
|
|
|
|
}
|
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
define <8 x i1> @test_fcmp_une(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_une:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmeq v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp une <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ueq(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ueq:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ueq <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ugt(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ugt:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ugt <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_uge(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_uge:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp uge <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ult(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ult:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ult <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ule(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ule:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ule <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_uno(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_uno:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp uno <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_one(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_one:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp one <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_oeq(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_oeq:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmeq v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp oeq <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ogt(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ogt:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ogt <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_oge(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_oge:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp oge <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_olt(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_olt:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp olt <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ole(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ole:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ole <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
|
|
|
define <8 x i1> @test_fcmp_ord(<8 x half> %a, <8 x half> %b) #0 {
|
2017-09-15 17:24:48 +08:00
|
|
|
; FileCheck checks are unwieldy with 16 fcvt and 8 csel tests, so skipped for -fullfp16.
|
|
|
|
|
|
|
|
; CHECK-FP16-LABEL: test_fcmp_ord:
|
|
|
|
; CHECK-FP16-NOT: fcvt
|
2019-02-28 08:31:38 +08:00
|
|
|
; CHECK-FP16-DAG: fcmge v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
|
|
|
; CHECK-FP16-DAG: fcmgt v{{[0-9]}}.8h, v{{[0-9]}}.8h
|
2017-09-15 17:24:48 +08:00
|
|
|
|
2016-01-22 09:16:57 +08:00
|
|
|
%1 = fcmp ord <8 x half> %a, %b
|
|
|
|
ret <8 x i1> %1
|
|
|
|
}
|
|
|
|
|
[AArch64] Handle vec4, vec8, vec16 *itofp for half
Summary:
Set operation action for SINT_TO_FP and UINT_TO_FP nodes with v4i32,
v8i8, v8i16 inputs to allow promotion of v4f16 results.
Add tests for sitofp and uitofp for vec4, vec8, vec16, and i8, i16, i32,
and i64 vectors. Only missing tests are for v16i8 and v16i16 as the
shift operations are too complicated to write a proper check sequence.
The conversions from v4i64 to v4f16 do not depend on this patch - v4i64
is split and the conversion gets handled while lowering v2i64. I am
adding a test here for completeness.
Reviewers: aemerson, rengolin, ab, jmolloy, srhines
Subscribers: rengolin, aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D9166
llvm-svn: 235609
2015-04-24 01:16:27 +08:00
|
|
|
attributes #0 = { nounwind }
|