mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
e3e2aba431
Summary: Previously if we had a bitcast vector output type that needs promotion and a vector input type that needs widening we would just do a stack store and load to handle the conversion. We can do a little better if we can widen the bitcast to a legal vector type the same size as the widened input type. Then we can do the bitcast between this widened type and the widened input type. Afterwards we can extract_subvector back to the original output and any_extend that. Type legalization will then circle back and handle promotion of the extract_subvector and the any_extend will just be removed. This will avoid going through the stack and allows us to remove a custom version of this legalization from X86. Reviewers: efriedma, RKSimon Reviewed By: efriedma Subscribers: javed.absar, llvm-commits Differential Revision: https://reviews.llvm.org/D53229 llvm-svn: 345567
28 lines
899 B
LLVM
28 lines
899 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=aarch64-unknown-linux-gnu | FileCheck %s
|
|
|
|
; Test cases of bitcasts where one type needs to be widened and one needs to be promoted.
|
|
|
|
define <2 x i16> @bitcast_v2i16_v2f16(<2 x half> %x) {
|
|
; CHECK-LABEL: bitcast_v2i16_v2f16:
|
|
; CHECK: // %bb.0:
|
|
; CHECK-NEXT: // kill: def $d0 killed $d0 def $q0
|
|
; CHECK-NEXT: umov w8, v0.h[0]
|
|
; CHECK-NEXT: fmov s1, w8
|
|
; CHECK-NEXT: umov w8, v0.h[1]
|
|
; CHECK-NEXT: mov v1.s[1], w8
|
|
; CHECK-NEXT: mov v0.16b, v1.16b
|
|
; CHECK-NEXT: ret
|
|
%y = bitcast <2 x half> %x to <2 x i16>
|
|
ret <2 x i16> %y
|
|
}
|
|
|
|
define <2 x half> @bitcast_v2f16_v2i16(<2 x i16> %x) {
|
|
; CHECK-LABEL: bitcast_v2f16_v2i16:
|
|
; CHECK: // %bb.0:
|
|
; CHECK-NEXT: uzp1 v0.4h, v0.4h, v0.4h
|
|
; CHECK-NEXT: ret
|
|
%y = bitcast <2 x i16> %x to <2 x half>
|
|
ret <2 x half> %y
|
|
}
|