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