blob: 704f99bcf0e1a4ad1fbe4b3aaddd7d656090a8ff [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 Rotemb6266fb2011-09-18 10:29:29 +000064 // Implement vselect in terms of XOR, AND, OR when blend is not supported
65 // by the target.
Nadav Rotemaec58612011-09-13 19:17:42 +000066 SDValue ExpandVSELECT(SDValue Op);
Nadav Roteme9b58d02011-10-15 07:41:10 +000067 SDValue ExpandLoad(SDValue Op);
68 SDValue ExpandStore(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +000069 SDValue ExpandFNEG(SDValue Op);
70 // Implements vector promotion; this is essentially just bitcasting the
71 // operands to a different type and bitcasting the result back to the
72 // original type.
73 SDValue PromoteVectorOp(SDValue Op);
Jim Grosbach926dc162012-06-28 21:03:44 +000074 // Implements [SU]INT_TO_FP vector promotion; this is a [zs]ext of the input
75 // operand to the next size up.
76 SDValue PromoteVectorOpINT_TO_FP(SDValue Op);
Eli Friedman5c22c802009-05-23 12:35:30 +000077
78 public:
79 bool Run();
80 VectorLegalizer(SelectionDAG& dag) :
81 DAG(dag), TLI(dag.getTargetLoweringInfo()), Changed(false) {}
82};
83
84bool VectorLegalizer::Run() {
85 // The legalize process is inherently a bottom-up recursive process (users
86 // legalize their uses before themselves). Given infinite stack space, we
87 // could just start legalizing on the root and traverse the whole graph. In
88 // practice however, this causes us to run out of stack space on large basic
89 // blocks. To avoid this problem, compute an ordering of the nodes where each
90 // node is only legalized after all of its operands are legalized.
91 DAG.AssignTopologicalOrder();
92 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
Chris Lattner7896c9f2009-12-03 00:50:42 +000093 E = prior(DAG.allnodes_end()); I != llvm::next(E); ++I)
Eli Friedman5c22c802009-05-23 12:35:30 +000094 LegalizeOp(SDValue(I, 0));
95
96 // Finally, it's possible the root changed. Get the new root.
97 SDValue OldRoot = DAG.getRoot();
98 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
99 DAG.setRoot(LegalizedNodes[OldRoot]);
100
101 LegalizedNodes.clear();
102
103 // Remove dead nodes now.
104 DAG.RemoveDeadNodes();
105
106 return Changed;
107}
108
109SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
110 // Generic legalization: just pass the operand through.
111 for (unsigned i = 0, e = Op.getNode()->getNumValues(); i != e; ++i)
112 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
113 return Result.getValue(Op.getResNo());
114}
115
116SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
117 // Note that LegalizeOp may be reentered even from single-use nodes, which
118 // means that we always must cache transformed nodes.
119 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
120 if (I != LegalizedNodes.end()) return I->second;
121
122 SDNode* Node = Op.getNode();
123
124 // Legalize the operands
125 SmallVector<SDValue, 8> Ops;
126 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
127 Ops.push_back(LegalizeOp(Node->getOperand(i)));
128
129 SDValue Result =
Dan Gohman027657d2010-06-18 15:30:29 +0000130 SDValue(DAG.UpdateNodeOperands(Op.getNode(), Ops.data(), Ops.size()), 0);
Eli Friedman5c22c802009-05-23 12:35:30 +0000131
Nadav Roteme9b58d02011-10-15 07:41:10 +0000132 if (Op.getOpcode() == ISD::LOAD) {
133 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
134 ISD::LoadExtType ExtType = LD->getExtensionType();
135 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) {
136 if (TLI.isLoadExtLegal(LD->getExtensionType(), LD->getMemoryVT()))
137 return TranslateLegalizeResults(Op, Result);
138 Changed = true;
139 return LegalizeOp(ExpandLoad(Op));
140 }
141 } else if (Op.getOpcode() == ISD::STORE) {
142 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
143 EVT StVT = ST->getMemoryVT();
144 EVT ValVT = ST->getValue().getValueType();
145 if (StVT.isVector() && ST->isTruncatingStore())
146 switch (TLI.getTruncStoreAction(ValVT, StVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +0000147 default: llvm_unreachable("This action is not supported yet!");
Nadav Roteme9b58d02011-10-15 07:41:10 +0000148 case TargetLowering::Legal:
149 return TranslateLegalizeResults(Op, Result);
150 case TargetLowering::Custom:
151 Changed = true;
152 return LegalizeOp(TLI.LowerOperation(Result, DAG));
153 case TargetLowering::Expand:
154 Changed = true;
155 return LegalizeOp(ExpandStore(Op));
156 }
157 }
158
Eli Friedman5c22c802009-05-23 12:35:30 +0000159 bool HasVectorValue = false;
160 for (SDNode::value_iterator J = Node->value_begin(), E = Node->value_end();
161 J != E;
162 ++J)
163 HasVectorValue |= J->isVector();
164 if (!HasVectorValue)
165 return TranslateLegalizeResults(Op, Result);
166
Owen Andersone50ed302009-08-10 22:56:29 +0000167 EVT QueryType;
Eli Friedman5c22c802009-05-23 12:35:30 +0000168 switch (Op.getOpcode()) {
169 default:
170 return TranslateLegalizeResults(Op, Result);
171 case ISD::ADD:
172 case ISD::SUB:
173 case ISD::MUL:
174 case ISD::SDIV:
175 case ISD::UDIV:
176 case ISD::SREM:
177 case ISD::UREM:
178 case ISD::FADD:
179 case ISD::FSUB:
180 case ISD::FMUL:
181 case ISD::FDIV:
182 case ISD::FREM:
183 case ISD::AND:
184 case ISD::OR:
185 case ISD::XOR:
186 case ISD::SHL:
187 case ISD::SRA:
188 case ISD::SRL:
189 case ISD::ROTL:
190 case ISD::ROTR:
Eli Friedman5c22c802009-05-23 12:35:30 +0000191 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +0000192 case ISD::CTTZ:
193 case ISD::CTLZ_ZERO_UNDEF:
194 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman5c22c802009-05-23 12:35:30 +0000195 case ISD::CTPOP:
196 case ISD::SELECT:
Nadav Rotemaec58612011-09-13 19:17:42 +0000197 case ISD::VSELECT:
Eli Friedman5c22c802009-05-23 12:35:30 +0000198 case ISD::SELECT_CC:
Duncan Sands28b77e92011-09-06 19:07:46 +0000199 case ISD::SETCC:
Eli Friedman5c22c802009-05-23 12:35:30 +0000200 case ISD::ZERO_EXTEND:
201 case ISD::ANY_EXTEND:
202 case ISD::TRUNCATE:
203 case ISD::SIGN_EXTEND:
Eli Friedman5c22c802009-05-23 12:35:30 +0000204 case ISD::FP_TO_SINT:
205 case ISD::FP_TO_UINT:
206 case ISD::FNEG:
207 case ISD::FABS:
208 case ISD::FSQRT:
209 case ISD::FSIN:
210 case ISD::FCOS:
211 case ISD::FPOWI:
212 case ISD::FPOW:
213 case ISD::FLOG:
214 case ISD::FLOG2:
215 case ISD::FLOG10:
216 case ISD::FEXP:
217 case ISD::FEXP2:
218 case ISD::FCEIL:
219 case ISD::FTRUNC:
220 case ISD::FRINT:
221 case ISD::FNEARBYINT:
222 case ISD::FFLOOR:
Nadav Rotemd0f3ef82011-07-14 11:11:14 +0000223 case ISD::SIGN_EXTEND_INREG:
Eli Friedman556929a2009-06-06 03:27:50 +0000224 QueryType = Node->getValueType(0);
225 break;
Dan Gohmand1996362010-01-09 02:13:55 +0000226 case ISD::FP_ROUND_INREG:
227 QueryType = cast<VTSDNode>(Node->getOperand(1))->getVT();
228 break;
Eli Friedman556929a2009-06-06 03:27:50 +0000229 case ISD::SINT_TO_FP:
230 case ISD::UINT_TO_FP:
231 QueryType = Node->getOperand(0).getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000232 break;
233 }
234
Eli Friedman556929a2009-06-06 03:27:50 +0000235 switch (TLI.getOperationAction(Node->getOpcode(), QueryType)) {
Eli Friedman5c22c802009-05-23 12:35:30 +0000236 case TargetLowering::Promote:
Jim Grosbach926dc162012-06-28 21:03:44 +0000237 switch (Op.getOpcode()) {
238 default:
239 // "Promote" the operation by bitcasting
240 Result = PromoteVectorOp(Op);
241 Changed = true;
242 break;
243 case ISD::SINT_TO_FP:
244 case ISD::UINT_TO_FP:
245 // "Promote" the operation by extending the operand.
246 Result = PromoteVectorOpINT_TO_FP(Op);
247 Changed = true;
248 break;
249 }
Eli Friedman5c22c802009-05-23 12:35:30 +0000250 break;
251 case TargetLowering::Legal: break;
252 case TargetLowering::Custom: {
253 SDValue Tmp1 = TLI.LowerOperation(Op, DAG);
254 if (Tmp1.getNode()) {
255 Result = Tmp1;
256 break;
257 }
258 // FALL THROUGH
259 }
260 case TargetLowering::Expand:
Nadav Rotemaec58612011-09-13 19:17:42 +0000261 if (Node->getOpcode() == ISD::VSELECT)
262 Result = ExpandVSELECT(Op);
263 else if (Node->getOpcode() == ISD::UINT_TO_FP)
Nadav Rotem06cc3242011-03-19 13:09:10 +0000264 Result = ExpandUINT_TO_FLOAT(Op);
265 else if (Node->getOpcode() == ISD::FNEG)
Eli Friedman5c22c802009-05-23 12:35:30 +0000266 Result = ExpandFNEG(Op);
Duncan Sands28b77e92011-09-06 19:07:46 +0000267 else if (Node->getOpcode() == ISD::SETCC)
Eli Friedman5c22c802009-05-23 12:35:30 +0000268 Result = UnrollVSETCC(Op);
269 else
Mon P Wangcd6e7252009-11-30 02:42:02 +0000270 Result = DAG.UnrollVectorOp(Op.getNode());
Eli Friedman5c22c802009-05-23 12:35:30 +0000271 break;
272 }
273
274 // Make sure that the generated code is itself legal.
275 if (Result != Op) {
276 Result = LegalizeOp(Result);
277 Changed = true;
278 }
279
280 // Note that LegalizeOp may be reentered even from single-use nodes, which
281 // means that we always must cache transformed nodes.
282 AddLegalizedOperand(Op, Result);
283 return Result;
284}
285
286SDValue VectorLegalizer::PromoteVectorOp(SDValue Op) {
Eli Friedmanc046c002009-05-24 20:32:10 +0000287 // Vector "promotion" is basically just bitcasting and doing the operation
288 // in a different type. For example, x86 promotes ISD::AND on v2i32 to
289 // v1i64.
Owen Andersone50ed302009-08-10 22:56:29 +0000290 EVT VT = Op.getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000291 assert(Op.getNode()->getNumValues() == 1 &&
292 "Can't promote a vector with multiple results!");
Owen Andersone50ed302009-08-10 22:56:29 +0000293 EVT NVT = TLI.getTypeToPromoteTo(Op.getOpcode(), VT);
Eli Friedman5c22c802009-05-23 12:35:30 +0000294 DebugLoc dl = Op.getDebugLoc();
295 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
296
297 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
298 if (Op.getOperand(j).getValueType().isVector())
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000299 Operands[j] = DAG.getNode(ISD::BITCAST, dl, NVT, Op.getOperand(j));
Eli Friedman5c22c802009-05-23 12:35:30 +0000300 else
301 Operands[j] = Op.getOperand(j);
302 }
303
304 Op = DAG.getNode(Op.getOpcode(), dl, NVT, &Operands[0], Operands.size());
305
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000306 return DAG.getNode(ISD::BITCAST, dl, VT, Op);
Eli Friedman5c22c802009-05-23 12:35:30 +0000307}
308
Jim Grosbach926dc162012-06-28 21:03:44 +0000309SDValue VectorLegalizer::PromoteVectorOpINT_TO_FP(SDValue Op) {
310 // INT_TO_FP operations may require the input operand be promoted even
311 // when the type is otherwise legal.
312 EVT VT = Op.getOperand(0).getValueType();
313 assert(Op.getNode()->getNumValues() == 1 &&
314 "Can't promote a vector with multiple results!");
315
316 // Normal getTypeToPromoteTo() doesn't work here, as that will promote
317 // by widening the vector w/ the same element width and twice the number
318 // of elements. We want the other way around, the same number of elements,
319 // each twice the width.
320 //
321 // Increase the bitwidth of the element to the next pow-of-two
322 // (which is greater than 8 bits).
323 unsigned NumElts = VT.getVectorNumElements();
324 EVT EltVT = VT.getVectorElementType();
325 EltVT = EVT::getIntegerVT(*DAG.getContext(), 2 * EltVT.getSizeInBits());
326 assert(EltVT.isSimple() && "Promoting to a non-simple vector type!");
327
328 // Build a new vector type and check if it is legal.
329 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
330
331 DebugLoc dl = Op.getDebugLoc();
332 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
333
334 unsigned Opc = Op.getOpcode() == ISD::UINT_TO_FP ? ISD::ZERO_EXTEND :
335 ISD::SIGN_EXTEND;
336 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
337 if (Op.getOperand(j).getValueType().isVector())
338 Operands[j] = DAG.getNode(Opc, dl, NVT, Op.getOperand(j));
339 else
340 Operands[j] = Op.getOperand(j);
341 }
342
343 return DAG.getNode(Op.getOpcode(), dl, Op.getValueType(), &Operands[0],
344 Operands.size());
345}
346
Nadav Roteme9b58d02011-10-15 07:41:10 +0000347
348SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
349 DebugLoc dl = Op.getDebugLoc();
350 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
351 SDValue Chain = LD->getChain();
352 SDValue BasePTR = LD->getBasePtr();
353 EVT SrcVT = LD->getMemoryVT();
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000354 ISD::LoadExtType ExtType = LD->getExtensionType();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000355
356 SmallVector<SDValue, 8> LoadVals;
357 SmallVector<SDValue, 8> LoadChains;
358 unsigned NumElem = SrcVT.getVectorNumElements();
359 unsigned Stride = SrcVT.getScalarType().getSizeInBits()/8;
360
361 for (unsigned Idx=0; Idx<NumElem; Idx++) {
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000362 SDValue ScalarLoad = DAG.getExtLoad(ExtType, dl,
Nadav Roteme9b58d02011-10-15 07:41:10 +0000363 Op.getNode()->getValueType(0).getScalarType(),
364 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
365 SrcVT.getScalarType(),
366 LD->isVolatile(), LD->isNonTemporal(),
367 LD->getAlignment());
368
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000369 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
370 DAG.getIntPtrConstant(Stride));
371
Nadav Roteme9b58d02011-10-15 07:41:10 +0000372 LoadVals.push_back(ScalarLoad.getValue(0));
373 LoadChains.push_back(ScalarLoad.getValue(1));
374 }
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000375
Nadav Roteme9b58d02011-10-15 07:41:10 +0000376 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
377 &LoadChains[0], LoadChains.size());
378 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
379 Op.getNode()->getValueType(0), &LoadVals[0], LoadVals.size());
380
381 AddLegalizedOperand(Op.getValue(0), Value);
382 AddLegalizedOperand(Op.getValue(1), NewChain);
383
384 return (Op.getResNo() ? NewChain : Value);
385}
386
387SDValue VectorLegalizer::ExpandStore(SDValue Op) {
388 DebugLoc dl = Op.getDebugLoc();
389 StoreSDNode *ST = cast<StoreSDNode>(Op.getNode());
390 SDValue Chain = ST->getChain();
391 SDValue BasePTR = ST->getBasePtr();
392 SDValue Value = ST->getValue();
393 EVT StVT = ST->getMemoryVT();
394
395 unsigned Alignment = ST->getAlignment();
396 bool isVolatile = ST->isVolatile();
397 bool isNonTemporal = ST->isNonTemporal();
398
399 unsigned NumElem = StVT.getVectorNumElements();
400 // The type of the data we want to save
401 EVT RegVT = Value.getValueType();
402 EVT RegSclVT = RegVT.getScalarType();
403 // The type of data as saved in memory.
404 EVT MemSclVT = StVT.getScalarType();
405
406 // Cast floats into integers
407 unsigned ScalarSize = MemSclVT.getSizeInBits();
Nadav Roteme9b58d02011-10-15 07:41:10 +0000408
409 // Round odd types to the next pow of two.
410 if (!isPowerOf2_32(ScalarSize))
411 ScalarSize = NextPowerOf2(ScalarSize);
412
413 // Store Stride in bytes
414 unsigned Stride = ScalarSize/8;
415 // Extract each of the elements from the original vector
416 // and save them into memory individually.
417 SmallVector<SDValue, 8> Stores;
418 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
419 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
420 RegSclVT, Value, DAG.getIntPtrConstant(Idx));
421
Nadav Roteme9b58d02011-10-15 07:41:10 +0000422 // This scalar TruncStore may be illegal, but we legalize it later.
423 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
424 ST->getPointerInfo().getWithOffset(Idx*Stride), MemSclVT,
425 isVolatile, isNonTemporal, Alignment);
426
Nadav Rotemfbf19ef2011-10-18 22:32:43 +0000427 BasePTR = DAG.getNode(ISD::ADD, dl, BasePTR.getValueType(), BasePTR,
428 DAG.getIntPtrConstant(Stride));
429
Nadav Roteme9b58d02011-10-15 07:41:10 +0000430 Stores.push_back(Store);
431 }
432 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
433 &Stores[0], Stores.size());
434 AddLegalizedOperand(Op, TF);
435 return TF;
436}
437
Nadav Rotemaec58612011-09-13 19:17:42 +0000438SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
439 // Implement VSELECT in terms of XOR, AND, OR
440 // on platforms which do not support blend natively.
441 EVT VT = Op.getOperand(0).getValueType();
Nadav Rotemaec58612011-09-13 19:17:42 +0000442 DebugLoc DL = Op.getDebugLoc();
443
444 SDValue Mask = Op.getOperand(0);
445 SDValue Op1 = Op.getOperand(1);
446 SDValue Op2 = Op.getOperand(2);
447
448 // If we can't even use the basic vector operations of
449 // AND,OR,XOR, we will have to scalarize the op.
Nadav Rotem815af822011-10-19 20:43:16 +0000450 // Notice that the operation may be 'promoted' which means that it is
451 // 'bitcasted' to another type which is handled.
452 if (TLI.getOperationAction(ISD::AND, VT) == TargetLowering::Expand ||
453 TLI.getOperationAction(ISD::XOR, VT) == TargetLowering::Expand ||
454 TLI.getOperationAction(ISD::OR, VT) == TargetLowering::Expand)
455 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotemaec58612011-09-13 19:17:42 +0000456
Duncan Sands17001ce2011-10-18 12:44:00 +0000457 assert(VT.getSizeInBits() == Op.getOperand(1).getValueType().getSizeInBits()
458 && "Invalid mask size");
Nadav Rotemaec58612011-09-13 19:17:42 +0000459 // Bitcast the operands to be the same type as the mask.
460 // This is needed when we select between FP types because
461 // the mask is a vector of integers.
462 Op1 = DAG.getNode(ISD::BITCAST, DL, VT, Op1);
463 Op2 = DAG.getNode(ISD::BITCAST, DL, VT, Op2);
464
465 SDValue AllOnes = DAG.getConstant(
466 APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()), VT);
467 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes);
468
469 Op1 = DAG.getNode(ISD::AND, DL, VT, Op1, Mask);
470 Op2 = DAG.getNode(ISD::AND, DL, VT, Op2, NotMask);
Nadav Rotem3ab32ea2012-04-15 15:08:09 +0000471 SDValue Val = DAG.getNode(ISD::OR, DL, VT, Op1, Op2);
472 return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Val);
Nadav Rotemaec58612011-09-13 19:17:42 +0000473}
474
Nadav Rotem06cc3242011-03-19 13:09:10 +0000475SDValue VectorLegalizer::ExpandUINT_TO_FLOAT(SDValue Op) {
Nadav Rotem06cc3242011-03-19 13:09:10 +0000476 EVT VT = Op.getOperand(0).getValueType();
477 DebugLoc DL = Op.getDebugLoc();
478
479 // Make sure that the SINT_TO_FP and SRL instructions are available.
Nadav Rotem815af822011-10-19 20:43:16 +0000480 if (TLI.getOperationAction(ISD::SINT_TO_FP, VT) == TargetLowering::Expand ||
481 TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Expand)
482 return DAG.UnrollVectorOp(Op.getNode());
Nadav Rotem06cc3242011-03-19 13:09:10 +0000483
484 EVT SVT = VT.getScalarType();
485 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) &&
486 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
487
488 unsigned BW = SVT.getSizeInBits();
489 SDValue HalfWord = DAG.getConstant(BW/2, VT);
490
491 // Constants to clear the upper part of the word.
492 // Notice that we can also use SHL+SHR, but using a constant is slightly
493 // faster on x86.
494 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF;
495 SDValue HalfWordMask = DAG.getConstant(HWMask, VT);
496
497 // Two to the power of half-word-size.
498 SDValue TWOHW = DAG.getConstantFP((1<<(BW/2)), Op.getValueType());
499
500 // Clear upper part of LO, lower HI
501 SDValue HI = DAG.getNode(ISD::SRL, DL, VT, Op.getOperand(0), HalfWord);
502 SDValue LO = DAG.getNode(ISD::AND, DL, VT, Op.getOperand(0), HalfWordMask);
503
504 // Convert hi and lo to floats
505 // Convert the hi part back to the upper values
506 SDValue fHI = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), HI);
507 fHI = DAG.getNode(ISD::FMUL, DL, Op.getValueType(), fHI, TWOHW);
508 SDValue fLO = DAG.getNode(ISD::SINT_TO_FP, DL, Op.getValueType(), LO);
509
510 // Add the two halves
511 return DAG.getNode(ISD::FADD, DL, Op.getValueType(), fHI, fLO);
512}
513
514
Eli Friedman5c22c802009-05-23 12:35:30 +0000515SDValue VectorLegalizer::ExpandFNEG(SDValue Op) {
516 if (TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType())) {
517 SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType());
518 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
519 Zero, Op.getOperand(0));
520 }
Mon P Wangcd6e7252009-11-30 02:42:02 +0000521 return DAG.UnrollVectorOp(Op.getNode());
Eli Friedman5c22c802009-05-23 12:35:30 +0000522}
523
524SDValue VectorLegalizer::UnrollVSETCC(SDValue Op) {
Owen Andersone50ed302009-08-10 22:56:29 +0000525 EVT VT = Op.getValueType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000526 unsigned NumElems = VT.getVectorNumElements();
Owen Andersone50ed302009-08-10 22:56:29 +0000527 EVT EltVT = VT.getVectorElementType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000528 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1), CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +0000529 EVT TmpEltVT = LHS.getValueType().getVectorElementType();
Eli Friedman5c22c802009-05-23 12:35:30 +0000530 DebugLoc dl = Op.getDebugLoc();
531 SmallVector<SDValue, 8> Ops(NumElems);
532 for (unsigned i = 0; i < NumElems; ++i) {
533 SDValue LHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, LHS,
534 DAG.getIntPtrConstant(i));
535 SDValue RHSElem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT, RHS,
536 DAG.getIntPtrConstant(i));
537 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
538 LHSElem, RHSElem, CC);
539 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
540 DAG.getConstant(APInt::getAllOnesValue
541 (EltVT.getSizeInBits()), EltVT),
542 DAG.getConstant(0, EltVT));
543 }
544 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
545}
546
Eli Friedman5c22c802009-05-23 12:35:30 +0000547}
548
549bool SelectionDAG::LegalizeVectors() {
550 return VectorLegalizer(*this).Run();
551}