Convert a bunch of loops to foreach. NFC.
[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/IR/DataLayout.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/raw_ostream.h"
27 using namespace llvm;
28
29 #define DEBUG_TYPE "legalize-types"
30
31 //===----------------------------------------------------------------------===//
32 //  Result Vector Scalarization: <1 x ty> -> ty.
33 //===----------------------------------------------------------------------===//
34
35 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
36   DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
37         N->dump(&DAG);
38         dbgs() << "\n");
39   SDValue R = SDValue();
40
41   switch (N->getOpcode()) {
42   default:
43 #ifndef NDEBUG
44     dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
45     N->dump(&DAG);
46     dbgs() << "\n";
47 #endif
48     report_fatal_error("Do not know how to scalarize the result of this "
49                        "operator!\n");
50
51   case ISD::MERGE_VALUES:      R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
52   case ISD::BITCAST:           R = ScalarizeVecRes_BITCAST(N); break;
53   case ISD::BUILD_VECTOR:      R = ScalarizeVecRes_BUILD_VECTOR(N); break;
54   case ISD::CONVERT_RNDSAT:    R = ScalarizeVecRes_CONVERT_RNDSAT(N); break;
55   case ISD::EXTRACT_SUBVECTOR: R = ScalarizeVecRes_EXTRACT_SUBVECTOR(N); break;
56   case ISD::FP_ROUND:          R = ScalarizeVecRes_FP_ROUND(N); break;
57   case ISD::FP_ROUND_INREG:    R = ScalarizeVecRes_InregOp(N); break;
58   case ISD::FPOWI:             R = ScalarizeVecRes_FPOWI(N); break;
59   case ISD::INSERT_VECTOR_ELT: R = ScalarizeVecRes_INSERT_VECTOR_ELT(N); break;
60   case ISD::LOAD:           R = ScalarizeVecRes_LOAD(cast<LoadSDNode>(N));break;
61   case ISD::SCALAR_TO_VECTOR:  R = ScalarizeVecRes_SCALAR_TO_VECTOR(N); break;
62   case ISD::SIGN_EXTEND_INREG: R = ScalarizeVecRes_InregOp(N); break;
63   case ISD::VSELECT:           R = ScalarizeVecRes_VSELECT(N); break;
64   case ISD::SELECT:            R = ScalarizeVecRes_SELECT(N); break;
65   case ISD::SELECT_CC:         R = ScalarizeVecRes_SELECT_CC(N); break;
66   case ISD::SETCC:             R = ScalarizeVecRes_SETCC(N); break;
67   case ISD::UNDEF:             R = ScalarizeVecRes_UNDEF(N); break;
68   case ISD::VECTOR_SHUFFLE:    R = ScalarizeVecRes_VECTOR_SHUFFLE(N); break;
69   case ISD::ANY_EXTEND:
70   case ISD::BSWAP:
71   case ISD::CTLZ:
72   case ISD::CTLZ_ZERO_UNDEF:
73   case ISD::CTPOP:
74   case ISD::CTTZ:
75   case ISD::CTTZ_ZERO_UNDEF:
76   case ISD::FABS:
77   case ISD::FCEIL:
78   case ISD::FCOS:
79   case ISD::FEXP:
80   case ISD::FEXP2:
81   case ISD::FFLOOR:
82   case ISD::FLOG:
83   case ISD::FLOG10:
84   case ISD::FLOG2:
85   case ISD::FNEARBYINT:
86   case ISD::FNEG:
87   case ISD::FP_EXTEND:
88   case ISD::FP_TO_SINT:
89   case ISD::FP_TO_UINT:
90   case ISD::FRINT:
91   case ISD::FROUND:
92   case ISD::FSIN:
93   case ISD::FSQRT:
94   case ISD::FTRUNC:
95   case ISD::SIGN_EXTEND:
96   case ISD::SINT_TO_FP:
97   case ISD::TRUNCATE:
98   case ISD::UINT_TO_FP:
99   case ISD::ZERO_EXTEND:
100     R = ScalarizeVecRes_UnaryOp(N);
101     break;
102
103   case ISD::ADD:
104   case ISD::AND:
105   case ISD::FADD:
106   case ISD::FCOPYSIGN:
107   case ISD::FDIV:
108   case ISD::FMUL:
109   case ISD::FMINNUM:
110   case ISD::FMAXNUM:
111
112   case ISD::FPOW:
113   case ISD::FREM:
114   case ISD::FSUB:
115   case ISD::MUL:
116   case ISD::OR:
117   case ISD::SDIV:
118   case ISD::SREM:
119   case ISD::SUB:
120   case ISD::UDIV:
121   case ISD::UREM:
122   case ISD::XOR:
123   case ISD::SHL:
124   case ISD::SRA:
125   case ISD::SRL:
126     R = ScalarizeVecRes_BinOp(N);
127     break;
128   case ISD::FMA:
129     R = ScalarizeVecRes_TernaryOp(N);
130     break;
131   }
132
133   // If R is null, the sub-method took care of registering the result.
134   if (R.getNode())
135     SetScalarizedVector(SDValue(N, ResNo), R);
136 }
137
138 SDValue DAGTypeLegalizer::ScalarizeVecRes_BinOp(SDNode *N) {
139   SDValue LHS = GetScalarizedVector(N->getOperand(0));
140   SDValue RHS = GetScalarizedVector(N->getOperand(1));
141   return DAG.getNode(N->getOpcode(), SDLoc(N),
142                      LHS.getValueType(), LHS, RHS);
143 }
144
145 SDValue DAGTypeLegalizer::ScalarizeVecRes_TernaryOp(SDNode *N) {
146   SDValue Op0 = GetScalarizedVector(N->getOperand(0));
147   SDValue Op1 = GetScalarizedVector(N->getOperand(1));
148   SDValue Op2 = GetScalarizedVector(N->getOperand(2));
149   return DAG.getNode(N->getOpcode(), SDLoc(N),
150                      Op0.getValueType(), Op0, Op1, Op2);
151 }
152
153 SDValue DAGTypeLegalizer::ScalarizeVecRes_MERGE_VALUES(SDNode *N,
154                                                        unsigned ResNo) {
155   SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
156   return GetScalarizedVector(Op);
157 }
158
159 SDValue DAGTypeLegalizer::ScalarizeVecRes_BITCAST(SDNode *N) {
160   EVT NewVT = N->getValueType(0).getVectorElementType();
161   return DAG.getNode(ISD::BITCAST, SDLoc(N),
162                      NewVT, N->getOperand(0));
163 }
164
165 SDValue DAGTypeLegalizer::ScalarizeVecRes_BUILD_VECTOR(SDNode *N) {
166   EVT EltVT = N->getValueType(0).getVectorElementType();
167   SDValue InOp = N->getOperand(0);
168   // The BUILD_VECTOR operands may be of wider element types and
169   // we may need to truncate them back to the requested return type.
170   if (EltVT.isInteger())
171     return DAG.getNode(ISD::TRUNCATE, SDLoc(N), EltVT, InOp);
172   return InOp;
173 }
174
175 SDValue DAGTypeLegalizer::ScalarizeVecRes_CONVERT_RNDSAT(SDNode *N) {
176   EVT NewVT = N->getValueType(0).getVectorElementType();
177   SDValue Op0 = GetScalarizedVector(N->getOperand(0));
178   return DAG.getConvertRndSat(NewVT, SDLoc(N),
179                               Op0, DAG.getValueType(NewVT),
180                               DAG.getValueType(Op0.getValueType()),
181                               N->getOperand(3),
182                               N->getOperand(4),
183                               cast<CvtRndSatSDNode>(N)->getCvtCode());
184 }
185
186 SDValue DAGTypeLegalizer::ScalarizeVecRes_EXTRACT_SUBVECTOR(SDNode *N) {
187   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N),
188                      N->getValueType(0).getVectorElementType(),
189                      N->getOperand(0), N->getOperand(1));
190 }
191
192 SDValue DAGTypeLegalizer::ScalarizeVecRes_FP_ROUND(SDNode *N) {
193   EVT NewVT = N->getValueType(0).getVectorElementType();
194   SDValue Op = GetScalarizedVector(N->getOperand(0));
195   return DAG.getNode(ISD::FP_ROUND, SDLoc(N),
196                      NewVT, Op, N->getOperand(1));
197 }
198
199 SDValue DAGTypeLegalizer::ScalarizeVecRes_FPOWI(SDNode *N) {
200   SDValue Op = GetScalarizedVector(N->getOperand(0));
201   return DAG.getNode(ISD::FPOWI, SDLoc(N),
202                      Op.getValueType(), Op, N->getOperand(1));
203 }
204
205 SDValue DAGTypeLegalizer::ScalarizeVecRes_INSERT_VECTOR_ELT(SDNode *N) {
206   // The value to insert may have a wider type than the vector element type,
207   // so be sure to truncate it to the element type if necessary.
208   SDValue Op = N->getOperand(1);
209   EVT EltVT = N->getValueType(0).getVectorElementType();
210   if (Op.getValueType() != EltVT)
211     // FIXME: Can this happen for floating point types?
212     Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), EltVT, Op);
213   return Op;
214 }
215
216 SDValue DAGTypeLegalizer::ScalarizeVecRes_LOAD(LoadSDNode *N) {
217   assert(N->isUnindexed() && "Indexed vector load?");
218
219   SDValue Result = DAG.getLoad(ISD::UNINDEXED,
220                                N->getExtensionType(),
221                                N->getValueType(0).getVectorElementType(),
222                                SDLoc(N),
223                                N->getChain(), N->getBasePtr(),
224                                DAG.getUNDEF(N->getBasePtr().getValueType()),
225                                N->getPointerInfo(),
226                                N->getMemoryVT().getVectorElementType(),
227                                N->isVolatile(), N->isNonTemporal(),
228                                N->isInvariant(), N->getOriginalAlignment(),
229                                N->getAAInfo());
230
231   // Legalized the chain result - switch anything that used the old chain to
232   // use the new one.
233   ReplaceValueWith(SDValue(N, 1), Result.getValue(1));
234   return Result;
235 }
236
237 SDValue DAGTypeLegalizer::ScalarizeVecRes_UnaryOp(SDNode *N) {
238   // Get the dest type - it doesn't always match the input type, e.g. int_to_fp.
239   EVT DestVT = N->getValueType(0).getVectorElementType();
240   SDValue Op = N->getOperand(0);
241   EVT OpVT = Op.getValueType();
242   SDLoc DL(N);
243   // The result needs scalarizing, but it's not a given that the source does.
244   // This is a workaround for targets where it's impossible to scalarize the
245   // result of a conversion, because the source type is legal.
246   // For instance, this happens on AArch64: v1i1 is illegal but v1i{8,16,32}
247   // are widened to v8i8, v4i16, and v2i32, which is legal, because v1i64 is
248   // legal and was not scalarized.
249   // See the similar logic in ScalarizeVecRes_VSETCC
250   if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) {
251     Op = GetScalarizedVector(Op);
252   } else {
253     EVT VT = OpVT.getVectorElementType();
254     Op = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, Op,
255                       DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
256   }
257   return DAG.getNode(N->getOpcode(), SDLoc(N), DestVT, Op);
258 }
259
260 SDValue DAGTypeLegalizer::ScalarizeVecRes_InregOp(SDNode *N) {
261   EVT EltVT = N->getValueType(0).getVectorElementType();
262   EVT ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT().getVectorElementType();
263   SDValue LHS = GetScalarizedVector(N->getOperand(0));
264   return DAG.getNode(N->getOpcode(), SDLoc(N), EltVT,
265                      LHS, DAG.getValueType(ExtVT));
266 }
267
268 SDValue DAGTypeLegalizer::ScalarizeVecRes_SCALAR_TO_VECTOR(SDNode *N) {
269   // If the operand is wider than the vector element type then it is implicitly
270   // truncated.  Make that explicit here.
271   EVT EltVT = N->getValueType(0).getVectorElementType();
272   SDValue InOp = N->getOperand(0);
273   if (InOp.getValueType() != EltVT)
274     return DAG.getNode(ISD::TRUNCATE, SDLoc(N), EltVT, InOp);
275   return InOp;
276 }
277
278 SDValue DAGTypeLegalizer::ScalarizeVecRes_VSELECT(SDNode *N) {
279   SDValue Cond = GetScalarizedVector(N->getOperand(0));
280   SDValue LHS = GetScalarizedVector(N->getOperand(1));
281   TargetLowering::BooleanContent ScalarBool =
282       TLI.getBooleanContents(false, false);
283   TargetLowering::BooleanContent VecBool = TLI.getBooleanContents(true, false);
284
285   // If integer and float booleans have different contents then we can't
286   // reliably optimize in all cases. There is a full explanation for this in
287   // DAGCombiner::visitSELECT() where the same issue affects folding
288   // (select C, 0, 1) to (xor C, 1).
289   if (TLI.getBooleanContents(false, false) !=
290       TLI.getBooleanContents(false, true)) {
291     // At least try the common case where the boolean is generated by a
292     // comparison.
293     if (Cond->getOpcode() == ISD::SETCC) {
294       EVT OpVT = Cond->getOperand(0)->getValueType(0);
295       ScalarBool = TLI.getBooleanContents(OpVT.getScalarType());
296       VecBool = TLI.getBooleanContents(OpVT);
297     } else
298       ScalarBool = TargetLowering::UndefinedBooleanContent;
299   }
300
301   if (ScalarBool != VecBool) {
302     EVT CondVT = Cond.getValueType();
303     switch (ScalarBool) {
304       case TargetLowering::UndefinedBooleanContent:
305         break;
306       case TargetLowering::ZeroOrOneBooleanContent:
307         assert(VecBool == TargetLowering::UndefinedBooleanContent ||
308                VecBool == TargetLowering::ZeroOrNegativeOneBooleanContent);
309         // Vector read from all ones, scalar expects a single 1 so mask.
310         Cond = DAG.getNode(ISD::AND, SDLoc(N), CondVT,
311                            Cond, DAG.getConstant(1, SDLoc(N), CondVT));
312         break;
313       case TargetLowering::ZeroOrNegativeOneBooleanContent:
314         assert(VecBool == TargetLowering::UndefinedBooleanContent ||
315                VecBool == TargetLowering::ZeroOrOneBooleanContent);
316         // Vector reads from a one, scalar from all ones so sign extend.
317         Cond = DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), CondVT,
318                            Cond, DAG.getValueType(MVT::i1));
319         break;
320     }
321   }
322
323   return DAG.getSelect(SDLoc(N),
324                        LHS.getValueType(), Cond, LHS,
325                        GetScalarizedVector(N->getOperand(2)));
326 }
327
328 SDValue DAGTypeLegalizer::ScalarizeVecRes_SELECT(SDNode *N) {
329   SDValue LHS = GetScalarizedVector(N->getOperand(1));
330   return DAG.getSelect(SDLoc(N),
331                        LHS.getValueType(), N->getOperand(0), LHS,
332                        GetScalarizedVector(N->getOperand(2)));
333 }
334
335 SDValue DAGTypeLegalizer::ScalarizeVecRes_SELECT_CC(SDNode *N) {
336   SDValue LHS = GetScalarizedVector(N->getOperand(2));
337   return DAG.getNode(ISD::SELECT_CC, SDLoc(N), LHS.getValueType(),
338                      N->getOperand(0), N->getOperand(1),
339                      LHS, GetScalarizedVector(N->getOperand(3)),
340                      N->getOperand(4));
341 }
342
343 SDValue DAGTypeLegalizer::ScalarizeVecRes_SETCC(SDNode *N) {
344   assert(N->getValueType(0).isVector() ==
345          N->getOperand(0).getValueType().isVector() &&
346          "Scalar/Vector type mismatch");
347
348   if (N->getValueType(0).isVector()) return ScalarizeVecRes_VSETCC(N);
349
350   SDValue LHS = GetScalarizedVector(N->getOperand(0));
351   SDValue RHS = GetScalarizedVector(N->getOperand(1));
352   SDLoc DL(N);
353
354   // Turn it into a scalar SETCC.
355   return DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, N->getOperand(2));
356 }
357
358 SDValue DAGTypeLegalizer::ScalarizeVecRes_UNDEF(SDNode *N) {
359   return DAG.getUNDEF(N->getValueType(0).getVectorElementType());
360 }
361
362 SDValue DAGTypeLegalizer::ScalarizeVecRes_VECTOR_SHUFFLE(SDNode *N) {
363   // Figure out if the scalar is the LHS or RHS and return it.
364   SDValue Arg = N->getOperand(2).getOperand(0);
365   if (Arg.getOpcode() == ISD::UNDEF)
366     return DAG.getUNDEF(N->getValueType(0).getVectorElementType());
367   unsigned Op = !cast<ConstantSDNode>(Arg)->isNullValue();
368   return GetScalarizedVector(N->getOperand(Op));
369 }
370
371 SDValue DAGTypeLegalizer::ScalarizeVecRes_VSETCC(SDNode *N) {
372   assert(N->getValueType(0).isVector() &&
373          N->getOperand(0).getValueType().isVector() &&
374          "Operand types must be vectors");
375   SDValue LHS = N->getOperand(0);
376   SDValue RHS = N->getOperand(1);
377   EVT OpVT = LHS.getValueType();
378   EVT NVT = N->getValueType(0).getVectorElementType();
379   SDLoc DL(N);
380
381   // The result needs scalarizing, but it's not a given that the source does.
382   if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) {
383     LHS = GetScalarizedVector(LHS);
384     RHS = GetScalarizedVector(RHS);
385   } else {
386     EVT VT = OpVT.getVectorElementType();
387     LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, LHS,
388                       DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
389     RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, RHS,
390                       DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
391   }
392
393   // Turn it into a scalar SETCC.
394   SDValue Res = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS,
395                             N->getOperand(2));
396   // Vectors may have a different boolean contents to scalars.  Promote the
397   // value appropriately.
398   ISD::NodeType ExtendCode =
399       TargetLowering::getExtendForContent(TLI.getBooleanContents(OpVT));
400   return DAG.getNode(ExtendCode, DL, NVT, Res);
401 }
402
403
404 //===----------------------------------------------------------------------===//
405 //  Operand Vector Scalarization <1 x ty> -> ty.
406 //===----------------------------------------------------------------------===//
407
408 bool DAGTypeLegalizer::ScalarizeVectorOperand(SDNode *N, unsigned OpNo) {
409   DEBUG(dbgs() << "Scalarize node operand " << OpNo << ": ";
410         N->dump(&DAG);
411         dbgs() << "\n");
412   SDValue Res = SDValue();
413
414   if (!Res.getNode()) {
415     switch (N->getOpcode()) {
416     default:
417 #ifndef NDEBUG
418       dbgs() << "ScalarizeVectorOperand Op #" << OpNo << ": ";
419       N->dump(&DAG);
420       dbgs() << "\n";
421 #endif
422       llvm_unreachable("Do not know how to scalarize this operator's operand!");
423     case ISD::BITCAST:
424       Res = ScalarizeVecOp_BITCAST(N);
425       break;
426     case ISD::ANY_EXTEND:
427     case ISD::ZERO_EXTEND:
428     case ISD::SIGN_EXTEND:
429     case ISD::TRUNCATE:
430     case ISD::FP_TO_SINT:
431     case ISD::FP_TO_UINT:
432     case ISD::SINT_TO_FP:
433     case ISD::UINT_TO_FP:
434       Res = ScalarizeVecOp_UnaryOp(N);
435       break;
436     case ISD::CONCAT_VECTORS:
437       Res = ScalarizeVecOp_CONCAT_VECTORS(N);
438       break;
439     case ISD::EXTRACT_VECTOR_ELT:
440       Res = ScalarizeVecOp_EXTRACT_VECTOR_ELT(N);
441       break;
442     case ISD::VSELECT:
443       Res = ScalarizeVecOp_VSELECT(N);
444       break;
445     case ISD::STORE:
446       Res = ScalarizeVecOp_STORE(cast<StoreSDNode>(N), OpNo);
447       break;
448     case ISD::FP_ROUND:
449       Res = ScalarizeVecOp_FP_ROUND(N, OpNo);
450       break;
451     }
452   }
453
454   // If the result is null, the sub-method took care of registering results etc.
455   if (!Res.getNode()) return false;
456
457   // If the result is N, the sub-method updated N in place.  Tell the legalizer
458   // core about this.
459   if (Res.getNode() == N)
460     return true;
461
462   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
463          "Invalid operand expansion");
464
465   ReplaceValueWith(SDValue(N, 0), Res);
466   return false;
467 }
468
469 /// ScalarizeVecOp_BITCAST - If the value to convert is a vector that needs
470 /// to be scalarized, it must be <1 x ty>.  Convert the element instead.
471 SDValue DAGTypeLegalizer::ScalarizeVecOp_BITCAST(SDNode *N) {
472   SDValue Elt = GetScalarizedVector(N->getOperand(0));
473   return DAG.getNode(ISD::BITCAST, SDLoc(N),
474                      N->getValueType(0), Elt);
475 }
476
477 /// ScalarizeVecOp_UnaryOp - If the input is a vector that needs to be
478 /// scalarized, it must be <1 x ty>.  Do the operation on the element instead.
479 SDValue DAGTypeLegalizer::ScalarizeVecOp_UnaryOp(SDNode *N) {
480   assert(N->getValueType(0).getVectorNumElements() == 1 &&
481          "Unexpected vector type!");
482   SDValue Elt = GetScalarizedVector(N->getOperand(0));
483   SDValue Op = DAG.getNode(N->getOpcode(), SDLoc(N),
484                            N->getValueType(0).getScalarType(), Elt);
485   // Revectorize the result so the types line up with what the uses of this
486   // expression expect.
487   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), N->getValueType(0), Op);
488 }
489
490 /// ScalarizeVecOp_CONCAT_VECTORS - The vectors to concatenate have length one -
491 /// use a BUILD_VECTOR instead.
492 SDValue DAGTypeLegalizer::ScalarizeVecOp_CONCAT_VECTORS(SDNode *N) {
493   SmallVector<SDValue, 8> Ops(N->getNumOperands());
494   for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
495     Ops[i] = GetScalarizedVector(N->getOperand(i));
496   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), N->getValueType(0), Ops);
497 }
498
499 /// ScalarizeVecOp_EXTRACT_VECTOR_ELT - If the input is a vector that needs to
500 /// be scalarized, it must be <1 x ty>, so just return the element, ignoring the
501 /// index.
502 SDValue DAGTypeLegalizer::ScalarizeVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
503   SDValue Res = GetScalarizedVector(N->getOperand(0));
504   if (Res.getValueType() != N->getValueType(0))
505     Res = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), N->getValueType(0),
506                       Res);
507   return Res;
508 }
509
510
511 /// ScalarizeVecOp_VSELECT - If the input condition is a vector that needs to be
512 /// scalarized, it must be <1 x i1>, so just convert to a normal ISD::SELECT
513 /// (still with vector output type since that was acceptable if we got here).
514 SDValue DAGTypeLegalizer::ScalarizeVecOp_VSELECT(SDNode *N) {
515   SDValue ScalarCond = GetScalarizedVector(N->getOperand(0));
516   EVT VT = N->getValueType(0);
517
518   return DAG.getNode(ISD::SELECT, SDLoc(N), VT, ScalarCond, N->getOperand(1),
519                      N->getOperand(2));
520 }
521
522 /// ScalarizeVecOp_STORE - If the value to store is a vector that needs to be
523 /// scalarized, it must be <1 x ty>.  Just store the element.
524 SDValue DAGTypeLegalizer::ScalarizeVecOp_STORE(StoreSDNode *N, unsigned OpNo){
525   assert(N->isUnindexed() && "Indexed store of one-element vector?");
526   assert(OpNo == 1 && "Do not know how to scalarize this operand!");
527   SDLoc dl(N);
528
529   if (N->isTruncatingStore())
530     return DAG.getTruncStore(N->getChain(), dl,
531                              GetScalarizedVector(N->getOperand(1)),
532                              N->getBasePtr(), N->getPointerInfo(),
533                              N->getMemoryVT().getVectorElementType(),
534                              N->isVolatile(), N->isNonTemporal(),
535                              N->getAlignment(), N->getAAInfo());
536
537   return DAG.getStore(N->getChain(), dl, GetScalarizedVector(N->getOperand(1)),
538                       N->getBasePtr(), N->getPointerInfo(),
539                       N->isVolatile(), N->isNonTemporal(),
540                       N->getOriginalAlignment(), N->getAAInfo());
541 }
542
543 /// ScalarizeVecOp_FP_ROUND - If the value to round is a vector that needs
544 /// to be scalarized, it must be <1 x ty>.  Convert the element instead.
545 SDValue DAGTypeLegalizer::ScalarizeVecOp_FP_ROUND(SDNode *N, unsigned OpNo) {
546   SDValue Elt = GetScalarizedVector(N->getOperand(0));
547   SDValue Res = DAG.getNode(ISD::FP_ROUND, SDLoc(N),
548                             N->getValueType(0).getVectorElementType(), Elt,
549                             N->getOperand(1));
550   return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(N), N->getValueType(0), Res);
551 }
552
553 //===----------------------------------------------------------------------===//
554 //  Result Vector Splitting
555 //===----------------------------------------------------------------------===//
556
557 /// SplitVectorResult - This method is called when the specified result of the
558 /// specified node is found to need vector splitting.  At this point, the node
559 /// may also have invalid operands or may have other results that need
560 /// legalization, we just know that (at least) one result needs vector
561 /// splitting.
562 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) {
563   DEBUG(dbgs() << "Split node result: ";
564         N->dump(&DAG);
565         dbgs() << "\n");
566   SDValue Lo, Hi;
567
568   // See if the target wants to custom expand this node.
569   if (CustomLowerNode(N, N->getValueType(ResNo), true))
570     return;
571
572   switch (N->getOpcode()) {
573   default:
574 #ifndef NDEBUG
575     dbgs() << "SplitVectorResult #" << ResNo << ": ";
576     N->dump(&DAG);
577     dbgs() << "\n";
578 #endif
579     report_fatal_error("Do not know how to split the result of this "
580                        "operator!\n");
581
582   case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
583   case ISD::VSELECT:
584   case ISD::SELECT:       SplitRes_SELECT(N, Lo, Hi); break;
585   case ISD::SELECT_CC:    SplitRes_SELECT_CC(N, Lo, Hi); break;
586   case ISD::UNDEF:        SplitRes_UNDEF(N, Lo, Hi); break;
587   case ISD::BITCAST:           SplitVecRes_BITCAST(N, Lo, Hi); break;
588   case ISD::BUILD_VECTOR:      SplitVecRes_BUILD_VECTOR(N, Lo, Hi); break;
589   case ISD::CONCAT_VECTORS:    SplitVecRes_CONCAT_VECTORS(N, Lo, Hi); break;
590   case ISD::EXTRACT_SUBVECTOR: SplitVecRes_EXTRACT_SUBVECTOR(N, Lo, Hi); break;
591   case ISD::INSERT_SUBVECTOR:  SplitVecRes_INSERT_SUBVECTOR(N, Lo, Hi); break;
592   case ISD::FP_ROUND_INREG:    SplitVecRes_InregOp(N, Lo, Hi); break;
593   case ISD::FPOWI:             SplitVecRes_FPOWI(N, Lo, Hi); break;
594   case ISD::INSERT_VECTOR_ELT: SplitVecRes_INSERT_VECTOR_ELT(N, Lo, Hi); break;
595   case ISD::SCALAR_TO_VECTOR:  SplitVecRes_SCALAR_TO_VECTOR(N, Lo, Hi); break;
596   case ISD::SIGN_EXTEND_INREG: SplitVecRes_InregOp(N, Lo, Hi); break;
597   case ISD::LOAD:
598     SplitVecRes_LOAD(cast<LoadSDNode>(N), Lo, Hi);
599     break;
600   case ISD::MLOAD:
601     SplitVecRes_MLOAD(cast<MaskedLoadSDNode>(N), Lo, Hi);
602     break;
603   case ISD::MGATHER:
604     SplitVecRes_MGATHER(cast<MaskedGatherSDNode>(N), Lo, Hi);
605     break;
606   case ISD::SETCC:
607     SplitVecRes_SETCC(N, Lo, Hi);
608     break;
609   case ISD::VECTOR_SHUFFLE:
610     SplitVecRes_VECTOR_SHUFFLE(cast<ShuffleVectorSDNode>(N), Lo, Hi);
611     break;
612
613   case ISD::BSWAP:
614   case ISD::CONVERT_RNDSAT:
615   case ISD::CTLZ:
616   case ISD::CTTZ:
617   case ISD::CTLZ_ZERO_UNDEF:
618   case ISD::CTTZ_ZERO_UNDEF:
619   case ISD::CTPOP:
620   case ISD::FABS:
621   case ISD::FCEIL:
622   case ISD::FCOS:
623   case ISD::FEXP:
624   case ISD::FEXP2:
625   case ISD::FFLOOR:
626   case ISD::FLOG:
627   case ISD::FLOG10:
628   case ISD::FLOG2:
629   case ISD::FNEARBYINT:
630   case ISD::FNEG:
631   case ISD::FP_EXTEND:
632   case ISD::FP_ROUND:
633   case ISD::FP_TO_SINT:
634   case ISD::FP_TO_UINT:
635   case ISD::FRINT:
636   case ISD::FROUND:
637   case ISD::FSIN:
638   case ISD::FSQRT:
639   case ISD::FTRUNC:
640   case ISD::SINT_TO_FP:
641   case ISD::TRUNCATE:
642   case ISD::UINT_TO_FP:
643     SplitVecRes_UnaryOp(N, Lo, Hi);
644     break;
645
646   case ISD::ANY_EXTEND:
647   case ISD::SIGN_EXTEND:
648   case ISD::ZERO_EXTEND:
649     SplitVecRes_ExtendOp(N, Lo, Hi);
650     break;
651
652   case ISD::ADD:
653   case ISD::SUB:
654   case ISD::MUL:
655   case ISD::FADD:
656   case ISD::FCOPYSIGN:
657   case ISD::FSUB:
658   case ISD::FMUL:
659   case ISD::FMINNUM:
660   case ISD::FMAXNUM:
661   case ISD::SDIV:
662   case ISD::UDIV:
663   case ISD::FDIV:
664   case ISD::FPOW:
665   case ISD::AND:
666   case ISD::OR:
667   case ISD::XOR:
668   case ISD::SHL:
669   case ISD::SRA:
670   case ISD::SRL:
671   case ISD::UREM:
672   case ISD::SREM:
673   case ISD::FREM:
674   case ISD::SMIN:
675   case ISD::SMAX:
676   case ISD::UMIN:
677   case ISD::UMAX:
678     SplitVecRes_BinOp(N, Lo, Hi);
679     break;
680   case ISD::FMA:
681     SplitVecRes_TernaryOp(N, Lo, Hi);
682     break;
683   }
684
685   // If Lo/Hi is null, the sub-method took care of registering results etc.
686   if (Lo.getNode())
687     SetSplitVector(SDValue(N, ResNo), Lo, Hi);
688 }
689
690 void DAGTypeLegalizer::SplitVecRes_BinOp(SDNode *N, SDValue &Lo,
691                                          SDValue &Hi) {
692   SDValue LHSLo, LHSHi;
693   GetSplitVector(N->getOperand(0), LHSLo, LHSHi);
694   SDValue RHSLo, RHSHi;
695   GetSplitVector(N->getOperand(1), RHSLo, RHSHi);
696   SDLoc dl(N);
697
698   Lo = DAG.getNode(N->getOpcode(), dl, LHSLo.getValueType(), LHSLo, RHSLo);
699   Hi = DAG.getNode(N->getOpcode(), dl, LHSHi.getValueType(), LHSHi, RHSHi);
700 }
701
702 void DAGTypeLegalizer::SplitVecRes_TernaryOp(SDNode *N, SDValue &Lo,
703                                              SDValue &Hi) {
704   SDValue Op0Lo, Op0Hi;
705   GetSplitVector(N->getOperand(0), Op0Lo, Op0Hi);
706   SDValue Op1Lo, Op1Hi;
707   GetSplitVector(N->getOperand(1), Op1Lo, Op1Hi);
708   SDValue Op2Lo, Op2Hi;
709   GetSplitVector(N->getOperand(2), Op2Lo, Op2Hi);
710   SDLoc dl(N);
711
712   Lo = DAG.getNode(N->getOpcode(), dl, Op0Lo.getValueType(),
713                    Op0Lo, Op1Lo, Op2Lo);
714   Hi = DAG.getNode(N->getOpcode(), dl, Op0Hi.getValueType(),
715                    Op0Hi, Op1Hi, Op2Hi);
716 }
717
718 void DAGTypeLegalizer::SplitVecRes_BITCAST(SDNode *N, SDValue &Lo,
719                                            SDValue &Hi) {
720   // We know the result is a vector.  The input may be either a vector or a
721   // scalar value.
722   EVT LoVT, HiVT;
723   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
724   SDLoc dl(N);
725
726   SDValue InOp = N->getOperand(0);
727   EVT InVT = InOp.getValueType();
728
729   // Handle some special cases efficiently.
730   switch (getTypeAction(InVT)) {
731   case TargetLowering::TypeLegal:
732   case TargetLowering::TypePromoteInteger:
733   case TargetLowering::TypePromoteFloat:
734   case TargetLowering::TypeSoftenFloat:
735   case TargetLowering::TypeScalarizeVector:
736   case TargetLowering::TypeWidenVector:
737     break;
738   case TargetLowering::TypeExpandInteger:
739   case TargetLowering::TypeExpandFloat:
740     // A scalar to vector conversion, where the scalar needs expansion.
741     // If the vector is being split in two then we can just convert the
742     // expanded pieces.
743     if (LoVT == HiVT) {
744       GetExpandedOp(InOp, Lo, Hi);
745       if (TLI.isBigEndian())
746         std::swap(Lo, Hi);
747       Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
748       Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
749       return;
750     }
751     break;
752   case TargetLowering::TypeSplitVector:
753     // If the input is a vector that needs to be split, convert each split
754     // piece of the input now.
755     GetSplitVector(InOp, Lo, Hi);
756     Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
757     Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
758     return;
759   }
760
761   // In the general case, convert the input to an integer and split it by hand.
762   EVT LoIntVT = EVT::getIntegerVT(*DAG.getContext(), LoVT.getSizeInBits());
763   EVT HiIntVT = EVT::getIntegerVT(*DAG.getContext(), HiVT.getSizeInBits());
764   if (TLI.isBigEndian())
765     std::swap(LoIntVT, HiIntVT);
766
767   SplitInteger(BitConvertToInteger(InOp), LoIntVT, HiIntVT, Lo, Hi);
768
769   if (TLI.isBigEndian())
770     std::swap(Lo, Hi);
771   Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo);
772   Hi = DAG.getNode(ISD::BITCAST, dl, HiVT, Hi);
773 }
774
775 void DAGTypeLegalizer::SplitVecRes_BUILD_VECTOR(SDNode *N, SDValue &Lo,
776                                                 SDValue &Hi) {
777   EVT LoVT, HiVT;
778   SDLoc dl(N);
779   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
780   unsigned LoNumElts = LoVT.getVectorNumElements();
781   SmallVector<SDValue, 8> LoOps(N->op_begin(), N->op_begin()+LoNumElts);
782   Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, LoVT, LoOps);
783
784   SmallVector<SDValue, 8> HiOps(N->op_begin()+LoNumElts, N->op_end());
785   Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, HiVT, HiOps);
786 }
787
788 void DAGTypeLegalizer::SplitVecRes_CONCAT_VECTORS(SDNode *N, SDValue &Lo,
789                                                   SDValue &Hi) {
790   assert(!(N->getNumOperands() & 1) && "Unsupported CONCAT_VECTORS");
791   SDLoc dl(N);
792   unsigned NumSubvectors = N->getNumOperands() / 2;
793   if (NumSubvectors == 1) {
794     Lo = N->getOperand(0);
795     Hi = N->getOperand(1);
796     return;
797   }
798
799   EVT LoVT, HiVT;
800   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
801
802   SmallVector<SDValue, 8> LoOps(N->op_begin(), N->op_begin()+NumSubvectors);
803   Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, LoVT, LoOps);
804
805   SmallVector<SDValue, 8> HiOps(N->op_begin()+NumSubvectors, N->op_end());
806   Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HiVT, HiOps);
807 }
808
809 void DAGTypeLegalizer::SplitVecRes_EXTRACT_SUBVECTOR(SDNode *N, SDValue &Lo,
810                                                      SDValue &Hi) {
811   SDValue Vec = N->getOperand(0);
812   SDValue Idx = N->getOperand(1);
813   SDLoc dl(N);
814
815   EVT LoVT, HiVT;
816   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
817
818   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, LoVT, Vec, Idx);
819   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
820   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, HiVT, Vec,
821                    DAG.getConstant(IdxVal + LoVT.getVectorNumElements(), dl,
822                                    TLI.getVectorIdxTy()));
823 }
824
825 void DAGTypeLegalizer::SplitVecRes_INSERT_SUBVECTOR(SDNode *N, SDValue &Lo,
826                                                     SDValue &Hi) {
827   SDValue Vec = N->getOperand(0);
828   SDValue SubVec = N->getOperand(1);
829   SDValue Idx = N->getOperand(2);
830   SDLoc dl(N);
831   GetSplitVector(Vec, Lo, Hi);
832
833   // Spill the vector to the stack.
834   EVT VecVT = Vec.getValueType();
835   EVT SubVecVT = VecVT.getVectorElementType();
836   SDValue StackPtr = DAG.CreateStackTemporary(VecVT);
837   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
838                                MachinePointerInfo(), false, false, 0);
839
840   // Store the new subvector into the specified index.
841   SDValue SubVecPtr = GetVectorElementPointer(StackPtr, SubVecVT, Idx);
842   Type *VecType = VecVT.getTypeForEVT(*DAG.getContext());
843   unsigned Alignment = TLI.getDataLayout()->getPrefTypeAlignment(VecType);
844   Store = DAG.getStore(Store, dl, SubVec, SubVecPtr, MachinePointerInfo(),
845                        false, false, 0);
846
847   // Load the Lo part from the stack slot.
848   Lo = DAG.getLoad(Lo.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
849                    false, false, false, 0);
850
851   // Increment the pointer to the other part.
852   unsigned IncrementSize = Lo.getValueType().getSizeInBits() / 8;
853   StackPtr =
854       DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
855                   DAG.getConstant(IncrementSize, dl, StackPtr.getValueType()));
856
857   // Load the Hi part from the stack slot.
858   Hi = DAG.getLoad(Hi.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
859                    false, false, false, MinAlign(Alignment, IncrementSize));
860 }
861
862 void DAGTypeLegalizer::SplitVecRes_FPOWI(SDNode *N, SDValue &Lo,
863                                          SDValue &Hi) {
864   SDLoc dl(N);
865   GetSplitVector(N->getOperand(0), Lo, Hi);
866   Lo = DAG.getNode(ISD::FPOWI, dl, Lo.getValueType(), Lo, N->getOperand(1));
867   Hi = DAG.getNode(ISD::FPOWI, dl, Hi.getValueType(), Hi, N->getOperand(1));
868 }
869
870 void DAGTypeLegalizer::SplitVecRes_InregOp(SDNode *N, SDValue &Lo,
871                                            SDValue &Hi) {
872   SDValue LHSLo, LHSHi;
873   GetSplitVector(N->getOperand(0), LHSLo, LHSHi);
874   SDLoc dl(N);
875
876   EVT LoVT, HiVT;
877   std::tie(LoVT, HiVT) =
878     DAG.GetSplitDestVTs(cast<VTSDNode>(N->getOperand(1))->getVT());
879
880   Lo = DAG.getNode(N->getOpcode(), dl, LHSLo.getValueType(), LHSLo,
881                    DAG.getValueType(LoVT));
882   Hi = DAG.getNode(N->getOpcode(), dl, LHSHi.getValueType(), LHSHi,
883                    DAG.getValueType(HiVT));
884 }
885
886 void DAGTypeLegalizer::SplitVecRes_INSERT_VECTOR_ELT(SDNode *N, SDValue &Lo,
887                                                      SDValue &Hi) {
888   SDValue Vec = N->getOperand(0);
889   SDValue Elt = N->getOperand(1);
890   SDValue Idx = N->getOperand(2);
891   SDLoc dl(N);
892   GetSplitVector(Vec, Lo, Hi);
893
894   if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
895     unsigned IdxVal = CIdx->getZExtValue();
896     unsigned LoNumElts = Lo.getValueType().getVectorNumElements();
897     if (IdxVal < LoNumElts)
898       Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
899                        Lo.getValueType(), Lo, Elt, Idx);
900     else
901       Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, Hi.getValueType(), Hi, Elt,
902                        DAG.getConstant(IdxVal - LoNumElts, dl,
903                                        TLI.getVectorIdxTy()));
904     return;
905   }
906
907   // See if the target wants to custom expand this node.
908   if (CustomLowerNode(N, N->getValueType(0), true))
909     return;
910
911   // Spill the vector to the stack.
912   EVT VecVT = Vec.getValueType();
913   EVT EltVT = VecVT.getVectorElementType();
914   SDValue StackPtr = DAG.CreateStackTemporary(VecVT);
915   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
916                                MachinePointerInfo(), false, false, 0);
917
918   // Store the new element.  This may be larger than the vector element type,
919   // so use a truncating store.
920   SDValue EltPtr = GetVectorElementPointer(StackPtr, EltVT, Idx);
921   Type *VecType = VecVT.getTypeForEVT(*DAG.getContext());
922   unsigned Alignment =
923     TLI.getDataLayout()->getPrefTypeAlignment(VecType);
924   Store = DAG.getTruncStore(Store, dl, Elt, EltPtr, MachinePointerInfo(), EltVT,
925                             false, false, 0);
926
927   // Load the Lo part from the stack slot.
928   Lo = DAG.getLoad(Lo.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
929                    false, false, false, 0);
930
931   // Increment the pointer to the other part.
932   unsigned IncrementSize = Lo.getValueType().getSizeInBits() / 8;
933   StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
934                          DAG.getConstant(IncrementSize, dl,
935                                          StackPtr.getValueType()));
936
937   // Load the Hi part from the stack slot.
938   Hi = DAG.getLoad(Hi.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
939                    false, false, false, MinAlign(Alignment, IncrementSize));
940 }
941
942 void DAGTypeLegalizer::SplitVecRes_SCALAR_TO_VECTOR(SDNode *N, SDValue &Lo,
943                                                     SDValue &Hi) {
944   EVT LoVT, HiVT;
945   SDLoc dl(N);
946   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
947   Lo = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoVT, N->getOperand(0));
948   Hi = DAG.getUNDEF(HiVT);
949 }
950
951 void DAGTypeLegalizer::SplitVecRes_LOAD(LoadSDNode *LD, SDValue &Lo,
952                                         SDValue &Hi) {
953   assert(ISD::isUNINDEXEDLoad(LD) && "Indexed load during type legalization!");
954   EVT LoVT, HiVT;
955   SDLoc dl(LD);
956   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(LD->getValueType(0));
957
958   ISD::LoadExtType ExtType = LD->getExtensionType();
959   SDValue Ch = LD->getChain();
960   SDValue Ptr = LD->getBasePtr();
961   SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
962   EVT MemoryVT = LD->getMemoryVT();
963   unsigned Alignment = LD->getOriginalAlignment();
964   bool isVolatile = LD->isVolatile();
965   bool isNonTemporal = LD->isNonTemporal();
966   bool isInvariant = LD->isInvariant();
967   AAMDNodes AAInfo = LD->getAAInfo();
968
969   EVT LoMemVT, HiMemVT;
970   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
971
972   Lo = DAG.getLoad(ISD::UNINDEXED, ExtType, LoVT, dl, Ch, Ptr, Offset,
973                    LD->getPointerInfo(), LoMemVT, isVolatile, isNonTemporal,
974                    isInvariant, Alignment, AAInfo);
975
976   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
977   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
978                     DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
979   Hi = DAG.getLoad(ISD::UNINDEXED, ExtType, HiVT, dl, Ch, Ptr, Offset,
980                    LD->getPointerInfo().getWithOffset(IncrementSize),
981                    HiMemVT, isVolatile, isNonTemporal, isInvariant, Alignment,
982                    AAInfo);
983
984   // Build a factor node to remember that this load is independent of the
985   // other one.
986   Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
987                    Hi.getValue(1));
988
989   // Legalized the chain result - switch anything that used the old chain to
990   // use the new one.
991   ReplaceValueWith(SDValue(LD, 1), Ch);
992 }
993
994 void DAGTypeLegalizer::SplitVecRes_MLOAD(MaskedLoadSDNode *MLD,
995                                          SDValue &Lo, SDValue &Hi) {
996   EVT LoVT, HiVT;
997   SDLoc dl(MLD);
998   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MLD->getValueType(0));
999
1000   SDValue Ch = MLD->getChain();
1001   SDValue Ptr = MLD->getBasePtr();
1002   SDValue Mask = MLD->getMask();
1003   unsigned Alignment = MLD->getOriginalAlignment();
1004   ISD::LoadExtType ExtType = MLD->getExtensionType();
1005
1006   // if Alignment is equal to the vector size,
1007   // take the half of it for the second part
1008   unsigned SecondHalfAlignment =
1009     (Alignment == MLD->getValueType(0).getSizeInBits()/8) ?
1010      Alignment/2 : Alignment;
1011
1012   SDValue MaskLo, MaskHi;
1013   std::tie(MaskLo, MaskHi) = DAG.SplitVector(Mask, dl);
1014
1015   EVT MemoryVT = MLD->getMemoryVT();
1016   EVT LoMemVT, HiMemVT;
1017   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1018
1019   SDValue Src0 = MLD->getSrc0();
1020   SDValue Src0Lo, Src0Hi;
1021   std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(Src0, dl);
1022
1023   MachineMemOperand *MMO = DAG.getMachineFunction().
1024     getMachineMemOperand(MLD->getPointerInfo(), 
1025                          MachineMemOperand::MOLoad,  LoMemVT.getStoreSize(),
1026                          Alignment, MLD->getAAInfo(), MLD->getRanges());
1027
1028   Lo = DAG.getMaskedLoad(LoVT, dl, Ch, Ptr, MaskLo, Src0Lo, LoMemVT, MMO,
1029                          ExtType);
1030
1031   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
1032   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1033                     DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
1034
1035   MMO = DAG.getMachineFunction().
1036     getMachineMemOperand(MLD->getPointerInfo(), 
1037                          MachineMemOperand::MOLoad,  HiMemVT.getStoreSize(),
1038                          SecondHalfAlignment, MLD->getAAInfo(), MLD->getRanges());
1039
1040   Hi = DAG.getMaskedLoad(HiVT, dl, Ch, Ptr, MaskHi, Src0Hi, HiMemVT, MMO,
1041                          ExtType);
1042
1043
1044   // Build a factor node to remember that this load is independent of the
1045   // other one.
1046   Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1047                    Hi.getValue(1));
1048
1049   // Legalized the chain result - switch anything that used the old chain to
1050   // use the new one.
1051   ReplaceValueWith(SDValue(MLD, 1), Ch);
1052
1053 }
1054
1055 void DAGTypeLegalizer::SplitVecRes_MGATHER(MaskedGatherSDNode *MGT,
1056                                          SDValue &Lo, SDValue &Hi) {
1057   EVT LoVT, HiVT;
1058   SDLoc dl(MGT);
1059   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MGT->getValueType(0));
1060
1061   SDValue Ch = MGT->getChain();
1062   SDValue Ptr = MGT->getBasePtr();
1063   SDValue Mask = MGT->getMask();
1064   unsigned Alignment = MGT->getOriginalAlignment();
1065
1066   SDValue MaskLo, MaskHi;
1067   std::tie(MaskLo, MaskHi) = DAG.SplitVector(Mask, dl);
1068
1069   EVT MemoryVT = MGT->getMemoryVT();
1070   EVT LoMemVT, HiMemVT;
1071   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1072
1073   SDValue Src0Lo, Src0Hi;
1074   std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(MGT->getValue(), dl);
1075
1076   SDValue IndexHi, IndexLo;
1077   std::tie(IndexLo, IndexHi) = DAG.SplitVector(MGT->getIndex(), dl);
1078
1079   MachineMemOperand *MMO = DAG.getMachineFunction().
1080     getMachineMemOperand(MGT->getPointerInfo(), 
1081                          MachineMemOperand::MOLoad,  LoMemVT.getStoreSize(),
1082                          Alignment, MGT->getAAInfo(), MGT->getRanges());
1083
1084   SDValue OpsLo[] = {Ch, Src0Lo, MaskLo, Ptr, IndexLo};
1085   Lo = DAG.getMaskedGather(DAG.getVTList(LoVT, MVT::Other), LoVT, dl, OpsLo,
1086                            MMO);
1087
1088   SDValue OpsHi[] = {Ch, Src0Hi, MaskHi, Ptr, IndexHi};
1089   Hi = DAG.getMaskedGather(DAG.getVTList(HiVT, MVT::Other), HiVT, dl, OpsHi,
1090                            MMO);
1091
1092   // Build a factor node to remember that this load is independent of the
1093   // other one.
1094   Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1095                    Hi.getValue(1));
1096
1097   // Legalized the chain result - switch anything that used the old chain to
1098   // use the new one.
1099   ReplaceValueWith(SDValue(MGT, 1), Ch);
1100 }
1101
1102
1103 void DAGTypeLegalizer::SplitVecRes_SETCC(SDNode *N, SDValue &Lo, SDValue &Hi) {
1104   assert(N->getValueType(0).isVector() &&
1105          N->getOperand(0).getValueType().isVector() &&
1106          "Operand types must be vectors");
1107
1108   EVT LoVT, HiVT;
1109   SDLoc DL(N);
1110   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
1111
1112   // Split the input.
1113   SDValue LL, LH, RL, RH;
1114   std::tie(LL, LH) = DAG.SplitVectorOperand(N, 0);
1115   std::tie(RL, RH) = DAG.SplitVectorOperand(N, 1);
1116
1117   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
1118   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, LH, RH, N->getOperand(2));
1119 }
1120
1121 void DAGTypeLegalizer::SplitVecRes_UnaryOp(SDNode *N, SDValue &Lo,
1122                                            SDValue &Hi) {
1123   // Get the dest types - they may not match the input types, e.g. int_to_fp.
1124   EVT LoVT, HiVT;
1125   SDLoc dl(N);
1126   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
1127
1128   // If the input also splits, handle it directly for a compile time speedup.
1129   // Otherwise split it by hand.
1130   EVT InVT = N->getOperand(0).getValueType();
1131   if (getTypeAction(InVT) == TargetLowering::TypeSplitVector)
1132     GetSplitVector(N->getOperand(0), Lo, Hi);
1133   else
1134     std::tie(Lo, Hi) = DAG.SplitVectorOperand(N, 0);
1135
1136   if (N->getOpcode() == ISD::FP_ROUND) {
1137     Lo = DAG.getNode(N->getOpcode(), dl, LoVT, Lo, N->getOperand(1));
1138     Hi = DAG.getNode(N->getOpcode(), dl, HiVT, Hi, N->getOperand(1));
1139   } else if (N->getOpcode() == ISD::CONVERT_RNDSAT) {
1140     SDValue DTyOpLo = DAG.getValueType(LoVT);
1141     SDValue DTyOpHi = DAG.getValueType(HiVT);
1142     SDValue STyOpLo = DAG.getValueType(Lo.getValueType());
1143     SDValue STyOpHi = DAG.getValueType(Hi.getValueType());
1144     SDValue RndOp = N->getOperand(3);
1145     SDValue SatOp = N->getOperand(4);
1146     ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
1147     Lo = DAG.getConvertRndSat(LoVT, dl, Lo, DTyOpLo, STyOpLo, RndOp, SatOp,
1148                               CvtCode);
1149     Hi = DAG.getConvertRndSat(HiVT, dl, Hi, DTyOpHi, STyOpHi, RndOp, SatOp,
1150                               CvtCode);
1151   } else {
1152     Lo = DAG.getNode(N->getOpcode(), dl, LoVT, Lo);
1153     Hi = DAG.getNode(N->getOpcode(), dl, HiVT, Hi);
1154   }
1155 }
1156
1157 void DAGTypeLegalizer::SplitVecRes_ExtendOp(SDNode *N, SDValue &Lo,
1158                                             SDValue &Hi) {
1159   SDLoc dl(N);
1160   EVT SrcVT = N->getOperand(0).getValueType();
1161   EVT DestVT = N->getValueType(0);
1162   EVT LoVT, HiVT;
1163   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(DestVT);
1164
1165   // We can do better than a generic split operation if the extend is doing
1166   // more than just doubling the width of the elements and the following are
1167   // true:
1168   //   - The number of vector elements is even,
1169   //   - the source type is legal,
1170   //   - the type of a split source is illegal,
1171   //   - the type of an extended (by doubling element size) source is legal, and
1172   //   - the type of that extended source when split is legal.
1173   //
1174   // This won't necessarily completely legalize the operation, but it will
1175   // more effectively move in the right direction and prevent falling down
1176   // to scalarization in many cases due to the input vector being split too
1177   // far.
1178   unsigned NumElements = SrcVT.getVectorNumElements();
1179   if ((NumElements & 1) == 0 &&
1180       SrcVT.getSizeInBits() * 2 < DestVT.getSizeInBits()) {
1181     LLVMContext &Ctx = *DAG.getContext();
1182     EVT NewSrcVT = EVT::getVectorVT(
1183         Ctx, EVT::getIntegerVT(
1184                  Ctx, SrcVT.getVectorElementType().getSizeInBits() * 2),
1185         NumElements);
1186     EVT SplitSrcVT =
1187         EVT::getVectorVT(Ctx, SrcVT.getVectorElementType(), NumElements / 2);
1188     EVT SplitLoVT, SplitHiVT;
1189     std::tie(SplitLoVT, SplitHiVT) = DAG.GetSplitDestVTs(NewSrcVT);
1190     if (TLI.isTypeLegal(SrcVT) && !TLI.isTypeLegal(SplitSrcVT) &&
1191         TLI.isTypeLegal(NewSrcVT) && TLI.isTypeLegal(SplitLoVT)) {
1192       DEBUG(dbgs() << "Split vector extend via incremental extend:";
1193             N->dump(&DAG); dbgs() << "\n");
1194       // Extend the source vector by one step.
1195       SDValue NewSrc =
1196           DAG.getNode(N->getOpcode(), dl, NewSrcVT, N->getOperand(0));
1197       // Get the low and high halves of the new, extended one step, vector.
1198       std::tie(Lo, Hi) = DAG.SplitVector(NewSrc, dl);
1199       // Extend those vector halves the rest of the way.
1200       Lo = DAG.getNode(N->getOpcode(), dl, LoVT, Lo);
1201       Hi = DAG.getNode(N->getOpcode(), dl, HiVT, Hi);
1202       return;
1203     }
1204   }
1205   // Fall back to the generic unary operator splitting otherwise.
1206   SplitVecRes_UnaryOp(N, Lo, Hi);
1207 }
1208
1209 void DAGTypeLegalizer::SplitVecRes_VECTOR_SHUFFLE(ShuffleVectorSDNode *N,
1210                                                   SDValue &Lo, SDValue &Hi) {
1211   // The low and high parts of the original input give four input vectors.
1212   SDValue Inputs[4];
1213   SDLoc dl(N);
1214   GetSplitVector(N->getOperand(0), Inputs[0], Inputs[1]);
1215   GetSplitVector(N->getOperand(1), Inputs[2], Inputs[3]);
1216   EVT NewVT = Inputs[0].getValueType();
1217   unsigned NewElts = NewVT.getVectorNumElements();
1218
1219   // If Lo or Hi uses elements from at most two of the four input vectors, then
1220   // express it as a vector shuffle of those two inputs.  Otherwise extract the
1221   // input elements by hand and construct the Lo/Hi output using a BUILD_VECTOR.
1222   SmallVector<int, 16> Ops;
1223   for (unsigned High = 0; High < 2; ++High) {
1224     SDValue &Output = High ? Hi : Lo;
1225
1226     // Build a shuffle mask for the output, discovering on the fly which
1227     // input vectors to use as shuffle operands (recorded in InputUsed).
1228     // If building a suitable shuffle vector proves too hard, then bail
1229     // out with useBuildVector set.
1230     unsigned InputUsed[2] = { -1U, -1U }; // Not yet discovered.
1231     unsigned FirstMaskIdx = High * NewElts;
1232     bool useBuildVector = false;
1233     for (unsigned MaskOffset = 0; MaskOffset < NewElts; ++MaskOffset) {
1234       // The mask element.  This indexes into the input.
1235       int Idx = N->getMaskElt(FirstMaskIdx + MaskOffset);
1236
1237       // The input vector this mask element indexes into.
1238       unsigned Input = (unsigned)Idx / NewElts;
1239
1240       if (Input >= array_lengthof(Inputs)) {
1241         // The mask element does not index into any input vector.
1242         Ops.push_back(-1);
1243         continue;
1244       }
1245
1246       // Turn the index into an offset from the start of the input vector.
1247       Idx -= Input * NewElts;
1248
1249       // Find or create a shuffle vector operand to hold this input.
1250       unsigned OpNo;
1251       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
1252         if (InputUsed[OpNo] == Input) {
1253           // This input vector is already an operand.
1254           break;
1255         } else if (InputUsed[OpNo] == -1U) {
1256           // Create a new operand for this input vector.
1257           InputUsed[OpNo] = Input;
1258           break;
1259         }
1260       }
1261
1262       if (OpNo >= array_lengthof(InputUsed)) {
1263         // More than two input vectors used!  Give up on trying to create a
1264         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
1265         useBuildVector = true;
1266         break;
1267       }
1268
1269       // Add the mask index for the new shuffle vector.
1270       Ops.push_back(Idx + OpNo * NewElts);
1271     }
1272
1273     if (useBuildVector) {
1274       EVT EltVT = NewVT.getVectorElementType();
1275       SmallVector<SDValue, 16> SVOps;
1276
1277       // Extract the input elements by hand.
1278       for (unsigned MaskOffset = 0; MaskOffset < NewElts; ++MaskOffset) {
1279         // The mask element.  This indexes into the input.
1280         int Idx = N->getMaskElt(FirstMaskIdx + MaskOffset);
1281
1282         // The input vector this mask element indexes into.
1283         unsigned Input = (unsigned)Idx / NewElts;
1284
1285         if (Input >= array_lengthof(Inputs)) {
1286           // The mask element is "undef" or indexes off the end of the input.
1287           SVOps.push_back(DAG.getUNDEF(EltVT));
1288           continue;
1289         }
1290
1291         // Turn the index into an offset from the start of the input vector.
1292         Idx -= Input * NewElts;
1293
1294         // Extract the vector element by hand.
1295         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
1296                                     Inputs[Input],
1297                                     DAG.getConstant(Idx, dl,
1298                                                     TLI.getVectorIdxTy())));
1299       }
1300
1301       // Construct the Lo/Hi output using a BUILD_VECTOR.
1302       Output = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, SVOps);
1303     } else if (InputUsed[0] == -1U) {
1304       // No input vectors were used!  The result is undefined.
1305       Output = DAG.getUNDEF(NewVT);
1306     } else {
1307       SDValue Op0 = Inputs[InputUsed[0]];
1308       // If only one input was used, use an undefined vector for the other.
1309       SDValue Op1 = InputUsed[1] == -1U ?
1310         DAG.getUNDEF(NewVT) : Inputs[InputUsed[1]];
1311       // At least one input vector was used.  Create a new shuffle vector.
1312       Output =  DAG.getVectorShuffle(NewVT, dl, Op0, Op1, &Ops[0]);
1313     }
1314
1315     Ops.clear();
1316   }
1317 }
1318
1319
1320 //===----------------------------------------------------------------------===//
1321 //  Operand Vector Splitting
1322 //===----------------------------------------------------------------------===//
1323
1324 /// SplitVectorOperand - This method is called when the specified operand of the
1325 /// specified node is found to need vector splitting.  At this point, all of the
1326 /// result types of the node are known to be legal, but other operands of the
1327 /// node may need legalization as well as the specified one.
1328 bool DAGTypeLegalizer::SplitVectorOperand(SDNode *N, unsigned OpNo) {
1329   DEBUG(dbgs() << "Split node operand: ";
1330         N->dump(&DAG);
1331         dbgs() << "\n");
1332   SDValue Res = SDValue();
1333
1334   // See if the target wants to custom split this node.
1335   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
1336     return false;
1337
1338   if (!Res.getNode()) {
1339     switch (N->getOpcode()) {
1340     default:
1341 #ifndef NDEBUG
1342       dbgs() << "SplitVectorOperand Op #" << OpNo << ": ";
1343       N->dump(&DAG);
1344       dbgs() << "\n";
1345 #endif
1346       report_fatal_error("Do not know how to split this operator's "
1347                          "operand!\n");
1348
1349     case ISD::SETCC:             Res = SplitVecOp_VSETCC(N); break;
1350     case ISD::BITCAST:           Res = SplitVecOp_BITCAST(N); break;
1351     case ISD::EXTRACT_SUBVECTOR: Res = SplitVecOp_EXTRACT_SUBVECTOR(N); break;
1352     case ISD::EXTRACT_VECTOR_ELT:Res = SplitVecOp_EXTRACT_VECTOR_ELT(N); break;
1353     case ISD::CONCAT_VECTORS:    Res = SplitVecOp_CONCAT_VECTORS(N); break;
1354     case ISD::TRUNCATE:
1355       Res = SplitVecOp_TruncateHelper(N);
1356       break;
1357     case ISD::FP_ROUND:          Res = SplitVecOp_FP_ROUND(N); break;
1358     case ISD::STORE:
1359       Res = SplitVecOp_STORE(cast<StoreSDNode>(N), OpNo);
1360       break;
1361     case ISD::MSTORE:
1362       Res = SplitVecOp_MSTORE(cast<MaskedStoreSDNode>(N), OpNo);
1363       break;
1364     case ISD::MSCATTER:
1365       Res = SplitVecOp_MSCATTER(cast<MaskedScatterSDNode>(N), OpNo);
1366       break;
1367     case ISD::MGATHER:
1368       Res = SplitVecOp_MGATHER(cast<MaskedGatherSDNode>(N), OpNo);
1369       break;
1370     case ISD::VSELECT:
1371       Res = SplitVecOp_VSELECT(N, OpNo);
1372       break;
1373     case ISD::FP_TO_SINT:
1374     case ISD::FP_TO_UINT:
1375       if (N->getValueType(0).bitsLT(N->getOperand(0)->getValueType(0)))
1376         Res = SplitVecOp_TruncateHelper(N);
1377       else
1378         Res = SplitVecOp_UnaryOp(N);
1379       break;
1380     case ISD::SINT_TO_FP:
1381     case ISD::UINT_TO_FP:
1382       if (N->getValueType(0).bitsLT(N->getOperand(0)->getValueType(0)))
1383         Res = SplitVecOp_TruncateHelper(N);
1384       else
1385         Res = SplitVecOp_UnaryOp(N);
1386       break;
1387     case ISD::CTTZ:
1388     case ISD::CTLZ:
1389     case ISD::CTPOP:
1390     case ISD::FP_EXTEND:
1391     case ISD::SIGN_EXTEND:
1392     case ISD::ZERO_EXTEND:
1393     case ISD::ANY_EXTEND:
1394     case ISD::FTRUNC:
1395       Res = SplitVecOp_UnaryOp(N);
1396       break;
1397     }
1398   }
1399
1400   // If the result is null, the sub-method took care of registering results etc.
1401   if (!Res.getNode()) return false;
1402
1403   // If the result is N, the sub-method updated N in place.  Tell the legalizer
1404   // core about this.
1405   if (Res.getNode() == N)
1406     return true;
1407
1408   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
1409          "Invalid operand expansion");
1410
1411   ReplaceValueWith(SDValue(N, 0), Res);
1412   return false;
1413 }
1414
1415 SDValue DAGTypeLegalizer::SplitVecOp_VSELECT(SDNode *N, unsigned OpNo) {
1416   // The only possibility for an illegal operand is the mask, since result type
1417   // legalization would have handled this node already otherwise.
1418   assert(OpNo == 0 && "Illegal operand must be mask");
1419
1420   SDValue Mask = N->getOperand(0);
1421   SDValue Src0 = N->getOperand(1);
1422   SDValue Src1 = N->getOperand(2);
1423   EVT Src0VT = Src0.getValueType();
1424   SDLoc DL(N);
1425   assert(Mask.getValueType().isVector() && "VSELECT without a vector mask?");
1426
1427   SDValue Lo, Hi;
1428   GetSplitVector(N->getOperand(0), Lo, Hi);
1429   assert(Lo.getValueType() == Hi.getValueType() &&
1430          "Lo and Hi have differing types");
1431
1432   EVT LoOpVT, HiOpVT;
1433   std::tie(LoOpVT, HiOpVT) = DAG.GetSplitDestVTs(Src0VT);
1434   assert(LoOpVT == HiOpVT && "Asymmetric vector split?");
1435
1436   SDValue LoOp0, HiOp0, LoOp1, HiOp1, LoMask, HiMask;
1437   std::tie(LoOp0, HiOp0) = DAG.SplitVector(Src0, DL);
1438   std::tie(LoOp1, HiOp1) = DAG.SplitVector(Src1, DL);
1439   std::tie(LoMask, HiMask) = DAG.SplitVector(Mask, DL);
1440
1441   SDValue LoSelect =
1442     DAG.getNode(ISD::VSELECT, DL, LoOpVT, LoMask, LoOp0, LoOp1);
1443   SDValue HiSelect =
1444     DAG.getNode(ISD::VSELECT, DL, HiOpVT, HiMask, HiOp0, HiOp1);
1445
1446   return DAG.getNode(ISD::CONCAT_VECTORS, DL, Src0VT, LoSelect, HiSelect);
1447 }
1448
1449 SDValue DAGTypeLegalizer::SplitVecOp_UnaryOp(SDNode *N) {
1450   // The result has a legal vector type, but the input needs splitting.
1451   EVT ResVT = N->getValueType(0);
1452   SDValue Lo, Hi;
1453   SDLoc dl(N);
1454   GetSplitVector(N->getOperand(0), Lo, Hi);
1455   EVT InVT = Lo.getValueType();
1456
1457   EVT OutVT = EVT::getVectorVT(*DAG.getContext(), ResVT.getVectorElementType(),
1458                                InVT.getVectorNumElements());
1459
1460   Lo = DAG.getNode(N->getOpcode(), dl, OutVT, Lo);
1461   Hi = DAG.getNode(N->getOpcode(), dl, OutVT, Hi);
1462
1463   return DAG.getNode(ISD::CONCAT_VECTORS, dl, ResVT, Lo, Hi);
1464 }
1465
1466 SDValue DAGTypeLegalizer::SplitVecOp_BITCAST(SDNode *N) {
1467   // For example, i64 = BITCAST v4i16 on alpha.  Typically the vector will
1468   // end up being split all the way down to individual components.  Convert the
1469   // split pieces into integers and reassemble.
1470   SDValue Lo, Hi;
1471   GetSplitVector(N->getOperand(0), Lo, Hi);
1472   Lo = BitConvertToInteger(Lo);
1473   Hi = BitConvertToInteger(Hi);
1474
1475   if (TLI.isBigEndian())
1476     std::swap(Lo, Hi);
1477
1478   return DAG.getNode(ISD::BITCAST, SDLoc(N), N->getValueType(0),
1479                      JoinIntegers(Lo, Hi));
1480 }
1481
1482 SDValue DAGTypeLegalizer::SplitVecOp_EXTRACT_SUBVECTOR(SDNode *N) {
1483   // We know that the extracted result type is legal.
1484   EVT SubVT = N->getValueType(0);
1485   SDValue Idx = N->getOperand(1);
1486   SDLoc dl(N);
1487   SDValue Lo, Hi;
1488   GetSplitVector(N->getOperand(0), Lo, Hi);
1489
1490   uint64_t LoElts = Lo.getValueType().getVectorNumElements();
1491   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1492
1493   if (IdxVal < LoElts) {
1494     assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1495            "Extracted subvector crosses vector split!");
1496     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, Lo, Idx);
1497   } else {
1498     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, Hi,
1499                        DAG.getConstant(IdxVal - LoElts, dl,
1500                                        Idx.getValueType()));
1501   }
1502 }
1503
1504 SDValue DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
1505   SDValue Vec = N->getOperand(0);
1506   SDValue Idx = N->getOperand(1);
1507   EVT VecVT = Vec.getValueType();
1508
1509   if (isa<ConstantSDNode>(Idx)) {
1510     uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1511     assert(IdxVal < VecVT.getVectorNumElements() && "Invalid vector index!");
1512
1513     SDValue Lo, Hi;
1514     GetSplitVector(Vec, Lo, Hi);
1515
1516     uint64_t LoElts = Lo.getValueType().getVectorNumElements();
1517
1518     if (IdxVal < LoElts)
1519       return SDValue(DAG.UpdateNodeOperands(N, Lo, Idx), 0);
1520     return SDValue(DAG.UpdateNodeOperands(N, Hi,
1521                                   DAG.getConstant(IdxVal - LoElts, SDLoc(N),
1522                                                   Idx.getValueType())), 0);
1523   }
1524
1525   // See if the target wants to custom expand this node.
1526   if (CustomLowerNode(N, N->getValueType(0), true))
1527     return SDValue();
1528
1529   // Store the vector to the stack.
1530   EVT EltVT = VecVT.getVectorElementType();
1531   SDLoc dl(N);
1532   SDValue StackPtr = DAG.CreateStackTemporary(VecVT);
1533   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1534                                MachinePointerInfo(), false, false, 0);
1535
1536   // Load back the required element.
1537   StackPtr = GetVectorElementPointer(StackPtr, EltVT, Idx);
1538   return DAG.getExtLoad(ISD::EXTLOAD, dl, N->getValueType(0), Store, StackPtr,
1539                         MachinePointerInfo(), EltVT, false, false, false, 0);
1540 }
1541
1542 SDValue DAGTypeLegalizer::SplitVecOp_MGATHER(MaskedGatherSDNode *MGT,
1543                                              unsigned OpNo) {
1544   EVT LoVT, HiVT;
1545   SDLoc dl(MGT);
1546   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(MGT->getValueType(0));
1547
1548   SDValue Ch = MGT->getChain();
1549   SDValue Ptr = MGT->getBasePtr();
1550   SDValue Index = MGT->getIndex();
1551   SDValue Mask = MGT->getMask();
1552   unsigned Alignment = MGT->getOriginalAlignment();
1553
1554   SDValue MaskLo, MaskHi;
1555   std::tie(MaskLo, MaskHi) = DAG.SplitVector(Mask, dl);
1556
1557   EVT MemoryVT = MGT->getMemoryVT();
1558   EVT LoMemVT, HiMemVT;
1559   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1560
1561   SDValue Src0Lo, Src0Hi;
1562   std::tie(Src0Lo, Src0Hi) = DAG.SplitVector(MGT->getValue(), dl);
1563
1564   SDValue IndexHi, IndexLo;
1565   if (Index.getNode())
1566     std::tie(IndexLo, IndexHi) = DAG.SplitVector(Index, dl);
1567   else
1568     IndexLo = IndexHi = Index;
1569
1570   MachineMemOperand *MMO = DAG.getMachineFunction().
1571     getMachineMemOperand(MGT->getPointerInfo(), 
1572                          MachineMemOperand::MOLoad,  LoMemVT.getStoreSize(),
1573                          Alignment, MGT->getAAInfo(), MGT->getRanges());
1574
1575   SDValue OpsLo[] = {Ch, Src0Lo, MaskLo, Ptr, IndexLo};
1576   SDValue Lo = DAG.getMaskedGather(DAG.getVTList(LoVT, MVT::Other), LoVT, dl,
1577                                    OpsLo, MMO);
1578
1579   MMO = DAG.getMachineFunction().
1580     getMachineMemOperand(MGT->getPointerInfo(), 
1581                          MachineMemOperand::MOLoad,  HiMemVT.getStoreSize(),
1582                          Alignment, MGT->getAAInfo(),
1583                          MGT->getRanges());
1584
1585   SDValue OpsHi[] = {Ch, Src0Hi, MaskHi, Ptr, IndexHi};
1586   SDValue Hi = DAG.getMaskedGather(DAG.getVTList(HiVT, MVT::Other), HiVT, dl,
1587                                    OpsHi, MMO);
1588
1589   // Build a factor node to remember that this load is independent of the
1590   // other one.
1591   Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1592                    Hi.getValue(1));
1593
1594   // Legalized the chain result - switch anything that used the old chain to
1595   // use the new one.
1596   ReplaceValueWith(SDValue(MGT, 1), Ch);
1597
1598   SDValue Res = DAG.getNode(ISD::CONCAT_VECTORS, dl, MGT->getValueType(0), Lo,
1599                             Hi);
1600   ReplaceValueWith(SDValue(MGT, 0), Res);
1601   return SDValue();
1602 }
1603
1604 SDValue DAGTypeLegalizer::SplitVecOp_MSTORE(MaskedStoreSDNode *N,
1605                                             unsigned OpNo) {
1606   SDValue Ch  = N->getChain();
1607   SDValue Ptr = N->getBasePtr();
1608   SDValue Mask = N->getMask();
1609   SDValue Data = N->getValue();
1610   EVT MemoryVT = N->getMemoryVT();
1611   unsigned Alignment = N->getOriginalAlignment();
1612   SDLoc DL(N);
1613   
1614   EVT LoMemVT, HiMemVT;
1615   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1616
1617   SDValue DataLo, DataHi;
1618   GetSplitVector(Data, DataLo, DataHi);
1619   SDValue MaskLo, MaskHi;
1620   GetSplitVector(Mask, MaskLo, MaskHi);
1621
1622   // if Alignment is equal to the vector size,
1623   // take the half of it for the second part
1624   unsigned SecondHalfAlignment =
1625     (Alignment == Data->getValueType(0).getSizeInBits()/8) ?
1626        Alignment/2 : Alignment;
1627
1628   SDValue Lo, Hi;
1629   MachineMemOperand *MMO = DAG.getMachineFunction().
1630     getMachineMemOperand(N->getPointerInfo(), 
1631                          MachineMemOperand::MOStore, LoMemVT.getStoreSize(),
1632                          Alignment, N->getAAInfo(), N->getRanges());
1633
1634   Lo = DAG.getMaskedStore(Ch, DL, DataLo, Ptr, MaskLo, LoMemVT, MMO,
1635                           N->isTruncatingStore());
1636
1637   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
1638   Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
1639                     DAG.getConstant(IncrementSize, DL, Ptr.getValueType()));
1640
1641   MMO = DAG.getMachineFunction().
1642     getMachineMemOperand(N->getPointerInfo(), 
1643                          MachineMemOperand::MOStore,  HiMemVT.getStoreSize(),
1644                          SecondHalfAlignment, N->getAAInfo(), N->getRanges());
1645
1646   Hi = DAG.getMaskedStore(Ch, DL, DataHi, Ptr, MaskHi, HiMemVT, MMO,
1647                           N->isTruncatingStore());
1648
1649   // Build a factor node to remember that this store is independent of the
1650   // other one.
1651   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi);
1652 }
1653
1654 SDValue DAGTypeLegalizer::SplitVecOp_MSCATTER(MaskedScatterSDNode *N,
1655                                               unsigned OpNo) {
1656   SDValue Ch  = N->getChain();
1657   SDValue Ptr = N->getBasePtr();
1658   SDValue Mask = N->getMask();
1659   SDValue Index = N->getIndex();
1660   SDValue Data = N->getValue();
1661   EVT MemoryVT = N->getMemoryVT();
1662   unsigned Alignment = N->getOriginalAlignment();
1663   SDLoc DL(N);
1664
1665   EVT LoMemVT, HiMemVT;
1666   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1667
1668   SDValue DataLo, DataHi;
1669   GetSplitVector(Data, DataLo, DataHi);
1670   SDValue MaskLo, MaskHi;
1671   GetSplitVector(Mask, MaskLo, MaskHi);
1672
1673     SDValue PtrLo, PtrHi;
1674   if (Ptr.getValueType().isVector()) // gather form vector of pointers
1675     std::tie(PtrLo, PtrHi) = DAG.SplitVector(Ptr, DL);
1676   else
1677     PtrLo = PtrHi = Ptr;
1678
1679   SDValue IndexHi, IndexLo;
1680   if (Index.getNode())
1681     std::tie(IndexLo, IndexHi) = DAG.SplitVector(Index, DL);
1682   else
1683     IndexLo = IndexHi = Index;
1684
1685   SDValue Lo, Hi;
1686   MachineMemOperand *MMO = DAG.getMachineFunction().
1687     getMachineMemOperand(N->getPointerInfo(), 
1688                          MachineMemOperand::MOStore, LoMemVT.getStoreSize(),
1689                          Alignment, N->getAAInfo(), N->getRanges());
1690
1691   SDValue OpsLo[] = {Ch, DataLo, MaskLo, PtrLo, IndexLo};
1692   Lo = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataLo.getValueType(),
1693                             DL, OpsLo, MMO);
1694
1695   MMO = DAG.getMachineFunction().
1696     getMachineMemOperand(N->getPointerInfo(), 
1697                          MachineMemOperand::MOStore,  HiMemVT.getStoreSize(),
1698                          Alignment, N->getAAInfo(), N->getRanges());
1699
1700   SDValue OpsHi[] = {Ch, DataHi, MaskHi, PtrHi, IndexHi};
1701   Hi = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), DataHi.getValueType(),
1702                             DL, OpsHi, MMO);
1703
1704   // Build a factor node to remember that this store is independent of the
1705   // other one.
1706   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi);
1707 }
1708
1709 SDValue DAGTypeLegalizer::SplitVecOp_STORE(StoreSDNode *N, unsigned OpNo) {
1710   assert(N->isUnindexed() && "Indexed store of vector?");
1711   assert(OpNo == 1 && "Can only split the stored value");
1712   SDLoc DL(N);
1713
1714   bool isTruncating = N->isTruncatingStore();
1715   SDValue Ch  = N->getChain();
1716   SDValue Ptr = N->getBasePtr();
1717   EVT MemoryVT = N->getMemoryVT();
1718   unsigned Alignment = N->getOriginalAlignment();
1719   bool isVol = N->isVolatile();
1720   bool isNT = N->isNonTemporal();
1721   AAMDNodes AAInfo = N->getAAInfo();
1722   SDValue Lo, Hi;
1723   GetSplitVector(N->getOperand(1), Lo, Hi);
1724
1725   EVT LoMemVT, HiMemVT;
1726   std::tie(LoMemVT, HiMemVT) = DAG.GetSplitDestVTs(MemoryVT);
1727
1728   unsigned IncrementSize = LoMemVT.getSizeInBits()/8;
1729
1730   if (isTruncating)
1731     Lo = DAG.getTruncStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1732                            LoMemVT, isVol, isNT, Alignment, AAInfo);
1733   else
1734     Lo = DAG.getStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1735                       isVol, isNT, Alignment, AAInfo);
1736
1737   // Increment the pointer to the other half.
1738   Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
1739                     DAG.getConstant(IncrementSize, DL, Ptr.getValueType()));
1740
1741   if (isTruncating)
1742     Hi = DAG.getTruncStore(Ch, DL, Hi, Ptr,
1743                            N->getPointerInfo().getWithOffset(IncrementSize),
1744                            HiMemVT, isVol, isNT, Alignment, AAInfo);
1745   else
1746     Hi = DAG.getStore(Ch, DL, Hi, Ptr,
1747                       N->getPointerInfo().getWithOffset(IncrementSize),
1748                       isVol, isNT, Alignment, AAInfo);
1749
1750   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Lo, Hi);
1751 }
1752
1753 SDValue DAGTypeLegalizer::SplitVecOp_CONCAT_VECTORS(SDNode *N) {
1754   SDLoc DL(N);
1755
1756   // The input operands all must have the same type, and we know the result
1757   // type is valid.  Convert this to a buildvector which extracts all the
1758   // input elements.
1759   // TODO: If the input elements are power-two vectors, we could convert this to
1760   // a new CONCAT_VECTORS node with elements that are half-wide.
1761   SmallVector<SDValue, 32> Elts;
1762   EVT EltVT = N->getValueType(0).getVectorElementType();
1763   for (const SDValue &Op : N->op_values()) {
1764     for (unsigned i = 0, e = Op.getValueType().getVectorNumElements();
1765          i != e; ++i) {
1766       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT,
1767                                  Op, DAG.getConstant(i, DL, TLI.getVectorIdxTy())));
1768
1769     }
1770   }
1771
1772   return DAG.getNode(ISD::BUILD_VECTOR, DL, N->getValueType(0), Elts);
1773 }
1774
1775 SDValue DAGTypeLegalizer::SplitVecOp_TruncateHelper(SDNode *N) {
1776   // The result type is legal, but the input type is illegal.  If splitting
1777   // ends up with the result type of each half still being legal, just
1778   // do that.  If, however, that would result in an illegal result type,
1779   // we can try to get more clever with power-two vectors. Specifically,
1780   // split the input type, but also widen the result element size, then
1781   // concatenate the halves and truncate again.  For example, consider a target
1782   // where v8i8 is legal and v8i32 is not (ARM, which doesn't have 256-bit
1783   // vectors). To perform a "%res = v8i8 trunc v8i32 %in" we do:
1784   //   %inlo = v4i32 extract_subvector %in, 0
1785   //   %inhi = v4i32 extract_subvector %in, 4
1786   //   %lo16 = v4i16 trunc v4i32 %inlo
1787   //   %hi16 = v4i16 trunc v4i32 %inhi
1788   //   %in16 = v8i16 concat_vectors v4i16 %lo16, v4i16 %hi16
1789   //   %res = v8i8 trunc v8i16 %in16
1790   //
1791   // Without this transform, the original truncate would end up being
1792   // scalarized, which is pretty much always a last resort.
1793   SDValue InVec = N->getOperand(0);
1794   EVT InVT = InVec->getValueType(0);
1795   EVT OutVT = N->getValueType(0);
1796   unsigned NumElements = OutVT.getVectorNumElements();
1797   bool IsFloat = OutVT.isFloatingPoint();
1798   
1799   // Widening should have already made sure this is a power-two vector
1800   // if we're trying to split it at all. assert() that's true, just in case.
1801   assert(!(NumElements & 1) && "Splitting vector, but not in half!");
1802
1803   unsigned InElementSize = InVT.getVectorElementType().getSizeInBits();
1804   unsigned OutElementSize = OutVT.getVectorElementType().getSizeInBits();
1805
1806   // If the input elements are only 1/2 the width of the result elements,
1807   // just use the normal splitting. Our trick only work if there's room
1808   // to split more than once.
1809   if (InElementSize <= OutElementSize * 2)
1810     return SplitVecOp_UnaryOp(N);
1811   SDLoc DL(N);
1812
1813   // Extract the halves of the input via extract_subvector.
1814   SDValue InLoVec, InHiVec;
1815   std::tie(InLoVec, InHiVec) = DAG.SplitVector(InVec, DL);
1816   // Truncate them to 1/2 the element size.
1817   EVT HalfElementVT = IsFloat ?
1818     EVT::getFloatingPointVT(InElementSize/2) :
1819     EVT::getIntegerVT(*DAG.getContext(), InElementSize/2);
1820   EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), HalfElementVT,
1821                                 NumElements/2);
1822   SDValue HalfLo = DAG.getNode(N->getOpcode(), DL, HalfVT, InLoVec);
1823   SDValue HalfHi = DAG.getNode(N->getOpcode(), DL, HalfVT, InHiVec);
1824   // Concatenate them to get the full intermediate truncation result.
1825   EVT InterVT = EVT::getVectorVT(*DAG.getContext(), HalfElementVT, NumElements);
1826   SDValue InterVec = DAG.getNode(ISD::CONCAT_VECTORS, DL, InterVT, HalfLo,
1827                                  HalfHi);
1828   // Now finish up by truncating all the way down to the original result
1829   // type. This should normally be something that ends up being legal directly,
1830   // but in theory if a target has very wide vectors and an annoyingly
1831   // restricted set of legal types, this split can chain to build things up.
1832   return IsFloat ?
1833     DAG.getNode(ISD::FP_ROUND, DL, OutVT, InterVec,
1834                 DAG.getTargetConstant(0, DL, TLI.getPointerTy())) :
1835     DAG.getNode(ISD::TRUNCATE, DL, OutVT, InterVec);
1836 }
1837
1838 SDValue DAGTypeLegalizer::SplitVecOp_VSETCC(SDNode *N) {
1839   assert(N->getValueType(0).isVector() &&
1840          N->getOperand(0).getValueType().isVector() &&
1841          "Operand types must be vectors");
1842   // The result has a legal vector type, but the input needs splitting.
1843   SDValue Lo0, Hi0, Lo1, Hi1, LoRes, HiRes;
1844   SDLoc DL(N);
1845   GetSplitVector(N->getOperand(0), Lo0, Hi0);
1846   GetSplitVector(N->getOperand(1), Lo1, Hi1);
1847   unsigned PartElements = Lo0.getValueType().getVectorNumElements();
1848   EVT PartResVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1, PartElements);
1849   EVT WideResVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1, 2*PartElements);
1850
1851   LoRes = DAG.getNode(ISD::SETCC, DL, PartResVT, Lo0, Lo1, N->getOperand(2));
1852   HiRes = DAG.getNode(ISD::SETCC, DL, PartResVT, Hi0, Hi1, N->getOperand(2));
1853   SDValue Con = DAG.getNode(ISD::CONCAT_VECTORS, DL, WideResVT, LoRes, HiRes);
1854   return PromoteTargetBoolean(Con, N->getValueType(0));
1855 }
1856
1857
1858 SDValue DAGTypeLegalizer::SplitVecOp_FP_ROUND(SDNode *N) {
1859   // The result has a legal vector type, but the input needs splitting.
1860   EVT ResVT = N->getValueType(0);
1861   SDValue Lo, Hi;
1862   SDLoc DL(N);
1863   GetSplitVector(N->getOperand(0), Lo, Hi);
1864   EVT InVT = Lo.getValueType();
1865
1866   EVT OutVT = EVT::getVectorVT(*DAG.getContext(), ResVT.getVectorElementType(),
1867                                InVT.getVectorNumElements());
1868
1869   Lo = DAG.getNode(ISD::FP_ROUND, DL, OutVT, Lo, N->getOperand(1));
1870   Hi = DAG.getNode(ISD::FP_ROUND, DL, OutVT, Hi, N->getOperand(1));
1871
1872   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
1873 }
1874
1875
1876
1877 //===----------------------------------------------------------------------===//
1878 //  Result Vector Widening
1879 //===----------------------------------------------------------------------===//
1880
1881 void DAGTypeLegalizer::WidenVectorResult(SDNode *N, unsigned ResNo) {
1882   DEBUG(dbgs() << "Widen node result " << ResNo << ": ";
1883         N->dump(&DAG);
1884         dbgs() << "\n");
1885
1886   // See if the target wants to custom widen this node.
1887   if (CustomWidenLowerNode(N, N->getValueType(ResNo)))
1888     return;
1889
1890   SDValue Res = SDValue();
1891   switch (N->getOpcode()) {
1892   default:
1893 #ifndef NDEBUG
1894     dbgs() << "WidenVectorResult #" << ResNo << ": ";
1895     N->dump(&DAG);
1896     dbgs() << "\n";
1897 #endif
1898     llvm_unreachable("Do not know how to widen the result of this operator!");
1899
1900   case ISD::MERGE_VALUES:      Res = WidenVecRes_MERGE_VALUES(N, ResNo); break;
1901   case ISD::BITCAST:           Res = WidenVecRes_BITCAST(N); break;
1902   case ISD::BUILD_VECTOR:      Res = WidenVecRes_BUILD_VECTOR(N); break;
1903   case ISD::CONCAT_VECTORS:    Res = WidenVecRes_CONCAT_VECTORS(N); break;
1904   case ISD::CONVERT_RNDSAT:    Res = WidenVecRes_CONVERT_RNDSAT(N); break;
1905   case ISD::EXTRACT_SUBVECTOR: Res = WidenVecRes_EXTRACT_SUBVECTOR(N); break;
1906   case ISD::FP_ROUND_INREG:    Res = WidenVecRes_InregOp(N); break;
1907   case ISD::INSERT_VECTOR_ELT: Res = WidenVecRes_INSERT_VECTOR_ELT(N); break;
1908   case ISD::LOAD:              Res = WidenVecRes_LOAD(N); break;
1909   case ISD::SCALAR_TO_VECTOR:  Res = WidenVecRes_SCALAR_TO_VECTOR(N); break;
1910   case ISD::SIGN_EXTEND_INREG: Res = WidenVecRes_InregOp(N); break;
1911   case ISD::VSELECT:
1912   case ISD::SELECT:            Res = WidenVecRes_SELECT(N); break;
1913   case ISD::SELECT_CC:         Res = WidenVecRes_SELECT_CC(N); break;
1914   case ISD::SETCC:             Res = WidenVecRes_SETCC(N); break;
1915   case ISD::UNDEF:             Res = WidenVecRes_UNDEF(N); break;
1916   case ISD::VECTOR_SHUFFLE:
1917     Res = WidenVecRes_VECTOR_SHUFFLE(cast<ShuffleVectorSDNode>(N));
1918     break;
1919   case ISD::MLOAD:
1920     Res = WidenVecRes_MLOAD(cast<MaskedLoadSDNode>(N));
1921     break;
1922
1923   case ISD::ADD:
1924   case ISD::AND:
1925   case ISD::MUL:
1926   case ISD::MULHS:
1927   case ISD::MULHU:
1928   case ISD::OR:
1929   case ISD::SUB:
1930   case ISD::XOR:
1931   case ISD::FMINNUM:
1932   case ISD::FMAXNUM:
1933     Res = WidenVecRes_Binary(N);
1934     break;
1935
1936   case ISD::FADD:
1937   case ISD::FCOPYSIGN:
1938   case ISD::FMUL:
1939   case ISD::FPOW:
1940   case ISD::FSUB:
1941   case ISD::FDIV:
1942   case ISD::FREM:
1943   case ISD::SDIV:
1944   case ISD::UDIV:
1945   case ISD::SREM:
1946   case ISD::UREM:
1947     Res = WidenVecRes_BinaryCanTrap(N);
1948     break;
1949
1950   case ISD::FPOWI:
1951     Res = WidenVecRes_POWI(N);
1952     break;
1953
1954   case ISD::SHL:
1955   case ISD::SRA:
1956   case ISD::SRL:
1957     Res = WidenVecRes_Shift(N);
1958     break;
1959
1960   case ISD::ANY_EXTEND:
1961   case ISD::FP_EXTEND:
1962   case ISD::FP_ROUND:
1963   case ISD::FP_TO_SINT:
1964   case ISD::FP_TO_UINT:
1965   case ISD::SIGN_EXTEND:
1966   case ISD::SINT_TO_FP:
1967   case ISD::TRUNCATE:
1968   case ISD::UINT_TO_FP:
1969   case ISD::ZERO_EXTEND:
1970     Res = WidenVecRes_Convert(N);
1971     break;
1972
1973   case ISD::BSWAP:
1974   case ISD::CTLZ:
1975   case ISD::CTPOP:
1976   case ISD::CTTZ:
1977   case ISD::FABS:
1978   case ISD::FCEIL:
1979   case ISD::FCOS:
1980   case ISD::FEXP:
1981   case ISD::FEXP2:
1982   case ISD::FFLOOR:
1983   case ISD::FLOG:
1984   case ISD::FLOG10:
1985   case ISD::FLOG2:
1986   case ISD::FNEARBYINT:
1987   case ISD::FNEG:
1988   case ISD::FRINT:
1989   case ISD::FROUND:
1990   case ISD::FSIN:
1991   case ISD::FSQRT:
1992   case ISD::FTRUNC:
1993     Res = WidenVecRes_Unary(N);
1994     break;
1995   case ISD::FMA:
1996     Res = WidenVecRes_Ternary(N);
1997     break;
1998   }
1999
2000   // If Res is null, the sub-method took care of registering the result.
2001   if (Res.getNode())
2002     SetWidenedVector(SDValue(N, ResNo), Res);
2003 }
2004
2005 SDValue DAGTypeLegalizer::WidenVecRes_Ternary(SDNode *N) {
2006   // Ternary op widening.
2007   SDLoc dl(N);
2008   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2009   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2010   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2011   SDValue InOp3 = GetWidenedVector(N->getOperand(2));
2012   return DAG.getNode(N->getOpcode(), dl, WidenVT, InOp1, InOp2, InOp3);
2013 }
2014
2015 SDValue DAGTypeLegalizer::WidenVecRes_Binary(SDNode *N) {
2016   // Binary op widening.
2017   SDLoc dl(N);
2018   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2019   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2020   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2021   return DAG.getNode(N->getOpcode(), dl, WidenVT, InOp1, InOp2);
2022 }
2023
2024 SDValue DAGTypeLegalizer::WidenVecRes_BinaryCanTrap(SDNode *N) {
2025   // Binary op widening for operations that can trap.
2026   unsigned Opcode = N->getOpcode();
2027   SDLoc dl(N);
2028   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2029   EVT WidenEltVT = WidenVT.getVectorElementType();
2030   EVT VT = WidenVT;
2031   unsigned NumElts =  VT.getVectorNumElements();
2032   while (!TLI.isTypeLegal(VT) && NumElts != 1) {
2033     NumElts = NumElts / 2;
2034     VT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NumElts);
2035   }
2036
2037   if (NumElts != 1 && !TLI.canOpTrap(N->getOpcode(), VT)) {
2038     // Operation doesn't trap so just widen as normal.
2039     SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2040     SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2041     return DAG.getNode(N->getOpcode(), dl, WidenVT, InOp1, InOp2);
2042   }
2043
2044   // No legal vector version so unroll the vector operation and then widen.
2045   if (NumElts == 1)
2046     return DAG.UnrollVectorOp(N, WidenVT.getVectorNumElements());
2047
2048   // Since the operation can trap, apply operation on the original vector.
2049   EVT MaxVT = VT;
2050   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2051   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2052   unsigned CurNumElts = N->getValueType(0).getVectorNumElements();
2053
2054   SmallVector<SDValue, 16> ConcatOps(CurNumElts);
2055   unsigned ConcatEnd = 0;  // Current ConcatOps index.
2056   int Idx = 0;        // Current Idx into input vectors.
2057
2058   // NumElts := greatest legal vector size (at most WidenVT)
2059   // while (orig. vector has unhandled elements) {
2060   //   take munches of size NumElts from the beginning and add to ConcatOps
2061   //   NumElts := next smaller supported vector size or 1
2062   // }
2063   while (CurNumElts != 0) {
2064     while (CurNumElts >= NumElts) {
2065       SDValue EOp1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, InOp1,
2066                                  DAG.getConstant(Idx, dl,
2067                                                  TLI.getVectorIdxTy()));
2068       SDValue EOp2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, InOp2,
2069                                  DAG.getConstant(Idx, dl,
2070                                                  TLI.getVectorIdxTy()));
2071       ConcatOps[ConcatEnd++] = DAG.getNode(Opcode, dl, VT, EOp1, EOp2);
2072       Idx += NumElts;
2073       CurNumElts -= NumElts;
2074     }
2075     do {
2076       NumElts = NumElts / 2;
2077       VT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NumElts);
2078     } while (!TLI.isTypeLegal(VT) && NumElts != 1);
2079
2080     if (NumElts == 1) {
2081       for (unsigned i = 0; i != CurNumElts; ++i, ++Idx) {
2082         SDValue EOp1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, WidenEltVT,
2083                                    InOp1,
2084                                    DAG.getConstant(Idx, dl,
2085                                                    TLI.getVectorIdxTy()));
2086         SDValue EOp2 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, WidenEltVT,
2087                                    InOp2,
2088                                    DAG.getConstant(Idx, dl,
2089                                                    TLI.getVectorIdxTy()));
2090         ConcatOps[ConcatEnd++] = DAG.getNode(Opcode, dl, WidenEltVT,
2091                                              EOp1, EOp2);
2092       }
2093       CurNumElts = 0;
2094     }
2095   }
2096
2097   // Check to see if we have a single operation with the widen type.
2098   if (ConcatEnd == 1) {
2099     VT = ConcatOps[0].getValueType();
2100     if (VT == WidenVT)
2101       return ConcatOps[0];
2102   }
2103
2104   // while (Some element of ConcatOps is not of type MaxVT) {
2105   //   From the end of ConcatOps, collect elements of the same type and put
2106   //   them into an op of the next larger supported type
2107   // }
2108   while (ConcatOps[ConcatEnd-1].getValueType() != MaxVT) {
2109     Idx = ConcatEnd - 1;
2110     VT = ConcatOps[Idx--].getValueType();
2111     while (Idx >= 0 && ConcatOps[Idx].getValueType() == VT)
2112       Idx--;
2113
2114     int NextSize = VT.isVector() ? VT.getVectorNumElements() : 1;
2115     EVT NextVT;
2116     do {
2117       NextSize *= 2;
2118       NextVT = EVT::getVectorVT(*DAG.getContext(), WidenEltVT, NextSize);
2119     } while (!TLI.isTypeLegal(NextVT));
2120
2121     if (!VT.isVector()) {
2122       // Scalar type, create an INSERT_VECTOR_ELEMENT of type NextVT
2123       SDValue VecOp = DAG.getUNDEF(NextVT);
2124       unsigned NumToInsert = ConcatEnd - Idx - 1;
2125       for (unsigned i = 0, OpIdx = Idx+1; i < NumToInsert; i++, OpIdx++) {
2126         VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NextVT, VecOp,
2127                             ConcatOps[OpIdx],
2128                             DAG.getConstant(i, dl, TLI.getVectorIdxTy()));
2129       }
2130       ConcatOps[Idx+1] = VecOp;
2131       ConcatEnd = Idx + 2;
2132     } else {
2133       // Vector type, create a CONCAT_VECTORS of type NextVT
2134       SDValue undefVec = DAG.getUNDEF(VT);
2135       unsigned OpsToConcat = NextSize/VT.getVectorNumElements();
2136       SmallVector<SDValue, 16> SubConcatOps(OpsToConcat);
2137       unsigned RealVals = ConcatEnd - Idx - 1;
2138       unsigned SubConcatEnd = 0;
2139       unsigned SubConcatIdx = Idx + 1;
2140       while (SubConcatEnd < RealVals)
2141         SubConcatOps[SubConcatEnd++] = ConcatOps[++Idx];
2142       while (SubConcatEnd < OpsToConcat)
2143         SubConcatOps[SubConcatEnd++] = undefVec;
2144       ConcatOps[SubConcatIdx] = DAG.getNode(ISD::CONCAT_VECTORS, dl,
2145                                             NextVT, SubConcatOps);
2146       ConcatEnd = SubConcatIdx + 1;
2147     }
2148   }
2149
2150   // Check to see if we have a single operation with the widen type.
2151   if (ConcatEnd == 1) {
2152     VT = ConcatOps[0].getValueType();
2153     if (VT == WidenVT)
2154       return ConcatOps[0];
2155   }
2156
2157   // add undefs of size MaxVT until ConcatOps grows to length of WidenVT
2158   unsigned NumOps = WidenVT.getVectorNumElements()/MaxVT.getVectorNumElements();
2159   if (NumOps != ConcatEnd ) {
2160     SDValue UndefVal = DAG.getUNDEF(MaxVT);
2161     for (unsigned j = ConcatEnd; j < NumOps; ++j)
2162       ConcatOps[j] = UndefVal;
2163   }
2164   return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
2165                      makeArrayRef(ConcatOps.data(), NumOps));
2166 }
2167
2168 SDValue DAGTypeLegalizer::WidenVecRes_Convert(SDNode *N) {
2169   SDValue InOp = N->getOperand(0);
2170   SDLoc DL(N);
2171
2172   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2173   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2174
2175   EVT InVT = InOp.getValueType();
2176   EVT InEltVT = InVT.getVectorElementType();
2177   EVT InWidenVT = EVT::getVectorVT(*DAG.getContext(), InEltVT, WidenNumElts);
2178
2179   unsigned Opcode = N->getOpcode();
2180   unsigned InVTNumElts = InVT.getVectorNumElements();
2181
2182   if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) {
2183     InOp = GetWidenedVector(N->getOperand(0));
2184     InVT = InOp.getValueType();
2185     InVTNumElts = InVT.getVectorNumElements();
2186     if (InVTNumElts == WidenNumElts) {
2187       if (N->getNumOperands() == 1)
2188         return DAG.getNode(Opcode, DL, WidenVT, InOp);
2189       return DAG.getNode(Opcode, DL, WidenVT, InOp, N->getOperand(1));
2190     }
2191   }
2192
2193   if (TLI.isTypeLegal(InWidenVT)) {
2194     // Because the result and the input are different vector types, widening
2195     // the result could create a legal type but widening the input might make
2196     // it an illegal type that might lead to repeatedly splitting the input
2197     // and then widening it. To avoid this, we widen the input only if
2198     // it results in a legal type.
2199     if (WidenNumElts % InVTNumElts == 0) {
2200       // Widen the input and call convert on the widened input vector.
2201       unsigned NumConcat = WidenNumElts/InVTNumElts;
2202       SmallVector<SDValue, 16> Ops(NumConcat);
2203       Ops[0] = InOp;
2204       SDValue UndefVal = DAG.getUNDEF(InVT);
2205       for (unsigned i = 1; i != NumConcat; ++i)
2206         Ops[i] = UndefVal;
2207       SDValue InVec = DAG.getNode(ISD::CONCAT_VECTORS, DL, InWidenVT, Ops);
2208       if (N->getNumOperands() == 1)
2209         return DAG.getNode(Opcode, DL, WidenVT, InVec);
2210       return DAG.getNode(Opcode, DL, WidenVT, InVec, N->getOperand(1));
2211     }
2212
2213     if (InVTNumElts % WidenNumElts == 0) {
2214       SDValue InVal = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InWidenVT, InOp,
2215                                   DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
2216       // Extract the input and convert the shorten input vector.
2217       if (N->getNumOperands() == 1)
2218         return DAG.getNode(Opcode, DL, WidenVT, InVal);
2219       return DAG.getNode(Opcode, DL, WidenVT, InVal, N->getOperand(1));
2220     }
2221   }
2222
2223   // Otherwise unroll into some nasty scalar code and rebuild the vector.
2224   SmallVector<SDValue, 16> Ops(WidenNumElts);
2225   EVT EltVT = WidenVT.getVectorElementType();
2226   unsigned MinElts = std::min(InVTNumElts, WidenNumElts);
2227   unsigned i;
2228   for (i=0; i < MinElts; ++i) {
2229     SDValue Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, InEltVT, InOp,
2230                               DAG.getConstant(i, DL, TLI.getVectorIdxTy()));
2231     if (N->getNumOperands() == 1)
2232       Ops[i] = DAG.getNode(Opcode, DL, EltVT, Val);
2233     else
2234       Ops[i] = DAG.getNode(Opcode, DL, EltVT, Val, N->getOperand(1));
2235   }
2236
2237   SDValue UndefVal = DAG.getUNDEF(EltVT);
2238   for (; i < WidenNumElts; ++i)
2239     Ops[i] = UndefVal;
2240
2241   return DAG.getNode(ISD::BUILD_VECTOR, DL, WidenVT, Ops);
2242 }
2243
2244 SDValue DAGTypeLegalizer::WidenVecRes_POWI(SDNode *N) {
2245   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2246   SDValue InOp = GetWidenedVector(N->getOperand(0));
2247   SDValue ShOp = N->getOperand(1);
2248   return DAG.getNode(N->getOpcode(), SDLoc(N), WidenVT, InOp, ShOp);
2249 }
2250
2251 SDValue DAGTypeLegalizer::WidenVecRes_Shift(SDNode *N) {
2252   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2253   SDValue InOp = GetWidenedVector(N->getOperand(0));
2254   SDValue ShOp = N->getOperand(1);
2255
2256   EVT ShVT = ShOp.getValueType();
2257   if (getTypeAction(ShVT) == TargetLowering::TypeWidenVector) {
2258     ShOp = GetWidenedVector(ShOp);
2259     ShVT = ShOp.getValueType();
2260   }
2261   EVT ShWidenVT = EVT::getVectorVT(*DAG.getContext(),
2262                                    ShVT.getVectorElementType(),
2263                                    WidenVT.getVectorNumElements());
2264   if (ShVT != ShWidenVT)
2265     ShOp = ModifyToType(ShOp, ShWidenVT);
2266
2267   return DAG.getNode(N->getOpcode(), SDLoc(N), WidenVT, InOp, ShOp);
2268 }
2269
2270 SDValue DAGTypeLegalizer::WidenVecRes_Unary(SDNode *N) {
2271   // Unary op widening.
2272   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2273   SDValue InOp = GetWidenedVector(N->getOperand(0));
2274   return DAG.getNode(N->getOpcode(), SDLoc(N), WidenVT, InOp);
2275 }
2276
2277 SDValue DAGTypeLegalizer::WidenVecRes_InregOp(SDNode *N) {
2278   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2279   EVT ExtVT = EVT::getVectorVT(*DAG.getContext(),
2280                                cast<VTSDNode>(N->getOperand(1))->getVT()
2281                                  .getVectorElementType(),
2282                                WidenVT.getVectorNumElements());
2283   SDValue WidenLHS = GetWidenedVector(N->getOperand(0));
2284   return DAG.getNode(N->getOpcode(), SDLoc(N),
2285                      WidenVT, WidenLHS, DAG.getValueType(ExtVT));
2286 }
2287
2288 SDValue DAGTypeLegalizer::WidenVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) {
2289   SDValue WidenVec = DisintegrateMERGE_VALUES(N, ResNo);
2290   return GetWidenedVector(WidenVec);
2291 }
2292
2293 SDValue DAGTypeLegalizer::WidenVecRes_BITCAST(SDNode *N) {
2294   SDValue InOp = N->getOperand(0);
2295   EVT InVT = InOp.getValueType();
2296   EVT VT = N->getValueType(0);
2297   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2298   SDLoc dl(N);
2299
2300   switch (getTypeAction(InVT)) {
2301   case TargetLowering::TypeLegal:
2302     break;
2303   case TargetLowering::TypePromoteInteger:
2304     // If the incoming type is a vector that is being promoted, then
2305     // we know that the elements are arranged differently and that we
2306     // must perform the conversion using a stack slot.
2307     if (InVT.isVector())
2308       break;
2309
2310     // If the InOp is promoted to the same size, convert it.  Otherwise,
2311     // fall out of the switch and widen the promoted input.
2312     InOp = GetPromotedInteger(InOp);
2313     InVT = InOp.getValueType();
2314     if (WidenVT.bitsEq(InVT))
2315       return DAG.getNode(ISD::BITCAST, dl, WidenVT, InOp);
2316     break;
2317   case TargetLowering::TypeSoftenFloat:
2318   case TargetLowering::TypePromoteFloat:
2319   case TargetLowering::TypeExpandInteger:
2320   case TargetLowering::TypeExpandFloat:
2321   case TargetLowering::TypeScalarizeVector:
2322   case TargetLowering::TypeSplitVector:
2323     break;
2324   case TargetLowering::TypeWidenVector:
2325     // If the InOp is widened to the same size, convert it.  Otherwise, fall
2326     // out of the switch and widen the widened input.
2327     InOp = GetWidenedVector(InOp);
2328     InVT = InOp.getValueType();
2329     if (WidenVT.bitsEq(InVT))
2330       // The input widens to the same size. Convert to the widen value.
2331       return DAG.getNode(ISD::BITCAST, dl, WidenVT, InOp);
2332     break;
2333   }
2334
2335   unsigned WidenSize = WidenVT.getSizeInBits();
2336   unsigned InSize = InVT.getSizeInBits();
2337   // x86mmx is not an acceptable vector element type, so don't try.
2338   if (WidenSize % InSize == 0 && InVT != MVT::x86mmx) {
2339     // Determine new input vector type.  The new input vector type will use
2340     // the same element type (if its a vector) or use the input type as a
2341     // vector.  It is the same size as the type to widen to.
2342     EVT NewInVT;
2343     unsigned NewNumElts = WidenSize / InSize;
2344     if (InVT.isVector()) {
2345       EVT InEltVT = InVT.getVectorElementType();
2346       NewInVT = EVT::getVectorVT(*DAG.getContext(), InEltVT,
2347                                  WidenSize / InEltVT.getSizeInBits());
2348     } else {
2349       NewInVT = EVT::getVectorVT(*DAG.getContext(), InVT, NewNumElts);
2350     }
2351
2352     if (TLI.isTypeLegal(NewInVT)) {
2353       // Because the result and the input are different vector types, widening
2354       // the result could create a legal type but widening the input might make
2355       // it an illegal type that might lead to repeatedly splitting the input
2356       // and then widening it. To avoid this, we widen the input only if
2357       // it results in a legal type.
2358       SmallVector<SDValue, 16> Ops(NewNumElts);
2359       SDValue UndefVal = DAG.getUNDEF(InVT);
2360       Ops[0] = InOp;
2361       for (unsigned i = 1; i < NewNumElts; ++i)
2362         Ops[i] = UndefVal;
2363
2364       SDValue NewVec;
2365       if (InVT.isVector())
2366         NewVec = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewInVT, Ops);
2367       else
2368         NewVec = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, Ops);
2369       return DAG.getNode(ISD::BITCAST, dl, WidenVT, NewVec);
2370     }
2371   }
2372
2373   return CreateStackStoreLoad(InOp, WidenVT);
2374 }
2375
2376 SDValue DAGTypeLegalizer::WidenVecRes_BUILD_VECTOR(SDNode *N) {
2377   SDLoc dl(N);
2378   // Build a vector with undefined for the new nodes.
2379   EVT VT = N->getValueType(0);
2380
2381   // Integer BUILD_VECTOR operands may be larger than the node's vector element
2382   // type. The UNDEFs need to have the same type as the existing operands.
2383   EVT EltVT = N->getOperand(0).getValueType();
2384   unsigned NumElts = VT.getVectorNumElements();
2385
2386   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2387   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2388
2389   SmallVector<SDValue, 16> NewOps(N->op_begin(), N->op_end());
2390   assert(WidenNumElts >= NumElts && "Shrinking vector instead of widening!");
2391   NewOps.append(WidenNumElts - NumElts, DAG.getUNDEF(EltVT));
2392
2393   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, NewOps);
2394 }
2395
2396 SDValue DAGTypeLegalizer::WidenVecRes_CONCAT_VECTORS(SDNode *N) {
2397   EVT InVT = N->getOperand(0).getValueType();
2398   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2399   SDLoc dl(N);
2400   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2401   unsigned NumInElts = InVT.getVectorNumElements();
2402   unsigned NumOperands = N->getNumOperands();
2403
2404   bool InputWidened = false; // Indicates we need to widen the input.
2405   if (getTypeAction(InVT) != TargetLowering::TypeWidenVector) {
2406     if (WidenVT.getVectorNumElements() % InVT.getVectorNumElements() == 0) {
2407       // Add undef vectors to widen to correct length.
2408       unsigned NumConcat = WidenVT.getVectorNumElements() /
2409                            InVT.getVectorNumElements();
2410       SDValue UndefVal = DAG.getUNDEF(InVT);
2411       SmallVector<SDValue, 16> Ops(NumConcat);
2412       for (unsigned i=0; i < NumOperands; ++i)
2413         Ops[i] = N->getOperand(i);
2414       for (unsigned i = NumOperands; i != NumConcat; ++i)
2415         Ops[i] = UndefVal;
2416       return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, Ops);
2417     }
2418   } else {
2419     InputWidened = true;
2420     if (WidenVT == TLI.getTypeToTransformTo(*DAG.getContext(), InVT)) {
2421       // The inputs and the result are widen to the same value.
2422       unsigned i;
2423       for (i=1; i < NumOperands; ++i)
2424         if (N->getOperand(i).getOpcode() != ISD::UNDEF)
2425           break;
2426
2427       if (i == NumOperands)
2428         // Everything but the first operand is an UNDEF so just return the
2429         // widened first operand.
2430         return GetWidenedVector(N->getOperand(0));
2431
2432       if (NumOperands == 2) {
2433         // Replace concat of two operands with a shuffle.
2434         SmallVector<int, 16> MaskOps(WidenNumElts, -1);
2435         for (unsigned i = 0; i < NumInElts; ++i) {
2436           MaskOps[i] = i;
2437           MaskOps[i + NumInElts] = i + WidenNumElts;
2438         }
2439         return DAG.getVectorShuffle(WidenVT, dl,
2440                                     GetWidenedVector(N->getOperand(0)),
2441                                     GetWidenedVector(N->getOperand(1)),
2442                                     &MaskOps[0]);
2443       }
2444     }
2445   }
2446
2447   // Fall back to use extracts and build vector.
2448   EVT EltVT = WidenVT.getVectorElementType();
2449   SmallVector<SDValue, 16> Ops(WidenNumElts);
2450   unsigned Idx = 0;
2451   for (unsigned i=0; i < NumOperands; ++i) {
2452     SDValue InOp = N->getOperand(i);
2453     if (InputWidened)
2454       InOp = GetWidenedVector(InOp);
2455     for (unsigned j=0; j < NumInElts; ++j)
2456       Ops[Idx++] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
2457                                DAG.getConstant(j, dl, TLI.getVectorIdxTy()));
2458   }
2459   SDValue UndefVal = DAG.getUNDEF(EltVT);
2460   for (; Idx < WidenNumElts; ++Idx)
2461     Ops[Idx] = UndefVal;
2462   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, Ops);
2463 }
2464
2465 SDValue DAGTypeLegalizer::WidenVecRes_CONVERT_RNDSAT(SDNode *N) {
2466   SDLoc dl(N);
2467   SDValue InOp  = N->getOperand(0);
2468   SDValue RndOp = N->getOperand(3);
2469   SDValue SatOp = N->getOperand(4);
2470
2471   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2472   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2473
2474   EVT InVT = InOp.getValueType();
2475   EVT InEltVT = InVT.getVectorElementType();
2476   EVT InWidenVT = EVT::getVectorVT(*DAG.getContext(), InEltVT, WidenNumElts);
2477
2478   SDValue DTyOp = DAG.getValueType(WidenVT);
2479   SDValue STyOp = DAG.getValueType(InWidenVT);
2480   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
2481
2482   unsigned InVTNumElts = InVT.getVectorNumElements();
2483   if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) {
2484     InOp = GetWidenedVector(InOp);
2485     InVT = InOp.getValueType();
2486     InVTNumElts = InVT.getVectorNumElements();
2487     if (InVTNumElts == WidenNumElts)
2488       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
2489                                   SatOp, CvtCode);
2490   }
2491
2492   if (TLI.isTypeLegal(InWidenVT)) {
2493     // Because the result and the input are different vector types, widening
2494     // the result could create a legal type but widening the input might make
2495     // it an illegal type that might lead to repeatedly splitting the input
2496     // and then widening it. To avoid this, we widen the input only if
2497     // it results in a legal type.
2498     if (WidenNumElts % InVTNumElts == 0) {
2499       // Widen the input and call convert on the widened input vector.
2500       unsigned NumConcat = WidenNumElts/InVTNumElts;
2501       SmallVector<SDValue, 16> Ops(NumConcat);
2502       Ops[0] = InOp;
2503       SDValue UndefVal = DAG.getUNDEF(InVT);
2504       for (unsigned i = 1; i != NumConcat; ++i)
2505         Ops[i] = UndefVal;
2506
2507       InOp = DAG.getNode(ISD::CONCAT_VECTORS, dl, InWidenVT, Ops);
2508       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
2509                                   SatOp, CvtCode);
2510     }
2511
2512     if (InVTNumElts % WidenNumElts == 0) {
2513       // Extract the input and convert the shorten input vector.
2514       InOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, InWidenVT, InOp,
2515                          DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
2516       return DAG.getConvertRndSat(WidenVT, dl, InOp, DTyOp, STyOp, RndOp,
2517                                   SatOp, CvtCode);
2518     }
2519   }
2520
2521   // Otherwise unroll into some nasty scalar code and rebuild the vector.
2522   SmallVector<SDValue, 16> Ops(WidenNumElts);
2523   EVT EltVT = WidenVT.getVectorElementType();
2524   DTyOp = DAG.getValueType(EltVT);
2525   STyOp = DAG.getValueType(InEltVT);
2526
2527   unsigned MinElts = std::min(InVTNumElts, WidenNumElts);
2528   unsigned i;
2529   for (i=0; i < MinElts; ++i) {
2530     SDValue ExtVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, InEltVT, InOp,
2531                                  DAG.getConstant(i, dl, TLI.getVectorIdxTy()));
2532     Ops[i] = DAG.getConvertRndSat(WidenVT, dl, ExtVal, DTyOp, STyOp, RndOp,
2533                                   SatOp, CvtCode);
2534   }
2535
2536   SDValue UndefVal = DAG.getUNDEF(EltVT);
2537   for (; i < WidenNumElts; ++i)
2538     Ops[i] = UndefVal;
2539
2540   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, Ops);
2541 }
2542
2543 SDValue DAGTypeLegalizer::WidenVecRes_EXTRACT_SUBVECTOR(SDNode *N) {
2544   EVT      VT = N->getValueType(0);
2545   EVT      WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2546   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2547   SDValue  InOp = N->getOperand(0);
2548   SDValue  Idx  = N->getOperand(1);
2549   SDLoc dl(N);
2550
2551   if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
2552     InOp = GetWidenedVector(InOp);
2553
2554   EVT InVT = InOp.getValueType();
2555
2556   // Check if we can just return the input vector after widening.
2557   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
2558   if (IdxVal == 0 && InVT == WidenVT)
2559     return InOp;
2560
2561   // Check if we can extract from the vector.
2562   unsigned InNumElts = InVT.getVectorNumElements();
2563   if (IdxVal % WidenNumElts == 0 && IdxVal + WidenNumElts < InNumElts)
2564     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, InOp, Idx);
2565
2566   // We could try widening the input to the right length but for now, extract
2567   // the original elements, fill the rest with undefs and build a vector.
2568   SmallVector<SDValue, 16> Ops(WidenNumElts);
2569   EVT EltVT = VT.getVectorElementType();
2570   unsigned NumElts = VT.getVectorNumElements();
2571   unsigned i;
2572   for (i=0; i < NumElts; ++i)
2573     Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
2574                          DAG.getConstant(IdxVal + i, dl, TLI.getVectorIdxTy()));
2575
2576   SDValue UndefVal = DAG.getUNDEF(EltVT);
2577   for (; i < WidenNumElts; ++i)
2578     Ops[i] = UndefVal;
2579   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, Ops);
2580 }
2581
2582 SDValue DAGTypeLegalizer::WidenVecRes_INSERT_VECTOR_ELT(SDNode *N) {
2583   SDValue InOp = GetWidenedVector(N->getOperand(0));
2584   return DAG.getNode(ISD::INSERT_VECTOR_ELT, SDLoc(N),
2585                      InOp.getValueType(), InOp,
2586                      N->getOperand(1), N->getOperand(2));
2587 }
2588
2589 SDValue DAGTypeLegalizer::WidenVecRes_LOAD(SDNode *N) {
2590   LoadSDNode *LD = cast<LoadSDNode>(N);
2591   ISD::LoadExtType ExtType = LD->getExtensionType();
2592
2593   SDValue Result;
2594   SmallVector<SDValue, 16> LdChain;  // Chain for the series of load
2595   if (ExtType != ISD::NON_EXTLOAD)
2596     Result = GenWidenVectorExtLoads(LdChain, LD, ExtType);
2597   else
2598     Result = GenWidenVectorLoads(LdChain, LD);
2599
2600   // If we generate a single load, we can use that for the chain.  Otherwise,
2601   // build a factor node to remember the multiple loads are independent and
2602   // chain to that.
2603   SDValue NewChain;
2604   if (LdChain.size() == 1)
2605     NewChain = LdChain[0];
2606   else
2607     NewChain = DAG.getNode(ISD::TokenFactor, SDLoc(LD), MVT::Other, LdChain);
2608
2609   // Modified the chain - switch anything that used the old chain to use
2610   // the new one.
2611   ReplaceValueWith(SDValue(N, 1), NewChain);
2612
2613   return Result;
2614 }
2615
2616 SDValue DAGTypeLegalizer::WidenVecRes_MLOAD(MaskedLoadSDNode *N) {
2617   
2618   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(),N->getValueType(0));
2619   SDValue Mask = N->getMask();
2620   EVT MaskVT = Mask.getValueType();
2621   SDValue Src0 = GetWidenedVector(N->getSrc0());
2622   ISD::LoadExtType ExtType = N->getExtensionType();
2623   SDLoc dl(N);
2624
2625   if (getTypeAction(MaskVT) == TargetLowering::TypeWidenVector)
2626     Mask = GetWidenedVector(Mask);
2627   else {
2628     EVT BoolVT = getSetCCResultType(WidenVT);
2629
2630     // We can't use ModifyToType() because we should fill the mask with
2631     // zeroes
2632     unsigned WidenNumElts = BoolVT.getVectorNumElements();
2633     unsigned MaskNumElts = MaskVT.getVectorNumElements();
2634
2635     unsigned NumConcat = WidenNumElts / MaskNumElts;
2636     SmallVector<SDValue, 16> Ops(NumConcat);
2637     SDValue ZeroVal = DAG.getConstant(0, dl, MaskVT);
2638     Ops[0] = Mask;
2639     for (unsigned i = 1; i != NumConcat; ++i)
2640       Ops[i] = ZeroVal;
2641
2642     Mask = DAG.getNode(ISD::CONCAT_VECTORS, dl, BoolVT, Ops);
2643   }
2644
2645   SDValue Res = DAG.getMaskedLoad(WidenVT, dl, N->getChain(), N->getBasePtr(),
2646                                   Mask, Src0, N->getMemoryVT(),
2647                                   N->getMemOperand(), ExtType);
2648   // Legalized the chain result - switch anything that used the old chain to
2649   // use the new one.
2650   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
2651   return Res;
2652 }
2653
2654 SDValue DAGTypeLegalizer::WidenVecRes_SCALAR_TO_VECTOR(SDNode *N) {
2655   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2656   return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(N),
2657                      WidenVT, N->getOperand(0));
2658 }
2659
2660 SDValue DAGTypeLegalizer::WidenVecRes_SELECT(SDNode *N) {
2661   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2662   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2663
2664   SDValue Cond1 = N->getOperand(0);
2665   EVT CondVT = Cond1.getValueType();
2666   if (CondVT.isVector()) {
2667     EVT CondEltVT = CondVT.getVectorElementType();
2668     EVT CondWidenVT =  EVT::getVectorVT(*DAG.getContext(),
2669                                         CondEltVT, WidenNumElts);
2670     if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector)
2671       Cond1 = GetWidenedVector(Cond1);
2672
2673     // If we have to split the condition there is no point in widening the
2674     // select. This would result in an cycle of widening the select ->
2675     // widening the condition operand -> splitting the condition operand ->
2676     // splitting the select -> widening the select. Instead split this select
2677     // further and widen the resulting type.
2678     if (getTypeAction(CondVT) == TargetLowering::TypeSplitVector) {
2679       SDValue SplitSelect = SplitVecOp_VSELECT(N, 0);
2680       SDValue Res = ModifyToType(SplitSelect, WidenVT);
2681       return Res;
2682     }
2683
2684     if (Cond1.getValueType() != CondWidenVT)
2685       Cond1 = ModifyToType(Cond1, CondWidenVT);
2686   }
2687
2688   SDValue InOp1 = GetWidenedVector(N->getOperand(1));
2689   SDValue InOp2 = GetWidenedVector(N->getOperand(2));
2690   assert(InOp1.getValueType() == WidenVT && InOp2.getValueType() == WidenVT);
2691   return DAG.getNode(N->getOpcode(), SDLoc(N),
2692                      WidenVT, Cond1, InOp1, InOp2);
2693 }
2694
2695 SDValue DAGTypeLegalizer::WidenVecRes_SELECT_CC(SDNode *N) {
2696   SDValue InOp1 = GetWidenedVector(N->getOperand(2));
2697   SDValue InOp2 = GetWidenedVector(N->getOperand(3));
2698   return DAG.getNode(ISD::SELECT_CC, SDLoc(N),
2699                      InOp1.getValueType(), N->getOperand(0),
2700                      N->getOperand(1), InOp1, InOp2, N->getOperand(4));
2701 }
2702
2703 SDValue DAGTypeLegalizer::WidenVecRes_SETCC(SDNode *N) {
2704   assert(N->getValueType(0).isVector() ==
2705          N->getOperand(0).getValueType().isVector() &&
2706          "Scalar/Vector type mismatch");
2707   if (N->getValueType(0).isVector()) return WidenVecRes_VSETCC(N);
2708
2709   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2710   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2711   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2712   return DAG.getNode(ISD::SETCC, SDLoc(N), WidenVT,
2713                      InOp1, InOp2, N->getOperand(2));
2714 }
2715
2716 SDValue DAGTypeLegalizer::WidenVecRes_UNDEF(SDNode *N) {
2717  EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2718  return DAG.getUNDEF(WidenVT);
2719 }
2720
2721 SDValue DAGTypeLegalizer::WidenVecRes_VECTOR_SHUFFLE(ShuffleVectorSDNode *N) {
2722   EVT VT = N->getValueType(0);
2723   SDLoc dl(N);
2724
2725   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2726   unsigned NumElts = VT.getVectorNumElements();
2727   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2728
2729   SDValue InOp1 = GetWidenedVector(N->getOperand(0));
2730   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2731
2732   // Adjust mask based on new input vector length.
2733   SmallVector<int, 16> NewMask;
2734   for (unsigned i = 0; i != NumElts; ++i) {
2735     int Idx = N->getMaskElt(i);
2736     if (Idx < (int)NumElts)
2737       NewMask.push_back(Idx);
2738     else
2739       NewMask.push_back(Idx - NumElts + WidenNumElts);
2740   }
2741   for (unsigned i = NumElts; i != WidenNumElts; ++i)
2742     NewMask.push_back(-1);
2743   return DAG.getVectorShuffle(WidenVT, dl, InOp1, InOp2, &NewMask[0]);
2744 }
2745
2746 SDValue DAGTypeLegalizer::WidenVecRes_VSETCC(SDNode *N) {
2747   assert(N->getValueType(0).isVector() &&
2748          N->getOperand(0).getValueType().isVector() &&
2749          "Operands must be vectors");
2750   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2751   unsigned WidenNumElts = WidenVT.getVectorNumElements();
2752
2753   SDValue InOp1 = N->getOperand(0);
2754   EVT InVT = InOp1.getValueType();
2755   assert(InVT.isVector() && "can not widen non-vector type");
2756   EVT WidenInVT = EVT::getVectorVT(*DAG.getContext(),
2757                                    InVT.getVectorElementType(), WidenNumElts);
2758
2759   // The input and output types often differ here, and it could be that while
2760   // we'd prefer to widen the result type, the input operands have been split.
2761   // In this case, we also need to split the result of this node as well.
2762   if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) {
2763     SDValue SplitVSetCC = SplitVecOp_VSETCC(N);
2764     SDValue Res = ModifyToType(SplitVSetCC, WidenVT);
2765     return Res;
2766   }
2767
2768   InOp1 = GetWidenedVector(InOp1);
2769   SDValue InOp2 = GetWidenedVector(N->getOperand(1));
2770
2771   // Assume that the input and output will be widen appropriately.  If not,
2772   // we will have to unroll it at some point.
2773   assert(InOp1.getValueType() == WidenInVT &&
2774          InOp2.getValueType() == WidenInVT &&
2775          "Input not widened to expected type!");
2776   (void)WidenInVT;
2777   return DAG.getNode(ISD::SETCC, SDLoc(N),
2778                      WidenVT, InOp1, InOp2, N->getOperand(2));
2779 }
2780
2781
2782 //===----------------------------------------------------------------------===//
2783 // Widen Vector Operand
2784 //===----------------------------------------------------------------------===//
2785 bool DAGTypeLegalizer::WidenVectorOperand(SDNode *N, unsigned OpNo) {
2786   DEBUG(dbgs() << "Widen node operand " << OpNo << ": ";
2787         N->dump(&DAG);
2788         dbgs() << "\n");
2789   SDValue Res = SDValue();
2790
2791   // See if the target wants to custom widen this node.
2792   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
2793     return false;
2794
2795   switch (N->getOpcode()) {
2796   default:
2797 #ifndef NDEBUG
2798     dbgs() << "WidenVectorOperand op #" << OpNo << ": ";
2799     N->dump(&DAG);
2800     dbgs() << "\n";
2801 #endif
2802     llvm_unreachable("Do not know how to widen this operator's operand!");
2803
2804   case ISD::BITCAST:            Res = WidenVecOp_BITCAST(N); break;
2805   case ISD::CONCAT_VECTORS:     Res = WidenVecOp_CONCAT_VECTORS(N); break;
2806   case ISD::EXTRACT_SUBVECTOR:  Res = WidenVecOp_EXTRACT_SUBVECTOR(N); break;
2807   case ISD::EXTRACT_VECTOR_ELT: Res = WidenVecOp_EXTRACT_VECTOR_ELT(N); break;
2808   case ISD::STORE:              Res = WidenVecOp_STORE(N); break;
2809   case ISD::MSTORE:             Res = WidenVecOp_MSTORE(N, OpNo); break;
2810   case ISD::SETCC:              Res = WidenVecOp_SETCC(N); break;
2811
2812   case ISD::ANY_EXTEND:
2813   case ISD::SIGN_EXTEND:
2814   case ISD::ZERO_EXTEND:
2815     Res = WidenVecOp_EXTEND(N);
2816     break;
2817
2818   case ISD::FP_EXTEND:
2819   case ISD::FP_TO_SINT:
2820   case ISD::FP_TO_UINT:
2821   case ISD::SINT_TO_FP:
2822   case ISD::UINT_TO_FP:
2823   case ISD::TRUNCATE:
2824     Res = WidenVecOp_Convert(N);
2825     break;
2826   }
2827
2828   // If Res is null, the sub-method took care of registering the result.
2829   if (!Res.getNode()) return false;
2830
2831   // If the result is N, the sub-method updated N in place.  Tell the legalizer
2832   // core about this.
2833   if (Res.getNode() == N)
2834     return true;
2835
2836
2837   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
2838          "Invalid operand expansion");
2839
2840   ReplaceValueWith(SDValue(N, 0), Res);
2841   return false;
2842 }
2843
2844 SDValue DAGTypeLegalizer::WidenVecOp_EXTEND(SDNode *N) {
2845   SDLoc DL(N);
2846   EVT VT = N->getValueType(0);
2847
2848   SDValue InOp = N->getOperand(0);
2849   // If some legalization strategy other than widening is used on the operand,
2850   // we can't safely assume that just extending the low lanes is the correct
2851   // transformation.
2852   if (getTypeAction(InOp.getValueType()) != TargetLowering::TypeWidenVector)
2853     return WidenVecOp_Convert(N);
2854   InOp = GetWidenedVector(InOp);
2855   assert(VT.getVectorNumElements() <
2856              InOp.getValueType().getVectorNumElements() &&
2857          "Input wasn't widened!");
2858
2859   // We may need to further widen the operand until it has the same total
2860   // vector size as the result.
2861   EVT InVT = InOp.getValueType();
2862   if (InVT.getSizeInBits() != VT.getSizeInBits()) {
2863     EVT InEltVT = InVT.getVectorElementType();
2864     for (int i = MVT::FIRST_VECTOR_VALUETYPE, e = MVT::LAST_VECTOR_VALUETYPE; i < e; ++i) {
2865       EVT FixedVT = (MVT::SimpleValueType)i;
2866       EVT FixedEltVT = FixedVT.getVectorElementType();
2867       if (TLI.isTypeLegal(FixedVT) &&
2868           FixedVT.getSizeInBits() == VT.getSizeInBits() &&
2869           FixedEltVT == InEltVT) {
2870         assert(FixedVT.getVectorNumElements() >= VT.getVectorNumElements() &&
2871                "Not enough elements in the fixed type for the operand!");
2872         assert(FixedVT.getVectorNumElements() != InVT.getVectorNumElements() &&
2873                "We can't have the same type as we started with!");
2874         if (FixedVT.getVectorNumElements() > InVT.getVectorNumElements())
2875           InOp = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, FixedVT,
2876                              DAG.getUNDEF(FixedVT), InOp,
2877                              DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
2878         else
2879           InOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, FixedVT, InOp,
2880                              DAG.getConstant(0, DL, TLI.getVectorIdxTy()));
2881         break;
2882       }
2883     }
2884     InVT = InOp.getValueType();
2885     if (InVT.getSizeInBits() != VT.getSizeInBits())
2886       // We couldn't find a legal vector type that was a widening of the input
2887       // and could be extended in-register to the result type, so we have to
2888       // scalarize.
2889       return WidenVecOp_Convert(N);
2890   }
2891
2892   // Use special DAG nodes to represent the operation of extending the
2893   // low lanes.
2894   switch (N->getOpcode()) {
2895   default:
2896     llvm_unreachable("Extend legalization on on extend operation!");
2897   case ISD::ANY_EXTEND:
2898     return DAG.getAnyExtendVectorInReg(InOp, DL, VT);
2899   case ISD::SIGN_EXTEND:
2900     return DAG.getSignExtendVectorInReg(InOp, DL, VT);
2901   case ISD::ZERO_EXTEND:
2902     return DAG.getZeroExtendVectorInReg(InOp, DL, VT);
2903   }
2904 }
2905
2906 SDValue DAGTypeLegalizer::WidenVecOp_Convert(SDNode *N) {
2907   // Since the result is legal and the input is illegal, it is unlikely
2908   // that we can fix the input to a legal type so unroll the convert
2909   // into some scalar code and create a nasty build vector.
2910   EVT VT = N->getValueType(0);
2911   EVT EltVT = VT.getVectorElementType();
2912   SDLoc dl(N);
2913   unsigned NumElts = VT.getVectorNumElements();
2914   SDValue InOp = N->getOperand(0);
2915   if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
2916     InOp = GetWidenedVector(InOp);
2917   EVT InVT = InOp.getValueType();
2918   EVT InEltVT = InVT.getVectorElementType();
2919
2920   unsigned Opcode = N->getOpcode();
2921   SmallVector<SDValue, 16> Ops(NumElts);
2922   for (unsigned i=0; i < NumElts; ++i)
2923     Ops[i] = DAG.getNode(Opcode, dl, EltVT,
2924                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, InEltVT, InOp,
2925                                      DAG.getConstant(i, dl,
2926                                                      TLI.getVectorIdxTy())));
2927
2928   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
2929 }
2930
2931 SDValue DAGTypeLegalizer::WidenVecOp_BITCAST(SDNode *N) {
2932   EVT VT = N->getValueType(0);
2933   SDValue InOp = GetWidenedVector(N->getOperand(0));
2934   EVT InWidenVT = InOp.getValueType();
2935   SDLoc dl(N);
2936
2937   // Check if we can convert between two legal vector types and extract.
2938   unsigned InWidenSize = InWidenVT.getSizeInBits();
2939   unsigned Size = VT.getSizeInBits();
2940   // x86mmx is not an acceptable vector element type, so don't try.
2941   if (InWidenSize % Size == 0 && !VT.isVector() && VT != MVT::x86mmx) {
2942     unsigned NewNumElts = InWidenSize / Size;
2943     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), VT, NewNumElts);
2944     if (TLI.isTypeLegal(NewVT)) {
2945       SDValue BitOp = DAG.getNode(ISD::BITCAST, dl, NewVT, InOp);
2946       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, BitOp,
2947                          DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
2948     }
2949   }
2950
2951   return CreateStackStoreLoad(InOp, VT);
2952 }
2953
2954 SDValue DAGTypeLegalizer::WidenVecOp_CONCAT_VECTORS(SDNode *N) {
2955   // If the input vector is not legal, it is likely that we will not find a
2956   // legal vector of the same size. Replace the concatenate vector with a
2957   // nasty build vector.
2958   EVT VT = N->getValueType(0);
2959   EVT EltVT = VT.getVectorElementType();
2960   SDLoc dl(N);
2961   unsigned NumElts = VT.getVectorNumElements();
2962   SmallVector<SDValue, 16> Ops(NumElts);
2963
2964   EVT InVT = N->getOperand(0).getValueType();
2965   unsigned NumInElts = InVT.getVectorNumElements();
2966
2967   unsigned Idx = 0;
2968   unsigned NumOperands = N->getNumOperands();
2969   for (unsigned i=0; i < NumOperands; ++i) {
2970     SDValue InOp = N->getOperand(i);
2971     if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector)
2972       InOp = GetWidenedVector(InOp);
2973     for (unsigned j=0; j < NumInElts; ++j)
2974       Ops[Idx++] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
2975                                DAG.getConstant(j, dl, TLI.getVectorIdxTy()));
2976   }
2977   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
2978 }
2979
2980 SDValue DAGTypeLegalizer::WidenVecOp_EXTRACT_SUBVECTOR(SDNode *N) {
2981   SDValue InOp = GetWidenedVector(N->getOperand(0));
2982   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(N),
2983                      N->getValueType(0), InOp, N->getOperand(1));
2984 }
2985
2986 SDValue DAGTypeLegalizer::WidenVecOp_EXTRACT_VECTOR_ELT(SDNode *N) {
2987   SDValue InOp = GetWidenedVector(N->getOperand(0));
2988   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N),
2989                      N->getValueType(0), InOp, N->getOperand(1));
2990 }
2991
2992 SDValue DAGTypeLegalizer::WidenVecOp_STORE(SDNode *N) {
2993   // We have to widen the value but we want only to store the original
2994   // vector type.
2995   StoreSDNode *ST = cast<StoreSDNode>(N);
2996
2997   SmallVector<SDValue, 16> StChain;
2998   if (ST->isTruncatingStore())
2999     GenWidenVectorTruncStores(StChain, ST);
3000   else
3001     GenWidenVectorStores(StChain, ST);
3002
3003   if (StChain.size() == 1)
3004     return StChain[0];
3005   else
3006     return DAG.getNode(ISD::TokenFactor, SDLoc(ST), MVT::Other, StChain);
3007 }
3008
3009 SDValue DAGTypeLegalizer::WidenVecOp_MSTORE(SDNode *N, unsigned OpNo) {
3010   MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N);
3011   SDValue Mask = MST->getMask();
3012   EVT MaskVT = Mask.getValueType();
3013   SDValue StVal = MST->getValue();
3014   // Widen the value
3015   SDValue WideVal = GetWidenedVector(StVal);
3016   SDLoc dl(N);
3017
3018   if (OpNo == 2 || getTypeAction(MaskVT) == TargetLowering::TypeWidenVector)
3019     Mask = GetWidenedVector(Mask);
3020   else {
3021     // The mask should be widened as well
3022     EVT BoolVT = getSetCCResultType(WideVal.getValueType());
3023     // We can't use ModifyToType() because we should fill the mask with
3024     // zeroes
3025     unsigned WidenNumElts = BoolVT.getVectorNumElements();
3026     unsigned MaskNumElts = MaskVT.getVectorNumElements();
3027
3028     unsigned NumConcat = WidenNumElts / MaskNumElts;
3029     SmallVector<SDValue, 16> Ops(NumConcat);
3030     SDValue ZeroVal = DAG.getConstant(0, dl, MaskVT);
3031     Ops[0] = Mask;
3032     for (unsigned i = 1; i != NumConcat; ++i)
3033       Ops[i] = ZeroVal;
3034
3035     Mask = DAG.getNode(ISD::CONCAT_VECTORS, dl, BoolVT, Ops);
3036   }
3037   assert(Mask.getValueType().getVectorNumElements() ==
3038          WideVal.getValueType().getVectorNumElements() &&
3039          "Mask and data vectors should have the same number of elements");
3040   return DAG.getMaskedStore(MST->getChain(), dl, WideVal, MST->getBasePtr(),
3041                             Mask, MST->getMemoryVT(), MST->getMemOperand(),
3042                             false);
3043 }
3044
3045 SDValue DAGTypeLegalizer::WidenVecOp_SETCC(SDNode *N) {
3046   SDValue InOp0 = GetWidenedVector(N->getOperand(0));
3047   SDValue InOp1 = GetWidenedVector(N->getOperand(1));
3048   SDLoc dl(N);
3049
3050   // WARNING: In this code we widen the compare instruction with garbage.
3051   // This garbage may contain denormal floats which may be slow. Is this a real
3052   // concern ? Should we zero the unused lanes if this is a float compare ?
3053
3054   // Get a new SETCC node to compare the newly widened operands.
3055   // Only some of the compared elements are legal.
3056   EVT SVT = TLI.getSetCCResultType(*DAG.getContext(), InOp0.getValueType());
3057   SDValue WideSETCC = DAG.getNode(ISD::SETCC, SDLoc(N),
3058                      SVT, InOp0, InOp1, N->getOperand(2));
3059
3060   // Extract the needed results from the result vector.
3061   EVT ResVT = EVT::getVectorVT(*DAG.getContext(),
3062                                SVT.getVectorElementType(),
3063                                N->getValueType(0).getVectorNumElements());
3064   SDValue CC = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl,
3065                            ResVT, WideSETCC,
3066                            DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
3067
3068   return PromoteTargetBoolean(CC, N->getValueType(0));
3069 }
3070
3071
3072 //===----------------------------------------------------------------------===//
3073 // Vector Widening Utilities
3074 //===----------------------------------------------------------------------===//
3075
3076 // Utility function to find the type to chop up a widen vector for load/store
3077 //  TLI:       Target lowering used to determine legal types.
3078 //  Width:     Width left need to load/store.
3079 //  WidenVT:   The widen vector type to load to/store from
3080 //  Align:     If 0, don't allow use of a wider type
3081 //  WidenEx:   If Align is not 0, the amount additional we can load/store from.
3082
3083 static EVT FindMemType(SelectionDAG& DAG, const TargetLowering &TLI,
3084                        unsigned Width, EVT WidenVT,
3085                        unsigned Align = 0, unsigned WidenEx = 0) {
3086   EVT WidenEltVT = WidenVT.getVectorElementType();
3087   unsigned WidenWidth = WidenVT.getSizeInBits();
3088   unsigned WidenEltWidth = WidenEltVT.getSizeInBits();
3089   unsigned AlignInBits = Align*8;
3090
3091   // If we have one element to load/store, return it.
3092   EVT RetVT = WidenEltVT;
3093   if (Width == WidenEltWidth)
3094     return RetVT;
3095
3096   // See if there is larger legal integer than the element type to load/store
3097   unsigned VT;
3098   for (VT = (unsigned)MVT::LAST_INTEGER_VALUETYPE;
3099        VT >= (unsigned)MVT::FIRST_INTEGER_VALUETYPE; --VT) {
3100     EVT MemVT((MVT::SimpleValueType) VT);
3101     unsigned MemVTWidth = MemVT.getSizeInBits();
3102     if (MemVT.getSizeInBits() <= WidenEltWidth)
3103       break;
3104     auto Action = TLI.getTypeAction(*DAG.getContext(), MemVT);
3105     if ((Action == TargetLowering::TypeLegal ||
3106          Action == TargetLowering::TypePromoteInteger) &&
3107         (WidenWidth % MemVTWidth) == 0 &&
3108         isPowerOf2_32(WidenWidth / MemVTWidth) &&
3109         (MemVTWidth <= Width ||
3110          (Align!=0 && MemVTWidth<=AlignInBits && MemVTWidth<=Width+WidenEx))) {
3111       RetVT = MemVT;
3112       break;
3113     }
3114   }
3115
3116   // See if there is a larger vector type to load/store that has the same vector
3117   // element type and is evenly divisible with the WidenVT.
3118   for (VT = (unsigned)MVT::LAST_VECTOR_VALUETYPE;
3119        VT >= (unsigned)MVT::FIRST_VECTOR_VALUETYPE; --VT) {
3120     EVT MemVT = (MVT::SimpleValueType) VT;
3121     unsigned MemVTWidth = MemVT.getSizeInBits();
3122     if (TLI.isTypeLegal(MemVT) && WidenEltVT == MemVT.getVectorElementType() &&
3123         (WidenWidth % MemVTWidth) == 0 &&
3124         isPowerOf2_32(WidenWidth / MemVTWidth) &&
3125         (MemVTWidth <= Width ||
3126          (Align!=0 && MemVTWidth<=AlignInBits && MemVTWidth<=Width+WidenEx))) {
3127       if (RetVT.getSizeInBits() < MemVTWidth || MemVT == WidenVT)
3128         return MemVT;
3129     }
3130   }
3131
3132   return RetVT;
3133 }
3134
3135 // Builds a vector type from scalar loads
3136 //  VecTy: Resulting Vector type
3137 //  LDOps: Load operators to build a vector type
3138 //  [Start,End) the list of loads to use.
3139 static SDValue BuildVectorFromScalar(SelectionDAG& DAG, EVT VecTy,
3140                                      SmallVectorImpl<SDValue> &LdOps,
3141                                      unsigned Start, unsigned End) {
3142   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3143   SDLoc dl(LdOps[Start]);
3144   EVT LdTy = LdOps[Start].getValueType();
3145   unsigned Width = VecTy.getSizeInBits();
3146   unsigned NumElts = Width / LdTy.getSizeInBits();
3147   EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), LdTy, NumElts);
3148
3149   unsigned Idx = 1;
3150   SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NewVecVT,LdOps[Start]);
3151
3152   for (unsigned i = Start + 1; i != End; ++i) {
3153     EVT NewLdTy = LdOps[i].getValueType();
3154     if (NewLdTy != LdTy) {
3155       NumElts = Width / NewLdTy.getSizeInBits();
3156       NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewLdTy, NumElts);
3157       VecOp = DAG.getNode(ISD::BITCAST, dl, NewVecVT, VecOp);
3158       // Readjust position and vector position based on new load type
3159       Idx = Idx * LdTy.getSizeInBits() / NewLdTy.getSizeInBits();
3160       LdTy = NewLdTy;
3161     }
3162     VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVecVT, VecOp, LdOps[i],
3163                         DAG.getConstant(Idx++, dl, TLI.getVectorIdxTy()));
3164   }
3165   return DAG.getNode(ISD::BITCAST, dl, VecTy, VecOp);
3166 }
3167
3168 SDValue DAGTypeLegalizer::GenWidenVectorLoads(SmallVectorImpl<SDValue> &LdChain,
3169                                               LoadSDNode *LD) {
3170   // The strategy assumes that we can efficiently load powers of two widths.
3171   // The routines chops the vector into the largest vector loads with the same
3172   // element type or scalar loads and then recombines it to the widen vector
3173   // type.
3174   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(),LD->getValueType(0));
3175   unsigned WidenWidth = WidenVT.getSizeInBits();
3176   EVT LdVT    = LD->getMemoryVT();
3177   SDLoc dl(LD);
3178   assert(LdVT.isVector() && WidenVT.isVector());
3179   assert(LdVT.getVectorElementType() == WidenVT.getVectorElementType());
3180
3181   // Load information
3182   SDValue   Chain = LD->getChain();
3183   SDValue   BasePtr = LD->getBasePtr();
3184   unsigned  Align    = LD->getAlignment();
3185   bool      isVolatile = LD->isVolatile();
3186   bool      isNonTemporal = LD->isNonTemporal();
3187   bool      isInvariant = LD->isInvariant();
3188   AAMDNodes AAInfo = LD->getAAInfo();
3189
3190   int LdWidth = LdVT.getSizeInBits();
3191   int WidthDiff = WidenWidth - LdWidth;          // Difference
3192   unsigned LdAlign = (isVolatile) ? 0 : Align; // Allow wider loads
3193
3194   // Find the vector type that can load from.
3195   EVT NewVT = FindMemType(DAG, TLI, LdWidth, WidenVT, LdAlign, WidthDiff);
3196   int NewVTWidth = NewVT.getSizeInBits();
3197   SDValue LdOp = DAG.getLoad(NewVT, dl, Chain, BasePtr, LD->getPointerInfo(),
3198                              isVolatile, isNonTemporal, isInvariant, Align,
3199                              AAInfo);
3200   LdChain.push_back(LdOp.getValue(1));
3201
3202   // Check if we can load the element with one instruction
3203   if (LdWidth <= NewVTWidth) {
3204     if (!NewVT.isVector()) {
3205       unsigned NumElts = WidenWidth / NewVTWidth;
3206       EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewVT, NumElts);
3207       SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NewVecVT, LdOp);
3208       return DAG.getNode(ISD::BITCAST, dl, WidenVT, VecOp);
3209     }
3210     if (NewVT == WidenVT)
3211       return LdOp;
3212
3213     assert(WidenWidth % NewVTWidth == 0);
3214     unsigned NumConcat = WidenWidth / NewVTWidth;
3215     SmallVector<SDValue, 16> ConcatOps(NumConcat);
3216     SDValue UndefVal = DAG.getUNDEF(NewVT);
3217     ConcatOps[0] = LdOp;
3218     for (unsigned i = 1; i != NumConcat; ++i)
3219       ConcatOps[i] = UndefVal;
3220     return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, ConcatOps);
3221   }
3222
3223   // Load vector by using multiple loads from largest vector to scalar
3224   SmallVector<SDValue, 16> LdOps;
3225   LdOps.push_back(LdOp);
3226
3227   LdWidth -= NewVTWidth;
3228   unsigned Offset = 0;
3229
3230   while (LdWidth > 0) {
3231     unsigned Increment = NewVTWidth / 8;
3232     Offset += Increment;
3233     BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
3234                           DAG.getConstant(Increment, dl, BasePtr.getValueType()));
3235
3236     SDValue L;
3237     if (LdWidth < NewVTWidth) {
3238       // Our current type we are using is too large, find a better size
3239       NewVT = FindMemType(DAG, TLI, LdWidth, WidenVT, LdAlign, WidthDiff);
3240       NewVTWidth = NewVT.getSizeInBits();
3241       L = DAG.getLoad(NewVT, dl, Chain, BasePtr,
3242                       LD->getPointerInfo().getWithOffset(Offset), isVolatile,
3243                       isNonTemporal, isInvariant, MinAlign(Align, Increment),
3244                       AAInfo);
3245       LdChain.push_back(L.getValue(1));
3246       if (L->getValueType(0).isVector()) {
3247         SmallVector<SDValue, 16> Loads;
3248         Loads.push_back(L);
3249         unsigned size = L->getValueSizeInBits(0);
3250         while (size < LdOp->getValueSizeInBits(0)) {
3251           Loads.push_back(DAG.getUNDEF(L->getValueType(0)));
3252           size += L->getValueSizeInBits(0);
3253         }
3254         L = DAG.getNode(ISD::CONCAT_VECTORS, dl, LdOp->getValueType(0), Loads);
3255       }
3256     } else {
3257       L = DAG.getLoad(NewVT, dl, Chain, BasePtr,
3258                       LD->getPointerInfo().getWithOffset(Offset), isVolatile,
3259                       isNonTemporal, isInvariant, MinAlign(Align, Increment),
3260                       AAInfo);
3261       LdChain.push_back(L.getValue(1));
3262     }
3263
3264     LdOps.push_back(L);
3265
3266
3267     LdWidth -= NewVTWidth;
3268   }
3269
3270   // Build the vector from the loads operations
3271   unsigned End = LdOps.size();
3272   if (!LdOps[0].getValueType().isVector())
3273     // All the loads are scalar loads.
3274     return BuildVectorFromScalar(DAG, WidenVT, LdOps, 0, End);
3275
3276   // If the load contains vectors, build the vector using concat vector.
3277   // All of the vectors used to loads are power of 2 and the scalars load
3278   // can be combined to make a power of 2 vector.
3279   SmallVector<SDValue, 16> ConcatOps(End);
3280   int i = End - 1;
3281   int Idx = End;
3282   EVT LdTy = LdOps[i].getValueType();
3283   // First combine the scalar loads to a vector
3284   if (!LdTy.isVector())  {
3285     for (--i; i >= 0; --i) {
3286       LdTy = LdOps[i].getValueType();
3287       if (LdTy.isVector())
3288         break;
3289     }
3290     ConcatOps[--Idx] = BuildVectorFromScalar(DAG, LdTy, LdOps, i+1, End);
3291   }
3292   ConcatOps[--Idx] = LdOps[i];
3293   for (--i; i >= 0; --i) {
3294     EVT NewLdTy = LdOps[i].getValueType();
3295     if (NewLdTy != LdTy) {
3296       // Create a larger vector
3297       ConcatOps[End-1] = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewLdTy,
3298                                      makeArrayRef(&ConcatOps[Idx], End - Idx));
3299       Idx = End - 1;
3300       LdTy = NewLdTy;
3301     }
3302     ConcatOps[--Idx] = LdOps[i];
3303   }
3304
3305   if (WidenWidth == LdTy.getSizeInBits()*(End - Idx))
3306     return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
3307                        makeArrayRef(&ConcatOps[Idx], End - Idx));
3308
3309   // We need to fill the rest with undefs to build the vector
3310   unsigned NumOps = WidenWidth / LdTy.getSizeInBits();
3311   SmallVector<SDValue, 16> WidenOps(NumOps);
3312   SDValue UndefVal = DAG.getUNDEF(LdTy);
3313   {
3314     unsigned i = 0;
3315     for (; i != End-Idx; ++i)
3316       WidenOps[i] = ConcatOps[Idx+i];
3317     for (; i != NumOps; ++i)
3318       WidenOps[i] = UndefVal;
3319   }
3320   return DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT, WidenOps);
3321 }
3322
3323 SDValue
3324 DAGTypeLegalizer::GenWidenVectorExtLoads(SmallVectorImpl<SDValue> &LdChain,
3325                                          LoadSDNode *LD,
3326                                          ISD::LoadExtType ExtType) {
3327   // For extension loads, it may not be more efficient to chop up the vector
3328   // and then extended it.  Instead, we unroll the load and build a new vector.
3329   EVT WidenVT = TLI.getTypeToTransformTo(*DAG.getContext(),LD->getValueType(0));
3330   EVT LdVT    = LD->getMemoryVT();
3331   SDLoc dl(LD);
3332   assert(LdVT.isVector() && WidenVT.isVector());
3333
3334   // Load information
3335   SDValue   Chain = LD->getChain();
3336   SDValue   BasePtr = LD->getBasePtr();
3337   unsigned  Align    = LD->getAlignment();
3338   bool      isVolatile = LD->isVolatile();
3339   bool      isNonTemporal = LD->isNonTemporal();
3340   bool      isInvariant = LD->isInvariant();
3341   AAMDNodes AAInfo = LD->getAAInfo();
3342
3343   EVT EltVT = WidenVT.getVectorElementType();
3344   EVT LdEltVT = LdVT.getVectorElementType();
3345   unsigned NumElts = LdVT.getVectorNumElements();
3346
3347   // Load each element and widen
3348   unsigned WidenNumElts = WidenVT.getVectorNumElements();
3349   SmallVector<SDValue, 16> Ops(WidenNumElts);
3350   unsigned Increment = LdEltVT.getSizeInBits() / 8;
3351   Ops[0] = DAG.getExtLoad(ExtType, dl, EltVT, Chain, BasePtr,
3352                           LD->getPointerInfo(),
3353                           LdEltVT, isVolatile, isNonTemporal, isInvariant,
3354                           Align, AAInfo);
3355   LdChain.push_back(Ops[0].getValue(1));
3356   unsigned i = 0, Offset = Increment;
3357   for (i=1; i < NumElts; ++i, Offset += Increment) {
3358     SDValue NewBasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(),
3359                                      BasePtr,
3360                                      DAG.getConstant(Offset, dl,
3361                                                      BasePtr.getValueType()));
3362     Ops[i] = DAG.getExtLoad(ExtType, dl, EltVT, Chain, NewBasePtr,
3363                             LD->getPointerInfo().getWithOffset(Offset), LdEltVT,
3364                             isVolatile, isNonTemporal, isInvariant, Align,
3365                             AAInfo);
3366     LdChain.push_back(Ops[i].getValue(1));
3367   }
3368
3369   // Fill the rest with undefs
3370   SDValue UndefVal = DAG.getUNDEF(EltVT);
3371   for (; i != WidenNumElts; ++i)
3372     Ops[i] = UndefVal;
3373
3374   return DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT, Ops);
3375 }
3376
3377
3378 void DAGTypeLegalizer::GenWidenVectorStores(SmallVectorImpl<SDValue> &StChain,
3379                                             StoreSDNode *ST) {
3380   // The strategy assumes that we can efficiently store powers of two widths.
3381   // The routines chops the vector into the largest vector stores with the same
3382   // element type or scalar stores.
3383   SDValue  Chain = ST->getChain();
3384   SDValue  BasePtr = ST->getBasePtr();
3385   unsigned Align = ST->getAlignment();
3386   bool     isVolatile = ST->isVolatile();
3387   bool     isNonTemporal = ST->isNonTemporal();
3388   AAMDNodes AAInfo = ST->getAAInfo();
3389   SDValue  ValOp = GetWidenedVector(ST->getValue());
3390   SDLoc dl(ST);
3391
3392   EVT StVT = ST->getMemoryVT();
3393   unsigned StWidth = StVT.getSizeInBits();
3394   EVT ValVT = ValOp.getValueType();
3395   unsigned ValWidth = ValVT.getSizeInBits();
3396   EVT ValEltVT = ValVT.getVectorElementType();
3397   unsigned ValEltWidth = ValEltVT.getSizeInBits();
3398   assert(StVT.getVectorElementType() == ValEltVT);
3399
3400   int Idx = 0;          // current index to store
3401   unsigned Offset = 0;  // offset from base to store
3402   while (StWidth != 0) {
3403     // Find the largest vector type we can store with
3404     EVT NewVT = FindMemType(DAG, TLI, StWidth, ValVT);
3405     unsigned NewVTWidth = NewVT.getSizeInBits();
3406     unsigned Increment = NewVTWidth / 8;
3407     if (NewVT.isVector()) {
3408       unsigned NumVTElts = NewVT.getVectorNumElements();
3409       do {
3410         SDValue EOp = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT, ValOp,
3411                                   DAG.getConstant(Idx, dl,
3412                                                   TLI.getVectorIdxTy()));
3413         StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr,
3414                                     ST->getPointerInfo().getWithOffset(Offset),
3415                                        isVolatile, isNonTemporal,
3416                                        MinAlign(Align, Offset), AAInfo));
3417         StWidth -= NewVTWidth;
3418         Offset += Increment;
3419         Idx += NumVTElts;
3420         BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
3421                               DAG.getConstant(Increment, dl,
3422                                               BasePtr.getValueType()));
3423       } while (StWidth != 0 && StWidth >= NewVTWidth);
3424     } else {
3425       // Cast the vector to the scalar type we can store
3426       unsigned NumElts = ValWidth / NewVTWidth;
3427       EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewVT, NumElts);
3428       SDValue VecOp = DAG.getNode(ISD::BITCAST, dl, NewVecVT, ValOp);
3429       // Readjust index position based on new vector type
3430       Idx = Idx * ValEltWidth / NewVTWidth;
3431       do {
3432         SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT, VecOp,
3433                       DAG.getConstant(Idx++, dl, TLI.getVectorIdxTy()));
3434         StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr,
3435                                     ST->getPointerInfo().getWithOffset(Offset),
3436                                        isVolatile, isNonTemporal,
3437                                        MinAlign(Align, Offset), AAInfo));
3438         StWidth -= NewVTWidth;
3439         Offset += Increment;
3440         BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
3441                               DAG.getConstant(Increment, dl,
3442                                               BasePtr.getValueType()));
3443       } while (StWidth != 0 && StWidth >= NewVTWidth);
3444       // Restore index back to be relative to the original widen element type
3445       Idx = Idx * NewVTWidth / ValEltWidth;
3446     }
3447   }
3448 }
3449
3450 void
3451 DAGTypeLegalizer::GenWidenVectorTruncStores(SmallVectorImpl<SDValue> &StChain,
3452                                             StoreSDNode *ST) {
3453   // For extension loads, it may not be more efficient to truncate the vector
3454   // and then store it.  Instead, we extract each element and then store it.
3455   SDValue  Chain = ST->getChain();
3456   SDValue  BasePtr = ST->getBasePtr();
3457   unsigned Align = ST->getAlignment();
3458   bool     isVolatile = ST->isVolatile();
3459   bool     isNonTemporal = ST->isNonTemporal();
3460   AAMDNodes AAInfo = ST->getAAInfo();
3461   SDValue  ValOp = GetWidenedVector(ST->getValue());
3462   SDLoc dl(ST);
3463
3464   EVT StVT = ST->getMemoryVT();
3465   EVT ValVT = ValOp.getValueType();
3466
3467   // It must be true that we the widen vector type is bigger than where
3468   // we need to store.
3469   assert(StVT.isVector() && ValOp.getValueType().isVector());
3470   assert(StVT.bitsLT(ValOp.getValueType()));
3471
3472   // For truncating stores, we can not play the tricks of chopping legal
3473   // vector types and bit cast it to the right type.  Instead, we unroll
3474   // the store.
3475   EVT StEltVT  = StVT.getVectorElementType();
3476   EVT ValEltVT = ValVT.getVectorElementType();
3477   unsigned Increment = ValEltVT.getSizeInBits() / 8;
3478   unsigned NumElts = StVT.getVectorNumElements();
3479   SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ValEltVT, ValOp,
3480                             DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
3481   StChain.push_back(DAG.getTruncStore(Chain, dl, EOp, BasePtr,
3482                                       ST->getPointerInfo(), StEltVT,
3483                                       isVolatile, isNonTemporal, Align,
3484                                       AAInfo));
3485   unsigned Offset = Increment;
3486   for (unsigned i=1; i < NumElts; ++i, Offset += Increment) {
3487     SDValue NewBasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(),
3488                                      BasePtr,
3489                                      DAG.getConstant(Offset, dl,
3490                                                      BasePtr.getValueType()));
3491     SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ValEltVT, ValOp,
3492                             DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
3493     StChain.push_back(DAG.getTruncStore(Chain, dl, EOp, NewBasePtr,
3494                                       ST->getPointerInfo().getWithOffset(Offset),
3495                                         StEltVT, isVolatile, isNonTemporal,
3496                                         MinAlign(Align, Offset), AAInfo));
3497   }
3498 }
3499
3500 /// Modifies a vector input (widen or narrows) to a vector of NVT.  The
3501 /// input vector must have the same element type as NVT.
3502 SDValue DAGTypeLegalizer::ModifyToType(SDValue InOp, EVT NVT) {
3503   // Note that InOp might have been widened so it might already have
3504   // the right width or it might need be narrowed.
3505   EVT InVT = InOp.getValueType();
3506   assert(InVT.getVectorElementType() == NVT.getVectorElementType() &&
3507          "input and widen element type must match");
3508   SDLoc dl(InOp);
3509
3510   // Check if InOp already has the right width.
3511   if (InVT == NVT)
3512     return InOp;
3513
3514   unsigned InNumElts = InVT.getVectorNumElements();
3515   unsigned WidenNumElts = NVT.getVectorNumElements();
3516   if (WidenNumElts > InNumElts && WidenNumElts % InNumElts == 0) {
3517     unsigned NumConcat = WidenNumElts / InNumElts;
3518     SmallVector<SDValue, 16> Ops(NumConcat);
3519     SDValue UndefVal = DAG.getUNDEF(InVT);
3520     Ops[0] = InOp;
3521     for (unsigned i = 1; i != NumConcat; ++i)
3522       Ops[i] = UndefVal;
3523
3524     return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, Ops);
3525   }
3526
3527   if (WidenNumElts < InNumElts && InNumElts % WidenNumElts)
3528     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT, InOp,
3529                        DAG.getConstant(0, dl, TLI.getVectorIdxTy()));
3530
3531   // Fall back to extract and build.
3532   SmallVector<SDValue, 16> Ops(WidenNumElts);
3533   EVT EltVT = NVT.getVectorElementType();
3534   unsigned MinNumElts = std::min(WidenNumElts, InNumElts);
3535   unsigned Idx;
3536   for (Idx = 0; Idx < MinNumElts; ++Idx)
3537     Ops[Idx] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InOp,
3538                            DAG.getConstant(Idx, dl, TLI.getVectorIdxTy()));
3539
3540   SDValue UndefVal = DAG.getUNDEF(EltVT);
3541   for ( ; Idx < WidenNumElts; ++Idx)
3542     Ops[Idx] = UndefVal;
3543   return DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, Ops);
3544 }