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