80 col.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeIntegerTypes.cpp
1 //===----- LegalizeIntegerTypes.cpp - Legalization of integer 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 implements integer type expansion and promotion for LegalizeTypes.
11 // Promotion is the act of changing a computation in an illegal type into a
12 // computation in a larger type.  For example, implementing i8 arithmetic in an
13 // i32 register (often needed on powerpc).
14 // Expansion is the act of changing a computation in an illegal type into a
15 // computation in two identical registers of a smaller type.  For example,
16 // implementing i64 arithmetic in two i32 registers (often needed on 32-bit
17 // targets).
18 //
19 //===----------------------------------------------------------------------===//
20
21 #include "LegalizeTypes.h"
22 #include "llvm/CodeGen/PseudoSourceValue.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/raw_ostream.h"
25 using namespace llvm;
26
27 //===----------------------------------------------------------------------===//
28 //  Integer Result Promotion
29 //===----------------------------------------------------------------------===//
30
31 /// PromoteIntegerResult - This method is called when a result of a node is
32 /// found to be in need of promotion to a larger type.  At this point, the node
33 /// may also have invalid operands or may have other results that need
34 /// expansion, we just know that (at least) one result needs promotion.
35 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) {
36   DEBUG(dbgs() << "Promote integer result: "; N->dump(&DAG); dbgs() << "\n");
37   SDValue Res = SDValue();
38
39   // See if the target wants to custom expand this node.
40   if (CustomLowerNode(N, N->getValueType(ResNo), true))
41     return;
42
43   switch (N->getOpcode()) {
44   default:
45 #ifndef NDEBUG
46     dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
47     N->dump(&DAG); dbgs() << "\n";
48 #endif
49     llvm_unreachable("Do not know how to promote this operator!");
50   case ISD::AssertSext:  Res = PromoteIntRes_AssertSext(N); break;
51   case ISD::AssertZext:  Res = PromoteIntRes_AssertZext(N); break;
52   case ISD::BIT_CONVERT: Res = PromoteIntRes_BIT_CONVERT(N); break;
53   case ISD::BSWAP:       Res = PromoteIntRes_BSWAP(N); break;
54   case ISD::BUILD_PAIR:  Res = PromoteIntRes_BUILD_PAIR(N); break;
55   case ISD::Constant:    Res = PromoteIntRes_Constant(N); break;
56   case ISD::CONVERT_RNDSAT:
57                          Res = PromoteIntRes_CONVERT_RNDSAT(N); break;
58   case ISD::CTLZ:        Res = PromoteIntRes_CTLZ(N); break;
59   case ISD::CTPOP:       Res = PromoteIntRes_CTPOP(N); break;
60   case ISD::CTTZ:        Res = PromoteIntRes_CTTZ(N); break;
61   case ISD::EXTRACT_VECTOR_ELT:
62                          Res = PromoteIntRes_EXTRACT_VECTOR_ELT(N); break;
63   case ISD::LOAD:        Res = PromoteIntRes_LOAD(cast<LoadSDNode>(N));break;
64   case ISD::SELECT:      Res = PromoteIntRes_SELECT(N); break;
65   case ISD::SELECT_CC:   Res = PromoteIntRes_SELECT_CC(N); break;
66   case ISD::SETCC:       Res = PromoteIntRes_SETCC(N); break;
67   case ISD::SHL:         Res = PromoteIntRes_SHL(N); break;
68   case ISD::SIGN_EXTEND_INREG:
69                          Res = PromoteIntRes_SIGN_EXTEND_INREG(N); break;
70   case ISD::SRA:         Res = PromoteIntRes_SRA(N); break;
71   case ISD::SRL:         Res = PromoteIntRes_SRL(N); break;
72   case ISD::TRUNCATE:    Res = PromoteIntRes_TRUNCATE(N); break;
73   case ISD::UNDEF:       Res = PromoteIntRes_UNDEF(N); break;
74   case ISD::VAARG:       Res = PromoteIntRes_VAARG(N); break;
75
76   case ISD::SIGN_EXTEND:
77   case ISD::ZERO_EXTEND:
78   case ISD::ANY_EXTEND:  Res = PromoteIntRes_INT_EXTEND(N); break;
79
80   case ISD::FP_TO_SINT:
81   case ISD::FP_TO_UINT:  Res = PromoteIntRes_FP_TO_XINT(N); break;
82
83   case ISD::FP32_TO_FP16:Res = PromoteIntRes_FP32_TO_FP16(N); break;
84
85   case ISD::AND:
86   case ISD::OR:
87   case ISD::XOR:
88   case ISD::ADD:
89   case ISD::SUB:
90   case ISD::MUL:         Res = PromoteIntRes_SimpleIntBinOp(N); break;
91
92   case ISD::SDIV:
93   case ISD::SREM:        Res = PromoteIntRes_SDIV(N); break;
94
95   case ISD::UDIV:
96   case ISD::UREM:        Res = PromoteIntRes_UDIV(N); break;
97
98   case ISD::SADDO:
99   case ISD::SSUBO:       Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
100   case ISD::UADDO:
101   case ISD::USUBO:       Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
102   case ISD::SMULO:
103   case ISD::UMULO:       Res = PromoteIntRes_XMULO(N, ResNo); break;
104
105   case ISD::ATOMIC_LOAD_ADD:
106   case ISD::ATOMIC_LOAD_SUB:
107   case ISD::ATOMIC_LOAD_AND:
108   case ISD::ATOMIC_LOAD_OR:
109   case ISD::ATOMIC_LOAD_XOR:
110   case ISD::ATOMIC_LOAD_NAND:
111   case ISD::ATOMIC_LOAD_MIN:
112   case ISD::ATOMIC_LOAD_MAX:
113   case ISD::ATOMIC_LOAD_UMIN:
114   case ISD::ATOMIC_LOAD_UMAX:
115   case ISD::ATOMIC_SWAP:
116     Res = PromoteIntRes_Atomic1(cast<AtomicSDNode>(N)); break;
117
118   case ISD::ATOMIC_CMP_SWAP:
119     Res = PromoteIntRes_Atomic2(cast<AtomicSDNode>(N)); break;
120   }
121
122   // If the result is null then the sub-method took care of registering it.
123   if (Res.getNode())
124     SetPromotedInteger(SDValue(N, ResNo), Res);
125 }
126
127 SDValue DAGTypeLegalizer::PromoteIntRes_AssertSext(SDNode *N) {
128   // Sign-extend the new bits, and continue the assertion.
129   SDValue Op = SExtPromotedInteger(N->getOperand(0));
130   return DAG.getNode(ISD::AssertSext, N->getDebugLoc(),
131                      Op.getValueType(), Op, N->getOperand(1));
132 }
133
134 SDValue DAGTypeLegalizer::PromoteIntRes_AssertZext(SDNode *N) {
135   // Zero the new bits, and continue the assertion.
136   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
137   return DAG.getNode(ISD::AssertZext, N->getDebugLoc(),
138                      Op.getValueType(), Op, N->getOperand(1));
139 }
140
141 SDValue DAGTypeLegalizer::PromoteIntRes_Atomic1(AtomicSDNode *N) {
142   SDValue Op2 = GetPromotedInteger(N->getOperand(2));
143   SDValue Res = DAG.getAtomic(N->getOpcode(), N->getDebugLoc(),
144                               N->getMemoryVT(),
145                               N->getChain(), N->getBasePtr(),
146                               Op2, N->getSrcValue(), N->getAlignment());
147   // Legalized the chain result - switch anything that used the old chain to
148   // use the new one.
149   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
150   return Res;
151 }
152
153 SDValue DAGTypeLegalizer::PromoteIntRes_Atomic2(AtomicSDNode *N) {
154   SDValue Op2 = GetPromotedInteger(N->getOperand(2));
155   SDValue Op3 = GetPromotedInteger(N->getOperand(3));
156   SDValue Res = DAG.getAtomic(N->getOpcode(), N->getDebugLoc(),
157                               N->getMemoryVT(), N->getChain(), N->getBasePtr(),
158                               Op2, Op3, N->getSrcValue(), N->getAlignment());
159   // Legalized the chain result - switch anything that used the old chain to
160   // use the new one.
161   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
162   return Res;
163 }
164
165 SDValue DAGTypeLegalizer::PromoteIntRes_BIT_CONVERT(SDNode *N) {
166   SDValue InOp = N->getOperand(0);
167   EVT InVT = InOp.getValueType();
168   EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
169   EVT OutVT = N->getValueType(0);
170   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
171   DebugLoc dl = N->getDebugLoc();
172
173   switch (getTypeAction(InVT)) {
174   default:
175     assert(false && "Unknown type action!");
176     break;
177   case Legal:
178     break;
179   case PromoteInteger:
180     if (NOutVT.bitsEq(NInVT))
181       // The input promotes to the same size.  Convert the promoted value.
182       return DAG.getNode(ISD::BIT_CONVERT, dl,
183                          NOutVT, GetPromotedInteger(InOp));
184     break;
185   case SoftenFloat:
186     // Promote the integer operand by hand.
187     return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT, GetSoftenedFloat(InOp));
188   case ExpandInteger:
189   case ExpandFloat:
190     break;
191   case ScalarizeVector:
192     // Convert the element to an integer and promote it by hand.
193     return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
194                        BitConvertToInteger(GetScalarizedVector(InOp)));
195   case SplitVector: {
196     // For example, i32 = BIT_CONVERT v2i16 on alpha.  Convert the split
197     // pieces of the input into integers and reassemble in the final type.
198     SDValue Lo, Hi;
199     GetSplitVector(N->getOperand(0), Lo, Hi);
200     Lo = BitConvertToInteger(Lo);
201     Hi = BitConvertToInteger(Hi);
202
203     if (TLI.isBigEndian())
204       std::swap(Lo, Hi);
205
206     InOp = DAG.getNode(ISD::ANY_EXTEND, dl,
207                        EVT::getIntegerVT(*DAG.getContext(),
208                                          NOutVT.getSizeInBits()),
209                        JoinIntegers(Lo, Hi));
210     return DAG.getNode(ISD::BIT_CONVERT, dl, NOutVT, InOp);
211   }
212   case WidenVector:
213     if (OutVT.bitsEq(NInVT))
214       // The input is widened to the same size.  Convert to the widened value.
215       return DAG.getNode(ISD::BIT_CONVERT, dl, OutVT, GetWidenedVector(InOp));
216   }
217
218   return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
219                      CreateStackStoreLoad(InOp, OutVT));
220 }
221
222 SDValue DAGTypeLegalizer::PromoteIntRes_BSWAP(SDNode *N) {
223   SDValue Op = GetPromotedInteger(N->getOperand(0));
224   EVT OVT = N->getValueType(0);
225   EVT NVT = Op.getValueType();
226   DebugLoc dl = N->getDebugLoc();
227
228   unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
229   return DAG.getNode(ISD::SRL, dl, NVT, DAG.getNode(ISD::BSWAP, dl, NVT, Op),
230                      DAG.getConstant(DiffBits, TLI.getPointerTy()));
231 }
232
233 SDValue DAGTypeLegalizer::PromoteIntRes_BUILD_PAIR(SDNode *N) {
234   // The pair element type may be legal, or may not promote to the same type as
235   // the result, for example i14 = BUILD_PAIR (i7, i7).  Handle all cases.
236   return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(),
237                      TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)),
238                      JoinIntegers(N->getOperand(0), N->getOperand(1)));
239 }
240
241 SDValue DAGTypeLegalizer::PromoteIntRes_Constant(SDNode *N) {
242   EVT VT = N->getValueType(0);
243   // FIXME there is no actual debug info here
244   DebugLoc dl = N->getDebugLoc();
245   // Zero extend things like i1, sign extend everything else.  It shouldn't
246   // matter in theory which one we pick, but this tends to give better code?
247   unsigned Opc = VT.isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
248   SDValue Result = DAG.getNode(Opc, dl, TLI.getTypeToTransformTo(*DAG.getContext(), VT),
249                                SDValue(N, 0));
250   assert(isa<ConstantSDNode>(Result) && "Didn't constant fold ext?");
251   return Result;
252 }
253
254 SDValue DAGTypeLegalizer::PromoteIntRes_CONVERT_RNDSAT(SDNode *N) {
255   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
256   assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
257            CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
258            CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
259           "can only promote integers");
260   EVT OutVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
261   return DAG.getConvertRndSat(OutVT, N->getDebugLoc(), N->getOperand(0),
262                               N->getOperand(1), N->getOperand(2),
263                               N->getOperand(3), N->getOperand(4), CvtCode);
264 }
265
266 SDValue DAGTypeLegalizer::PromoteIntRes_CTLZ(SDNode *N) {
267   // Zero extend to the promoted type and do the count there.
268   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
269   DebugLoc dl = N->getDebugLoc();
270   EVT OVT = N->getValueType(0);
271   EVT NVT = Op.getValueType();
272   Op = DAG.getNode(ISD::CTLZ, dl, NVT, Op);
273   // Subtract off the extra leading bits in the bigger type.
274   return DAG.getNode(ISD::SUB, dl, NVT, Op,
275                      DAG.getConstant(NVT.getSizeInBits() -
276                                      OVT.getSizeInBits(), NVT));
277 }
278
279 SDValue DAGTypeLegalizer::PromoteIntRes_CTPOP(SDNode *N) {
280   // Zero extend to the promoted type and do the count there.
281   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
282   return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), Op.getValueType(), Op);
283 }
284
285 SDValue DAGTypeLegalizer::PromoteIntRes_CTTZ(SDNode *N) {
286   SDValue Op = GetPromotedInteger(N->getOperand(0));
287   EVT OVT = N->getValueType(0);
288   EVT NVT = Op.getValueType();
289   DebugLoc dl = N->getDebugLoc();
290   // The count is the same in the promoted type except if the original
291   // value was zero.  This can be handled by setting the bit just off
292   // the top of the original type.
293   APInt TopBit(NVT.getSizeInBits(), 0);
294   TopBit.set(OVT.getSizeInBits());
295   Op = DAG.getNode(ISD::OR, dl, NVT, Op, DAG.getConstant(TopBit, NVT));
296   return DAG.getNode(ISD::CTTZ, dl, NVT, Op);
297 }
298
299 SDValue DAGTypeLegalizer::PromoteIntRes_EXTRACT_VECTOR_ELT(SDNode *N) {
300   DebugLoc dl = N->getDebugLoc();
301   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
302   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NVT, N->getOperand(0),
303                      N->getOperand(1));
304 }
305
306 SDValue DAGTypeLegalizer::PromoteIntRes_FP_TO_XINT(SDNode *N) {
307   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
308   unsigned NewOpc = N->getOpcode();
309   DebugLoc dl = N->getDebugLoc();
310
311   // If we're promoting a UINT to a larger size and the larger FP_TO_UINT is
312   // not Legal, check to see if we can use FP_TO_SINT instead.  (If both UINT
313   // and SINT conversions are Custom, there is no way to tell which is preferable.
314   // We choose SINT because that's the right thing on PPC.)
315   if (N->getOpcode() == ISD::FP_TO_UINT &&
316       !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
317       TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT))
318     NewOpc = ISD::FP_TO_SINT;
319
320   SDValue Res = DAG.getNode(NewOpc, dl, NVT, N->getOperand(0));
321
322   // Assert that the converted value fits in the original type.  If it doesn't
323   // (eg: because the value being converted is too big), then the result of the
324   // original operation was undefined anyway, so the assert is still correct.
325   return DAG.getNode(N->getOpcode() == ISD::FP_TO_UINT ?
326                      ISD::AssertZext : ISD::AssertSext, dl,
327                      NVT, Res, DAG.getValueType(N->getValueType(0)));
328 }
329
330 SDValue DAGTypeLegalizer::PromoteIntRes_FP32_TO_FP16(SDNode *N) {
331   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
332   DebugLoc dl = N->getDebugLoc();
333
334   SDValue Res = DAG.getNode(N->getOpcode(), dl, NVT, N->getOperand(0));
335
336   return DAG.getNode(ISD::AssertZext, dl,
337                      NVT, Res, DAG.getValueType(N->getValueType(0)));
338 }
339
340 SDValue DAGTypeLegalizer::PromoteIntRes_INT_EXTEND(SDNode *N) {
341   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
342   DebugLoc dl = N->getDebugLoc();
343
344   if (getTypeAction(N->getOperand(0).getValueType()) == PromoteInteger) {
345     SDValue Res = GetPromotedInteger(N->getOperand(0));
346     assert(Res.getValueType().bitsLE(NVT) && "Extension doesn't make sense!");
347
348     // If the result and operand types are the same after promotion, simplify
349     // to an in-register extension.
350     if (NVT == Res.getValueType()) {
351       // The high bits are not guaranteed to be anything.  Insert an extend.
352       if (N->getOpcode() == ISD::SIGN_EXTEND)
353         return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Res,
354                            DAG.getValueType(N->getOperand(0).getValueType()));
355       if (N->getOpcode() == ISD::ZERO_EXTEND)
356         return DAG.getZeroExtendInReg(Res, dl, N->getOperand(0).getValueType());
357       assert(N->getOpcode() == ISD::ANY_EXTEND && "Unknown integer extension!");
358       return Res;
359     }
360   }
361
362   // Otherwise, just extend the original operand all the way to the larger type.
363   return DAG.getNode(N->getOpcode(), dl, NVT, N->getOperand(0));
364 }
365
366 SDValue DAGTypeLegalizer::PromoteIntRes_LOAD(LoadSDNode *N) {
367   assert(ISD::isUNINDEXEDLoad(N) && "Indexed load during type legalization!");
368   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
369   ISD::LoadExtType ExtType =
370     ISD::isNON_EXTLoad(N) ? ISD::EXTLOAD : N->getExtensionType();
371   DebugLoc dl = N->getDebugLoc();
372   SDValue Res = DAG.getExtLoad(ExtType, dl, NVT, N->getChain(), N->getBasePtr(),
373                                N->getSrcValue(), N->getSrcValueOffset(),
374                                N->getMemoryVT(), N->isVolatile(),
375                                N->isNonTemporal(), N->getAlignment());
376
377   // Legalized the chain result - switch anything that used the old chain to
378   // use the new one.
379   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
380   return Res;
381 }
382
383 /// Promote the overflow flag of an overflowing arithmetic node.
384 SDValue DAGTypeLegalizer::PromoteIntRes_Overflow(SDNode *N) {
385   // Simply change the return type of the boolean result.
386   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
387   EVT ValueVTs[] = { N->getValueType(0), NVT };
388   SDValue Ops[] = { N->getOperand(0), N->getOperand(1) };
389   SDValue Res = DAG.getNode(N->getOpcode(), N->getDebugLoc(),
390                             DAG.getVTList(ValueVTs, 2), Ops, 2);
391
392   // Modified the sum result - switch anything that used the old sum to use
393   // the new one.
394   ReplaceValueWith(SDValue(N, 0), Res);
395
396   return SDValue(Res.getNode(), 1);
397 }
398
399 SDValue DAGTypeLegalizer::PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo) {
400   if (ResNo == 1)
401     return PromoteIntRes_Overflow(N);
402
403   // The operation overflowed iff the result in the larger type is not the
404   // sign extension of its truncation to the original type.
405   SDValue LHS = SExtPromotedInteger(N->getOperand(0));
406   SDValue RHS = SExtPromotedInteger(N->getOperand(1));
407   EVT OVT = N->getOperand(0).getValueType();
408   EVT NVT = LHS.getValueType();
409   DebugLoc dl = N->getDebugLoc();
410
411   // Do the arithmetic in the larger type.
412   unsigned Opcode = N->getOpcode() == ISD::SADDO ? ISD::ADD : ISD::SUB;
413   SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS);
414
415   // Calculate the overflow flag: sign extend the arithmetic result from
416   // the original type.
417   SDValue Ofl = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Res,
418                             DAG.getValueType(OVT));
419   // Overflowed if and only if this is not equal to Res.
420   Ofl = DAG.getSetCC(dl, N->getValueType(1), Ofl, Res, ISD::SETNE);
421
422   // Use the calculated overflow everywhere.
423   ReplaceValueWith(SDValue(N, 1), Ofl);
424
425   return Res;
426 }
427
428 SDValue DAGTypeLegalizer::PromoteIntRes_SDIV(SDNode *N) {
429   // Sign extend the input.
430   SDValue LHS = SExtPromotedInteger(N->getOperand(0));
431   SDValue RHS = SExtPromotedInteger(N->getOperand(1));
432   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
433                      LHS.getValueType(), LHS, RHS);
434 }
435
436 SDValue DAGTypeLegalizer::PromoteIntRes_SELECT(SDNode *N) {
437   SDValue LHS = GetPromotedInteger(N->getOperand(1));
438   SDValue RHS = GetPromotedInteger(N->getOperand(2));
439   return DAG.getNode(ISD::SELECT, N->getDebugLoc(),
440                      LHS.getValueType(), N->getOperand(0),LHS,RHS);
441 }
442
443 SDValue DAGTypeLegalizer::PromoteIntRes_SELECT_CC(SDNode *N) {
444   SDValue LHS = GetPromotedInteger(N->getOperand(2));
445   SDValue RHS = GetPromotedInteger(N->getOperand(3));
446   return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(),
447                      LHS.getValueType(), N->getOperand(0),
448                      N->getOperand(1), LHS, RHS, N->getOperand(4));
449 }
450
451 SDValue DAGTypeLegalizer::PromoteIntRes_SETCC(SDNode *N) {
452   EVT SVT = TLI.getSetCCResultType(N->getOperand(0).getValueType());
453   assert(isTypeLegal(SVT) && "Illegal SetCC type!");
454   DebugLoc dl = N->getDebugLoc();
455
456   // Get the SETCC result using the canonical SETCC type.
457   SDValue SetCC = DAG.getNode(ISD::SETCC, dl, SVT, N->getOperand(0),
458                               N->getOperand(1), N->getOperand(2));
459
460   // Convert to the expected type.
461   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
462   assert(NVT.bitsLE(SVT) && "Integer type overpromoted?");
463   return DAG.getNode(ISD::TRUNCATE, dl, NVT, SetCC);
464 }
465
466 SDValue DAGTypeLegalizer::PromoteIntRes_SHL(SDNode *N) {
467   return DAG.getNode(ISD::SHL, N->getDebugLoc(),
468                 TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)),
469                      GetPromotedInteger(N->getOperand(0)), N->getOperand(1));
470 }
471
472 SDValue DAGTypeLegalizer::PromoteIntRes_SIGN_EXTEND_INREG(SDNode *N) {
473   SDValue Op = GetPromotedInteger(N->getOperand(0));
474   return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(),
475                      Op.getValueType(), Op, N->getOperand(1));
476 }
477
478 SDValue DAGTypeLegalizer::PromoteIntRes_SimpleIntBinOp(SDNode *N) {
479   // The input may have strange things in the top bits of the registers, but
480   // these operations don't care.  They may have weird bits going out, but
481   // that too is okay if they are integer operations.
482   SDValue LHS = GetPromotedInteger(N->getOperand(0));
483   SDValue RHS = GetPromotedInteger(N->getOperand(1));
484   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
485                     LHS.getValueType(), LHS, RHS);
486 }
487
488 SDValue DAGTypeLegalizer::PromoteIntRes_SRA(SDNode *N) {
489   // The input value must be properly sign extended.
490   SDValue Res = SExtPromotedInteger(N->getOperand(0));
491   return DAG.getNode(ISD::SRA, N->getDebugLoc(),
492                      Res.getValueType(), Res, N->getOperand(1));
493 }
494
495 SDValue DAGTypeLegalizer::PromoteIntRes_SRL(SDNode *N) {
496   // The input value must be properly zero extended.
497   EVT VT = N->getValueType(0);
498   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
499   SDValue Res = ZExtPromotedInteger(N->getOperand(0));
500   return DAG.getNode(ISD::SRL, N->getDebugLoc(), NVT, Res, N->getOperand(1));
501 }
502
503 SDValue DAGTypeLegalizer::PromoteIntRes_TRUNCATE(SDNode *N) {
504   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
505   SDValue Res;
506
507   switch (getTypeAction(N->getOperand(0).getValueType())) {
508   default: llvm_unreachable("Unknown type action!");
509   case Legal:
510   case ExpandInteger:
511     Res = N->getOperand(0);
512     break;
513   case PromoteInteger:
514     Res = GetPromotedInteger(N->getOperand(0));
515     break;
516   }
517
518   // Truncate to NVT instead of VT
519   return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Res);
520 }
521
522 SDValue DAGTypeLegalizer::PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) {
523   if (ResNo == 1)
524     return PromoteIntRes_Overflow(N);
525
526   // The operation overflowed iff the result in the larger type is not the
527   // zero extension of its truncation to the original type.
528   SDValue LHS = ZExtPromotedInteger(N->getOperand(0));
529   SDValue RHS = ZExtPromotedInteger(N->getOperand(1));
530   EVT OVT = N->getOperand(0).getValueType();
531   EVT NVT = LHS.getValueType();
532   DebugLoc dl = N->getDebugLoc();
533
534   // Do the arithmetic in the larger type.
535   unsigned Opcode = N->getOpcode() == ISD::UADDO ? ISD::ADD : ISD::SUB;
536   SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS);
537
538   // Calculate the overflow flag: zero extend the arithmetic result from
539   // the original type.
540   SDValue Ofl = DAG.getZeroExtendInReg(Res, dl, OVT);
541   // Overflowed if and only if this is not equal to Res.
542   Ofl = DAG.getSetCC(dl, N->getValueType(1), Ofl, Res, ISD::SETNE);
543
544   // Use the calculated overflow everywhere.
545   ReplaceValueWith(SDValue(N, 1), Ofl);
546
547   return Res;
548 }
549
550 SDValue DAGTypeLegalizer::PromoteIntRes_UDIV(SDNode *N) {
551   // Zero extend the input.
552   SDValue LHS = ZExtPromotedInteger(N->getOperand(0));
553   SDValue RHS = ZExtPromotedInteger(N->getOperand(1));
554   return DAG.getNode(N->getOpcode(), N->getDebugLoc(),
555                      LHS.getValueType(), LHS, RHS);
556 }
557
558 SDValue DAGTypeLegalizer::PromoteIntRes_UNDEF(SDNode *N) {
559   return DAG.getUNDEF(TLI.getTypeToTransformTo(*DAG.getContext(),
560                                                N->getValueType(0)));
561 }
562
563 SDValue DAGTypeLegalizer::PromoteIntRes_VAARG(SDNode *N) {
564   SDValue Chain = N->getOperand(0); // Get the chain.
565   SDValue Ptr = N->getOperand(1); // Get the pointer.
566   EVT VT = N->getValueType(0);
567   DebugLoc dl = N->getDebugLoc();
568
569   EVT RegVT = TLI.getRegisterType(*DAG.getContext(), VT);
570   unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), VT);
571   // The argument is passed as NumRegs registers of type RegVT.
572
573   SmallVector<SDValue, 8> Parts(NumRegs);
574   for (unsigned i = 0; i < NumRegs; ++i) {
575     Parts[i] = DAG.getVAArg(RegVT, dl, Chain, Ptr, N->getOperand(2));
576     Chain = Parts[i].getValue(1);
577   }
578
579   // Handle endianness of the load.
580   if (TLI.isBigEndian())
581     std::reverse(Parts.begin(), Parts.end());
582
583   // Assemble the parts in the promoted type.
584   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
585   SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[0]);
586   for (unsigned i = 1; i < NumRegs; ++i) {
587     SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
588     // Shift it to the right position and "or" it in.
589     Part = DAG.getNode(ISD::SHL, dl, NVT, Part,
590                        DAG.getConstant(i * RegVT.getSizeInBits(),
591                                        TLI.getPointerTy()));
592     Res = DAG.getNode(ISD::OR, dl, NVT, Res, Part);
593   }
594
595   // Modified the chain result - switch anything that used the old chain to
596   // use the new one.
597   ReplaceValueWith(SDValue(N, 1), Chain);
598
599   return Res;
600 }
601
602 SDValue DAGTypeLegalizer::PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) {
603   assert(ResNo == 1 && "Only boolean result promotion currently supported!");
604   return PromoteIntRes_Overflow(N);
605 }
606
607 //===----------------------------------------------------------------------===//
608 //  Integer Operand Promotion
609 //===----------------------------------------------------------------------===//
610
611 /// PromoteIntegerOperand - This method is called when the specified operand of
612 /// the specified node is found to need promotion.  At this point, all of the
613 /// result types of the node are known to be legal, but other operands of the
614 /// node may need promotion or expansion as well as the specified one.
615 bool DAGTypeLegalizer::PromoteIntegerOperand(SDNode *N, unsigned OpNo) {
616   DEBUG(dbgs() << "Promote integer operand: "; N->dump(&DAG); dbgs() << "\n");
617   SDValue Res = SDValue();
618
619   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
620     return false;
621
622   switch (N->getOpcode()) {
623     default:
624   #ifndef NDEBUG
625     dbgs() << "PromoteIntegerOperand Op #" << OpNo << ": ";
626     N->dump(&DAG); dbgs() << "\n";
627   #endif
628     llvm_unreachable("Do not know how to promote this operator's operand!");
629
630   case ISD::ANY_EXTEND:   Res = PromoteIntOp_ANY_EXTEND(N); break;
631   case ISD::BIT_CONVERT:  Res = PromoteIntOp_BIT_CONVERT(N); break;
632   case ISD::BR_CC:        Res = PromoteIntOp_BR_CC(N, OpNo); break;
633   case ISD::BRCOND:       Res = PromoteIntOp_BRCOND(N, OpNo); break;
634   case ISD::BUILD_PAIR:   Res = PromoteIntOp_BUILD_PAIR(N); break;
635   case ISD::BUILD_VECTOR: Res = PromoteIntOp_BUILD_VECTOR(N); break;
636   case ISD::CONVERT_RNDSAT:
637                           Res = PromoteIntOp_CONVERT_RNDSAT(N); break;
638   case ISD::INSERT_VECTOR_ELT:
639                           Res = PromoteIntOp_INSERT_VECTOR_ELT(N, OpNo);break;
640   case ISD::MEMBARRIER:   Res = PromoteIntOp_MEMBARRIER(N); break;
641   case ISD::SCALAR_TO_VECTOR:
642                           Res = PromoteIntOp_SCALAR_TO_VECTOR(N); break;
643   case ISD::SELECT:       Res = PromoteIntOp_SELECT(N, OpNo); break;
644   case ISD::SELECT_CC:    Res = PromoteIntOp_SELECT_CC(N, OpNo); break;
645   case ISD::SETCC:        Res = PromoteIntOp_SETCC(N, OpNo); break;
646   case ISD::SIGN_EXTEND:  Res = PromoteIntOp_SIGN_EXTEND(N); break;
647   case ISD::SINT_TO_FP:   Res = PromoteIntOp_SINT_TO_FP(N); break;
648   case ISD::STORE:        Res = PromoteIntOp_STORE(cast<StoreSDNode>(N),
649                                                    OpNo); break;
650   case ISD::TRUNCATE:     Res = PromoteIntOp_TRUNCATE(N); break;
651   case ISD::FP16_TO_FP32:
652   case ISD::UINT_TO_FP:   Res = PromoteIntOp_UINT_TO_FP(N); break;
653   case ISD::ZERO_EXTEND:  Res = PromoteIntOp_ZERO_EXTEND(N); break;
654
655   case ISD::SHL:
656   case ISD::SRA:
657   case ISD::SRL:
658   case ISD::ROTL:
659   case ISD::ROTR: Res = PromoteIntOp_Shift(N); break;
660   }
661
662   // If the result is null, the sub-method took care of registering results etc.
663   if (!Res.getNode()) return false;
664
665   // If the result is N, the sub-method updated N in place.  Tell the legalizer
666   // core about this.
667   if (Res.getNode() == N)
668     return true;
669
670   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
671          "Invalid operand expansion");
672
673   ReplaceValueWith(SDValue(N, 0), Res);
674   return false;
675 }
676
677 /// PromoteSetCCOperands - Promote the operands of a comparison.  This code is
678 /// shared among BR_CC, SELECT_CC, and SETCC handlers.
679 void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS,
680                                             ISD::CondCode CCCode) {
681   // We have to insert explicit sign or zero extends.  Note that we could
682   // insert sign extends for ALL conditions, but zero extend is cheaper on
683   // many machines (an AND instead of two shifts), so prefer it.
684   switch (CCCode) {
685   default: llvm_unreachable("Unknown integer comparison!");
686   case ISD::SETEQ:
687   case ISD::SETNE:
688   case ISD::SETUGE:
689   case ISD::SETUGT:
690   case ISD::SETULE:
691   case ISD::SETULT:
692     // ALL of these operations will work if we either sign or zero extend
693     // the operands (including the unsigned comparisons!).  Zero extend is
694     // usually a simpler/cheaper operation, so prefer it.
695     NewLHS = ZExtPromotedInteger(NewLHS);
696     NewRHS = ZExtPromotedInteger(NewRHS);
697     break;
698   case ISD::SETGE:
699   case ISD::SETGT:
700   case ISD::SETLT:
701   case ISD::SETLE:
702     NewLHS = SExtPromotedInteger(NewLHS);
703     NewRHS = SExtPromotedInteger(NewRHS);
704     break;
705   }
706 }
707
708 SDValue DAGTypeLegalizer::PromoteIntOp_ANY_EXTEND(SDNode *N) {
709   SDValue Op = GetPromotedInteger(N->getOperand(0));
710   return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), N->getValueType(0), Op);
711 }
712
713 SDValue DAGTypeLegalizer::PromoteIntOp_BIT_CONVERT(SDNode *N) {
714   // This should only occur in unusual situations like bitcasting to an
715   // x86_fp80, so just turn it into a store+load
716   return CreateStackStoreLoad(N->getOperand(0), N->getValueType(0));
717 }
718
719 SDValue DAGTypeLegalizer::PromoteIntOp_BR_CC(SDNode *N, unsigned OpNo) {
720   assert(OpNo == 2 && "Don't know how to promote this operand!");
721
722   SDValue LHS = N->getOperand(2);
723   SDValue RHS = N->getOperand(3);
724   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(1))->get());
725
726   // The chain (Op#0), CC (#1) and basic block destination (Op#4) are always
727   // legal types.
728   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0),
729                                 N->getOperand(1), LHS, RHS, N->getOperand(4));
730 }
731
732 SDValue DAGTypeLegalizer::PromoteIntOp_BRCOND(SDNode *N, unsigned OpNo) {
733   assert(OpNo == 1 && "only know how to promote condition");
734
735   // Promote all the way up to the canonical SetCC type.
736   EVT SVT = TLI.getSetCCResultType(MVT::Other);
737   SDValue Cond = PromoteTargetBoolean(N->getOperand(1), SVT);
738
739   // The chain (Op#0) and basic block destination (Op#2) are always legal types.
740   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0), Cond,
741                                 N->getOperand(2));
742 }
743
744 SDValue DAGTypeLegalizer::PromoteIntOp_BUILD_PAIR(SDNode *N) {
745   // Since the result type is legal, the operands must promote to it.
746   EVT OVT = N->getOperand(0).getValueType();
747   SDValue Lo = ZExtPromotedInteger(N->getOperand(0));
748   SDValue Hi = GetPromotedInteger(N->getOperand(1));
749   assert(Lo.getValueType() == N->getValueType(0) && "Operand over promoted?");
750   DebugLoc dl = N->getDebugLoc();
751
752   Hi = DAG.getNode(ISD::SHL, dl, N->getValueType(0), Hi,
753                    DAG.getConstant(OVT.getSizeInBits(), TLI.getPointerTy()));
754   return DAG.getNode(ISD::OR, dl, N->getValueType(0), Lo, Hi);
755 }
756
757 SDValue DAGTypeLegalizer::PromoteIntOp_BUILD_VECTOR(SDNode *N) {
758   // The vector type is legal but the element type is not.  This implies
759   // that the vector is a power-of-two in length and that the element
760   // type does not have a strange size (eg: it is not i1).
761   EVT VecVT = N->getValueType(0);
762   unsigned NumElts = VecVT.getVectorNumElements();
763   assert(!(NumElts & 1) && "Legal vector of one illegal element?");
764
765   // Promote the inserted value.  The type does not need to match the
766   // vector element type.  Check that any extra bits introduced will be
767   // truncated away.
768   assert(N->getOperand(0).getValueType().getSizeInBits() >=
769          N->getValueType(0).getVectorElementType().getSizeInBits() &&
770          "Type of inserted value narrower than vector element type!");
771
772   SmallVector<SDValue, 16> NewOps;
773   for (unsigned i = 0; i < NumElts; ++i)
774     NewOps.push_back(GetPromotedInteger(N->getOperand(i)));
775
776   return DAG.UpdateNodeOperands(SDValue(N, 0), &NewOps[0], NumElts);
777 }
778
779 SDValue DAGTypeLegalizer::PromoteIntOp_CONVERT_RNDSAT(SDNode *N) {
780   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
781   assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
782            CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
783            CvtCode == ISD::CVT_FS || CvtCode == ISD::CVT_FU) &&
784            "can only promote integer arguments");
785   SDValue InOp = GetPromotedInteger(N->getOperand(0));
786   return DAG.getConvertRndSat(N->getValueType(0), N->getDebugLoc(), InOp,
787                               N->getOperand(1), N->getOperand(2),
788                               N->getOperand(3), N->getOperand(4), CvtCode);
789 }
790
791 SDValue DAGTypeLegalizer::PromoteIntOp_INSERT_VECTOR_ELT(SDNode *N,
792                                                          unsigned OpNo) {
793   if (OpNo == 1) {
794     // Promote the inserted value.  This is valid because the type does not
795     // have to match the vector element type.
796
797     // Check that any extra bits introduced will be truncated away.
798     assert(N->getOperand(1).getValueType().getSizeInBits() >=
799            N->getValueType(0).getVectorElementType().getSizeInBits() &&
800            "Type of inserted value narrower than vector element type!");
801     return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0),
802                                   GetPromotedInteger(N->getOperand(1)),
803                                   N->getOperand(2));
804   }
805
806   assert(OpNo == 2 && "Different operand and result vector types?");
807
808   // Promote the index.
809   SDValue Idx = ZExtPromotedInteger(N->getOperand(2));
810   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0),
811                                 N->getOperand(1), Idx);
812 }
813
814 SDValue DAGTypeLegalizer::PromoteIntOp_MEMBARRIER(SDNode *N) {
815   SDValue NewOps[6];
816   DebugLoc dl = N->getDebugLoc();
817   NewOps[0] = N->getOperand(0);
818   for (unsigned i = 1; i < array_lengthof(NewOps); ++i) {
819     SDValue Flag = GetPromotedInteger(N->getOperand(i));
820     NewOps[i] = DAG.getZeroExtendInReg(Flag, dl, MVT::i1);
821   }
822   return DAG.UpdateNodeOperands(SDValue (N, 0), NewOps,
823                                 array_lengthof(NewOps));
824 }
825
826 SDValue DAGTypeLegalizer::PromoteIntOp_SCALAR_TO_VECTOR(SDNode *N) {
827   // Integer SCALAR_TO_VECTOR operands are implicitly truncated, so just promote
828   // the operand in place.
829   return DAG.UpdateNodeOperands(SDValue(N, 0),
830                                 GetPromotedInteger(N->getOperand(0)));
831 }
832
833 SDValue DAGTypeLegalizer::PromoteIntOp_SELECT(SDNode *N, unsigned OpNo) {
834   assert(OpNo == 0 && "Only know how to promote condition");
835
836   // Promote all the way up to the canonical SetCC type.
837   EVT SVT = TLI.getSetCCResultType(N->getOperand(1).getValueType());
838   SDValue Cond = PromoteTargetBoolean(N->getOperand(0), SVT);
839
840   return DAG.UpdateNodeOperands(SDValue(N, 0), Cond,
841                                 N->getOperand(1), N->getOperand(2));
842 }
843
844 SDValue DAGTypeLegalizer::PromoteIntOp_SELECT_CC(SDNode *N, unsigned OpNo) {
845   assert(OpNo == 0 && "Don't know how to promote this operand!");
846
847   SDValue LHS = N->getOperand(0);
848   SDValue RHS = N->getOperand(1);
849   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(4))->get());
850
851   // The CC (#4) and the possible return values (#2 and #3) have legal types.
852   return DAG.UpdateNodeOperands(SDValue(N, 0), LHS, RHS, N->getOperand(2),
853                                 N->getOperand(3), N->getOperand(4));
854 }
855
856 SDValue DAGTypeLegalizer::PromoteIntOp_SETCC(SDNode *N, unsigned OpNo) {
857   assert(OpNo == 0 && "Don't know how to promote this operand!");
858
859   SDValue LHS = N->getOperand(0);
860   SDValue RHS = N->getOperand(1);
861   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(2))->get());
862
863   // The CC (#2) is always legal.
864   return DAG.UpdateNodeOperands(SDValue(N, 0), LHS, RHS, N->getOperand(2));
865 }
866
867 SDValue DAGTypeLegalizer::PromoteIntOp_Shift(SDNode *N) {
868   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0),
869                                 ZExtPromotedInteger(N->getOperand(1)));
870 }
871
872 SDValue DAGTypeLegalizer::PromoteIntOp_SIGN_EXTEND(SDNode *N) {
873   SDValue Op = GetPromotedInteger(N->getOperand(0));
874   DebugLoc dl = N->getDebugLoc();
875   Op = DAG.getNode(ISD::ANY_EXTEND, dl, N->getValueType(0), Op);
876   return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Op.getValueType(),
877                      Op, DAG.getValueType(N->getOperand(0).getValueType()));
878 }
879
880 SDValue DAGTypeLegalizer::PromoteIntOp_SINT_TO_FP(SDNode *N) {
881   return DAG.UpdateNodeOperands(SDValue(N, 0),
882                                 SExtPromotedInteger(N->getOperand(0)));
883 }
884
885 SDValue DAGTypeLegalizer::PromoteIntOp_STORE(StoreSDNode *N, unsigned OpNo){
886   assert(ISD::isUNINDEXEDStore(N) && "Indexed store during type legalization!");
887   SDValue Ch = N->getChain(), Ptr = N->getBasePtr();
888   int SVOffset = N->getSrcValueOffset();
889   unsigned Alignment = N->getAlignment();
890   bool isVolatile = N->isVolatile();
891   bool isNonTemporal = N->isNonTemporal();
892   DebugLoc dl = N->getDebugLoc();
893
894   SDValue Val = GetPromotedInteger(N->getValue());  // Get promoted value.
895
896   // Truncate the value and store the result.
897   return DAG.getTruncStore(Ch, dl, Val, Ptr, N->getSrcValue(),
898                            SVOffset, N->getMemoryVT(),
899                            isVolatile, isNonTemporal, Alignment);
900 }
901
902 SDValue DAGTypeLegalizer::PromoteIntOp_TRUNCATE(SDNode *N) {
903   SDValue Op = GetPromotedInteger(N->getOperand(0));
904   return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), N->getValueType(0), Op);
905 }
906
907 SDValue DAGTypeLegalizer::PromoteIntOp_UINT_TO_FP(SDNode *N) {
908   return DAG.UpdateNodeOperands(SDValue(N, 0),
909                                 ZExtPromotedInteger(N->getOperand(0)));
910 }
911
912 SDValue DAGTypeLegalizer::PromoteIntOp_ZERO_EXTEND(SDNode *N) {
913   DebugLoc dl = N->getDebugLoc();
914   SDValue Op = GetPromotedInteger(N->getOperand(0));
915   Op = DAG.getNode(ISD::ANY_EXTEND, dl, N->getValueType(0), Op);
916   return DAG.getZeroExtendInReg(Op, dl, N->getOperand(0).getValueType());
917 }
918
919
920 //===----------------------------------------------------------------------===//
921 //  Integer Result Expansion
922 //===----------------------------------------------------------------------===//
923
924 /// ExpandIntegerResult - This method is called when the specified result of the
925 /// specified node is found to need expansion.  At this point, the node may also
926 /// have invalid operands or may have other results that need promotion, we just
927 /// know that (at least) one result needs expansion.
928 void DAGTypeLegalizer::ExpandIntegerResult(SDNode *N, unsigned ResNo) {
929   DEBUG(dbgs() << "Expand integer result: "; N->dump(&DAG); dbgs() << "\n");
930   SDValue Lo, Hi;
931   Lo = Hi = SDValue();
932
933   // See if the target wants to custom expand this node.
934   if (CustomLowerNode(N, N->getValueType(ResNo), true))
935     return;
936
937   switch (N->getOpcode()) {
938   default:
939 #ifndef NDEBUG
940     dbgs() << "ExpandIntegerResult #" << ResNo << ": ";
941     N->dump(&DAG); dbgs() << "\n";
942 #endif
943     llvm_unreachable("Do not know how to expand the result of this operator!");
944
945   case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, Lo, Hi); break;
946   case ISD::SELECT:       SplitRes_SELECT(N, Lo, Hi); break;
947   case ISD::SELECT_CC:    SplitRes_SELECT_CC(N, Lo, Hi); break;
948   case ISD::UNDEF:        SplitRes_UNDEF(N, Lo, Hi); break;
949
950   case ISD::BIT_CONVERT:        ExpandRes_BIT_CONVERT(N, Lo, Hi); break;
951   case ISD::BUILD_PAIR:         ExpandRes_BUILD_PAIR(N, Lo, Hi); break;
952   case ISD::EXTRACT_ELEMENT:    ExpandRes_EXTRACT_ELEMENT(N, Lo, Hi); break;
953   case ISD::EXTRACT_VECTOR_ELT: ExpandRes_EXTRACT_VECTOR_ELT(N, Lo, Hi); break;
954   case ISD::VAARG:              ExpandRes_VAARG(N, Lo, Hi); break;
955
956   case ISD::ANY_EXTEND:  ExpandIntRes_ANY_EXTEND(N, Lo, Hi); break;
957   case ISD::AssertSext:  ExpandIntRes_AssertSext(N, Lo, Hi); break;
958   case ISD::AssertZext:  ExpandIntRes_AssertZext(N, Lo, Hi); break;
959   case ISD::BSWAP:       ExpandIntRes_BSWAP(N, Lo, Hi); break;
960   case ISD::Constant:    ExpandIntRes_Constant(N, Lo, Hi); break;
961   case ISD::CTLZ:        ExpandIntRes_CTLZ(N, Lo, Hi); break;
962   case ISD::CTPOP:       ExpandIntRes_CTPOP(N, Lo, Hi); break;
963   case ISD::CTTZ:        ExpandIntRes_CTTZ(N, Lo, Hi); break;
964   case ISD::FP_TO_SINT:  ExpandIntRes_FP_TO_SINT(N, Lo, Hi); break;
965   case ISD::FP_TO_UINT:  ExpandIntRes_FP_TO_UINT(N, Lo, Hi); break;
966   case ISD::LOAD:        ExpandIntRes_LOAD(cast<LoadSDNode>(N), Lo, Hi); break;
967   case ISD::MUL:         ExpandIntRes_MUL(N, Lo, Hi); break;
968   case ISD::SDIV:        ExpandIntRes_SDIV(N, Lo, Hi); break;
969   case ISD::SIGN_EXTEND: ExpandIntRes_SIGN_EXTEND(N, Lo, Hi); break;
970   case ISD::SIGN_EXTEND_INREG: ExpandIntRes_SIGN_EXTEND_INREG(N, Lo, Hi); break;
971   case ISD::SREM:        ExpandIntRes_SREM(N, Lo, Hi); break;
972   case ISD::TRUNCATE:    ExpandIntRes_TRUNCATE(N, Lo, Hi); break;
973   case ISD::UDIV:        ExpandIntRes_UDIV(N, Lo, Hi); break;
974   case ISD::UREM:        ExpandIntRes_UREM(N, Lo, Hi); break;
975   case ISD::ZERO_EXTEND: ExpandIntRes_ZERO_EXTEND(N, Lo, Hi); break;
976
977   case ISD::AND:
978   case ISD::OR:
979   case ISD::XOR: ExpandIntRes_Logical(N, Lo, Hi); break;
980
981   case ISD::ADD:
982   case ISD::SUB: ExpandIntRes_ADDSUB(N, Lo, Hi); break;
983
984   case ISD::ADDC:
985   case ISD::SUBC: ExpandIntRes_ADDSUBC(N, Lo, Hi); break;
986
987   case ISD::ADDE:
988   case ISD::SUBE: ExpandIntRes_ADDSUBE(N, Lo, Hi); break;
989
990   case ISD::SHL:
991   case ISD::SRA:
992   case ISD::SRL: ExpandIntRes_Shift(N, Lo, Hi); break;
993   }
994
995   // If Lo/Hi is null, the sub-method took care of registering results etc.
996   if (Lo.getNode())
997     SetExpandedInteger(SDValue(N, ResNo), Lo, Hi);
998 }
999
1000 /// ExpandShiftByConstant - N is a shift by a value that needs to be expanded,
1001 /// and the shift amount is a constant 'Amt'.  Expand the operation.
1002 void DAGTypeLegalizer::ExpandShiftByConstant(SDNode *N, unsigned Amt,
1003                                              SDValue &Lo, SDValue &Hi) {
1004   DebugLoc dl = N->getDebugLoc();
1005   // Expand the incoming operand to be shifted, so that we have its parts
1006   SDValue InL, InH;
1007   GetExpandedInteger(N->getOperand(0), InL, InH);
1008
1009   EVT NVT = InL.getValueType();
1010   unsigned VTBits = N->getValueType(0).getSizeInBits();
1011   unsigned NVTBits = NVT.getSizeInBits();
1012   EVT ShTy = N->getOperand(1).getValueType();
1013
1014   if (N->getOpcode() == ISD::SHL) {
1015     if (Amt > VTBits) {
1016       Lo = Hi = DAG.getConstant(0, NVT);
1017     } else if (Amt > NVTBits) {
1018       Lo = DAG.getConstant(0, NVT);
1019       Hi = DAG.getNode(ISD::SHL, dl,
1020                        NVT, InL, DAG.getConstant(Amt-NVTBits,ShTy));
1021     } else if (Amt == NVTBits) {
1022       Lo = DAG.getConstant(0, NVT);
1023       Hi = InL;
1024     } else if (Amt == 1 &&
1025                TLI.isOperationLegalOrCustom(ISD::ADDC,
1026                                             TLI.getTypeToExpandTo(*DAG.getContext(), NVT))) {
1027       // Emit this X << 1 as X+X.
1028       SDVTList VTList = DAG.getVTList(NVT, MVT::Flag);
1029       SDValue LoOps[2] = { InL, InL };
1030       Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
1031       SDValue HiOps[3] = { InH, InH, Lo.getValue(1) };
1032       Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
1033     } else {
1034       Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Amt, ShTy));
1035       Hi = DAG.getNode(ISD::OR, dl, NVT,
1036                        DAG.getNode(ISD::SHL, dl, NVT, InH,
1037                                    DAG.getConstant(Amt, ShTy)),
1038                        DAG.getNode(ISD::SRL, dl, NVT, InL,
1039                                    DAG.getConstant(NVTBits-Amt, ShTy)));
1040     }
1041     return;
1042   }
1043
1044   if (N->getOpcode() == ISD::SRL) {
1045     if (Amt > VTBits) {
1046       Lo = DAG.getConstant(0, NVT);
1047       Hi = DAG.getConstant(0, NVT);
1048     } else if (Amt > NVTBits) {
1049       Lo = DAG.getNode(ISD::SRL, dl,
1050                        NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1051       Hi = DAG.getConstant(0, NVT);
1052     } else if (Amt == NVTBits) {
1053       Lo = InH;
1054       Hi = DAG.getConstant(0, NVT);
1055     } else {
1056       Lo = DAG.getNode(ISD::OR, dl, NVT,
1057                        DAG.getNode(ISD::SRL, dl, NVT, InL,
1058                                    DAG.getConstant(Amt, ShTy)),
1059                        DAG.getNode(ISD::SHL, dl, NVT, InH,
1060                                    DAG.getConstant(NVTBits-Amt, ShTy)));
1061       Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Amt, ShTy));
1062     }
1063     return;
1064   }
1065
1066   assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
1067   if (Amt > VTBits) {
1068     Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
1069                           DAG.getConstant(NVTBits-1, ShTy));
1070   } else if (Amt > NVTBits) {
1071     Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
1072                      DAG.getConstant(Amt-NVTBits, ShTy));
1073     Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
1074                      DAG.getConstant(NVTBits-1, ShTy));
1075   } else if (Amt == NVTBits) {
1076     Lo = InH;
1077     Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
1078                      DAG.getConstant(NVTBits-1, ShTy));
1079   } else {
1080     Lo = DAG.getNode(ISD::OR, dl, NVT,
1081                      DAG.getNode(ISD::SRL, dl, NVT, InL,
1082                                  DAG.getConstant(Amt, ShTy)),
1083                      DAG.getNode(ISD::SHL, dl, NVT, InH,
1084                                  DAG.getConstant(NVTBits-Amt, ShTy)));
1085     Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Amt, ShTy));
1086   }
1087 }
1088
1089 /// ExpandShiftWithKnownAmountBit - Try to determine whether we can simplify
1090 /// this shift based on knowledge of the high bit of the shift amount.  If we
1091 /// can tell this, we know that it is >= 32 or < 32, without knowing the actual
1092 /// shift amount.
1093 bool DAGTypeLegalizer::
1094 ExpandShiftWithKnownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
1095   SDValue Amt = N->getOperand(1);
1096   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1097   EVT ShTy = Amt.getValueType();
1098   unsigned ShBits = ShTy.getScalarType().getSizeInBits();
1099   unsigned NVTBits = NVT.getScalarType().getSizeInBits();
1100   assert(isPowerOf2_32(NVTBits) &&
1101          "Expanded integer type size not a power of two!");
1102   DebugLoc dl = N->getDebugLoc();
1103
1104   APInt HighBitMask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
1105   APInt KnownZero, KnownOne;
1106   DAG.ComputeMaskedBits(N->getOperand(1), HighBitMask, KnownZero, KnownOne);
1107
1108   // If we don't know anything about the high bits, exit.
1109   if (((KnownZero|KnownOne) & HighBitMask) == 0)
1110     return false;
1111
1112   // Get the incoming operand to be shifted.
1113   SDValue InL, InH;
1114   GetExpandedInteger(N->getOperand(0), InL, InH);
1115
1116   // If we know that any of the high bits of the shift amount are one, then we
1117   // can do this as a couple of simple shifts.
1118   if (KnownOne.intersects(HighBitMask)) {
1119     // Mask out the high bit, which we know is set.
1120     Amt = DAG.getNode(ISD::AND, dl, ShTy, Amt,
1121                       DAG.getConstant(~HighBitMask, ShTy));
1122
1123     switch (N->getOpcode()) {
1124     default: llvm_unreachable("Unknown shift");
1125     case ISD::SHL:
1126       Lo = DAG.getConstant(0, NVT);              // Low part is zero.
1127       Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
1128       return true;
1129     case ISD::SRL:
1130       Hi = DAG.getConstant(0, NVT);              // Hi part is zero.
1131       Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
1132       return true;
1133     case ISD::SRA:
1134       Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,       // Sign extend high part.
1135                        DAG.getConstant(NVTBits-1, ShTy));
1136       Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
1137       return true;
1138     }
1139   }
1140
1141 #if 0
1142   // FIXME: This code is broken for shifts with a zero amount!
1143   // If we know that all of the high bits of the shift amount are zero, then we
1144   // can do this as a couple of simple shifts.
1145   if ((KnownZero & HighBitMask) == HighBitMask) {
1146     // Compute 32-amt.
1147     SDValue Amt2 = DAG.getNode(ISD::SUB, ShTy,
1148                                  DAG.getConstant(NVTBits, ShTy),
1149                                  Amt);
1150     unsigned Op1, Op2;
1151     switch (N->getOpcode()) {
1152     default: llvm_unreachable("Unknown shift");
1153     case ISD::SHL:  Op1 = ISD::SHL; Op2 = ISD::SRL; break;
1154     case ISD::SRL:
1155     case ISD::SRA:  Op1 = ISD::SRL; Op2 = ISD::SHL; break;
1156     }
1157
1158     Lo = DAG.getNode(N->getOpcode(), NVT, InL, Amt);
1159     Hi = DAG.getNode(ISD::OR, NVT,
1160                      DAG.getNode(Op1, NVT, InH, Amt),
1161                      DAG.getNode(Op2, NVT, InL, Amt2));
1162     return true;
1163   }
1164 #endif
1165
1166   return false;
1167 }
1168
1169 /// ExpandShiftWithUnknownAmountBit - Fully general expansion of integer shift
1170 /// of any size.
1171 bool DAGTypeLegalizer::
1172 ExpandShiftWithUnknownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
1173   SDValue Amt = N->getOperand(1);
1174   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1175   EVT ShTy = Amt.getValueType();
1176   unsigned NVTBits = NVT.getSizeInBits();
1177   assert(isPowerOf2_32(NVTBits) &&
1178          "Expanded integer type size not a power of two!");
1179   DebugLoc dl = N->getDebugLoc();
1180
1181   // Get the incoming operand to be shifted.
1182   SDValue InL, InH;
1183   GetExpandedInteger(N->getOperand(0), InL, InH);
1184
1185   SDValue NVBitsNode = DAG.getConstant(NVTBits, ShTy);
1186   SDValue AmtExcess = DAG.getNode(ISD::SUB, dl, ShTy, Amt, NVBitsNode);
1187   SDValue AmtLack = DAG.getNode(ISD::SUB, dl, ShTy, NVBitsNode, Amt);
1188   SDValue isShort = DAG.getSetCC(dl, TLI.getSetCCResultType(ShTy),
1189                                  Amt, NVBitsNode, ISD::SETULT);
1190
1191   SDValue LoS, HiS, LoL, HiL;
1192   switch (N->getOpcode()) {
1193   default: llvm_unreachable("Unknown shift");
1194   case ISD::SHL:
1195     // Short: ShAmt < NVTBits
1196     LoS = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
1197     HiS = DAG.getNode(ISD::OR, dl, NVT,
1198                       DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
1199     // FIXME: If Amt is zero, the following shift generates an undefined result
1200     // on some architectures.
1201                       DAG.getNode(ISD::SRL, dl, NVT, InL, AmtLack));
1202
1203     // Long: ShAmt >= NVTBits
1204     LoL = DAG.getConstant(0, NVT);                        // Lo part is zero.
1205     HiL = DAG.getNode(ISD::SHL, dl, NVT, InL, AmtExcess); // Hi from Lo part.
1206
1207     Lo = DAG.getNode(ISD::SELECT, dl, NVT, isShort, LoS, LoL);
1208     Hi = DAG.getNode(ISD::SELECT, dl, NVT, isShort, HiS, HiL);
1209     return true;
1210   case ISD::SRL:
1211     // Short: ShAmt < NVTBits
1212     HiS = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
1213     LoS = DAG.getNode(ISD::OR, dl, NVT,
1214                       DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
1215     // FIXME: If Amt is zero, the following shift generates an undefined result
1216     // on some architectures.
1217                       DAG.getNode(ISD::SHL, dl, NVT, InH, AmtLack));
1218
1219     // Long: ShAmt >= NVTBits
1220     HiL = DAG.getConstant(0, NVT);                        // Hi part is zero.
1221     LoL = DAG.getNode(ISD::SRL, dl, NVT, InH, AmtExcess); // Lo from Hi part.
1222
1223     Lo = DAG.getNode(ISD::SELECT, dl, NVT, isShort, LoS, LoL);
1224     Hi = DAG.getNode(ISD::SELECT, dl, NVT, isShort, HiS, HiL);
1225     return true;
1226   case ISD::SRA:
1227     // Short: ShAmt < NVTBits
1228     HiS = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
1229     LoS = DAG.getNode(ISD::OR, dl, NVT,
1230                       DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
1231     // FIXME: If Amt is zero, the following shift generates an undefined result
1232     // on some architectures.
1233                       DAG.getNode(ISD::SHL, dl, NVT, InH, AmtLack));
1234
1235     // Long: ShAmt >= NVTBits
1236     HiL = DAG.getNode(ISD::SRA, dl, NVT, InH,             // Sign of Hi part.
1237                       DAG.getConstant(NVTBits-1, ShTy));
1238     LoL = DAG.getNode(ISD::SRA, dl, NVT, InH, AmtExcess); // Lo from Hi part.
1239
1240     Lo = DAG.getNode(ISD::SELECT, dl, NVT, isShort, LoS, LoL);
1241     Hi = DAG.getNode(ISD::SELECT, dl, NVT, isShort, HiS, HiL);
1242     return true;
1243   }
1244
1245   return false;
1246 }
1247
1248 void DAGTypeLegalizer::ExpandIntRes_ADDSUB(SDNode *N,
1249                                            SDValue &Lo, SDValue &Hi) {
1250   DebugLoc dl = N->getDebugLoc();
1251   // Expand the subcomponents.
1252   SDValue LHSL, LHSH, RHSL, RHSH;
1253   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1254   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1255
1256   EVT NVT = LHSL.getValueType();
1257   SDValue LoOps[2] = { LHSL, RHSL };
1258   SDValue HiOps[3] = { LHSH, RHSH };
1259
1260   // Do not generate ADDC/ADDE or SUBC/SUBE if the target does not support
1261   // them.  TODO: Teach operation legalization how to expand unsupported
1262   // ADDC/ADDE/SUBC/SUBE.  The problem is that these operations generate
1263   // a carry of type MVT::Flag, but there doesn't seem to be any way to
1264   // generate a value of this type in the expanded code sequence.
1265   bool hasCarry =
1266     TLI.isOperationLegalOrCustom(N->getOpcode() == ISD::ADD ?
1267                                    ISD::ADDC : ISD::SUBC,
1268                                  TLI.getTypeToExpandTo(*DAG.getContext(), NVT));
1269
1270   if (hasCarry) {
1271     SDVTList VTList = DAG.getVTList(NVT, MVT::Flag);
1272     if (N->getOpcode() == ISD::ADD) {
1273       Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
1274       HiOps[2] = Lo.getValue(1);
1275       Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
1276     } else {
1277       Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
1278       HiOps[2] = Lo.getValue(1);
1279       Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
1280     }
1281   } else {
1282     if (N->getOpcode() == ISD::ADD) {
1283       Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
1284       Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
1285       SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), Lo, LoOps[0],
1286                                   ISD::SETULT);
1287       SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
1288                                    DAG.getConstant(1, NVT),
1289                                    DAG.getConstant(0, NVT));
1290       SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), Lo, LoOps[1],
1291                                   ISD::SETULT);
1292       SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
1293                                    DAG.getConstant(1, NVT), Carry1);
1294       Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
1295     } else {
1296       Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
1297       Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
1298       SDValue Cmp =
1299         DAG.getSetCC(dl, TLI.getSetCCResultType(LoOps[0].getValueType()),
1300                      LoOps[0], LoOps[1], ISD::SETULT);
1301       SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
1302                                    DAG.getConstant(1, NVT),
1303                                    DAG.getConstant(0, NVT));
1304       Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
1305     }
1306   }
1307 }
1308
1309 void DAGTypeLegalizer::ExpandIntRes_ADDSUBC(SDNode *N,
1310                                             SDValue &Lo, SDValue &Hi) {
1311   // Expand the subcomponents.
1312   SDValue LHSL, LHSH, RHSL, RHSH;
1313   DebugLoc dl = N->getDebugLoc();
1314   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1315   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1316   SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
1317   SDValue LoOps[2] = { LHSL, RHSL };
1318   SDValue HiOps[3] = { LHSH, RHSH };
1319
1320   if (N->getOpcode() == ISD::ADDC) {
1321     Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
1322     HiOps[2] = Lo.getValue(1);
1323     Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
1324   } else {
1325     Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
1326     HiOps[2] = Lo.getValue(1);
1327     Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
1328   }
1329
1330   // Legalized the flag result - switch anything that used the old flag to
1331   // use the new one.
1332   ReplaceValueWith(SDValue(N, 1), Hi.getValue(1));
1333 }
1334
1335 void DAGTypeLegalizer::ExpandIntRes_ADDSUBE(SDNode *N,
1336                                             SDValue &Lo, SDValue &Hi) {
1337   // Expand the subcomponents.
1338   SDValue LHSL, LHSH, RHSL, RHSH;
1339   DebugLoc dl = N->getDebugLoc();
1340   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1341   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1342   SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
1343   SDValue LoOps[3] = { LHSL, RHSL, N->getOperand(2) };
1344   SDValue HiOps[3] = { LHSH, RHSH };
1345
1346   Lo = DAG.getNode(N->getOpcode(), dl, VTList, LoOps, 3);
1347   HiOps[2] = Lo.getValue(1);
1348   Hi = DAG.getNode(N->getOpcode(), dl, VTList, HiOps, 3);
1349
1350   // Legalized the flag result - switch anything that used the old flag to
1351   // use the new one.
1352   ReplaceValueWith(SDValue(N, 1), Hi.getValue(1));
1353 }
1354
1355 void DAGTypeLegalizer::ExpandIntRes_ANY_EXTEND(SDNode *N,
1356                                                SDValue &Lo, SDValue &Hi) {
1357   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1358   DebugLoc dl = N->getDebugLoc();
1359   SDValue Op = N->getOperand(0);
1360   if (Op.getValueType().bitsLE(NVT)) {
1361     // The low part is any extension of the input (which degenerates to a copy).
1362     Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Op);
1363     Hi = DAG.getUNDEF(NVT);   // The high part is undefined.
1364   } else {
1365     // For example, extension of an i48 to an i64.  The operand type necessarily
1366     // promotes to the result type, so will end up being expanded too.
1367     assert(getTypeAction(Op.getValueType()) == PromoteInteger &&
1368            "Only know how to promote this result!");
1369     SDValue Res = GetPromotedInteger(Op);
1370     assert(Res.getValueType() == N->getValueType(0) &&
1371            "Operand over promoted?");
1372     // Split the promoted operand.  This will simplify when it is expanded.
1373     SplitInteger(Res, Lo, Hi);
1374   }
1375 }
1376
1377 void DAGTypeLegalizer::ExpandIntRes_AssertSext(SDNode *N,
1378                                                SDValue &Lo, SDValue &Hi) {
1379   DebugLoc dl = N->getDebugLoc();
1380   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1381   EVT NVT = Lo.getValueType();
1382   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
1383   unsigned NVTBits = NVT.getSizeInBits();
1384   unsigned EVTBits = EVT.getSizeInBits();
1385
1386   if (NVTBits < EVTBits) {
1387     Hi = DAG.getNode(ISD::AssertSext, dl, NVT, Hi,
1388                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), EVTBits - NVTBits)));
1389   } else {
1390     Lo = DAG.getNode(ISD::AssertSext, dl, NVT, Lo, DAG.getValueType(EVT));
1391     // The high part replicates the sign bit of Lo, make it explicit.
1392     Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
1393                      DAG.getConstant(NVTBits-1, TLI.getPointerTy()));
1394   }
1395 }
1396
1397 void DAGTypeLegalizer::ExpandIntRes_AssertZext(SDNode *N,
1398                                                SDValue &Lo, SDValue &Hi) {
1399   DebugLoc dl = N->getDebugLoc();
1400   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1401   EVT NVT = Lo.getValueType();
1402   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
1403   unsigned NVTBits = NVT.getSizeInBits();
1404   unsigned EVTBits = EVT.getSizeInBits();
1405
1406   if (NVTBits < EVTBits) {
1407     Hi = DAG.getNode(ISD::AssertZext, dl, NVT, Hi,
1408                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), EVTBits - NVTBits)));
1409   } else {
1410     Lo = DAG.getNode(ISD::AssertZext, dl, NVT, Lo, DAG.getValueType(EVT));
1411     // The high part must be zero, make it explicit.
1412     Hi = DAG.getConstant(0, NVT);
1413   }
1414 }
1415
1416 void DAGTypeLegalizer::ExpandIntRes_BSWAP(SDNode *N,
1417                                           SDValue &Lo, SDValue &Hi) {
1418   DebugLoc dl = N->getDebugLoc();
1419   GetExpandedInteger(N->getOperand(0), Hi, Lo);  // Note swapped operands.
1420   Lo = DAG.getNode(ISD::BSWAP, dl, Lo.getValueType(), Lo);
1421   Hi = DAG.getNode(ISD::BSWAP, dl, Hi.getValueType(), Hi);
1422 }
1423
1424 void DAGTypeLegalizer::ExpandIntRes_Constant(SDNode *N,
1425                                              SDValue &Lo, SDValue &Hi) {
1426   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1427   unsigned NBitWidth = NVT.getSizeInBits();
1428   const APInt &Cst = cast<ConstantSDNode>(N)->getAPIntValue();
1429   Lo = DAG.getConstant(APInt(Cst).trunc(NBitWidth), NVT);
1430   Hi = DAG.getConstant(Cst.lshr(NBitWidth).trunc(NBitWidth), NVT);
1431 }
1432
1433 void DAGTypeLegalizer::ExpandIntRes_CTLZ(SDNode *N,
1434                                          SDValue &Lo, SDValue &Hi) {
1435   DebugLoc dl = N->getDebugLoc();
1436   // ctlz (HiLo) -> Hi != 0 ? ctlz(Hi) : (ctlz(Lo)+32)
1437   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1438   EVT NVT = Lo.getValueType();
1439
1440   SDValue HiNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), Hi,
1441                                    DAG.getConstant(0, NVT), ISD::SETNE);
1442
1443   SDValue LoLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
1444   SDValue HiLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
1445
1446   Lo = DAG.getNode(ISD::SELECT, dl, NVT, HiNotZero, HiLZ,
1447                    DAG.getNode(ISD::ADD, dl, NVT, LoLZ,
1448                                DAG.getConstant(NVT.getSizeInBits(), NVT)));
1449   Hi = DAG.getConstant(0, NVT);
1450 }
1451
1452 void DAGTypeLegalizer::ExpandIntRes_CTPOP(SDNode *N,
1453                                           SDValue &Lo, SDValue &Hi) {
1454   DebugLoc dl = N->getDebugLoc();
1455   // ctpop(HiLo) -> ctpop(Hi)+ctpop(Lo)
1456   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1457   EVT NVT = Lo.getValueType();
1458   Lo = DAG.getNode(ISD::ADD, dl, NVT, DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
1459                    DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
1460   Hi = DAG.getConstant(0, NVT);
1461 }
1462
1463 void DAGTypeLegalizer::ExpandIntRes_CTTZ(SDNode *N,
1464                                          SDValue &Lo, SDValue &Hi) {
1465   DebugLoc dl = N->getDebugLoc();
1466   // cttz (HiLo) -> Lo != 0 ? cttz(Lo) : (cttz(Hi)+32)
1467   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1468   EVT NVT = Lo.getValueType();
1469
1470   SDValue LoNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), Lo,
1471                                    DAG.getConstant(0, NVT), ISD::SETNE);
1472
1473   SDValue LoLZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
1474   SDValue HiLZ = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
1475
1476   Lo = DAG.getNode(ISD::SELECT, dl, NVT, LoNotZero, LoLZ,
1477                    DAG.getNode(ISD::ADD, dl, NVT, HiLZ,
1478                                DAG.getConstant(NVT.getSizeInBits(), NVT)));
1479   Hi = DAG.getConstant(0, NVT);
1480 }
1481
1482 void DAGTypeLegalizer::ExpandIntRes_FP_TO_SINT(SDNode *N, SDValue &Lo,
1483                                                SDValue &Hi) {
1484   DebugLoc dl = N->getDebugLoc();
1485   EVT VT = N->getValueType(0);
1486   SDValue Op = N->getOperand(0);
1487   RTLIB::Libcall LC = RTLIB::getFPTOSINT(Op.getValueType(), VT);
1488   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-sint conversion!");
1489   SplitInteger(MakeLibCall(LC, VT, &Op, 1, true/*irrelevant*/, dl), Lo, Hi);
1490 }
1491
1492 void DAGTypeLegalizer::ExpandIntRes_FP_TO_UINT(SDNode *N, SDValue &Lo,
1493                                                SDValue &Hi) {
1494   DebugLoc dl = N->getDebugLoc();
1495   EVT VT = N->getValueType(0);
1496   SDValue Op = N->getOperand(0);
1497   RTLIB::Libcall LC = RTLIB::getFPTOUINT(Op.getValueType(), VT);
1498   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
1499   SplitInteger(MakeLibCall(LC, VT, &Op, 1, false/*irrelevant*/, dl), Lo, Hi);
1500 }
1501
1502 void DAGTypeLegalizer::ExpandIntRes_LOAD(LoadSDNode *N,
1503                                          SDValue &Lo, SDValue &Hi) {
1504   if (ISD::isNormalLoad(N)) {
1505     ExpandRes_NormalLoad(N, Lo, Hi);
1506     return;
1507   }
1508
1509   assert(ISD::isUNINDEXEDLoad(N) && "Indexed load during type legalization!");
1510
1511   EVT VT = N->getValueType(0);
1512   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1513   SDValue Ch  = N->getChain();
1514   SDValue Ptr = N->getBasePtr();
1515   ISD::LoadExtType ExtType = N->getExtensionType();
1516   int SVOffset = N->getSrcValueOffset();
1517   unsigned Alignment = N->getAlignment();
1518   bool isVolatile = N->isVolatile();
1519   bool isNonTemporal = N->isNonTemporal();
1520   DebugLoc dl = N->getDebugLoc();
1521
1522   assert(NVT.isByteSized() && "Expanded type not byte sized!");
1523
1524   if (N->getMemoryVT().bitsLE(NVT)) {
1525     EVT MemVT = N->getMemoryVT();
1526
1527     Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getSrcValue(), SVOffset,
1528                         MemVT, isVolatile, isNonTemporal, Alignment);
1529
1530     // Remember the chain.
1531     Ch = Lo.getValue(1);
1532
1533     if (ExtType == ISD::SEXTLOAD) {
1534       // The high part is obtained by SRA'ing all but one of the bits of the
1535       // lo part.
1536       unsigned LoSize = Lo.getValueType().getSizeInBits();
1537       Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
1538                        DAG.getConstant(LoSize-1, TLI.getPointerTy()));
1539     } else if (ExtType == ISD::ZEXTLOAD) {
1540       // The high part is just a zero.
1541       Hi = DAG.getConstant(0, NVT);
1542     } else {
1543       assert(ExtType == ISD::EXTLOAD && "Unknown extload!");
1544       // The high part is undefined.
1545       Hi = DAG.getUNDEF(NVT);
1546     }
1547   } else if (TLI.isLittleEndian()) {
1548     // Little-endian - low bits are at low addresses.
1549     Lo = DAG.getLoad(NVT, dl, Ch, Ptr, N->getSrcValue(), SVOffset,
1550                      isVolatile, isNonTemporal, Alignment);
1551
1552     unsigned ExcessBits =
1553       N->getMemoryVT().getSizeInBits() - NVT.getSizeInBits();
1554     EVT NEVT = EVT::getIntegerVT(*DAG.getContext(), ExcessBits);
1555
1556     // Increment the pointer to the other half.
1557     unsigned IncrementSize = NVT.getSizeInBits()/8;
1558     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1559                       DAG.getIntPtrConstant(IncrementSize));
1560     Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getSrcValue(),
1561                         SVOffset+IncrementSize, NEVT,
1562                         isVolatile, isNonTemporal,
1563                         MinAlign(Alignment, IncrementSize));
1564
1565     // Build a factor node to remember that this load is independent of the
1566     // other one.
1567     Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1568                      Hi.getValue(1));
1569   } else {
1570     // Big-endian - high bits are at low addresses.  Favor aligned loads at
1571     // the cost of some bit-fiddling.
1572     EVT MemVT = N->getMemoryVT();
1573     unsigned EBytes = MemVT.getStoreSize();
1574     unsigned IncrementSize = NVT.getSizeInBits()/8;
1575     unsigned ExcessBits = (EBytes - IncrementSize)*8;
1576
1577     // Load both the high bits and maybe some of the low bits.
1578     Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getSrcValue(), SVOffset,
1579                         EVT::getIntegerVT(*DAG.getContext(),
1580                                           MemVT.getSizeInBits() - ExcessBits),
1581                         isVolatile, isNonTemporal, Alignment);
1582
1583     // Increment the pointer to the other half.
1584     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1585                       DAG.getIntPtrConstant(IncrementSize));
1586     // Load the rest of the low bits.
1587     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, NVT, Ch, Ptr, N->getSrcValue(),
1588                         SVOffset+IncrementSize,
1589                         EVT::getIntegerVT(*DAG.getContext(), ExcessBits),
1590                         isVolatile, isNonTemporal,
1591                         MinAlign(Alignment, IncrementSize));
1592
1593     // Build a factor node to remember that this load is independent of the
1594     // other one.
1595     Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1596                      Hi.getValue(1));
1597
1598     if (ExcessBits < NVT.getSizeInBits()) {
1599       // Transfer low bits from the bottom of Hi to the top of Lo.
1600       Lo = DAG.getNode(ISD::OR, dl, NVT, Lo,
1601                        DAG.getNode(ISD::SHL, dl, NVT, Hi,
1602                                    DAG.getConstant(ExcessBits,
1603                                                    TLI.getPointerTy())));
1604       // Move high bits to the right position in Hi.
1605       Hi = DAG.getNode(ExtType == ISD::SEXTLOAD ? ISD::SRA : ISD::SRL, dl,
1606                        NVT, Hi,
1607                        DAG.getConstant(NVT.getSizeInBits() - ExcessBits,
1608                                        TLI.getPointerTy()));
1609     }
1610   }
1611
1612   // Legalized the chain result - switch anything that used the old chain to
1613   // use the new one.
1614   ReplaceValueWith(SDValue(N, 1), Ch);
1615 }
1616
1617 void DAGTypeLegalizer::ExpandIntRes_Logical(SDNode *N,
1618                                             SDValue &Lo, SDValue &Hi) {
1619   DebugLoc dl = N->getDebugLoc();
1620   SDValue LL, LH, RL, RH;
1621   GetExpandedInteger(N->getOperand(0), LL, LH);
1622   GetExpandedInteger(N->getOperand(1), RL, RH);
1623   Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
1624   Hi = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LH, RH);
1625 }
1626
1627 void DAGTypeLegalizer::ExpandIntRes_MUL(SDNode *N,
1628                                         SDValue &Lo, SDValue &Hi) {
1629   EVT VT = N->getValueType(0);
1630   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1631   DebugLoc dl = N->getDebugLoc();
1632
1633   bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
1634   bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
1635   bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
1636   bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
1637   if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
1638     SDValue LL, LH, RL, RH;
1639     GetExpandedInteger(N->getOperand(0), LL, LH);
1640     GetExpandedInteger(N->getOperand(1), RL, RH);
1641     unsigned OuterBitSize = VT.getSizeInBits();
1642     unsigned InnerBitSize = NVT.getSizeInBits();
1643     unsigned LHSSB = DAG.ComputeNumSignBits(N->getOperand(0));
1644     unsigned RHSSB = DAG.ComputeNumSignBits(N->getOperand(1));
1645
1646     APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
1647     if (DAG.MaskedValueIsZero(N->getOperand(0), HighMask) &&
1648         DAG.MaskedValueIsZero(N->getOperand(1), HighMask)) {
1649       // The inputs are both zero-extended.
1650       if (HasUMUL_LOHI) {
1651         // We can emit a umul_lohi.
1652         Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1653         Hi = SDValue(Lo.getNode(), 1);
1654         return;
1655       }
1656       if (HasMULHU) {
1657         // We can emit a mulhu+mul.
1658         Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
1659         Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
1660         return;
1661       }
1662     }
1663     if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
1664       // The input values are both sign-extended.
1665       if (HasSMUL_LOHI) {
1666         // We can emit a smul_lohi.
1667         Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
1668         Hi = SDValue(Lo.getNode(), 1);
1669         return;
1670       }
1671       if (HasMULHS) {
1672         // We can emit a mulhs+mul.
1673         Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
1674         Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
1675         return;
1676       }
1677     }
1678     if (HasUMUL_LOHI) {
1679       // Lo,Hi = umul LHS, RHS.
1680       SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
1681                                        DAG.getVTList(NVT, NVT), LL, RL);
1682       Lo = UMulLOHI;
1683       Hi = UMulLOHI.getValue(1);
1684       RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
1685       LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
1686       Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
1687       Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
1688       return;
1689     }
1690     if (HasMULHU) {
1691       Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
1692       Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
1693       RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
1694       LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
1695       Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
1696       Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
1697       return;
1698     }
1699   }
1700
1701   // If nothing else, we can make a libcall.
1702   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1703   if (VT == MVT::i16)
1704     LC = RTLIB::MUL_I16;
1705   else if (VT == MVT::i32)
1706     LC = RTLIB::MUL_I32;
1707   else if (VT == MVT::i64)
1708     LC = RTLIB::MUL_I64;
1709   else if (VT == MVT::i128)
1710     LC = RTLIB::MUL_I128;
1711   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported MUL!");
1712
1713   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1714   SplitInteger(MakeLibCall(LC, VT, Ops, 2, true/*irrelevant*/, dl), Lo, Hi);
1715 }
1716
1717 void DAGTypeLegalizer::ExpandIntRes_SDIV(SDNode *N,
1718                                          SDValue &Lo, SDValue &Hi) {
1719   EVT VT = N->getValueType(0);
1720   DebugLoc dl = N->getDebugLoc();
1721
1722   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1723   if (VT == MVT::i16)
1724     LC = RTLIB::SDIV_I16;
1725   else if (VT == MVT::i32)
1726     LC = RTLIB::SDIV_I32;
1727   else if (VT == MVT::i64)
1728     LC = RTLIB::SDIV_I64;
1729   else if (VT == MVT::i128)
1730     LC = RTLIB::SDIV_I128;
1731   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
1732
1733   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1734   SplitInteger(MakeLibCall(LC, VT, Ops, 2, true, dl), Lo, Hi);
1735 }
1736
1737 void DAGTypeLegalizer::ExpandIntRes_Shift(SDNode *N,
1738                                           SDValue &Lo, SDValue &Hi) {
1739   EVT VT = N->getValueType(0);
1740   DebugLoc dl = N->getDebugLoc();
1741
1742   // If we can emit an efficient shift operation, do so now.  Check to see if
1743   // the RHS is a constant.
1744   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1745     return ExpandShiftByConstant(N, CN->getZExtValue(), Lo, Hi);
1746
1747   // If we can determine that the high bit of the shift is zero or one, even if
1748   // the low bits are variable, emit this shift in an optimized form.
1749   if (ExpandShiftWithKnownAmountBit(N, Lo, Hi))
1750     return;
1751
1752   // If this target supports shift_PARTS, use it.  First, map to the _PARTS opc.
1753   unsigned PartsOpc;
1754   if (N->getOpcode() == ISD::SHL) {
1755     PartsOpc = ISD::SHL_PARTS;
1756   } else if (N->getOpcode() == ISD::SRL) {
1757     PartsOpc = ISD::SRL_PARTS;
1758   } else {
1759     assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
1760     PartsOpc = ISD::SRA_PARTS;
1761   }
1762
1763   // Next check to see if the target supports this SHL_PARTS operation or if it
1764   // will custom expand it.
1765   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1766   TargetLowering::LegalizeAction Action = TLI.getOperationAction(PartsOpc, NVT);
1767   if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
1768       Action == TargetLowering::Custom) {
1769     // Expand the subcomponents.
1770     SDValue LHSL, LHSH;
1771     GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1772
1773     SDValue Ops[] = { LHSL, LHSH, N->getOperand(1) };
1774     EVT VT = LHSL.getValueType();
1775     Lo = DAG.getNode(PartsOpc, dl, DAG.getVTList(VT, VT), Ops, 3);
1776     Hi = Lo.getValue(1);
1777     return;
1778   }
1779
1780   // Otherwise, emit a libcall.
1781   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1782   bool isSigned;
1783   if (N->getOpcode() == ISD::SHL) {
1784     isSigned = false; /*sign irrelevant*/
1785     if (VT == MVT::i16)
1786       LC = RTLIB::SHL_I16;
1787     else if (VT == MVT::i32)
1788       LC = RTLIB::SHL_I32;
1789     else if (VT == MVT::i64)
1790       LC = RTLIB::SHL_I64;
1791     else if (VT == MVT::i128)
1792       LC = RTLIB::SHL_I128;
1793   } else if (N->getOpcode() == ISD::SRL) {
1794     isSigned = false;
1795     if (VT == MVT::i16)
1796       LC = RTLIB::SRL_I16;
1797     else if (VT == MVT::i32)
1798       LC = RTLIB::SRL_I32;
1799     else if (VT == MVT::i64)
1800       LC = RTLIB::SRL_I64;
1801     else if (VT == MVT::i128)
1802       LC = RTLIB::SRL_I128;
1803   } else {
1804     assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
1805     isSigned = true;
1806     if (VT == MVT::i16)
1807       LC = RTLIB::SRA_I16;
1808     else if (VT == MVT::i32)
1809       LC = RTLIB::SRA_I32;
1810     else if (VT == MVT::i64)
1811       LC = RTLIB::SRA_I64;
1812     else if (VT == MVT::i128)
1813       LC = RTLIB::SRA_I128;
1814   }
1815
1816   if (LC != RTLIB::UNKNOWN_LIBCALL && TLI.getLibcallName(LC)) {
1817     SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1818     SplitInteger(MakeLibCall(LC, VT, Ops, 2, isSigned, dl), Lo, Hi);
1819     return;
1820   }
1821
1822   if (!ExpandShiftWithUnknownAmountBit(N, Lo, Hi))
1823     llvm_unreachable("Unsupported shift!");
1824 }
1825
1826 void DAGTypeLegalizer::ExpandIntRes_SIGN_EXTEND(SDNode *N,
1827                                                 SDValue &Lo, SDValue &Hi) {
1828   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1829   DebugLoc dl = N->getDebugLoc();
1830   SDValue Op = N->getOperand(0);
1831   if (Op.getValueType().bitsLE(NVT)) {
1832     // The low part is sign extension of the input (degenerates to a copy).
1833     Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, N->getOperand(0));
1834     // The high part is obtained by SRA'ing all but one of the bits of low part.
1835     unsigned LoSize = NVT.getSizeInBits();
1836     Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
1837                      DAG.getConstant(LoSize-1, TLI.getPointerTy()));
1838   } else {
1839     // For example, extension of an i48 to an i64.  The operand type necessarily
1840     // promotes to the result type, so will end up being expanded too.
1841     assert(getTypeAction(Op.getValueType()) == PromoteInteger &&
1842            "Only know how to promote this result!");
1843     SDValue Res = GetPromotedInteger(Op);
1844     assert(Res.getValueType() == N->getValueType(0) &&
1845            "Operand over promoted?");
1846     // Split the promoted operand.  This will simplify when it is expanded.
1847     SplitInteger(Res, Lo, Hi);
1848     unsigned ExcessBits =
1849       Op.getValueType().getSizeInBits() - NVT.getSizeInBits();
1850     Hi = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Hi.getValueType(), Hi,
1851                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), ExcessBits)));
1852   }
1853 }
1854
1855 void DAGTypeLegalizer::
1856 ExpandIntRes_SIGN_EXTEND_INREG(SDNode *N, SDValue &Lo, SDValue &Hi) {
1857   DebugLoc dl = N->getDebugLoc();
1858   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1859   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
1860
1861   if (EVT.bitsLE(Lo.getValueType())) {
1862     // sext_inreg the low part if needed.
1863     Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Lo.getValueType(), Lo,
1864                      N->getOperand(1));
1865
1866     // The high part gets the sign extension from the lo-part.  This handles
1867     // things like sextinreg V:i64 from i8.
1868     Hi = DAG.getNode(ISD::SRA, dl, Hi.getValueType(), Lo,
1869                      DAG.getConstant(Hi.getValueType().getSizeInBits()-1,
1870                                      TLI.getPointerTy()));
1871   } else {
1872     // For example, extension of an i48 to an i64.  Leave the low part alone,
1873     // sext_inreg the high part.
1874     unsigned ExcessBits =
1875       EVT.getSizeInBits() - Lo.getValueType().getSizeInBits();
1876     Hi = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Hi.getValueType(), Hi,
1877                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), ExcessBits)));
1878   }
1879 }
1880
1881 void DAGTypeLegalizer::ExpandIntRes_SREM(SDNode *N,
1882                                          SDValue &Lo, SDValue &Hi) {
1883   EVT VT = N->getValueType(0);
1884   DebugLoc dl = N->getDebugLoc();
1885
1886   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1887   if (VT == MVT::i16)
1888     LC = RTLIB::SREM_I16;
1889   else if (VT == MVT::i32)
1890     LC = RTLIB::SREM_I32;
1891   else if (VT == MVT::i64)
1892     LC = RTLIB::SREM_I64;
1893   else if (VT == MVT::i128)
1894     LC = RTLIB::SREM_I128;
1895   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
1896
1897   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1898   SplitInteger(MakeLibCall(LC, VT, Ops, 2, true, dl), Lo, Hi);
1899 }
1900
1901 void DAGTypeLegalizer::ExpandIntRes_TRUNCATE(SDNode *N,
1902                                              SDValue &Lo, SDValue &Hi) {
1903   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1904   DebugLoc dl = N->getDebugLoc();
1905   Lo = DAG.getNode(ISD::TRUNCATE, dl, NVT, N->getOperand(0));
1906   Hi = DAG.getNode(ISD::SRL, dl,
1907                    N->getOperand(0).getValueType(), N->getOperand(0),
1908                    DAG.getConstant(NVT.getSizeInBits(), TLI.getPointerTy()));
1909   Hi = DAG.getNode(ISD::TRUNCATE, dl, NVT, Hi);
1910 }
1911
1912 void DAGTypeLegalizer::ExpandIntRes_UDIV(SDNode *N,
1913                                          SDValue &Lo, SDValue &Hi) {
1914   EVT VT = N->getValueType(0);
1915   DebugLoc dl = N->getDebugLoc();
1916
1917   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1918   if (VT == MVT::i16)
1919     LC = RTLIB::UDIV_I16;
1920   else if (VT == MVT::i32)
1921     LC = RTLIB::UDIV_I32;
1922   else if (VT == MVT::i64)
1923     LC = RTLIB::UDIV_I64;
1924   else if (VT == MVT::i128)
1925     LC = RTLIB::UDIV_I128;
1926   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported UDIV!");
1927
1928   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1929   SplitInteger(MakeLibCall(LC, VT, Ops, 2, false, dl), Lo, Hi);
1930 }
1931
1932 void DAGTypeLegalizer::ExpandIntRes_UREM(SDNode *N,
1933                                          SDValue &Lo, SDValue &Hi) {
1934   EVT VT = N->getValueType(0);
1935   DebugLoc dl = N->getDebugLoc();
1936
1937   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1938   if (VT == MVT::i16)
1939     LC = RTLIB::UREM_I16;
1940   else if (VT == MVT::i32)
1941     LC = RTLIB::UREM_I32;
1942   else if (VT == MVT::i64)
1943     LC = RTLIB::UREM_I64;
1944   else if (VT == MVT::i128)
1945     LC = RTLIB::UREM_I128;
1946   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported UREM!");
1947
1948   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1949   SplitInteger(MakeLibCall(LC, VT, Ops, 2, false, dl), Lo, Hi);
1950 }
1951
1952 void DAGTypeLegalizer::ExpandIntRes_ZERO_EXTEND(SDNode *N,
1953                                                 SDValue &Lo, SDValue &Hi) {
1954   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1955   DebugLoc dl = N->getDebugLoc();
1956   SDValue Op = N->getOperand(0);
1957   if (Op.getValueType().bitsLE(NVT)) {
1958     // The low part is zero extension of the input (degenerates to a copy).
1959     Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N->getOperand(0));
1960     Hi = DAG.getConstant(0, NVT);   // The high part is just a zero.
1961   } else {
1962     // For example, extension of an i48 to an i64.  The operand type necessarily
1963     // promotes to the result type, so will end up being expanded too.
1964     assert(getTypeAction(Op.getValueType()) == PromoteInteger &&
1965            "Only know how to promote this result!");
1966     SDValue Res = GetPromotedInteger(Op);
1967     assert(Res.getValueType() == N->getValueType(0) &&
1968            "Operand over promoted?");
1969     // Split the promoted operand.  This will simplify when it is expanded.
1970     SplitInteger(Res, Lo, Hi);
1971     unsigned ExcessBits =
1972       Op.getValueType().getSizeInBits() - NVT.getSizeInBits();
1973     Hi = DAG.getZeroExtendInReg(Hi, dl,
1974                                 EVT::getIntegerVT(*DAG.getContext(), ExcessBits));
1975   }
1976 }
1977
1978
1979 //===----------------------------------------------------------------------===//
1980 //  Integer Operand Expansion
1981 //===----------------------------------------------------------------------===//
1982
1983 /// ExpandIntegerOperand - This method is called when the specified operand of
1984 /// the specified node is found to need expansion.  At this point, all of the
1985 /// result types of the node are known to be legal, but other operands of the
1986 /// node may need promotion or expansion as well as the specified one.
1987 bool DAGTypeLegalizer::ExpandIntegerOperand(SDNode *N, unsigned OpNo) {
1988   DEBUG(dbgs() << "Expand integer operand: "; N->dump(&DAG); dbgs() << "\n");
1989   SDValue Res = SDValue();
1990
1991   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
1992     return false;
1993
1994   switch (N->getOpcode()) {
1995   default:
1996   #ifndef NDEBUG
1997     dbgs() << "ExpandIntegerOperand Op #" << OpNo << ": ";
1998     N->dump(&DAG); dbgs() << "\n";
1999   #endif
2000     llvm_unreachable("Do not know how to expand this operator's operand!");
2001
2002   case ISD::BIT_CONVERT:       Res = ExpandOp_BIT_CONVERT(N); break;
2003   case ISD::BR_CC:             Res = ExpandIntOp_BR_CC(N); break;
2004   case ISD::BUILD_VECTOR:      Res = ExpandOp_BUILD_VECTOR(N); break;
2005   case ISD::EXTRACT_ELEMENT:   Res = ExpandOp_EXTRACT_ELEMENT(N); break;
2006   case ISD::INSERT_VECTOR_ELT: Res = ExpandOp_INSERT_VECTOR_ELT(N); break;
2007   case ISD::SCALAR_TO_VECTOR:  Res = ExpandOp_SCALAR_TO_VECTOR(N); break;
2008   case ISD::SELECT_CC:         Res = ExpandIntOp_SELECT_CC(N); break;
2009   case ISD::SETCC:             Res = ExpandIntOp_SETCC(N); break;
2010   case ISD::SINT_TO_FP:        Res = ExpandIntOp_SINT_TO_FP(N); break;
2011   case ISD::STORE:   Res = ExpandIntOp_STORE(cast<StoreSDNode>(N), OpNo); break;
2012   case ISD::TRUNCATE:          Res = ExpandIntOp_TRUNCATE(N); break;
2013   case ISD::UINT_TO_FP:        Res = ExpandIntOp_UINT_TO_FP(N); break;
2014
2015   case ISD::SHL:
2016   case ISD::SRA:
2017   case ISD::SRL:
2018   case ISD::ROTL:
2019   case ISD::ROTR:              Res = ExpandIntOp_Shift(N); break;
2020   case ISD::RETURNADDR:
2021   case ISD::FRAMEADDR:         Res = ExpandIntOp_RETURNADDR(N); break;
2022   }
2023
2024   // If the result is null, the sub-method took care of registering results etc.
2025   if (!Res.getNode()) return false;
2026
2027   // If the result is N, the sub-method updated N in place.  Tell the legalizer
2028   // core about this.
2029   if (Res.getNode() == N)
2030     return true;
2031
2032   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
2033          "Invalid operand expansion");
2034
2035   ReplaceValueWith(SDValue(N, 0), Res);
2036   return false;
2037 }
2038
2039 /// IntegerExpandSetCCOperands - Expand the operands of a comparison.  This code
2040 /// is shared among BR_CC, SELECT_CC, and SETCC handlers.
2041 void DAGTypeLegalizer::IntegerExpandSetCCOperands(SDValue &NewLHS,
2042                                                   SDValue &NewRHS,
2043                                                   ISD::CondCode &CCCode,
2044                                                   DebugLoc dl) {
2045   SDValue LHSLo, LHSHi, RHSLo, RHSHi;
2046   GetExpandedInteger(NewLHS, LHSLo, LHSHi);
2047   GetExpandedInteger(NewRHS, RHSLo, RHSHi);
2048
2049   if (CCCode == ISD::SETEQ || CCCode == ISD::SETNE) {
2050     if (RHSLo == RHSHi) {
2051       if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo)) {
2052         if (RHSCST->isAllOnesValue()) {
2053           // Equality comparison to -1.
2054           NewLHS = DAG.getNode(ISD::AND, dl,
2055                                LHSLo.getValueType(), LHSLo, LHSHi);
2056           NewRHS = RHSLo;
2057           return;
2058         }
2059       }
2060     }
2061
2062     NewLHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
2063     NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
2064     NewLHS = DAG.getNode(ISD::OR, dl, NewLHS.getValueType(), NewLHS, NewRHS);
2065     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2066     return;
2067   }
2068
2069   // If this is a comparison of the sign bit, just look at the top part.
2070   // X > -1,  x < 0
2071   if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(NewRHS))
2072     if ((CCCode == ISD::SETLT && CST->isNullValue()) ||     // X < 0
2073         (CCCode == ISD::SETGT && CST->isAllOnesValue())) {  // X > -1
2074       NewLHS = LHSHi;
2075       NewRHS = RHSHi;
2076       return;
2077     }
2078
2079   // FIXME: This generated code sucks.
2080   ISD::CondCode LowCC;
2081   switch (CCCode) {
2082   default: llvm_unreachable("Unknown integer setcc!");
2083   case ISD::SETLT:
2084   case ISD::SETULT: LowCC = ISD::SETULT; break;
2085   case ISD::SETGT:
2086   case ISD::SETUGT: LowCC = ISD::SETUGT; break;
2087   case ISD::SETLE:
2088   case ISD::SETULE: LowCC = ISD::SETULE; break;
2089   case ISD::SETGE:
2090   case ISD::SETUGE: LowCC = ISD::SETUGE; break;
2091   }
2092
2093   // Tmp1 = lo(op1) < lo(op2)   // Always unsigned comparison
2094   // Tmp2 = hi(op1) < hi(op2)   // Signedness depends on operands
2095   // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
2096
2097   // NOTE: on targets without efficient SELECT of bools, we can always use
2098   // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
2099   TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, true, NULL);
2100   SDValue Tmp1, Tmp2;
2101   Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
2102                            LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
2103   if (!Tmp1.getNode())
2104     Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
2105                         LHSLo, RHSLo, LowCC);
2106   Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
2107                            LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
2108   if (!Tmp2.getNode())
2109     Tmp2 = DAG.getNode(ISD::SETCC, dl,
2110                        TLI.getSetCCResultType(LHSHi.getValueType()),
2111                        LHSHi, RHSHi, DAG.getCondCode(CCCode));
2112
2113   ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
2114   ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
2115   if ((Tmp1C && Tmp1C->isNullValue()) ||
2116       (Tmp2C && Tmp2C->isNullValue() &&
2117        (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
2118         CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
2119       (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
2120        (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
2121         CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
2122     // low part is known false, returns high part.
2123     // For LE / GE, if high part is known false, ignore the low part.
2124     // For LT / GT, if high part is known true, ignore the low part.
2125     NewLHS = Tmp2;
2126     NewRHS = SDValue();
2127     return;
2128   }
2129
2130   NewLHS = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
2131                              LHSHi, RHSHi, ISD::SETEQ, false,
2132                              DagCombineInfo, dl);
2133   if (!NewLHS.getNode())
2134     NewLHS = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
2135                           LHSHi, RHSHi, ISD::SETEQ);
2136   NewLHS = DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
2137                        NewLHS, Tmp1, Tmp2);
2138   NewRHS = SDValue();
2139 }
2140
2141 SDValue DAGTypeLegalizer::ExpandIntOp_BR_CC(SDNode *N) {
2142   SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3);
2143   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(1))->get();
2144   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, N->getDebugLoc());
2145
2146   // If ExpandSetCCOperands returned a scalar, we need to compare the result
2147   // against zero to select between true and false values.
2148   if (NewRHS.getNode() == 0) {
2149     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2150     CCCode = ISD::SETNE;
2151   }
2152
2153   // Update N to have the operands specified.
2154   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0),
2155                                 DAG.getCondCode(CCCode), NewLHS, NewRHS,
2156                                 N->getOperand(4));
2157 }
2158
2159 SDValue DAGTypeLegalizer::ExpandIntOp_SELECT_CC(SDNode *N) {
2160   SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1);
2161   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(4))->get();
2162   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, N->getDebugLoc());
2163
2164   // If ExpandSetCCOperands returned a scalar, we need to compare the result
2165   // against zero to select between true and false values.
2166   if (NewRHS.getNode() == 0) {
2167     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2168     CCCode = ISD::SETNE;
2169   }
2170
2171   // Update N to have the operands specified.
2172   return DAG.UpdateNodeOperands(SDValue(N, 0), NewLHS, NewRHS,
2173                                 N->getOperand(2), N->getOperand(3),
2174                                 DAG.getCondCode(CCCode));
2175 }
2176
2177 SDValue DAGTypeLegalizer::ExpandIntOp_SETCC(SDNode *N) {
2178   SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1);
2179   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(2))->get();
2180   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, N->getDebugLoc());
2181
2182   // If ExpandSetCCOperands returned a scalar, use it.
2183   if (NewRHS.getNode() == 0) {
2184     assert(NewLHS.getValueType() == N->getValueType(0) &&
2185            "Unexpected setcc expansion!");
2186     return NewLHS;
2187   }
2188
2189   // Otherwise, update N to have the operands specified.
2190   return DAG.UpdateNodeOperands(SDValue(N, 0), NewLHS, NewRHS,
2191                                 DAG.getCondCode(CCCode));
2192 }
2193
2194 SDValue DAGTypeLegalizer::ExpandIntOp_Shift(SDNode *N) {
2195   // The value being shifted is legal, but the shift amount is too big.
2196   // It follows that either the result of the shift is undefined, or the
2197   // upper half of the shift amount is zero.  Just use the lower half.
2198   SDValue Lo, Hi;
2199   GetExpandedInteger(N->getOperand(1), Lo, Hi);
2200   return DAG.UpdateNodeOperands(SDValue(N, 0), N->getOperand(0), Lo);
2201 }
2202
2203 SDValue DAGTypeLegalizer::ExpandIntOp_RETURNADDR(SDNode *N) {
2204   // The argument of RETURNADDR / FRAMEADDR builtin is 32 bit contant.  This
2205   // surely makes pretty nice problems on 8/16 bit targets. Just truncate this
2206   // constant to valid type.
2207   SDValue Lo, Hi;
2208   GetExpandedInteger(N->getOperand(0), Lo, Hi);
2209   return DAG.UpdateNodeOperands(SDValue(N, 0), Lo);
2210 }
2211
2212 SDValue DAGTypeLegalizer::ExpandIntOp_SINT_TO_FP(SDNode *N) {
2213   SDValue Op = N->getOperand(0);
2214   EVT DstVT = N->getValueType(0);
2215   RTLIB::Libcall LC = RTLIB::getSINTTOFP(Op.getValueType(), DstVT);
2216   assert(LC != RTLIB::UNKNOWN_LIBCALL &&
2217          "Don't know how to expand this SINT_TO_FP!");
2218   return MakeLibCall(LC, DstVT, &Op, 1, true, N->getDebugLoc());
2219 }
2220
2221 SDValue DAGTypeLegalizer::ExpandIntOp_STORE(StoreSDNode *N, unsigned OpNo) {
2222   if (ISD::isNormalStore(N))
2223     return ExpandOp_NormalStore(N, OpNo);
2224
2225   assert(ISD::isUNINDEXEDStore(N) && "Indexed store during type legalization!");
2226   assert(OpNo == 1 && "Can only expand the stored value so far");
2227
2228   EVT VT = N->getOperand(1).getValueType();
2229   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2230   SDValue Ch  = N->getChain();
2231   SDValue Ptr = N->getBasePtr();
2232   int SVOffset = N->getSrcValueOffset();
2233   unsigned Alignment = N->getAlignment();
2234   bool isVolatile = N->isVolatile();
2235   bool isNonTemporal = N->isNonTemporal();
2236   DebugLoc dl = N->getDebugLoc();
2237   SDValue Lo, Hi;
2238
2239   assert(NVT.isByteSized() && "Expanded type not byte sized!");
2240
2241   if (N->getMemoryVT().bitsLE(NVT)) {
2242     GetExpandedInteger(N->getValue(), Lo, Hi);
2243     return DAG.getTruncStore(Ch, dl, Lo, Ptr, N->getSrcValue(), SVOffset,
2244                              N->getMemoryVT(), isVolatile, isNonTemporal,
2245                              Alignment);
2246   } else if (TLI.isLittleEndian()) {
2247     // Little-endian - low bits are at low addresses.
2248     GetExpandedInteger(N->getValue(), Lo, Hi);
2249
2250     Lo = DAG.getStore(Ch, dl, Lo, Ptr, N->getSrcValue(), SVOffset,
2251                       isVolatile, isNonTemporal, Alignment);
2252
2253     unsigned ExcessBits =
2254       N->getMemoryVT().getSizeInBits() - NVT.getSizeInBits();
2255     EVT NEVT = EVT::getIntegerVT(*DAG.getContext(), ExcessBits);
2256
2257     // Increment the pointer to the other half.
2258     unsigned IncrementSize = NVT.getSizeInBits()/8;
2259     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
2260                       DAG.getIntPtrConstant(IncrementSize));
2261     Hi = DAG.getTruncStore(Ch, dl, Hi, Ptr, N->getSrcValue(),
2262                            SVOffset+IncrementSize, NEVT,
2263                            isVolatile, isNonTemporal,
2264                            MinAlign(Alignment, IncrementSize));
2265     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
2266   } else {
2267     // Big-endian - high bits are at low addresses.  Favor aligned stores at
2268     // the cost of some bit-fiddling.
2269     GetExpandedInteger(N->getValue(), Lo, Hi);
2270
2271     EVT ExtVT = N->getMemoryVT();
2272     unsigned EBytes = ExtVT.getStoreSize();
2273     unsigned IncrementSize = NVT.getSizeInBits()/8;
2274     unsigned ExcessBits = (EBytes - IncrementSize)*8;
2275     EVT HiVT = EVT::getIntegerVT(*DAG.getContext(),
2276                                  ExtVT.getSizeInBits() - ExcessBits);
2277
2278     if (ExcessBits < NVT.getSizeInBits()) {
2279       // Transfer high bits from the top of Lo to the bottom of Hi.
2280       Hi = DAG.getNode(ISD::SHL, dl, NVT, Hi,
2281                        DAG.getConstant(NVT.getSizeInBits() - ExcessBits,
2282                                        TLI.getPointerTy()));
2283       Hi = DAG.getNode(ISD::OR, dl, NVT, Hi,
2284                        DAG.getNode(ISD::SRL, dl, NVT, Lo,
2285                                    DAG.getConstant(ExcessBits,
2286                                                    TLI.getPointerTy())));
2287     }
2288
2289     // Store both the high bits and maybe some of the low bits.
2290     Hi = DAG.getTruncStore(Ch, dl, Hi, Ptr, N->getSrcValue(),
2291                            SVOffset, HiVT, isVolatile, isNonTemporal,
2292                            Alignment);
2293
2294     // Increment the pointer to the other half.
2295     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
2296                       DAG.getIntPtrConstant(IncrementSize));
2297     // Store the lowest ExcessBits bits in the second half.
2298     Lo = DAG.getTruncStore(Ch, dl, Lo, Ptr, N->getSrcValue(),
2299                            SVOffset+IncrementSize,
2300                            EVT::getIntegerVT(*DAG.getContext(), ExcessBits),
2301                            isVolatile, isNonTemporal,
2302                            MinAlign(Alignment, IncrementSize));
2303     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
2304   }
2305 }
2306
2307 SDValue DAGTypeLegalizer::ExpandIntOp_TRUNCATE(SDNode *N) {
2308   SDValue InL, InH;
2309   GetExpandedInteger(N->getOperand(0), InL, InH);
2310   // Just truncate the low part of the source.
2311   return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), N->getValueType(0), InL);
2312 }
2313
2314 SDValue DAGTypeLegalizer::ExpandIntOp_UINT_TO_FP(SDNode *N) {
2315   SDValue Op = N->getOperand(0);
2316   EVT SrcVT = Op.getValueType();
2317   EVT DstVT = N->getValueType(0);
2318   DebugLoc dl = N->getDebugLoc();
2319
2320   if (TLI.getOperationAction(ISD::SINT_TO_FP, SrcVT) == TargetLowering::Custom){
2321     // Do a signed conversion then adjust the result.
2322     SDValue SignedConv = DAG.getNode(ISD::SINT_TO_FP, dl, DstVT, Op);
2323     SignedConv = TLI.LowerOperation(SignedConv, DAG);
2324
2325     // The result of the signed conversion needs adjusting if the 'sign bit' of
2326     // the incoming integer was set.  To handle this, we dynamically test to see
2327     // if it is set, and, if so, add a fudge factor.
2328
2329     const uint64_t F32TwoE32  = 0x4F800000ULL;
2330     const uint64_t F32TwoE64  = 0x5F800000ULL;
2331     const uint64_t F32TwoE128 = 0x7F800000ULL;
2332
2333     APInt FF(32, 0);
2334     if (SrcVT == MVT::i32)
2335       FF = APInt(32, F32TwoE32);
2336     else if (SrcVT == MVT::i64)
2337       FF = APInt(32, F32TwoE64);
2338     else if (SrcVT == MVT::i128)
2339       FF = APInt(32, F32TwoE128);
2340     else
2341       assert(false && "Unsupported UINT_TO_FP!");
2342
2343     // Check whether the sign bit is set.
2344     SDValue Lo, Hi;
2345     GetExpandedInteger(Op, Lo, Hi);
2346     SDValue SignSet = DAG.getSetCC(dl,
2347                                    TLI.getSetCCResultType(Hi.getValueType()),
2348                                    Hi, DAG.getConstant(0, Hi.getValueType()),
2349                                    ISD::SETLT);
2350
2351     // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
2352     SDValue FudgePtr = DAG.getConstantPool(
2353                                ConstantInt::get(*DAG.getContext(), FF.zext(64)),
2354                                            TLI.getPointerTy());
2355
2356     // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
2357     SDValue Zero = DAG.getIntPtrConstant(0);
2358     SDValue Four = DAG.getIntPtrConstant(4);
2359     if (TLI.isBigEndian()) std::swap(Zero, Four);
2360     SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
2361                                  Zero, Four);
2362     unsigned Alignment = cast<ConstantPoolSDNode>(FudgePtr)->getAlignment();
2363     FudgePtr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), FudgePtr, Offset);
2364     Alignment = std::min(Alignment, 4u);
2365
2366     // Load the value out, extending it from f32 to the destination float type.
2367     // FIXME: Avoid the extend by constructing the right constant pool?
2368     SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, DstVT, DAG.getEntryNode(),
2369                                    FudgePtr, NULL, 0, MVT::f32,
2370                                    false, false, Alignment);
2371     return DAG.getNode(ISD::FADD, dl, DstVT, SignedConv, Fudge);
2372   }
2373
2374   // Otherwise, use a libcall.
2375   RTLIB::Libcall LC = RTLIB::getUINTTOFP(SrcVT, DstVT);
2376   assert(LC != RTLIB::UNKNOWN_LIBCALL &&
2377          "Don't know how to expand this UINT_TO_FP!");
2378   return MakeLibCall(LC, DstVT, &Op, 1, true, dl);
2379 }