Convert SelectionDAG::getNode methods to use ArrayRef<SDValue>.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeTypesGeneric.cpp
1 //===-------- LegalizeTypesGeneric.cpp - Generic type legalization --------===//
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 implements generic type expansion and splitting for LegalizeTypes.
11 // The routines here perform legalization when the details of the type (such as
12 // whether it is an integer or a float) do not matter.
13 // Expansion is the act of changing a computation in an illegal type to be a
14 // computation in two identical registers of a smaller type.  The Lo/Hi part
15 // is required to be stored first in memory on little/big-endian machines.
16 // Splitting is the act of changing a computation in an illegal type to be a
17 // computation in two not necessarily identical registers of a smaller type.
18 // There are no requirements on how the type is represented in memory.
19 //
20 //===----------------------------------------------------------------------===//
21
22 #include "LegalizeTypes.h"
23 #include "llvm/IR/DataLayout.h"
24 using namespace llvm;
25
26 #define DEBUG_TYPE "legalize-types"
27
28 //===----------------------------------------------------------------------===//
29 // Generic Result Expansion.
30 //===----------------------------------------------------------------------===//
31
32 // These routines assume that the Lo/Hi part is stored first in memory on
33 // little/big-endian machines, followed by the Hi/Lo part.  This means that
34 // they cannot be used as is on vectors, for which Lo is always stored first.
35 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
36                                               SDValue &Lo, SDValue &Hi) {
37   SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
38   GetExpandedOp(Op, Lo, Hi);
39 }
40
41 void DAGTypeLegalizer::ExpandRes_BITCAST(SDNode *N, SDValue &Lo, SDValue &Hi) {
42   EVT OutVT = N->getValueType(0);
43   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
44   SDValue InOp = N->getOperand(0);
45   EVT InVT = InOp.getValueType();
46   SDLoc dl(N);
47
48   // Handle some special cases efficiently.
49   switch (getTypeAction(InVT)) {
50     case TargetLowering::TypeLegal:
51     case TargetLowering::TypePromoteInteger:
52       break;
53     case TargetLowering::TypeSoftenFloat:
54       // Convert the integer operand instead.
55       SplitInteger(GetSoftenedFloat(InOp), Lo, Hi);
56       Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
57       Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
58       return;
59     case TargetLowering::TypeExpandInteger:
60     case TargetLowering::TypeExpandFloat:
61       // Convert the expanded pieces of the input.
62       GetExpandedOp(InOp, Lo, Hi);
63       Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
64       Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
65       return;
66     case TargetLowering::TypeSplitVector:
67       GetSplitVector(InOp, Lo, Hi);
68       if (TLI.isBigEndian())
69         std::swap(Lo, Hi);
70       Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
71       Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
72       return;
73     case TargetLowering::TypeScalarizeVector:
74       // Convert the element instead.
75       SplitInteger(BitConvertToInteger(GetScalarizedVector(InOp)), Lo, Hi);
76       Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
77       Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
78       return;
79     case TargetLowering::TypeWidenVector: {
80       assert(!(InVT.getVectorNumElements() & 1) && "Unsupported BITCAST");
81       InOp = GetWidenedVector(InOp);
82       EVT LoVT, HiVT;
83       std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(InVT);
84       std::tie(Lo, Hi) = DAG.SplitVector(InOp, dl, LoVT, HiVT);
85       if (TLI.isBigEndian())
86         std::swap(Lo, Hi);
87       Lo = DAG.getNode(ISD::BITCAST, dl, NOutVT, Lo);
88       Hi = DAG.getNode(ISD::BITCAST, dl, NOutVT, Hi);
89       return;
90     }
91   }
92
93   if (InVT.isVector() && OutVT.isInteger()) {
94     // Handle cases like i64 = BITCAST v1i64 on x86, where the operand
95     // is legal but the result is not.
96     unsigned NumElems = 2;
97     EVT ElemVT = NOutVT;
98     EVT NVT = EVT::getVectorVT(*DAG.getContext(), ElemVT, NumElems);
99
100     // If <ElemVT * N> is not a legal type, try <ElemVT/2 * (N*2)>.
101     while (!isTypeLegal(NVT)) {
102       unsigned NewSizeInBits = ElemVT.getSizeInBits() / 2;
103       // If the element size is smaller than byte, bail.
104       if (NewSizeInBits < 8)
105         break;
106       NumElems *= 2;
107       ElemVT = EVT::getIntegerVT(*DAG.getContext(), NewSizeInBits);
108       NVT = EVT::getVectorVT(*DAG.getContext(), ElemVT, NumElems);
109     }
110
111     if (isTypeLegal(NVT)) {
112       SDValue CastInOp = DAG.getNode(ISD::BITCAST, dl, NVT, InOp);
113
114       SmallVector<SDValue, 8> Vals;
115       for (unsigned i = 0; i < NumElems; ++i)
116         Vals.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ElemVT,
117                                    CastInOp, DAG.getConstant(i,
118                                              TLI.getVectorIdxTy())));
119
120       // Build Lo, Hi pair by pairing extracted elements if needed.
121       unsigned Slot = 0;
122       for (unsigned e = Vals.size(); e - Slot > 2; Slot += 2, e += 1) {
123         // Each iteration will BUILD_PAIR two nodes and append the result until
124         // there are only two nodes left, i.e. Lo and Hi.
125         SDValue LHS = Vals[Slot];
126         SDValue RHS = Vals[Slot + 1];
127
128         if (TLI.isBigEndian())
129           std::swap(LHS, RHS);
130
131         Vals.push_back(DAG.getNode(ISD::BUILD_PAIR, dl,
132                                    EVT::getIntegerVT(
133                                      *DAG.getContext(),
134                                      LHS.getValueType().getSizeInBits() << 1),
135                                    LHS, RHS));
136       }
137       Lo = Vals[Slot++];
138       Hi = Vals[Slot++];
139
140       if (TLI.isBigEndian())
141         std::swap(Lo, Hi);
142
143       return;
144     }
145   }
146
147   // Lower the bit-convert to a store/load from the stack.
148   assert(NOutVT.isByteSized() && "Expanded type not byte sized!");
149
150   // Create the stack frame object.  Make sure it is aligned for both
151   // the source and expanded destination types.
152   unsigned Alignment =
153     TLI.getDataLayout()->getPrefTypeAlignment(NOutVT.
154                                               getTypeForEVT(*DAG.getContext()));
155   SDValue StackPtr = DAG.CreateStackTemporary(InVT, Alignment);
156   int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
157   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
158
159   // Emit a store to the stack slot.
160   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
161                                false, false, 0);
162
163   // Load the first half from the stack slot.
164   Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo,
165                    false, false, false, 0);
166
167   // Increment the pointer to the other half.
168   unsigned IncrementSize = NOutVT.getSizeInBits() / 8;
169   StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
170                          DAG.getConstant(IncrementSize,
171                                          StackPtr.getValueType()));
172
173   // Load the second half from the stack slot.
174   Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
175                    PtrInfo.getWithOffset(IncrementSize), false,
176                    false, false, MinAlign(Alignment, IncrementSize));
177
178   // Handle endianness of the load.
179   if (TLI.isBigEndian())
180     std::swap(Lo, Hi);
181 }
182
183 void DAGTypeLegalizer::ExpandRes_BUILD_PAIR(SDNode *N, SDValue &Lo,
184                                             SDValue &Hi) {
185   // Return the operands.
186   Lo = N->getOperand(0);
187   Hi = N->getOperand(1);
188 }
189
190 void DAGTypeLegalizer::ExpandRes_EXTRACT_ELEMENT(SDNode *N, SDValue &Lo,
191                                                  SDValue &Hi) {
192   GetExpandedOp(N->getOperand(0), Lo, Hi);
193   SDValue Part = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() ?
194                    Hi : Lo;
195
196   assert(Part.getValueType() == N->getValueType(0) &&
197          "Type twice as big as expanded type not itself expanded!");
198
199   GetPairElements(Part, Lo, Hi);
200 }
201
202 void DAGTypeLegalizer::ExpandRes_EXTRACT_VECTOR_ELT(SDNode *N, SDValue &Lo,
203                                                     SDValue &Hi) {
204   SDValue OldVec = N->getOperand(0);
205   unsigned OldElts = OldVec.getValueType().getVectorNumElements();
206   EVT OldEltVT = OldVec.getValueType().getVectorElementType();
207   SDLoc dl(N);
208
209   // Convert to a vector of the expanded element type, for example
210   // <3 x i64> -> <6 x i32>.
211   EVT OldVT = N->getValueType(0);
212   EVT NewVT = TLI.getTypeToTransformTo(*DAG.getContext(), OldVT);
213
214   if (OldVT != OldEltVT) {
215     // The result of EXTRACT_VECTOR_ELT may be larger than the element type of
216     // the input vector.  If so, extend the elements of the input vector to the
217     // same bitwidth as the result before expanding.
218     assert(OldEltVT.bitsLT(OldVT) && "Result type smaller then element type!");
219     EVT NVecVT = EVT::getVectorVT(*DAG.getContext(), OldVT, OldElts);
220     OldVec = DAG.getNode(ISD::ANY_EXTEND, dl, NVecVT, N->getOperand(0));
221   }
222
223   SDValue NewVec = DAG.getNode(ISD::BITCAST, dl,
224                                EVT::getVectorVT(*DAG.getContext(),
225                                                 NewVT, 2*OldElts),
226                                OldVec);
227
228   // Extract the elements at 2 * Idx and 2 * Idx + 1 from the new vector.
229   SDValue Idx = N->getOperand(1);
230
231   Idx = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, Idx);
232   Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT, NewVec, Idx);
233
234   Idx = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
235                     DAG.getConstant(1, Idx.getValueType()));
236   Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT, NewVec, Idx);
237
238   if (TLI.isBigEndian())
239     std::swap(Lo, Hi);
240 }
241
242 void DAGTypeLegalizer::ExpandRes_NormalLoad(SDNode *N, SDValue &Lo,
243                                             SDValue &Hi) {
244   assert(ISD::isNormalLoad(N) && "This routine only for normal loads!");
245   SDLoc dl(N);
246
247   LoadSDNode *LD = cast<LoadSDNode>(N);
248   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), LD->getValueType(0));
249   SDValue Chain = LD->getChain();
250   SDValue Ptr = LD->getBasePtr();
251   unsigned Alignment = LD->getAlignment();
252   bool isVolatile = LD->isVolatile();
253   bool isNonTemporal = LD->isNonTemporal();
254   bool isInvariant = LD->isInvariant();
255   const MDNode *TBAAInfo = LD->getTBAAInfo();
256
257   assert(NVT.isByteSized() && "Expanded type not byte sized!");
258
259   Lo = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
260                    isVolatile, isNonTemporal, isInvariant, Alignment,
261                    TBAAInfo);
262
263   // Increment the pointer to the other half.
264   unsigned IncrementSize = NVT.getSizeInBits() / 8;
265   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
266                     DAG.getConstant(IncrementSize, Ptr.getValueType()));
267   Hi = DAG.getLoad(NVT, dl, Chain, Ptr,
268                    LD->getPointerInfo().getWithOffset(IncrementSize),
269                    isVolatile, isNonTemporal, isInvariant,
270                    MinAlign(Alignment, IncrementSize), TBAAInfo);
271
272   // Build a factor node to remember that this load is independent of the
273   // other one.
274   Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
275                       Hi.getValue(1));
276
277   // Handle endianness of the load.
278   if (TLI.isBigEndian())
279     std::swap(Lo, Hi);
280
281   // Modified the chain - switch anything that used the old chain to use
282   // the new one.
283   ReplaceValueWith(SDValue(N, 1), Chain);
284 }
285
286 void DAGTypeLegalizer::ExpandRes_VAARG(SDNode *N, SDValue &Lo, SDValue &Hi) {
287   EVT OVT = N->getValueType(0);
288   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), OVT);
289   SDValue Chain = N->getOperand(0);
290   SDValue Ptr = N->getOperand(1);
291   SDLoc dl(N);
292   const unsigned Align = N->getConstantOperandVal(3);
293
294   Lo = DAG.getVAArg(NVT, dl, Chain, Ptr, N->getOperand(2), Align);
295   Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, N->getOperand(2), 0);
296
297   // Handle endianness of the load.
298   if (TLI.isBigEndian())
299     std::swap(Lo, Hi);
300
301   // Modified the chain - switch anything that used the old chain to use
302   // the new one.
303   ReplaceValueWith(SDValue(N, 1), Hi.getValue(1));
304 }
305
306
307 //===--------------------------------------------------------------------===//
308 // Generic Operand Expansion.
309 //===--------------------------------------------------------------------===//
310
311 void DAGTypeLegalizer::IntegerToVector(SDValue Op, unsigned NumElements,
312                                        SmallVectorImpl<SDValue> &Ops,
313                                        EVT EltVT) {
314   assert(Op.getValueType().isInteger());
315   SDLoc DL(Op);
316   SDValue Parts[2];
317
318   if (NumElements > 1) {
319     NumElements >>= 1;
320     SplitInteger(Op, Parts[0], Parts[1]);
321       if (TLI.isBigEndian())
322         std::swap(Parts[0], Parts[1]);
323     IntegerToVector(Parts[0], NumElements, Ops, EltVT);
324     IntegerToVector(Parts[1], NumElements, Ops, EltVT);
325   } else {
326     Ops.push_back(DAG.getNode(ISD::BITCAST, DL, EltVT, Op));
327   }
328 }
329
330 SDValue DAGTypeLegalizer::ExpandOp_BITCAST(SDNode *N) {
331   SDLoc dl(N);
332   if (N->getValueType(0).isVector()) {
333     // An illegal expanding type is being converted to a legal vector type.
334     // Make a two element vector out of the expanded parts and convert that
335     // instead, but only if the new vector type is legal (otherwise there
336     // is no point, and it might create expansion loops).  For example, on
337     // x86 this turns v1i64 = BITCAST i64 into v1i64 = BITCAST v2i32.
338     //
339     // FIXME: I'm not sure why we are first trying to split the input into
340     // a 2 element vector, so I'm leaving it here to maintain the current
341     // behavior.
342     unsigned NumElts = 2;
343     EVT OVT = N->getOperand(0).getValueType();
344     EVT NVT = EVT::getVectorVT(*DAG.getContext(),
345                                TLI.getTypeToTransformTo(*DAG.getContext(), OVT),
346                                NumElts);
347     if (!isTypeLegal(NVT)) {
348       // If we can't find a legal type by splitting the integer in half,
349       // then we can use the node's value type.
350       NumElts = N->getValueType(0).getVectorNumElements();
351       NVT = N->getValueType(0);
352     }
353
354     SmallVector<SDValue, 8> Ops;
355     IntegerToVector(N->getOperand(0), NumElts, Ops, NVT.getVectorElementType());
356
357     SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
358                               ArrayRef<SDValue>(&Ops[0], NumElts));
359     return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), Vec);
360   }
361
362   // Otherwise, store to a temporary and load out again as the new type.
363   return CreateStackStoreLoad(N->getOperand(0), N->getValueType(0));
364 }
365
366 SDValue DAGTypeLegalizer::ExpandOp_BUILD_VECTOR(SDNode *N) {
367   // The vector type is legal but the element type needs expansion.
368   EVT VecVT = N->getValueType(0);
369   unsigned NumElts = VecVT.getVectorNumElements();
370   EVT OldVT = N->getOperand(0).getValueType();
371   EVT NewVT = TLI.getTypeToTransformTo(*DAG.getContext(), OldVT);
372   SDLoc dl(N);
373
374   assert(OldVT == VecVT.getVectorElementType() &&
375          "BUILD_VECTOR operand type doesn't match vector element type!");
376
377   // Build a vector of twice the length out of the expanded elements.
378   // For example <3 x i64> -> <6 x i32>.
379   std::vector<SDValue> NewElts;
380   NewElts.reserve(NumElts*2);
381
382   for (unsigned i = 0; i < NumElts; ++i) {
383     SDValue Lo, Hi;
384     GetExpandedOp(N->getOperand(i), Lo, Hi);
385     if (TLI.isBigEndian())
386       std::swap(Lo, Hi);
387     NewElts.push_back(Lo);
388     NewElts.push_back(Hi);
389   }
390
391   SDValue NewVec = DAG.getNode(ISD::BUILD_VECTOR, dl,
392                                EVT::getVectorVT(*DAG.getContext(),
393                                                 NewVT, NewElts.size()),
394                                NewElts);
395
396   // Convert the new vector to the old vector type.
397   return DAG.getNode(ISD::BITCAST, dl, VecVT, NewVec);
398 }
399
400 SDValue DAGTypeLegalizer::ExpandOp_EXTRACT_ELEMENT(SDNode *N) {
401   SDValue Lo, Hi;
402   GetExpandedOp(N->getOperand(0), Lo, Hi);
403   return cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() ? Hi : Lo;
404 }
405
406 SDValue DAGTypeLegalizer::ExpandOp_INSERT_VECTOR_ELT(SDNode *N) {
407   // The vector type is legal but the element type needs expansion.
408   EVT VecVT = N->getValueType(0);
409   unsigned NumElts = VecVT.getVectorNumElements();
410   SDLoc dl(N);
411
412   SDValue Val = N->getOperand(1);
413   EVT OldEVT = Val.getValueType();
414   EVT NewEVT = TLI.getTypeToTransformTo(*DAG.getContext(), OldEVT);
415
416   assert(OldEVT == VecVT.getVectorElementType() &&
417          "Inserted element type doesn't match vector element type!");
418
419   // Bitconvert to a vector of twice the length with elements of the expanded
420   // type, insert the expanded vector elements, and then convert back.
421   EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewEVT, NumElts*2);
422   SDValue NewVec = DAG.getNode(ISD::BITCAST, dl,
423                                NewVecVT, N->getOperand(0));
424
425   SDValue Lo, Hi;
426   GetExpandedOp(Val, Lo, Hi);
427   if (TLI.isBigEndian())
428     std::swap(Lo, Hi);
429
430   SDValue Idx = N->getOperand(2);
431   Idx = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, Idx);
432   NewVec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVecVT, NewVec, Lo, Idx);
433   Idx = DAG.getNode(ISD::ADD, dl,
434                     Idx.getValueType(), Idx,
435                     DAG.getConstant(1, Idx.getValueType()));
436   NewVec =  DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVecVT, NewVec, Hi, Idx);
437
438   // Convert the new vector to the old vector type.
439   return DAG.getNode(ISD::BITCAST, dl, VecVT, NewVec);
440 }
441
442 SDValue DAGTypeLegalizer::ExpandOp_SCALAR_TO_VECTOR(SDNode *N) {
443   SDLoc dl(N);
444   EVT VT = N->getValueType(0);
445   assert(VT.getVectorElementType() == N->getOperand(0).getValueType() &&
446          "SCALAR_TO_VECTOR operand type doesn't match vector element type!");
447   unsigned NumElts = VT.getVectorNumElements();
448   SmallVector<SDValue, 16> Ops(NumElts);
449   Ops[0] = N->getOperand(0);
450   SDValue UndefVal = DAG.getUNDEF(Ops[0].getValueType());
451   for (unsigned i = 1; i < NumElts; ++i)
452     Ops[i] = UndefVal;
453   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
454 }
455
456 SDValue DAGTypeLegalizer::ExpandOp_NormalStore(SDNode *N, unsigned OpNo) {
457   assert(ISD::isNormalStore(N) && "This routine only for normal stores!");
458   assert(OpNo == 1 && "Can only expand the stored value so far");
459   SDLoc dl(N);
460
461   StoreSDNode *St = cast<StoreSDNode>(N);
462   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(),
463                                      St->getValue().getValueType());
464   SDValue Chain = St->getChain();
465   SDValue Ptr = St->getBasePtr();
466   unsigned Alignment = St->getAlignment();
467   bool isVolatile = St->isVolatile();
468   bool isNonTemporal = St->isNonTemporal();
469   const MDNode *TBAAInfo = St->getTBAAInfo();
470
471   assert(NVT.isByteSized() && "Expanded type not byte sized!");
472   unsigned IncrementSize = NVT.getSizeInBits() / 8;
473
474   SDValue Lo, Hi;
475   GetExpandedOp(St->getValue(), Lo, Hi);
476
477   if (TLI.isBigEndian())
478     std::swap(Lo, Hi);
479
480   Lo = DAG.getStore(Chain, dl, Lo, Ptr, St->getPointerInfo(),
481                     isVolatile, isNonTemporal, Alignment, TBAAInfo);
482
483   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
484                     DAG.getConstant(IncrementSize, Ptr.getValueType()));
485   Hi = DAG.getStore(Chain, dl, Hi, Ptr,
486                     St->getPointerInfo().getWithOffset(IncrementSize),
487                     isVolatile, isNonTemporal,
488                     MinAlign(Alignment, IncrementSize), TBAAInfo);
489
490   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
491 }
492
493
494 //===--------------------------------------------------------------------===//
495 // Generic Result Splitting.
496 //===--------------------------------------------------------------------===//
497
498 // Be careful to make no assumptions about which of Lo/Hi is stored first in
499 // memory (for vectors it is always Lo first followed by Hi in the following
500 // bytes; for integers and floats it is Lo first if and only if the machine is
501 // little-endian).
502
503 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
504                                              SDValue &Lo, SDValue &Hi) {
505   SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
506   GetSplitOp(Op, Lo, Hi);
507 }
508
509 void DAGTypeLegalizer::SplitRes_SELECT(SDNode *N, SDValue &Lo,
510                                        SDValue &Hi) {
511   SDValue LL, LH, RL, RH, CL, CH;
512   SDLoc dl(N);
513   GetSplitOp(N->getOperand(1), LL, LH);
514   GetSplitOp(N->getOperand(2), RL, RH);
515
516   SDValue Cond = N->getOperand(0);
517   CL = CH = Cond;
518   if (Cond.getValueType().isVector()) {
519     // Check if there are already splitted versions of the vector available and
520     // use those instead of splitting the mask operand again.
521     if (getTypeAction(Cond.getValueType()) == TargetLowering::TypeSplitVector)
522       GetSplitVector(Cond, CL, CH);
523     else
524       std::tie(CL, CH) = DAG.SplitVector(Cond, dl);
525   }
526
527   Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
528   Hi = DAG.getNode(N->getOpcode(), dl, LH.getValueType(), CH, LH, RH);
529 }
530
531 void DAGTypeLegalizer::SplitRes_SELECT_CC(SDNode *N, SDValue &Lo,
532                                           SDValue &Hi) {
533   SDValue LL, LH, RL, RH;
534   SDLoc dl(N);
535   GetSplitOp(N->getOperand(2), LL, LH);
536   GetSplitOp(N->getOperand(3), RL, RH);
537
538   Lo = DAG.getNode(ISD::SELECT_CC, dl, LL.getValueType(), N->getOperand(0),
539                    N->getOperand(1), LL, RL, N->getOperand(4));
540   Hi = DAG.getNode(ISD::SELECT_CC, dl, LH.getValueType(), N->getOperand(0),
541                    N->getOperand(1), LH, RH, N->getOperand(4));
542 }
543
544 void DAGTypeLegalizer::SplitRes_UNDEF(SDNode *N, SDValue &Lo, SDValue &Hi) {
545   EVT LoVT, HiVT;
546   std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0));
547   Lo = DAG.getUNDEF(LoVT);
548   Hi = DAG.getUNDEF(HiVT);
549 }