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