blob: f8c2f1b1fc69ee8b10a8dc03b52d495db03d2843 [file] [log] [blame]
Eli Friedmanda90dd62009-05-23 12:35:30 +00001//===-- LegalizeVectorOps.cpp - Implement SelectionDAG::LegalizeVectors ---===//
2//
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// This file implements the SelectionDAG::LegalizeVectors method.
11//
12// The vector legalizer looks for vector operations which might need to be
Eli Friedman3b251702009-05-27 07:58:35 +000013// scalarized and legalizes them. This is a separate step from Legalize because
14// scalarizing can introduce illegal types. For example, suppose we have an
Eli Friedmanda90dd62009-05-23 12:35:30 +000015// ISD::SDIV of type v2i64 on x86-32. The type is legal (for example, addition
16// on a v2i64 is legal), but ISD::SDIV isn't legal, so we have to unroll the
17// operation, which introduces nodes with the illegal type i64 which must be
18// expanded. Similarly, suppose we have an ISD::SRA of type v16i8 on PowerPC;
19// the operation must be unrolled, which introduces nodes with the illegal
20// type i8 which must be promoted.
21//
22// This does not legalize vector manipulations like ISD::BUILD_VECTOR,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +000023// or operations that happen to take a vector which are custom-lowered;
24// the legalization for such operations never produces nodes
Eli Friedmanda90dd62009-05-23 12:35:30 +000025// with illegal types, so it's okay to put off legalizing them until
26// SelectionDAG::Legalize runs.
27//
28//===----------------------------------------------------------------------===//
29
30#include "llvm/CodeGen/SelectionDAG.h"
31#include "llvm/Target/TargetLowering.h"
32using namespace llvm;
33
34namespace {
35class VectorLegalizer {
36 SelectionDAG& DAG;
Dan Gohman21cea8a2010-04-17 15:26:15 +000037 const TargetLowering &TLI;
Eli Friedmanda90dd62009-05-23 12:35:30 +000038 bool Changed; // Keep track of whether anything changed
39
Chandler Carruth68adf152014-07-02 02:16:57 +000040 /// For nodes that are of legal width, and that have more than one use, this
41 /// map indicates what regularized operand to use. This allows us to avoid
42 /// legalizing the same thing more than once.
Preston Gurd0959bb72013-01-25 15:18:54 +000043 SmallDenseMap<SDValue, SDValue, 64> LegalizedNodes;
Eli Friedmanda90dd62009-05-23 12:35:30 +000044
Chandler Carruth68adf152014-07-02 02:16:57 +000045 /// \brief Adds a node to the translation cache.
Eli Friedmanda90dd62009-05-23 12:35:30 +000046 void AddLegalizedOperand(SDValue From, SDValue To) {
47 LegalizedNodes.insert(std::make_pair(From, To));
48 // If someone requests legalization of the new node, return itself.
49 if (From != To)
50 LegalizedNodes.insert(std::make_pair(To, To));
51 }
52
Chandler Carruth68adf152014-07-02 02:16:57 +000053 /// \brief Legalizes the given node.
Eli Friedmanda90dd62009-05-23 12:35:30 +000054 SDValue LegalizeOp(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +000055
56 /// \brief Assuming the node is legal, "legalize" the results.
Eli Friedmanda90dd62009-05-23 12:35:30 +000057 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
Chandler Carruth68adf152014-07-02 02:16:57 +000058
59 /// \brief Implements unrolling a VSETCC.
Eli Friedmanda90dd62009-05-23 12:35:30 +000060 SDValue UnrollVSETCC(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +000061
Chandler Carruthc1bedac2014-07-02 06:23:34 +000062 /// \brief Implement expand-based legalization of vector operations.
63 ///
64 /// This is just a high-level routine to dispatch to specific code paths for
65 /// operations to legalize them.
66 SDValue Expand(SDValue Op);
67
Chandler Carruth68adf152014-07-02 02:16:57 +000068 /// \brief Implements expansion for FNEG; falls back to UnrollVectorOp if
69 /// FSUB isn't legal.
70 ///
71 /// Implements expansion for UINT_TO_FLOAT; falls back to UnrollVectorOp if
72 /// SINT_TO_FLOAT and SHR on vectors isn't legal.
Nadav Roteme7a101c2011-03-19 13:09:10 +000073 SDValue ExpandUINT_TO_FLOAT(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +000074
75 /// \brief Implement expansion for SIGN_EXTEND_INREG using SRL and SRA.
Nadav Rotemdbe5c722013-01-11 22:57:48 +000076 SDValue ExpandSEXTINREG(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +000077
Chandler Carruth0b666e02014-07-10 12:32:32 +000078 /// \brief Implement expansion for ANY_EXTEND_VECTOR_INREG.
79 ///
80 /// Shuffles the low lanes of the operand into place and bitcasts to the proper
81 /// type. The contents of the bits in the extended part of each element are
82 /// undef.
83 SDValue ExpandANY_EXTEND_VECTOR_INREG(SDValue Op);
84
85 /// \brief Implement expansion for SIGN_EXTEND_VECTOR_INREG.
86 ///
87 /// Shuffles the low lanes of the operand into place, bitcasts to the proper
88 /// type, then shifts left and arithmetic shifts right to introduce a sign
89 /// extension.
90 SDValue ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op);
91
Chandler Carruthafe4b252014-07-09 10:58:18 +000092 /// \brief Implement expansion for ZERO_EXTEND_VECTOR_INREG.
93 ///
94 /// Shuffles the low lanes of the operand into place and blends zeros into
95 /// the remaining lanes, finally bitcasting to the proper type.
96 SDValue ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op);
97
Chandler Carruth68adf152014-07-02 02:16:57 +000098 /// \brief Expand bswap of vectors into a shuffle if legal.
Benjamin Kramerf3ad2352014-05-19 13:12:38 +000099 SDValue ExpandBSWAP(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000100
101 /// \brief Implement vselect in terms of XOR, AND, OR when blend is not
102 /// supported by the target.
Nadav Rotem52202fb2011-09-13 19:17:42 +0000103 SDValue ExpandVSELECT(SDValue Op);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000104 SDValue ExpandSELECT(SDValue Op);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000105 SDValue ExpandLoad(SDValue Op);
106 SDValue ExpandStore(SDValue Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000107 SDValue ExpandFNEG(SDValue Op);
Matt Arsenaultd0792852015-12-14 17:25:38 +0000108 SDValue ExpandBITREVERSE(SDValue Op);
Craig Topper4b1808d2015-12-27 21:33:47 +0000109 SDValue ExpandCTLZ_CTTZ_ZERO_UNDEF(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000110
111 /// \brief Implements vector promotion.
112 ///
113 /// This is essentially just bitcasting the operands to a different type and
114 /// bitcasting the result back to the original type.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000115 SDValue Promote(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000116
117 /// \brief Implements [SU]INT_TO_FP vector promotion.
118 ///
119 /// This is a [zs]ext of the input operand to the next size up.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000120 SDValue PromoteINT_TO_FP(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000121
122 /// \brief Implements FP_TO_[SU]INT vector promotion of the result type.
123 ///
124 /// It is promoted to the next size up integer type. The result is then
125 /// truncated back to the original type.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000126 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000127
Chandler Carruth68adf152014-07-02 02:16:57 +0000128public:
129 /// \brief Begin legalizer the vector operations in the DAG.
Eli Friedmanda90dd62009-05-23 12:35:30 +0000130 bool Run();
131 VectorLegalizer(SelectionDAG& dag) :
132 DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {}
133};
134
135bool VectorLegalizer::Run() {
Nadav Rotemb7f90bd2013-02-22 23:33:30 +0000136 // Before we start legalizing vector nodes, check if there are any vectors.
137 bool HasVectors = false;
138 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000139 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) {
Nadav Rotemb7f90bd2013-02-22 23:33:30 +0000140 // Check if the values of the nodes contain vectors. We don't need to check
141 // the operands because we are going to check their values at some point.
142 for (SDNode::value_iterator J = I->value_begin(), E = I->value_end();
143 J != E; ++J)
144 HasVectors |= J->isVector();
145
146 // If we found a vector node we can start the legalization.
147 if (HasVectors)
148 break;
149 }
150
151 // If this basic block has no vectors then no need to legalize vectors.
152 if (!HasVectors)
153 return false;
154
Eli Friedmanda90dd62009-05-23 12:35:30 +0000155 // The legalize process is inherently a bottom-up recursive process (users
156 // legalize their uses before themselves). Given infinite stack space, we
157 // could just start legalizing on the root and traverse the whole graph. In
158 // practice however, this causes us to run out of stack space on large basic
159 // blocks. To avoid this problem, compute an ordering of the nodes where each
160 // node is only legalized after all of its operands are legalized.
161 DAG.AssignTopologicalOrder();
162 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000163 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I)
Duncan P. N. Exon Smithe400a7d2015-10-13 19:47:46 +0000164 LegalizeOp(SDValue(&*I, 0));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000165
166 // Finally, it's possible the root changed. Get the new root.
167 SDValue OldRoot = DAG.getRoot();
168 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
169 DAG.setRoot(LegalizedNodes[OldRoot]);
170
171 LegalizedNodes.clear();
172
173 // Remove dead nodes now.
174 DAG.RemoveDeadNodes();
175
176 return Changed;
177}
178
179SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
180 // Generic legalization: just pass the operand through.
181 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i)
182 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
183 return Result.getValue(Op.getResNo());
184}
185
186SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
187 // Note that LegalizeOp may be reentered even from single-use nodes, which
188 // means that we always must cache transformed nodes.
189 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
190 if (I != LegalizedNodes.end()) return I->second;
191
192 SDNode* Node = Op.getNode();
193
194 // Legalize the operands
195 SmallVector<SDValue, 8> Ops;
Pete Cooper8fc121d2015-06-26 19:08:33 +0000196 for (const SDValue &Op : Node->op_values())
197 Ops.push_back(LegalizeOp(Op));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000198
Craig Topper8c0b4d02014-04-28 05:57:50 +0000199 SDValue Result = SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops), 0);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000200
Elena Demikhovsky1b60ed72015-05-03 07:12:25 +0000201 bool HasVectorValue = false;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000202 if (Op.getOpcode() == ISD::LOAD) {
203 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
204 ISD::LoadExtType ExtType = LD->getExtensionType();
Chandler Carruth80b86942014-07-24 22:09:56 +0000205 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD)
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000206 switch (TLI.getLoadExtAction(LD->getExtensionType(), LD->getValueType(0),
207 LD->getMemoryVT())) {
Chandler Carruth80b86942014-07-24 22:09:56 +0000208 default: llvm_unreachable("This action is not supported yet!");
209 case TargetLowering::Legal:
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000210 return TranslateLegalizeResults(Op, Result);
Chandler Carruth80b86942014-07-24 22:09:56 +0000211 case TargetLowering::Custom:
212 if (SDValue Lowered = TLI.LowerOperation(Result, DAG)) {
Hal Finkelcec70132015-02-24 12:59:47 +0000213 if (Lowered == Result)
214 return TranslateLegalizeResults(Op, Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000215 Changed = true;
216 if (Lowered->getNumValues() != Op->getNumValues()) {
217 // This expanded to something other than the load. Assume the
218 // lowering code took care of any chain values, and just handle the
219 // returned value.
220 assert(Result.getValue(1).use_empty() &&
221 "There are still live users of the old chain!");
222 return LegalizeOp(Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000223 }
Mehdi Amini891c0972015-10-27 08:12:08 +0000224 return TranslateLegalizeResults(Op, Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000225 }
226 case TargetLowering::Expand:
227 Changed = true;
228 return LegalizeOp(ExpandLoad(Op));
229 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000230 } else if (Op.getOpcode() == ISD::STORE) {
231 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
232 EVT StVT = ST->getMemoryVT();
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000233 MVT ValVT = ST->getValue().getSimpleValueType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000234 if (StVT.isVector() && ST->isTruncatingStore())
Eric Christopher4675c432015-11-25 09:11:53 +0000235 switch (TLI.getTruncStoreAction(ValVT, StVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +0000236 default: llvm_unreachable("This action is not supported yet!");
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000237 case TargetLowering::Legal:
238 return TranslateLegalizeResults(Op, Result);
Hal Finkelcec70132015-02-24 12:59:47 +0000239 case TargetLowering::Custom: {
240 SDValue Lowered = TLI.LowerOperation(Result, DAG);
241 Changed = Lowered != Result;
242 return TranslateLegalizeResults(Op, Lowered);
243 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000244 case TargetLowering::Expand:
245 Changed = true;
246 return LegalizeOp(ExpandStore(Op));
247 }
Elena Demikhovsky33e61ec2015-12-07 13:39:24 +0000248 } else if (Op.getOpcode() == ISD::MSCATTER || Op.getOpcode() == ISD::MSTORE)
Elena Demikhovsky1b60ed72015-05-03 07:12:25 +0000249 HasVectorValue = true;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000250
Eli Friedmanda90dd62009-05-23 12:35:30 +0000251 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end();
252 J != E;
253 ++J)
254 HasVectorValue |= J->isVector();
255 if (!HasVectorValue)
256 return TranslateLegalizeResults(Op, Result);
257
Owen Anderson53aa7a92009-08-10 22:56:29 +0000258 EVT QueryType;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000259 switch (Op.getOpcode()) {
260 default:
261 return TranslateLegalizeResults(Op, Result);
262 case ISD::ADD:
263 case ISD::SUB:
264 case ISD::MUL:
265 case ISD::SDIV:
266 case ISD::UDIV:
267 case ISD::SREM:
268 case ISD::UREM:
Artyom Skrobovb844fa72015-10-20 13:06:02 +0000269 case ISD::SDIVREM:
270 case ISD::UDIVREM:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000271 case ISD::FADD:
272 case ISD::FSUB:
273 case ISD::FMUL:
274 case ISD::FDIV:
275 case ISD::FREM:
276 case ISD::AND:
277 case ISD::OR:
278 case ISD::XOR:
279 case ISD::SHL:
280 case ISD::SRA:
281 case ISD::SRL:
282 case ISD::ROTL:
283 case ISD::ROTR:
Hal Finkel5c968d92014-02-03 17:27:25 +0000284 case ISD::BSWAP:
Matt Arsenaultd0792852015-12-14 17:25:38 +0000285 case ISD::BITREVERSE:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000286 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000287 case ISD::CTTZ:
288 case ISD::CTLZ_ZERO_UNDEF:
289 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000290 case ISD::CTPOP:
291 case ISD::SELECT:
Nadav Rotem52202fb2011-09-13 19:17:42 +0000292 case ISD::VSELECT:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000293 case ISD::SELECT_CC:
Duncan Sandsf2641e12011-09-06 19:07:46 +0000294 case ISD::SETCC:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000295 case ISD::ZERO_EXTEND:
296 case ISD::ANY_EXTEND:
297 case ISD::TRUNCATE:
298 case ISD::SIGN_EXTEND:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000299 case ISD::FP_TO_SINT:
300 case ISD::FP_TO_UINT:
301 case ISD::FNEG:
302 case ISD::FABS:
Matt Arsenault7c936902014-10-21 23:01:01 +0000303 case ISD::FMINNUM:
304 case ISD::FMAXNUM:
James Molloy01cdecc2015-08-11 09:13:05 +0000305 case ISD::FMINNAN:
306 case ISD::FMAXNAN:
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000307 case ISD::FCOPYSIGN:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000308 case ISD::FSQRT:
309 case ISD::FSIN:
310 case ISD::FCOS:
311 case ISD::FPOWI:
312 case ISD::FPOW:
313 case ISD::FLOG:
314 case ISD::FLOG2:
315 case ISD::FLOG10:
316 case ISD::FEXP:
317 case ISD::FEXP2:
318 case ISD::FCEIL:
319 case ISD::FTRUNC:
320 case ISD::FRINT:
321 case ISD::FNEARBYINT:
Hal Finkel171817e2013-08-07 22:49:12 +0000322 case ISD::FROUND:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000323 case ISD::FFLOOR:
Eli Friedmane6385e62012-11-15 22:44:27 +0000324 case ISD::FP_ROUND:
Eli Friedman30834942012-11-17 01:52:46 +0000325 case ISD::FP_EXTEND:
Craig Topper2da13f92012-08-30 07:34:22 +0000326 case ISD::FMA:
Nadav Rotem771f2962011-07-14 11:11:14 +0000327 case ISD::SIGN_EXTEND_INREG:
Chandler Carruth0b666e02014-07-10 12:32:32 +0000328 case ISD::ANY_EXTEND_VECTOR_INREG:
329 case ISD::SIGN_EXTEND_VECTOR_INREG:
Chandler Carruthafe4b252014-07-09 10:58:18 +0000330 case ISD::ZERO_EXTEND_VECTOR_INREG:
James Molloy7e9776b2015-05-15 09:03:15 +0000331 case ISD::SMIN:
332 case ISD::SMAX:
333 case ISD::UMIN:
334 case ISD::UMAX:
Eli Friedmanaea9b652009-06-06 03:27:50 +0000335 QueryType = Node->getValueType(0);
336 break;
Dan Gohman6bd3ef82010-01-09 02:13:55 +0000337 case ISD::FP_ROUND_INREG:
338 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT();
339 break;
Eli Friedmanaea9b652009-06-06 03:27:50 +0000340 case ISD::SINT_TO_FP:
341 case ISD::UINT_TO_FP:
342 QueryType = Node->getOperand(0).getValueType();
Eli Friedmanda90dd62009-05-23 12:35:30 +0000343 break;
Elena Demikhovsky1b60ed72015-05-03 07:12:25 +0000344 case ISD::MSCATTER:
345 QueryType = cast<MaskedScatterSDNode>(Node)->getValue().getValueType();
346 break;
Elena Demikhovsky33e61ec2015-12-07 13:39:24 +0000347 case ISD::MSTORE:
348 QueryType = cast<MaskedStoreSDNode>(Node)->getValue().getValueType();
349 break;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000350 }
351
Eli Friedmanaea9b652009-06-06 03:27:50 +0000352 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) {
Artyom Skrobovc7368632015-10-20 15:06:37 +0000353 default: llvm_unreachable("This action is not supported yet!");
Eli Friedmanda90dd62009-05-23 12:35:30 +0000354 case TargetLowering::Promote:
Chandler Carruth2746c282014-07-02 03:07:15 +0000355 Result = Promote(Op);
356 Changed = true;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000357 break;
Chandler Carruth2746c282014-07-02 03:07:15 +0000358 case TargetLowering::Legal:
359 break;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000360 case TargetLowering::Custom: {
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +0000361 if (SDValue Tmp1 = TLI.LowerOperation(Op, DAG)) {
Eli Friedmanda90dd62009-05-23 12:35:30 +0000362 Result = Tmp1;
363 break;
364 }
365 // FALL THROUGH
366 }
367 case TargetLowering::Expand:
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000368 Result = Expand(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000369 }
370
371 // Make sure that the generated code is itself legal.
372 if (Result != Op) {
373 Result = LegalizeOp(Result);
374 Changed = true;
375 }
376
377 // Note that LegalizeOp may be reentered even from single-use nodes, which
378 // means that we always must cache transformed nodes.
379 AddLegalizedOperand(Op, Result);
380 return Result;
381}
382
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000383SDValue VectorLegalizer::Promote(SDValue Op) {
Chandler Carruth2746c282014-07-02 03:07:15 +0000384 // For a few operations there is a specific concept for promotion based on
385 // the operand's type.
386 switch (Op.getOpcode()) {
387 case ISD::SINT_TO_FP:
388 case ISD::UINT_TO_FP:
389 // "Promote" the operation by extending the operand.
390 return PromoteINT_TO_FP(Op);
Chandler Carruth2746c282014-07-02 03:07:15 +0000391 case ISD::FP_TO_UINT:
392 case ISD::FP_TO_SINT:
393 // Promote the operation by extending the operand.
394 return PromoteFP_TO_INT(Op, Op->getOpcode() == ISD::FP_TO_SINT);
Chandler Carruth2746c282014-07-02 03:07:15 +0000395 }
396
Oliver Stannard89d15422014-08-27 16:16:04 +0000397 // There are currently two cases of vector promotion:
398 // 1) Bitcasting a vector of integers to a different type to a vector of the
Sanjay Patelf1765662015-03-27 21:45:18 +0000399 // same overall length. For example, x86 promotes ISD::AND v2i32 to v1i64.
400 // 2) Extending a vector of floats to a vector of the same number of larger
Oliver Stannard89d15422014-08-27 16:16:04 +0000401 // floats. For example, AArch64 promotes ISD::FADD on v4f16 to v4f32.
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000402 MVT VT = Op.getSimpleValueType();
Eli Friedmanda90dd62009-05-23 12:35:30 +0000403 assert(Op.getNode()->getNumValues() == 1 &&
404 "Can't promote a vector with multiple results!");
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000405 MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT);
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000406 SDLoc dl(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000407 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
408
409 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
410 if (Op.getOperand(j).getValueType().isVector())
Oliver Stannard89d15422014-08-27 16:16:04 +0000411 if (Op.getOperand(j)
412 .getValueType()
413 .getVectorElementType()
Hal Finkel271e9f22015-02-12 22:43:52 +0000414 .isFloatingPoint() &&
415 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint())
Oliver Stannard89d15422014-08-27 16:16:04 +0000416 Operands[j] = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op.getOperand(j));
417 else
418 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000419 else
420 Operands[j] = Op.getOperand(j);
421 }
Matt Arsenaultd0792852015-12-14 17:25:38 +0000422
Sanjay Patela2607012015-09-16 16:31:21 +0000423 Op = DAG.getNode(Op.getOpcode(), dl, NVT, Operands, Op.getNode()->getFlags());
Hal Finkel271e9f22015-02-12 22:43:52 +0000424 if ((VT.isFloatingPoint() && NVT.isFloatingPoint()) ||
425 (VT.isVector() && VT.getVectorElementType().isFloatingPoint() &&
426 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint()))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000427 return DAG.getNode(ISD::FP_ROUND, dl, VT, Op, DAG.getIntPtrConstant(0, dl));
Oliver Stannard89d15422014-08-27 16:16:04 +0000428 else
429 return DAG.getNode(ISD::BITCAST, dl, VT, Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000430}
431
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000432SDValue VectorLegalizer::PromoteINT_TO_FP(SDValue Op) {
Jim Grosbache0c10d82012-06-28 21:03:44 +0000433 // INT_TO_FP operations may require the input operand be promoted even
434 // when the type is otherwise legal.
435 EVT VT = Op.getOperand(0).getValueType();
436 assert(Op.getNode()->getNumValues() == 1 &&
437 "Can't promote a vector with multiple results!");
438
439 // Normal getTypeToPromoteTo() doesn't work here, as that will promote
440 // by widening the vector w/ the same element width and twice the number
441 // of elements. We want the other way around, the same number of elements,
442 // each twice the width.
443 //
444 // Increase the bitwidth of the element to the next pow-of-two
445 // (which is greater than 8 bits).
Jim Grosbache0c10d82012-06-28 21:03:44 +0000446
Adam Nemet24381f12014-03-17 17:06:14 +0000447 EVT NVT = VT.widenIntegerVectorElementType(*DAG.getContext());
448 assert(NVT.isSimple() && "Promoting to a non-simple vector type!");
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000449 SDLoc dl(Op);
Jim Grosbache0c10d82012-06-28 21:03:44 +0000450 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
451
452 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
453 ISD::SIGN_EXTEND;
454 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
455 if (Op.getOperand(j).getValueType().isVector())
456 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j));
457 else
458 Operands[j] = Op.getOperand(j);
459 }
460
Craig Topper48d114b2014-04-26 18:35:24 +0000461 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), Operands);
Jim Grosbache0c10d82012-06-28 21:03:44 +0000462}
463
Adam Nemet24381f12014-03-17 17:06:14 +0000464// For FP_TO_INT we promote the result type to a vector type with wider
465// elements and then truncate the result. This is different from the default
466// PromoteVector which uses bitcast to promote thus assumning that the
467// promoted vector type has the same overall size.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000468SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) {
Adam Nemet24381f12014-03-17 17:06:14 +0000469 assert(Op.getNode()->getNumValues() == 1 &&
470 "Can't promote a vector with multiple results!");
471 EVT VT = Op.getValueType();
472
473 EVT NewVT;
474 unsigned NewOpc;
475 while (1) {
476 NewVT = VT.widenIntegerVectorElementType(*DAG.getContext());
477 assert(NewVT.isSimple() && "Promoting to a non-simple vector type!");
478 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewVT)) {
479 NewOpc = ISD::FP_TO_SINT;
480 break;
481 }
482 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) {
483 NewOpc = ISD::FP_TO_UINT;
484 break;
485 }
486 }
487
488 SDLoc loc(Op);
489 SDValue promoted = DAG.getNode(NewOpc, SDLoc(Op), NewVT, Op.getOperand(0));
490 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT, promoted);
491}
492
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000493
494SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000495 SDLoc dl(Op);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000496 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
497 SDValue Chain = LD->getChain();
498 SDValue BasePTR = LD->getBasePtr();
499 EVT SrcVT = LD->getMemoryVT();
Nadav Rotem75c22292011-10-18 22:32:43 +0000500 ISD::LoadExtType ExtType = LD->getExtensionType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000501
Michael Liao7fb39662013-02-20 18:04:21 +0000502 SmallVector<SDValue, 8> Vals;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000503 SmallVector<SDValue, 8> LoadChains;
504 unsigned NumElem = SrcVT.getVectorNumElements();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000505
Michael Liao7fb39662013-02-20 18:04:21 +0000506 EVT SrcEltVT = SrcVT.getScalarType();
507 EVT DstEltVT = Op.getNode()->getValueType(0).getScalarType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000508
Michael Liao7fb39662013-02-20 18:04:21 +0000509 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) {
510 // When elements in a vector is not byte-addressable, we cannot directly
511 // load each element by advancing pointer, which could only address bytes.
512 // Instead, we load all significant words, mask bits off, and concatenate
513 // them to form each element. Finally, they are extended to destination
514 // scalar type to build the destination vector.
Mehdi Amini44ede332015-07-09 02:09:04 +0000515 EVT WideVT = TLI.getPointerTy(DAG.getDataLayout());
Nadav Rotem75c22292011-10-18 22:32:43 +0000516
Michael Liao7fb39662013-02-20 18:04:21 +0000517 assert(WideVT.isRound() &&
518 "Could not handle the sophisticated case when the widest integer is"
519 " not power of 2.");
520 assert(WideVT.bitsGE(SrcEltVT) &&
521 "Type is not legalized?");
522
523 unsigned WideBytes = WideVT.getStoreSize();
524 unsigned Offset = 0;
525 unsigned RemainingBytes = SrcVT.getStoreSize();
526 SmallVector<SDValue, 8> LoadVals;
527
528 while (RemainingBytes > 0) {
529 SDValue ScalarLoad;
530 unsigned LoadBytes = WideBytes;
531
532 if (RemainingBytes >= LoadBytes) {
533 ScalarLoad = DAG.getLoad(WideVT, dl, Chain, BasePTR,
534 LD->getPointerInfo().getWithOffset(Offset),
535 LD->isVolatile(), LD->isNonTemporal(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000536 LD->isInvariant(),
537 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000538 LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000539 } else {
540 EVT LoadVT = WideVT;
541 while (RemainingBytes < LoadBytes) {
542 LoadBytes >>= 1; // Reduce the load size by half.
543 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3);
544 }
545 ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR,
546 LD->getPointerInfo().getWithOffset(Offset),
547 LoadVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000548 LD->isNonTemporal(), LD->isInvariant(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000549 MinAlign(LD->getAlignment(), Offset),
550 LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000551 }
552
553 RemainingBytes -= LoadBytes;
554 Offset += LoadBytes;
555 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000556 DAG.getConstant(LoadBytes, dl,
557 BasePTR.getValueType()));
Michael Liao7fb39662013-02-20 18:04:21 +0000558
559 LoadVals.push_back(ScalarLoad.getValue(0));
560 LoadChains.push_back(ScalarLoad.getValue(1));
561 }
562
563 // Extract bits, pack and extend/trunc them into destination type.
564 unsigned SrcEltBits = SrcEltVT.getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000565 SDValue SrcEltBitMask = DAG.getConstant((1U << SrcEltBits) - 1, dl, WideVT);
Michael Liao7fb39662013-02-20 18:04:21 +0000566
567 unsigned BitOffset = 0;
568 unsigned WideIdx = 0;
569 unsigned WideBits = WideVT.getSizeInBits();
570
571 for (unsigned Idx = 0; Idx != NumElem; ++Idx) {
572 SDValue Lo, Hi, ShAmt;
573
574 if (BitOffset < WideBits) {
Mehdi Amini9639d652015-07-09 02:09:20 +0000575 ShAmt = DAG.getConstant(
576 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000577 Lo = DAG.getNode(ISD::SRL, dl, WideVT, LoadVals[WideIdx], ShAmt);
578 Lo = DAG.getNode(ISD::AND, dl, WideVT, Lo, SrcEltBitMask);
579 }
580
581 BitOffset += SrcEltBits;
582 if (BitOffset >= WideBits) {
583 WideIdx++;
Michael Kupersteincd63c5f2015-02-04 18:54:01 +0000584 BitOffset -= WideBits;
585 if (BitOffset > 0) {
Mehdi Amini9639d652015-07-09 02:09:20 +0000586 ShAmt = DAG.getConstant(
587 SrcEltBits - BitOffset, dl,
588 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000589 Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt);
590 Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask);
591 }
592 }
593
594 if (Hi.getNode())
595 Lo = DAG.getNode(ISD::OR, dl, WideVT, Lo, Hi);
596
597 switch (ExtType) {
598 default: llvm_unreachable("Unknown extended-load op!");
599 case ISD::EXTLOAD:
600 Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT);
601 break;
602 case ISD::ZEXTLOAD:
603 Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT);
604 break;
605 case ISD::SEXTLOAD:
Mehdi Amini9639d652015-07-09 02:09:20 +0000606 ShAmt =
607 DAG.getConstant(WideBits - SrcEltBits, dl,
608 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000609 Lo = DAG.getNode(ISD::SHL, dl, WideVT, Lo, ShAmt);
610 Lo = DAG.getNode(ISD::SRA, dl, WideVT, Lo, ShAmt);
611 Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT);
612 break;
613 }
614 Vals.push_back(Lo);
615 }
616 } else {
617 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
618
619 for (unsigned Idx=0; Idx<NumElem; Idx++) {
620 SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl,
621 Op.getNode()->getValueType(0).getScalarType(),
622 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
623 SrcVT.getScalarType(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000624 LD->isVolatile(), LD->isNonTemporal(), LD->isInvariant(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000625 MinAlign(LD->getAlignment(), Idx * Stride), LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000626
627 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000628 DAG.getConstant(Stride, dl, BasePTR.getValueType()));
Michael Liao7fb39662013-02-20 18:04:21 +0000629
630 Vals.push_back(ScalarLoad.getValue(0));
631 LoadChains.push_back(ScalarLoad.getValue(1));
632 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000633 }
Nadav Rotem75c22292011-10-18 22:32:43 +0000634
Craig Topper48d114b2014-04-26 18:35:24 +0000635 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000636 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +0000637 Op.getNode()->getValueType(0), Vals);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000638
639 AddLegalizedOperand(Op.getValue(0), Value);
640 AddLegalizedOperand(Op.getValue(1), NewChain);
641
642 return (Op.getResNo() ? NewChain : Value);
643}
644
645SDValue VectorLegalizer::ExpandStore(SDValue Op) {
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000646 SDLoc dl(Op);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000647 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
648 SDValue Chain = ST->getChain();
649 SDValue BasePTR = ST->getBasePtr();
650 SDValue Value = ST->getValue();
651 EVT StVT = ST->getMemoryVT();
652
653 unsigned Alignment = ST->getAlignment();
654 bool isVolatile = ST->isVolatile();
655 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000656 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000657
658 unsigned NumElem = StVT.getVectorNumElements();
659 // The type of the data we want to save
660 EVT RegVT = Value.getValueType();
661 EVT RegSclVT = RegVT.getScalarType();
662 // The type of data as saved in memory.
663 EVT MemSclVT = StVT.getScalarType();
664
665 // Cast floats into integers
666 unsigned ScalarSize = MemSclVT.getSizeInBits();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000667
668 // Round odd types to the next pow of two.
669 if (!isPowerOf2_32(ScalarSize))
670 ScalarSize = NextPowerOf2(ScalarSize);
671
672 // Store Stride in bytes
673 unsigned Stride = ScalarSize/8;
674 // Extract each of the elements from the original vector
675 // and save them into memory individually.
676 SmallVector<SDValue, 8> Stores;
677 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000678 SDValue Ex = DAG.getNode(
679 ISD::EXTRACT_VECTOR_ELT, dl, RegSclVT, Value,
680 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000681
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000682 // This scalar TruncStore may be illegal, but we legalize it later.
683 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
684 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
Hal Finkelf5b95702015-02-22 15:58:04 +0000685 isVolatile, isNonTemporal, MinAlign(Alignment, Idx*Stride),
686 AAInfo);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000687
Nadav Rotem75c22292011-10-18 22:32:43 +0000688 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000689 DAG.getConstant(Stride, dl, BasePTR.getValueType()));
Nadav Rotem75c22292011-10-18 22:32:43 +0000690
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000691 Stores.push_back(Store);
692 }
Craig Topper48d114b2014-04-26 18:35:24 +0000693 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000694 AddLegalizedOperand(Op, TF);
695 return TF;
696}
697
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000698SDValue VectorLegalizer::Expand(SDValue Op) {
699 switch (Op->getOpcode()) {
700 case ISD::SIGN_EXTEND_INREG:
701 return ExpandSEXTINREG(Op);
Chandler Carruth0b666e02014-07-10 12:32:32 +0000702 case ISD::ANY_EXTEND_VECTOR_INREG:
703 return ExpandANY_EXTEND_VECTOR_INREG(Op);
704 case ISD::SIGN_EXTEND_VECTOR_INREG:
705 return ExpandSIGN_EXTEND_VECTOR_INREG(Op);
Chandler Carruthafe4b252014-07-09 10:58:18 +0000706 case ISD::ZERO_EXTEND_VECTOR_INREG:
707 return ExpandZERO_EXTEND_VECTOR_INREG(Op);
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000708 case ISD::BSWAP:
709 return ExpandBSWAP(Op);
710 case ISD::VSELECT:
711 return ExpandVSELECT(Op);
712 case ISD::SELECT:
713 return ExpandSELECT(Op);
714 case ISD::UINT_TO_FP:
715 return ExpandUINT_TO_FLOAT(Op);
716 case ISD::FNEG:
717 return ExpandFNEG(Op);
718 case ISD::SETCC:
719 return UnrollVSETCC(Op);
Matt Arsenaultd0792852015-12-14 17:25:38 +0000720 case ISD::BITREVERSE:
721 return ExpandBITREVERSE(Op);
Craig Topper4b1808d2015-12-27 21:33:47 +0000722 case ISD::CTLZ_ZERO_UNDEF:
723 case ISD::CTTZ_ZERO_UNDEF:
724 return ExpandCTLZ_CTTZ_ZERO_UNDEF(Op);
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000725 default:
726 return DAG.UnrollVectorOp(Op.getNode());
727 }
728}
729
Nadav Rotemea973bd2012-08-30 19:17:29 +0000730SDValue VectorLegalizer::ExpandSELECT(SDValue Op) {
731 // Lower a select instruction where the condition is a scalar and the
732 // operands are vectors. Lower this select to VSELECT and implement it
Stephen Lincfe7f352013-07-08 00:37:03 +0000733 // using XOR AND OR. The selector bit is broadcasted.
Nadav Rotemea973bd2012-08-30 19:17:29 +0000734 EVT VT = Op.getValueType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000735 SDLoc DL(Op);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000736
737 SDValue Mask = Op.getOperand(0);
738 SDValue Op1 = Op.getOperand(1);
739 SDValue Op2 = Op.getOperand(2);
740
741 assert(VT.isVector() && !Mask.getValueType().isVector()
742 && Op1.getValueType() == Op2.getValueType() && "Invalid type");
743
744 unsigned NumElem = VT.getVectorNumElements();
745
746 // If we can't even use the basic vector operations of
747 // AND,OR,XOR, we will have to scalarize the op.
748 // Notice that the operation may be 'promoted' which means that it is
749 // 'bitcasted' to another type which is handled.
750 // Also, we need to be able to construct a splat vector using BUILD_VECTOR.
751 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
752 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
753 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
754 TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand)
755 return DAG.UnrollVectorOp(Op.getNode());
756
757 // Generate a mask operand.
Matt Arsenaultd2322222013-09-10 00:41:56 +0000758 EVT MaskTy = VT.changeVectorElementTypeToInteger();
Nadav Rotemea973bd2012-08-30 19:17:29 +0000759
760 // What is the size of each element in the vector mask.
761 EVT BitTy = MaskTy.getScalarType();
762
Matt Arsenaultd2f03322013-06-14 22:04:37 +0000763 Mask = DAG.getSelect(DL, BitTy, Mask,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000764 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), DL,
765 BitTy),
766 DAG.getConstant(0, DL, BitTy));
Nadav Rotemea973bd2012-08-30 19:17:29 +0000767
768 // Broadcast the mask so that the entire vector is all-one or all zero.
769 SmallVector<SDValue, 8> Ops(NumElem, Mask);
Craig Topper48d114b2014-04-26 18:35:24 +0000770 Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskTy, Ops);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000771
772 // Bitcast the operands to be the same type as the mask.
773 // This is needed when we select between FP types because
774 // the mask is a vector of integers.
775 Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1);
776 Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2);
777
778 SDValue AllOnes = DAG.getConstant(
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000779 APInt::getAllOnesValue(BitTy.getSizeInBits()), DL, MaskTy);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000780 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes);
781
782 Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask);
783 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
784 SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2);
785 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
786}
787
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000788SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
789 EVT VT = Op.getValueType();
790
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000791 // Make sure that the SRA and SHL instructions are available.
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000792 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand ||
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000793 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand)
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000794 return DAG.UnrollVectorOp(Op.getNode());
795
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000796 SDLoc DL(Op);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000797 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT();
798
799 unsigned BW = VT.getScalarType().getSizeInBits();
800 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000801 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, DL, VT);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000802
803 Op = Op.getOperand(0);
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000804 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000805 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz);
806}
807
Chandler Carruth0b666e02014-07-10 12:32:32 +0000808// Generically expand a vector anyext in register to a shuffle of the relevant
809// lanes into the appropriate locations, with other lanes left undef.
810SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDValue Op) {
811 SDLoc DL(Op);
812 EVT VT = Op.getValueType();
813 int NumElements = VT.getVectorNumElements();
814 SDValue Src = Op.getOperand(0);
815 EVT SrcVT = Src.getValueType();
816 int NumSrcElements = SrcVT.getVectorNumElements();
817
818 // Build a base mask of undef shuffles.
819 SmallVector<int, 16> ShuffleMask;
820 ShuffleMask.resize(NumSrcElements, -1);
821
822 // Place the extended lanes into the correct locations.
823 int ExtLaneScale = NumSrcElements / NumElements;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000824 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0;
Chandler Carruth0b666e02014-07-10 12:32:32 +0000825 for (int i = 0; i < NumElements; ++i)
826 ShuffleMask[i * ExtLaneScale + EndianOffset] = i;
827
828 return DAG.getNode(
829 ISD::BITCAST, DL, VT,
830 DAG.getVectorShuffle(SrcVT, DL, Src, DAG.getUNDEF(SrcVT), ShuffleMask));
831}
832
833SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) {
834 SDLoc DL(Op);
835 EVT VT = Op.getValueType();
836 SDValue Src = Op.getOperand(0);
837 EVT SrcVT = Src.getValueType();
838
839 // First build an any-extend node which can be legalized above when we
840 // recurse through it.
841 Op = DAG.getAnyExtendVectorInReg(Src, DL, VT);
842
843 // Now we need sign extend. Do this by shifting the elements. Even if these
844 // aren't legal operations, they have a better chance of being legalized
845 // without full scalarization than the sign extension does.
846 unsigned EltWidth = VT.getVectorElementType().getSizeInBits();
847 unsigned SrcEltWidth = SrcVT.getVectorElementType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000848 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, DL, VT);
Chandler Carruth0b666e02014-07-10 12:32:32 +0000849 return DAG.getNode(ISD::SRA, DL, VT,
850 DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount),
851 ShiftAmount);
852}
853
Chandler Carruthafe4b252014-07-09 10:58:18 +0000854// Generically expand a vector zext in register to a shuffle of the relevant
855// lanes into the appropriate locations, a blend of zero into the high bits,
856// and a bitcast to the wider element type.
857SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op) {
858 SDLoc DL(Op);
859 EVT VT = Op.getValueType();
860 int NumElements = VT.getVectorNumElements();
861 SDValue Src = Op.getOperand(0);
862 EVT SrcVT = Src.getValueType();
863 int NumSrcElements = SrcVT.getVectorNumElements();
864
865 // Build up a zero vector to blend into this one.
Simon Pilgrim61eb49e2016-03-10 20:40:26 +0000866 SDValue Zero = DAG.getConstant(0, DL, SrcVT);
Chandler Carruthafe4b252014-07-09 10:58:18 +0000867
868 // Shuffle the incoming lanes into the correct position, and pull all other
869 // lanes from the zero vector.
870 SmallVector<int, 16> ShuffleMask;
871 ShuffleMask.reserve(NumSrcElements);
872 for (int i = 0; i < NumSrcElements; ++i)
873 ShuffleMask.push_back(i);
874
875 int ExtLaneScale = NumSrcElements / NumElements;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000876 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0;
Chandler Carruthafe4b252014-07-09 10:58:18 +0000877 for (int i = 0; i < NumElements; ++i)
878 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i;
879
880 return DAG.getNode(ISD::BITCAST, DL, VT,
881 DAG.getVectorShuffle(SrcVT, DL, Zero, Src, ShuffleMask));
882}
883
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000884SDValue VectorLegalizer::ExpandBSWAP(SDValue Op) {
885 EVT VT = Op.getValueType();
886
887 // Generate a byte wise shuffle mask for the BSWAP.
888 SmallVector<int, 16> ShuffleMask;
889 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8;
890 for (int I = 0, E = VT.getVectorNumElements(); I != E; ++I)
891 for (int J = ScalarSizeInBytes - 1; J >= 0; --J)
892 ShuffleMask.push_back((I * ScalarSizeInBytes) + J);
893
894 EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, ShuffleMask.size());
895
896 // Only emit a shuffle if the mask is legal.
897 if (!TLI.isShuffleMaskLegal(ShuffleMask, ByteVT))
898 return DAG.UnrollVectorOp(Op.getNode());
899
900 SDLoc DL(Op);
901 Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0));
902 Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT),
903 ShuffleMask.data());
904 return DAG.getNode(ISD::BITCAST, DL, VT, Op);
905}
906
Matt Arsenaultd0792852015-12-14 17:25:38 +0000907SDValue VectorLegalizer::ExpandBITREVERSE(SDValue Op) {
908 EVT VT = Op.getValueType();
909
910 // If we have the scalar operation, it's probably cheaper to unroll it.
911 if (TLI.isOperationLegalOrCustom(ISD::BITREVERSE, VT.getScalarType()))
912 return DAG.UnrollVectorOp(Op.getNode());
913
914 // If we have the appropriate vector bit operations, it is better to use them
915 // than unrolling and expanding each component.
916 if (!TLI.isOperationLegalOrCustom(ISD::SHL, VT) ||
917 !TLI.isOperationLegalOrCustom(ISD::SRL, VT) ||
918 !TLI.isOperationLegalOrCustom(ISD::AND, VT) ||
919 !TLI.isOperationLegalOrCustom(ISD::OR, VT))
920 return DAG.UnrollVectorOp(Op.getNode());
921
922 // Let LegalizeDAG handle this later.
923 return Op;
924}
925
Nadav Rotem52202fb2011-09-13 19:17:42 +0000926SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
927 // Implement VSELECT in terms of XOR, AND, OR
928 // on platforms which do not support blend natively.
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000929 SDLoc DL(Op);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000930
931 SDValue Mask = Op.getOperand(0);
932 SDValue Op1 = Op.getOperand(1);
933 SDValue Op2 = Op.getOperand(2);
934
Matt Arsenaulta5733dc2013-05-07 20:24:18 +0000935 EVT VT = Mask.getValueType();
936
Nadav Rotem52202fb2011-09-13 19:17:42 +0000937 // If we can't even use the basic vector operations of
938 // AND,OR,XOR, we will have to scalarize the op.
Nadav Rotem88244722011-10-19 20:43:16 +0000939 // Notice that the operation may be 'promoted' which means that it is
940 // 'bitcasted' to another type which is handled.
Pete Cooper2455e9c2012-09-01 22:27:48 +0000941 // This operation also isn't safe with AND, OR, XOR when the boolean
942 // type is 0/1 as we need an all ones vector constant to mask with.
943 // FIXME: Sign extend 1 to all ones if thats legal on the target.
Nadav Rotem88244722011-10-19 20:43:16 +0000944 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
945 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000946 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
947 TLI.getBooleanContents(Op1.getValueType()) !=
948 TargetLowering::ZeroOrNegativeOneBooleanContent)
Nadav Rotem88244722011-10-19 20:43:16 +0000949 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotem52202fb2011-09-13 19:17:42 +0000950
Matt Arsenaulta5733dc2013-05-07 20:24:18 +0000951 // If the mask and the type are different sizes, unroll the vector op. This
952 // can occur when getSetCCResultType returns something that is different in
953 // size from the operand types. For example, v4i8 = select v4i32, v4i8, v4i8.
954 if (VT.getSizeInBits() != Op1.getValueType().getSizeInBits())
955 return DAG.UnrollVectorOp(Op.getNode());
956
Nadav Rotem52202fb2011-09-13 19:17:42 +0000957 // Bitcast the operands to be the same type as the mask.
958 // This is needed when we select between FP types because
959 // the mask is a vector of integers.
960 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1);
961 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2);
962
963 SDValue AllOnes = DAG.getConstant(
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000964 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), DL, VT);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000965 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes);
966
967 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask);
968 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
Nadav Rotem02ef0c32012-04-15 15:08:09 +0000969 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2);
970 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000971}
972
Nadav Roteme7a101c2011-03-19 13:09:10 +0000973SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) {
Nadav Roteme7a101c2011-03-19 13:09:10 +0000974 EVT VT = Op.getOperand(0).getValueType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000975 SDLoc DL(Op);
Nadav Roteme7a101c2011-03-19 13:09:10 +0000976
977 // Make sure that the SINT_TO_FP and SRL instructions are available.
Nadav Rotem88244722011-10-19 20:43:16 +0000978 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
979 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand)
980 return DAG.UnrollVectorOp(Op.getNode());
Nadav Roteme7a101c2011-03-19 13:09:10 +0000981
982 EVT SVT = VT.getScalarType();
983 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) &&
984 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
985
986 unsigned BW = SVT.getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000987 SDValue HalfWord = DAG.getConstant(BW/2, DL, VT);
Nadav Roteme7a101c2011-03-19 13:09:10 +0000988
989 // Constants to clear the upper part of the word.
990 // Notice that we can also use SHL+SHR, but using a constant is slightly
991 // faster on x86.
992 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000993 SDValue HalfWordMask = DAG.getConstant(HWMask, DL, VT);
Nadav Roteme7a101c2011-03-19 13:09:10 +0000994
995 // Two to the power of half-word-size.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000996 SDValue TWOHW = DAG.getConstantFP(1 << (BW/2), DL, Op.getValueType());
Nadav Roteme7a101c2011-03-19 13:09:10 +0000997
998 // Clear upper part of LO, lower HI
999 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord);
1000 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask);
1001
1002 // Convert hi and lo to floats
1003 // Convert the hi part back to the upper values
Sanjay Patela2607012015-09-16 16:31:21 +00001004 // TODO: Can any fast-math-flags be set on these nodes?
Nadav Roteme7a101c2011-03-19 13:09:10 +00001005 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI);
1006 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW);
1007 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO);
1008
1009 // Add the two halves
1010 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO);
1011}
1012
1013
Eli Friedmanda90dd62009-05-23 12:35:30 +00001014SDValue VectorLegalizer::ExpandFNEG(SDValue Op) {
1015 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001016 SDLoc DL(Op);
1017 SDValue Zero = DAG.getConstantFP(-0.0, DL, Op.getValueType());
Sanjay Patela2607012015-09-16 16:31:21 +00001018 // TODO: If FNEG had fast-math-flags, they'd get propagated to this FSUB.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001019 return DAG.getNode(ISD::FSUB, DL, Op.getValueType(),
Eli Friedmanda90dd62009-05-23 12:35:30 +00001020 Zero, Op.getOperand(0));
1021 }
Mon P Wang32f8bb92009-11-30 02:42:02 +00001022 return DAG.UnrollVectorOp(Op.getNode());
Eli Friedmanda90dd62009-05-23 12:35:30 +00001023}
1024
Craig Topper4b1808d2015-12-27 21:33:47 +00001025SDValue VectorLegalizer::ExpandCTLZ_CTTZ_ZERO_UNDEF(SDValue Op) {
1026 // If the non-ZERO_UNDEF version is supported we can let LegalizeDAG handle.
1027 unsigned Opc = Op.getOpcode() == ISD::CTLZ_ZERO_UNDEF ? ISD::CTLZ : ISD::CTTZ;
1028 if (TLI.isOperationLegalOrCustom(Opc, Op.getValueType()))
1029 return Op;
1030
1031 // Otherwise go ahead and unroll.
1032 return DAG.UnrollVectorOp(Op.getNode());
1033}
1034
Eli Friedmanda90dd62009-05-23 12:35:30 +00001035SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001036 EVT VT = Op.getValueType();
Eli Friedmanda90dd62009-05-23 12:35:30 +00001037 unsigned NumElems = VT.getVectorNumElements();
Owen Anderson53aa7a92009-08-10 22:56:29 +00001038 EVT EltVT = VT.getVectorElementType();
Eli Friedmanda90dd62009-05-23 12:35:30 +00001039 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001040 EVT TmpEltVT = LHS.getValueType().getVectorElementType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +00001041 SDLoc dl(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +00001042 SmallVector<SDValue, 8> Ops(NumElems);
1043 for (unsigned i = 0; i < NumElems; ++i) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001044 SDValue LHSElem = DAG.getNode(
1045 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
1046 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
1047 SDValue RHSElem = DAG.getNode(
1048 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS,
1049 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Matt Arsenault758659232013-05-18 00:21:46 +00001050 Ops[i] = DAG.getNode(ISD::SETCC, dl,
Mehdi Amini44ede332015-07-09 02:09:04 +00001051 TLI.getSetCCResultType(DAG.getDataLayout(),
1052 *DAG.getContext(), TmpEltVT),
Eli Friedmanda90dd62009-05-23 12:35:30 +00001053 LHSElem, RHSElem, CC);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001054 Ops[i] = DAG.getSelect(dl, EltVT, Ops[i],
1055 DAG.getConstant(APInt::getAllOnesValue
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001056 (EltVT.getSizeInBits()), dl, EltVT),
1057 DAG.getConstant(0, dl, EltVT));
Eli Friedmanda90dd62009-05-23 12:35:30 +00001058 }
Craig Topper48d114b2014-04-26 18:35:24 +00001059 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Eli Friedmanda90dd62009-05-23 12:35:30 +00001060}
1061
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001062}
Eli Friedmanda90dd62009-05-23 12:35:30 +00001063
1064bool SelectionDAG::LegalizeVectors() {
1065 return VectorLegalizer(*this).Run();
1066}