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