blob: 1fb7b160a67177902e006b29cc96d9aa7b72b62a [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);
James Molloy7395a812015-07-16 15:22:46 +0000108 SDValue ExpandABSDIFF(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000109
110 /// \brief Implements vector promotion.
111 ///
112 /// This is essentially just bitcasting the operands to a different type and
113 /// bitcasting the result back to the original type.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000114 SDValue Promote(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000115
116 /// \brief Implements [SU]INT_TO_FP vector promotion.
117 ///
118 /// This is a [zs]ext of the input operand to the next size up.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000119 SDValue PromoteINT_TO_FP(SDValue Op);
Chandler Carruth68adf152014-07-02 02:16:57 +0000120
121 /// \brief Implements FP_TO_[SU]INT vector promotion of the result type.
122 ///
123 /// It is promoted to the next size up integer type. The result is then
124 /// truncated back to the original type.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000125 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000126
Chandler Carruth68adf152014-07-02 02:16:57 +0000127public:
128 /// \brief Begin legalizer the vector operations in the DAG.
Eli Friedmanda90dd62009-05-23 12:35:30 +0000129 bool Run();
130 VectorLegalizer(SelectionDAG& dag) :
131 DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {}
132};
133
134bool VectorLegalizer::Run() {
Nadav Rotemb7f90bd2013-02-22 23:33:30 +0000135 // Before we start legalizing vector nodes, check if there are any vectors.
136 bool HasVectors = false;
137 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000138 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I) {
Nadav Rotemb7f90bd2013-02-22 23:33:30 +0000139 // Check if the values of the nodes contain vectors. We don't need to check
140 // the operands because we are going to check their values at some point.
141 for (SDNode::value_iterator J = I->value_begin(), E = I->value_end();
142 J != E; ++J)
143 HasVectors |= J->isVector();
144
145 // If we found a vector node we can start the legalization.
146 if (HasVectors)
147 break;
148 }
149
150 // If this basic block has no vectors then no need to legalize vectors.
151 if (!HasVectors)
152 return false;
153
Eli Friedmanda90dd62009-05-23 12:35:30 +0000154 // The legalize process is inherently a bottom-up recursive process (users
155 // legalize their uses before themselves). Given infinite stack space, we
156 // could just start legalizing on the root and traverse the whole graph. In
157 // practice however, this causes us to run out of stack space on large basic
158 // blocks. To avoid this problem, compute an ordering of the nodes where each
159 // node is only legalized after all of its operands are legalized.
160 DAG.AssignTopologicalOrder();
161 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000162 E = std::prev(DAG.allnodes_end()); I != std::next(E); ++I)
Duncan P. N. Exon Smithe400a7d2015-10-13 19:47:46 +0000163 LegalizeOp(SDValue(&*I, 0));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000164
165 // Finally, it's possible the root changed. Get the new root.
166 SDValue OldRoot = DAG.getRoot();
167 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
168 DAG.setRoot(LegalizedNodes[OldRoot]);
169
170 LegalizedNodes.clear();
171
172 // Remove dead nodes now.
173 DAG.RemoveDeadNodes();
174
175 return Changed;
176}
177
178SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
179 // Generic legalization: just pass the operand through.
180 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i)
181 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
182 return Result.getValue(Op.getResNo());
183}
184
185SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
186 // Note that LegalizeOp may be reentered even from single-use nodes, which
187 // means that we always must cache transformed nodes.
188 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
189 if (I != LegalizedNodes.end()) return I->second;
190
191 SDNode* Node = Op.getNode();
192
193 // Legalize the operands
194 SmallVector<SDValue, 8> Ops;
Pete Cooper8fc121d2015-06-26 19:08:33 +0000195 for (const SDValue &Op : Node->op_values())
196 Ops.push_back(LegalizeOp(Op));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000197
Craig Topper8c0b4d02014-04-28 05:57:50 +0000198 SDValue Result = SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops), 0);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000199
Elena Demikhovsky1b60ed72015-05-03 07:12:25 +0000200 bool HasVectorValue = false;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000201 if (Op.getOpcode() == ISD::LOAD) {
202 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
203 ISD::LoadExtType ExtType = LD->getExtensionType();
Chandler Carruth80b86942014-07-24 22:09:56 +0000204 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD)
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000205 switch (TLI.getLoadExtAction(LD->getExtensionType(), LD->getValueType(0),
206 LD->getMemoryVT())) {
Chandler Carruth80b86942014-07-24 22:09:56 +0000207 default: llvm_unreachable("This action is not supported yet!");
208 case TargetLowering::Legal:
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000209 return TranslateLegalizeResults(Op, Result);
Chandler Carruth80b86942014-07-24 22:09:56 +0000210 case TargetLowering::Custom:
211 if (SDValue Lowered = TLI.LowerOperation(Result, DAG)) {
Hal Finkelcec70132015-02-24 12:59:47 +0000212 if (Lowered == Result)
213 return TranslateLegalizeResults(Op, Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000214 Changed = true;
215 if (Lowered->getNumValues() != Op->getNumValues()) {
216 // This expanded to something other than the load. Assume the
217 // lowering code took care of any chain values, and just handle the
218 // returned value.
219 assert(Result.getValue(1).use_empty() &&
220 "There are still live users of the old chain!");
221 return LegalizeOp(Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000222 }
Mehdi Amini891c0972015-10-27 08:12:08 +0000223 return TranslateLegalizeResults(Op, Lowered);
Chandler Carruth80b86942014-07-24 22:09:56 +0000224 }
225 case TargetLowering::Expand:
226 Changed = true;
227 return LegalizeOp(ExpandLoad(Op));
228 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000229 } else if (Op.getOpcode() == ISD::STORE) {
230 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
231 EVT StVT = ST->getMemoryVT();
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000232 MVT ValVT = ST->getValue().getSimpleValueType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000233 if (StVT.isVector() && ST->isTruncatingStore())
Eric Christopher4675c432015-11-25 09:11:53 +0000234 switch (TLI.getTruncStoreAction(ValVT, StVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +0000235 default: llvm_unreachable("This action is not supported yet!");
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000236 case TargetLowering::Legal:
237 return TranslateLegalizeResults(Op, Result);
Hal Finkelcec70132015-02-24 12:59:47 +0000238 case TargetLowering::Custom: {
239 SDValue Lowered = TLI.LowerOperation(Result, DAG);
240 Changed = Lowered != Result;
241 return TranslateLegalizeResults(Op, Lowered);
242 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000243 case TargetLowering::Expand:
244 Changed = true;
245 return LegalizeOp(ExpandStore(Op));
246 }
Elena Demikhovsky1b60ed72015-05-03 07:12:25 +0000247 } else if (Op.getOpcode() == ISD::MSCATTER)
248 HasVectorValue = true;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000249
Eli Friedmanda90dd62009-05-23 12:35:30 +0000250 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end();
251 J != E;
252 ++J)
253 HasVectorValue |= J->isVector();
254 if (!HasVectorValue)
255 return TranslateLegalizeResults(Op, Result);
256
Owen Anderson53aa7a92009-08-10 22:56:29 +0000257 EVT QueryType;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000258 switch (Op.getOpcode()) {
259 default:
260 return TranslateLegalizeResults(Op, Result);
261 case ISD::ADD:
262 case ISD::SUB:
263 case ISD::MUL:
264 case ISD::SDIV:
265 case ISD::UDIV:
266 case ISD::SREM:
267 case ISD::UREM:
Artyom Skrobovb844fa72015-10-20 13:06:02 +0000268 case ISD::SDIVREM:
269 case ISD::UDIVREM:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000270 case ISD::FADD:
271 case ISD::FSUB:
272 case ISD::FMUL:
273 case ISD::FDIV:
274 case ISD::FREM:
275 case ISD::AND:
276 case ISD::OR:
277 case ISD::XOR:
278 case ISD::SHL:
279 case ISD::SRA:
280 case ISD::SRL:
281 case ISD::ROTL:
282 case ISD::ROTR:
Hal Finkel5c968d92014-02-03 17:27:25 +0000283 case ISD::BSWAP:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000284 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000285 case ISD::CTTZ:
286 case ISD::CTLZ_ZERO_UNDEF:
287 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000288 case ISD::CTPOP:
289 case ISD::SELECT:
Nadav Rotem52202fb2011-09-13 19:17:42 +0000290 case ISD::VSELECT:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000291 case ISD::SELECT_CC:
Duncan Sandsf2641e12011-09-06 19:07:46 +0000292 case ISD::SETCC:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000293 case ISD::ZERO_EXTEND:
294 case ISD::ANY_EXTEND:
295 case ISD::TRUNCATE:
296 case ISD::SIGN_EXTEND:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000297 case ISD::FP_TO_SINT:
298 case ISD::FP_TO_UINT:
299 case ISD::FNEG:
300 case ISD::FABS:
Matt Arsenault7c936902014-10-21 23:01:01 +0000301 case ISD::FMINNUM:
302 case ISD::FMAXNUM:
James Molloy01cdecc2015-08-11 09:13:05 +0000303 case ISD::FMINNAN:
304 case ISD::FMAXNAN:
Hal Finkel0c5c01aa2013-08-19 23:35:46 +0000305 case ISD::FCOPYSIGN:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000306 case ISD::FSQRT:
307 case ISD::FSIN:
308 case ISD::FCOS:
309 case ISD::FPOWI:
310 case ISD::FPOW:
311 case ISD::FLOG:
312 case ISD::FLOG2:
313 case ISD::FLOG10:
314 case ISD::FEXP:
315 case ISD::FEXP2:
316 case ISD::FCEIL:
317 case ISD::FTRUNC:
318 case ISD::FRINT:
319 case ISD::FNEARBYINT:
Hal Finkel171817e2013-08-07 22:49:12 +0000320 case ISD::FROUND:
Eli Friedmanda90dd62009-05-23 12:35:30 +0000321 case ISD::FFLOOR:
Eli Friedmane6385e62012-11-15 22:44:27 +0000322 case ISD::FP_ROUND:
Eli Friedman30834942012-11-17 01:52:46 +0000323 case ISD::FP_EXTEND:
Craig Topper2da13f92012-08-30 07:34:22 +0000324 case ISD::FMA:
Nadav Rotem771f2962011-07-14 11:11:14 +0000325 case ISD::SIGN_EXTEND_INREG:
Chandler Carruth0b666e02014-07-10 12:32:32 +0000326 case ISD::ANY_EXTEND_VECTOR_INREG:
327 case ISD::SIGN_EXTEND_VECTOR_INREG:
Chandler Carruthafe4b252014-07-09 10:58:18 +0000328 case ISD::ZERO_EXTEND_VECTOR_INREG:
James Molloy7e9776b2015-05-15 09:03:15 +0000329 case ISD::SMIN:
330 case ISD::SMAX:
331 case ISD::UMIN:
332 case ISD::UMAX:
James Molloy7395a812015-07-16 15:22:46 +0000333 case ISD::UABSDIFF:
334 case ISD::SABSDIFF:
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;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000347 }
348
Eli Friedmanaea9b652009-06-06 03:27:50 +0000349 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) {
Artyom Skrobovc7368632015-10-20 15:06:37 +0000350 default: llvm_unreachable("This action is not supported yet!");
Eli Friedmanda90dd62009-05-23 12:35:30 +0000351 case TargetLowering::Promote:
Chandler Carruth2746c282014-07-02 03:07:15 +0000352 Result = Promote(Op);
353 Changed = true;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000354 break;
Chandler Carruth2746c282014-07-02 03:07:15 +0000355 case TargetLowering::Legal:
356 break;
Eli Friedmanda90dd62009-05-23 12:35:30 +0000357 case TargetLowering::Custom: {
358 SDValue Tmp1 = TLI.LowerOperation(Op, DAG);
359 if (Tmp1.getNode()) {
360 Result = Tmp1;
361 break;
362 }
363 // FALL THROUGH
364 }
365 case TargetLowering::Expand:
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000366 Result = Expand(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000367 }
368
369 // Make sure that the generated code is itself legal.
370 if (Result != Op) {
371 Result = LegalizeOp(Result);
372 Changed = true;
373 }
374
375 // Note that LegalizeOp may be reentered even from single-use nodes, which
376 // means that we always must cache transformed nodes.
377 AddLegalizedOperand(Op, Result);
378 return Result;
379}
380
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000381SDValue VectorLegalizer::Promote(SDValue Op) {
Chandler Carruth2746c282014-07-02 03:07:15 +0000382 // For a few operations there is a specific concept for promotion based on
383 // the operand's type.
384 switch (Op.getOpcode()) {
385 case ISD::SINT_TO_FP:
386 case ISD::UINT_TO_FP:
387 // "Promote" the operation by extending the operand.
388 return PromoteINT_TO_FP(Op);
Chandler Carruth2746c282014-07-02 03:07:15 +0000389 case ISD::FP_TO_UINT:
390 case ISD::FP_TO_SINT:
391 // Promote the operation by extending the operand.
392 return PromoteFP_TO_INT(Op, Op->getOpcode() == ISD::FP_TO_SINT);
Chandler Carruth2746c282014-07-02 03:07:15 +0000393 }
394
Oliver Stannard89d15422014-08-27 16:16:04 +0000395 // There are currently two cases of vector promotion:
396 // 1) Bitcasting a vector of integers to a different type to a vector of the
Sanjay Patelf1765662015-03-27 21:45:18 +0000397 // same overall length. For example, x86 promotes ISD::AND v2i32 to v1i64.
398 // 2) Extending a vector of floats to a vector of the same number of larger
Oliver Stannard89d15422014-08-27 16:16:04 +0000399 // floats. For example, AArch64 promotes ISD::FADD on v4f16 to v4f32.
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000400 MVT VT = Op.getSimpleValueType();
Eli Friedmanda90dd62009-05-23 12:35:30 +0000401 assert(Op.getNode()->getNumValues() == 1 &&
402 "Can't promote a vector with multiple results!");
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000403 MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT);
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000404 SDLoc dl(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000405 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
406
407 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
408 if (Op.getOperand(j).getValueType().isVector())
Oliver Stannard89d15422014-08-27 16:16:04 +0000409 if (Op.getOperand(j)
410 .getValueType()
411 .getVectorElementType()
Hal Finkel271e9f22015-02-12 22:43:52 +0000412 .isFloatingPoint() &&
413 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint())
Oliver Stannard89d15422014-08-27 16:16:04 +0000414 Operands[j] = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op.getOperand(j));
415 else
416 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j));
Eli Friedmanda90dd62009-05-23 12:35:30 +0000417 else
418 Operands[j] = Op.getOperand(j);
419 }
Sanjay Patela2607012015-09-16 16:31:21 +0000420
421 Op = DAG.getNode(Op.getOpcode(), dl, NVT, Operands, Op.getNode()->getFlags());
Hal Finkel271e9f22015-02-12 22:43:52 +0000422 if ((VT.isFloatingPoint() && NVT.isFloatingPoint()) ||
423 (VT.isVector() && VT.getVectorElementType().isFloatingPoint() &&
424 NVT.isVector() && NVT.getVectorElementType().isFloatingPoint()))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000425 return DAG.getNode(ISD::FP_ROUND, dl, VT, Op, DAG.getIntPtrConstant(0, dl));
Oliver Stannard89d15422014-08-27 16:16:04 +0000426 else
427 return DAG.getNode(ISD::BITCAST, dl, VT, Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +0000428}
429
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000430SDValue VectorLegalizer::PromoteINT_TO_FP(SDValue Op) {
Jim Grosbache0c10d82012-06-28 21:03:44 +0000431 // INT_TO_FP operations may require the input operand be promoted even
432 // when the type is otherwise legal.
433 EVT VT = Op.getOperand(0).getValueType();
434 assert(Op.getNode()->getNumValues() == 1 &&
435 "Can't promote a vector with multiple results!");
436
437 // Normal getTypeToPromoteTo() doesn't work here, as that will promote
438 // by widening the vector w/ the same element width and twice the number
439 // of elements. We want the other way around, the same number of elements,
440 // each twice the width.
441 //
442 // Increase the bitwidth of the element to the next pow-of-two
443 // (which is greater than 8 bits).
Jim Grosbache0c10d82012-06-28 21:03:44 +0000444
Adam Nemet24381f12014-03-17 17:06:14 +0000445 EVT NVT = VT.widenIntegerVectorElementType(*DAG.getContext());
446 assert(NVT.isSimple() && "Promoting to a non-simple vector type!");
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000447 SDLoc dl(Op);
Jim Grosbache0c10d82012-06-28 21:03:44 +0000448 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
449
450 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
451 ISD::SIGN_EXTEND;
452 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
453 if (Op.getOperand(j).getValueType().isVector())
454 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j));
455 else
456 Operands[j] = Op.getOperand(j);
457 }
458
Craig Topper48d114b2014-04-26 18:35:24 +0000459 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), Operands);
Jim Grosbache0c10d82012-06-28 21:03:44 +0000460}
461
Adam Nemet24381f12014-03-17 17:06:14 +0000462// For FP_TO_INT we promote the result type to a vector type with wider
463// elements and then truncate the result. This is different from the default
464// PromoteVector which uses bitcast to promote thus assumning that the
465// promoted vector type has the same overall size.
Chandler Carruth1cfa8952014-07-02 03:07:11 +0000466SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) {
Adam Nemet24381f12014-03-17 17:06:14 +0000467 assert(Op.getNode()->getNumValues() == 1 &&
468 "Can't promote a vector with multiple results!");
469 EVT VT = Op.getValueType();
470
471 EVT NewVT;
472 unsigned NewOpc;
473 while (1) {
474 NewVT = VT.widenIntegerVectorElementType(*DAG.getContext());
475 assert(NewVT.isSimple() && "Promoting to a non-simple vector type!");
476 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewVT)) {
477 NewOpc = ISD::FP_TO_SINT;
478 break;
479 }
480 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) {
481 NewOpc = ISD::FP_TO_UINT;
482 break;
483 }
484 }
485
486 SDLoc loc(Op);
487 SDValue promoted = DAG.getNode(NewOpc, SDLoc(Op), NewVT, Op.getOperand(0));
488 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT, promoted);
489}
490
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000491
492SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000493 SDLoc dl(Op);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000494 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
495 SDValue Chain = LD->getChain();
496 SDValue BasePTR = LD->getBasePtr();
497 EVT SrcVT = LD->getMemoryVT();
Nadav Rotem75c22292011-10-18 22:32:43 +0000498 ISD::LoadExtType ExtType = LD->getExtensionType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000499
Michael Liao7fb39662013-02-20 18:04:21 +0000500 SmallVector<SDValue, 8> Vals;
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000501 SmallVector<SDValue, 8> LoadChains;
502 unsigned NumElem = SrcVT.getVectorNumElements();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000503
Michael Liao7fb39662013-02-20 18:04:21 +0000504 EVT SrcEltVT = SrcVT.getScalarType();
505 EVT DstEltVT = Op.getNode()->getValueType(0).getScalarType();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000506
Michael Liao7fb39662013-02-20 18:04:21 +0000507 if (SrcVT.getVectorNumElements() > 1 && !SrcEltVT.isByteSized()) {
508 // When elements in a vector is not byte-addressable, we cannot directly
509 // load each element by advancing pointer, which could only address bytes.
510 // Instead, we load all significant words, mask bits off, and concatenate
511 // them to form each element. Finally, they are extended to destination
512 // scalar type to build the destination vector.
Mehdi Amini44ede332015-07-09 02:09:04 +0000513 EVT WideVT = TLI.getPointerTy(DAG.getDataLayout());
Nadav Rotem75c22292011-10-18 22:32:43 +0000514
Michael Liao7fb39662013-02-20 18:04:21 +0000515 assert(WideVT.isRound() &&
516 "Could not handle the sophisticated case when the widest integer is"
517 " not power of 2.");
518 assert(WideVT.bitsGE(SrcEltVT) &&
519 "Type is not legalized?");
520
521 unsigned WideBytes = WideVT.getStoreSize();
522 unsigned Offset = 0;
523 unsigned RemainingBytes = SrcVT.getStoreSize();
524 SmallVector<SDValue, 8> LoadVals;
525
526 while (RemainingBytes > 0) {
527 SDValue ScalarLoad;
528 unsigned LoadBytes = WideBytes;
529
530 if (RemainingBytes >= LoadBytes) {
531 ScalarLoad = DAG.getLoad(WideVT, dl, Chain, BasePTR,
532 LD->getPointerInfo().getWithOffset(Offset),
533 LD->isVolatile(), LD->isNonTemporal(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000534 LD->isInvariant(),
535 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000536 LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000537 } else {
538 EVT LoadVT = WideVT;
539 while (RemainingBytes < LoadBytes) {
540 LoadBytes >>= 1; // Reduce the load size by half.
541 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3);
542 }
543 ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR,
544 LD->getPointerInfo().getWithOffset(Offset),
545 LoadVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000546 LD->isNonTemporal(), LD->isInvariant(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000547 MinAlign(LD->getAlignment(), Offset),
548 LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000549 }
550
551 RemainingBytes -= LoadBytes;
552 Offset += LoadBytes;
553 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000554 DAG.getConstant(LoadBytes, dl,
555 BasePTR.getValueType()));
Michael Liao7fb39662013-02-20 18:04:21 +0000556
557 LoadVals.push_back(ScalarLoad.getValue(0));
558 LoadChains.push_back(ScalarLoad.getValue(1));
559 }
560
561 // Extract bits, pack and extend/trunc them into destination type.
562 unsigned SrcEltBits = SrcEltVT.getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000563 SDValue SrcEltBitMask = DAG.getConstant((1U << SrcEltBits) - 1, dl, WideVT);
Michael Liao7fb39662013-02-20 18:04:21 +0000564
565 unsigned BitOffset = 0;
566 unsigned WideIdx = 0;
567 unsigned WideBits = WideVT.getSizeInBits();
568
569 for (unsigned Idx = 0; Idx != NumElem; ++Idx) {
570 SDValue Lo, Hi, ShAmt;
571
572 if (BitOffset < WideBits) {
Mehdi Amini9639d652015-07-09 02:09:20 +0000573 ShAmt = DAG.getConstant(
574 BitOffset, dl, TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000575 Lo = DAG.getNode(ISD::SRL, dl, WideVT, LoadVals[WideIdx], ShAmt);
576 Lo = DAG.getNode(ISD::AND, dl, WideVT, Lo, SrcEltBitMask);
577 }
578
579 BitOffset += SrcEltBits;
580 if (BitOffset >= WideBits) {
581 WideIdx++;
Michael Kupersteincd63c5f2015-02-04 18:54:01 +0000582 BitOffset -= WideBits;
583 if (BitOffset > 0) {
Mehdi Amini9639d652015-07-09 02:09:20 +0000584 ShAmt = DAG.getConstant(
585 SrcEltBits - BitOffset, dl,
586 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000587 Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt);
588 Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask);
589 }
590 }
591
592 if (Hi.getNode())
593 Lo = DAG.getNode(ISD::OR, dl, WideVT, Lo, Hi);
594
595 switch (ExtType) {
596 default: llvm_unreachable("Unknown extended-load op!");
597 case ISD::EXTLOAD:
598 Lo = DAG.getAnyExtOrTrunc(Lo, dl, DstEltVT);
599 break;
600 case ISD::ZEXTLOAD:
601 Lo = DAG.getZExtOrTrunc(Lo, dl, DstEltVT);
602 break;
603 case ISD::SEXTLOAD:
Mehdi Amini9639d652015-07-09 02:09:20 +0000604 ShAmt =
605 DAG.getConstant(WideBits - SrcEltBits, dl,
606 TLI.getShiftAmountTy(WideVT, DAG.getDataLayout()));
Michael Liao7fb39662013-02-20 18:04:21 +0000607 Lo = DAG.getNode(ISD::SHL, dl, WideVT, Lo, ShAmt);
608 Lo = DAG.getNode(ISD::SRA, dl, WideVT, Lo, ShAmt);
609 Lo = DAG.getSExtOrTrunc(Lo, dl, DstEltVT);
610 break;
611 }
612 Vals.push_back(Lo);
613 }
614 } else {
615 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
616
617 for (unsigned Idx=0; Idx<NumElem; Idx++) {
618 SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl,
619 Op.getNode()->getValueType(0).getScalarType(),
620 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
621 SrcVT.getScalarType(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000622 LD->isVolatile(), LD->isNonTemporal(), LD->isInvariant(),
Hal Finkelf5b95702015-02-22 15:58:04 +0000623 MinAlign(LD->getAlignment(), Idx * Stride), LD->getAAInfo());
Michael Liao7fb39662013-02-20 18:04:21 +0000624
625 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000626 DAG.getConstant(Stride, dl, BasePTR.getValueType()));
Michael Liao7fb39662013-02-20 18:04:21 +0000627
628 Vals.push_back(ScalarLoad.getValue(0));
629 LoadChains.push_back(ScalarLoad.getValue(1));
630 }
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000631 }
Nadav Rotem75c22292011-10-18 22:32:43 +0000632
Craig Topper48d114b2014-04-26 18:35:24 +0000633 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000634 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +0000635 Op.getNode()->getValueType(0), Vals);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000636
637 AddLegalizedOperand(Op.getValue(0), Value);
638 AddLegalizedOperand(Op.getValue(1), NewChain);
639
640 return (Op.getResNo() ? NewChain : Value);
641}
642
643SDValue VectorLegalizer::ExpandStore(SDValue Op) {
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000644 SDLoc dl(Op);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000645 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
646 SDValue Chain = ST->getChain();
647 SDValue BasePTR = ST->getBasePtr();
648 SDValue Value = ST->getValue();
649 EVT StVT = ST->getMemoryVT();
650
651 unsigned Alignment = ST->getAlignment();
652 bool isVolatile = ST->isVolatile();
653 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000654 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000655
656 unsigned NumElem = StVT.getVectorNumElements();
657 // The type of the data we want to save
658 EVT RegVT = Value.getValueType();
659 EVT RegSclVT = RegVT.getScalarType();
660 // The type of data as saved in memory.
661 EVT MemSclVT = StVT.getScalarType();
662
663 // Cast floats into integers
664 unsigned ScalarSize = MemSclVT.getSizeInBits();
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000665
666 // Round odd types to the next pow of two.
667 if (!isPowerOf2_32(ScalarSize))
668 ScalarSize = NextPowerOf2(ScalarSize);
669
670 // Store Stride in bytes
671 unsigned Stride = ScalarSize/8;
672 // Extract each of the elements from the original vector
673 // and save them into memory individually.
674 SmallVector<SDValue, 8> Stores;
675 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000676 SDValue Ex = DAG.getNode(
677 ISD::EXTRACT_VECTOR_ELT, dl, RegSclVT, Value,
678 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000679
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000680 // This scalar TruncStore may be illegal, but we legalize it later.
681 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
682 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
Hal Finkelf5b95702015-02-22 15:58:04 +0000683 isVolatile, isNonTemporal, MinAlign(Alignment, Idx*Stride),
684 AAInfo);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000685
Nadav Rotem75c22292011-10-18 22:32:43 +0000686 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000687 DAG.getConstant(Stride, dl, BasePTR.getValueType()));
Nadav Rotem75c22292011-10-18 22:32:43 +0000688
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000689 Stores.push_back(Store);
690 }
Craig Topper48d114b2014-04-26 18:35:24 +0000691 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Nadav Rotemebe13bc2011-10-15 07:41:10 +0000692 AddLegalizedOperand(Op, TF);
693 return TF;
694}
695
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000696SDValue VectorLegalizer::Expand(SDValue Op) {
697 switch (Op->getOpcode()) {
698 case ISD::SIGN_EXTEND_INREG:
699 return ExpandSEXTINREG(Op);
Chandler Carruth0b666e02014-07-10 12:32:32 +0000700 case ISD::ANY_EXTEND_VECTOR_INREG:
701 return ExpandANY_EXTEND_VECTOR_INREG(Op);
702 case ISD::SIGN_EXTEND_VECTOR_INREG:
703 return ExpandSIGN_EXTEND_VECTOR_INREG(Op);
Chandler Carruthafe4b252014-07-09 10:58:18 +0000704 case ISD::ZERO_EXTEND_VECTOR_INREG:
705 return ExpandZERO_EXTEND_VECTOR_INREG(Op);
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000706 case ISD::BSWAP:
707 return ExpandBSWAP(Op);
708 case ISD::VSELECT:
709 return ExpandVSELECT(Op);
710 case ISD::SELECT:
711 return ExpandSELECT(Op);
712 case ISD::UINT_TO_FP:
713 return ExpandUINT_TO_FLOAT(Op);
714 case ISD::FNEG:
715 return ExpandFNEG(Op);
716 case ISD::SETCC:
717 return UnrollVSETCC(Op);
James Molloy7395a812015-07-16 15:22:46 +0000718 case ISD::UABSDIFF:
719 case ISD::SABSDIFF:
720 return ExpandABSDIFF(Op);
Chandler Carruthc1bedac2014-07-02 06:23:34 +0000721 default:
722 return DAG.UnrollVectorOp(Op.getNode());
723 }
724}
725
James Molloy7395a812015-07-16 15:22:46 +0000726SDValue VectorLegalizer::ExpandABSDIFF(SDValue Op) {
727 SDLoc dl(Op);
Mohammad Shahid13f1dfd2015-09-24 10:35:03 +0000728 SDValue Op0 = Op.getOperand(0);
729 SDValue Op1 = Op.getOperand(1);
James Molloy7395a812015-07-16 15:22:46 +0000730 EVT VT = Op.getValueType();
James Molloy7395a812015-07-16 15:22:46 +0000731
Mohammad Shahid13f1dfd2015-09-24 10:35:03 +0000732 // For unsigned intrinsic, promote the type to handle unsigned overflow.
733 bool isUabsdiff = (Op->getOpcode() == ISD::UABSDIFF);
734 if (isUabsdiff) {
735 VT = VT.widenIntegerVectorElementType(*DAG.getContext());
736 Op0 = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op0);
737 Op1 = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op1);
738 }
739
740 SDNodeFlags Flags;
741 Flags.setNoSignedWrap(!isUabsdiff);
742 SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, Op0, Op1, &Flags);
743 if (isUabsdiff)
744 return DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Sub);
745
746 SDValue Cmp =
747 DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(DAG.getDataLayout(),
748 *DAG.getContext(), VT),
749 Sub, DAG.getConstant(0, dl, VT), DAG.getCondCode(ISD::SETGE));
750 SDValue Neg = DAG.getNode(ISD::SUB, dl, VT, DAG.getConstant(0, dl, VT), Sub, &Flags);
751 return DAG.getNode(ISD::VSELECT, dl, VT, Cmp, Sub, Neg);
James Molloy7395a812015-07-16 15:22:46 +0000752}
753
Nadav Rotemea973bd2012-08-30 19:17:29 +0000754SDValue VectorLegalizer::ExpandSELECT(SDValue Op) {
755 // Lower a select instruction where the condition is a scalar and the
756 // operands are vectors. Lower this select to VSELECT and implement it
Stephen Lincfe7f352013-07-08 00:37:03 +0000757 // using XOR AND OR. The selector bit is broadcasted.
Nadav Rotemea973bd2012-08-30 19:17:29 +0000758 EVT VT = Op.getValueType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000759 SDLoc DL(Op);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000760
761 SDValue Mask = Op.getOperand(0);
762 SDValue Op1 = Op.getOperand(1);
763 SDValue Op2 = Op.getOperand(2);
764
765 assert(VT.isVector() && !Mask.getValueType().isVector()
766 && Op1.getValueType() == Op2.getValueType() && "Invalid type");
767
768 unsigned NumElem = VT.getVectorNumElements();
769
770 // If we can't even use the basic vector operations of
771 // AND,OR,XOR, we will have to scalarize the op.
772 // Notice that the operation may be 'promoted' which means that it is
773 // 'bitcasted' to another type which is handled.
774 // Also, we need to be able to construct a splat vector using BUILD_VECTOR.
775 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
776 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
777 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
778 TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand)
779 return DAG.UnrollVectorOp(Op.getNode());
780
781 // Generate a mask operand.
Matt Arsenaultd2322222013-09-10 00:41:56 +0000782 EVT MaskTy = VT.changeVectorElementTypeToInteger();
Nadav Rotemea973bd2012-08-30 19:17:29 +0000783
784 // What is the size of each element in the vector mask.
785 EVT BitTy = MaskTy.getScalarType();
786
Matt Arsenaultd2f03322013-06-14 22:04:37 +0000787 Mask = DAG.getSelect(DL, BitTy, Mask,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000788 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), DL,
789 BitTy),
790 DAG.getConstant(0, DL, BitTy));
Nadav Rotemea973bd2012-08-30 19:17:29 +0000791
792 // Broadcast the mask so that the entire vector is all-one or all zero.
793 SmallVector<SDValue, 8> Ops(NumElem, Mask);
Craig Topper48d114b2014-04-26 18:35:24 +0000794 Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskTy, Ops);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000795
796 // Bitcast the operands to be the same type as the mask.
797 // This is needed when we select between FP types because
798 // the mask is a vector of integers.
799 Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1);
800 Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2);
801
802 SDValue AllOnes = DAG.getConstant(
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000803 APInt::getAllOnesValue(BitTy.getSizeInBits()), DL, MaskTy);
Nadav Rotemea973bd2012-08-30 19:17:29 +0000804 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes);
805
806 Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask);
807 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
808 SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2);
809 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
810}
811
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000812SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
813 EVT VT = Op.getValueType();
814
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000815 // Make sure that the SRA and SHL instructions are available.
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000816 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand ||
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000817 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand)
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000818 return DAG.UnrollVectorOp(Op.getNode());
819
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000820 SDLoc DL(Op);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000821 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT();
822
823 unsigned BW = VT.getScalarType().getSizeInBits();
824 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000825 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, DL, VT);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000826
827 Op = Op.getOperand(0);
Benjamin Kramer5ea03492013-01-12 19:06:44 +0000828 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz);
Nadav Rotemdbe5c722013-01-11 22:57:48 +0000829 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz);
830}
831
Chandler Carruth0b666e02014-07-10 12:32:32 +0000832// Generically expand a vector anyext in register to a shuffle of the relevant
833// lanes into the appropriate locations, with other lanes left undef.
834SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDValue Op) {
835 SDLoc DL(Op);
836 EVT VT = Op.getValueType();
837 int NumElements = VT.getVectorNumElements();
838 SDValue Src = Op.getOperand(0);
839 EVT SrcVT = Src.getValueType();
840 int NumSrcElements = SrcVT.getVectorNumElements();
841
842 // Build a base mask of undef shuffles.
843 SmallVector<int, 16> ShuffleMask;
844 ShuffleMask.resize(NumSrcElements, -1);
845
846 // Place the extended lanes into the correct locations.
847 int ExtLaneScale = NumSrcElements / NumElements;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000848 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0;
Chandler Carruth0b666e02014-07-10 12:32:32 +0000849 for (int i = 0; i < NumElements; ++i)
850 ShuffleMask[i * ExtLaneScale + EndianOffset] = i;
851
852 return DAG.getNode(
853 ISD::BITCAST, DL, VT,
854 DAG.getVectorShuffle(SrcVT, DL, Src, DAG.getUNDEF(SrcVT), ShuffleMask));
855}
856
857SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) {
858 SDLoc DL(Op);
859 EVT VT = Op.getValueType();
860 SDValue Src = Op.getOperand(0);
861 EVT SrcVT = Src.getValueType();
862
863 // First build an any-extend node which can be legalized above when we
864 // recurse through it.
865 Op = DAG.getAnyExtendVectorInReg(Src, DL, VT);
866
867 // Now we need sign extend. Do this by shifting the elements. Even if these
868 // aren't legal operations, they have a better chance of being legalized
869 // without full scalarization than the sign extension does.
870 unsigned EltWidth = VT.getVectorElementType().getSizeInBits();
871 unsigned SrcEltWidth = SrcVT.getVectorElementType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000872 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, DL, VT);
Chandler Carruth0b666e02014-07-10 12:32:32 +0000873 return DAG.getNode(ISD::SRA, DL, VT,
874 DAG.getNode(ISD::SHL, DL, VT, Op, ShiftAmount),
875 ShiftAmount);
876}
877
Chandler Carruthafe4b252014-07-09 10:58:18 +0000878// Generically expand a vector zext in register to a shuffle of the relevant
879// lanes into the appropriate locations, a blend of zero into the high bits,
880// and a bitcast to the wider element type.
881SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDValue Op) {
882 SDLoc DL(Op);
883 EVT VT = Op.getValueType();
884 int NumElements = VT.getVectorNumElements();
885 SDValue Src = Op.getOperand(0);
886 EVT SrcVT = Src.getValueType();
887 int NumSrcElements = SrcVT.getVectorNumElements();
888
889 // Build up a zero vector to blend into this one.
890 EVT SrcScalarVT = SrcVT.getScalarType();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000891 SDValue ScalarZero = DAG.getTargetConstant(0, DL, SrcScalarVT);
Chandler Carruthafe4b252014-07-09 10:58:18 +0000892 SmallVector<SDValue, 4> BuildVectorOperands(NumSrcElements, ScalarZero);
893 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, DL, SrcVT, BuildVectorOperands);
894
895 // Shuffle the incoming lanes into the correct position, and pull all other
896 // lanes from the zero vector.
897 SmallVector<int, 16> ShuffleMask;
898 ShuffleMask.reserve(NumSrcElements);
899 for (int i = 0; i < NumSrcElements; ++i)
900 ShuffleMask.push_back(i);
901
902 int ExtLaneScale = NumSrcElements / NumElements;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000903 int EndianOffset = DAG.getDataLayout().isBigEndian() ? ExtLaneScale - 1 : 0;
Chandler Carruthafe4b252014-07-09 10:58:18 +0000904 for (int i = 0; i < NumElements; ++i)
905 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i;
906
907 return DAG.getNode(ISD::BITCAST, DL, VT,
908 DAG.getVectorShuffle(SrcVT, DL, Zero, Src, ShuffleMask));
909}
910
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000911SDValue VectorLegalizer::ExpandBSWAP(SDValue Op) {
912 EVT VT = Op.getValueType();
913
914 // Generate a byte wise shuffle mask for the BSWAP.
915 SmallVector<int, 16> ShuffleMask;
916 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8;
917 for (int I = 0, E = VT.getVectorNumElements(); I != E; ++I)
918 for (int J = ScalarSizeInBytes - 1; J >= 0; --J)
919 ShuffleMask.push_back((I * ScalarSizeInBytes) + J);
920
921 EVT ByteVT = EVT::getVectorVT(*DAG.getContext(), MVT::i8, ShuffleMask.size());
922
923 // Only emit a shuffle if the mask is legal.
924 if (!TLI.isShuffleMaskLegal(ShuffleMask, ByteVT))
925 return DAG.UnrollVectorOp(Op.getNode());
926
927 SDLoc DL(Op);
928 Op = DAG.getNode(ISD::BITCAST, DL, ByteVT, Op.getOperand(0));
929 Op = DAG.getVectorShuffle(ByteVT, DL, Op, DAG.getUNDEF(ByteVT),
930 ShuffleMask.data());
931 return DAG.getNode(ISD::BITCAST, DL, VT, Op);
932}
933
Nadav Rotem52202fb2011-09-13 19:17:42 +0000934SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
935 // Implement VSELECT in terms of XOR, AND, OR
936 // on platforms which do not support blend natively.
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000937 SDLoc DL(Op);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000938
939 SDValue Mask = Op.getOperand(0);
940 SDValue Op1 = Op.getOperand(1);
941 SDValue Op2 = Op.getOperand(2);
942
Matt Arsenaulta5733dc2013-05-07 20:24:18 +0000943 EVT VT = Mask.getValueType();
944
Nadav Rotem52202fb2011-09-13 19:17:42 +0000945 // If we can't even use the basic vector operations of
946 // AND,OR,XOR, we will have to scalarize the op.
Nadav Rotem88244722011-10-19 20:43:16 +0000947 // Notice that the operation may be 'promoted' which means that it is
948 // 'bitcasted' to another type which is handled.
Pete Cooper2455e9c2012-09-01 22:27:48 +0000949 // This operation also isn't safe with AND, OR, XOR when the boolean
950 // type is 0/1 as we need an all ones vector constant to mask with.
951 // FIXME: Sign extend 1 to all ones if thats legal on the target.
Nadav Rotem88244722011-10-19 20:43:16 +0000952 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
953 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
Daniel Sanderscbd44c52014-07-10 10:18:12 +0000954 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
955 TLI.getBooleanContents(Op1.getValueType()) !=
956 TargetLowering::ZeroOrNegativeOneBooleanContent)
Nadav Rotem88244722011-10-19 20:43:16 +0000957 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotem52202fb2011-09-13 19:17:42 +0000958
Matt Arsenaulta5733dc2013-05-07 20:24:18 +0000959 // If the mask and the type are different sizes, unroll the vector op. This
960 // can occur when getSetCCResultType returns something that is different in
961 // size from the operand types. For example, v4i8 = select v4i32, v4i8, v4i8.
962 if (VT.getSizeInBits() != Op1.getValueType().getSizeInBits())
963 return DAG.UnrollVectorOp(Op.getNode());
964
Nadav Rotem52202fb2011-09-13 19:17:42 +0000965 // Bitcast the operands to be the same type as the mask.
966 // This is needed when we select between FP types because
967 // the mask is a vector of integers.
968 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1);
969 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2);
970
971 SDValue AllOnes = DAG.getConstant(
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000972 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), DL, VT);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000973 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes);
974
975 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask);
976 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
Nadav Rotem02ef0c32012-04-15 15:08:09 +0000977 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2);
978 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
Nadav Rotem52202fb2011-09-13 19:17:42 +0000979}
980
Nadav Roteme7a101c2011-03-19 13:09:10 +0000981SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) {
Nadav Roteme7a101c2011-03-19 13:09:10 +0000982 EVT VT = Op.getOperand(0).getValueType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +0000983 SDLoc DL(Op);
Nadav Roteme7a101c2011-03-19 13:09:10 +0000984
985 // Make sure that the SINT_TO_FP and SRL instructions are available.
Nadav Rotem88244722011-10-19 20:43:16 +0000986 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
987 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand)
988 return DAG.UnrollVectorOp(Op.getNode());
Nadav Roteme7a101c2011-03-19 13:09:10 +0000989
990 EVT SVT = VT.getScalarType();
991 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) &&
992 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
993
994 unsigned BW = SVT.getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000995 SDValue HalfWord = DAG.getConstant(BW/2, DL, VT);
Nadav Roteme7a101c2011-03-19 13:09:10 +0000996
997 // Constants to clear the upper part of the word.
998 // Notice that we can also use SHL+SHR, but using a constant is slightly
999 // faster on x86.
1000 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001001 SDValue HalfWordMask = DAG.getConstant(HWMask, DL, VT);
Nadav Roteme7a101c2011-03-19 13:09:10 +00001002
1003 // Two to the power of half-word-size.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001004 SDValue TWOHW = DAG.getConstantFP(1 << (BW/2), DL, Op.getValueType());
Nadav Roteme7a101c2011-03-19 13:09:10 +00001005
1006 // Clear upper part of LO, lower HI
1007 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord);
1008 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask);
1009
1010 // Convert hi and lo to floats
1011 // Convert the hi part back to the upper values
Sanjay Patela2607012015-09-16 16:31:21 +00001012 // TODO: Can any fast-math-flags be set on these nodes?
Nadav Roteme7a101c2011-03-19 13:09:10 +00001013 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI);
1014 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW);
1015 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO);
1016
1017 // Add the two halves
1018 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO);
1019}
1020
1021
Eli Friedmanda90dd62009-05-23 12:35:30 +00001022SDValue VectorLegalizer::ExpandFNEG(SDValue Op) {
1023 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001024 SDLoc DL(Op);
1025 SDValue Zero = DAG.getConstantFP(-0.0, DL, Op.getValueType());
Sanjay Patela2607012015-09-16 16:31:21 +00001026 // TODO: If FNEG had fast-math-flags, they'd get propagated to this FSUB.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001027 return DAG.getNode(ISD::FSUB, DL, Op.getValueType(),
Eli Friedmanda90dd62009-05-23 12:35:30 +00001028 Zero, Op.getOperand(0));
1029 }
Mon P Wang32f8bb92009-11-30 02:42:02 +00001030 return DAG.UnrollVectorOp(Op.getNode());
Eli Friedmanda90dd62009-05-23 12:35:30 +00001031}
1032
1033SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001034 EVT VT = Op.getValueType();
Eli Friedmanda90dd62009-05-23 12:35:30 +00001035 unsigned NumElems = VT.getVectorNumElements();
Owen Anderson53aa7a92009-08-10 22:56:29 +00001036 EVT EltVT = VT.getVectorElementType();
Eli Friedmanda90dd62009-05-23 12:35:30 +00001037 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001038 EVT TmpEltVT = LHS.getValueType().getVectorElementType();
Benjamin Kramer351d53c2013-05-28 16:31:26 +00001039 SDLoc dl(Op);
Eli Friedmanda90dd62009-05-23 12:35:30 +00001040 SmallVector<SDValue, 8> Ops(NumElems);
1041 for (unsigned i = 0; i < NumElems; ++i) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001042 SDValue LHSElem = DAG.getNode(
1043 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
1044 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
1045 SDValue RHSElem = DAG.getNode(
1046 ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS,
1047 DAG.getConstant(i, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Matt Arsenault758659232013-05-18 00:21:46 +00001048 Ops[i] = DAG.getNode(ISD::SETCC, dl,
Mehdi Amini44ede332015-07-09 02:09:04 +00001049 TLI.getSetCCResultType(DAG.getDataLayout(),
1050 *DAG.getContext(), TmpEltVT),
Eli Friedmanda90dd62009-05-23 12:35:30 +00001051 LHSElem, RHSElem, CC);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001052 Ops[i] = DAG.getSelect(dl, EltVT, Ops[i],
1053 DAG.getConstant(APInt::getAllOnesValue
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001054 (EltVT.getSizeInBits()), dl, EltVT),
1055 DAG.getConstant(0, dl, EltVT));
Eli Friedmanda90dd62009-05-23 12:35:30 +00001056 }
Craig Topper48d114b2014-04-26 18:35:24 +00001057 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Eli Friedmanda90dd62009-05-23 12:35:30 +00001058}
1059
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001060}
Eli Friedmanda90dd62009-05-23 12:35:30 +00001061
1062bool SelectionDAG::LegalizeVectors() {
1063 return VectorLegalizer(*this).Run();
1064}