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