mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
AVX-512: Fixed a bug in shufflevector lowering.
PALIGNR instruction does not exist in AVX-512F set. Added a test. llvm-svn: 215526
This commit is contained in:
parent
d8ea66ecbf
commit
cff52c24c9
@ -3872,7 +3872,8 @@ static bool isAlignrMask(ArrayRef<int> Mask, MVT VT, bool InterLane) {
|
||||
static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
|
||||
const X86Subtarget *Subtarget) {
|
||||
if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
|
||||
(VT.is256BitVector() && !Subtarget->hasInt256()))
|
||||
(VT.is256BitVector() && !Subtarget->hasInt256()) ||
|
||||
VT.is512BitVector())
|
||||
// FIXME: Add AVX512BW.
|
||||
return false;
|
||||
|
||||
|
@ -199,6 +199,24 @@ define <16 x i32> @test15(<16 x i32> %a) {
|
||||
%b = shufflevector <16 x i32> %a, <16 x i32> undef, <16 x i32><i32 1, i32 0, i32 3, i32 2, i32 5, i32 4, i32 7, i32 6, i32 9, i32 8, i32 11, i32 10, i32 13, i32 12, i32 15, i32 14>
|
||||
ret <16 x i32> %b
|
||||
}
|
||||
|
||||
; CHECK-LABEL: valign_test_v16f32
|
||||
; CHECK: valignd $2, %zmm0, %zmm0
|
||||
; CHECK: ret
|
||||
define <16 x float> @valign_test_v16f32(<16 x float> %a, <16 x float> %b) nounwind {
|
||||
%c = shufflevector <16 x float> %a, <16 x float> %b, <16 x i32><i32 2, i32 3, i32 undef, i32 undef, i32 6, i32 7, i32 undef, i32 undef, i32 10, i32 11, i32 undef, i32 undef, i32 14, i32 15, i32 undef, i32 undef>
|
||||
ret <16 x float> %c
|
||||
}
|
||||
|
||||
; CHECK-LABEL: valign_test_v16i32
|
||||
; CHECK: valignd $2, %zmm0, %zmm0
|
||||
; CHECK: ret
|
||||
define <16 x i32> @valign_test_v16i32(<16 x i32> %a, <16 x i32> %b) nounwind {
|
||||
%c = shufflevector <16 x i32> %a, <16 x i32> %b, <16 x i32><i32 2, i32 3, i32 undef, i32 undef, i32 6, i32 7, i32 undef, i32 undef, i32 10, i32 11, i32 undef, i32 undef, i32 14, i32 15, i32 undef, i32 undef>
|
||||
ret <16 x i32> %c
|
||||
}
|
||||
|
||||
|
||||
; CHECK-LABEL: test16
|
||||
; CHECK: valignq $2, %zmm0, %zmm1
|
||||
; CHECK: ret
|
||||
|
Loading…
Reference in New Issue
Block a user