mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
52869bf5bf
llvm-svn: 156059
29 lines
1.3 KiB
LLVM
29 lines
1.3 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=core-avx2 -mattr=+avx2 | FileCheck %s
|
|
|
|
; Make sure that we don't match this shuffle using the vpblendw YMM instruction.
|
|
; The mask for the vpblendw instruction needs to be identical for both halves
|
|
; of the YMM. Need to use two vpblendw instructions.
|
|
|
|
; CHECK: blendw1
|
|
; CHECK: vpblendw
|
|
; CHECK: vpblendw
|
|
; CHECK: ret
|
|
define <16 x i16> @blendw1(<16 x i16> %a, <16 x i16> %b) nounwind alwaysinline {
|
|
%t = shufflevector <16 x i16> %a, <16 x i16> %b, <16 x i32> <i32 0, i32 17, i32 18, i32 3, i32 20, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 31>
|
|
ret <16 x i16> %t
|
|
}
|
|
|
|
; CHECK: vpshufhw $27, %ymm
|
|
define <16 x i16> @vpshufhw(<16 x i16> %src1) nounwind uwtable readnone ssp {
|
|
entry:
|
|
%shuffle.i = shufflevector <16 x i16> %src1, <16 x i16> %src1, <16 x i32> <i32 0, i32 1, i32 2, i32 3, i32 7, i32 6, i32 5, i32 4, i32 8, i32 9, i32 10, i32 11, i32 15, i32 14, i32 13, i32 12>
|
|
ret <16 x i16> %shuffle.i
|
|
}
|
|
|
|
; CHECK: vpshuflw $27, %ymm
|
|
define <16 x i16> @vpshuflw(<16 x i16> %src1) nounwind uwtable readnone ssp {
|
|
entry:
|
|
%shuffle.i = shufflevector <16 x i16> %src1, <16 x i16> %src1, <16 x i32> <i32 3, i32 undef, i32 1, i32 0, i32 4, i32 5, i32 6, i32 7, i32 11, i32 10, i32 9, i32 8, i32 12, i32 13, i32 14, i32 15>
|
|
ret <16 x i16> %shuffle.i
|
|
}
|