2011-02-28 19:06:56 +00:00
|
|
|
//===-- X86ShuffleDecode.cpp - X86 shuffle decode logic -------------------===//
|
2010-09-02 18:40:13 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Define several functions to decode x86 specific shuffle semantics into a
|
|
|
|
// generic vector mask.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
#include "X86ShuffleDecode.h"
|
2010-09-02 18:40:13 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Vector Mask Decoding
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
namespace llvm {
|
2010-09-02 18:40:13 +00:00
|
|
|
|
2010-09-02 22:43:39 +00:00
|
|
|
void DecodeINSERTPSMask(unsigned Imm, SmallVectorImpl<unsigned> &ShuffleMask) {
|
|
|
|
// Defaults the copying the dest value.
|
|
|
|
ShuffleMask.push_back(0);
|
|
|
|
ShuffleMask.push_back(1);
|
|
|
|
ShuffleMask.push_back(2);
|
|
|
|
ShuffleMask.push_back(3);
|
|
|
|
|
|
|
|
// Decode the immediate.
|
|
|
|
unsigned ZMask = Imm & 15;
|
|
|
|
unsigned CountD = (Imm >> 4) & 3;
|
|
|
|
unsigned CountS = (Imm >> 6) & 3;
|
|
|
|
|
|
|
|
// CountS selects which input element to use.
|
|
|
|
unsigned InVal = 4+CountS;
|
|
|
|
// CountD specifies which element of destination to update.
|
|
|
|
ShuffleMask[CountD] = InVal;
|
|
|
|
// ZMask zaps values, potentially overriding the CountD elt.
|
|
|
|
if (ZMask & 1) ShuffleMask[0] = SM_SentinelZero;
|
|
|
|
if (ZMask & 2) ShuffleMask[1] = SM_SentinelZero;
|
|
|
|
if (ZMask & 4) ShuffleMask[2] = SM_SentinelZero;
|
|
|
|
if (ZMask & 8) ShuffleMask[3] = SM_SentinelZero;
|
|
|
|
}
|
|
|
|
|
2010-09-02 21:51:11 +00:00
|
|
|
// <3,1> or <6,7,2,3>
|
2011-02-17 19:18:59 +00:00
|
|
|
void DecodeMOVHLPSMask(unsigned NElts,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
2010-09-02 21:51:11 +00:00
|
|
|
for (unsigned i = NElts/2; i != NElts; ++i)
|
|
|
|
ShuffleMask.push_back(NElts+i);
|
2010-09-02 18:40:13 +00:00
|
|
|
|
2010-09-02 21:51:11 +00:00
|
|
|
for (unsigned i = NElts/2; i != NElts; ++i)
|
|
|
|
ShuffleMask.push_back(i);
|
2010-09-02 18:40:13 +00:00
|
|
|
}
|
|
|
|
|
2010-09-02 21:51:11 +00:00
|
|
|
// <0,2> or <0,1,4,5>
|
2011-02-17 19:18:59 +00:00
|
|
|
void DecodeMOVLHPSMask(unsigned NElts,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
2010-09-02 21:51:11 +00:00
|
|
|
for (unsigned i = 0; i != NElts/2; ++i)
|
|
|
|
ShuffleMask.push_back(i);
|
2010-09-02 18:40:13 +00:00
|
|
|
|
2010-09-02 21:51:11 +00:00
|
|
|
for (unsigned i = 0; i != NElts/2; ++i)
|
|
|
|
ShuffleMask.push_back(NElts+i);
|
2010-09-02 18:40:13 +00:00
|
|
|
}
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
void DecodePSHUFMask(unsigned NElts, unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
2010-09-02 18:40:13 +00:00
|
|
|
for (unsigned i = 0; i != NElts; ++i) {
|
|
|
|
ShuffleMask.push_back(Imm % NElts);
|
|
|
|
Imm /= NElts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
void DecodePSHUFHWMask(unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
2010-09-02 18:40:13 +00:00
|
|
|
ShuffleMask.push_back(0);
|
|
|
|
ShuffleMask.push_back(1);
|
|
|
|
ShuffleMask.push_back(2);
|
|
|
|
ShuffleMask.push_back(3);
|
|
|
|
for (unsigned i = 0; i != 4; ++i) {
|
|
|
|
ShuffleMask.push_back(4+(Imm & 3));
|
|
|
|
Imm >>= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
void DecodePSHUFLWMask(unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
2010-09-02 18:40:13 +00:00
|
|
|
for (unsigned i = 0; i != 4; ++i) {
|
|
|
|
ShuffleMask.push_back((Imm & 3));
|
|
|
|
Imm >>= 2;
|
|
|
|
}
|
|
|
|
ShuffleMask.push_back(4);
|
|
|
|
ShuffleMask.push_back(5);
|
|
|
|
ShuffleMask.push_back(6);
|
|
|
|
ShuffleMask.push_back(7);
|
|
|
|
}
|
|
|
|
|
2011-11-29 07:49:05 +00:00
|
|
|
void DecodeSHUFPMask(EVT VT, unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
|
|
|
unsigned NumElts = VT.getVectorNumElements();
|
|
|
|
|
|
|
|
unsigned NumLanes = VT.getSizeInBits() / 128;
|
|
|
|
unsigned NumLaneElts = NumElts / NumLanes;
|
|
|
|
|
|
|
|
int NewImm = Imm;
|
|
|
|
for (unsigned l = 0; l < NumLanes; ++l) {
|
|
|
|
unsigned LaneStart = l * NumLaneElts;
|
|
|
|
// Part that reads from dest.
|
|
|
|
for (unsigned i = 0; i != NumLaneElts/2; ++i) {
|
|
|
|
ShuffleMask.push_back(NewImm % NumLaneElts + LaneStart);
|
|
|
|
NewImm /= NumLaneElts;
|
|
|
|
}
|
|
|
|
// Part that reads from src.
|
|
|
|
for (unsigned i = 0; i != NumLaneElts/2; ++i) {
|
|
|
|
ShuffleMask.push_back(NewImm % NumLaneElts + NumElts + LaneStart);
|
|
|
|
NewImm /= NumLaneElts;
|
|
|
|
}
|
|
|
|
if (NumLaneElts == 4) NewImm = Imm; // reload imm
|
2010-09-02 18:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-06 05:31:16 +00:00
|
|
|
void DecodeUNPCKHMask(EVT VT, SmallVectorImpl<unsigned> &ShuffleMask) {
|
2011-11-22 01:57:35 +00:00
|
|
|
unsigned NumElts = VT.getVectorNumElements();
|
|
|
|
|
|
|
|
// Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
|
|
|
|
// independently on 128-bit lanes.
|
|
|
|
unsigned NumLanes = VT.getSizeInBits() / 128;
|
|
|
|
if (NumLanes == 0 ) NumLanes = 1; // Handle MMX
|
|
|
|
unsigned NumLaneElts = NumElts / NumLanes;
|
|
|
|
|
|
|
|
for (unsigned s = 0; s < NumLanes; ++s) {
|
|
|
|
unsigned Start = s * NumLaneElts + NumLaneElts/2;
|
|
|
|
unsigned End = s * NumLaneElts + NumLaneElts;
|
|
|
|
for (unsigned i = Start; i != End; ++i) {
|
|
|
|
ShuffleMask.push_back(i); // Reads from dest/src1
|
|
|
|
ShuffleMask.push_back(i+NumElts); // Reads from src/src2
|
|
|
|
}
|
2010-09-02 18:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-06 05:31:16 +00:00
|
|
|
/// DecodeUNPCKLMask - This decodes the shuffle masks for unpcklps/unpcklpd
|
2011-02-28 19:06:56 +00:00
|
|
|
/// etc. VT indicates the type of the vector allowing it to handle different
|
|
|
|
/// datatypes and vector widths.
|
2011-12-06 05:31:16 +00:00
|
|
|
void DecodeUNPCKLMask(EVT VT, SmallVectorImpl<unsigned> &ShuffleMask) {
|
2011-03-02 17:23:43 +00:00
|
|
|
unsigned NumElts = VT.getVectorNumElements();
|
|
|
|
|
2011-07-26 22:03:40 +00:00
|
|
|
// Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
|
|
|
|
// independently on 128-bit lanes.
|
|
|
|
unsigned NumLanes = VT.getSizeInBits() / 128;
|
|
|
|
if (NumLanes == 0 ) NumLanes = 1; // Handle MMX
|
|
|
|
unsigned NumLaneElts = NumElts / NumLanes;
|
2011-03-02 17:23:43 +00:00
|
|
|
|
2011-07-26 22:03:40 +00:00
|
|
|
for (unsigned s = 0; s < NumLanes; ++s) {
|
2011-11-22 01:57:35 +00:00
|
|
|
unsigned Start = s * NumLaneElts;
|
|
|
|
unsigned End = s * NumLaneElts + NumLaneElts/2;
|
2011-03-02 17:23:43 +00:00
|
|
|
for (unsigned i = Start; i != End; ++i) {
|
2011-11-22 01:57:35 +00:00
|
|
|
ShuffleMask.push_back(i); // Reads from dest/src1
|
|
|
|
ShuffleMask.push_back(i+NumElts); // Reads from src/src2
|
2011-03-02 17:23:43 +00:00
|
|
|
}
|
2010-09-02 18:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 06:25:25 +00:00
|
|
|
// DecodeVPERMILPMask - Decodes VPERMILPS/ VPERMILPD permutes for any 128-bit
|
|
|
|
// 32-bit or 64-bit elements. For 256-bit vectors, it's considered as two 128
|
|
|
|
// lanes. For VPERMILPS, referenced elements can't cross lanes and the mask of
|
|
|
|
// the first lane must be the same of the second.
|
|
|
|
void DecodeVPERMILPMask(EVT VT, unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
|
|
|
unsigned NumElts = VT.getVectorNumElements();
|
Add support for 256-bit versions of VPERMIL instruction. This is a new
instruction introduced in AVX, which can operate on 128 and 256-bit vectors.
It considers a 256-bit vector as two independent 128-bit lanes. It can permute
any 32 or 64 elements inside a lane, and restricts the second lane to
have the same permutation of the first one. With the improved splat support
introduced early today, adding codegen for this instruction enable more
efficient 256-bit code:
Instead of:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vextractf128 $1, %ymm0, %xmm1
shufps $1, %xmm1, %xmm1
movss %xmm1, 28(%rsp)
movss %xmm1, 24(%rsp)
movss %xmm1, 20(%rsp)
movss %xmm1, 16(%rsp)
vextractf128 $0, %ymm0, %xmm0
shufps $1, %xmm0, %xmm0
movss %xmm0, 12(%rsp)
movss %xmm0, 8(%rsp)
movss %xmm0, 4(%rsp)
movss %xmm0, (%rsp)
vmovaps (%rsp), %ymm0
We get:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vpermilps $85, %ymm0, %ymm0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135662 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-21 01:55:47 +00:00
|
|
|
|
2011-11-30 06:25:25 +00:00
|
|
|
unsigned NumLanes = VT.getSizeInBits() / 128;
|
|
|
|
unsigned NumLaneElts = NumElts / NumLanes;
|
Add support for 256-bit versions of VPERMIL instruction. This is a new
instruction introduced in AVX, which can operate on 128 and 256-bit vectors.
It considers a 256-bit vector as two independent 128-bit lanes. It can permute
any 32 or 64 elements inside a lane, and restricts the second lane to
have the same permutation of the first one. With the improved splat support
introduced early today, adding codegen for this instruction enable more
efficient 256-bit code:
Instead of:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vextractf128 $1, %ymm0, %xmm1
shufps $1, %xmm1, %xmm1
movss %xmm1, 28(%rsp)
movss %xmm1, 24(%rsp)
movss %xmm1, 20(%rsp)
movss %xmm1, 16(%rsp)
vextractf128 $0, %ymm0, %xmm0
shufps $1, %xmm0, %xmm0
movss %xmm0, 12(%rsp)
movss %xmm0, 8(%rsp)
movss %xmm0, 4(%rsp)
movss %xmm0, (%rsp)
vmovaps (%rsp), %ymm0
We get:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vpermilps $85, %ymm0, %ymm0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135662 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-21 01:55:47 +00:00
|
|
|
|
2011-11-30 06:25:25 +00:00
|
|
|
for (unsigned l = 0; l != NumLanes; ++l) {
|
|
|
|
unsigned LaneStart = l*NumLaneElts;
|
|
|
|
for (unsigned i = 0; i != NumLaneElts; ++i) {
|
|
|
|
unsigned Idx = NumLaneElts == 4 ? (Imm >> (i*2)) & 0x3
|
|
|
|
: (Imm >> (i+LaneStart)) & 0x1;
|
|
|
|
ShuffleMask.push_back(Idx+LaneStart);
|
Add support for 256-bit versions of VPERMIL instruction. This is a new
instruction introduced in AVX, which can operate on 128 and 256-bit vectors.
It considers a 256-bit vector as two independent 128-bit lanes. It can permute
any 32 or 64 elements inside a lane, and restricts the second lane to
have the same permutation of the first one. With the improved splat support
introduced early today, adding codegen for this instruction enable more
efficient 256-bit code:
Instead of:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vextractf128 $1, %ymm0, %xmm1
shufps $1, %xmm1, %xmm1
movss %xmm1, 28(%rsp)
movss %xmm1, 24(%rsp)
movss %xmm1, 20(%rsp)
movss %xmm1, 16(%rsp)
vextractf128 $0, %ymm0, %xmm0
shufps $1, %xmm0, %xmm0
movss %xmm0, 12(%rsp)
movss %xmm0, 8(%rsp)
movss %xmm0, 4(%rsp)
movss %xmm0, (%rsp)
vmovaps (%rsp), %ymm0
We get:
vextractf128 $0, %ymm0, %xmm0
punpcklbw %xmm0, %xmm0
punpckhbw %xmm0, %xmm0
vinsertf128 $0, %xmm0, %ymm0, %ymm1
vinsertf128 $1, %xmm0, %ymm1, %ymm0
vpermilps $85, %ymm0, %ymm0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135662 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-21 01:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-12 21:48:26 +00:00
|
|
|
void DecodeVPERM2F128Mask(EVT VT, unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
|
|
|
unsigned HalfSize = VT.getVectorNumElements()/2;
|
|
|
|
unsigned FstHalfBegin = (Imm & 0x3) * HalfSize;
|
|
|
|
unsigned SndHalfBegin = ((Imm >> 4) & 0x3) * HalfSize;
|
|
|
|
|
|
|
|
for (int i = FstHalfBegin, e = FstHalfBegin+HalfSize; i != e; ++i)
|
|
|
|
ShuffleMask.push_back(i);
|
|
|
|
for (int i = SndHalfBegin, e = SndHalfBegin+HalfSize; i != e; ++i)
|
|
|
|
ShuffleMask.push_back(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecodeVPERM2F128Mask(unsigned Imm,
|
|
|
|
SmallVectorImpl<unsigned> &ShuffleMask) {
|
|
|
|
// VPERM2F128 is used by any 256-bit EVT, but X86InstComments only
|
|
|
|
// has information about the instruction and not the types. So for
|
|
|
|
// instruction comments purpose, assume the 256-bit vector is v4i64.
|
|
|
|
return DecodeVPERM2F128Mask(MVT::v4i64, Imm, ShuffleMask);
|
|
|
|
}
|
|
|
|
|
2011-02-17 19:18:59 +00:00
|
|
|
} // llvm namespace
|