Change llvm_unreachable in SplitVectorOperand to report_fatal_error. Keeps release...
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeVectorTypes.cpp
1 //===------- LegalizeVectorTypes.cpp - Legalization of vector types -------===//
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 performs vector type splitting and scalarization for LegalizeTypes.
11 // Scalarization is the act of changing a computation in an illegal one-element
12 // vector type to be a computation in its scalar element type.  For example,
13 // implementing <1 x f32> arithmetic in a scalar f32 register.  This is needed
14 // as a base case when scalarizing vector arithmetic like <4 x f32>, which
15 // eventually decomposes to scalars if the target doesn't support v4f32 or v2f32
16 // types.
17 // Splitting is the act of changing a computation in an invalid vector type to
18 // be a computation in two vectors of half the size.  For example, implementing
19 // <128 x f32> operations in terms of two <64 x f32> operations.
20 //
21 //===----------------------------------------------------------------------===//
22
23 #include "LegalizeTypes.h"
24 #include "llvm/Target/TargetData.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/raw_ostream.h"
27 using namespace llvm;
28
29 //===----------------------------------------------------------------------===//
30 //  Result Vector Scalarization: <1 x ty> -> ty.
31 //===----------------------------------------------------------------------===//
32
33 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
34   DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
35         N->dump(&DAG);
36         dbgs() << "\n");
37   SDValue R = SDValue();
38
39   switch (N->getOpcode()) {
40   default:
41 #ifndef NDEBUG
42     dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
43     N->dump(&DAG);
44     dbgs() << "\n";
45 #endif
46     report_fatal_error("Do not know how to scalarize the result of this "
47                        "operator!\n");
48
49   case ISD::MERGE_VALUES:      R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
50   case ISD::BITCAST:           R = ScalarizeVecRes_BITCAST(N); break;
51   case ISD::BUILD_VECTOR:      R = ScalarizeVecRes_BUILD_VECTOR(N); break;
52   case ISD::CONVERT_RNDSAT:    R = ScalarizeVecRes_CONVERT_RNDSAT(N); break;
53   case ISD::EXTRACT_SUBVECTOR: R = ScalarizeVecRes_EXTRACT_SUBVECTOR(N); break;
54   case ISD::FP_ROUND:          R = ScalarizeVecRes_FP_ROUND(N); break;
55   case ISD::FP_ROUND_INREG:    R = ScalarizeVecRes_InregOp(N); break;
56   case ISD::FPOWI:             R = ScalarizeVecRes_FPOWI(N); break;
57   case ISD::INSERT_VECTOR_ELT: R = ScalarizeVecRes_INSERT_VECTOR_ELT(N); break;
58   case ISD::LOAD:           R = ScalarizeVecRes_LOAD(cast<LoadSDNode>(N));break;
59   case ISD::SCALAR_TO_VECTOR:  R = ScalarizeVecRes_SCALAR_TO_VECTOR(N); break;
60   case ISD::SIGN_EXTEND_INREG: R = ScalarizeVecRes_InregOp(N); break;
61   case ISD::VSELECT:           R = ScalarizeVecRes_VSELECT(N); break;
62   case ISD::SELECT:            R = ScalarizeVecRes_SELECT(N); break;
63   case ISD::SELECT_CC:         R = ScalarizeVecRes_SELECT_CC(N); break;
64   case ISD::SETCC:             R = ScalarizeVecRes_SETCC(N); break;
65   case ISD::UNDEF:             R = ScalarizeVecRes_UNDEF(N); break;
66   case ISD::VECTOR_SHUFFLE:    R = ScalarizeVecRes_VECTOR_SHUFFLE(N); break;
67   case ISD::ANY_EXTEND:
68   case ISD::CTLZ:
69   case ISD::CTPOP:
70   case ISD::CTTZ:
71   case ISD::FABS:
72   case ISD::FCEIL:
73   case ISD::FCOS:
74   case ISD::FEXP:
75   case ISD::FEXP2:
76   case ISD::FFLOOR:
77   case ISD::FLOG:
78   case ISD::FLOG10:
79   case ISD::FLOG2:
80   case ISD::FNEARBYINT:
81   case ISD::FNEG:
82   case ISD::FP_EXTEND:
83   case ISD::FP_TO_SINT:
84   case ISD::FP_TO_UINT:
85   case ISD::FRINT:
86   case ISD::FSIN:
87   case ISD::FSQRT:
88   case ISD::FTRUNC:
89   case ISD::SIGN_EXTEND:
90   case ISD::SINT_TO_FP:
91   case ISD::TRUNCATE:
92   case ISD::UINT_TO_FP:
93   case ISD::ZERO_EXTEND:
94     R = ScalarizeVecRes_UnaryOp(N);
95     break;
96
97   case ISD::ADD:
98   case ISD::AND:
99   case ISD::FADD:
100   case ISD::FDIV:
101   case ISD::FMUL:
102   case ISD::FPOW:
103   case ISD::FREM:
104   case ISD::FSUB:
105   case ISD::MUL:
106   case ISD::OR:
107   case ISD::SDIV:
108   case ISD::SREM:
109   case ISD::SUB:
110   case ISD::UDIV:
111   case ISD::UREM:
112   case ISD::XOR:
113   case ISD::SHL:
114   case ISD::SRA:
115   case ISD::SRL:
116     R = ScalarizeVecRes_BinOp(N);
117     break;
118   case ISD::FMA:
119     R = ScalarizeVecRes_TernaryOp(N);
120     break;
121   }
122
123   // If R is null, the sub-method took care of registering the result.
124   if (R.getNode())
125     SetScalarizedVector(SDValue(N, ResNo), R);
126 }
127
128 SDValue DAGTypeLegalizer::ScalarizeVecRes_BinOp(SDNode *N) {
129   SDValue LHS = GetScalarizedVector(N->getOperand(0));
130   SDValue RHS = GetScalarizedVector(N->getOperand(1));
131   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
132                      LHS.getValueType(), LHS, RHS);
133 }
134
135 SDValue DAGTypeLegalizer::ScalarizeVecRes_TernaryOp(SDNode *N) {
136   SDValue Op0 = GetScalarizedVector(N->getOperand(0));
137   SDValue Op1 = GetScalarizedVector(N->getOperand(1));
138   SDValue Op2 = GetScalarizedVector(N->getOperand(2));
139   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
140                      Op0.getValueType(), Op0, Op1, Op2);
141 }
142
143 SDValue DAGTypeLegalizer::ScalarizeVecRes_MERGE_VALUES(SDNode *N,
144                                                        unsigned ResNo) {
145   SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
146   return GetScalarizedVector(Op);
147 }
148
149 SDValue DAGTypeLegalizer::ScalarizeVecRes_BITCAST(SDNode *N) {
150   EVT NewVT = N->getValueType(0).getVectorElementType();
151   return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
152                      NewVT, N->getOperand(0));
153 }
154
155 SDValue DAGTypeLegalizer::ScalarizeVecRes_BUILD_VECTOR(SDNode *N) {
156   EVT EltVT = N->getValueType(0).getVectorElementType();
157   SDValue InOp = N->getOperand(0);
158   // The BUILD_VECTOR operands may be of wider element types and
159   // we may need to truncate them back to the requested return type.
160   if (EltVT.isInteger())
161     return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), EltVT, InOp);
162   return InOp;
163 }
164
165 SDValue DAGTypeLegalizer::ScalarizeVecRes_CONVERT_RNDSAT(SDNode *N) {
166   EVT NewVT = N->getValueType(0).getVectorElementType();
167   SDValue Op0 = GetScalarizedVector(N->getOperand(0));
168   return DAG.getConvertRndSat(NewVT, N->getDebugLoc(),
169                               Op0, DAG.getValueType(NewVT),
170                               DAG.getValueType(Op0.getValueType()),
171                               N->getOperand(3),
172                               N->getOperand(4),
173                               cast<CvtRndSatSDNode>(N)->getCvtCode());
174 }
175
176 SDValue DAGTypeLegalizer::ScalarizeVecRes_EXTRACT_SUBVECTOR(SDNode *N) {
177   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(),
178                      N->getValueType(0).getVectorElementType(),
179                      N->getOperand(0), N->getOperand(1));
180 }
181
182 SDValue DAGTypeLegalizer::ScalarizeVecRes_FP_ROUND(SDNode *N) {
183   EVT NewVT = N->getValueType(0).getVectorElementType();
184   SDValue Op = GetScalarizedVector(N->getOperand(0));
185   return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(),
186                      NewVT, Op, N->getOperand(1));
187 }
188
189 SDValue DAGTypeLegalizer::ScalarizeVecRes_FPOWI(SDNode *N) {
190   SDValue Op = GetScalarizedVector(N->getOperand(0));
191   return DAG.getNode(ISD::FPOWI, N->getDebugLoc(),
192                      Op.getValueType(), Op, N->getOperand(1));
193 }
194
195 SDValue DAGTypeLegalizer::ScalarizeVecRes_INSERT_VECTOR_ELT(SDNode *N) {
196   // The value to insert may have a wider type than the vector element type,
197   // so be sure to truncate it to the element type if necessary.
198   SDValue Op = N->getOperand(1);
199   EVT EltVT = N->getValueType(0).getVectorElementType();
200   if (Op.getValueType() != EltVT)
201     // FIXME: Can this happen for floating point types?
202     Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), EltVT, Op);
203   return Op;
204 }
205
206 SDValue DAGTypeLegalizer::ScalarizeVecRes_LOAD(LoadSDNode *N) {
207   assert(N->isUnindexed() && "Indexed vector load?");
208
209   SDValue Result = DAG.getLoad(ISD::UNINDEXED,
210                                N->getExtensionType(),
211                                N->getValueType(0).getVectorElementType(),
212                                N->getDebugLoc(),
213                                N->getChain(), N->getBasePtr(),
214                                DAG.getUNDEF(N->getBasePtr().getValueType()),
215                                N->getPointerInfo(),
216                                N->getMemoryVT().getVectorElementType(),
217                                N->isVolatile(), N->isNonTemporal(),
218                                N->isInvariant(), N->getOriginalAlignment());
219
220   // Legalized the chain result - switch anything that used the old chain to
221   // use the new one.
222   ReplaceValueWith(SDValue(N, 1), Result.getValue(1));
223   return Result;
224 }
225
226 SDValue DAGTypeLegalizer::ScalarizeVecRes_UnaryOp(SDNode *N) {
227   // Get the dest type - it doesn't always match the input type, e.g. int_to_fp.
228   EVT DestVT = N->getValueType(0).getVectorElementType();
229   SDValue Op = GetScalarizedVector(N->getOperand(0));
230   return DAG.getNode(N->getOpcode(), N->getDebugLoc(), DestVT, Op);
231 }
232
233 SDValue DAGTypeLegalizer::ScalarizeVecRes_InregOp(SDNode *N) {
234   EVT EltVT = N->getValueType(0).getVectorElementType();
235   EVT ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT().getVectorElementType();
236   SDValue LHS = GetScalarizedVector(N->getOperand(0));
237   return DAG.getNode(N->getOpcode(), N->getDebugLoc(), EltVT,
238                      LHS, DAG.getValueType(ExtVT));
239 }
240
241 SDValue DAGTypeLegalizer::ScalarizeVecRes_SCALAR_TO_VECTOR(SDNode *N) {
242   // If the operand is wider than the vector element type then it is implicitly
243   // truncated.  Make that explicit here.
244   EVT EltVT = N->getValueType(0).getVectorElementType();
245   SDValue InOp = N->getOperand(0);
246   if (InOp.getValueType() != EltVT)
247     return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), EltVT, InOp);
248   return InOp;
249 }
250
251 SDValue DAGTypeLegalizer::ScalarizeVecRes_VSELECT(SDNode *N) {
252   SDValue Cond = GetScalarizedVector(N->getOperand(0));
253   SDValue LHS = GetScalarizedVector(N->getOperand(1));
254   TargetLowering::BooleanContent ScalarBool = TLI.getBooleanContents(false);
255   TargetLowering::BooleanContent VecBool = TLI.getBooleanContents(true);
256   if (ScalarBool != VecBool) {
257     EVT CondVT = Cond.getValueType();
258     switch (ScalarBool) {
259       case TargetLowering::UndefinedBooleanContent:
260         break;
261       case TargetLowering::ZeroOrOneBooleanContent:
262         assert(VecBool == TargetLowering::UndefinedBooleanContent ||
263                VecBool == TargetLowering::ZeroOrNegativeOneBooleanContent);
264         // Vector read from all ones, scalar expects a single 1 so mask.
265         Cond = DAG.getNode(ISD::AND, N->getDebugLoc(), CondVT,
266                            Cond, DAG.getConstant(1, CondVT));
267         break;
268       case TargetLowering::ZeroOrNegativeOneBooleanContent:
269         assert(VecBool == TargetLowering::UndefinedBooleanContent ||
270                VecBool == TargetLowering::ZeroOrOneBooleanContent);
271         // Vector reads from a one, scalar from all ones so sign extend.
272         Cond = DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), CondVT,
273                            Cond, DAG.getValueType(MVT::i1));
274         break;
275     }
276   }
277   return DAG.getNode(ISD::SELECT, N->getDebugLoc(),
278                      LHS.getValueType(), Cond, LHS,
279                      GetScalarizedVector(N->getOperand(2)));
280 }
281
282 SDValue DAGTypeLegalizer::ScalarizeVecRes_SELECT(SDNode *N) {
283   SDValue LHS = GetScalarizedVector(N->getOperand(1));
284   return DAG.getNode(ISD::SELECT, N->getDebugLoc(),
285                      LHS.getValueType(), N->getOperand(0), LHS,
286                      GetScalarizedVector(N->getOperand(2)));
287 }
288
289 SDValue DAGTypeLegalizer::ScalarizeVecRes_SELECT_CC(SDNode *N) {
290   SDValue LHS = GetScalarizedVector(N->getOperand(2));
291   return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), LHS.getValueType(),
292                      N->getOperand(0), N->getOperand(1),
293                      LHS, GetScalarizedVector(N->getOperand(3)),
294                      N->getOperand(4));
295 }
296
297 SDValue DAGTypeLegalizer::ScalarizeVecRes_SETCC(SDNode *N) {
298   assert(N->getValueType(0).isVector() ==
299          N->getOperand(0).getValueType().isVector() &&
300          "Scalar/Vector type mismatch");
301
302   if (N->getValueType(0).isVector()) return ScalarizeVecRes_VSETCC(N);
303
304   SDValue LHS = GetScalarizedVector(N->getOperand(0));
305   SDValue RHS = GetScalarizedVector(N->getOperand(1));
306   DebugLoc DL = N->getDebugLoc();
307
308   // Turn it into a scalar SETCC.
309   return DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, N->getOperand(2));
310 }
311
312 SDValue DAGTypeLegalizer::ScalarizeVecRes_UNDEF(SDNode *N) {
313   return DAG.getUNDEF(N->getValueType(0).getVectorElementType());
314 }
315
316 SDValue DAGTypeLegalizer::ScalarizeVecRes_VECTOR_SHUFFLE(SDNode *N) {
317   // Figure out if the scalar is the LHS or RHS and return it.
318   SDValue Arg = N->getOperand(2).getOperand(0);
319   if (Arg.getOpcode() == ISD::UNDEF)
320     return DAG.getUNDEF(N->getValueType(0).getVectorElementType());
321   unsigned Op = !cast<ConstantSDNode>(Arg)->isNullValue();
322   return GetScalarizedVector(N->getOperand(Op));
323 }
324
325 SDValue DAGTypeLegalizer::ScalarizeVecRes_VSETCC(SDNode *N) {
326   assert(N->getValueType(0).isVector() &&
327          N->getOperand(0).getValueType().isVector() &&
328          "Operand types must be vectors");
329
330   SDValue LHS = GetScalarizedVector(N->getOperand(0));
331   SDValue RHS = GetScalarizedVector(N->getOperand(1));
332   EVT NVT = N->getValueType(0).getVectorElementType();
333   DebugLoc DL = N->getDebugLoc();
334
335   // Turn it into a scalar SETCC.
336   SDValue Res = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS,
337                             N->getOperand(2));
338   // Vectors may have a different boolean contents to scalars.  Promote the
339   // value appropriately.
340   ISD::NodeType ExtendCode =
341     TargetLowering::getExtendForContent(TLI.getBooleanContents(true));
342   return DAG.getNode(ExtendCode, DL, NVT, Res);
343 }
344
345
346 //===----------------------------------------------------------------------===//
347 //  Operand Vector Scalarization <1 x ty> -> ty.
348 //===----------------------------------------------------------------------===//
349
350 bool DAGTypeLegalizer::ScalarizeVectorOperand(SDNode *N, unsigned OpNo) {
351   DEBUG(dbgs() << "Scalarize node operand " << OpNo << ": ";
352         N->dump(&DAG);
353         dbgs() << "\n");
354   SDValue Res = SDValue();
355
356   if (Res.getNode() == 0) {
357     switch (N->getOpcode()) {
358     default:
359 #ifndef NDEBUG
360       dbgs() << "ScalarizeVectorOperand Op #" << OpNo << ": ";
361       N->dump(&DAG);
362       dbgs() << "\n";
363 #endif
364       llvm_unreachable("Do not know how to scalarize this operator's operand!");
365     case ISD::BITCAST:
366       Res = ScalarizeVecOp_BITCAST(N);
367       break;
368     case ISD::CONCAT_VECTORS:
369       Res = ScalarizeVecOp_CONCAT_VECTORS(N);
370       break;
371     case ISD::EXTRACT_VECTOR_ELT:
372       Res = ScalarizeVecOp_EXTRACT_VECTOR_ELT(N);
373       break;
374     case ISD::STORE:
375       Res = ScalarizeVecOp_STORE(cast<StoreSDNode>(N), OpNo);
376       break;
377     }
378   }
379
380   // If the result is null, the sub-method took care of registering results etc.
381   if (!Res.getNode()) return false;
382
383   // If the result is N, the sub-method updated N in place.  Tell the legalizer
384   // core about this.
385   if (Res.getNode() == N)
386     return true;
387
388   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
389          "Invalid operand expansion");
390
391   ReplaceValueWith(SDValue(N, 0), Res);
392   return false;
393 }
394
395 /// ScalarizeVecOp_BITCAST - If the value to convert is a vector that needs
396 /// to be scalarized, it must be <1 x ty>.  Convert the element instead.
397 SDValue DAGTypeLegalizer::ScalarizeVecOp_BITCAST(SDNode *N) {
398   SDValue Elt = GetScalarizedVector(N->getOperand(0));
399   return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
400                      N->getValueType(0), Elt);
401 }
402
403 /// ScalarizeVecOp_CONCAT_VECTORS - The vectors to concatenate have length one -
404 /// use a BUILD_VECTOR instead.
405 SDValue DAGTypeLegalizer::ScalarizeVecOp_CONCAT_VECTORS(SDNode *N) {
406   SmallVector<SDValue, 8> Ops(N->getNumOperands());
407   for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
408     Ops[i] = GetScalarizedVector(N->getOperand(i));
409   return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), N->getValueType(0),
410                      &Ops[0], Ops.size());
411 }
412
413 /// ScalarizeVecOp_EXTRACT_VECTOR_ELT - If the input is a vector that needs to
414 /// be scalarized, it must be <1 x ty>, so just return the element, ignoring the
415 /// index.
416 SDValue DAGTypeLegalizer::ScalarizeVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
417   SDValue Res = GetScalarizedVector(N->getOperand(0));
418   if (Res.getValueType() != N->getValueType(0))
419     Res = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), N->getValueType(0),
420                       Res);
421   return Res;
422 }
423
424 /// ScalarizeVecOp_STORE - If the value to store is a vector that needs to be
425 /// scalarized, it must be <1 x ty>.  Just store the element.
426 SDValue DAGTypeLegalizer::ScalarizeVecOp_STORE(StoreSDNode *N, unsigned OpNo){
427   assert(N->isUnindexed() && "Indexed store of one-element vector?");
428   assert(OpNo == 1 && "Do not know how to scalarize this operand!");
429   DebugLoc dl = N->getDebugLoc();
430
431   if (N->isTruncatingStore())
432     return DAG.getTruncStore(N->getChain(), dl,
433                              GetScalarizedVector(N->getOperand(1)),
434                              N->getBasePtr(), N->getPointerInfo(),
435                              N->getMemoryVT().getVectorElementType(),
436                              N->isVolatile(), N->isNonTemporal(),
437                              N->getAlignment());
438
439   return DAG.getStore(N->getChain(), dl, GetScalarizedVector(N->getOperand(1)),
440                       N->getBasePtr(), N->getPointerInfo(),
441                       N->isVolatile(), N->isNonTemporal(),
442                       N->getOriginalAlignment());
443 }
444
445
446 //===----------------------------------------------------------------------===//
447 //  Result Vector Splitting
448 //===----------------------------------------------------------------------===//
449
450 /// SplitVectorResult - This method is called when the specified result of the
451 /// specified node is found to need vector splitting.  At this point, the node
452 /// may also have invalid operands or may have other results that need
453 /// legalization, we just know that (at least) one result needs vector
454 /// splitting.
455 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) {
456   DEBUG(dbgs() << "Split node result: ";
457         N->dump(&DAG);
458         dbgs() << "\n");
459   SDValue Lo, Hi;
460
461   // See if the target wants to custom expand this node.
462   if (CustomLowerNode(N, N->getValueType(ResNo), true))
463     return;
464
465   switch (N->getOpcode()) {
466   default:
467 #ifndef NDEBUG
468     dbgs() << "SplitVectorResult #" << ResNo << ": ";
469     N->dump(&DAG);
470     dbgs() << "\n";
471 #endif
472     report_fatal_error("Do not know how to split the result of this "
473                        "operator!\n");
474
475   case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
476   case ISD::VSELECT:
477   case ISD::SELECT:       SplitRes_SELECT(N, Lo, Hi); break;
478   case ISD::SELECT_CC:    SplitRes_SELECT_CC(N, Lo, Hi); break;
479   case ISD::UNDEF:        SplitRes_UNDEF(N, Lo, Hi); break;
480   case ISD::BITCAST:           SplitVecRes_BITCAST(N, Lo, Hi); break;
481   case ISD::BUILD_VECTOR:      SplitVecRes_BUILD_VECTOR(N, Lo, Hi); break;
482   case ISD::CONCAT_VECTORS:    SplitVecRes_CONCAT_VECTORS(N, Lo, Hi); break;
483   case ISD::EXTRACT_SUBVECTOR: SplitVecRes_EXTRACT_SUBVECTOR(N, Lo, Hi); break;
484   case ISD::FP_ROUND_INREG:    SplitVecRes_InregOp(N, Lo, Hi); break;
485   case ISD::FPOWI:             SplitVecRes_FPOWI(N, Lo, Hi); break;
486   case ISD::INSERT_VECTOR_ELT: SplitVecRes_INSERT_VECTOR_ELT(N, Lo, Hi); break;
487   case ISD::SCALAR_TO_VECTOR:  SplitVecRes_SCALAR_TO_VECTOR(N, Lo, Hi); break;
488   case ISD::SIGN_EXTEND_INREG: SplitVecRes_InregOp(N, Lo, Hi); break;
489   case ISD::LOAD:
490     SplitVecRes_LOAD(cast<LoadSDNode>(N), Lo, Hi);
491     break;
492   case ISD::SETCC:
493     SplitVecRes_SETCC(N, Lo, Hi);
494     break;
495   case ISD::VECTOR_SHUFFLE:
496     SplitVecRes_VECTOR_SHUFFLE(cast<ShuffleVectorSDNode>(N), Lo, Hi);
497     break;
498
499   case ISD::ANY_EXTEND:
500   case ISD::CONVERT_RNDSAT:
501   case ISD::CTLZ:
502   case ISD::CTTZ:
503   case ISD::CTLZ_ZERO_UNDEF:
504   case ISD::CTTZ_ZERO_UNDEF:
505   case ISD::CTPOP:
506   case ISD::FABS:
507   case ISD::FCEIL:
508   case ISD::FCOS:
509   case ISD::FEXP:
510   case ISD::FEXP2:
511   case ISD::FFLOOR:
512   case ISD::FLOG:
513   case ISD::FLOG10:
514   case ISD::FLOG2:
515   case ISD::FNEARBYINT:
516   case ISD::FNEG:
517   case ISD::FP_EXTEND:
518   case ISD::FP_ROUND:
519   case ISD::FP_TO_SINT:
520   case ISD::FP_TO_UINT:
521   case ISD::FRINT:
522   case ISD::FSIN:
523   case ISD::FSQRT:
524   case ISD::FTRUNC:
525   case ISD::SIGN_EXTEND:
526   case ISD::SINT_TO_FP:
527   case ISD::TRUNCATE:
528   case ISD::UINT_TO_FP:
529   case ISD::ZERO_EXTEND:
530     SplitVecRes_UnaryOp(N, Lo, Hi);
531     break;
532
533   case ISD::ADD:
534   case ISD::SUB:
535   case ISD::MUL:
536   case ISD::FADD:
537   case ISD::FSUB:
538   case ISD::FMUL:
539   case ISD::SDIV:
540   case ISD::UDIV:
541   case ISD::FDIV:
542   case ISD::FPOW:
543   case ISD::AND:
544   case ISD::OR:
545   case ISD::XOR:
546   case ISD::SHL:
547   case ISD::SRA:
548   case ISD::SRL:
549   case ISD::UREM:
550   case ISD::SREM:
551   case ISD::FREM:
552     SplitVecRes_BinOp(N, Lo, Hi);
553     break;
554   case ISD::FMA:
555     SplitVecRes_TernaryOp(N, Lo, Hi);
556     break;
557   }
558
559   // If Lo/Hi is null, the sub-method took care of registering results etc.
560   if (Lo.getNode())
561     SetSplitVector(SDValue(N, ResNo), Lo, Hi);
562 }
563
564 void DAGTypeLegalizer::SplitVecRes_BinOp(SDNode *N, SDValue &Lo,
565                                          SDValue &Hi) {
566   SDValue LHSLo, LHSHi;
567   GetSplitVector(N->getOperand(0), LHSLo, LHSHi);
568   SDValue RHSLo, RHSHi;
569   GetSplitVector(N->getOperand(1), RHSLo, RHSHi);
570   DebugLoc dl = N->getDebugLoc();
571
572   Lo = DAG.getNode(N->getOpcode(), dl, LHSLo.getValueType(), LHSLo, RHSLo);
573   Hi = DAG.getNode(N->getOpcode(), dl, LHSHi.getValueType(), LHSHi, RHSHi);
574 }
575
576 void DAGTypeLegalizer::SplitVecRes_TernaryOp(SDNode *N, SDValue &Lo,
577                                              SDValue &Hi) {
578   SDValue Op0Lo, Op0Hi;
579   GetSplitVector(N->getOperand(0), Op0Lo, Op0Hi);
580   SDValue Op1Lo, Op1Hi;
581   GetSplitVector(N->getOperand(1), Op1Lo, Op1Hi);
582   SDValue Op2Lo, Op2Hi;
583   GetSplitVector(N->getOperand(2), Op2Lo, Op2Hi);
584   DebugLoc dl = N->getDebugLoc();
585
586   Lo = DAG.getNode(N->getOpcode(), dl, Op0Lo.getValueType(),
587                    Op0Lo, Op1Lo, Op2Lo);
588   Hi = DAG.getNode(N->getOpcode(), dl, Op0Hi.getValueType(),
589                    Op0Hi, Op1Hi, Op2Hi);
590 }
591
592 void DAGTypeLegalizer::SplitVecRes_BITCAST(SDNode *N, SDValue &Lo,
593                                            SDValue &Hi) {
594   // We know the result is a vector.  The input may be either a vector or a
595   // scalar value.
596   EVT LoVT, HiVT;
597   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
598   DebugLoc dl = N->getDebugLoc();
599
600   SDValue InOp = N->getOperand(0);
601   EVT InVT = InOp.getValueType();
602
603   // Handle some special cases efficiently.
604   switch (getTypeAction(InVT)) {
605   case TargetLowering::TypeLegal:
606   case TargetLowering::TypePromoteInteger:
607   case TargetLowering::TypeSoftenFloat:
608   case TargetLowering::TypeScalarizeVector:
609   case TargetLowering::TypeWidenVector:
610     break;
611   case TargetLowering::TypeExpandInteger:
612   case TargetLowering::TypeExpandFloat:
613     // A scalar to vector conversion, where the scalar needs expansion.
614     // If the vector is being split in two then we can just convert the
615     // expanded pieces.
616     if (LoVT == HiVT) {
617       GetExpandedOp(InOp, Lo, Hi);
618       if (TLI.isBigEndian())
619         std::swap(Lo, Hi);
620       Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
621       Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
622       return;
623     }
624     break;
625   case TargetLowering::TypeSplitVector:
626     // If the input is a vector that needs to be split, convert each split
627     // piece of the input now.
628     GetSplitVector(InOp, Lo, Hi);
629     Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
630     Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
631     return;
632   }
633
634   // In the general case, convert the input to an integer and split it by hand.
635   EVT LoIntVT = EVT::getIntegerVT(*DAG.getContext(), LoVT.getSizeInBits());
636   EVT HiIntVT = EVT::getIntegerVT(*DAG.getContext(), HiVT.getSizeInBits());
637   if (TLI.isBigEndian())
638     std::swap(LoIntVT, HiIntVT);
639
640   SplitInteger(BitConvertToInteger(InOp), LoIntVT, HiIntVT, Lo, Hi);
641
642   if (TLI.isBigEndian())
643     std::swap(Lo, Hi);
644   Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
645   Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
646 }
647
648 void DAGTypeLegalizer::SplitVecRes_BUILD_VECTOR(SDNode *N, SDValue &Lo,
649                                                 SDValue &Hi) {
650   EVT LoVT, HiVT;
651   DebugLoc dl = N->getDebugLoc();
652   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
653   unsigned LoNumElts = LoVT.getVectorNumElements();
654   SmallVector<SDValue, 8> LoOps(N->op_begin(), N->op_begin()+LoNumElts);
655   Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, LoVT, &LoOps[0], LoOps.size());
656
657   SmallVector<SDValue, 8> HiOps(N->op_begin()+LoNumElts, N->op_end());
658   Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, HiVT, &HiOps[0], HiOps.size());
659 }
660
661 void DAGTypeLegalizer::SplitVecRes_CONCAT_VECTORS(SDNode *N, SDValue &Lo,
662                                                   SDValue &Hi) {
663   assert(!(N->getNumOperands() & 1) && "Unsupported CONCAT_VECTORS");
664   DebugLoc dl = N->getDebugLoc();
665   unsigned NumSubvectors = N->getNumOperands() / 2;
666   if (NumSubvectors == 1) {
667     Lo = N->getOperand(0);
668     Hi = N->getOperand(1);
669     return;
670   }
671
672   EVT LoVT, HiVT;
673   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
674
675   SmallVector<SDValue, 8> LoOps(N->op_begin(), N->op_begin()+NumSubvectors);
676   Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, LoVT, &LoOps[0], LoOps.size());
677
678   SmallVector<SDValue, 8> HiOps(N->op_begin()+NumSubvectors, N->op_end());
679   Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HiVT, &HiOps[0], HiOps.size());
680 }
681
682 void DAGTypeLegalizer::SplitVecRes_EXTRACT_SUBVECTOR(SDNode *N, SDValue &Lo,
683                                                      SDValue &Hi) {
684   SDValue Vec = N->getOperand(0);
685   SDValue Idx = N->getOperand(1);
686   DebugLoc dl = N->getDebugLoc();
687
688   EVT LoVT, HiVT;
689   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
690
691   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, LoVT, Vec, Idx);
692   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
693   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, HiVT, Vec,
694                    DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
695 }
696
697 void DAGTypeLegalizer::SplitVecRes_FPOWI(SDNode *N, SDValue &Lo,
698                                          SDValue &Hi) {
699   DebugLoc dl = N->getDebugLoc();
700   GetSplitVector(N->getOperand(0), Lo, Hi);
701   Lo = DAG.getNode(ISD::FPOWI, dl, Lo.getValueType(), Lo, N->getOperand(1));
702   Hi = DAG.getNode(ISD::FPOWI, dl, Hi.getValueType(), Hi, N->getOperand(1));
703 }
704
705 void DAGTypeLegalizer::SplitVecRes_InregOp(SDNode *N, SDValue &Lo,
706                                            SDValue &Hi) {
707   SDValue LHSLo, LHSHi;
708   GetSplitVector(N->getOperand(0), LHSLo, LHSHi);
709   DebugLoc dl = N->getDebugLoc();
710
711   EVT LoVT, HiVT;
712   GetSplitDestVTs(cast<VTSDNode>(N->getOperand(1))->getVT(), LoVT, HiVT);
713
714   Lo = DAG.getNode(N->getOpcode(), dl, LHSLo.getValueType(), LHSLo,
715                    DAG.getValueType(LoVT));
716   Hi = DAG.getNode(N->getOpcode(), dl, LHSHi.getValueType(), LHSHi,
717                    DAG.getValueType(HiVT));
718 }
719
720 void DAGTypeLegalizer::SplitVecRes_INSERT_VECTOR_ELT(SDNode *N, SDValue &Lo,
721                                                      SDValue &Hi) {
722   SDValue Vec = N->getOperand(0);
723   SDValue Elt = N->getOperand(1);
724   SDValue Idx = N->getOperand(2);
725   DebugLoc dl = N->getDebugLoc();
726   GetSplitVector(Vec, Lo, Hi);
727
728   if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
729     unsigned IdxVal = CIdx->getZExtValue();
730     unsigned LoNumElts = Lo.getValueType().getVectorNumElements();
731     if (IdxVal < LoNumElts)
732       Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
733                        Lo.getValueType(), Lo, Elt, Idx);
734     else
735       Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, Hi.getValueType(), Hi, Elt,
736                        DAG.getIntPtrConstant(IdxVal - LoNumElts));
737     return;
738   }
739
740   // Spill the vector to the stack.
741   EVT VecVT = Vec.getValueType();
742   EVT EltVT = VecVT.getVectorElementType();
743   SDValue StackPtr = DAG.CreateStackTemporary(VecVT);
744   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
745                                MachinePointerInfo(), false, false, 0);
746
747   // Store the new element.  This may be larger than the vector element type,
748   // so use a truncating store.
749   SDValue EltPtr = GetVectorElementPointer(StackPtr, EltVT, Idx);
750   Type *VecType = VecVT.getTypeForEVT(*DAG.getContext());
751   unsigned Alignment =
752     TLI.getTargetData()->getPrefTypeAlignment(VecType);
753   Store = DAG.getTruncStore(Store, dl, Elt, EltPtr, MachinePointerInfo(), EltVT,
754                             false, false, 0);
755
756   // Load the Lo part from the stack slot.
757   Lo = DAG.getLoad(Lo.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
758                    false, false, false, 0);
759
760   // Increment the pointer to the other part.
761   unsigned IncrementSize = Lo.getValueType().getSizeInBits() / 8;
762   StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
763                          DAG.getIntPtrConstant(IncrementSize));
764
765   // Load the Hi part from the stack slot.
766   Hi = DAG.getLoad(Hi.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
767                    false, false, false, MinAlign(Alignment, IncrementSize));
768 }
769
770 void DAGTypeLegalizer::SplitVecRes_SCALAR_TO_VECTOR(SDNode *N, SDValue &Lo,
771                                                     SDValue &Hi) {
772   EVT LoVT, HiVT;
773   DebugLoc dl = N->getDebugLoc();
774   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
775   Lo = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoVT, N->getOperand(0));
776   Hi = DAG.getUNDEF(HiVT);
777 }
778
779 void DAGTypeLegalizer::SplitVecRes_LOAD(LoadSDNode *LD, SDValue &Lo,
780                                         SDValue &Hi) {
781   assert(ISD::isUNINDEXEDLoad(LD) && "Indexed load during type legalization!");
782   EVT LoVT, HiVT;
783   DebugLoc dl = LD->getDebugLoc();
784   GetSplitDestVTs(LD->getValueType(0), LoVT, HiVT);
785
786   ISD::LoadExtType ExtType = LD->getExtensionType();
787   SDValue Ch = LD->getChain();
788   SDValue Ptr = LD->getBasePtr();
789   SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
790   EVT MemoryVT = LD->getMemoryVT();
791   unsigned Alignment = LD->getOriginalAlignment();
792   bool isVolatile = LD->isVolatile();
793   bool isNonTemporal = LD->isNonTemporal();
794   bool isInvariant = LD->isInvariant();
795
796   EVT LoMemVT, HiMemVT;
797   GetSplitDestVTs(MemoryVT, LoMemVT, HiMemVT);
798
799   Lo = DAG.getLoad(ISD::UNINDEXED, ExtType, LoVT, dl, Ch, Ptr, Offset,
800                    LD->getPointerInfo(), LoMemVT, isVolatile, isNonTemporal,
801                    isInvariant, Alignment);
802
803   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
804   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
805                     DAG.getIntPtrConstant(IncrementSize));
806   Hi = DAG.getLoad(ISD::UNINDEXED, ExtType, HiVT, dl, Ch, Ptr, Offset,
807                    LD->getPointerInfo().getWithOffset(IncrementSize),
808                    HiMemVT, isVolatile, isNonTemporal, isInvariant, Alignment);
809
810   // Build a factor node to remember that this load is independent of the
811   // other one.
812   Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
813                    Hi.getValue(1));
814
815   // Legalized the chain result - switch anything that used the old chain to
816   // use the new one.
817   ReplaceValueWith(SDValue(LD, 1), Ch);
818 }
819
820 void DAGTypeLegalizer::SplitVecRes_SETCC(SDNode *N, SDValue &Lo, SDValue &Hi) {
821   assert(N->getValueType(0).isVector() &&
822          N->getOperand(0).getValueType().isVector() &&
823          "Operand types must be vectors");
824
825   EVT LoVT, HiVT;
826   DebugLoc DL = N->getDebugLoc();
827   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
828
829   // Split the input.
830   EVT InVT = N->getOperand(0).getValueType();
831   SDValue LL, LH, RL, RH;
832   EVT InNVT = EVT::getVectorVT(*DAG.getContext(), InVT.getVectorElementType(),
833                                LoVT.getVectorNumElements());
834   LL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(0),
835                    DAG.getIntPtrConstant(0));
836   LH = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(0),
837                    DAG.getIntPtrConstant(InNVT.getVectorNumElements()));
838
839   RL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(1),
840                    DAG.getIntPtrConstant(0));
841   RH = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(1),
842                    DAG.getIntPtrConstant(InNVT.getVectorNumElements()));
843
844   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
845   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
846 }
847
848 void DAGTypeLegalizer::SplitVecRes_UnaryOp(SDNode *N, SDValue &Lo,
849                                            SDValue &Hi) {
850   // Get the dest types - they may not match the input types, e.g. int_to_fp.
851   EVT LoVT, HiVT;
852   DebugLoc dl = N->getDebugLoc();
853   GetSplitDestVTs(N->getValueType(0), LoVT, HiVT);
854
855   // If the input also splits, handle it directly for a compile time speedup.
856   // Otherwise split it by hand.
857   EVT InVT = N->getOperand(0).getValueType();
858   if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) {
859     GetSplitVector(N->getOperand(0), Lo, Hi);
860   } else {
861     EVT InNVT = EVT::getVectorVT(*DAG.getContext(), InVT.getVectorElementType(),
862                                  LoVT.getVectorNumElements());
863     Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, InNVT, N->getOperand(0),
864                      DAG.getIntPtrConstant(0));
865     Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, InNVT, N->getOperand(0),
866                      DAG.getIntPtrConstant(InNVT.getVectorNumElements()));
867   }
868
869   if (N->getOpcode() == ISD::FP_ROUND) {
870     Lo = DAG.getNode(N->getOpcode(), dl, LoVT, Lo, N->getOperand(1));
871     Hi = DAG.getNode(N->getOpcode(), dl, HiVT, Hi, N->getOperand(1));
872   } else if (N->getOpcode() == ISD::CONVERT_RNDSAT) {
873     SDValue DTyOpLo = DAG.getValueType(LoVT);
874     SDValue DTyOpHi = DAG.getValueType(HiVT);
875     SDValue STyOpLo = DAG.getValueType(Lo.getValueType());
876     SDValue STyOpHi = DAG.getValueType(Hi.getValueType());
877     SDValue RndOp = N->getOperand(3);
878     SDValue SatOp = N->getOperand(4);
879     ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
880     Lo = DAG.getConvertRndSat(LoVT, dl, Lo, DTyOpLo, STyOpLo, RndOp, SatOp,
881                               CvtCode);
882     Hi = DAG.getConvertRndSat(HiVT, dl, Hi, DTyOpHi, STyOpHi, RndOp, SatOp,
883                               CvtCode);
884   } else {
885     Lo = DAG.getNode(N->getOpcode(), dl, LoVT, Lo);
886     Hi = DAG.getNode(N->getOpcode(), dl, HiVT, Hi);
887   }
888 }
889
890 void DAGTypeLegalizer::SplitVecRes_VECTOR_SHUFFLE(ShuffleVectorSDNode *N,
891                                                   SDValue &Lo, SDValue &Hi) {
892   // The low and high parts of the original input give four input vectors.
893   SDValue Inputs[4];
894   DebugLoc dl = N->getDebugLoc();
895   GetSplitVector(N->getOperand(0), Inputs[0], Inputs[1]);
896   GetSplitVector(N->getOperand(1), Inputs[2], Inputs[3]);
897   EVT NewVT = Inputs[0].getValueType();
898   unsigned NewElts = NewVT.getVectorNumElements();
899
900   // If Lo or Hi uses elements from at most two of the four input vectors, then
901   // express it as a vector shuffle of those two inputs.  Otherwise extract the
902   // input elements by hand and construct the Lo/Hi output using a BUILD_VECTOR.
903   SmallVector<int, 16> Ops;
904   for (unsigned High = 0; High < 2; ++High) {
905     SDValue &Output = High ? Hi : Lo;
906
907     // Build a shuffle mask for the output, discovering on the fly which
908     // input vectors to use as shuffle operands (recorded in InputUsed).
909     // If building a suitable shuffle vector proves too hard, then bail
910     // out with useBuildVector set.
911     unsigned InputUsed[2] = { -1U, -1U }; // Not yet discovered.
912     unsigned FirstMaskIdx = High * NewElts;
913     bool useBuildVector = false;
914     for (unsigned MaskOffset = 0; MaskOffset < NewElts; ++MaskOffset) {
915       // The mask element.  This indexes into the input.
916       int Idx = N->getMaskElt(FirstMaskIdx + MaskOffset);
917
918       // The input vector this mask element indexes into.
919       unsigned Input = (unsigned)Idx / NewElts;
920
921       if (Input >= array_lengthof(Inputs)) {
922         // The mask element does not index into any input vector.
923         Ops.push_back(-1);
924         continue;
925       }
926
927       // Turn the index into an offset from the start of the input vector.
928       Idx -= Input * NewElts;
929
930       // Find or create a shuffle vector operand to hold this input.
931       unsigned OpNo;
932       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
933         if (InputUsed[OpNo] == Input) {
934           // This input vector is already an operand.
935           break;
936         } else if (InputUsed[OpNo] == -1U) {
937           // Create a new operand for this input vector.
938           InputUsed[OpNo] = Input;
939           break;
940         }
941       }
942
943       if (OpNo >= array_lengthof(InputUsed)) {
944         // More than two input vectors used!  Give up on trying to create a
945         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
946         useBuildVector = true;
947         break;
948       }
949
950       // Add the mask index for the new shuffle vector.
951       Ops.push_back(Idx + OpNo * NewElts);
952     }
953
954     if (useBuildVector) {
955       EVT EltVT = NewVT.getVectorElementType();
956       SmallVector<SDValue, 16> SVOps;
957
958       // Extract the input elements by hand.
959       for (unsigned MaskOffset = 0; MaskOffset < NewElts; ++MaskOffset) {
960         // The mask element.  This indexes into the input.
961         int Idx = N->getMaskElt(FirstMaskIdx + MaskOffset);
962
963         // The input vector this mask element indexes into.
964         unsigned Input = (unsigned)Idx / NewElts;
965
966         if (Input >= array_lengthof(Inputs)) {
967           // The mask element is "undef" or indexes off the end of the input.
968           SVOps.push_back(DAG.getUNDEF(EltVT));
969           continue;
970         }
971
972         // Turn the index into an offset from the start of the input vector.
973         Idx -= Input * NewElts;
974
975         // Extract the vector element by hand.
976         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
977                                     Inputs[Input], DAG.getIntPtrConstant(Idx)));
978       }
979
980       // Construct the Lo/Hi output using a BUILD_VECTOR.
981       Output = DAG.getNode(ISD::BUILD_VECTOR,dl,NewVT, &SVOps[0], SVOps.size());
982     } else if (InputUsed[0] == -1U) {
983       // No input vectors were used!  The result is undefined.
984       Output = DAG.getUNDEF(NewVT);
985     } else {
986       SDValue Op0 = Inputs[InputUsed[0]];
987       // If only one input was used, use an undefined vector for the other.
988       SDValue Op1 = InputUsed[1] == -1U ?
989         DAG.getUNDEF(NewVT) : Inputs[InputUsed[1]];
990       // At least one input vector was used.  Create a new shuffle vector.
991       Output =  DAG.getVectorShuffle(NewVT, dl, Op0, Op1, &Ops[0]);
992     }
993
994     Ops.clear();
995   }
996 }
997
998
999 //===----------------------------------------------------------------------===//
1000 //  Operand Vector Splitting
1001 //===----------------------------------------------------------------------===//
1002
1003 /// SplitVectorOperand - This method is called when the specified operand of the
1004 /// specified node is found to need vector splitting.  At this point, all of the
1005 /// result types of the node are known to be legal, but other operands of the
1006 /// node may need legalization as well as the specified one.
1007 bool DAGTypeLegalizer::SplitVectorOperand(SDNode *N, unsigned OpNo) {
1008   DEBUG(dbgs() << "Split node operand: ";
1009         N->dump(&DAG);
1010         dbgs() << "\n");
1011   SDValue Res = SDValue();
1012
1013   if (Res.getNode() == 0) {
1014     switch (N->getOpcode()) {
1015     default:
1016 #ifndef NDEBUG
1017       dbgs() << "SplitVectorOperand Op #" << OpNo << ": ";
1018       N->dump(&DAG);
1019       dbgs() << "\n";
1020 #endif
1021       report_fatal_error("Do not know how to split this operator's "
1022                          "operand!\n");
1023
1024     case ISD::SETCC:             Res = SplitVecOp_VSETCC(N); break;
1025     case ISD::BITCAST:           Res = SplitVecOp_BITCAST(N); break;
1026     case ISD::EXTRACT_SUBVECTOR: Res = SplitVecOp_EXTRACT_SUBVECTOR(N); break;
1027     case ISD::EXTRACT_VECTOR_ELT:Res = SplitVecOp_EXTRACT_VECTOR_ELT(N); break;
1028     case ISD::CONCAT_VECTORS:    Res = SplitVecOp_CONCAT_VECTORS(N); break;
1029     case ISD::FP_ROUND:          Res = SplitVecOp_FP_ROUND(N); break;
1030     case ISD::STORE:
1031       Res = SplitVecOp_STORE(cast<StoreSDNode>(N), OpNo);
1032       break;
1033
1034     case ISD::CTTZ:
1035     case ISD::CTLZ:
1036     case ISD::CTPOP:
1037     case ISD::FP_EXTEND:
1038     case ISD::FP_TO_SINT:
1039     case ISD::FP_TO_UINT:
1040     case ISD::SINT_TO_FP:
1041     case ISD::UINT_TO_FP:
1042     case ISD::FTRUNC:
1043     case ISD::TRUNCATE:
1044     case ISD::SIGN_EXTEND:
1045     case ISD::ZERO_EXTEND:
1046     case ISD::ANY_EXTEND:
1047       Res = SplitVecOp_UnaryOp(N);
1048       break;
1049     }
1050   }
1051
1052   // If the result is null, the sub-method took care of registering results etc.
1053   if (!Res.getNode()) return false;
1054
1055   // If the result is N, the sub-method updated N in place.  Tell the legalizer
1056   // core about this.
1057   if (Res.getNode() == N)
1058     return true;
1059
1060   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
1061          "Invalid operand expansion");
1062
1063   ReplaceValueWith(SDValue(N, 0), Res);
1064   return false;
1065 }
1066
1067 SDValue DAGTypeLegalizer::SplitVecOp_UnaryOp(SDNode *N) {
1068   // The result has a legal vector type, but the input needs splitting.
1069   EVT ResVT = N->getValueType(0);
1070   SDValue Lo, Hi;
1071   DebugLoc dl = N->getDebugLoc();
1072   GetSplitVector(N->getOperand(0), Lo, Hi);
1073   EVT InVT = Lo.getValueType();
1074
1075   EVT OutVT = EVT::getVectorVT(*DAG.getContext(), ResVT.getVectorElementType(),
1076                                InVT.getVectorNumElements());
1077
1078   Lo = DAG.getNode(N->getOpcode(), dl, OutVT, Lo);
1079   Hi = DAG.getNode(N->getOpcode(), dl, OutVT, Hi);
1080
1081   return DAG.getNode(ISD::CONCAT_VECTORS, dl, ResVT, Lo, Hi);
1082 }
1083
1084 SDValue DAGTypeLegalizer::SplitVecOp_BITCAST(SDNode *N) {
1085   // For example, i64 = BITCAST v4i16 on alpha.  Typically the vector will
1086   // end up being split all the way down to individual components.  Convert the
1087   // split pieces into integers and reassemble.
1088   SDValue Lo, Hi;
1089   GetSplitVector(N->getOperand(0), Lo, Hi);
1090   Lo = BitConvertToInteger(Lo);
1091   Hi = BitConvertToInteger(Hi);
1092
1093   if (TLI.isBigEndian())
1094     std::swap(Lo, Hi);
1095
1096   return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), N->getValueType(0),
1097                      JoinIntegers(Lo, Hi));
1098 }
1099
1100 SDValue DAGTypeLegalizer::SplitVecOp_EXTRACT_SUBVECTOR(SDNode *N) {
1101   // We know that the extracted result type is legal.
1102   EVT SubVT = N->getValueType(0);
1103   SDValue Idx = N->getOperand(1);
1104   DebugLoc dl = N->getDebugLoc();
1105   SDValue Lo, Hi;
1106   GetSplitVector(N->getOperand(0), Lo, Hi);
1107
1108   uint64_t LoElts = Lo.getValueType().getVectorNumElements();
1109   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1110
1111   if (IdxVal < LoElts) {
1112     assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1113            "Extracted subvector crosses vector split!");
1114     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, Lo, Idx);
1115   } else {
1116     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, Hi,
1117                        DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1118   }
1119 }
1120
1121 SDValue DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
1122   SDValue Vec = N->getOperand(0);
1123   SDValue Idx = N->getOperand(1);
1124   EVT VecVT = Vec.getValueType();
1125
1126   if (isa<ConstantSDNode>(Idx)) {
1127     uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1128     assert(IdxVal < VecVT.getVectorNumElements() && "Invalid vector index!");
1129
1130     SDValue Lo, Hi;
1131     GetSplitVector(Vec, Lo, Hi);
1132
1133     uint64_t LoElts = Lo.getValueType().getVectorNumElements();
1134
1135     if (IdxVal < LoElts)
1136       return SDValue(DAG.UpdateNodeOperands(N, Lo, Idx), 0);
1137     return SDValue(DAG.UpdateNodeOperands(N, Hi,
1138                                   DAG.getConstant(IdxVal - LoElts,
1139                                                   Idx.getValueType())), 0);
1140   }
1141
1142   // Store the vector to the stack.
1143   EVT EltVT = VecVT.getVectorElementType();
1144   DebugLoc dl = N->getDebugLoc();
1145   SDValue StackPtr = DAG.CreateStackTemporary(VecVT);
1146   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1147                                MachinePointerInfo(), false, false, 0);
1148
1149   // Load back the required element.
1150   StackPtr = GetVectorElementPointer(StackPtr, EltVT, Idx);
1151   return DAG.getExtLoad(ISD::EXTLOAD, dl, N->getValueType(0), Store, StackPtr,
1152                         MachinePointerInfo(), EltVT, false, false, 0);
1153 }
1154
1155 SDValue DAGTypeLegalizer::SplitVecOp_STORE(StoreSDNode *N, unsigned OpNo) {
1156   assert(N->isUnindexed() && "Indexed store of vector?");
1157   assert(OpNo == 1 && "Can only split the stored value");
1158   DebugLoc DL = N->getDebugLoc();
1159
1160   bool isTruncating = N->isTruncatingStore();
1161   SDValue Ch  = N->getChain();
1162   SDValue Ptr = N->getBasePtr();
1163   EVT MemoryVT = N->getMemoryVT();
1164   unsigned Alignment = N->getOriginalAlignment();
1165   bool isVol = N->isVolatile();
1166   bool isNT = N->isNonTemporal();
1167   SDValue Lo, Hi;
1168   GetSplitVector(N->getOperand(1), Lo, Hi);
1169
1170   EVT LoMemVT, HiMemVT;
1171   GetSplitDestVTs(MemoryVT, LoMemVT, HiMemVT);
1172
1173   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
1174
1175   if (isTruncating)
1176     Lo = DAG.getTruncStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1177                            LoMemVT, isVol, isNT, Alignment);
1178   else
1179     Lo = DAG.getStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1180                       isVol, isNT, Alignment);
1181
1182   // Increment the pointer to the other half.
1183   Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
1184                     DAG.getIntPtrConstant(IncrementSize));
1185
1186   if (isTruncating)
1187     Hi = DAG.getTruncStore(Ch, DL, Hi, Ptr,
1188                            N->getPointerInfo().getWithOffset(IncrementSize),
1189                            HiMemVT, isVol, isNT, Alignment);
1190   else
1191     Hi = DAG.getStore(Ch, DL, Hi, Ptr,
1192                       N->getPointerInfo().getWithOffset(IncrementSize),
1193                       isVol, isNT, Alignment);
1194
1195   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi);
1196 }
1197
1198 SDValue DAGTypeLegalizer::SplitVecOp_CONCAT_VECTORS(SDNode *N) {
1199   DebugLoc DL = N->getDebugLoc();
1200
1201   // The input operands all must have the same type, and we know the result the
1202   // result type is valid.  Convert this to a buildvector which extracts all the
1203   // input elements.
1204   // TODO: If the input elements are power-two vectors, we could convert this to
1205   // a new CONCAT_VECTORS node with elements that are half-wide.
1206   SmallVector<SDValue, 32> Elts;
1207   EVT EltVT = N->getValueType(0).getVectorElementType();
1208   for (unsigned op = 0, e = N->getNumOperands(); op != e; ++op) {
1209     SDValue Op = N->getOperand(op);
1210     for (unsigned i = 0, e = Op.getValueType().getVectorNumElements();
1211          i != e; ++i) {
1212       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT,
1213                                  Op, DAG.getIntPtrConstant(i)));
1214
1215     }
1216   }
1217
1218   return DAG.getNode(ISD::BUILD_VECTOR, DL, N->getValueType(0),
1219                      &Elts[0], Elts.size());
1220 }
1221
1222 SDValue DAGTypeLegalizer::SplitVecOp_VSETCC(SDNode *N) {
1223   assert(N->getValueType(0).isVector() &&
1224          N->getOperand(0).getValueType().isVector() &&
1225          "Operand types must be vectors");
1226   // The result has a legal vector type, but the input needs splitting.
1227   SDValue Lo0, Hi0, Lo1, Hi1, LoRes, HiRes;
1228   DebugLoc DL = N->getDebugLoc();
1229   GetSplitVector(N->getOperand(0), Lo0, Hi0);
1230   GetSplitVector(N->getOperand(1), Lo1, Hi1);
1231   unsigned PartElements = Lo0.getValueType().getVectorNumElements();
1232   EVT PartResVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1, PartElements);
1233   EVT WideResVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1, 2*PartElements);
1234
1235   LoRes = DAG.getNode(ISD::SETCC, DL, PartResVT, Lo0, Lo1, N->getOperand(2));
1236   HiRes = DAG.getNode(ISD::SETCC, DL, PartResVT, Hi0, Hi1, N->getOperand(2));
1237   SDValue Con = DAG.getNode(ISD::CONCAT_VECTORS, DL, WideResVT, LoRes, HiRes);
1238   return PromoteTargetBoolean(Con, N->getValueType(0));
1239 }
1240
1241
1242 SDValue DAGTypeLegalizer::SplitVecOp_FP_ROUND(SDNode *N) {
1243   // The result has a legal vector type, but the input needs splitting.
1244   EVT ResVT = N->getValueType(0);
1245   SDValue Lo, Hi;
1246   DebugLoc DL = N->getDebugLoc();
1247   GetSplitVector(N->getOperand(0), Lo, Hi);
1248   EVT InVT = Lo.getValueType();
1249
1250   EVT OutVT = EVT::getVectorVT(*DAG.getContext(), ResVT.getVectorElementType(),
1251                                InVT.getVectorNumElements());
1252
1253   Lo = DAG.getNode(ISD::FP_ROUND, DL, OutVT, Lo, N->getOperand(1));
1254   Hi = DAG.getNode(ISD::FP_ROUND, DL, OutVT, Hi, N->getOperand(1));
1255
1256   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
1257 }
1258
1259
1260
1261 //===----------------------------------------------------------------------===//
1262 //  Result Vector Widening
1263 //===----------------------------------------------------------------------===//
1264
1265 void DAGTypeLegalizer::WidenVectorResult(SDNode *N, unsigned ResNo) {
1266   DEBUG(dbgs() << "Widen node result " << ResNo << ": ";
1267         N->dump(&DAG);
1268         dbgs() << "\n");
1269
1270   // See if the target wants to custom widen this node.
1271   if (CustomWidenLowerNode(N, N->getValueType(ResNo)))
1272     return;
1273
1274   SDValue Res = SDValue();
1275   switch (N->getOpcode()) {
1276   default:
1277 #ifndef NDEBUG
1278     dbgs() << "WidenVectorResult #" << ResNo << ": ";
1279     N->dump(&DAG);
1280     dbgs() << "\n";
1281 #endif
1282     llvm_unreachable("Do not know how to widen the result of this operator!");
1283
1284   case ISD::MERGE_VALUES:      Res = WidenVecRes_MERGE_VALUES(N, ResNo); break;
1285   case ISD::BITCAST:           Res = WidenVecRes_BITCAST(N); break;
1286   case ISD::BUILD_VECTOR:      Res = WidenVecRes_BUILD_VECTOR(N); break;
1287   case ISD::CONCAT_VECTORS:    Res = WidenVecRes_CONCAT_VECTORS(N); break;
1288   case ISD::CONVERT_RNDSAT:    Res = WidenVecRes_CONVERT_RNDSAT(N); break;
1289   case ISD::EXTRACT_SUBVECTOR: Res = WidenVecRes_EXTRACT_SUBVECTOR(N); break;
1290   case ISD::FP_ROUND_INREG:    Res = WidenVecRes_InregOp(N); break;
1291   case ISD::INSERT_VECTOR_ELT: Res = WidenVecRes_INSERT_VECTOR_ELT(N); break;
1292   case ISD::LOAD:              Res = WidenVecRes_LOAD(N); break;
1293   case ISD::SCALAR_TO_VECTOR:  Res = WidenVecRes_SCALAR_TO_VECTOR(N); break;
1294   case ISD::SIGN_EXTEND_INREG: Res = WidenVecRes_InregOp(N); break;
1295   case ISD::VSELECT:
1296   case ISD::SELECT:            Res = WidenVecRes_SELECT(N); break;
1297   case ISD::SELECT_CC:         Res = WidenVecRes_SELECT_CC(N); break;
1298   case ISD::SETCC:             Res = WidenVecRes_SETCC(N); break;
1299   case ISD::UNDEF:             Res = WidenVecRes_UNDEF(N); break;
1300   case ISD::VECTOR_SHUFFLE:
1301     Res = WidenVecRes_VECTOR_SHUFFLE(cast<ShuffleVectorSDNode>(N));
1302     break;
1303   case ISD::ADD:
1304   case ISD::AND:
1305   case ISD::BSWAP:
1306   case ISD::FADD:
1307   case ISD::FCOPYSIGN:
1308   case ISD::FDIV:
1309   case ISD::FMUL:
1310   case ISD::FPOW:
1311   case ISD::FREM:
1312   case ISD::FSUB:
1313   case ISD::MUL:
1314   case ISD::MULHS:
1315   case ISD::MULHU:
1316   case ISD::OR:
1317   case ISD::SDIV:
1318   case ISD::SREM:
1319   case ISD::UDIV:
1320   case ISD::UREM:
1321   case ISD::SUB:
1322   case ISD::XOR:
1323     Res = WidenVecRes_Binary(N);
1324     break;
1325
1326   case ISD::FPOWI:
1327     Res = WidenVecRes_POWI(N);
1328     break;
1329
1330   case ISD::SHL:
1331   case ISD::SRA:
1332   case ISD::SRL:
1333     Res = WidenVecRes_Shift(N);
1334     break;
1335
1336   case ISD::ANY_EXTEND:
1337   case ISD::FP_EXTEND:
1338   case ISD::FP_ROUND:
1339   case ISD::FP_TO_SINT:
1340   case ISD::FP_TO_UINT:
1341   case ISD::SIGN_EXTEND:
1342   case ISD::SINT_TO_FP:
1343   case ISD::TRUNCATE:
1344   case ISD::UINT_TO_FP:
1345   case ISD::ZERO_EXTEND:
1346     Res = WidenVecRes_Convert(N);
1347     break;
1348
1349   case ISD::CTLZ:
1350   case ISD::CTPOP:
1351   case ISD::CTTZ:
1352   case ISD::FABS:
1353   case ISD::FCEIL:
1354   case ISD::FCOS:
1355   case ISD::FEXP:
1356   case ISD::FEXP2:
1357   case ISD::FFLOOR:
1358   case ISD::FLOG:
1359   case ISD::FLOG10:
1360   case ISD::FLOG2:
1361   case ISD::FNEARBYINT:
1362   case ISD::FNEG:
1363   case ISD::FRINT:
1364   case ISD::FSIN:
1365   case ISD::FSQRT:
1366   case ISD::FTRUNC:
1367     Res = WidenVecRes_Unary(N);
1368     break;
1369   }
1370
1371   // If Res is null, the sub-method took care of registering the result.
1372   if (Res.getNode())
1373     SetWidenedVector(SDValue(N, ResNo), Res);
1374 }
1375
1376 SDValue DAGTypeLegalizer::WidenVecRes_Binary(SDNode *N) {
1377   // Binary op widening.
1378   unsigned Opcode = N->getOpcode();
1379   DebugLoc dl = N->getDebugLoc();
1380   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1381   EVT WidenEltVT = WidenVT.getVectorElementType();
1382   EVT VT = WidenVT;
1383   unsigned NumElts =  VT.getVectorNumElements();
1384   while (!TLI.isTypeLegal(VT) && NumElts != 1) {
1385     NumElts = NumElts / 2;
1386     VT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NumElts);
1387   }
1388
1389   if (NumElts != 1 && !TLI.canOpTrap(N->getOpcode(), VT)) {
1390     // Operation doesn't trap so just widen as normal.
1391     SDValue InOp1 = GetWidenedVector(N->getOperand(0));
1392     SDValue InOp2 = GetWidenedVector(N->getOperand(1));
1393     return DAG.getNode(N->getOpcode(), dl, WidenVT, InOp1, InOp2);
1394   }
1395
1396   // No legal vector version so unroll the vector operation and then widen.
1397   if (NumElts == 1)
1398     return DAG.UnrollVectorOp(N, WidenVT.getVectorNumElements());
1399
1400   // Since the operation can trap, apply operation on the original vector.
1401   EVT MaxVT = VT;
1402   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
1403   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
1404   unsigned CurNumElts = N->getValueType(0).getVectorNumElements();
1405
1406   SmallVector<SDValue, 16> ConcatOps(CurNumElts);
1407   unsigned ConcatEnd = 0;  // Current ConcatOps index.
1408   int Idx = 0;        // Current Idx into input vectors.
1409
1410   // NumElts := greatest legal vector size (at most WidenVT)
1411   // while (orig. vector has unhandled elements) {
1412   //   take munches of size NumElts from the beginning and add to ConcatOps
1413   //   NumElts := next smaller supported vector size or 1
1414   // }
1415   while (CurNumElts != 0) {
1416     while (CurNumElts >= NumElts) {
1417       SDValue EOp1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, InOp1,
1418                                  DAG.getIntPtrConstant(Idx));
1419       SDValue EOp2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, InOp2,
1420                                  DAG.getIntPtrConstant(Idx));
1421       ConcatOps[ConcatEnd++] = DAG.getNode(Opcode, dl, VT, EOp1, EOp2);
1422       Idx += NumElts;
1423       CurNumElts -= NumElts;
1424     }
1425     do {
1426       NumElts = NumElts / 2;
1427       VT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NumElts);
1428     } while (!TLI.isTypeLegal(VT) && NumElts != 1);
1429
1430     if (NumElts == 1) {
1431       for (unsigned i = 0; i != CurNumElts; ++i, ++Idx) {
1432         SDValue EOp1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, WidenEltVT,
1433                                    InOp1, DAG.getIntPtrConstant(Idx));
1434         SDValue EOp2 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, WidenEltVT,
1435                                    InOp2, DAG.getIntPtrConstant(Idx));
1436         ConcatOps[ConcatEnd++] = DAG.getNode(Opcode, dl, WidenEltVT,
1437                                              EOp1, EOp2);
1438       }
1439       CurNumElts = 0;
1440     }
1441   }
1442
1443   // Check to see if we have a single operation with the widen type.
1444   if (ConcatEnd == 1) {
1445     VT = ConcatOps[0].getValueType();
1446     if (VT == WidenVT)
1447       return ConcatOps[0];
1448   }
1449
1450   // while (Some element of ConcatOps is not of type MaxVT) {
1451   //   From the end of ConcatOps, collect elements of the same type and put
1452   //   them into an op of the next larger supported type
1453   // }
1454   while (ConcatOps[ConcatEnd-1].getValueType() != MaxVT) {
1455     Idx = ConcatEnd - 1;
1456     VT = ConcatOps[Idx--].getValueType();
1457     while (Idx >= 0 && ConcatOps[Idx].getValueType() == VT)
1458       Idx--;
1459
1460     int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1;
1461     EVT NextVT;
1462     do {
1463       NextSize *= 2;
1464       NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize);
1465     } while (!TLI.isTypeLegal(NextVT));
1466
1467     if (!VT.isVector()) {
1468       // Scalar type, create an INSERT_VECTOR_ELEMENT of type NextVT
1469       SDValue VecOp = DAG.getUNDEF(NextVT);
1470       unsigned NumToInsert = ConcatEnd - Idx - 1;
1471       for (unsigned i = 0, OpIdx = Idx+1; i < NumToInsert; i++, OpIdx++) {
1472         VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NextVT, VecOp,
1473                             ConcatOps[OpIdx], DAG.getIntPtrConstant(i));
1474       }
1475       ConcatOps[Idx+1] = VecOp;
1476       ConcatEnd = Idx + 2;
1477     } else {
1478       // Vector type, create a CONCAT_VECTORS of type NextVT
1479       SDValue undefVec = DAG.getUNDEF(VT);
1480       unsigned OpsToConcat = NextSize/VT.getVectorNumElements();
1481       SmallVector<SDValue, 16> SubConcatOps(OpsToConcat);
1482       unsigned RealVals = ConcatEnd - Idx - 1;
1483       unsigned SubConcatEnd = 0;
1484       unsigned SubConcatIdx = Idx + 1;
1485       while (SubConcatEnd < RealVals)
1486         SubConcatOps[SubConcatEnd++] = ConcatOps[++Idx];
1487       while (SubConcatEnd < OpsToConcat)
1488         SubConcatOps[SubConcatEnd++] = undefVec;
1489       ConcatOps[SubConcatIdx] = DAG.getNode(ISD::CONCAT_VECTORS, dl,
1490                                             NextVT, &SubConcatOps[0],
1491                                             OpsToConcat);
1492       ConcatEnd = SubConcatIdx + 1;
1493     }
1494   }
1495
1496   // Check to see if we have a single operation with the widen type.
1497   if (ConcatEnd == 1) {
1498     VT = ConcatOps[0].getValueType();
1499     if (VT == WidenVT)
1500       return ConcatOps[0];
1501   }
1502
1503   // add undefs of size MaxVT until ConcatOps grows to length of WidenVT
1504   unsigned NumOps = WidenVT.getVectorNumElements()/MaxVT.getVectorNumElements();
1505   if (NumOps != ConcatEnd ) {
1506     SDValue UndefVal = DAG.getUNDEF(MaxVT);
1507     for (unsigned j = ConcatEnd; j < NumOps; ++j)
1508       ConcatOps[j] = UndefVal;
1509   }
1510   return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, &ConcatOps[0], NumOps);
1511 }
1512
1513 SDValue DAGTypeLegalizer::WidenVecRes_Convert(SDNode *N) {
1514   SDValue InOp = N->getOperand(0);
1515   DebugLoc DL = N->getDebugLoc();
1516
1517   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1518   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1519
1520   EVT InVT = InOp.getValueType();
1521   EVT InEltVT = InVT.getVectorElementType();
1522   EVT InWidenVT = EVT::getVectorVT(*DAG.getContext(), InEltVT, WidenNumElts);
1523
1524   unsigned Opcode = N->getOpcode();
1525   unsigned InVTNumElts = InVT.getVectorNumElements();
1526
1527   if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) {
1528     InOp = GetWidenedVector(N->getOperand(0));
1529     InVT = InOp.getValueType();
1530     InVTNumElts = InVT.getVectorNumElements();
1531     if (InVTNumElts == WidenNumElts) {
1532       if (N->getNumOperands() == 1)
1533         return DAG.getNode(Opcode, DL, WidenVT, InOp);
1534       return DAG.getNode(Opcode, DL, WidenVT, InOp, N->getOperand(1));
1535     }
1536   }
1537
1538   if (TLI.isTypeLegal(InWidenVT)) {
1539     // Because the result and the input are different vector types, widening
1540     // the result could create a legal type but widening the input might make
1541     // it an illegal type that might lead to repeatedly splitting the input
1542     // and then widening it. To avoid this, we widen the input only if
1543     // it results in a legal type.
1544     if (WidenNumElts % InVTNumElts == 0) {
1545       // Widen the input and call convert on the widened input vector.
1546       unsigned NumConcat = WidenNumElts/InVTNumElts;
1547       SmallVector<SDValue, 16> Ops(NumConcat);
1548       Ops[0] = InOp;
1549       SDValue UndefVal = DAG.getUNDEF(InVT);
1550       for (unsigned i = 1; i != NumConcat; ++i)
1551         Ops[i] = UndefVal;
1552       SDValue InVec = DAG.getNode(ISD::CONCAT_VECTORS, DL, InWidenVT,
1553                                   &Ops[0], NumConcat);
1554       if (N->getNumOperands() == 1)
1555         return DAG.getNode(Opcode, DL, WidenVT, InVec);
1556       return DAG.getNode(Opcode, DL, WidenVT, InVec, N->getOperand(1));
1557     }
1558
1559     if (InVTNumElts % WidenNumElts == 0) {
1560       SDValue InVal = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InWidenVT,
1561                                   InOp, DAG.getIntPtrConstant(0));
1562       // Extract the input and convert the shorten input vector.
1563       if (N->getNumOperands() == 1)
1564         return DAG.getNode(Opcode, DL, WidenVT, InVal);
1565       return DAG.getNode(Opcode, DL, WidenVT, InVal, N->getOperand(1));
1566     }
1567   }
1568
1569   // Otherwise unroll into some nasty scalar code and rebuild the vector.
1570   SmallVector<SDValue, 16> Ops(WidenNumElts);
1571   EVT EltVT = WidenVT.getVectorElementType();
1572   unsigned MinElts = std::min(InVTNumElts, WidenNumElts);
1573   unsigned i;
1574   for (i=0; i < MinElts; ++i) {
1575     SDValue Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, InEltVT, InOp,
1576                               DAG.getIntPtrConstant(i));
1577     if (N->getNumOperands() == 1)
1578       Ops[i] = DAG.getNode(Opcode, DL, EltVT, Val);
1579     else
1580       Ops[i] = DAG.getNode(Opcode, DL, EltVT, Val, N->getOperand(1));
1581   }
1582
1583   SDValue UndefVal = DAG.getUNDEF(EltVT);
1584   for (; i < WidenNumElts; ++i)
1585     Ops[i] = UndefVal;
1586
1587   return DAG.getNode(ISD::BUILD_VECTOR, DL, WidenVT, &Ops[0], WidenNumElts);
1588 }
1589
1590 SDValue DAGTypeLegalizer::WidenVecRes_POWI(SDNode *N) {
1591   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1592   SDValue InOp = GetWidenedVector(N->getOperand(0));
1593   SDValue ShOp = N->getOperand(1);
1594   return DAG.getNode(N->getOpcode(), N->getDebugLoc(), WidenVT, InOp, ShOp);
1595 }
1596
1597 SDValue DAGTypeLegalizer::WidenVecRes_Shift(SDNode *N) {
1598   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1599   SDValue InOp = GetWidenedVector(N->getOperand(0));
1600   SDValue ShOp = N->getOperand(1);
1601
1602   EVT ShVT = ShOp.getValueType();
1603   if (getTypeAction(ShVT) == TargetLowering::TypeWidenVector) {
1604     ShOp = GetWidenedVector(ShOp);
1605     ShVT = ShOp.getValueType();
1606   }
1607   EVT ShWidenVT = EVT::getVectorVT(*DAG.getContext(),
1608                                    ShVT.getVectorElementType(),
1609                                    WidenVT.getVectorNumElements());
1610   if (ShVT != ShWidenVT)
1611     ShOp = ModifyToType(ShOp, ShWidenVT);
1612
1613   return DAG.getNode(N->getOpcode(), N->getDebugLoc(), WidenVT, InOp, ShOp);
1614 }
1615
1616 SDValue DAGTypeLegalizer::WidenVecRes_Unary(SDNode *N) {
1617   // Unary op widening.
1618   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1619   SDValue InOp = GetWidenedVector(N->getOperand(0));
1620   return DAG.getNode(N->getOpcode(), N->getDebugLoc(), WidenVT, InOp);
1621 }
1622
1623 SDValue DAGTypeLegalizer::WidenVecRes_InregOp(SDNode *N) {
1624   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1625   EVT ExtVT = EVT::getVectorVT(*DAG.getContext(),
1626                                cast<VTSDNode>(N->getOperand(1))->getVT()
1627                                  .getVectorElementType(),
1628                                WidenVT.getVectorNumElements());
1629   SDValue WidenLHS = GetWidenedVector(N->getOperand(0));
1630   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
1631                      WidenVT, WidenLHS, DAG.getValueType(ExtVT));
1632 }
1633
1634 SDValue DAGTypeLegalizer::WidenVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) {
1635   SDValue WidenVec = DisintegrateMERGE_VALUES(N, ResNo);
1636   return GetWidenedVector(WidenVec);
1637 }
1638
1639 SDValue DAGTypeLegalizer::WidenVecRes_BITCAST(SDNode *N) {
1640   SDValue InOp = N->getOperand(0);
1641   EVT InVT = InOp.getValueType();
1642   EVT VT = N->getValueType(0);
1643   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1644   DebugLoc dl = N->getDebugLoc();
1645
1646   switch (getTypeAction(InVT)) {
1647   case TargetLowering::TypeLegal:
1648     break;
1649   case TargetLowering::TypePromoteInteger:
1650     // If the incoming type is a vector that is being promoted, then
1651     // we know that the elements are arranged differently and that we
1652     // must perform the conversion using a stack slot.
1653     if (InVT.isVector())
1654       break;
1655
1656     // If the InOp is promoted to the same size, convert it.  Otherwise,
1657     // fall out of the switch and widen the promoted input.
1658     InOp = GetPromotedInteger(InOp);
1659     InVT = InOp.getValueType();
1660     if (WidenVT.bitsEq(InVT))
1661       return DAG.getNode(ISD::BITCAST, dl, WidenVT, InOp);
1662     break;
1663   case TargetLowering::TypeSoftenFloat:
1664   case TargetLowering::TypeExpandInteger:
1665   case TargetLowering::TypeExpandFloat:
1666   case TargetLowering::TypeScalarizeVector:
1667   case TargetLowering::TypeSplitVector:
1668     break;
1669   case TargetLowering::TypeWidenVector:
1670     // If the InOp is widened to the same size, convert it.  Otherwise, fall
1671     // out of the switch and widen the widened input.
1672     InOp = GetWidenedVector(InOp);
1673     InVT = InOp.getValueType();
1674     if (WidenVT.bitsEq(InVT))
1675       // The input widens to the same size. Convert to the widen value.
1676       return DAG.getNode(ISD::BITCAST, dl, WidenVT, InOp);
1677     break;
1678   }
1679
1680   unsigned WidenSize = WidenVT.getSizeInBits();
1681   unsigned InSize = InVT.getSizeInBits();
1682   // x86mmx is not an acceptable vector element type, so don't try.
1683   if (WidenSize % InSize == 0 && InVT != MVT::x86mmx) {
1684     // Determine new input vector type.  The new input vector type will use
1685     // the same element type (if its a vector) or use the input type as a
1686     // vector.  It is the same size as the type to widen to.
1687     EVT NewInVT;
1688     unsigned NewNumElts = WidenSize / InSize;
1689     if (InVT.isVector()) {
1690       EVT InEltVT = InVT.getVectorElementType();
1691       NewInVT = EVT::getVectorVT(*DAG.getContext(), InEltVT,
1692                                  WidenSize / InEltVT.getSizeInBits());
1693     } else {
1694       NewInVT = EVT::getVectorVT(*DAG.getContext(), InVT, NewNumElts);
1695     }
1696
1697     if (TLI.isTypeLegal(NewInVT)) {
1698       // Because the result and the input are different vector types, widening
1699       // the result could create a legal type but widening the input might make
1700       // it an illegal type that might lead to repeatedly splitting the input
1701       // and then widening it. To avoid this, we widen the input only if
1702       // it results in a legal type.
1703       SmallVector<SDValue, 16> Ops(NewNumElts);
1704       SDValue UndefVal = DAG.getUNDEF(InVT);
1705       Ops[0] = InOp;
1706       for (unsigned i = 1; i < NewNumElts; ++i)
1707         Ops[i] = UndefVal;
1708
1709       SDValue NewVec;
1710       if (InVT.isVector())
1711         NewVec = DAG.getNode(ISD::CONCAT_VECTORS, dl,
1712                              NewInVT, &Ops[0], NewNumElts);
1713       else
1714         NewVec = DAG.getNode(ISD::BUILD_VECTOR, dl,
1715                              NewInVT, &Ops[0], NewNumElts);
1716       return DAG.getNode(ISD::BITCAST, dl, WidenVT, NewVec);
1717     }
1718   }
1719
1720   return CreateStackStoreLoad(InOp, WidenVT);
1721 }
1722
1723 SDValue DAGTypeLegalizer::WidenVecRes_BUILD_VECTOR(SDNode *N) {
1724   DebugLoc dl = N->getDebugLoc();
1725   // Build a vector with undefined for the new nodes.
1726   EVT VT = N->getValueType(0);
1727   EVT EltVT = VT.getVectorElementType();
1728   unsigned NumElts = VT.getVectorNumElements();
1729
1730   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1731   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1732
1733   SmallVector<SDValue, 16> NewOps(N->op_begin(), N->op_end());
1734   NewOps.reserve(WidenNumElts);
1735   for (unsigned i = NumElts; i < WidenNumElts; ++i)
1736     NewOps.push_back(DAG.getUNDEF(EltVT));
1737
1738   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, &NewOps[0], NewOps.size());
1739 }
1740
1741 SDValue DAGTypeLegalizer::WidenVecRes_CONCAT_VECTORS(SDNode *N) {
1742   EVT InVT = N->getOperand(0).getValueType();
1743   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1744   DebugLoc dl = N->getDebugLoc();
1745   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1746   unsigned NumInElts = InVT.getVectorNumElements();
1747   unsigned NumOperands = N->getNumOperands();
1748
1749   bool InputWidened = false; // Indicates we need to widen the input.
1750   if (getTypeAction(InVT) != TargetLowering::TypeWidenVector) {
1751     if (WidenVT.getVectorNumElements() % InVT.getVectorNumElements() == 0) {
1752       // Add undef vectors to widen to correct length.
1753       unsigned NumConcat = WidenVT.getVectorNumElements() /
1754                            InVT.getVectorNumElements();
1755       SDValue UndefVal = DAG.getUNDEF(InVT);
1756       SmallVector<SDValue, 16> Ops(NumConcat);
1757       for (unsigned i=0; i < NumOperands; ++i)
1758         Ops[i] = N->getOperand(i);
1759       for (unsigned i = NumOperands; i != NumConcat; ++i)
1760         Ops[i] = UndefVal;
1761       return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, &Ops[0], NumConcat);
1762     }
1763   } else {
1764     InputWidened = true;
1765     if (WidenVT == TLI.getTypeToTransformTo(*DAG.getContext(), InVT)) {
1766       // The inputs and the result are widen to the same value.
1767       unsigned i;
1768       for (i=1; i < NumOperands; ++i)
1769         if (N->getOperand(i).getOpcode() != ISD::UNDEF)
1770           break;
1771
1772       if (i == NumOperands)
1773         // Everything but the first operand is an UNDEF so just return the
1774         // widened first operand.
1775         return GetWidenedVector(N->getOperand(0));
1776
1777       if (NumOperands == 2) {
1778         // Replace concat of two operands with a shuffle.
1779         SmallVector<int, 16> MaskOps(WidenNumElts, -1);
1780         for (unsigned i = 0; i < NumInElts; ++i) {
1781           MaskOps[i] = i;
1782           MaskOps[i + NumInElts] = i + WidenNumElts;
1783         }
1784         return DAG.getVectorShuffle(WidenVT, dl,
1785                                     GetWidenedVector(N->getOperand(0)),
1786                                     GetWidenedVector(N->getOperand(1)),
1787                                     &MaskOps[0]);
1788       }
1789     }
1790   }
1791
1792   // Fall back to use extracts and build vector.
1793   EVT EltVT = WidenVT.getVectorElementType();
1794   SmallVector<SDValue, 16> Ops(WidenNumElts);
1795   unsigned Idx = 0;
1796   for (unsigned i=0; i < NumOperands; ++i) {
1797     SDValue InOp = N->getOperand(i);
1798     if (InputWidened)
1799       InOp = GetWidenedVector(InOp);
1800     for (unsigned j=0; j < NumInElts; ++j)
1801       Ops[Idx++] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
1802                                DAG.getIntPtrConstant(j));
1803   }
1804   SDValue UndefVal = DAG.getUNDEF(EltVT);
1805   for (; Idx < WidenNumElts; ++Idx)
1806     Ops[Idx] = UndefVal;
1807   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, &Ops[0], WidenNumElts);
1808 }
1809
1810 SDValue DAGTypeLegalizer::WidenVecRes_CONVERT_RNDSAT(SDNode *N) {
1811   DebugLoc dl = N->getDebugLoc();
1812   SDValue InOp  = N->getOperand(0);
1813   SDValue RndOp = N->getOperand(3);
1814   SDValue SatOp = N->getOperand(4);
1815
1816   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1817   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1818
1819   EVT InVT = InOp.getValueType();
1820   EVT InEltVT = InVT.getVectorElementType();
1821   EVT InWidenVT = EVT::getVectorVT(*DAG.getContext(), InEltVT, WidenNumElts);
1822
1823   SDValue DTyOp = DAG.getValueType(WidenVT);
1824   SDValue STyOp = DAG.getValueType(InWidenVT);
1825   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
1826
1827   unsigned InVTNumElts = InVT.getVectorNumElements();
1828   if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) {
1829     InOp = GetWidenedVector(InOp);
1830     InVT = InOp.getValueType();
1831     InVTNumElts = InVT.getVectorNumElements();
1832     if (InVTNumElts == WidenNumElts)
1833       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
1834                                   SatOp, CvtCode);
1835   }
1836
1837   if (TLI.isTypeLegal(InWidenVT)) {
1838     // Because the result and the input are different vector types, widening
1839     // the result could create a legal type but widening the input might make
1840     // it an illegal type that might lead to repeatedly splitting the input
1841     // and then widening it. To avoid this, we widen the input only if
1842     // it results in a legal type.
1843     if (WidenNumElts % InVTNumElts == 0) {
1844       // Widen the input and call convert on the widened input vector.
1845       unsigned NumConcat = WidenNumElts/InVTNumElts;
1846       SmallVector<SDValue, 16> Ops(NumConcat);
1847       Ops[0] = InOp;
1848       SDValue UndefVal = DAG.getUNDEF(InVT);
1849       for (unsigned i = 1; i != NumConcat; ++i)
1850         Ops[i] = UndefVal;
1851
1852       InOp = DAG.getNode(ISD::CONCAT_VECTORS, dl, InWidenVT, &Ops[0],NumConcat);
1853       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
1854                                   SatOp, CvtCode);
1855     }
1856
1857     if (InVTNumElts % WidenNumElts == 0) {
1858       // Extract the input and convert the shorten input vector.
1859       InOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, InWidenVT, InOp,
1860                          DAG.getIntPtrConstant(0));
1861       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
1862                                   SatOp, CvtCode);
1863     }
1864   }
1865
1866   // Otherwise unroll into some nasty scalar code and rebuild the vector.
1867   SmallVector<SDValue, 16> Ops(WidenNumElts);
1868   EVT EltVT = WidenVT.getVectorElementType();
1869   DTyOp = DAG.getValueType(EltVT);
1870   STyOp = DAG.getValueType(InEltVT);
1871
1872   unsigned MinElts = std::min(InVTNumElts, WidenNumElts);
1873   unsigned i;
1874   for (i=0; i < MinElts; ++i) {
1875     SDValue ExtVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, InEltVT, InOp,
1876                                  DAG.getIntPtrConstant(i));
1877     Ops[i] = DAG.getConvertRndSat(WidenVT, dl, ExtVal, DTyOp, STyOp, RndOp,
1878                                   SatOp, CvtCode);
1879   }
1880
1881   SDValue UndefVal = DAG.getUNDEF(EltVT);
1882   for (; i < WidenNumElts; ++i)
1883     Ops[i] = UndefVal;
1884
1885   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, &Ops[0], WidenNumElts);
1886 }
1887
1888 SDValue DAGTypeLegalizer::WidenVecRes_EXTRACT_SUBVECTOR(SDNode *N) {
1889   EVT      VT = N->getValueType(0);
1890   EVT      WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1891   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1892   SDValue  InOp = N->getOperand(0);
1893   SDValue  Idx  = N->getOperand(1);
1894   DebugLoc dl = N->getDebugLoc();
1895
1896   if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
1897     InOp = GetWidenedVector(InOp);
1898
1899   EVT InVT = InOp.getValueType();
1900
1901   // Check if we can just return the input vector after widening.
1902   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1903   if (IdxVal == 0 && InVT == WidenVT)
1904     return InOp;
1905
1906   // Check if we can extract from the vector.
1907   unsigned InNumElts = InVT.getVectorNumElements();
1908   if (IdxVal % WidenNumElts == 0 && IdxVal + WidenNumElts < InNumElts)
1909     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, InOp, Idx);
1910
1911   // We could try widening the input to the right length but for now, extract
1912   // the original elements, fill the rest with undefs and build a vector.
1913   SmallVector<SDValue, 16> Ops(WidenNumElts);
1914   EVT EltVT = VT.getVectorElementType();
1915   unsigned NumElts = VT.getVectorNumElements();
1916   unsigned i;
1917   for (i=0; i < NumElts; ++i)
1918     Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
1919                          DAG.getIntPtrConstant(IdxVal+i));
1920
1921   SDValue UndefVal = DAG.getUNDEF(EltVT);
1922   for (; i < WidenNumElts; ++i)
1923     Ops[i] = UndefVal;
1924   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, &Ops[0], WidenNumElts);
1925 }
1926
1927 SDValue DAGTypeLegalizer::WidenVecRes_INSERT_VECTOR_ELT(SDNode *N) {
1928   SDValue InOp = GetWidenedVector(N->getOperand(0));
1929   return DAG.getNode(ISD::INSERT_VECTOR_ELT, N->getDebugLoc(),
1930                      InOp.getValueType(), InOp,
1931                      N->getOperand(1), N->getOperand(2));
1932 }
1933
1934 SDValue DAGTypeLegalizer::WidenVecRes_LOAD(SDNode *N) {
1935   LoadSDNode *LD = cast<LoadSDNode>(N);
1936   ISD::LoadExtType ExtType = LD->getExtensionType();
1937
1938   SDValue Result;
1939   SmallVector<SDValue, 16> LdChain;  // Chain for the series of load
1940   if (ExtType != ISD::NON_EXTLOAD)
1941     Result = GenWidenVectorExtLoads(LdChain, LD, ExtType);
1942   else
1943     Result = GenWidenVectorLoads(LdChain, LD);
1944
1945   // If we generate a single load, we can use that for the chain.  Otherwise,
1946   // build a factor node to remember the multiple loads are independent and
1947   // chain to that.
1948   SDValue NewChain;
1949   if (LdChain.size() == 1)
1950     NewChain = LdChain[0];
1951   else
1952     NewChain = DAG.getNode(ISD::TokenFactor, LD->getDebugLoc(), MVT::Other,
1953                            &LdChain[0], LdChain.size());
1954
1955   // Modified the chain - switch anything that used the old chain to use
1956   // the new one.
1957   ReplaceValueWith(SDValue(N, 1), NewChain);
1958
1959   return Result;
1960 }
1961
1962 SDValue DAGTypeLegalizer::WidenVecRes_SCALAR_TO_VECTOR(SDNode *N) {
1963   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1964   return DAG.getNode(ISD::SCALAR_TO_VECTOR, N->getDebugLoc(),
1965                      WidenVT, N->getOperand(0));
1966 }
1967
1968 SDValue DAGTypeLegalizer::WidenVecRes_SELECT(SDNode *N) {
1969   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1970   unsigned WidenNumElts = WidenVT.getVectorNumElements();
1971
1972   SDValue Cond1 = N->getOperand(0);
1973   EVT CondVT = Cond1.getValueType();
1974   if (CondVT.isVector()) {
1975     EVT CondEltVT = CondVT.getVectorElementType();
1976     EVT CondWidenVT =  EVT::getVectorVT(*DAG.getContext(),
1977                                         CondEltVT, WidenNumElts);
1978     if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector)
1979       Cond1 = GetWidenedVector(Cond1);
1980
1981     if (Cond1.getValueType() != CondWidenVT)
1982       Cond1 = ModifyToType(Cond1, CondWidenVT);
1983   }
1984
1985   SDValue InOp1 = GetWidenedVector(N->getOperand(1));
1986   SDValue InOp2 = GetWidenedVector(N->getOperand(2));
1987   assert(InOp1.getValueType() == WidenVT && InOp2.getValueType() == WidenVT);
1988   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
1989                      WidenVT, Cond1, InOp1, InOp2);
1990 }
1991
1992 SDValue DAGTypeLegalizer::WidenVecRes_SELECT_CC(SDNode *N) {
1993   SDValue InOp1 = GetWidenedVector(N->getOperand(2));
1994   SDValue InOp2 = GetWidenedVector(N->getOperand(3));
1995   return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(),
1996                      InOp1.getValueType(), N->getOperand(0),
1997                      N->getOperand(1), InOp1, InOp2, N->getOperand(4));
1998 }
1999
2000 SDValue DAGTypeLegalizer::WidenVecRes_SETCC(SDNode *N) {
2001   assert(N->getValueType(0).isVector() ==
2002          N->getOperand(0).getValueType().isVector() &&
2003          "Scalar/Vector type mismatch");
2004   if (N->getValueType(0).isVector()) return WidenVecRes_VSETCC(N);
2005
2006   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2007   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2008   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2009   return DAG.getNode(ISD::SETCC, N->getDebugLoc(), WidenVT,
2010                      InOp1, InOp2, N->getOperand(2));
2011 }
2012
2013 SDValue DAGTypeLegalizer::WidenVecRes_UNDEF(SDNode *N) {
2014  EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2015  return DAG.getUNDEF(WidenVT);
2016 }
2017
2018 SDValue DAGTypeLegalizer::WidenVecRes_VECTOR_SHUFFLE(ShuffleVectorSDNode *N) {
2019   EVT VT = N->getValueType(0);
2020   DebugLoc dl = N->getDebugLoc();
2021
2022   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2023   unsigned NumElts = VT.getVectorNumElements();
2024   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2025
2026   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2027   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2028
2029   // Adjust mask based on new input vector length.
2030   SmallVector<int, 16> NewMask;
2031   for (unsigned i = 0; i != NumElts; ++i) {
2032     int Idx = N->getMaskElt(i);
2033     if (Idx < (int)NumElts)
2034       NewMask.push_back(Idx);
2035     else
2036       NewMask.push_back(Idx - NumElts + WidenNumElts);
2037   }
2038   for (unsigned i = NumElts; i != WidenNumElts; ++i)
2039     NewMask.push_back(-1);
2040   return DAG.getVectorShuffle(WidenVT, dl, InOp1, InOp2, &NewMask[0]);
2041 }
2042
2043 SDValue DAGTypeLegalizer::WidenVecRes_VSETCC(SDNode *N) {
2044   assert(N->getValueType(0).isVector() &&
2045          N->getOperand(0).getValueType().isVector() &&
2046          "Operands must be vectors");
2047   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2048   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2049
2050   SDValue InOp1 = N->getOperand(0);
2051   EVT InVT = InOp1.getValueType();
2052   assert(InVT.isVector() && "can not widen non vector type");
2053   EVT WidenInVT = EVT::getVectorVT(*DAG.getContext(),
2054                                    InVT.getVectorElementType(), WidenNumElts);
2055   InOp1 = GetWidenedVector(InOp1);
2056   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2057
2058   // Assume that the input and output will be widen appropriately.  If not,
2059   // we will have to unroll it at some point.
2060   assert(InOp1.getValueType() == WidenInVT &&
2061          InOp2.getValueType() == WidenInVT &&
2062          "Input not widened to expected type!");
2063   (void)WidenInVT;
2064   return DAG.getNode(ISD::SETCC, N->getDebugLoc(),
2065                      WidenVT, InOp1, InOp2, N->getOperand(2));
2066 }
2067
2068
2069 //===----------------------------------------------------------------------===//
2070 // Widen Vector Operand
2071 //===----------------------------------------------------------------------===//
2072 bool DAGTypeLegalizer::WidenVectorOperand(SDNode *N, unsigned ResNo) {
2073   DEBUG(dbgs() << "Widen node operand " << ResNo << ": ";
2074         N->dump(&DAG);
2075         dbgs() << "\n");
2076   SDValue Res = SDValue();
2077
2078   switch (N->getOpcode()) {
2079   default:
2080 #ifndef NDEBUG
2081     dbgs() << "WidenVectorOperand op #" << ResNo << ": ";
2082     N->dump(&DAG);
2083     dbgs() << "\n";
2084 #endif
2085     llvm_unreachable("Do not know how to widen this operator's operand!");
2086
2087   case ISD::BITCAST:            Res = WidenVecOp_BITCAST(N); break;
2088   case ISD::CONCAT_VECTORS:     Res = WidenVecOp_CONCAT_VECTORS(N); break;
2089   case ISD::EXTRACT_SUBVECTOR:  Res = WidenVecOp_EXTRACT_SUBVECTOR(N); break;
2090   case ISD::EXTRACT_VECTOR_ELT: Res = WidenVecOp_EXTRACT_VECTOR_ELT(N); break;
2091   case ISD::STORE:              Res = WidenVecOp_STORE(N); break;
2092   case ISD::SETCC:              Res = WidenVecOp_SETCC(N); break;
2093
2094   case ISD::FP_EXTEND:
2095   case ISD::FP_TO_SINT:
2096   case ISD::FP_TO_UINT:
2097   case ISD::SINT_TO_FP:
2098   case ISD::UINT_TO_FP:
2099   case ISD::TRUNCATE:
2100   case ISD::SIGN_EXTEND:
2101   case ISD::ZERO_EXTEND:
2102   case ISD::ANY_EXTEND:
2103     Res = WidenVecOp_Convert(N);
2104     break;
2105   }
2106
2107   // If Res is null, the sub-method took care of registering the result.
2108   if (!Res.getNode()) return false;
2109
2110   // If the result is N, the sub-method updated N in place.  Tell the legalizer
2111   // core about this.
2112   if (Res.getNode() == N)
2113     return true;
2114
2115
2116   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
2117          "Invalid operand expansion");
2118
2119   ReplaceValueWith(SDValue(N, 0), Res);
2120   return false;
2121 }
2122
2123 SDValue DAGTypeLegalizer::WidenVecOp_Convert(SDNode *N) {
2124   // Since the result is legal and the input is illegal, it is unlikely
2125   // that we can fix the input to a legal type so unroll the convert
2126   // into some scalar code and create a nasty build vector.
2127   EVT VT = N->getValueType(0);
2128   EVT EltVT = VT.getVectorElementType();
2129   DebugLoc dl = N->getDebugLoc();
2130   unsigned NumElts = VT.getVectorNumElements();
2131   SDValue InOp = N->getOperand(0);
2132   if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
2133     InOp = GetWidenedVector(InOp);
2134   EVT InVT = InOp.getValueType();
2135   EVT InEltVT = InVT.getVectorElementType();
2136
2137   unsigned Opcode = N->getOpcode();
2138   SmallVector<SDValue, 16> Ops(NumElts);
2139   for (unsigned i=0; i < NumElts; ++i)
2140     Ops[i] = DAG.getNode(Opcode, dl, EltVT,
2141                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, InEltVT, InOp,
2142                                      DAG.getIntPtrConstant(i)));
2143
2144   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElts);
2145 }
2146
2147 SDValue DAGTypeLegalizer::WidenVecOp_BITCAST(SDNode *N) {
2148   EVT VT = N->getValueType(0);
2149   SDValue InOp = GetWidenedVector(N->getOperand(0));
2150   EVT InWidenVT = InOp.getValueType();
2151   DebugLoc dl = N->getDebugLoc();
2152
2153   // Check if we can convert between two legal vector types and extract.
2154   unsigned InWidenSize = InWidenVT.getSizeInBits();
2155   unsigned Size = VT.getSizeInBits();
2156   // x86mmx is not an acceptable vector element type, so don't try.
2157   if (InWidenSize % Size == 0 && !VT.isVector() && VT != MVT::x86mmx) {
2158     unsigned NewNumElts = InWidenSize / Size;
2159     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), VT, NewNumElts);
2160     if (TLI.isTypeLegal(NewVT)) {
2161       SDValue BitOp = DAG.getNode(ISD::BITCAST, dl, NewVT, InOp);
2162       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, BitOp,
2163                          DAG.getIntPtrConstant(0));
2164     }
2165   }
2166
2167   return CreateStackStoreLoad(InOp, VT);
2168 }
2169
2170 SDValue DAGTypeLegalizer::WidenVecOp_CONCAT_VECTORS(SDNode *N) {
2171   // If the input vector is not legal, it is likely that we will not find a
2172   // legal vector of the same size. Replace the concatenate vector with a
2173   // nasty build vector.
2174   EVT VT = N->getValueType(0);
2175   EVT EltVT = VT.getVectorElementType();
2176   DebugLoc dl = N->getDebugLoc();
2177   unsigned NumElts = VT.getVectorNumElements();
2178   SmallVector<SDValue, 16> Ops(NumElts);
2179
2180   EVT InVT = N->getOperand(0).getValueType();
2181   unsigned NumInElts = InVT.getVectorNumElements();
2182
2183   unsigned Idx = 0;
2184   unsigned NumOperands = N->getNumOperands();
2185   for (unsigned i=0; i < NumOperands; ++i) {
2186     SDValue InOp = N->getOperand(i);
2187     if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
2188       InOp = GetWidenedVector(InOp);
2189     for (unsigned j=0; j < NumInElts; ++j)
2190       Ops[Idx++] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
2191                                DAG.getIntPtrConstant(j));
2192   }
2193   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElts);
2194 }
2195
2196 SDValue DAGTypeLegalizer::WidenVecOp_EXTRACT_SUBVECTOR(SDNode *N) {
2197   SDValue InOp = GetWidenedVector(N->getOperand(0));
2198   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(),
2199                      N->getValueType(0), InOp, N->getOperand(1));
2200 }
2201
2202 SDValue DAGTypeLegalizer::WidenVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
2203   SDValue InOp = GetWidenedVector(N->getOperand(0));
2204   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(),
2205                      N->getValueType(0), InOp, N->getOperand(1));
2206 }
2207
2208 SDValue DAGTypeLegalizer::WidenVecOp_STORE(SDNode *N) {
2209   // We have to widen the value but we want only to store the original
2210   // vector type.
2211   StoreSDNode *ST = cast<StoreSDNode>(N);
2212
2213   SmallVector<SDValue, 16> StChain;
2214   if (ST->isTruncatingStore())
2215     GenWidenVectorTruncStores(StChain, ST);
2216   else
2217     GenWidenVectorStores(StChain, ST);
2218
2219   if (StChain.size() == 1)
2220     return StChain[0];
2221   else
2222     return DAG.getNode(ISD::TokenFactor, ST->getDebugLoc(),
2223                        MVT::Other,&StChain[0],StChain.size());
2224 }
2225
2226 SDValue DAGTypeLegalizer::WidenVecOp_SETCC(SDNode *N) {
2227   SDValue InOp0 = GetWidenedVector(N->getOperand(0));
2228   SDValue InOp1 = GetWidenedVector(N->getOperand(1));
2229   DebugLoc dl = N->getDebugLoc();
2230
2231   // WARNING: In this code we widen the compare instruction with garbage.
2232   // This garbage may contain denormal floats which may be slow. Is this a real
2233   // concern ? Should we zero the unused lanes if this is a float compare ?
2234
2235   // Get a new SETCC node to compare the newly widened operands.
2236   // Only some of the compared elements are legal.
2237   EVT SVT = TLI.getSetCCResultType(InOp0.getValueType());
2238   SDValue WideSETCC = DAG.getNode(ISD::SETCC, N->getDebugLoc(),
2239                      SVT, InOp0, InOp1, N->getOperand(2));
2240
2241   // Extract the needed results from the result vector.
2242   EVT ResVT = EVT::getVectorVT(*DAG.getContext(),
2243                                SVT.getVectorElementType(),
2244                                N->getValueType(0).getVectorNumElements());
2245   SDValue CC = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
2246                            ResVT, WideSETCC, DAG.getIntPtrConstant(0));
2247
2248   return PromoteTargetBoolean(CC, N->getValueType(0));
2249 }
2250
2251
2252 //===----------------------------------------------------------------------===//
2253 // Vector Widening Utilities
2254 //===----------------------------------------------------------------------===//
2255
2256 // Utility function to find the type to chop up a widen vector for load/store
2257 //  TLI:       Target lowering used to determine legal types.
2258 //  Width:     Width left need to load/store.
2259 //  WidenVT:   The widen vector type to load to/store from
2260 //  Align:     If 0, don't allow use of a wider type
2261 //  WidenEx:   If Align is not 0, the amount additional we can load/store from.
2262
2263 static EVT FindMemType(SelectionDAG& DAG, const TargetLowering &TLI,
2264                        unsigned Width, EVT WidenVT,
2265                        unsigned Align = 0, unsigned WidenEx = 0) {
2266   EVT WidenEltVT = WidenVT.getVectorElementType();
2267   unsigned WidenWidth = WidenVT.getSizeInBits();
2268   unsigned WidenEltWidth = WidenEltVT.getSizeInBits();
2269   unsigned AlignInBits = Align*8;
2270
2271   // If we have one element to load/store, return it.
2272   EVT RetVT = WidenEltVT;
2273   if (Width == WidenEltWidth)
2274     return RetVT;
2275
2276   // See if there is larger legal integer than the element type to load/store
2277   unsigned VT;
2278   for (VT = (unsigned)MVT::LAST_INTEGER_VALUETYPE;
2279        VT >= (unsigned)MVT::FIRST_INTEGER_VALUETYPE; --VT) {
2280     EVT MemVT((MVT::SimpleValueType) VT);
2281     unsigned MemVTWidth = MemVT.getSizeInBits();
2282     if (MemVT.getSizeInBits() <= WidenEltWidth)
2283       break;
2284     if (TLI.isTypeLegal(MemVT) && (WidenWidth % MemVTWidth) == 0 &&
2285         isPowerOf2_32(WidenWidth / MemVTWidth) &&
2286         (MemVTWidth <= Width ||
2287          (Align!=0 && MemVTWidth<=AlignInBits && MemVTWidth<=Width+WidenEx))) {
2288       RetVT = MemVT;
2289       break;
2290     }
2291   }
2292
2293   // See if there is a larger vector type to load/store that has the same vector
2294   // element type and is evenly divisible with the WidenVT.
2295   for (VT = (unsigned)MVT::LAST_VECTOR_VALUETYPE;
2296        VT >= (unsigned)MVT::FIRST_VECTOR_VALUETYPE; --VT) {
2297     EVT MemVT = (MVT::SimpleValueType) VT;
2298     unsigned MemVTWidth = MemVT.getSizeInBits();
2299     if (TLI.isTypeLegal(MemVT) && WidenEltVT == MemVT.getVectorElementType() &&
2300         (WidenWidth % MemVTWidth) == 0 &&
2301         isPowerOf2_32(WidenWidth / MemVTWidth) &&
2302         (MemVTWidth <= Width ||
2303          (Align!=0 && MemVTWidth<=AlignInBits && MemVTWidth<=Width+WidenEx))) {
2304       if (RetVT.getSizeInBits() < MemVTWidth || MemVT == WidenVT)
2305         return MemVT;
2306     }
2307   }
2308
2309   return RetVT;
2310 }
2311
2312 // Builds a vector type from scalar loads
2313 //  VecTy: Resulting Vector type
2314 //  LDOps: Load operators to build a vector type
2315 //  [Start,End) the list of loads to use.
2316 static SDValue BuildVectorFromScalar(SelectionDAG& DAG, EVT VecTy,
2317                                      SmallVector<SDValue, 16>& LdOps,
2318                                      unsigned Start, unsigned End) {
2319   DebugLoc dl = LdOps[Start].getDebugLoc();
2320   EVT LdTy = LdOps[Start].getValueType();
2321   unsigned Width = VecTy.getSizeInBits();
2322   unsigned NumElts = Width / LdTy.getSizeInBits();
2323   EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), LdTy, NumElts);
2324
2325   unsigned Idx = 1;
2326   SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NewVecVT,LdOps[Start]);
2327
2328   for (unsigned i = Start + 1; i != End; ++i) {
2329     EVT NewLdTy = LdOps[i].getValueType();
2330     if (NewLdTy != LdTy) {
2331       NumElts = Width / NewLdTy.getSizeInBits();
2332       NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewLdTy, NumElts);
2333       VecOp = DAG.getNode(ISD::BITCAST, dl, NewVecVT, VecOp);
2334       // Readjust position and vector position based on new load type
2335       Idx = Idx * LdTy.getSizeInBits() / NewLdTy.getSizeInBits();
2336       LdTy = NewLdTy;
2337     }
2338     VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVecVT, VecOp, LdOps[i],
2339                         DAG.getIntPtrConstant(Idx++));
2340   }
2341   return DAG.getNode(ISD::BITCAST, dl, VecTy, VecOp);
2342 }
2343
2344 SDValue DAGTypeLegalizer::GenWidenVectorLoads(SmallVector<SDValue, 16> &LdChain,
2345                                               LoadSDNode *LD) {
2346   // The strategy assumes that we can efficiently load powers of two widths.
2347   // The routines chops the vector into the largest vector loads with the same
2348   // element type or scalar loads and then recombines it to the widen vector
2349   // type.
2350   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(),LD->getValueType(0));
2351   unsigned WidenWidth = WidenVT.getSizeInBits();
2352   EVT LdVT    = LD->getMemoryVT();
2353   DebugLoc dl = LD->getDebugLoc();
2354   assert(LdVT.isVector() && WidenVT.isVector());
2355   assert(LdVT.getVectorElementType() == WidenVT.getVectorElementType());
2356
2357   // Load information
2358   SDValue   Chain = LD->getChain();
2359   SDValue   BasePtr = LD->getBasePtr();
2360   unsigned  Align    = LD->getAlignment();
2361   bool      isVolatile = LD->isVolatile();
2362   bool      isNonTemporal = LD->isNonTemporal();
2363   bool      isInvariant = LD->isInvariant();
2364
2365   int LdWidth = LdVT.getSizeInBits();
2366   int WidthDiff = WidenWidth - LdWidth;          // Difference
2367   unsigned LdAlign = (isVolatile) ? 0 : Align; // Allow wider loads
2368
2369   // Find the vector type that can load from.
2370   EVT NewVT = FindMemType(DAG, TLI, LdWidth, WidenVT, LdAlign, WidthDiff);
2371   int NewVTWidth = NewVT.getSizeInBits();
2372   SDValue LdOp = DAG.getLoad(NewVT, dl, Chain, BasePtr, LD->getPointerInfo(),
2373                              isVolatile, isNonTemporal, isInvariant, Align);
2374   LdChain.push_back(LdOp.getValue(1));
2375
2376   // Check if we can load the element with one instruction
2377   if (LdWidth <= NewVTWidth) {
2378     if (!NewVT.isVector()) {
2379       unsigned NumElts = WidenWidth / NewVTWidth;
2380       EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewVT, NumElts);
2381       SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NewVecVT, LdOp);
2382       return DAG.getNode(ISD::BITCAST, dl, WidenVT, VecOp);
2383     }
2384     if (NewVT == WidenVT)
2385       return LdOp;
2386
2387     assert(WidenWidth % NewVTWidth == 0);
2388     unsigned NumConcat = WidenWidth / NewVTWidth;
2389     SmallVector<SDValue, 16> ConcatOps(NumConcat);
2390     SDValue UndefVal = DAG.getUNDEF(NewVT);
2391     ConcatOps[0] = LdOp;
2392     for (unsigned i = 1; i != NumConcat; ++i)
2393       ConcatOps[i] = UndefVal;
2394     return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, &ConcatOps[0],
2395                        NumConcat);
2396   }
2397
2398   // Load vector by using multiple loads from largest vector to scalar
2399   SmallVector<SDValue, 16> LdOps;
2400   LdOps.push_back(LdOp);
2401
2402   LdWidth -= NewVTWidth;
2403   unsigned Offset = 0;
2404
2405   while (LdWidth > 0) {
2406     unsigned Increment = NewVTWidth / 8;
2407     Offset += Increment;
2408     BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
2409                           DAG.getIntPtrConstant(Increment));
2410
2411     SDValue L;
2412     if (LdWidth < NewVTWidth) {
2413       // Our current type we are using is too large, find a better size
2414       NewVT = FindMemType(DAG, TLI, LdWidth, WidenVT, LdAlign, WidthDiff);
2415       NewVTWidth = NewVT.getSizeInBits();
2416       L = DAG.getLoad(NewVT, dl, Chain, BasePtr,
2417                       LD->getPointerInfo().getWithOffset(Offset), isVolatile,
2418                       isNonTemporal, isInvariant, MinAlign(Align, Increment));
2419       LdChain.push_back(L.getValue(1));
2420       if (L->getValueType(0).isVector()) {
2421         SmallVector<SDValue, 16> Loads;
2422         Loads.push_back(L);
2423         unsigned size = L->getValueSizeInBits(0);
2424         while (size < LdOp->getValueSizeInBits(0)) {
2425           Loads.push_back(DAG.getUNDEF(L->getValueType(0)));
2426           size += L->getValueSizeInBits(0);
2427         }
2428         L = DAG.getNode(ISD::CONCAT_VECTORS, dl, LdOp->getValueType(0),
2429                         &Loads[0], Loads.size());
2430       }
2431     } else {
2432       L = DAG.getLoad(NewVT, dl, Chain, BasePtr,
2433                       LD->getPointerInfo().getWithOffset(Offset), isVolatile,
2434                       isNonTemporal, isInvariant, MinAlign(Align, Increment));
2435       LdChain.push_back(L.getValue(1));
2436     }
2437
2438     LdOps.push_back(L);
2439
2440
2441     LdWidth -= NewVTWidth;
2442   }
2443
2444   // Build the vector from the loads operations
2445   unsigned End = LdOps.size();
2446   if (!LdOps[0].getValueType().isVector())
2447     // All the loads are scalar loads.
2448     return BuildVectorFromScalar(DAG, WidenVT, LdOps, 0, End);
2449
2450   // If the load contains vectors, build the vector using concat vector.
2451   // All of the vectors used to loads are power of 2 and the scalars load
2452   // can be combined to make a power of 2 vector.
2453   SmallVector<SDValue, 16> ConcatOps(End);
2454   int i = End - 1;
2455   int Idx = End;
2456   EVT LdTy = LdOps[i].getValueType();
2457   // First combine the scalar loads to a vector
2458   if (!LdTy.isVector())  {
2459     for (--i; i >= 0; --i) {
2460       LdTy = LdOps[i].getValueType();
2461       if (LdTy.isVector())
2462         break;
2463     }
2464     ConcatOps[--Idx] = BuildVectorFromScalar(DAG, LdTy, LdOps, i+1, End);
2465   }
2466   ConcatOps[--Idx] = LdOps[i];
2467   for (--i; i >= 0; --i) {
2468     EVT NewLdTy = LdOps[i].getValueType();
2469     if (NewLdTy != LdTy) {
2470       // Create a larger vector
2471       ConcatOps[End-1] = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewLdTy,
2472                                      &ConcatOps[Idx], End - Idx);
2473       Idx = End - 1;
2474       LdTy = NewLdTy;
2475     }
2476     ConcatOps[--Idx] = LdOps[i];
2477   }
2478
2479   if (WidenWidth == LdTy.getSizeInBits()*(End - Idx))
2480     return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
2481                        &ConcatOps[Idx], End - Idx);
2482
2483   // We need to fill the rest with undefs to build the vector
2484   unsigned NumOps = WidenWidth / LdTy.getSizeInBits();
2485   SmallVector<SDValue, 16> WidenOps(NumOps);
2486   SDValue UndefVal = DAG.getUNDEF(LdTy);
2487   {
2488     unsigned i = 0;
2489     for (; i != End-Idx; ++i)
2490       WidenOps[i] = ConcatOps[Idx+i];
2491     for (; i != NumOps; ++i)
2492       WidenOps[i] = UndefVal;
2493   }
2494   return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, &WidenOps[0],NumOps);
2495 }
2496
2497 SDValue
2498 DAGTypeLegalizer::GenWidenVectorExtLoads(SmallVector<SDValue, 16>& LdChain,
2499                                          LoadSDNode * LD,
2500                                          ISD::LoadExtType ExtType) {
2501   // For extension loads, it may not be more efficient to chop up the vector
2502   // and then extended it.  Instead, we unroll the load and build a new vector.
2503   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(),LD->getValueType(0));
2504   EVT LdVT    = LD->getMemoryVT();
2505   DebugLoc dl = LD->getDebugLoc();
2506   assert(LdVT.isVector() && WidenVT.isVector());
2507
2508   // Load information
2509   SDValue   Chain = LD->getChain();
2510   SDValue   BasePtr = LD->getBasePtr();
2511   unsigned  Align    = LD->getAlignment();
2512   bool      isVolatile = LD->isVolatile();
2513   bool      isNonTemporal = LD->isNonTemporal();
2514
2515   EVT EltVT = WidenVT.getVectorElementType();
2516   EVT LdEltVT = LdVT.getVectorElementType();
2517   unsigned NumElts = LdVT.getVectorNumElements();
2518
2519   // Load each element and widen
2520   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2521   SmallVector<SDValue, 16> Ops(WidenNumElts);
2522   unsigned Increment = LdEltVT.getSizeInBits() / 8;
2523   Ops[0] = DAG.getExtLoad(ExtType, dl, EltVT, Chain, BasePtr,
2524                           LD->getPointerInfo(),
2525                           LdEltVT, isVolatile, isNonTemporal, Align);
2526   LdChain.push_back(Ops[0].getValue(1));
2527   unsigned i = 0, Offset = Increment;
2528   for (i=1; i < NumElts; ++i, Offset += Increment) {
2529     SDValue NewBasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(),
2530                                      BasePtr, DAG.getIntPtrConstant(Offset));
2531     Ops[i] = DAG.getExtLoad(ExtType, dl, EltVT, Chain, NewBasePtr,
2532                             LD->getPointerInfo().getWithOffset(Offset), LdEltVT,
2533                             isVolatile, isNonTemporal, Align);
2534     LdChain.push_back(Ops[i].getValue(1));
2535   }
2536
2537   // Fill the rest with undefs
2538   SDValue UndefVal = DAG.getUNDEF(EltVT);
2539   for (; i != WidenNumElts; ++i)
2540     Ops[i] = UndefVal;
2541
2542   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, &Ops[0], Ops.size());
2543 }
2544
2545
2546 void DAGTypeLegalizer::GenWidenVectorStores(SmallVector<SDValue, 16>& StChain,
2547                                             StoreSDNode *ST) {
2548   // The strategy assumes that we can efficiently store powers of two widths.
2549   // The routines chops the vector into the largest vector stores with the same
2550   // element type or scalar stores.
2551   SDValue  Chain = ST->getChain();
2552   SDValue  BasePtr = ST->getBasePtr();
2553   unsigned Align = ST->getAlignment();
2554   bool     isVolatile = ST->isVolatile();
2555   bool     isNonTemporal = ST->isNonTemporal();
2556   SDValue  ValOp = GetWidenedVector(ST->getValue());
2557   DebugLoc dl = ST->getDebugLoc();
2558
2559   EVT StVT = ST->getMemoryVT();
2560   unsigned StWidth = StVT.getSizeInBits();
2561   EVT ValVT = ValOp.getValueType();
2562   unsigned ValWidth = ValVT.getSizeInBits();
2563   EVT ValEltVT = ValVT.getVectorElementType();
2564   unsigned ValEltWidth = ValEltVT.getSizeInBits();
2565   assert(StVT.getVectorElementType() == ValEltVT);
2566
2567   int Idx = 0;          // current index to store
2568   unsigned Offset = 0;  // offset from base to store
2569   while (StWidth != 0) {
2570     // Find the largest vector type we can store with
2571     EVT NewVT = FindMemType(DAG, TLI, StWidth, ValVT);
2572     unsigned NewVTWidth = NewVT.getSizeInBits();
2573     unsigned Increment = NewVTWidth / 8;
2574     if (NewVT.isVector()) {
2575       unsigned NumVTElts = NewVT.getVectorNumElements();
2576       do {
2577         SDValue EOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT, ValOp,
2578                                    DAG.getIntPtrConstant(Idx));
2579         StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr,
2580                                     ST->getPointerInfo().getWithOffset(Offset),
2581                                        isVolatile, isNonTemporal,
2582                                        MinAlign(Align, Offset)));
2583         StWidth -= NewVTWidth;
2584         Offset += Increment;
2585         Idx += NumVTElts;
2586         BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
2587                               DAG.getIntPtrConstant(Increment));
2588       } while (StWidth != 0 && StWidth >= NewVTWidth);
2589     } else {
2590       // Cast the vector to the scalar type we can store
2591       unsigned NumElts = ValWidth / NewVTWidth;
2592       EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewVT, NumElts);
2593       SDValue VecOp = DAG.getNode(ISD::BITCAST, dl, NewVecVT, ValOp);
2594       // Readjust index position based on new vector type
2595       Idx = Idx * ValEltWidth / NewVTWidth;
2596       do {
2597         SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT, VecOp,
2598                       DAG.getIntPtrConstant(Idx++));
2599         StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr,
2600                                     ST->getPointerInfo().getWithOffset(Offset),
2601                                        isVolatile, isNonTemporal,
2602                                        MinAlign(Align, Offset)));
2603         StWidth -= NewVTWidth;
2604         Offset += Increment;
2605         BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
2606                               DAG.getIntPtrConstant(Increment));
2607       } while (StWidth != 0 && StWidth >= NewVTWidth);
2608       // Restore index back to be relative to the original widen element type
2609       Idx = Idx * NewVTWidth / ValEltWidth;
2610     }
2611   }
2612 }
2613
2614 void
2615 DAGTypeLegalizer::GenWidenVectorTruncStores(SmallVector<SDValue, 16>& StChain,
2616                                             StoreSDNode *ST) {
2617   // For extension loads, it may not be more efficient to truncate the vector
2618   // and then store it.  Instead, we extract each element and then store it.
2619   SDValue  Chain = ST->getChain();
2620   SDValue  BasePtr = ST->getBasePtr();
2621   unsigned Align = ST->getAlignment();
2622   bool     isVolatile = ST->isVolatile();
2623   bool     isNonTemporal = ST->isNonTemporal();
2624   SDValue  ValOp = GetWidenedVector(ST->getValue());
2625   DebugLoc dl = ST->getDebugLoc();
2626
2627   EVT StVT = ST->getMemoryVT();
2628   EVT ValVT = ValOp.getValueType();
2629
2630   // It must be true that we the widen vector type is bigger than where
2631   // we need to store.
2632   assert(StVT.isVector() && ValOp.getValueType().isVector());
2633   assert(StVT.bitsLT(ValOp.getValueType()));
2634
2635   // For truncating stores, we can not play the tricks of chopping legal
2636   // vector types and bit cast it to the right type.  Instead, we unroll
2637   // the store.
2638   EVT StEltVT  = StVT.getVectorElementType();
2639   EVT ValEltVT = ValVT.getVectorElementType();
2640   unsigned Increment = ValEltVT.getSizeInBits() / 8;
2641   unsigned NumElts = StVT.getVectorNumElements();
2642   SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ValEltVT, ValOp,
2643                             DAG.getIntPtrConstant(0));
2644   StChain.push_back(DAG.getTruncStore(Chain, dl, EOp, BasePtr,
2645                                       ST->getPointerInfo(), StEltVT,
2646                                       isVolatile, isNonTemporal, Align));
2647   unsigned Offset = Increment;
2648   for (unsigned i=1; i < NumElts; ++i, Offset += Increment) {
2649     SDValue NewBasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(),
2650                                      BasePtr, DAG.getIntPtrConstant(Offset));
2651     SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ValEltVT, ValOp,
2652                             DAG.getIntPtrConstant(0));
2653     StChain.push_back(DAG.getTruncStore(Chain, dl, EOp, NewBasePtr,
2654                                       ST->getPointerInfo().getWithOffset(Offset),
2655                                         StEltVT, isVolatile, isNonTemporal,
2656                                         MinAlign(Align, Offset)));
2657   }
2658 }
2659
2660 /// Modifies a vector input (widen or narrows) to a vector of NVT.  The
2661 /// input vector must have the same element type as NVT.
2662 SDValue DAGTypeLegalizer::ModifyToType(SDValue InOp, EVT NVT) {
2663   // Note that InOp might have been widened so it might already have
2664   // the right width or it might need be narrowed.
2665   EVT InVT = InOp.getValueType();
2666   assert(InVT.getVectorElementType() == NVT.getVectorElementType() &&
2667          "input and widen element type must match");
2668   DebugLoc dl = InOp.getDebugLoc();
2669
2670   // Check if InOp already has the right width.
2671   if (InVT == NVT)
2672     return InOp;
2673
2674   unsigned InNumElts = InVT.getVectorNumElements();
2675   unsigned WidenNumElts = NVT.getVectorNumElements();
2676   if (WidenNumElts > InNumElts && WidenNumElts % InNumElts == 0) {
2677     unsigned NumConcat = WidenNumElts / InNumElts;
2678     SmallVector<SDValue, 16> Ops(NumConcat);
2679     SDValue UndefVal = DAG.getUNDEF(InVT);
2680     Ops[0] = InOp;
2681     for (unsigned i = 1; i != NumConcat; ++i)
2682       Ops[i] = UndefVal;
2683
2684     return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, &Ops[0], NumConcat);
2685   }
2686
2687   if (WidenNumElts < InNumElts && InNumElts % WidenNumElts)
2688     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT, InOp,
2689                        DAG.getIntPtrConstant(0));
2690
2691   // Fall back to extract and build.
2692   SmallVector<SDValue, 16> Ops(WidenNumElts);
2693   EVT EltVT = NVT.getVectorElementType();
2694   unsigned MinNumElts = std::min(WidenNumElts, InNumElts);
2695   unsigned Idx;
2696   for (Idx = 0; Idx < MinNumElts; ++Idx)
2697     Ops[Idx] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
2698                            DAG.getIntPtrConstant(Idx));
2699
2700   SDValue UndefVal = DAG.getUNDEF(EltVT);
2701   for ( ; Idx < WidenNumElts; ++Idx)
2702     Ops[Idx] = UndefVal;
2703   return DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &Ops[0], WidenNumElts);
2704 }