blob: b5af7b706b0d818527ea6f0fb48635a2c5ac0d4d [file] [log] [blame]
Eli Friedman5c22c802009-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 Friedman509150f2009-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 Friedman5c22c802009-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 Gohman98ca4f22009-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 Friedman5c22c802009-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 Gohmand858e902010-04-17 15:26:15 +000037 const TargetLowering &TLI;
Eli Friedman5c22c802009-05-23 12:35:30 +000038 bool Changed; // Keep track of whether anything changed
39
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070040 /// 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 Gurdea387fc2013-01-25 15:18:54 +000043 SmallDenseMap<SDValue, SDValue, 64> LegalizedNodes;
Eli Friedman5c22c802009-05-23 12:35:30 +000044
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070045 /// \brief Adds a node to the translation cache.
Eli Friedman5c22c802009-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
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070053 /// \brief Legalizes the given node.
Eli Friedman5c22c802009-05-23 12:35:30 +000054 SDValue LegalizeOp(SDValue Op);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070055
56 /// \brief Assuming the node is legal, "legalize" the results.
Eli Friedman5c22c802009-05-23 12:35:30 +000057 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070058
59 /// \brief Implements unrolling a VSETCC.
Eli Friedman5c22c802009-05-23 12:35:30 +000060 SDValue UnrollVSETCC(SDValue Op);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070061
62 /// \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
68 /// \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 Rotem06cc3242011-03-19 13:09:10 +000073 SDValue ExpandUINT_TO_FLOAT(SDValue Op);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070074
75 /// \brief Implement expansion for SIGN_EXTEND_INREG using SRL and SRA.
Nadav Rotem66de2af2013-01-11 22:57:48 +000076 SDValue ExpandSEXTINREG(SDValue Op);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070077
78 /// \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
92 /// \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
98 /// \brief Expand bswap of vectors into a shuffle if legal.
Stephen Hinesdce4a402014-05-29 02:49:00 -070099 SDValue ExpandBSWAP(SDValue Op);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700100
101 /// \brief Implement vselect in terms of XOR, AND, OR when blend is not
102 /// supported by the target.
Nadav Rotemaec58612011-09-13 19:17:42 +0000103 SDValue ExpandVSELECT(SDValue Op);
Nadav Roteme757f002012-08-30 19:17:29 +0000104 SDValue ExpandSELECT(SDValue Op);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000105 SDValue ExpandLoad(SDValue Op);
106 SDValue ExpandStore(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000107 SDValue ExpandFNEG(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000108
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700109 /// \brief Implements vector promotion.
110 ///
111 /// This is essentially just bitcasting the operands to a different type and
112 /// bitcasting the result back to the original type.
113 SDValue Promote(SDValue Op);
114
115 /// \brief Implements [SU]INT_TO_FP vector promotion.
116 ///
117 /// This is a [zs]ext of the input operand to the next size up.
118 SDValue PromoteINT_TO_FP(SDValue Op);
119
120 /// \brief Implements FP_TO_[SU]INT vector promotion of the result type.
121 ///
122 /// It is promoted to the next size up integer type. The result is then
123 /// truncated back to the original type.
124 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned);
125
126public:
127 /// \brief Begin legalizer the vector operations in the DAG.
Eli Friedman5c22c802009-05-23 12:35:30 +0000128 bool Run();
129 VectorLegalizer(SelectionDAG& dag) :
130 DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {}
131};
132
133bool VectorLegalizer::Run() {
Nadav Rotemd99a5a32013-02-22 23:33:30 +0000134 // Before we start legalizing vector nodes, check if there are any vectors.
135 bool HasVectors = false;
136 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Stephen Hines36b56882014-04-23 16:57:46 -0700137 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) {
Nadav Rotemd99a5a32013-02-22 23:33:30 +0000138 // Check if the values of the nodes contain vectors. We don't need to check
139 // the operands because we are going to check their values at some point.
140 for (SDNode::value_iterator J = I->value_begin(), E = I->value_end();
141 J != E; ++J)
142 HasVectors |= J->isVector();
143
144 // If we found a vector node we can start the legalization.
145 if (HasVectors)
146 break;
147 }
148
149 // If this basic block has no vectors then no need to legalize vectors.
150 if (!HasVectors)
151 return false;
152
Eli Friedman5c22c802009-05-23 12:35:30 +0000153 // The legalize process is inherently a bottom-up recursive process (users
154 // legalize their uses before themselves). Given infinite stack space, we
155 // could just start legalizing on the root and traverse the whole graph. In
156 // practice however, this causes us to run out of stack space on large basic
157 // blocks. To avoid this problem, compute an ordering of the nodes where each
158 // node is only legalized after all of its operands are legalized.
159 DAG.AssignTopologicalOrder();
160 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Stephen Hines36b56882014-04-23 16:57:46 -0700161 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I)
Eli Friedman5c22c802009-05-23 12:35:30 +0000162 LegalizeOp(SDValue(I, 0));
163
164 // Finally, it's possible the root changed. Get the new root.
165 SDValue OldRoot = DAG.getRoot();
166 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
167 DAG.setRoot(LegalizedNodes[OldRoot]);
168
169 LegalizedNodes.clear();
170
171 // Remove dead nodes now.
172 DAG.RemoveDeadNodes();
173
174 return Changed;
175}
176
177SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
178 // Generic legalization: just pass the operand through.
179 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i)
180 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
181 return Result.getValue(Op.getResNo());
182}
183
184SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
185 // Note that LegalizeOp may be reentered even from single-use nodes, which
186 // means that we always must cache transformed nodes.
187 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
188 if (I != LegalizedNodes.end()) return I->second;
189
190 SDNode* Node = Op.getNode();
191
192 // Legalize the operands
193 SmallVector<SDValue, 8> Ops;
194 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
195 Ops.push_back(LegalizeOp(Node->getOperand(i)));
196
Stephen Hinesdce4a402014-05-29 02:49:00 -0700197 SDValue Result = SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops), 0);
Eli Friedman5c22c802009-05-23 12:35:30 +0000198
Nadav Roteme9b58d02011-10-15 07:41:10 +0000199 if (Op.getOpcode() == ISD::LOAD) {
200 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
201 ISD::LoadExtType ExtType = LD->getExtensionType();
Stephen Hines37ed9c12014-12-01 14:51:49 -0800202 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD)
203 switch (TLI.getLoadExtAction(LD->getExtensionType(), LD->getMemoryVT())) {
204 default: llvm_unreachable("This action is not supported yet!");
205 case TargetLowering::Legal:
Nadav Roteme9b58d02011-10-15 07:41:10 +0000206 return TranslateLegalizeResults(Op, Result);
Stephen Hines37ed9c12014-12-01 14:51:49 -0800207 case TargetLowering::Custom:
208 if (SDValue Lowered = TLI.LowerOperation(Result, DAG)) {
209 Changed = true;
210 if (Lowered->getNumValues() != Op->getNumValues()) {
211 // This expanded to something other than the load. Assume the
212 // lowering code took care of any chain values, and just handle the
213 // returned value.
214 assert(Result.getValue(1).use_empty() &&
215 "There are still live users of the old chain!");
216 return LegalizeOp(Lowered);
217 } else {
218 return TranslateLegalizeResults(Op, Lowered);
219 }
220 }
221 case TargetLowering::Expand:
222 Changed = true;
223 return LegalizeOp(ExpandLoad(Op));
224 }
Nadav Roteme9b58d02011-10-15 07:41:10 +0000225 } else if (Op.getOpcode() == ISD::STORE) {
226 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
227 EVT StVT = ST->getMemoryVT();
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000228 MVT ValVT = ST->getValue().getSimpleValueType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000229 if (StVT.isVector() && ST->isTruncatingStore())
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000230 switch (TLI.getTruncStoreAction(ValVT, StVT.getSimpleVT())) {
Craig Topper5e25ee82012-02-05 08:31:47 +0000231 default: llvm_unreachable("This action is not supported yet!");
Nadav Roteme9b58d02011-10-15 07:41:10 +0000232 case TargetLowering::Legal:
233 return TranslateLegalizeResults(Op, Result);
234 case TargetLowering::Custom:
235 Changed = true;
Tom Stellardd00968a2013-08-21 22:42:58 +0000236 return TranslateLegalizeResults(Op, TLI.LowerOperation(Result, DAG));
Nadav Roteme9b58d02011-10-15 07:41:10 +0000237 case TargetLowering::Expand:
238 Changed = true;
239 return LegalizeOp(ExpandStore(Op));
240 }
241 }
242
Eli Friedman5c22c802009-05-23 12:35:30 +0000243 bool HasVectorValue = false;
244 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end();
245 J != E;
246 ++J)
247 HasVectorValue |= J->isVector();
248 if (!HasVectorValue)
249 return TranslateLegalizeResults(Op, Result);
250
Owen Andersone50ed302009-08-10 22:56:29 +0000251 EVT QueryType;
Eli Friedman5c22c802009-05-23 12:35:30 +0000252 switch (Op.getOpcode()) {
253 default:
254 return TranslateLegalizeResults(Op, Result);
255 case ISD::ADD:
256 case ISD::SUB:
257 case ISD::MUL:
258 case ISD::SDIV:
259 case ISD::UDIV:
260 case ISD::SREM:
261 case ISD::UREM:
262 case ISD::FADD:
263 case ISD::FSUB:
264 case ISD::FMUL:
265 case ISD::FDIV:
266 case ISD::FREM:
267 case ISD::AND:
268 case ISD::OR:
269 case ISD::XOR:
270 case ISD::SHL:
271 case ISD::SRA:
272 case ISD::SRL:
273 case ISD::ROTL:
274 case ISD::ROTR:
Stephen Hines36b56882014-04-23 16:57:46 -0700275 case ISD::BSWAP:
Eli Friedman5c22c802009-05-23 12:35:30 +0000276 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +0000277 case ISD::CTTZ:
278 case ISD::CTLZ_ZERO_UNDEF:
279 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman5c22c802009-05-23 12:35:30 +0000280 case ISD::CTPOP:
281 case ISD::SELECT:
Nadav Rotemaec58612011-09-13 19:17:42 +0000282 case ISD::VSELECT:
Eli Friedman5c22c802009-05-23 12:35:30 +0000283 case ISD::SELECT_CC:
Duncan Sands28b77e92011-09-06 19:07:46 +0000284 case ISD::SETCC:
Eli Friedman5c22c802009-05-23 12:35:30 +0000285 case ISD::ZERO_EXTEND:
286 case ISD::ANY_EXTEND:
287 case ISD::TRUNCATE:
288 case ISD::SIGN_EXTEND:
Eli Friedman5c22c802009-05-23 12:35:30 +0000289 case ISD::FP_TO_SINT:
290 case ISD::FP_TO_UINT:
291 case ISD::FNEG:
292 case ISD::FABS:
Stephen Hines37ed9c12014-12-01 14:51:49 -0800293 case ISD::FMINNUM:
294 case ISD::FMAXNUM:
Hal Finkel66d1fa62013-08-19 23:35:46 +0000295 case ISD::FCOPYSIGN:
Eli Friedman5c22c802009-05-23 12:35:30 +0000296 case ISD::FSQRT:
297 case ISD::FSIN:
298 case ISD::FCOS:
299 case ISD::FPOWI:
300 case ISD::FPOW:
301 case ISD::FLOG:
302 case ISD::FLOG2:
303 case ISD::FLOG10:
304 case ISD::FEXP:
305 case ISD::FEXP2:
306 case ISD::FCEIL:
307 case ISD::FTRUNC:
308 case ISD::FRINT:
309 case ISD::FNEARBYINT:
Hal Finkel41418d12013-08-07 22:49:12 +0000310 case ISD::FROUND:
Eli Friedman5c22c802009-05-23 12:35:30 +0000311 case ISD::FFLOOR:
Eli Friedman846ce8e2012-11-15 22:44:27 +0000312 case ISD::FP_ROUND:
Eli Friedman43147af2012-11-17 01:52:46 +0000313 case ISD::FP_EXTEND:
Craig Topper6b1e1d82012-08-30 07:34:22 +0000314 case ISD::FMA:
Nadav Rotemd0f3ef82011-07-14 11:11:14 +0000315 case ISD::SIGN_EXTEND_INREG:
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700316 case ISD::ANY_EXTEND_VECTOR_INREG:
317 case ISD::SIGN_EXTEND_VECTOR_INREG:
318 case ISD::ZERO_EXTEND_VECTOR_INREG:
Eli Friedman556929a2009-06-06 03:27:50 +0000319 QueryType = Node->getValueType(0);
320 break;
Dan Gohmand1996362010-01-09 02:13:55 +0000321 case ISD::FP_ROUND_INREG:
322 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT();
323 break;
Eli Friedman556929a2009-06-06 03:27:50 +0000324 case ISD::SINT_TO_FP:
325 case ISD::UINT_TO_FP:
326 QueryType = Node->getOperand(0).getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000327 break;
328 }
329
Eli Friedman556929a2009-06-06 03:27:50 +0000330 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) {
Eli Friedman5c22c802009-05-23 12:35:30 +0000331 case TargetLowering::Promote:
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700332 Result = Promote(Op);
333 Changed = true;
Eli Friedman5c22c802009-05-23 12:35:30 +0000334 break;
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700335 case TargetLowering::Legal:
336 break;
Eli Friedman5c22c802009-05-23 12:35:30 +0000337 case TargetLowering::Custom: {
338 SDValue Tmp1 = TLI.LowerOperation(Op, DAG);
339 if (Tmp1.getNode()) {
340 Result = Tmp1;
341 break;
342 }
343 // FALL THROUGH
344 }
345 case TargetLowering::Expand:
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700346 Result = Expand(Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000347 }
348
349 // Make sure that the generated code is itself legal.
350 if (Result != Op) {
351 Result = LegalizeOp(Result);
352 Changed = true;
353 }
354
355 // Note that LegalizeOp may be reentered even from single-use nodes, which
356 // means that we always must cache transformed nodes.
357 AddLegalizedOperand(Op, Result);
358 return Result;
359}
360
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700361SDValue VectorLegalizer::Promote(SDValue Op) {
362 // For a few operations there is a specific concept for promotion based on
363 // the operand's type.
364 switch (Op.getOpcode()) {
365 case ISD::SINT_TO_FP:
366 case ISD::UINT_TO_FP:
367 // "Promote" the operation by extending the operand.
368 return PromoteINT_TO_FP(Op);
369 case ISD::FP_TO_UINT:
370 case ISD::FP_TO_SINT:
371 // Promote the operation by extending the operand.
372 return PromoteFP_TO_INT(Op, Op->getOpcode() == ISD::FP_TO_SINT);
373 }
374
Stephen Hines37ed9c12014-12-01 14:51:49 -0800375 // There are currently two cases of vector promotion:
376 // 1) Bitcasting a vector of integers to a different type to a vector of the
377 // same overall length. For example, x86 promotes ISD::AND on v2i32 to v1i64.
378 // 2) Extending a vector of floats to a vector of the same number oflarger
379 // floats. For example, AArch64 promotes ISD::FADD on v4f16 to v4f32.
Patrik Hagglund319bb392012-12-19 11:21:04 +0000380 MVT VT = Op.getSimpleValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000381 assert(Op.getNode()->getNumValues() == 1 &&
382 "Can't promote a vector with multiple results!");
Patrik Hagglund319bb392012-12-19 11:21:04 +0000383 MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT);
Benjamin Kramere4fae842013-05-28 16:31:26 +0000384 SDLoc dl(Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000385 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
386
387 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
388 if (Op.getOperand(j).getValueType().isVector())
Stephen Hines37ed9c12014-12-01 14:51:49 -0800389 if (Op.getOperand(j)
390 .getValueType()
391 .getVectorElementType()
392 .isFloatingPoint())
393 Operands[j] = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op.getOperand(j));
394 else
395 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j));
Eli Friedman5c22c802009-05-23 12:35:30 +0000396 else
397 Operands[j] = Op.getOperand(j);
398 }
399
Stephen Hinesdce4a402014-05-29 02:49:00 -0700400 Op = DAG.getNode(Op.getOpcode(), dl, NVT, Operands);
Stephen Hines37ed9c12014-12-01 14:51:49 -0800401 if (VT.isFloatingPoint() ||
402 (VT.isVector() && VT.getVectorElementType().isFloatingPoint()))
403 return DAG.getNode(ISD::FP_ROUND, dl, VT, Op, DAG.getIntPtrConstant(0));
404 else
405 return DAG.getNode(ISD::BITCAST, dl, VT, Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000406}
407
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700408SDValue VectorLegalizer::PromoteINT_TO_FP(SDValue Op) {
Jim Grosbach926dc162012-06-28 21:03:44 +0000409 // INT_TO_FP operations may require the input operand be promoted even
410 // when the type is otherwise legal.
411 EVT VT = Op.getOperand(0).getValueType();
412 assert(Op.getNode()->getNumValues() == 1 &&
413 "Can't promote a vector with multiple results!");
414
415 // Normal getTypeToPromoteTo() doesn't work here, as that will promote
416 // by widening the vector w/ the same element width and twice the number
417 // of elements. We want the other way around, the same number of elements,
418 // each twice the width.
419 //
420 // Increase the bitwidth of the element to the next pow-of-two
421 // (which is greater than 8 bits).
Jim Grosbach926dc162012-06-28 21:03:44 +0000422
Stephen Hines36b56882014-04-23 16:57:46 -0700423 EVT NVT = VT.widenIntegerVectorElementType(*DAG.getContext());
424 assert(NVT.isSimple() && "Promoting to a non-simple vector type!");
Benjamin Kramere4fae842013-05-28 16:31:26 +0000425 SDLoc dl(Op);
Jim Grosbach926dc162012-06-28 21:03:44 +0000426 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
427
428 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
429 ISD::SIGN_EXTEND;
430 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
431 if (Op.getOperand(j).getValueType().isVector())
432 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j));
433 else
434 Operands[j] = Op.getOperand(j);
435 }
436
Stephen Hinesdce4a402014-05-29 02:49:00 -0700437 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), Operands);
Jim Grosbach926dc162012-06-28 21:03:44 +0000438}
439
Stephen Hines36b56882014-04-23 16:57:46 -0700440// For FP_TO_INT we promote the result type to a vector type with wider
441// elements and then truncate the result. This is different from the default
442// PromoteVector which uses bitcast to promote thus assumning that the
443// promoted vector type has the same overall size.
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700444SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) {
Stephen Hines36b56882014-04-23 16:57:46 -0700445 assert(Op.getNode()->getNumValues() == 1 &&
446 "Can't promote a vector with multiple results!");
447 EVT VT = Op.getValueType();
448
449 EVT NewVT;
450 unsigned NewOpc;
451 while (1) {
452 NewVT = VT.widenIntegerVectorElementType(*DAG.getContext());
453 assert(NewVT.isSimple() && "Promoting to a non-simple vector type!");
454 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewVT)) {
455 NewOpc = ISD::FP_TO_SINT;
456 break;
457 }
458 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) {
459 NewOpc = ISD::FP_TO_UINT;
460 break;
461 }
462 }
463
464 SDLoc loc(Op);
465 SDValue promoted = DAG.getNode(NewOpc, SDLoc(Op), NewVT, Op.getOperand(0));
466 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT, promoted);
467}
468
Nadav Roteme9b58d02011-10-15 07:41:10 +0000469
470SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
Benjamin Kramere4fae842013-05-28 16:31:26 +0000471 SDLoc dl(Op);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000472 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
473 SDValue Chain = LD->getChain();
474 SDValue BasePTR = LD->getBasePtr();
475 EVT SrcVT = LD->getMemoryVT();
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000476 ISD::LoadExtType ExtType = LD->getExtensionType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000477
Michael Liaoeedff352013-02-20 18:04:21 +0000478 SmallVector<SDValue, 8> Vals;
Nadav Roteme9b58d02011-10-15 07:41:10 +0000479 SmallVector<SDValue, 8> LoadChains;
480 unsigned NumElem = SrcVT.getVectorNumElements();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000481
Michael Liaoeedff352013-02-20 18:04:21 +0000482 EVT SrcEltVT = SrcVT.getScalarType();
483 EVT DstEltVT = Op.getNode()->getValueType(0).getScalarType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000484
Michael Liaoeedff352013-02-20 18:04:21 +0000485 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) {
486 // When elements in a vector is not byte-addressable, we cannot directly
487 // load each element by advancing pointer, which could only address bytes.
488 // Instead, we load all significant words, mask bits off, and concatenate
489 // them to form each element. Finally, they are extended to destination
490 // scalar type to build the destination vector.
491 EVT WideVT = TLI.getPointerTy();
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000492
Michael Liaoeedff352013-02-20 18:04:21 +0000493 assert(WideVT.isRound() &&
494 "Could not handle the sophisticated case when the widest integer is"
495 " not power of 2.");
496 assert(WideVT.bitsGE(SrcEltVT) &&
497 "Type is not legalized?");
498
499 unsigned WideBytes = WideVT.getStoreSize();
500 unsigned Offset = 0;
501 unsigned RemainingBytes = SrcVT.getStoreSize();
502 SmallVector<SDValue, 8> LoadVals;
503
504 while (RemainingBytes > 0) {
505 SDValue ScalarLoad;
506 unsigned LoadBytes = WideBytes;
507
508 if (RemainingBytes >= LoadBytes) {
509 ScalarLoad = DAG.getLoad(WideVT, dl, Chain, BasePTR,
510 LD->getPointerInfo().getWithOffset(Offset),
511 LD->isVolatile(), LD->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000512 LD->isInvariant(), LD->getAlignment(),
Stephen Hines37ed9c12014-12-01 14:51:49 -0800513 LD->getAAInfo());
Michael Liaoeedff352013-02-20 18:04:21 +0000514 } else {
515 EVT LoadVT = WideVT;
516 while (RemainingBytes < LoadBytes) {
517 LoadBytes >>= 1; // Reduce the load size by half.
518 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3);
519 }
520 ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR,
521 LD->getPointerInfo().getWithOffset(Offset),
522 LoadVT, LD->isVolatile(),
Stephen Hines37ed9c12014-12-01 14:51:49 -0800523 LD->isNonTemporal(), LD->isInvariant(),
524 LD->getAlignment(), LD->getAAInfo());
Michael Liaoeedff352013-02-20 18:04:21 +0000525 }
526
527 RemainingBytes -= LoadBytes;
528 Offset += LoadBytes;
529 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Tom Stellardedd08f72013-08-26 15:06:10 +0000530 DAG.getConstant(LoadBytes, BasePTR.getValueType()));
Michael Liaoeedff352013-02-20 18:04:21 +0000531
532 LoadVals.push_back(ScalarLoad.getValue(0));
533 LoadChains.push_back(ScalarLoad.getValue(1));
534 }
535
536 // Extract bits, pack and extend/trunc them into destination type.
537 unsigned SrcEltBits = SrcEltVT.getSizeInBits();
538 SDValue SrcEltBitMask = DAG.getConstant((1U << SrcEltBits) - 1, WideVT);
539
540 unsigned BitOffset = 0;
541 unsigned WideIdx = 0;
542 unsigned WideBits = WideVT.getSizeInBits();
543
544 for (unsigned Idx = 0; Idx != NumElem; ++Idx) {
545 SDValue Lo, Hi, ShAmt;
546
547 if (BitOffset < WideBits) {
548 ShAmt = DAG.getConstant(BitOffset, TLI.getShiftAmountTy(WideVT));
549 Lo = DAG.getNode(ISD::SRL, dl, WideVT, LoadVals[WideIdx], ShAmt);
550 Lo = DAG.getNode(ISD::AND, dl, WideVT, Lo, SrcEltBitMask);
551 }
552
553 BitOffset += SrcEltBits;
554 if (BitOffset >= WideBits) {
555 WideIdx++;
556 Offset -= WideBits;
557 if (Offset > 0) {
558 ShAmt = DAG.getConstant(SrcEltBits - Offset,
559 TLI.getShiftAmountTy(WideVT));
560 Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt);
561 Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask);
562 }
563 }
564
565 if (Hi.getNode())
566 Lo = DAG.getNode(ISD::OR, dl, WideVT, Lo, Hi);
567
568 switch (ExtType) {
569 default: llvm_unreachable("Unknown extended-load op!");
570 case ISD::EXTLOAD:
571 Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT);
572 break;
573 case ISD::ZEXTLOAD:
574 Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT);
575 break;
576 case ISD::SEXTLOAD:
577 ShAmt = DAG.getConstant(WideBits - SrcEltBits,
578 TLI.getShiftAmountTy(WideVT));
579 Lo = DAG.getNode(ISD::SHL, dl, WideVT, Lo, ShAmt);
580 Lo = DAG.getNode(ISD::SRA, dl, WideVT, Lo, ShAmt);
581 Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT);
582 break;
583 }
584 Vals.push_back(Lo);
585 }
586 } else {
587 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
588
589 for (unsigned Idx=0; Idx<NumElem; Idx++) {
590 SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl,
591 Op.getNode()->getValueType(0).getScalarType(),
592 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
593 SrcVT.getScalarType(),
Stephen Hines37ed9c12014-12-01 14:51:49 -0800594 LD->isVolatile(), LD->isNonTemporal(), LD->isInvariant(),
595 LD->getAlignment(), LD->getAAInfo());
Michael Liaoeedff352013-02-20 18:04:21 +0000596
597 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Tom Stellardedd08f72013-08-26 15:06:10 +0000598 DAG.getConstant(Stride, BasePTR.getValueType()));
Michael Liaoeedff352013-02-20 18:04:21 +0000599
600 Vals.push_back(ScalarLoad.getValue(0));
601 LoadChains.push_back(ScalarLoad.getValue(1));
602 }
Nadav Roteme9b58d02011-10-15 07:41:10 +0000603 }
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000604
Stephen Hinesdce4a402014-05-29 02:49:00 -0700605 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000606 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
Stephen Hinesdce4a402014-05-29 02:49:00 -0700607 Op.getNode()->getValueType(0), Vals);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000608
609 AddLegalizedOperand(Op.getValue(0), Value);
610 AddLegalizedOperand(Op.getValue(1), NewChain);
611
612 return (Op.getResNo() ? NewChain : Value);
613}
614
615SDValue VectorLegalizer::ExpandStore(SDValue Op) {
Benjamin Kramere4fae842013-05-28 16:31:26 +0000616 SDLoc dl(Op);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000617 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
618 SDValue Chain = ST->getChain();
619 SDValue BasePTR = ST->getBasePtr();
620 SDValue Value = ST->getValue();
621 EVT StVT = ST->getMemoryVT();
622
623 unsigned Alignment = ST->getAlignment();
624 bool isVolatile = ST->isVolatile();
625 bool isNonTemporal = ST->isNonTemporal();
Stephen Hines37ed9c12014-12-01 14:51:49 -0800626 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000627
628 unsigned NumElem = StVT.getVectorNumElements();
629 // The type of the data we want to save
630 EVT RegVT = Value.getValueType();
631 EVT RegSclVT = RegVT.getScalarType();
632 // The type of data as saved in memory.
633 EVT MemSclVT = StVT.getScalarType();
634
635 // Cast floats into integers
636 unsigned ScalarSize = MemSclVT.getSizeInBits();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000637
638 // Round odd types to the next pow of two.
639 if (!isPowerOf2_32(ScalarSize))
640 ScalarSize = NextPowerOf2(ScalarSize);
641
642 // Store Stride in bytes
643 unsigned Stride = ScalarSize/8;
644 // Extract each of the elements from the original vector
645 // and save them into memory individually.
646 SmallVector<SDValue, 8> Stores;
647 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
648 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Tom Stellard425b76c2013-08-05 22:22:01 +0000649 RegSclVT, Value, DAG.getConstant(Idx, TLI.getVectorIdxTy()));
Nadav Roteme9b58d02011-10-15 07:41:10 +0000650
Nadav Roteme9b58d02011-10-15 07:41:10 +0000651 // This scalar TruncStore may be illegal, but we legalize it later.
652 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
653 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
Stephen Hines37ed9c12014-12-01 14:51:49 -0800654 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000655
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000656 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Tom Stellardedd08f72013-08-26 15:06:10 +0000657 DAG.getConstant(Stride, BasePTR.getValueType()));
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000658
Nadav Roteme9b58d02011-10-15 07:41:10 +0000659 Stores.push_back(Store);
660 }
Stephen Hinesdce4a402014-05-29 02:49:00 -0700661 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Nadav Roteme9b58d02011-10-15 07:41:10 +0000662 AddLegalizedOperand(Op, TF);
663 return TF;
664}
665
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700666SDValue VectorLegalizer::Expand(SDValue Op) {
667 switch (Op->getOpcode()) {
668 case ISD::SIGN_EXTEND_INREG:
669 return ExpandSEXTINREG(Op);
670 case ISD::ANY_EXTEND_VECTOR_INREG:
671 return ExpandANY_EXTEND_VECTOR_INREG(Op);
672 case ISD::SIGN_EXTEND_VECTOR_INREG:
673 return ExpandSIGN_EXTEND_VECTOR_INREG(Op);
674 case ISD::ZERO_EXTEND_VECTOR_INREG:
675 return ExpandZERO_EXTEND_VECTOR_INREG(Op);
676 case ISD::BSWAP:
677 return ExpandBSWAP(Op);
678 case ISD::VSELECT:
679 return ExpandVSELECT(Op);
680 case ISD::SELECT:
681 return ExpandSELECT(Op);
682 case ISD::UINT_TO_FP:
683 return ExpandUINT_TO_FLOAT(Op);
684 case ISD::FNEG:
685 return ExpandFNEG(Op);
686 case ISD::SETCC:
687 return UnrollVSETCC(Op);
688 default:
689 return DAG.UnrollVectorOp(Op.getNode());
690 }
691}
692
Nadav Roteme757f002012-08-30 19:17:29 +0000693SDValue VectorLegalizer::ExpandSELECT(SDValue Op) {
694 // Lower a select instruction where the condition is a scalar and the
695 // operands are vectors. Lower this select to VSELECT and implement it
Stephen Lin155615d2013-07-08 00:37:03 +0000696 // using XOR AND OR. The selector bit is broadcasted.
Nadav Roteme757f002012-08-30 19:17:29 +0000697 EVT VT = Op.getValueType();
Benjamin Kramere4fae842013-05-28 16:31:26 +0000698 SDLoc DL(Op);
Nadav Roteme757f002012-08-30 19:17:29 +0000699
700 SDValue Mask = Op.getOperand(0);
701 SDValue Op1 = Op.getOperand(1);
702 SDValue Op2 = Op.getOperand(2);
703
704 assert(VT.isVector() && !Mask.getValueType().isVector()
705 && Op1.getValueType() == Op2.getValueType() && "Invalid type");
706
707 unsigned NumElem = VT.getVectorNumElements();
708
709 // If we can't even use the basic vector operations of
710 // AND,OR,XOR, we will have to scalarize the op.
711 // Notice that the operation may be 'promoted' which means that it is
712 // 'bitcasted' to another type which is handled.
713 // Also, we need to be able to construct a splat vector using BUILD_VECTOR.
714 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
715 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
716 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
717 TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand)
718 return DAG.UnrollVectorOp(Op.getNode());
719
720 // Generate a mask operand.
Matt Arsenaultc6c08502013-09-10 00:41:56 +0000721 EVT MaskTy = VT.changeVectorElementTypeToInteger();
Nadav Roteme757f002012-08-30 19:17:29 +0000722
723 // What is the size of each element in the vector mask.
724 EVT BitTy = MaskTy.getScalarType();
725
Matt Arsenaultb05e4772013-06-14 22:04:37 +0000726 Mask = DAG.getSelect(DL, BitTy, Mask,
Nadav Rotemf55ef642012-09-02 08:20:07 +0000727 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy),
Nadav Rotemee77da62012-09-02 12:21:50 +0000728 DAG.getConstant(0, BitTy));
Nadav Roteme757f002012-08-30 19:17:29 +0000729
730 // Broadcast the mask so that the entire vector is all-one or all zero.
731 SmallVector<SDValue, 8> Ops(NumElem, Mask);
Stephen Hinesdce4a402014-05-29 02:49:00 -0700732 Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskTy, Ops);
Nadav Roteme757f002012-08-30 19:17:29 +0000733
734 // Bitcast the operands to be the same type as the mask.
735 // This is needed when we select between FP types because
736 // the mask is a vector of integers.
737 Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1);
738 Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2);
739
740 SDValue AllOnes = DAG.getConstant(
741 APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy);
742 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes);
743
744 Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask);
745 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
746 SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2);
747 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
748}
749
Nadav Rotem66de2af2013-01-11 22:57:48 +0000750SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
751 EVT VT = Op.getValueType();
752
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000753 // Make sure that the SRA and SHL instructions are available.
Nadav Rotem66de2af2013-01-11 22:57:48 +0000754 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand ||
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000755 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand)
Nadav Rotem66de2af2013-01-11 22:57:48 +0000756 return DAG.UnrollVectorOp(Op.getNode());
757
Benjamin Kramere4fae842013-05-28 16:31:26 +0000758 SDLoc DL(Op);
Nadav Rotem66de2af2013-01-11 22:57:48 +0000759 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT();
760
761 unsigned BW = VT.getScalarType().getSizeInBits();
762 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
763 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, VT);
764
765 Op = Op.getOperand(0);
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000766 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz);
Nadav Rotem66de2af2013-01-11 22:57:48 +0000767 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz);
768}
769
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700770// Generically expand a vector anyext in register to a shuffle of the relevant
771// lanes into the appropriate locations, with other lanes left undef.
772SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDValue Op) {
773 SDLoc DL(Op);
774 EVT VT = Op.getValueType();
775 int NumElements = VT.getVectorNumElements();
776 SDValue Src = Op.getOperand(0);
777 EVT SrcVT = Src.getValueType();
778 int NumSrcElements = SrcVT.getVectorNumElements();
779
780 // Build a base mask of undef shuffles.
781 SmallVector<int, 16> ShuffleMask;
782 ShuffleMask.resize(NumSrcElements, -1);
783
784 // Place the extended lanes into the correct locations.
785 int ExtLaneScale = NumSrcElements / NumElements;
786 int EndianOffset = TLI.isBigEndian() ? ExtLaneScale - 1 : 0;
787 for (int i = 0; i < NumElements; ++i)
788 ShuffleMask[i * ExtLaneScale + EndianOffset] = i;
789
790 return DAG.getNode(
791 ISD::BITCAST, DL, VT,
792 DAG.getVectorShuffle(SrcVT, DL, Src, DAG.getUNDEF(SrcVT), ShuffleMask));
793}
794
795SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) {
796 SDLoc DL(Op);
797 EVT VT = Op.getValueType();
798 SDValue Src = Op.getOperand(0);
799 EVT SrcVT = Src.getValueType();
800
801 // First build an any-extend node which can be legalized above when we
802 // recurse through it.
803 Op = DAG.getAnyExtendVectorInReg(Src, DL, VT);
804
805 // Now we need sign extend. Do this by shifting the elements. Even if these
806 // aren't legal operations, they have a better chance of being legalized
807 // without full scalarization than the sign extension does.
808 unsigned EltWidth = VT.getVectorElementType().getSizeInBits();
809 unsigned SrcEltWidth = SrcVT.getVectorElementType().getSizeInBits();
810 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, VT);
811 return DAG.getNode(ISD::SRA, DL, VT,
812 DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount),
813 ShiftAmount);
814}
815
816// Generically expand a vector zext in register to a shuffle of the relevant
817// lanes into the appropriate locations, a blend of zero into the high bits,
818// and a bitcast to the wider element type.
819SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op) {
820 SDLoc DL(Op);
821 EVT VT = Op.getValueType();
822 int NumElements = VT.getVectorNumElements();
823 SDValue Src = Op.getOperand(0);
824 EVT SrcVT = Src.getValueType();
825 int NumSrcElements = SrcVT.getVectorNumElements();
826
827 // Build up a zero vector to blend into this one.
828 EVT SrcScalarVT = SrcVT.getScalarType();
829 SDValue ScalarZero = DAG.getTargetConstant(0, SrcScalarVT);
830 SmallVector<SDValue, 4> BuildVectorOperands(NumSrcElements, ScalarZero);
831 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, DL, SrcVT, BuildVectorOperands);
832
833 // Shuffle the incoming lanes into the correct position, and pull all other
834 // lanes from the zero vector.
835 SmallVector<int, 16> ShuffleMask;
836 ShuffleMask.reserve(NumSrcElements);
837 for (int i = 0; i < NumSrcElements; ++i)
838 ShuffleMask.push_back(i);
839
840 int ExtLaneScale = NumSrcElements / NumElements;
841 int EndianOffset = TLI.isBigEndian() ? ExtLaneScale - 1 : 0;
842 for (int i = 0; i < NumElements; ++i)
843 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i;
844
845 return DAG.getNode(ISD::BITCAST, DL, VT,
846 DAG.getVectorShuffle(SrcVT, DL, Zero, Src, ShuffleMask));
847}
848
Stephen Hinesdce4a402014-05-29 02:49:00 -0700849SDValue VectorLegalizer::ExpandBSWAP(SDValue Op) {
850 EVT VT = Op.getValueType();
851
852 // Generate a byte wise shuffle mask for the BSWAP.
853 SmallVector<int, 16> ShuffleMask;
854 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8;
855 for (int I = 0, E = VT.getVectorNumElements(); I != E; ++I)
856 for (int J = ScalarSizeInBytes - 1; J >= 0; --J)
857 ShuffleMask.push_back((I * ScalarSizeInBytes) + J);
858
859 EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, ShuffleMask.size());
860
861 // Only emit a shuffle if the mask is legal.
862 if (!TLI.isShuffleMaskLegal(ShuffleMask, ByteVT))
863 return DAG.UnrollVectorOp(Op.getNode());
864
865 SDLoc DL(Op);
866 Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0));
867 Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT),
868 ShuffleMask.data());
869 return DAG.getNode(ISD::BITCAST, DL, VT, Op);
870}
871
Nadav Rotemaec58612011-09-13 19:17:42 +0000872SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
873 // Implement VSELECT in terms of XOR, AND, OR
874 // on platforms which do not support blend natively.
Benjamin Kramere4fae842013-05-28 16:31:26 +0000875 SDLoc DL(Op);
Nadav Rotemaec58612011-09-13 19:17:42 +0000876
877 SDValue Mask = Op.getOperand(0);
878 SDValue Op1 = Op.getOperand(1);
879 SDValue Op2 = Op.getOperand(2);
880
Matt Arsenault798925b2013-05-07 20:24:18 +0000881 EVT VT = Mask.getValueType();
882
Nadav Rotemaec58612011-09-13 19:17:42 +0000883 // If we can't even use the basic vector operations of
884 // AND,OR,XOR, we will have to scalarize the op.
Nadav Rotem815af822011-10-19 20:43:16 +0000885 // Notice that the operation may be 'promoted' which means that it is
886 // 'bitcasted' to another type which is handled.
Pete Cooperd9060172012-09-01 22:27:48 +0000887 // This operation also isn't safe with AND, OR, XOR when the boolean
888 // type is 0/1 as we need an all ones vector constant to mask with.
889 // FIXME: Sign extend 1 to all ones if thats legal on the target.
Nadav Rotem815af822011-10-19 20:43:16 +0000890 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
891 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700892 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
893 TLI.getBooleanContents(Op1.getValueType()) !=
894 TargetLowering::ZeroOrNegativeOneBooleanContent)
Nadav Rotem815af822011-10-19 20:43:16 +0000895 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotemaec58612011-09-13 19:17:42 +0000896
Matt Arsenault798925b2013-05-07 20:24:18 +0000897 // If the mask and the type are different sizes, unroll the vector op. This
898 // can occur when getSetCCResultType returns something that is different in
899 // size from the operand types. For example, v4i8 = select v4i32, v4i8, v4i8.
900 if (VT.getSizeInBits() != Op1.getValueType().getSizeInBits())
901 return DAG.UnrollVectorOp(Op.getNode());
902
Nadav Rotemaec58612011-09-13 19:17:42 +0000903 // Bitcast the operands to be the same type as the mask.
904 // This is needed when we select between FP types because
905 // the mask is a vector of integers.
906 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1);
907 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2);
908
909 SDValue AllOnes = DAG.getConstant(
910 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
911 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes);
912
913 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask);
914 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
Nadav Rotem3ab32ea2012-04-15 15:08:09 +0000915 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2);
916 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
Nadav Rotemaec58612011-09-13 19:17:42 +0000917}
918
Nadav Rotem06cc3242011-03-19 13:09:10 +0000919SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) {
Nadav Rotem06cc3242011-03-19 13:09:10 +0000920 EVT VT = Op.getOperand(0).getValueType();
Benjamin Kramere4fae842013-05-28 16:31:26 +0000921 SDLoc DL(Op);
Nadav Rotem06cc3242011-03-19 13:09:10 +0000922
923 // Make sure that the SINT_TO_FP and SRL instructions are available.
Nadav Rotem815af822011-10-19 20:43:16 +0000924 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
925 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand)
926 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotem06cc3242011-03-19 13:09:10 +0000927
928 EVT SVT = VT.getScalarType();
929 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) &&
930 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
931
932 unsigned BW = SVT.getSizeInBits();
933 SDValue HalfWord = DAG.getConstant(BW/2, VT);
934
935 // Constants to clear the upper part of the word.
936 // Notice that we can also use SHL+SHR, but using a constant is slightly
937 // faster on x86.
938 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF;
939 SDValue HalfWordMask = DAG.getConstant(HWMask, VT);
940
941 // Two to the power of half-word-size.
942 SDValue TWOHW = DAG.getConstantFP((1<<(BW/2)), Op.getValueType());
943
944 // Clear upper part of LO, lower HI
945 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord);
946 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask);
947
948 // Convert hi and lo to floats
949 // Convert the hi part back to the upper values
950 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI);
951 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW);
952 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO);
953
954 // Add the two halves
955 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO);
956}
957
958
Eli Friedman5c22c802009-05-23 12:35:30 +0000959SDValue VectorLegalizer::ExpandFNEG(SDValue Op) {
960 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) {
961 SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType());
Andrew Trickac6d9be2013-05-25 02:42:55 +0000962 return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
Eli Friedman5c22c802009-05-23 12:35:30 +0000963 Zero, Op.getOperand(0));
964 }
Mon P Wangcd6e7252009-11-30 02:42:02 +0000965 return DAG.UnrollVectorOp(Op.getNode());
Eli Friedman5c22c802009-05-23 12:35:30 +0000966}
967
968SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
Owen Andersone50ed302009-08-10 22:56:29 +0000969 EVT VT = Op.getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000970 unsigned NumElems = VT.getVectorNumElements();
Owen Andersone50ed302009-08-10 22:56:29 +0000971 EVT EltVT = VT.getVectorElementType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000972 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000973 EVT TmpEltVT = LHS.getValueType().getVectorElementType();
Benjamin Kramere4fae842013-05-28 16:31:26 +0000974 SDLoc dl(Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000975 SmallVector<SDValue, 8> Ops(NumElems);
976 for (unsigned i = 0; i < NumElems; ++i) {
977 SDValue LHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
Tom Stellard425b76c2013-08-05 22:22:01 +0000978 DAG.getConstant(i, TLI.getVectorIdxTy()));
Eli Friedman5c22c802009-05-23 12:35:30 +0000979 SDValue RHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS,
Tom Stellard425b76c2013-08-05 22:22:01 +0000980 DAG.getConstant(i, TLI.getVectorIdxTy()));
Matt Arsenault225ed702013-05-18 00:21:46 +0000981 Ops[i] = DAG.getNode(ISD::SETCC, dl,
982 TLI.getSetCCResultType(*DAG.getContext(), TmpEltVT),
Eli Friedman5c22c802009-05-23 12:35:30 +0000983 LHSElem, RHSElem, CC);
Matt Arsenaultb05e4772013-06-14 22:04:37 +0000984 Ops[i] = DAG.getSelect(dl, EltVT, Ops[i],
985 DAG.getConstant(APInt::getAllOnesValue
986 (EltVT.getSizeInBits()), EltVT),
987 DAG.getConstant(0, EltVT));
Eli Friedman5c22c802009-05-23 12:35:30 +0000988 }
Stephen Hinesdce4a402014-05-29 02:49:00 -0700989 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Eli Friedman5c22c802009-05-23 12:35:30 +0000990}
991
Eli Friedman5c22c802009-05-23 12:35:30 +0000992}
993
994bool SelectionDAG::LegalizeVectors() {
995 return VectorLegalizer(*this).Run();
996}