blob: b490f270254c146cc13d9e79726aad9d5de93bd3 [file] [log] [blame]
David Greene20a1cbe2011-02-28 19:06:56 +00001//===-- X86ShuffleDecode.cpp - X86 shuffle decode logic -------------------===//
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Define several functions to decode x86 specific shuffle semantics into a
11// generic vector mask.
12//
13//===----------------------------------------------------------------------===//
14
David Greene3a2b5082011-02-17 19:18:59 +000015#include "X86ShuffleDecode.h"
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000016
17//===----------------------------------------------------------------------===//
18// Vector Mask Decoding
19//===----------------------------------------------------------------------===//
20
David Greene3a2b5082011-02-17 19:18:59 +000021namespace llvm {
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000022
Craig Toppercbc96a62012-03-20 06:42:26 +000023void DecodeINSERTPSMask(unsigned Imm, SmallVectorImpl<int> &ShuffleMask) {
Bruno Cardoso Lopes02a05a62010-09-02 22:43:39 +000024 // Defaults the copying the dest value.
25 ShuffleMask.push_back(0);
26 ShuffleMask.push_back(1);
27 ShuffleMask.push_back(2);
28 ShuffleMask.push_back(3);
29
30 // Decode the immediate.
31 unsigned ZMask = Imm & 15;
32 unsigned CountD = (Imm >> 4) & 3;
33 unsigned CountS = (Imm >> 6) & 3;
34
35 // CountS selects which input element to use.
36 unsigned InVal = 4+CountS;
37 // CountD specifies which element of destination to update.
38 ShuffleMask[CountD] = InVal;
39 // ZMask zaps values, potentially overriding the CountD elt.
40 if (ZMask & 1) ShuffleMask[0] = SM_SentinelZero;
41 if (ZMask & 2) ShuffleMask[1] = SM_SentinelZero;
42 if (ZMask & 4) ShuffleMask[2] = SM_SentinelZero;
43 if (ZMask & 8) ShuffleMask[3] = SM_SentinelZero;
44}
45
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000046// <3,1> or <6,7,2,3>
Craig Toppercbc96a62012-03-20 06:42:26 +000047void DecodeMOVHLPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask) {
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000048 for (unsigned i = NElts/2; i != NElts; ++i)
49 ShuffleMask.push_back(NElts+i);
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000050
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000051 for (unsigned i = NElts/2; i != NElts; ++i)
52 ShuffleMask.push_back(i);
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000053}
54
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000055// <0,2> or <0,1,4,5>
Craig Toppercbc96a62012-03-20 06:42:26 +000056void DecodeMOVLHPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask) {
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000057 for (unsigned i = 0; i != NElts/2; ++i)
58 ShuffleMask.push_back(i);
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000059
Bruno Cardoso Lopes814a69c2010-09-02 21:51:11 +000060 for (unsigned i = 0; i != NElts/2; ++i)
61 ShuffleMask.push_back(NElts+i);
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000062}
63
Craig Topper8fb09f02013-01-28 06:48:25 +000064void DecodePALIGNRMask(MVT VT, unsigned Imm,
65 SmallVectorImpl<int> &ShuffleMask) {
Benjamin Kramer6a935962013-01-26 13:31:37 +000066 unsigned NumElts = VT.getVectorNumElements();
67 unsigned Offset = Imm * (VT.getVectorElementType().getSizeInBits() / 8);
68
69 for (unsigned i = 0; i != NumElts; ++i)
70 ShuffleMask.push_back((i + Offset) % (NumElts * 2));
71}
72
Craig Topper1f710572012-02-06 07:17:51 +000073/// DecodePSHUFMask - This decodes the shuffle masks for pshufd, and vpermilp*.
74/// VT indicates the type of the vector allowing it to handle different
75/// datatypes and vector widths.
Craig Topper00a1e6d2012-05-06 19:46:21 +000076void DecodePSHUFMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask) {
Craig Topper1f710572012-02-06 07:17:51 +000077 unsigned NumElts = VT.getVectorNumElements();
78
79 unsigned NumLanes = VT.getSizeInBits() / 128;
80 unsigned NumLaneElts = NumElts / NumLanes;
81
Craig Topperc73bc392012-05-02 08:03:44 +000082 unsigned NewImm = Imm;
Craig Topper1f710572012-02-06 07:17:51 +000083 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
84 for (unsigned i = 0; i != NumLaneElts; ++i) {
85 ShuffleMask.push_back(NewImm % NumLaneElts + l);
86 NewImm /= NumLaneElts;
87 }
88 if (NumLaneElts == 4) NewImm = Imm; // reload imm
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +000089 }
90}
91
Craig Topper00a1e6d2012-05-06 19:46:21 +000092void DecodePSHUFHWMask(MVT VT, unsigned Imm,
Craig Topperc73bc392012-05-02 08:03:44 +000093 SmallVectorImpl<int> &ShuffleMask) {
Craig Topper315a5cc2012-05-03 07:12:59 +000094 unsigned NumElts = VT.getVectorNumElements();
Craig Topperc73bc392012-05-02 08:03:44 +000095
96 for (unsigned l = 0; l != NumElts; l += 8) {
97 unsigned NewImm = Imm;
98 for (unsigned i = 0, e = 4; i != e; ++i) {
99 ShuffleMask.push_back(l + i);
100 }
101 for (unsigned i = 4, e = 8; i != e; ++i) {
102 ShuffleMask.push_back(l + 4 + (NewImm & 3));
103 NewImm >>= 2;
104 }
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000105 }
106}
107
Craig Topper00a1e6d2012-05-06 19:46:21 +0000108void DecodePSHUFLWMask(MVT VT, unsigned Imm,
Craig Topperc73bc392012-05-02 08:03:44 +0000109 SmallVectorImpl<int> &ShuffleMask) {
Craig Topper315a5cc2012-05-03 07:12:59 +0000110 unsigned NumElts = VT.getVectorNumElements();
Craig Topperc73bc392012-05-02 08:03:44 +0000111
112 for (unsigned l = 0; l != NumElts; l += 8) {
113 unsigned NewImm = Imm;
114 for (unsigned i = 0, e = 4; i != e; ++i) {
115 ShuffleMask.push_back(l + (NewImm & 3));
116 NewImm >>= 2;
117 }
118 for (unsigned i = 4, e = 8; i != e; ++i) {
119 ShuffleMask.push_back(l + i);
120 }
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000121 }
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000122}
123
Craig Topper1f710572012-02-06 07:17:51 +0000124/// DecodeSHUFPMask - This decodes the shuffle masks for shufp*. VT indicates
125/// the type of the vector allowing it to handle different datatypes and vector
126/// widths.
Craig Topper00a1e6d2012-05-06 19:46:21 +0000127void DecodeSHUFPMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask) {
Craig Topperc16db842011-11-29 07:49:05 +0000128 unsigned NumElts = VT.getVectorNumElements();
129
130 unsigned NumLanes = VT.getSizeInBits() / 128;
131 unsigned NumLaneElts = NumElts / NumLanes;
132
Craig Topperc73bc392012-05-02 08:03:44 +0000133 unsigned NewImm = Imm;
Craig Topper1f710572012-02-06 07:17:51 +0000134 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
Craig Topper00a1e6d2012-05-06 19:46:21 +0000135 // each half of a lane comes from different source
136 for (unsigned s = 0; s != NumElts*2; s += NumElts) {
137 for (unsigned i = 0; i != NumLaneElts/2; ++i) {
138 ShuffleMask.push_back(NewImm % NumLaneElts + s + l);
139 NewImm /= NumLaneElts;
140 }
Craig Topperc16db842011-11-29 07:49:05 +0000141 }
142 if (NumLaneElts == 4) NewImm = Imm; // reload imm
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000143 }
144}
145
Craig Topper1f710572012-02-06 07:17:51 +0000146/// DecodeUNPCKHMask - This decodes the shuffle masks for unpckhps/unpckhpd
147/// and punpckh*. VT indicates the type of the vector allowing it to handle
148/// different datatypes and vector widths.
Craig Topper00a1e6d2012-05-06 19:46:21 +0000149void DecodeUNPCKHMask(MVT VT, SmallVectorImpl<int> &ShuffleMask) {
Craig Topperccb70972011-11-22 01:57:35 +0000150 unsigned NumElts = VT.getVectorNumElements();
151
152 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
153 // independently on 128-bit lanes.
154 unsigned NumLanes = VT.getSizeInBits() / 128;
155 if (NumLanes == 0 ) NumLanes = 1; // Handle MMX
156 unsigned NumLaneElts = NumElts / NumLanes;
157
Craig Topper1f710572012-02-06 07:17:51 +0000158 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
159 for (unsigned i = l + NumLaneElts/2, e = l + NumLaneElts; i != e; ++i) {
Craig Topperccb70972011-11-22 01:57:35 +0000160 ShuffleMask.push_back(i); // Reads from dest/src1
161 ShuffleMask.push_back(i+NumElts); // Reads from src/src2
162 }
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000163 }
164}
165
Craig Topper3cb802c2011-12-06 05:31:16 +0000166/// DecodeUNPCKLMask - This decodes the shuffle masks for unpcklps/unpcklpd
Craig Topper1f710572012-02-06 07:17:51 +0000167/// and punpckl*. VT indicates the type of the vector allowing it to handle
168/// different datatypes and vector widths.
Craig Topper00a1e6d2012-05-06 19:46:21 +0000169void DecodeUNPCKLMask(MVT VT, SmallVectorImpl<int> &ShuffleMask) {
David Greenedd567b22011-03-02 17:23:43 +0000170 unsigned NumElts = VT.getVectorNumElements();
David Greene20a1cbe2011-02-28 19:06:56 +0000171
Bruno Cardoso Lopesf8fe47b2011-07-26 22:03:40 +0000172 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
173 // independently on 128-bit lanes.
174 unsigned NumLanes = VT.getSizeInBits() / 128;
175 if (NumLanes == 0 ) NumLanes = 1; // Handle MMX
176 unsigned NumLaneElts = NumElts / NumLanes;
David Greene20a1cbe2011-02-28 19:06:56 +0000177
Craig Topper1f710572012-02-06 07:17:51 +0000178 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
179 for (unsigned i = l, e = l + NumLaneElts/2; i != e; ++i) {
Craig Topperccb70972011-11-22 01:57:35 +0000180 ShuffleMask.push_back(i); // Reads from dest/src1
181 ShuffleMask.push_back(i+NumElts); // Reads from src/src2
David Greenedd567b22011-03-02 17:23:43 +0000182 }
Bruno Cardoso Lopesc79f5012010-09-02 18:40:13 +0000183 }
184}
185
Craig Topper00a1e6d2012-05-06 19:46:21 +0000186void DecodeVPERM2X128Mask(MVT VT, unsigned Imm,
Craig Toppercbc96a62012-03-20 06:42:26 +0000187 SmallVectorImpl<int> &ShuffleMask) {
Craig Topper354103d2012-04-17 05:54:54 +0000188 if (Imm & 0x88)
189 return; // Not a shuffle
190
Bruno Cardoso Lopesf15dfe52011-08-12 21:48:26 +0000191 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopesf15dfe52011-08-12 21:48:26 +0000192
Craig Topper00a1e6d2012-05-06 19:46:21 +0000193 for (unsigned l = 0; l != 2; ++l) {
194 unsigned HalfBegin = ((Imm >> (l*4)) & 0x3) * HalfSize;
195 for (unsigned i = HalfBegin, e = HalfBegin+HalfSize; i != e; ++i)
196 ShuffleMask.push_back(i);
197 }
Bruno Cardoso Lopesf15dfe52011-08-12 21:48:26 +0000198}
199
Craig Topper54bdb352012-05-06 18:44:02 +0000200/// DecodeVPERMMask - this decodes the shuffle masks for VPERMQ/VPERMPD.
201/// No VT provided since it only works on 256-bit, 4 element vectors.
202void DecodeVPERMMask(unsigned Imm, SmallVectorImpl<int> &ShuffleMask) {
203 for (unsigned i = 0; i != 4; ++i) {
204 ShuffleMask.push_back((Imm >> (2*i)) & 3);
205 }
206}
207
David Greene3a2b5082011-02-17 19:18:59 +0000208} // llvm namespace