blob: 3989295ff595ec02086f63eafa5e78548914aa74 [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
40 /// LegalizedNodes - For nodes that are of legal width, and that have more
41 /// than one use, this map indicates what regularized operand to use. This
42 /// allows us to avoid legalizing the same thing more than once.
43 DenseMap<SDValue, SDValue> LegalizedNodes;
44
45 // Adds a node to the translation cache
46 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
53 // Legalizes the given node
54 SDValue LegalizeOp(SDValue Op);
55 // Assuming the node is legal, "legalize" the results
56 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
Eli Friedman5c22c802009-05-23 12:35:30 +000057 // Implements unrolling a VSETCC.
58 SDValue UnrollVSETCC(SDValue Op);
59 // Implements expansion for FNEG; falls back to UnrollVectorOp if FSUB
60 // isn't legal.
Nadav Rotem06cc3242011-03-19 13:09:10 +000061 // Implements expansion for UINT_TO_FLOAT; falls back to UnrollVectorOp if
62 // SINT_TO_FLOAT and SHR on vectors isn't legal.
63 SDValue ExpandUINT_TO_FLOAT(SDValue Op);
Nadav Rotem66de2af2013-01-11 22:57:48 +000064 // Implement expansion for SIGN_EXTEND_INREG using SRL and SRA.
65 SDValue ExpandSEXTINREG(SDValue Op);
Nadav Rotemb6266fb2011-09-18 10:29:29 +000066 // Implement vselect in terms of XOR, AND, OR when blend is not supported
67 // by the target.
Nadav Rotemaec58612011-09-13 19:17:42 +000068 SDValue ExpandVSELECT(SDValue Op);
Nadav Roteme757f002012-08-30 19:17:29 +000069 SDValue ExpandSELECT(SDValue Op);
Nadav Roteme9b58d02011-10-15 07:41:10 +000070 SDValue ExpandLoad(SDValue Op);
71 SDValue ExpandStore(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +000072 SDValue ExpandFNEG(SDValue Op);
73 // Implements vector promotion; this is essentially just bitcasting the
74 // operands to a different type and bitcasting the result back to the
75 // original type.
76 SDValue PromoteVectorOp(SDValue Op);
Jim Grosbach926dc162012-06-28 21:03:44 +000077 // Implements [SU]INT_TO_FP vector promotion; this is a [zs]ext of the input
78 // operand to the next size up.
79 SDValue PromoteVectorOpINT_TO_FP(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +000080
81 public:
82 bool Run();
83 VectorLegalizer(SelectionDAG& dag) :
84 DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {}
85};
86
87bool VectorLegalizer::Run() {
88 // The legalize process is inherently a bottom-up recursive process (users
89 // legalize their uses before themselves). Given infinite stack space, we
90 // could just start legalizing on the root and traverse the whole graph. In
91 // practice however, this causes us to run out of stack space on large basic
92 // blocks. To avoid this problem, compute an ordering of the nodes where each
93 // node is only legalized after all of its operands are legalized.
94 DAG.AssignTopologicalOrder();
95 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Chris Lattner7896c9f2009-12-03 00:50:42 +000096 E = prior(DAG.allnodes_end()); I != llvm::next(E); ++I)
Eli Friedman5c22c802009-05-23 12:35:30 +000097 LegalizeOp(SDValue(I, 0));
98
99 // Finally, it's possible the root changed. Get the new root.
100 SDValue OldRoot = DAG.getRoot();
101 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
102 DAG.setRoot(LegalizedNodes[OldRoot]);
103
104 LegalizedNodes.clear();
105
106 // Remove dead nodes now.
107 DAG.RemoveDeadNodes();
108
109 return Changed;
110}
111
112SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
113 // Generic legalization: just pass the operand through.
114 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i)
115 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
116 return Result.getValue(Op.getResNo());
117}
118
119SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
120 // Note that LegalizeOp may be reentered even from single-use nodes, which
121 // means that we always must cache transformed nodes.
122 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
123 if (I != LegalizedNodes.end()) return I->second;
124
125 SDNode* Node = Op.getNode();
126
127 // Legalize the operands
128 SmallVector<SDValue, 8> Ops;
129 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
130 Ops.push_back(LegalizeOp(Node->getOperand(i)));
131
132 SDValue Result =
Dan Gohman027657d2010-06-18 15:30:29 +0000133 SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops.data(), Ops.size()), 0);
Eli Friedman5c22c802009-05-23 12:35:30 +0000134
Nadav Roteme9b58d02011-10-15 07:41:10 +0000135 if (Op.getOpcode() == ISD::LOAD) {
136 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
137 ISD::LoadExtType ExtType = LD->getExtensionType();
138 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) {
139 if (TLI.isLoadExtLegal(LD->getExtensionType(), LD->getMemoryVT()))
140 return TranslateLegalizeResults(Op, Result);
141 Changed = true;
142 return LegalizeOp(ExpandLoad(Op));
143 }
144 } else if (Op.getOpcode() == ISD::STORE) {
145 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
146 EVT StVT = ST->getMemoryVT();
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000147 MVT ValVT = ST->getValue().getSimpleValueType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000148 if (StVT.isVector() && ST->isTruncatingStore())
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000149 switch (TLI.getTruncStoreAction(ValVT, StVT.getSimpleVT())) {
Craig Topper5e25ee82012-02-05 08:31:47 +0000150 default: llvm_unreachable("This action is not supported yet!");
Nadav Roteme9b58d02011-10-15 07:41:10 +0000151 case TargetLowering::Legal:
152 return TranslateLegalizeResults(Op, Result);
153 case TargetLowering::Custom:
154 Changed = true;
155 return LegalizeOp(TLI.LowerOperation(Result, DAG));
156 case TargetLowering::Expand:
157 Changed = true;
158 return LegalizeOp(ExpandStore(Op));
159 }
160 }
161
Eli Friedman5c22c802009-05-23 12:35:30 +0000162 bool HasVectorValue = false;
163 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end();
164 J != E;
165 ++J)
166 HasVectorValue |= J->isVector();
167 if (!HasVectorValue)
168 return TranslateLegalizeResults(Op, Result);
169
Owen Andersone50ed302009-08-10 22:56:29 +0000170 EVT QueryType;
Eli Friedman5c22c802009-05-23 12:35:30 +0000171 switch (Op.getOpcode()) {
172 default:
173 return TranslateLegalizeResults(Op, Result);
174 case ISD::ADD:
175 case ISD::SUB:
176 case ISD::MUL:
177 case ISD::SDIV:
178 case ISD::UDIV:
179 case ISD::SREM:
180 case ISD::UREM:
181 case ISD::FADD:
182 case ISD::FSUB:
183 case ISD::FMUL:
184 case ISD::FDIV:
185 case ISD::FREM:
186 case ISD::AND:
187 case ISD::OR:
188 case ISD::XOR:
189 case ISD::SHL:
190 case ISD::SRA:
191 case ISD::SRL:
192 case ISD::ROTL:
193 case ISD::ROTR:
Eli Friedman5c22c802009-05-23 12:35:30 +0000194 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +0000195 case ISD::CTTZ:
196 case ISD::CTLZ_ZERO_UNDEF:
197 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman5c22c802009-05-23 12:35:30 +0000198 case ISD::CTPOP:
199 case ISD::SELECT:
Nadav Rotemaec58612011-09-13 19:17:42 +0000200 case ISD::VSELECT:
Eli Friedman5c22c802009-05-23 12:35:30 +0000201 case ISD::SELECT_CC:
Duncan Sands28b77e92011-09-06 19:07:46 +0000202 case ISD::SETCC:
Eli Friedman5c22c802009-05-23 12:35:30 +0000203 case ISD::ZERO_EXTEND:
204 case ISD::ANY_EXTEND:
205 case ISD::TRUNCATE:
206 case ISD::SIGN_EXTEND:
Eli Friedman5c22c802009-05-23 12:35:30 +0000207 case ISD::FP_TO_SINT:
208 case ISD::FP_TO_UINT:
209 case ISD::FNEG:
210 case ISD::FABS:
211 case ISD::FSQRT:
212 case ISD::FSIN:
213 case ISD::FCOS:
214 case ISD::FPOWI:
215 case ISD::FPOW:
216 case ISD::FLOG:
217 case ISD::FLOG2:
218 case ISD::FLOG10:
219 case ISD::FEXP:
220 case ISD::FEXP2:
221 case ISD::FCEIL:
222 case ISD::FTRUNC:
223 case ISD::FRINT:
224 case ISD::FNEARBYINT:
225 case ISD::FFLOOR:
Eli Friedman846ce8e2012-11-15 22:44:27 +0000226 case ISD::FP_ROUND:
Eli Friedman43147af2012-11-17 01:52:46 +0000227 case ISD::FP_EXTEND:
Craig Topper6b1e1d82012-08-30 07:34:22 +0000228 case ISD::FMA:
Nadav Rotemd0f3ef82011-07-14 11:11:14 +0000229 case ISD::SIGN_EXTEND_INREG:
Eli Friedman556929a2009-06-06 03:27:50 +0000230 QueryType = Node->getValueType(0);
231 break;
Dan Gohmand1996362010-01-09 02:13:55 +0000232 case ISD::FP_ROUND_INREG:
233 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT();
234 break;
Eli Friedman556929a2009-06-06 03:27:50 +0000235 case ISD::SINT_TO_FP:
236 case ISD::UINT_TO_FP:
237 QueryType = Node->getOperand(0).getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000238 break;
239 }
240
Eli Friedman556929a2009-06-06 03:27:50 +0000241 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) {
Eli Friedman5c22c802009-05-23 12:35:30 +0000242 case TargetLowering::Promote:
Jim Grosbach926dc162012-06-28 21:03:44 +0000243 switch (Op.getOpcode()) {
244 default:
245 // "Promote" the operation by bitcasting
246 Result = PromoteVectorOp(Op);
247 Changed = true;
248 break;
249 case ISD::SINT_TO_FP:
250 case ISD::UINT_TO_FP:
251 // "Promote" the operation by extending the operand.
252 Result = PromoteVectorOpINT_TO_FP(Op);
253 Changed = true;
254 break;
255 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000256 break;
257 case TargetLowering::Legal: break;
258 case TargetLowering::Custom: {
259 SDValue Tmp1 = TLI.LowerOperation(Op, DAG);
260 if (Tmp1.getNode()) {
261 Result = Tmp1;
262 break;
263 }
264 // FALL THROUGH
265 }
266 case TargetLowering::Expand:
Nadav Rotem66de2af2013-01-11 22:57:48 +0000267 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG)
268 Result = ExpandSEXTINREG(Op);
269 else if (Node->getOpcode() == ISD::VSELECT)
Nadav Rotemaec58612011-09-13 19:17:42 +0000270 Result = ExpandVSELECT(Op);
Nadav Roteme757f002012-08-30 19:17:29 +0000271 else if (Node->getOpcode() == ISD::SELECT)
272 Result = ExpandSELECT(Op);
Nadav Rotemaec58612011-09-13 19:17:42 +0000273 else if (Node->getOpcode() == ISD::UINT_TO_FP)
Nadav Rotem06cc3242011-03-19 13:09:10 +0000274 Result = ExpandUINT_TO_FLOAT(Op);
275 else if (Node->getOpcode() == ISD::FNEG)
Eli Friedman5c22c802009-05-23 12:35:30 +0000276 Result = ExpandFNEG(Op);
Duncan Sands28b77e92011-09-06 19:07:46 +0000277 else if (Node->getOpcode() == ISD::SETCC)
Eli Friedman5c22c802009-05-23 12:35:30 +0000278 Result = UnrollVSETCC(Op);
279 else
Mon P Wangcd6e7252009-11-30 02:42:02 +0000280 Result = DAG.UnrollVectorOp(Op.getNode());
Eli Friedman5c22c802009-05-23 12:35:30 +0000281 break;
282 }
283
284 // Make sure that the generated code is itself legal.
285 if (Result != Op) {
286 Result = LegalizeOp(Result);
287 Changed = true;
288 }
289
290 // Note that LegalizeOp may be reentered even from single-use nodes, which
291 // means that we always must cache transformed nodes.
292 AddLegalizedOperand(Op, Result);
293 return Result;
294}
295
296SDValue VectorLegalizer::PromoteVectorOp(SDValue Op) {
Eli Friedmanc046c002009-05-24 20:32:10 +0000297 // Vector "promotion" is basically just bitcasting and doing the operation
298 // in a different type. For example, x86 promotes ISD::AND on v2i32 to
299 // v1i64.
Patrik Hagglund319bb392012-12-19 11:21:04 +0000300 MVT VT = Op.getSimpleValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000301 assert(Op.getNode()->getNumValues() == 1 &&
302 "Can't promote a vector with multiple results!");
Patrik Hagglund319bb392012-12-19 11:21:04 +0000303 MVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT);
Eli Friedman5c22c802009-05-23 12:35:30 +0000304 DebugLoc dl = Op.getDebugLoc();
305 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
306
307 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
308 if (Op.getOperand(j).getValueType().isVector())
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000309 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j));
Eli Friedman5c22c802009-05-23 12:35:30 +0000310 else
311 Operands[j] = Op.getOperand(j);
312 }
313
314 Op = DAG.getNode(Op.getOpcode(), dl, NVT, &Operands[0], Operands.size());
315
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000316 return DAG.getNode(ISD::BITCAST, dl, VT, Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000317}
318
Jim Grosbach926dc162012-06-28 21:03:44 +0000319SDValue VectorLegalizer::PromoteVectorOpINT_TO_FP(SDValue Op) {
320 // INT_TO_FP operations may require the input operand be promoted even
321 // when the type is otherwise legal.
322 EVT VT = Op.getOperand(0).getValueType();
323 assert(Op.getNode()->getNumValues() == 1 &&
324 "Can't promote a vector with multiple results!");
325
326 // Normal getTypeToPromoteTo() doesn't work here, as that will promote
327 // by widening the vector w/ the same element width and twice the number
328 // of elements. We want the other way around, the same number of elements,
329 // each twice the width.
330 //
331 // Increase the bitwidth of the element to the next pow-of-two
332 // (which is greater than 8 bits).
333 unsigned NumElts = VT.getVectorNumElements();
334 EVT EltVT = VT.getVectorElementType();
335 EltVT = EVT::getIntegerVT(*DAG.getContext(), 2 * EltVT.getSizeInBits());
336 assert(EltVT.isSimple() && "Promoting to a non-simple vector type!");
337
338 // Build a new vector type and check if it is legal.
339 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
340
341 DebugLoc dl = Op.getDebugLoc();
342 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
343
344 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
345 ISD::SIGN_EXTEND;
346 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
347 if (Op.getOperand(j).getValueType().isVector())
348 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j));
349 else
350 Operands[j] = Op.getOperand(j);
351 }
352
353 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), &Operands[0],
354 Operands.size());
355}
356
Nadav Roteme9b58d02011-10-15 07:41:10 +0000357
358SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
359 DebugLoc dl = Op.getDebugLoc();
360 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
361 SDValue Chain = LD->getChain();
362 SDValue BasePTR = LD->getBasePtr();
363 EVT SrcVT = LD->getMemoryVT();
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000364 ISD::LoadExtType ExtType = LD->getExtensionType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000365
366 SmallVector<SDValue, 8> LoadVals;
367 SmallVector<SDValue, 8> LoadChains;
368 unsigned NumElem = SrcVT.getVectorNumElements();
369 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
370
371 for (unsigned Idx=0; Idx<NumElem; Idx++) {
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000372 SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl,
Nadav Roteme9b58d02011-10-15 07:41:10 +0000373 Op.getNode()->getValueType(0).getScalarType(),
374 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
375 SrcVT.getScalarType(),
376 LD->isVolatile(), LD->isNonTemporal(),
377 LD->getAlignment());
378
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000379 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
380 DAG.getIntPtrConstant(Stride));
381
Nadav Roteme9b58d02011-10-15 07:41:10 +0000382 LoadVals.push_back(ScalarLoad.getValue(0));
383 LoadChains.push_back(ScalarLoad.getValue(1));
384 }
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000385
Nadav Roteme9b58d02011-10-15 07:41:10 +0000386 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
387 &LoadChains[0], LoadChains.size());
388 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
389 Op.getNode()->getValueType(0), &LoadVals[0], LoadVals.size());
390
391 AddLegalizedOperand(Op.getValue(0), Value);
392 AddLegalizedOperand(Op.getValue(1), NewChain);
393
394 return (Op.getResNo() ? NewChain : Value);
395}
396
397SDValue VectorLegalizer::ExpandStore(SDValue Op) {
398 DebugLoc dl = Op.getDebugLoc();
399 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
400 SDValue Chain = ST->getChain();
401 SDValue BasePTR = ST->getBasePtr();
402 SDValue Value = ST->getValue();
403 EVT StVT = ST->getMemoryVT();
404
405 unsigned Alignment = ST->getAlignment();
406 bool isVolatile = ST->isVolatile();
407 bool isNonTemporal = ST->isNonTemporal();
408
409 unsigned NumElem = StVT.getVectorNumElements();
410 // The type of the data we want to save
411 EVT RegVT = Value.getValueType();
412 EVT RegSclVT = RegVT.getScalarType();
413 // The type of data as saved in memory.
414 EVT MemSclVT = StVT.getScalarType();
415
416 // Cast floats into integers
417 unsigned ScalarSize = MemSclVT.getSizeInBits();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000418
419 // Round odd types to the next pow of two.
420 if (!isPowerOf2_32(ScalarSize))
421 ScalarSize = NextPowerOf2(ScalarSize);
422
423 // Store Stride in bytes
424 unsigned Stride = ScalarSize/8;
425 // Extract each of the elements from the original vector
426 // and save them into memory individually.
427 SmallVector<SDValue, 8> Stores;
428 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
429 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
430 RegSclVT, Value, DAG.getIntPtrConstant(Idx));
431
Nadav Roteme9b58d02011-10-15 07:41:10 +0000432 // This scalar TruncStore may be illegal, but we legalize it later.
433 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
434 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
435 isVolatile, isNonTemporal, Alignment);
436
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000437 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
438 DAG.getIntPtrConstant(Stride));
439
Nadav Roteme9b58d02011-10-15 07:41:10 +0000440 Stores.push_back(Store);
441 }
442 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
443 &Stores[0], Stores.size());
444 AddLegalizedOperand(Op, TF);
445 return TF;
446}
447
Nadav Roteme757f002012-08-30 19:17:29 +0000448SDValue VectorLegalizer::ExpandSELECT(SDValue Op) {
449 // Lower a select instruction where the condition is a scalar and the
450 // operands are vectors. Lower this select to VSELECT and implement it
451 // using XOR AND OR. The selector bit is broadcasted.
452 EVT VT = Op.getValueType();
453 DebugLoc DL = Op.getDebugLoc();
454
455 SDValue Mask = Op.getOperand(0);
456 SDValue Op1 = Op.getOperand(1);
457 SDValue Op2 = Op.getOperand(2);
458
459 assert(VT.isVector() && !Mask.getValueType().isVector()
460 && Op1.getValueType() == Op2.getValueType() && "Invalid type");
461
462 unsigned NumElem = VT.getVectorNumElements();
463
464 // If we can't even use the basic vector operations of
465 // AND,OR,XOR, we will have to scalarize the op.
466 // Notice that the operation may be 'promoted' which means that it is
467 // 'bitcasted' to another type which is handled.
468 // Also, we need to be able to construct a splat vector using BUILD_VECTOR.
469 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
470 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
471 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
472 TLI.getOperationAction(ISD::BUILD_VECTOR, VT) == TargetLowering::Expand)
473 return DAG.UnrollVectorOp(Op.getNode());
474
475 // Generate a mask operand.
476 EVT MaskTy = TLI.getSetCCResultType(VT);
477 assert(MaskTy.isVector() && "Invalid CC type");
478 assert(MaskTy.getSizeInBits() == Op1.getValueType().getSizeInBits()
479 && "Invalid mask size");
480
481 // What is the size of each element in the vector mask.
482 EVT BitTy = MaskTy.getScalarType();
483
Nadav Rotemf55ef642012-09-02 08:20:07 +0000484 Mask = DAG.getNode(ISD::SELECT, DL, BitTy, Mask,
485 DAG.getConstant(APInt::getAllOnesValue(BitTy.getSizeInBits()), BitTy),
Nadav Rotemee77da62012-09-02 12:21:50 +0000486 DAG.getConstant(0, BitTy));
Nadav Roteme757f002012-08-30 19:17:29 +0000487
488 // Broadcast the mask so that the entire vector is all-one or all zero.
489 SmallVector<SDValue, 8> Ops(NumElem, Mask);
490 Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskTy, &Ops[0], Ops.size());
491
492 // Bitcast the operands to be the same type as the mask.
493 // This is needed when we select between FP types because
494 // the mask is a vector of integers.
495 Op1 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op1);
496 Op2 = DAG.getNode(ISD::BITCAST, DL, MaskTy, Op2);
497
498 SDValue AllOnes = DAG.getConstant(
499 APInt::getAllOnesValue(BitTy.getSizeInBits()), MaskTy);
500 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes);
501
502 Op1 = DAG.getNode(ISD::AND, DL, MaskTy, Op1, Mask);
503 Op2 = DAG.getNode(ISD::AND, DL, MaskTy, Op2, NotMask);
504 SDValue Val = DAG.getNode(ISD::OR, DL, MaskTy, Op1, Op2);
505 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
506}
507
Nadav Rotem66de2af2013-01-11 22:57:48 +0000508SDValue VectorLegalizer::ExpandSEXTINREG(SDValue Op) {
509 EVT VT = Op.getValueType();
510
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000511 // Make sure that the SRA and SHL instructions are available.
Nadav Rotem66de2af2013-01-11 22:57:48 +0000512 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand ||
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000513 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand)
Nadav Rotem66de2af2013-01-11 22:57:48 +0000514 return DAG.UnrollVectorOp(Op.getNode());
515
516 DebugLoc DL = Op.getDebugLoc();
517 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT();
518
519 unsigned BW = VT.getScalarType().getSizeInBits();
520 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
521 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, VT);
522
523 Op = Op.getOperand(0);
Benjamin Kramer4dc47832013-01-12 19:06:44 +0000524 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz);
Nadav Rotem66de2af2013-01-11 22:57:48 +0000525 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz);
526}
527
Nadav Rotemaec58612011-09-13 19:17:42 +0000528SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
529 // Implement VSELECT in terms of XOR, AND, OR
530 // on platforms which do not support blend natively.
531 EVT VT = Op.getOperand(0).getValueType();
Nadav Rotemaec58612011-09-13 19:17:42 +0000532 DebugLoc DL = Op.getDebugLoc();
533
534 SDValue Mask = Op.getOperand(0);
535 SDValue Op1 = Op.getOperand(1);
536 SDValue Op2 = Op.getOperand(2);
537
538 // If we can't even use the basic vector operations of
539 // AND,OR,XOR, we will have to scalarize the op.
Nadav Rotem815af822011-10-19 20:43:16 +0000540 // Notice that the operation may be 'promoted' which means that it is
541 // 'bitcasted' to another type which is handled.
Pete Cooperd9060172012-09-01 22:27:48 +0000542 // This operation also isn't safe with AND, OR, XOR when the boolean
543 // type is 0/1 as we need an all ones vector constant to mask with.
544 // FIXME: Sign extend 1 to all ones if thats legal on the target.
Nadav Rotem815af822011-10-19 20:43:16 +0000545 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
546 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
Pete Cooperd9060172012-09-01 22:27:48 +0000547 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand ||
548 TLI.getBooleanContents(true) !=
549 TargetLowering::ZeroOrNegativeOneBooleanContent)
Nadav Rotem815af822011-10-19 20:43:16 +0000550 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotemaec58612011-09-13 19:17:42 +0000551
Nadav Roteme757f002012-08-30 19:17:29 +0000552 assert(VT.getSizeInBits() == Op1.getValueType().getSizeInBits()
Duncan Sands17001ce2011-10-18 12:44:00 +0000553 && "Invalid mask size");
Nadav Rotemaec58612011-09-13 19:17:42 +0000554 // Bitcast the operands to be the same type as the mask.
555 // This is needed when we select between FP types because
556 // the mask is a vector of integers.
557 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1);
558 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2);
559
560 SDValue AllOnes = DAG.getConstant(
561 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
562 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes);
563
564 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask);
565 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
Nadav Rotem3ab32ea2012-04-15 15:08:09 +0000566 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2);
567 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
Nadav Rotemaec58612011-09-13 19:17:42 +0000568}
569
Nadav Rotem06cc3242011-03-19 13:09:10 +0000570SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) {
Nadav Rotem06cc3242011-03-19 13:09:10 +0000571 EVT VT = Op.getOperand(0).getValueType();
572 DebugLoc DL = Op.getDebugLoc();
573
574 // Make sure that the SINT_TO_FP and SRL instructions are available.
Nadav Rotem815af822011-10-19 20:43:16 +0000575 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
576 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand)
577 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotem06cc3242011-03-19 13:09:10 +0000578
579 EVT SVT = VT.getScalarType();
580 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) &&
581 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
582
583 unsigned BW = SVT.getSizeInBits();
584 SDValue HalfWord = DAG.getConstant(BW/2, VT);
585
586 // Constants to clear the upper part of the word.
587 // Notice that we can also use SHL+SHR, but using a constant is slightly
588 // faster on x86.
589 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF;
590 SDValue HalfWordMask = DAG.getConstant(HWMask, VT);
591
592 // Two to the power of half-word-size.
593 SDValue TWOHW = DAG.getConstantFP((1<<(BW/2)), Op.getValueType());
594
595 // Clear upper part of LO, lower HI
596 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord);
597 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask);
598
599 // Convert hi and lo to floats
600 // Convert the hi part back to the upper values
601 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI);
602 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW);
603 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO);
604
605 // Add the two halves
606 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO);
607}
608
609
Eli Friedman5c22c802009-05-23 12:35:30 +0000610SDValue VectorLegalizer::ExpandFNEG(SDValue Op) {
611 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) {
612 SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType());
613 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
614 Zero, Op.getOperand(0));
615 }
Mon P Wangcd6e7252009-11-30 02:42:02 +0000616 return DAG.UnrollVectorOp(Op.getNode());
Eli Friedman5c22c802009-05-23 12:35:30 +0000617}
618
619SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
Owen Andersone50ed302009-08-10 22:56:29 +0000620 EVT VT = Op.getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000621 unsigned NumElems = VT.getVectorNumElements();
Owen Andersone50ed302009-08-10 22:56:29 +0000622 EVT EltVT = VT.getVectorElementType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000623 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000624 EVT TmpEltVT = LHS.getValueType().getVectorElementType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000625 DebugLoc dl = Op.getDebugLoc();
626 SmallVector<SDValue, 8> Ops(NumElems);
627 for (unsigned i = 0; i < NumElems; ++i) {
628 SDValue LHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
629 DAG.getIntPtrConstant(i));
630 SDValue RHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS,
631 DAG.getIntPtrConstant(i));
632 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
633 LHSElem, RHSElem, CC);
634 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
635 DAG.getConstant(APInt::getAllOnesValue
636 (EltVT.getSizeInBits()), EltVT),
637 DAG.getConstant(0, EltVT));
638 }
639 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
640}
641
Eli Friedman5c22c802009-05-23 12:35:30 +0000642}
643
644bool SelectionDAG::LegalizeVectors() {
645 return VectorLegalizer(*this).Run();
646}