44d9e3875b834b70bcfc7b55e76619a145d65c1a
[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/IR/DerivedTypes.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/raw_ostream.h"
25 using namespace llvm;
26
27 #define DEBUG_TYPE "legalize-types"
28
29 //===----------------------------------------------------------------------===//
30 //  Integer Result Promotion
31 //===----------------------------------------------------------------------===//
32
33 /// PromoteIntegerResult - This method is called when a result of a node is
34 /// found to be in need of promotion to a larger type.  At this point, the node
35 /// may also have invalid operands or may have other results that need
36 /// expansion, we just know that (at least) one result needs promotion.
37 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) {
38   DEBUG(dbgs() << "Promote integer result: "; N->dump(&DAG); dbgs() << "\n");
39   SDValue Res = SDValue();
40
41   // See if the target wants to custom expand this node.
42   if (CustomLowerNode(N, N->getValueType(ResNo), true))
43     return;
44
45   switch (N->getOpcode()) {
46   default:
47 #ifndef NDEBUG
48     dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
49     N->dump(&DAG); dbgs() << "\n";
50 #endif
51     llvm_unreachable("Do not know how to promote this operator!");
52   case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break;
53   case ISD::AssertSext:  Res = PromoteIntRes_AssertSext(N); break;
54   case ISD::AssertZext:  Res = PromoteIntRes_AssertZext(N); break;
55   case ISD::BITCAST:     Res = PromoteIntRes_BITCAST(N); break;
56   case ISD::BSWAP:       Res = PromoteIntRes_BSWAP(N); break;
57   case ISD::BUILD_PAIR:  Res = PromoteIntRes_BUILD_PAIR(N); break;
58   case ISD::Constant:    Res = PromoteIntRes_Constant(N); break;
59   case ISD::CONVERT_RNDSAT:
60                          Res = PromoteIntRes_CONVERT_RNDSAT(N); break;
61   case ISD::CTLZ_ZERO_UNDEF:
62   case ISD::CTLZ:        Res = PromoteIntRes_CTLZ(N); break;
63   case ISD::CTPOP:       Res = PromoteIntRes_CTPOP(N); break;
64   case ISD::CTTZ_ZERO_UNDEF:
65   case ISD::CTTZ:        Res = PromoteIntRes_CTTZ(N); break;
66   case ISD::EXTRACT_VECTOR_ELT:
67                          Res = PromoteIntRes_EXTRACT_VECTOR_ELT(N); break;
68   case ISD::LOAD:        Res = PromoteIntRes_LOAD(cast<LoadSDNode>(N));break;
69   case ISD::SELECT:      Res = PromoteIntRes_SELECT(N); break;
70   case ISD::VSELECT:     Res = PromoteIntRes_VSELECT(N); break;
71   case ISD::SELECT_CC:   Res = PromoteIntRes_SELECT_CC(N); break;
72   case ISD::SETCC:       Res = PromoteIntRes_SETCC(N); break;
73   case ISD::SHL:         Res = PromoteIntRes_SHL(N); break;
74   case ISD::SIGN_EXTEND_INREG:
75                          Res = PromoteIntRes_SIGN_EXTEND_INREG(N); break;
76   case ISD::SRA:         Res = PromoteIntRes_SRA(N); break;
77   case ISD::SRL:         Res = PromoteIntRes_SRL(N); break;
78   case ISD::TRUNCATE:    Res = PromoteIntRes_TRUNCATE(N); break;
79   case ISD::UNDEF:       Res = PromoteIntRes_UNDEF(N); break;
80   case ISD::VAARG:       Res = PromoteIntRes_VAARG(N); break;
81
82   case ISD::EXTRACT_SUBVECTOR:
83                          Res = PromoteIntRes_EXTRACT_SUBVECTOR(N); break;
84   case ISD::VECTOR_SHUFFLE:
85                          Res = PromoteIntRes_VECTOR_SHUFFLE(N); break;
86   case ISD::INSERT_VECTOR_ELT:
87                          Res = PromoteIntRes_INSERT_VECTOR_ELT(N); break;
88   case ISD::BUILD_VECTOR:
89                          Res = PromoteIntRes_BUILD_VECTOR(N); break;
90   case ISD::SCALAR_TO_VECTOR:
91                          Res = PromoteIntRes_SCALAR_TO_VECTOR(N); break;
92   case ISD::CONCAT_VECTORS:
93                          Res = PromoteIntRes_CONCAT_VECTORS(N); break;
94
95   case ISD::SIGN_EXTEND:
96   case ISD::ZERO_EXTEND:
97   case ISD::ANY_EXTEND:  Res = PromoteIntRes_INT_EXTEND(N); break;
98
99   case ISD::FP_TO_SINT:
100   case ISD::FP_TO_UINT:  Res = PromoteIntRes_FP_TO_XINT(N); break;
101
102   case ISD::FP_TO_FP16:  Res = PromoteIntRes_FP_TO_FP16(N); break;
103
104   case ISD::AND:
105   case ISD::OR:
106   case ISD::XOR:
107   case ISD::ADD:
108   case ISD::SUB:
109   case ISD::MUL:         Res = PromoteIntRes_SimpleIntBinOp(N); break;
110
111   case ISD::SDIV:
112   case ISD::SREM:        Res = PromoteIntRes_SDIV(N); break;
113
114   case ISD::UDIV:
115   case ISD::UREM:        Res = PromoteIntRes_UDIV(N); break;
116
117   case ISD::SADDO:
118   case ISD::SSUBO:       Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
119   case ISD::UADDO:
120   case ISD::USUBO:       Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
121   case ISD::SMULO:
122   case ISD::UMULO:       Res = PromoteIntRes_XMULO(N, ResNo); break;
123
124   case ISD::ATOMIC_LOAD:
125     Res = PromoteIntRes_Atomic0(cast<AtomicSDNode>(N)); break;
126
127   case ISD::ATOMIC_LOAD_ADD:
128   case ISD::ATOMIC_LOAD_SUB:
129   case ISD::ATOMIC_LOAD_AND:
130   case ISD::ATOMIC_LOAD_OR:
131   case ISD::ATOMIC_LOAD_XOR:
132   case ISD::ATOMIC_LOAD_NAND:
133   case ISD::ATOMIC_LOAD_MIN:
134   case ISD::ATOMIC_LOAD_MAX:
135   case ISD::ATOMIC_LOAD_UMIN:
136   case ISD::ATOMIC_LOAD_UMAX:
137   case ISD::ATOMIC_SWAP:
138     Res = PromoteIntRes_Atomic1(cast<AtomicSDNode>(N)); break;
139
140   case ISD::ATOMIC_CMP_SWAP:
141   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
142     Res = PromoteIntRes_AtomicCmpSwap(cast<AtomicSDNode>(N), ResNo);
143     break;
144   }
145
146   // If the result is null then the sub-method took care of registering it.
147   if (Res.getNode())
148     SetPromotedInteger(SDValue(N, ResNo), Res);
149 }
150
151 SDValue DAGTypeLegalizer::PromoteIntRes_MERGE_VALUES(SDNode *N,
152                                                      unsigned ResNo) {
153   SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
154   return GetPromotedInteger(Op);
155 }
156
157 SDValue DAGTypeLegalizer::PromoteIntRes_AssertSext(SDNode *N) {
158   // Sign-extend the new bits, and continue the assertion.
159   SDValue Op = SExtPromotedInteger(N->getOperand(0));
160   return DAG.getNode(ISD::AssertSext, SDLoc(N),
161                      Op.getValueType(), Op, N->getOperand(1));
162 }
163
164 SDValue DAGTypeLegalizer::PromoteIntRes_AssertZext(SDNode *N) {
165   // Zero the new bits, and continue the assertion.
166   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
167   return DAG.getNode(ISD::AssertZext, SDLoc(N),
168                      Op.getValueType(), Op, N->getOperand(1));
169 }
170
171 SDValue DAGTypeLegalizer::PromoteIntRes_Atomic0(AtomicSDNode *N) {
172   EVT ResVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
173   SDValue Res = DAG.getAtomic(N->getOpcode(), SDLoc(N),
174                               N->getMemoryVT(), ResVT,
175                               N->getChain(), N->getBasePtr(),
176                               N->getMemOperand(), N->getOrdering(),
177                               N->getSynchScope());
178   // Legalized the chain result - switch anything that used the old chain to
179   // use the new one.
180   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
181   return Res;
182 }
183
184 SDValue DAGTypeLegalizer::PromoteIntRes_Atomic1(AtomicSDNode *N) {
185   SDValue Op2 = GetPromotedInteger(N->getOperand(2));
186   SDValue Res = DAG.getAtomic(N->getOpcode(), SDLoc(N),
187                               N->getMemoryVT(),
188                               N->getChain(), N->getBasePtr(),
189                               Op2, N->getMemOperand(), N->getOrdering(),
190                               N->getSynchScope());
191   // Legalized the chain result - switch anything that used the old chain to
192   // use the new one.
193   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
194   return Res;
195 }
196
197 SDValue DAGTypeLegalizer::PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N,
198                                                       unsigned ResNo) {
199   if (ResNo == 1) {
200     assert(N->getOpcode() == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
201     EVT SVT = getSetCCResultType(N->getOperand(2).getValueType());
202     EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
203
204     // Only use the result of getSetCCResultType if it is legal,
205     // otherwise just use the promoted result type (NVT).
206     if (!TLI.isTypeLegal(SVT))
207       SVT = NVT;
208
209     SDVTList VTs = DAG.getVTList(N->getValueType(0), SVT, MVT::Other);
210     SDValue Res = DAG.getAtomicCmpSwap(
211         ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, SDLoc(N), N->getMemoryVT(), VTs,
212         N->getChain(), N->getBasePtr(), N->getOperand(2), N->getOperand(3),
213         N->getMemOperand(), N->getSuccessOrdering(), N->getFailureOrdering(),
214         N->getSynchScope());
215     ReplaceValueWith(SDValue(N, 0), Res.getValue(0));
216     ReplaceValueWith(SDValue(N, 2), Res.getValue(2));
217     return Res.getValue(1);
218   }
219
220   SDValue Op2 = GetPromotedInteger(N->getOperand(2));
221   SDValue Op3 = GetPromotedInteger(N->getOperand(3));
222   SDVTList VTs =
223       DAG.getVTList(Op2.getValueType(), N->getValueType(1), MVT::Other);
224   SDValue Res = DAG.getAtomicCmpSwap(
225       N->getOpcode(), SDLoc(N), N->getMemoryVT(), VTs, N->getChain(),
226       N->getBasePtr(), Op2, Op3, N->getMemOperand(), N->getSuccessOrdering(),
227       N->getFailureOrdering(), N->getSynchScope());
228   // Update the use to N with the newly created Res.
229   for (unsigned i = 1, NumResults = N->getNumValues(); i < NumResults; ++i)
230     ReplaceValueWith(SDValue(N, i), Res.getValue(i));
231   return Res;
232 }
233
234 SDValue DAGTypeLegalizer::PromoteIntRes_BITCAST(SDNode *N) {
235   SDValue InOp = N->getOperand(0);
236   EVT InVT = InOp.getValueType();
237   EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
238   EVT OutVT = N->getValueType(0);
239   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
240   SDLoc dl(N);
241
242   switch (getTypeAction(InVT)) {
243   case TargetLowering::TypeLegal:
244     break;
245   case TargetLowering::TypePromoteInteger:
246     if (NOutVT.bitsEq(NInVT) && !NOutVT.isVector() && !NInVT.isVector())
247       // The input promotes to the same size.  Convert the promoted value.
248       return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetPromotedInteger(InOp));
249     break;
250   case TargetLowering::TypeSoftenFloat:
251     // Promote the integer operand by hand.
252     return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT, GetSoftenedFloat(InOp));
253   case TargetLowering::TypeExpandInteger:
254   case TargetLowering::TypeExpandFloat:
255     break;
256   case TargetLowering::TypeScalarizeVector:
257     // Convert the element to an integer and promote it by hand.
258     if (!NOutVT.isVector())
259       return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
260                          BitConvertToInteger(GetScalarizedVector(InOp)));
261     break;
262   case TargetLowering::TypeSplitVector: {
263     // For example, i32 = BITCAST v2i16 on alpha.  Convert the split
264     // pieces of the input into integers and reassemble in the final type.
265     SDValue Lo, Hi;
266     GetSplitVector(N->getOperand(0), Lo, Hi);
267     Lo = BitConvertToInteger(Lo);
268     Hi = BitConvertToInteger(Hi);
269
270     if (TLI.isBigEndian())
271       std::swap(Lo, Hi);
272
273     InOp = DAG.getNode(ISD::ANY_EXTEND, dl,
274                        EVT::getIntegerVT(*DAG.getContext(),
275                                          NOutVT.getSizeInBits()),
276                        JoinIntegers(Lo, Hi));
277     return DAG.getNode(ISD::BITCAST, dl, NOutVT, InOp);
278   }
279   case TargetLowering::TypeWidenVector:
280     // The input is widened to the same size. Convert to the widened value.
281     // Make sure that the outgoing value is not a vector, because this would
282     // make us bitcast between two vectors which are legalized in different ways.
283     if (NOutVT.bitsEq(NInVT) && !NOutVT.isVector())
284       return DAG.getNode(ISD::BITCAST, dl, NOutVT, GetWidenedVector(InOp));
285   }
286
287   return DAG.getNode(ISD::ANY_EXTEND, dl, NOutVT,
288                      CreateStackStoreLoad(InOp, OutVT));
289 }
290
291 SDValue DAGTypeLegalizer::PromoteIntRes_BSWAP(SDNode *N) {
292   SDValue Op = GetPromotedInteger(N->getOperand(0));
293   EVT OVT = N->getValueType(0);
294   EVT NVT = Op.getValueType();
295   SDLoc dl(N);
296
297   unsigned DiffBits = NVT.getScalarSizeInBits() - OVT.getScalarSizeInBits();
298   return DAG.getNode(ISD::SRL, dl, NVT, DAG.getNode(ISD::BSWAP, dl, NVT, Op),
299                      DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
300 }
301
302 SDValue DAGTypeLegalizer::PromoteIntRes_BUILD_PAIR(SDNode *N) {
303   // The pair element type may be legal, or may not promote to the same type as
304   // the result, for example i14 = BUILD_PAIR (i7, i7).  Handle all cases.
305   return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N),
306                      TLI.getTypeToTransformTo(*DAG.getContext(),
307                      N->getValueType(0)), JoinIntegers(N->getOperand(0),
308                      N->getOperand(1)));
309 }
310
311 SDValue DAGTypeLegalizer::PromoteIntRes_Constant(SDNode *N) {
312   EVT VT = N->getValueType(0);
313   // FIXME there is no actual debug info here
314   SDLoc dl(N);
315   // Zero extend things like i1, sign extend everything else.  It shouldn't
316   // matter in theory which one we pick, but this tends to give better code?
317   unsigned Opc = VT.isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
318   SDValue Result = DAG.getNode(Opc, dl,
319                                TLI.getTypeToTransformTo(*DAG.getContext(), VT),
320                                SDValue(N, 0));
321   assert(isa<ConstantSDNode>(Result) && "Didn't constant fold ext?");
322   return Result;
323 }
324
325 SDValue DAGTypeLegalizer::PromoteIntRes_CONVERT_RNDSAT(SDNode *N) {
326   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
327   assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
328            CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
329            CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
330           "can only promote integers");
331   EVT OutVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
332   return DAG.getConvertRndSat(OutVT, SDLoc(N), N->getOperand(0),
333                               N->getOperand(1), N->getOperand(2),
334                               N->getOperand(3), N->getOperand(4), CvtCode);
335 }
336
337 SDValue DAGTypeLegalizer::PromoteIntRes_CTLZ(SDNode *N) {
338   // Zero extend to the promoted type and do the count there.
339   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
340   SDLoc dl(N);
341   EVT OVT = N->getValueType(0);
342   EVT NVT = Op.getValueType();
343   Op = DAG.getNode(N->getOpcode(), dl, NVT, Op);
344   // Subtract off the extra leading bits in the bigger type.
345   return DAG.getNode(ISD::SUB, dl, NVT, Op,
346                      DAG.getConstant(NVT.getSizeInBits() -
347                                      OVT.getSizeInBits(), NVT));
348 }
349
350 SDValue DAGTypeLegalizer::PromoteIntRes_CTPOP(SDNode *N) {
351   // Zero extend to the promoted type and do the count there.
352   SDValue Op = ZExtPromotedInteger(N->getOperand(0));
353   return DAG.getNode(ISD::CTPOP, SDLoc(N), Op.getValueType(), Op);
354 }
355
356 SDValue DAGTypeLegalizer::PromoteIntRes_CTTZ(SDNode *N) {
357   SDValue Op = GetPromotedInteger(N->getOperand(0));
358   EVT OVT = N->getValueType(0);
359   EVT NVT = Op.getValueType();
360   SDLoc dl(N);
361   if (N->getOpcode() == ISD::CTTZ) {
362     // The count is the same in the promoted type except if the original
363     // value was zero.  This can be handled by setting the bit just off
364     // the top of the original type.
365     APInt TopBit(NVT.getSizeInBits(), 0);
366     TopBit.setBit(OVT.getSizeInBits());
367     Op = DAG.getNode(ISD::OR, dl, NVT, Op, DAG.getConstant(TopBit, NVT));
368   }
369   return DAG.getNode(N->getOpcode(), dl, NVT, Op);
370 }
371
372 SDValue DAGTypeLegalizer::PromoteIntRes_EXTRACT_VECTOR_ELT(SDNode *N) {
373   SDLoc dl(N);
374   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
375   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NVT, N->getOperand(0),
376                      N->getOperand(1));
377 }
378
379 SDValue DAGTypeLegalizer::PromoteIntRes_FP_TO_XINT(SDNode *N) {
380   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
381   unsigned NewOpc = N->getOpcode();
382   SDLoc dl(N);
383
384   // If we're promoting a UINT to a larger size and the larger FP_TO_UINT is
385   // not Legal, check to see if we can use FP_TO_SINT instead.  (If both UINT
386   // and SINT conversions are Custom, there is no way to tell which is
387   // preferable. We choose SINT because that's the right thing on PPC.)
388   if (N->getOpcode() == ISD::FP_TO_UINT &&
389       !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
390       TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT))
391     NewOpc = ISD::FP_TO_SINT;
392
393   SDValue Res = DAG.getNode(NewOpc, dl, NVT, N->getOperand(0));
394
395   // Assert that the converted value fits in the original type.  If it doesn't
396   // (eg: because the value being converted is too big), then the result of the
397   // original operation was undefined anyway, so the assert is still correct.
398   return DAG.getNode(N->getOpcode() == ISD::FP_TO_UINT ?
399                      ISD::AssertZext : ISD::AssertSext, dl, NVT, Res,
400                      DAG.getValueType(N->getValueType(0).getScalarType()));
401 }
402
403 SDValue DAGTypeLegalizer::PromoteIntRes_FP_TO_FP16(SDNode *N) {
404   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
405   SDLoc dl(N);
406
407   SDValue Res = DAG.getNode(N->getOpcode(), dl, NVT, N->getOperand(0));
408
409   return DAG.getNode(ISD::AssertZext, dl,
410                      NVT, Res, DAG.getValueType(N->getValueType(0)));
411 }
412
413 SDValue DAGTypeLegalizer::PromoteIntRes_INT_EXTEND(SDNode *N) {
414   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
415   SDLoc dl(N);
416
417   if (getTypeAction(N->getOperand(0).getValueType())
418       == TargetLowering::TypePromoteInteger) {
419     SDValue Res = GetPromotedInteger(N->getOperand(0));
420     assert(Res.getValueType().bitsLE(NVT) && "Extension doesn't make sense!");
421
422     // If the result and operand types are the same after promotion, simplify
423     // to an in-register extension.
424     if (NVT == Res.getValueType()) {
425       // The high bits are not guaranteed to be anything.  Insert an extend.
426       if (N->getOpcode() == ISD::SIGN_EXTEND)
427         return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Res,
428                            DAG.getValueType(N->getOperand(0).getValueType()));
429       if (N->getOpcode() == ISD::ZERO_EXTEND)
430         return DAG.getZeroExtendInReg(Res, dl,
431                       N->getOperand(0).getValueType().getScalarType());
432       assert(N->getOpcode() == ISD::ANY_EXTEND && "Unknown integer extension!");
433       return Res;
434     }
435   }
436
437   // Otherwise, just extend the original operand all the way to the larger type.
438   return DAG.getNode(N->getOpcode(), dl, NVT, N->getOperand(0));
439 }
440
441 SDValue DAGTypeLegalizer::PromoteIntRes_LOAD(LoadSDNode *N) {
442   assert(ISD::isUNINDEXEDLoad(N) && "Indexed load during type legalization!");
443   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
444   ISD::LoadExtType ExtType =
445     ISD::isNON_EXTLoad(N) ? ISD::EXTLOAD : N->getExtensionType();
446   SDLoc dl(N);
447   SDValue Res = DAG.getExtLoad(ExtType, dl, NVT, N->getChain(), N->getBasePtr(),
448                                N->getMemoryVT(), N->getMemOperand());
449
450   // Legalized the chain result - switch anything that used the old chain to
451   // use the new one.
452   ReplaceValueWith(SDValue(N, 1), Res.getValue(1));
453   return Res;
454 }
455
456 /// Promote the overflow flag of an overflowing arithmetic node.
457 SDValue DAGTypeLegalizer::PromoteIntRes_Overflow(SDNode *N) {
458   // Simply change the return type of the boolean result.
459   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(1));
460   EVT ValueVTs[] = { N->getValueType(0), NVT };
461   SDValue Ops[] = { N->getOperand(0), N->getOperand(1) };
462   SDValue Res = DAG.getNode(N->getOpcode(), SDLoc(N),
463                             DAG.getVTList(ValueVTs), Ops);
464
465   // Modified the sum result - switch anything that used the old sum to use
466   // the new one.
467   ReplaceValueWith(SDValue(N, 0), Res);
468
469   return SDValue(Res.getNode(), 1);
470 }
471
472 SDValue DAGTypeLegalizer::PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo) {
473   if (ResNo == 1)
474     return PromoteIntRes_Overflow(N);
475
476   // The operation overflowed iff the result in the larger type is not the
477   // sign extension of its truncation to the original type.
478   SDValue LHS = SExtPromotedInteger(N->getOperand(0));
479   SDValue RHS = SExtPromotedInteger(N->getOperand(1));
480   EVT OVT = N->getOperand(0).getValueType();
481   EVT NVT = LHS.getValueType();
482   SDLoc dl(N);
483
484   // Do the arithmetic in the larger type.
485   unsigned Opcode = N->getOpcode() == ISD::SADDO ? ISD::ADD : ISD::SUB;
486   SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS);
487
488   // Calculate the overflow flag: sign extend the arithmetic result from
489   // the original type.
490   SDValue Ofl = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Res,
491                             DAG.getValueType(OVT));
492   // Overflowed if and only if this is not equal to Res.
493   Ofl = DAG.getSetCC(dl, N->getValueType(1), Ofl, Res, ISD::SETNE);
494
495   // Use the calculated overflow everywhere.
496   ReplaceValueWith(SDValue(N, 1), Ofl);
497
498   return Res;
499 }
500
501 SDValue DAGTypeLegalizer::PromoteIntRes_SDIV(SDNode *N) {
502   // Sign extend the input.
503   SDValue LHS = SExtPromotedInteger(N->getOperand(0));
504   SDValue RHS = SExtPromotedInteger(N->getOperand(1));
505   return DAG.getNode(N->getOpcode(), SDLoc(N),
506                      LHS.getValueType(), LHS, RHS);
507 }
508
509 SDValue DAGTypeLegalizer::PromoteIntRes_SELECT(SDNode *N) {
510   SDValue LHS = GetPromotedInteger(N->getOperand(1));
511   SDValue RHS = GetPromotedInteger(N->getOperand(2));
512   return DAG.getSelect(SDLoc(N),
513                        LHS.getValueType(), N->getOperand(0), LHS, RHS);
514 }
515
516 SDValue DAGTypeLegalizer::PromoteIntRes_VSELECT(SDNode *N) {
517   SDValue Mask = N->getOperand(0);
518   EVT OpTy = N->getOperand(1).getValueType();
519
520   // Promote all the way up to the canonical SetCC type.
521   Mask = PromoteTargetBoolean(Mask, OpTy);
522   SDValue LHS = GetPromotedInteger(N->getOperand(1));
523   SDValue RHS = GetPromotedInteger(N->getOperand(2));
524   return DAG.getNode(ISD::VSELECT, SDLoc(N),
525                      LHS.getValueType(), Mask, LHS, RHS);
526 }
527
528 SDValue DAGTypeLegalizer::PromoteIntRes_SELECT_CC(SDNode *N) {
529   SDValue LHS = GetPromotedInteger(N->getOperand(2));
530   SDValue RHS = GetPromotedInteger(N->getOperand(3));
531   return DAG.getNode(ISD::SELECT_CC, SDLoc(N),
532                      LHS.getValueType(), N->getOperand(0),
533                      N->getOperand(1), LHS, RHS, N->getOperand(4));
534 }
535
536 SDValue DAGTypeLegalizer::PromoteIntRes_SETCC(SDNode *N) {
537   EVT SVT = getSetCCResultType(N->getOperand(0).getValueType());
538
539   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
540
541   // Only use the result of getSetCCResultType if it is legal,
542   // otherwise just use the promoted result type (NVT).
543   if (!TLI.isTypeLegal(SVT))
544     SVT = NVT;
545
546   SDLoc dl(N);
547   assert(SVT.isVector() == N->getOperand(0).getValueType().isVector() &&
548          "Vector compare must return a vector result!");
549
550   SDValue LHS = N->getOperand(0);
551   SDValue RHS = N->getOperand(1);
552   if (LHS.getValueType() != RHS.getValueType()) {
553     if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger &&
554         !LHS.getValueType().isVector())
555       LHS = GetPromotedInteger(LHS);
556     if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger &&
557         !RHS.getValueType().isVector())
558       RHS = GetPromotedInteger(RHS);
559   }
560
561   // Get the SETCC result using the canonical SETCC type.
562   SDValue SetCC = DAG.getNode(N->getOpcode(), dl, SVT, LHS, RHS,
563                               N->getOperand(2));
564
565   assert(NVT.bitsLE(SVT) && "Integer type overpromoted?");
566   // Convert to the expected type.
567   return DAG.getNode(ISD::TRUNCATE, dl, NVT, SetCC);
568 }
569
570 SDValue DAGTypeLegalizer::PromoteIntRes_SHL(SDNode *N) {
571   SDValue Res = GetPromotedInteger(N->getOperand(0));
572   SDValue Amt = N->getOperand(1);
573   Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt;
574   return DAG.getNode(ISD::SHL, SDLoc(N), Res.getValueType(), Res, Amt);
575 }
576
577 SDValue DAGTypeLegalizer::PromoteIntRes_SIGN_EXTEND_INREG(SDNode *N) {
578   SDValue Op = GetPromotedInteger(N->getOperand(0));
579   return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N),
580                      Op.getValueType(), Op, N->getOperand(1));
581 }
582
583 SDValue DAGTypeLegalizer::PromoteIntRes_SimpleIntBinOp(SDNode *N) {
584   // The input may have strange things in the top bits of the registers, but
585   // these operations don't care.  They may have weird bits going out, but
586   // that too is okay if they are integer operations.
587   SDValue LHS = GetPromotedInteger(N->getOperand(0));
588   SDValue RHS = GetPromotedInteger(N->getOperand(1));
589   return DAG.getNode(N->getOpcode(), SDLoc(N),
590                      LHS.getValueType(), LHS, RHS);
591 }
592
593 SDValue DAGTypeLegalizer::PromoteIntRes_SRA(SDNode *N) {
594   // The input value must be properly sign extended.
595   SDValue Res = SExtPromotedInteger(N->getOperand(0));
596   SDValue Amt = N->getOperand(1);
597   Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt;
598   return DAG.getNode(ISD::SRA, SDLoc(N), Res.getValueType(), Res, Amt);
599 }
600
601 SDValue DAGTypeLegalizer::PromoteIntRes_SRL(SDNode *N) {
602   // The input value must be properly zero extended.
603   SDValue Res = ZExtPromotedInteger(N->getOperand(0));
604   SDValue Amt = N->getOperand(1);
605   Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt;
606   return DAG.getNode(ISD::SRL, SDLoc(N), Res.getValueType(), Res, Amt);
607 }
608
609 SDValue DAGTypeLegalizer::PromoteIntRes_TRUNCATE(SDNode *N) {
610   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
611   SDValue Res;
612   SDValue InOp = N->getOperand(0);
613   SDLoc dl(N);
614
615   switch (getTypeAction(InOp.getValueType())) {
616   default: llvm_unreachable("Unknown type action!");
617   case TargetLowering::TypeLegal:
618   case TargetLowering::TypeExpandInteger:
619     Res = InOp;
620     break;
621   case TargetLowering::TypePromoteInteger:
622     Res = GetPromotedInteger(InOp);
623     break;
624   case TargetLowering::TypeSplitVector:
625     EVT InVT = InOp.getValueType();
626     assert(InVT.isVector() && "Cannot split scalar types");
627     unsigned NumElts = InVT.getVectorNumElements();
628     assert(NumElts == NVT.getVectorNumElements() &&
629            "Dst and Src must have the same number of elements");
630     assert(isPowerOf2_32(NumElts) &&
631            "Promoted vector type must be a power of two");
632
633     SDValue EOp1, EOp2;
634     GetSplitVector(InOp, EOp1, EOp2);
635
636     EVT HalfNVT = EVT::getVectorVT(*DAG.getContext(), NVT.getScalarType(),
637                                    NumElts/2);
638     EOp1 = DAG.getNode(ISD::TRUNCATE, dl, HalfNVT, EOp1);
639     EOp2 = DAG.getNode(ISD::TRUNCATE, dl, HalfNVT, EOp2);
640
641     return DAG.getNode(ISD::CONCAT_VECTORS, dl, NVT, EOp1, EOp2);
642   }
643
644   // Truncate to NVT instead of VT
645   return DAG.getNode(ISD::TRUNCATE, dl, NVT, Res);
646 }
647
648 SDValue DAGTypeLegalizer::PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) {
649   if (ResNo == 1)
650     return PromoteIntRes_Overflow(N);
651
652   // The operation overflowed iff the result in the larger type is not the
653   // zero extension of its truncation to the original type.
654   SDValue LHS = ZExtPromotedInteger(N->getOperand(0));
655   SDValue RHS = ZExtPromotedInteger(N->getOperand(1));
656   EVT OVT = N->getOperand(0).getValueType();
657   EVT NVT = LHS.getValueType();
658   SDLoc dl(N);
659
660   // Do the arithmetic in the larger type.
661   unsigned Opcode = N->getOpcode() == ISD::UADDO ? ISD::ADD : ISD::SUB;
662   SDValue Res = DAG.getNode(Opcode, dl, NVT, LHS, RHS);
663
664   // Calculate the overflow flag: zero extend the arithmetic result from
665   // the original type.
666   SDValue Ofl = DAG.getZeroExtendInReg(Res, dl, OVT);
667   // Overflowed if and only if this is not equal to Res.
668   Ofl = DAG.getSetCC(dl, N->getValueType(1), Ofl, Res, ISD::SETNE);
669
670   // Use the calculated overflow everywhere.
671   ReplaceValueWith(SDValue(N, 1), Ofl);
672
673   return Res;
674 }
675
676 SDValue DAGTypeLegalizer::PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) {
677   // Promote the overflow bit trivially.
678   if (ResNo == 1)
679     return PromoteIntRes_Overflow(N);
680
681   SDValue LHS = N->getOperand(0), RHS = N->getOperand(1);
682   SDLoc DL(N);
683   EVT SmallVT = LHS.getValueType();
684
685   // To determine if the result overflowed in a larger type, we extend the
686   // input to the larger type, do the multiply (checking if it overflows),
687   // then also check the high bits of the result to see if overflow happened
688   // there.
689   if (N->getOpcode() == ISD::SMULO) {
690     LHS = SExtPromotedInteger(LHS);
691     RHS = SExtPromotedInteger(RHS);
692   } else {
693     LHS = ZExtPromotedInteger(LHS);
694     RHS = ZExtPromotedInteger(RHS);
695   }
696   SDVTList VTs = DAG.getVTList(LHS.getValueType(), N->getValueType(1));
697   SDValue Mul = DAG.getNode(N->getOpcode(), DL, VTs, LHS, RHS);
698
699   // Overflow occurred if it occurred in the larger type, or if the high part
700   // of the result does not zero/sign-extend the low part.  Check this second
701   // possibility first.
702   SDValue Overflow;
703   if (N->getOpcode() == ISD::UMULO) {
704     // Unsigned overflow occurred if the high part is non-zero.
705     SDValue Hi = DAG.getNode(ISD::SRL, DL, Mul.getValueType(), Mul,
706                              DAG.getIntPtrConstant(SmallVT.getSizeInBits()));
707     Overflow = DAG.getSetCC(DL, N->getValueType(1), Hi,
708                             DAG.getConstant(0, Hi.getValueType()), ISD::SETNE);
709   } else {
710     // Signed overflow occurred if the high part does not sign extend the low.
711     SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Mul.getValueType(),
712                                Mul, DAG.getValueType(SmallVT));
713     Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
714   }
715
716   // The only other way for overflow to occur is if the multiplication in the
717   // larger type itself overflowed.
718   Overflow = DAG.getNode(ISD::OR, DL, N->getValueType(1), Overflow,
719                          SDValue(Mul.getNode(), 1));
720
721   // Use the calculated overflow everywhere.
722   ReplaceValueWith(SDValue(N, 1), Overflow);
723   return Mul;
724 }
725
726 SDValue DAGTypeLegalizer::PromoteIntRes_UDIV(SDNode *N) {
727   // Zero extend the input.
728   SDValue LHS = ZExtPromotedInteger(N->getOperand(0));
729   SDValue RHS = ZExtPromotedInteger(N->getOperand(1));
730   return DAG.getNode(N->getOpcode(), SDLoc(N),
731                      LHS.getValueType(), LHS, RHS);
732 }
733
734 SDValue DAGTypeLegalizer::PromoteIntRes_UNDEF(SDNode *N) {
735   return DAG.getUNDEF(TLI.getTypeToTransformTo(*DAG.getContext(),
736                                                N->getValueType(0)));
737 }
738
739 SDValue DAGTypeLegalizer::PromoteIntRes_VAARG(SDNode *N) {
740   SDValue Chain = N->getOperand(0); // Get the chain.
741   SDValue Ptr = N->getOperand(1); // Get the pointer.
742   EVT VT = N->getValueType(0);
743   SDLoc dl(N);
744
745   MVT RegVT = TLI.getRegisterType(*DAG.getContext(), VT);
746   unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), VT);
747   // The argument is passed as NumRegs registers of type RegVT.
748
749   SmallVector<SDValue, 8> Parts(NumRegs);
750   for (unsigned i = 0; i < NumRegs; ++i) {
751     Parts[i] = DAG.getVAArg(RegVT, dl, Chain, Ptr, N->getOperand(2),
752                             N->getConstantOperandVal(3));
753     Chain = Parts[i].getValue(1);
754   }
755
756   // Handle endianness of the load.
757   if (TLI.isBigEndian())
758     std::reverse(Parts.begin(), Parts.end());
759
760   // Assemble the parts in the promoted type.
761   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
762   SDValue Res = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[0]);
763   for (unsigned i = 1; i < NumRegs; ++i) {
764     SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
765     // Shift it to the right position and "or" it in.
766     Part = DAG.getNode(ISD::SHL, dl, NVT, Part,
767                        DAG.getConstant(i * RegVT.getSizeInBits(),
768                                        TLI.getPointerTy()));
769     Res = DAG.getNode(ISD::OR, dl, NVT, Res, Part);
770   }
771
772   // Modified the chain result - switch anything that used the old chain to
773   // use the new one.
774   ReplaceValueWith(SDValue(N, 1), Chain);
775
776   return Res;
777 }
778
779 //===----------------------------------------------------------------------===//
780 //  Integer Operand Promotion
781 //===----------------------------------------------------------------------===//
782
783 /// PromoteIntegerOperand - This method is called when the specified operand of
784 /// the specified node is found to need promotion.  At this point, all of the
785 /// result types of the node are known to be legal, but other operands of the
786 /// node may need promotion or expansion as well as the specified one.
787 bool DAGTypeLegalizer::PromoteIntegerOperand(SDNode *N, unsigned OpNo) {
788   DEBUG(dbgs() << "Promote integer operand: "; N->dump(&DAG); dbgs() << "\n");
789   SDValue Res = SDValue();
790
791   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
792     return false;
793
794   switch (N->getOpcode()) {
795     default:
796   #ifndef NDEBUG
797     dbgs() << "PromoteIntegerOperand Op #" << OpNo << ": ";
798     N->dump(&DAG); dbgs() << "\n";
799   #endif
800     llvm_unreachable("Do not know how to promote this operator's operand!");
801
802   case ISD::ANY_EXTEND:   Res = PromoteIntOp_ANY_EXTEND(N); break;
803   case ISD::ATOMIC_STORE:
804     Res = PromoteIntOp_ATOMIC_STORE(cast<AtomicSDNode>(N));
805     break;
806   case ISD::BITCAST:      Res = PromoteIntOp_BITCAST(N); break;
807   case ISD::BR_CC:        Res = PromoteIntOp_BR_CC(N, OpNo); break;
808   case ISD::BRCOND:       Res = PromoteIntOp_BRCOND(N, OpNo); break;
809   case ISD::BUILD_PAIR:   Res = PromoteIntOp_BUILD_PAIR(N); break;
810   case ISD::BUILD_VECTOR: Res = PromoteIntOp_BUILD_VECTOR(N); break;
811   case ISD::CONCAT_VECTORS: Res = PromoteIntOp_CONCAT_VECTORS(N); break;
812   case ISD::EXTRACT_VECTOR_ELT: Res = PromoteIntOp_EXTRACT_VECTOR_ELT(N); break;
813   case ISD::CONVERT_RNDSAT:
814                           Res = PromoteIntOp_CONVERT_RNDSAT(N); break;
815   case ISD::INSERT_VECTOR_ELT:
816                           Res = PromoteIntOp_INSERT_VECTOR_ELT(N, OpNo);break;
817   case ISD::SCALAR_TO_VECTOR:
818                           Res = PromoteIntOp_SCALAR_TO_VECTOR(N); break;
819   case ISD::VSELECT:
820   case ISD::SELECT:       Res = PromoteIntOp_SELECT(N, OpNo); break;
821   case ISD::SELECT_CC:    Res = PromoteIntOp_SELECT_CC(N, OpNo); break;
822   case ISD::SETCC:        Res = PromoteIntOp_SETCC(N, OpNo); break;
823   case ISD::SIGN_EXTEND:  Res = PromoteIntOp_SIGN_EXTEND(N); break;
824   case ISD::SINT_TO_FP:   Res = PromoteIntOp_SINT_TO_FP(N); break;
825   case ISD::STORE:        Res = PromoteIntOp_STORE(cast<StoreSDNode>(N),
826                                                    OpNo); break;
827   case ISD::TRUNCATE:     Res = PromoteIntOp_TRUNCATE(N); break;
828   case ISD::FP16_TO_FP:
829   case ISD::UINT_TO_FP:   Res = PromoteIntOp_UINT_TO_FP(N); break;
830   case ISD::ZERO_EXTEND:  Res = PromoteIntOp_ZERO_EXTEND(N); break;
831
832   case ISD::SHL:
833   case ISD::SRA:
834   case ISD::SRL:
835   case ISD::ROTL:
836   case ISD::ROTR: Res = PromoteIntOp_Shift(N); break;
837   }
838
839   // If the result is null, the sub-method took care of registering results etc.
840   if (!Res.getNode()) return false;
841
842   // If the result is N, the sub-method updated N in place.  Tell the legalizer
843   // core about this.
844   if (Res.getNode() == N)
845     return true;
846
847   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
848          "Invalid operand expansion");
849
850   ReplaceValueWith(SDValue(N, 0), Res);
851   return false;
852 }
853
854 /// PromoteSetCCOperands - Promote the operands of a comparison.  This code is
855 /// shared among BR_CC, SELECT_CC, and SETCC handlers.
856 void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS,
857                                             ISD::CondCode CCCode) {
858   // We have to insert explicit sign or zero extends.  Note that we could
859   // insert sign extends for ALL conditions, but zero extend is cheaper on
860   // many machines (an AND instead of two shifts), so prefer it.
861   switch (CCCode) {
862   default: llvm_unreachable("Unknown integer comparison!");
863   case ISD::SETEQ:
864   case ISD::SETNE:
865   case ISD::SETUGE:
866   case ISD::SETUGT:
867   case ISD::SETULE:
868   case ISD::SETULT:
869     // ALL of these operations will work if we either sign or zero extend
870     // the operands (including the unsigned comparisons!).  Zero extend is
871     // usually a simpler/cheaper operation, so prefer it.
872     NewLHS = ZExtPromotedInteger(NewLHS);
873     NewRHS = ZExtPromotedInteger(NewRHS);
874     break;
875   case ISD::SETGE:
876   case ISD::SETGT:
877   case ISD::SETLT:
878   case ISD::SETLE:
879     NewLHS = SExtPromotedInteger(NewLHS);
880     NewRHS = SExtPromotedInteger(NewRHS);
881     break;
882   }
883 }
884
885 SDValue DAGTypeLegalizer::PromoteIntOp_ANY_EXTEND(SDNode *N) {
886   SDValue Op = GetPromotedInteger(N->getOperand(0));
887   return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), N->getValueType(0), Op);
888 }
889
890 SDValue DAGTypeLegalizer::PromoteIntOp_ATOMIC_STORE(AtomicSDNode *N) {
891   SDValue Op2 = GetPromotedInteger(N->getOperand(2));
892   return DAG.getAtomic(N->getOpcode(), SDLoc(N), N->getMemoryVT(),
893                        N->getChain(), N->getBasePtr(), Op2, N->getMemOperand(),
894                        N->getOrdering(), N->getSynchScope());
895 }
896
897 SDValue DAGTypeLegalizer::PromoteIntOp_BITCAST(SDNode *N) {
898   // This should only occur in unusual situations like bitcasting to an
899   // x86_fp80, so just turn it into a store+load
900   return CreateStackStoreLoad(N->getOperand(0), N->getValueType(0));
901 }
902
903 SDValue DAGTypeLegalizer::PromoteIntOp_BR_CC(SDNode *N, unsigned OpNo) {
904   assert(OpNo == 2 && "Don't know how to promote this operand!");
905
906   SDValue LHS = N->getOperand(2);
907   SDValue RHS = N->getOperand(3);
908   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(1))->get());
909
910   // The chain (Op#0), CC (#1) and basic block destination (Op#4) are always
911   // legal types.
912   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0),
913                                 N->getOperand(1), LHS, RHS, N->getOperand(4)),
914                  0);
915 }
916
917 SDValue DAGTypeLegalizer::PromoteIntOp_BRCOND(SDNode *N, unsigned OpNo) {
918   assert(OpNo == 1 && "only know how to promote condition");
919
920   // Promote all the way up to the canonical SetCC type.
921   SDValue Cond = PromoteTargetBoolean(N->getOperand(1), MVT::Other);
922
923   // The chain (Op#0) and basic block destination (Op#2) are always legal types.
924   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0), Cond,
925                                         N->getOperand(2)), 0);
926 }
927
928 SDValue DAGTypeLegalizer::PromoteIntOp_BUILD_PAIR(SDNode *N) {
929   // Since the result type is legal, the operands must promote to it.
930   EVT OVT = N->getOperand(0).getValueType();
931   SDValue Lo = ZExtPromotedInteger(N->getOperand(0));
932   SDValue Hi = GetPromotedInteger(N->getOperand(1));
933   assert(Lo.getValueType() == N->getValueType(0) && "Operand over promoted?");
934   SDLoc dl(N);
935
936   Hi = DAG.getNode(ISD::SHL, dl, N->getValueType(0), Hi,
937                    DAG.getConstant(OVT.getSizeInBits(), TLI.getPointerTy()));
938   return DAG.getNode(ISD::OR, dl, N->getValueType(0), Lo, Hi);
939 }
940
941 SDValue DAGTypeLegalizer::PromoteIntOp_BUILD_VECTOR(SDNode *N) {
942   // The vector type is legal but the element type is not.  This implies
943   // that the vector is a power-of-two in length and that the element
944   // type does not have a strange size (eg: it is not i1).
945   EVT VecVT = N->getValueType(0);
946   unsigned NumElts = VecVT.getVectorNumElements();
947   assert(!((NumElts & 1) && (!TLI.isTypeLegal(VecVT))) &&
948                  "Legal vector of one illegal element?");
949
950   // Promote the inserted value.  The type does not need to match the
951   // vector element type.  Check that any extra bits introduced will be
952   // truncated away.
953   assert(N->getOperand(0).getValueType().getSizeInBits() >=
954          N->getValueType(0).getVectorElementType().getSizeInBits() &&
955          "Type of inserted value narrower than vector element type!");
956
957   SmallVector<SDValue, 16> NewOps;
958   for (unsigned i = 0; i < NumElts; ++i)
959     NewOps.push_back(GetPromotedInteger(N->getOperand(i)));
960
961   return SDValue(DAG.UpdateNodeOperands(N, NewOps), 0);
962 }
963
964 SDValue DAGTypeLegalizer::PromoteIntOp_CONVERT_RNDSAT(SDNode *N) {
965   ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(N)->getCvtCode();
966   assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
967            CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
968            CvtCode == ISD::CVT_FS || CvtCode == ISD::CVT_FU) &&
969            "can only promote integer arguments");
970   SDValue InOp = GetPromotedInteger(N->getOperand(0));
971   return DAG.getConvertRndSat(N->getValueType(0), SDLoc(N), InOp,
972                               N->getOperand(1), N->getOperand(2),
973                               N->getOperand(3), N->getOperand(4), CvtCode);
974 }
975
976 SDValue DAGTypeLegalizer::PromoteIntOp_INSERT_VECTOR_ELT(SDNode *N,
977                                                          unsigned OpNo) {
978   if (OpNo == 1) {
979     // Promote the inserted value.  This is valid because the type does not
980     // have to match the vector element type.
981
982     // Check that any extra bits introduced will be truncated away.
983     assert(N->getOperand(1).getValueType().getSizeInBits() >=
984            N->getValueType(0).getVectorElementType().getSizeInBits() &&
985            "Type of inserted value narrower than vector element type!");
986     return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0),
987                                   GetPromotedInteger(N->getOperand(1)),
988                                   N->getOperand(2)),
989                    0);
990   }
991
992   assert(OpNo == 2 && "Different operand and result vector types?");
993
994   // Promote the index.
995   SDValue Idx = DAG.getZExtOrTrunc(N->getOperand(2), SDLoc(N),
996                                    TLI.getVectorIdxTy());
997   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0),
998                                 N->getOperand(1), Idx), 0);
999 }
1000
1001 SDValue DAGTypeLegalizer::PromoteIntOp_SCALAR_TO_VECTOR(SDNode *N) {
1002   // Integer SCALAR_TO_VECTOR operands are implicitly truncated, so just promote
1003   // the operand in place.
1004   return SDValue(DAG.UpdateNodeOperands(N,
1005                                 GetPromotedInteger(N->getOperand(0))), 0);
1006 }
1007
1008 SDValue DAGTypeLegalizer::PromoteIntOp_SELECT(SDNode *N, unsigned OpNo) {
1009   assert(OpNo == 0 && "Only know how to promote the condition!");
1010   SDValue Cond = N->getOperand(0);
1011   EVT OpTy = N->getOperand(1).getValueType();
1012
1013   // Promote all the way up to the canonical SetCC type.
1014   EVT OpVT = N->getOpcode() == ISD::SELECT ? OpTy.getScalarType() : OpTy;
1015   Cond = PromoteTargetBoolean(Cond, OpVT);
1016
1017   return SDValue(DAG.UpdateNodeOperands(N, Cond, N->getOperand(1),
1018                                         N->getOperand(2)), 0);
1019 }
1020
1021 SDValue DAGTypeLegalizer::PromoteIntOp_SELECT_CC(SDNode *N, unsigned OpNo) {
1022   assert(OpNo == 0 && "Don't know how to promote this operand!");
1023
1024   SDValue LHS = N->getOperand(0);
1025   SDValue RHS = N->getOperand(1);
1026   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(4))->get());
1027
1028   // The CC (#4) and the possible return values (#2 and #3) have legal types.
1029   return SDValue(DAG.UpdateNodeOperands(N, LHS, RHS, N->getOperand(2),
1030                                 N->getOperand(3), N->getOperand(4)), 0);
1031 }
1032
1033 SDValue DAGTypeLegalizer::PromoteIntOp_SETCC(SDNode *N, unsigned OpNo) {
1034   assert(OpNo == 0 && "Don't know how to promote this operand!");
1035
1036   SDValue LHS = N->getOperand(0);
1037   SDValue RHS = N->getOperand(1);
1038   PromoteSetCCOperands(LHS, RHS, cast<CondCodeSDNode>(N->getOperand(2))->get());
1039
1040   // The CC (#2) is always legal.
1041   return SDValue(DAG.UpdateNodeOperands(N, LHS, RHS, N->getOperand(2)), 0);
1042 }
1043
1044 SDValue DAGTypeLegalizer::PromoteIntOp_Shift(SDNode *N) {
1045   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0),
1046                                 ZExtPromotedInteger(N->getOperand(1))), 0);
1047 }
1048
1049 SDValue DAGTypeLegalizer::PromoteIntOp_SIGN_EXTEND(SDNode *N) {
1050   SDValue Op = GetPromotedInteger(N->getOperand(0));
1051   SDLoc dl(N);
1052   Op = DAG.getNode(ISD::ANY_EXTEND, dl, N->getValueType(0), Op);
1053   return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Op.getValueType(),
1054                      Op, DAG.getValueType(N->getOperand(0).getValueType()));
1055 }
1056
1057 SDValue DAGTypeLegalizer::PromoteIntOp_SINT_TO_FP(SDNode *N) {
1058   return SDValue(DAG.UpdateNodeOperands(N,
1059                                 SExtPromotedInteger(N->getOperand(0))), 0);
1060 }
1061
1062 SDValue DAGTypeLegalizer::PromoteIntOp_STORE(StoreSDNode *N, unsigned OpNo){
1063   assert(ISD::isUNINDEXEDStore(N) && "Indexed store during type legalization!");
1064   SDValue Ch = N->getChain(), Ptr = N->getBasePtr();
1065   SDLoc dl(N);
1066
1067   SDValue Val = GetPromotedInteger(N->getValue());  // Get promoted value.
1068
1069   // Truncate the value and store the result.
1070   return DAG.getTruncStore(Ch, dl, Val, Ptr,
1071                            N->getMemoryVT(), N->getMemOperand());
1072 }
1073
1074 SDValue DAGTypeLegalizer::PromoteIntOp_TRUNCATE(SDNode *N) {
1075   SDValue Op = GetPromotedInteger(N->getOperand(0));
1076   return DAG.getNode(ISD::TRUNCATE, SDLoc(N), N->getValueType(0), Op);
1077 }
1078
1079 SDValue DAGTypeLegalizer::PromoteIntOp_UINT_TO_FP(SDNode *N) {
1080   return SDValue(DAG.UpdateNodeOperands(N,
1081                                 ZExtPromotedInteger(N->getOperand(0))), 0);
1082 }
1083
1084 SDValue DAGTypeLegalizer::PromoteIntOp_ZERO_EXTEND(SDNode *N) {
1085   SDLoc dl(N);
1086   SDValue Op = GetPromotedInteger(N->getOperand(0));
1087   Op = DAG.getNode(ISD::ANY_EXTEND, dl, N->getValueType(0), Op);
1088   return DAG.getZeroExtendInReg(Op, dl,
1089                                 N->getOperand(0).getValueType().getScalarType());
1090 }
1091
1092
1093 //===----------------------------------------------------------------------===//
1094 //  Integer Result Expansion
1095 //===----------------------------------------------------------------------===//
1096
1097 /// ExpandIntegerResult - This method is called when the specified result of the
1098 /// specified node is found to need expansion.  At this point, the node may also
1099 /// have invalid operands or may have other results that need promotion, we just
1100 /// know that (at least) one result needs expansion.
1101 void DAGTypeLegalizer::ExpandIntegerResult(SDNode *N, unsigned ResNo) {
1102   DEBUG(dbgs() << "Expand integer result: "; N->dump(&DAG); dbgs() << "\n");
1103   SDValue Lo, Hi;
1104   Lo = Hi = SDValue();
1105
1106   // See if the target wants to custom expand this node.
1107   if (CustomLowerNode(N, N->getValueType(ResNo), true))
1108     return;
1109
1110   switch (N->getOpcode()) {
1111   default:
1112 #ifndef NDEBUG
1113     dbgs() << "ExpandIntegerResult #" << ResNo << ": ";
1114     N->dump(&DAG); dbgs() << "\n";
1115 #endif
1116     llvm_unreachable("Do not know how to expand the result of this operator!");
1117
1118   case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break;
1119   case ISD::SELECT:       SplitRes_SELECT(N, Lo, Hi); break;
1120   case ISD::SELECT_CC:    SplitRes_SELECT_CC(N, Lo, Hi); break;
1121   case ISD::UNDEF:        SplitRes_UNDEF(N, Lo, Hi); break;
1122
1123   case ISD::BITCAST:            ExpandRes_BITCAST(N, Lo, Hi); break;
1124   case ISD::BUILD_PAIR:         ExpandRes_BUILD_PAIR(N, Lo, Hi); break;
1125   case ISD::EXTRACT_ELEMENT:    ExpandRes_EXTRACT_ELEMENT(N, Lo, Hi); break;
1126   case ISD::EXTRACT_VECTOR_ELT: ExpandRes_EXTRACT_VECTOR_ELT(N, Lo, Hi); break;
1127   case ISD::VAARG:              ExpandRes_VAARG(N, Lo, Hi); break;
1128
1129   case ISD::ANY_EXTEND:  ExpandIntRes_ANY_EXTEND(N, Lo, Hi); break;
1130   case ISD::AssertSext:  ExpandIntRes_AssertSext(N, Lo, Hi); break;
1131   case ISD::AssertZext:  ExpandIntRes_AssertZext(N, Lo, Hi); break;
1132   case ISD::BSWAP:       ExpandIntRes_BSWAP(N, Lo, Hi); break;
1133   case ISD::Constant:    ExpandIntRes_Constant(N, Lo, Hi); break;
1134   case ISD::CTLZ_ZERO_UNDEF:
1135   case ISD::CTLZ:        ExpandIntRes_CTLZ(N, Lo, Hi); break;
1136   case ISD::CTPOP:       ExpandIntRes_CTPOP(N, Lo, Hi); break;
1137   case ISD::CTTZ_ZERO_UNDEF:
1138   case ISD::CTTZ:        ExpandIntRes_CTTZ(N, Lo, Hi); break;
1139   case ISD::FP_TO_SINT:  ExpandIntRes_FP_TO_SINT(N, Lo, Hi); break;
1140   case ISD::FP_TO_UINT:  ExpandIntRes_FP_TO_UINT(N, Lo, Hi); break;
1141   case ISD::LOAD:        ExpandIntRes_LOAD(cast<LoadSDNode>(N), Lo, Hi); break;
1142   case ISD::MUL:         ExpandIntRes_MUL(N, Lo, Hi); break;
1143   case ISD::SDIV:        ExpandIntRes_SDIV(N, Lo, Hi); break;
1144   case ISD::SIGN_EXTEND: ExpandIntRes_SIGN_EXTEND(N, Lo, Hi); break;
1145   case ISD::SIGN_EXTEND_INREG: ExpandIntRes_SIGN_EXTEND_INREG(N, Lo, Hi); break;
1146   case ISD::SREM:        ExpandIntRes_SREM(N, Lo, Hi); break;
1147   case ISD::TRUNCATE:    ExpandIntRes_TRUNCATE(N, Lo, Hi); break;
1148   case ISD::UDIV:        ExpandIntRes_UDIV(N, Lo, Hi); break;
1149   case ISD::UREM:        ExpandIntRes_UREM(N, Lo, Hi); break;
1150   case ISD::ZERO_EXTEND: ExpandIntRes_ZERO_EXTEND(N, Lo, Hi); break;
1151   case ISD::ATOMIC_LOAD: ExpandIntRes_ATOMIC_LOAD(N, Lo, Hi); break;
1152
1153   case ISD::ATOMIC_LOAD_ADD:
1154   case ISD::ATOMIC_LOAD_SUB:
1155   case ISD::ATOMIC_LOAD_AND:
1156   case ISD::ATOMIC_LOAD_OR:
1157   case ISD::ATOMIC_LOAD_XOR:
1158   case ISD::ATOMIC_LOAD_NAND:
1159   case ISD::ATOMIC_LOAD_MIN:
1160   case ISD::ATOMIC_LOAD_MAX:
1161   case ISD::ATOMIC_LOAD_UMIN:
1162   case ISD::ATOMIC_LOAD_UMAX:
1163   case ISD::ATOMIC_SWAP:
1164   case ISD::ATOMIC_CMP_SWAP: {
1165     std::pair<SDValue, SDValue> Tmp = ExpandAtomic(N);
1166     SplitInteger(Tmp.first, Lo, Hi);
1167     ReplaceValueWith(SDValue(N, 1), Tmp.second);
1168     break;
1169   }
1170   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
1171     AtomicSDNode *AN = cast<AtomicSDNode>(N);
1172     SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::Other);
1173     SDValue Tmp = DAG.getAtomicCmpSwap(
1174         ISD::ATOMIC_CMP_SWAP, SDLoc(N), AN->getMemoryVT(), VTs,
1175         N->getOperand(0), N->getOperand(1), N->getOperand(2), N->getOperand(3),
1176         AN->getMemOperand(), AN->getSuccessOrdering(), AN->getFailureOrdering(),
1177         AN->getSynchScope());
1178
1179     // Expanding to the strong ATOMIC_CMP_SWAP node means we can determine
1180     // success simply by comparing the loaded value against the ingoing
1181     // comparison.
1182     SDValue Success = DAG.getSetCC(SDLoc(N), N->getValueType(1), Tmp,
1183                                    N->getOperand(2), ISD::SETEQ);
1184
1185     SplitInteger(Tmp, Lo, Hi);
1186     ReplaceValueWith(SDValue(N, 1), Success);
1187     ReplaceValueWith(SDValue(N, 2), Tmp.getValue(1));
1188     break;
1189   }
1190
1191   case ISD::AND:
1192   case ISD::OR:
1193   case ISD::XOR: ExpandIntRes_Logical(N, Lo, Hi); break;
1194
1195   case ISD::ADD:
1196   case ISD::SUB: ExpandIntRes_ADDSUB(N, Lo, Hi); break;
1197
1198   case ISD::ADDC:
1199   case ISD::SUBC: ExpandIntRes_ADDSUBC(N, Lo, Hi); break;
1200
1201   case ISD::ADDE:
1202   case ISD::SUBE: ExpandIntRes_ADDSUBE(N, Lo, Hi); break;
1203
1204   case ISD::SHL:
1205   case ISD::SRA:
1206   case ISD::SRL: ExpandIntRes_Shift(N, Lo, Hi); break;
1207
1208   case ISD::SADDO:
1209   case ISD::SSUBO: ExpandIntRes_SADDSUBO(N, Lo, Hi); break;
1210   case ISD::UADDO:
1211   case ISD::USUBO: ExpandIntRes_UADDSUBO(N, Lo, Hi); break;
1212   case ISD::UMULO:
1213   case ISD::SMULO: ExpandIntRes_XMULO(N, Lo, Hi); break;
1214   }
1215
1216   // If Lo/Hi is null, the sub-method took care of registering results etc.
1217   if (Lo.getNode())
1218     SetExpandedInteger(SDValue(N, ResNo), Lo, Hi);
1219 }
1220
1221 /// Lower an atomic node to the appropriate builtin call.
1222 std::pair <SDValue, SDValue> DAGTypeLegalizer::ExpandAtomic(SDNode *Node) {
1223   unsigned Opc = Node->getOpcode();
1224   MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
1225   RTLIB::Libcall LC;
1226
1227   switch (Opc) {
1228   default:
1229     llvm_unreachable("Unhandled atomic intrinsic Expand!");
1230   case ISD::ATOMIC_SWAP:
1231     switch (VT.SimpleTy) {
1232     default: llvm_unreachable("Unexpected value type for atomic!");
1233     case MVT::i8:  LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
1234     case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
1235     case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
1236     case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
1237     case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
1238     }
1239     break;
1240   case ISD::ATOMIC_CMP_SWAP:
1241     switch (VT.SimpleTy) {
1242     default: llvm_unreachable("Unexpected value type for atomic!");
1243     case MVT::i8:  LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
1244     case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
1245     case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
1246     case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
1247     case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
1248     }
1249     break;
1250   case ISD::ATOMIC_LOAD_ADD:
1251     switch (VT.SimpleTy) {
1252     default: llvm_unreachable("Unexpected value type for atomic!");
1253     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
1254     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
1255     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
1256     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
1257     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
1258     }
1259     break;
1260   case ISD::ATOMIC_LOAD_SUB:
1261     switch (VT.SimpleTy) {
1262     default: llvm_unreachable("Unexpected value type for atomic!");
1263     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
1264     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
1265     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
1266     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
1267     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
1268     }
1269     break;
1270   case ISD::ATOMIC_LOAD_AND:
1271     switch (VT.SimpleTy) {
1272     default: llvm_unreachable("Unexpected value type for atomic!");
1273     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
1274     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
1275     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
1276     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
1277     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
1278     }
1279     break;
1280   case ISD::ATOMIC_LOAD_OR:
1281     switch (VT.SimpleTy) {
1282     default: llvm_unreachable("Unexpected value type for atomic!");
1283     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
1284     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
1285     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
1286     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
1287     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
1288     }
1289     break;
1290   case ISD::ATOMIC_LOAD_XOR:
1291     switch (VT.SimpleTy) {
1292     default: llvm_unreachable("Unexpected value type for atomic!");
1293     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
1294     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
1295     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
1296     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
1297     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
1298     }
1299     break;
1300   case ISD::ATOMIC_LOAD_NAND:
1301     switch (VT.SimpleTy) {
1302     default: llvm_unreachable("Unexpected value type for atomic!");
1303     case MVT::i8:  LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
1304     case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
1305     case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
1306     case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
1307     case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
1308     }
1309     break;
1310   }
1311
1312   return ExpandChainLibCall(LC, Node, false);
1313 }
1314
1315 /// ExpandShiftByConstant - N is a shift by a value that needs to be expanded,
1316 /// and the shift amount is a constant 'Amt'.  Expand the operation.
1317 void DAGTypeLegalizer::ExpandShiftByConstant(SDNode *N, unsigned Amt,
1318                                              SDValue &Lo, SDValue &Hi) {
1319   assert(Amt && "Expected zero shifts to be already optimized away.");
1320   SDLoc DL(N);
1321   // Expand the incoming operand to be shifted, so that we have its parts
1322   SDValue InL, InH;
1323   GetExpandedInteger(N->getOperand(0), InL, InH);
1324
1325   EVT NVT = InL.getValueType();
1326   unsigned VTBits = N->getValueType(0).getSizeInBits();
1327   unsigned NVTBits = NVT.getSizeInBits();
1328   EVT ShTy = N->getOperand(1).getValueType();
1329
1330   if (N->getOpcode() == ISD::SHL) {
1331     if (Amt > VTBits) {
1332       Lo = Hi = DAG.getConstant(0, NVT);
1333     } else if (Amt > NVTBits) {
1334       Lo = DAG.getConstant(0, NVT);
1335       Hi = DAG.getNode(ISD::SHL, DL,
1336                        NVT, InL, DAG.getConstant(Amt-NVTBits, ShTy));
1337     } else if (Amt == NVTBits) {
1338       Lo = DAG.getConstant(0, NVT);
1339       Hi = InL;
1340     } else if (Amt == 1 &&
1341                TLI.isOperationLegalOrCustom(ISD::ADDC,
1342                               TLI.getTypeToExpandTo(*DAG.getContext(), NVT))) {
1343       // Emit this X << 1 as X+X.
1344       SDVTList VTList = DAG.getVTList(NVT, MVT::Glue);
1345       SDValue LoOps[2] = { InL, InL };
1346       Lo = DAG.getNode(ISD::ADDC, DL, VTList, LoOps);
1347       SDValue HiOps[3] = { InH, InH, Lo.getValue(1) };
1348       Hi = DAG.getNode(ISD::ADDE, DL, VTList, HiOps);
1349     } else {
1350       Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, ShTy));
1351       Hi = DAG.getNode(ISD::OR, DL, NVT,
1352                        DAG.getNode(ISD::SHL, DL, NVT, InH,
1353                                    DAG.getConstant(Amt, ShTy)),
1354                        DAG.getNode(ISD::SRL, DL, NVT, InL,
1355                                    DAG.getConstant(NVTBits-Amt, ShTy)));
1356     }
1357     return;
1358   }
1359
1360   if (N->getOpcode() == ISD::SRL) {
1361     if (Amt > VTBits) {
1362       Lo = DAG.getConstant(0, NVT);
1363       Hi = DAG.getConstant(0, NVT);
1364     } else if (Amt > NVTBits) {
1365       Lo = DAG.getNode(ISD::SRL, DL,
1366                        NVT, InH, DAG.getConstant(Amt-NVTBits,ShTy));
1367       Hi = DAG.getConstant(0, NVT);
1368     } else if (Amt == NVTBits) {
1369       Lo = InH;
1370       Hi = DAG.getConstant(0, NVT);
1371     } else {
1372       Lo = DAG.getNode(ISD::OR, DL, NVT,
1373                        DAG.getNode(ISD::SRL, DL, NVT, InL,
1374                                    DAG.getConstant(Amt, ShTy)),
1375                        DAG.getNode(ISD::SHL, DL, NVT, InH,
1376                                    DAG.getConstant(NVTBits-Amt, ShTy)));
1377       Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1378     }
1379     return;
1380   }
1381
1382   assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
1383   if (Amt > VTBits) {
1384     Hi = Lo = DAG.getNode(ISD::SRA, DL, NVT, InH,
1385                           DAG.getConstant(NVTBits-1, ShTy));
1386   } else if (Amt > NVTBits) {
1387     Lo = DAG.getNode(ISD::SRA, DL, NVT, InH,
1388                      DAG.getConstant(Amt-NVTBits, ShTy));
1389     Hi = DAG.getNode(ISD::SRA, DL, NVT, InH,
1390                      DAG.getConstant(NVTBits-1, ShTy));
1391   } else if (Amt == NVTBits) {
1392     Lo = InH;
1393     Hi = DAG.getNode(ISD::SRA, DL, NVT, InH,
1394                      DAG.getConstant(NVTBits-1, ShTy));
1395   } else {
1396     Lo = DAG.getNode(ISD::OR, DL, NVT,
1397                      DAG.getNode(ISD::SRL, DL, NVT, InL,
1398                                  DAG.getConstant(Amt, ShTy)),
1399                      DAG.getNode(ISD::SHL, DL, NVT, InH,
1400                                  DAG.getConstant(NVTBits-Amt, ShTy)));
1401     Hi = DAG.getNode(ISD::SRA, DL, NVT, InH, DAG.getConstant(Amt, ShTy));
1402   }
1403 }
1404
1405 /// ExpandShiftWithKnownAmountBit - Try to determine whether we can simplify
1406 /// this shift based on knowledge of the high bit of the shift amount.  If we
1407 /// can tell this, we know that it is >= 32 or < 32, without knowing the actual
1408 /// shift amount.
1409 bool DAGTypeLegalizer::
1410 ExpandShiftWithKnownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
1411   SDValue Amt = N->getOperand(1);
1412   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1413   EVT ShTy = Amt.getValueType();
1414   unsigned ShBits = ShTy.getScalarType().getSizeInBits();
1415   unsigned NVTBits = NVT.getScalarType().getSizeInBits();
1416   assert(isPowerOf2_32(NVTBits) &&
1417          "Expanded integer type size not a power of two!");
1418   SDLoc dl(N);
1419
1420   APInt HighBitMask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
1421   APInt KnownZero, KnownOne;
1422   DAG.computeKnownBits(N->getOperand(1), KnownZero, KnownOne);
1423
1424   // If we don't know anything about the high bits, exit.
1425   if (((KnownZero|KnownOne) & HighBitMask) == 0)
1426     return false;
1427
1428   // Get the incoming operand to be shifted.
1429   SDValue InL, InH;
1430   GetExpandedInteger(N->getOperand(0), InL, InH);
1431
1432   // If we know that any of the high bits of the shift amount are one, then we
1433   // can do this as a couple of simple shifts.
1434   if (KnownOne.intersects(HighBitMask)) {
1435     // Mask out the high bit, which we know is set.
1436     Amt = DAG.getNode(ISD::AND, dl, ShTy, Amt,
1437                       DAG.getConstant(~HighBitMask, ShTy));
1438
1439     switch (N->getOpcode()) {
1440     default: llvm_unreachable("Unknown shift");
1441     case ISD::SHL:
1442       Lo = DAG.getConstant(0, NVT);              // Low part is zero.
1443       Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
1444       return true;
1445     case ISD::SRL:
1446       Hi = DAG.getConstant(0, NVT);              // Hi part is zero.
1447       Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
1448       return true;
1449     case ISD::SRA:
1450       Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,       // Sign extend high part.
1451                        DAG.getConstant(NVTBits-1, ShTy));
1452       Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
1453       return true;
1454     }
1455   }
1456
1457   // If we know that all of the high bits of the shift amount are zero, then we
1458   // can do this as a couple of simple shifts.
1459   if ((KnownZero & HighBitMask) == HighBitMask) {
1460     // Calculate 31-x. 31 is used instead of 32 to avoid creating an undefined
1461     // shift if x is zero.  We can use XOR here because x is known to be smaller
1462     // than 32.
1463     SDValue Amt2 = DAG.getNode(ISD::XOR, dl, ShTy, Amt,
1464                                DAG.getConstant(NVTBits-1, ShTy));
1465
1466     unsigned Op1, Op2;
1467     switch (N->getOpcode()) {
1468     default: llvm_unreachable("Unknown shift");
1469     case ISD::SHL:  Op1 = ISD::SHL; Op2 = ISD::SRL; break;
1470     case ISD::SRL:
1471     case ISD::SRA:  Op1 = ISD::SRL; Op2 = ISD::SHL; break;
1472     }
1473
1474     // When shifting right the arithmetic for Lo and Hi is swapped.
1475     if (N->getOpcode() != ISD::SHL)
1476       std::swap(InL, InH);
1477
1478     // Use a little trick to get the bits that move from Lo to Hi. First
1479     // shift by one bit.
1480     SDValue Sh1 = DAG.getNode(Op2, dl, NVT, InL, DAG.getConstant(1, ShTy));
1481     // Then compute the remaining shift with amount-1.
1482     SDValue Sh2 = DAG.getNode(Op2, dl, NVT, Sh1, Amt2);
1483
1484     Lo = DAG.getNode(N->getOpcode(), dl, NVT, InL, Amt);
1485     Hi = DAG.getNode(ISD::OR, dl, NVT, DAG.getNode(Op1, dl, NVT, InH, Amt),Sh2);
1486
1487     if (N->getOpcode() != ISD::SHL)
1488       std::swap(Hi, Lo);
1489     return true;
1490   }
1491
1492   return false;
1493 }
1494
1495 /// ExpandShiftWithUnknownAmountBit - Fully general expansion of integer shift
1496 /// of any size.
1497 bool DAGTypeLegalizer::
1498 ExpandShiftWithUnknownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
1499   SDValue Amt = N->getOperand(1);
1500   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1501   EVT ShTy = Amt.getValueType();
1502   unsigned NVTBits = NVT.getSizeInBits();
1503   assert(isPowerOf2_32(NVTBits) &&
1504          "Expanded integer type size not a power of two!");
1505   SDLoc dl(N);
1506
1507   // Get the incoming operand to be shifted.
1508   SDValue InL, InH;
1509   GetExpandedInteger(N->getOperand(0), InL, InH);
1510
1511   SDValue NVBitsNode = DAG.getConstant(NVTBits, ShTy);
1512   SDValue AmtExcess = DAG.getNode(ISD::SUB, dl, ShTy, Amt, NVBitsNode);
1513   SDValue AmtLack = DAG.getNode(ISD::SUB, dl, ShTy, NVBitsNode, Amt);
1514   SDValue isShort = DAG.getSetCC(dl, getSetCCResultType(ShTy),
1515                                  Amt, NVBitsNode, ISD::SETULT);
1516
1517   SDValue LoS, HiS, LoL, HiL;
1518   switch (N->getOpcode()) {
1519   default: llvm_unreachable("Unknown shift");
1520   case ISD::SHL:
1521     // Short: ShAmt < NVTBits
1522     LoS = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
1523     HiS = DAG.getNode(ISD::OR, dl, NVT,
1524                       DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
1525     // FIXME: If Amt is zero, the following shift generates an undefined result
1526     // on some architectures.
1527                       DAG.getNode(ISD::SRL, dl, NVT, InL, AmtLack));
1528
1529     // Long: ShAmt >= NVTBits
1530     LoL = DAG.getConstant(0, NVT);                        // Lo part is zero.
1531     HiL = DAG.getNode(ISD::SHL, dl, NVT, InL, AmtExcess); // Hi from Lo part.
1532
1533     Lo = DAG.getSelect(dl, NVT, isShort, LoS, LoL);
1534     Hi = DAG.getSelect(dl, NVT, isShort, HiS, HiL);
1535     return true;
1536   case ISD::SRL:
1537     // Short: ShAmt < NVTBits
1538     HiS = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
1539     LoS = DAG.getNode(ISD::OR, dl, NVT,
1540                       DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
1541     // FIXME: If Amt is zero, the following shift generates an undefined result
1542     // on some architectures.
1543                       DAG.getNode(ISD::SHL, dl, NVT, InH, AmtLack));
1544
1545     // Long: ShAmt >= NVTBits
1546     HiL = DAG.getConstant(0, NVT);                        // Hi part is zero.
1547     LoL = DAG.getNode(ISD::SRL, dl, NVT, InH, AmtExcess); // Lo from Hi part.
1548
1549     Lo = DAG.getSelect(dl, NVT, isShort, LoS, LoL);
1550     Hi = DAG.getSelect(dl, NVT, isShort, HiS, HiL);
1551     return true;
1552   case ISD::SRA:
1553     // Short: ShAmt < NVTBits
1554     HiS = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
1555     LoS = DAG.getNode(ISD::OR, dl, NVT,
1556                       DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
1557     // FIXME: If Amt is zero, the following shift generates an undefined result
1558     // on some architectures.
1559                       DAG.getNode(ISD::SHL, dl, NVT, InH, AmtLack));
1560
1561     // Long: ShAmt >= NVTBits
1562     HiL = DAG.getNode(ISD::SRA, dl, NVT, InH,             // Sign of Hi part.
1563                       DAG.getConstant(NVTBits-1, ShTy));
1564     LoL = DAG.getNode(ISD::SRA, dl, NVT, InH, AmtExcess); // Lo from Hi part.
1565
1566     Lo = DAG.getSelect(dl, NVT, isShort, LoS, LoL);
1567     Hi = DAG.getSelect(dl, NVT, isShort, HiS, HiL);
1568     return true;
1569   }
1570 }
1571
1572 void DAGTypeLegalizer::ExpandIntRes_ADDSUB(SDNode *N,
1573                                            SDValue &Lo, SDValue &Hi) {
1574   SDLoc dl(N);
1575   // Expand the subcomponents.
1576   SDValue LHSL, LHSH, RHSL, RHSH;
1577   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1578   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1579
1580   EVT NVT = LHSL.getValueType();
1581   SDValue LoOps[2] = { LHSL, RHSL };
1582   SDValue HiOps[3] = { LHSH, RHSH };
1583
1584   // Do not generate ADDC/ADDE or SUBC/SUBE if the target does not support
1585   // them.  TODO: Teach operation legalization how to expand unsupported
1586   // ADDC/ADDE/SUBC/SUBE.  The problem is that these operations generate
1587   // a carry of type MVT::Glue, but there doesn't seem to be any way to
1588   // generate a value of this type in the expanded code sequence.
1589   bool hasCarry =
1590     TLI.isOperationLegalOrCustom(N->getOpcode() == ISD::ADD ?
1591                                    ISD::ADDC : ISD::SUBC,
1592                                  TLI.getTypeToExpandTo(*DAG.getContext(), NVT));
1593
1594   if (hasCarry) {
1595     SDVTList VTList = DAG.getVTList(NVT, MVT::Glue);
1596     if (N->getOpcode() == ISD::ADD) {
1597       Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps);
1598       HiOps[2] = Lo.getValue(1);
1599       Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps);
1600     } else {
1601       Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps);
1602       HiOps[2] = Lo.getValue(1);
1603       Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps);
1604     }
1605     return;
1606   }
1607
1608   if (N->getOpcode() == ISD::ADD) {
1609     Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps);
1610     Hi = DAG.getNode(ISD::ADD, dl, NVT, makeArrayRef(HiOps, 2));
1611     SDValue Cmp1 = DAG.getSetCC(dl, getSetCCResultType(NVT), Lo, LoOps[0],
1612                                 ISD::SETULT);
1613     SDValue Carry1 = DAG.getSelect(dl, NVT, Cmp1,
1614                                    DAG.getConstant(1, NVT),
1615                                    DAG.getConstant(0, NVT));
1616     SDValue Cmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT), Lo, LoOps[1],
1617                                 ISD::SETULT);
1618     SDValue Carry2 = DAG.getSelect(dl, NVT, Cmp2,
1619                                    DAG.getConstant(1, NVT), Carry1);
1620     Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
1621   } else {
1622     Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps);
1623     Hi = DAG.getNode(ISD::SUB, dl, NVT, makeArrayRef(HiOps, 2));
1624     SDValue Cmp =
1625       DAG.getSetCC(dl, getSetCCResultType(LoOps[0].getValueType()),
1626                    LoOps[0], LoOps[1], ISD::SETULT);
1627     SDValue Borrow = DAG.getSelect(dl, NVT, Cmp,
1628                                    DAG.getConstant(1, NVT),
1629                                    DAG.getConstant(0, NVT));
1630     Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
1631   }
1632 }
1633
1634 void DAGTypeLegalizer::ExpandIntRes_ADDSUBC(SDNode *N,
1635                                             SDValue &Lo, SDValue &Hi) {
1636   // Expand the subcomponents.
1637   SDValue LHSL, LHSH, RHSL, RHSH;
1638   SDLoc dl(N);
1639   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1640   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1641   SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Glue);
1642   SDValue LoOps[2] = { LHSL, RHSL };
1643   SDValue HiOps[3] = { LHSH, RHSH };
1644
1645   if (N->getOpcode() == ISD::ADDC) {
1646     Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps);
1647     HiOps[2] = Lo.getValue(1);
1648     Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps);
1649   } else {
1650     Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps);
1651     HiOps[2] = Lo.getValue(1);
1652     Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps);
1653   }
1654
1655   // Legalized the flag result - switch anything that used the old flag to
1656   // use the new one.
1657   ReplaceValueWith(SDValue(N, 1), Hi.getValue(1));
1658 }
1659
1660 void DAGTypeLegalizer::ExpandIntRes_ADDSUBE(SDNode *N,
1661                                             SDValue &Lo, SDValue &Hi) {
1662   // Expand the subcomponents.
1663   SDValue LHSL, LHSH, RHSL, RHSH;
1664   SDLoc dl(N);
1665   GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
1666   GetExpandedInteger(N->getOperand(1), RHSL, RHSH);
1667   SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Glue);
1668   SDValue LoOps[3] = { LHSL, RHSL, N->getOperand(2) };
1669   SDValue HiOps[3] = { LHSH, RHSH };
1670
1671   Lo = DAG.getNode(N->getOpcode(), dl, VTList, LoOps);
1672   HiOps[2] = Lo.getValue(1);
1673   Hi = DAG.getNode(N->getOpcode(), dl, VTList, HiOps);
1674
1675   // Legalized the flag result - switch anything that used the old flag to
1676   // use the new one.
1677   ReplaceValueWith(SDValue(N, 1), Hi.getValue(1));
1678 }
1679
1680 void DAGTypeLegalizer::ExpandIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
1681                                                  SDValue &Lo, SDValue &Hi) {
1682   SDValue Res = DisintegrateMERGE_VALUES(N, ResNo);
1683   SplitInteger(Res, Lo, Hi);
1684 }
1685
1686 void DAGTypeLegalizer::ExpandIntRes_ANY_EXTEND(SDNode *N,
1687                                                SDValue &Lo, SDValue &Hi) {
1688   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1689   SDLoc dl(N);
1690   SDValue Op = N->getOperand(0);
1691   if (Op.getValueType().bitsLE(NVT)) {
1692     // The low part is any extension of the input (which degenerates to a copy).
1693     Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Op);
1694     Hi = DAG.getUNDEF(NVT);   // The high part is undefined.
1695   } else {
1696     // For example, extension of an i48 to an i64.  The operand type necessarily
1697     // promotes to the result type, so will end up being expanded too.
1698     assert(getTypeAction(Op.getValueType()) ==
1699            TargetLowering::TypePromoteInteger &&
1700            "Only know how to promote this result!");
1701     SDValue Res = GetPromotedInteger(Op);
1702     assert(Res.getValueType() == N->getValueType(0) &&
1703            "Operand over promoted?");
1704     // Split the promoted operand.  This will simplify when it is expanded.
1705     SplitInteger(Res, Lo, Hi);
1706   }
1707 }
1708
1709 void DAGTypeLegalizer::ExpandIntRes_AssertSext(SDNode *N,
1710                                                SDValue &Lo, SDValue &Hi) {
1711   SDLoc dl(N);
1712   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1713   EVT NVT = Lo.getValueType();
1714   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
1715   unsigned NVTBits = NVT.getSizeInBits();
1716   unsigned EVTBits = EVT.getSizeInBits();
1717
1718   if (NVTBits < EVTBits) {
1719     Hi = DAG.getNode(ISD::AssertSext, dl, NVT, Hi,
1720                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(),
1721                                                         EVTBits - NVTBits)));
1722   } else {
1723     Lo = DAG.getNode(ISD::AssertSext, dl, NVT, Lo, DAG.getValueType(EVT));
1724     // The high part replicates the sign bit of Lo, make it explicit.
1725     Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
1726                      DAG.getConstant(NVTBits-1, TLI.getPointerTy()));
1727   }
1728 }
1729
1730 void DAGTypeLegalizer::ExpandIntRes_AssertZext(SDNode *N,
1731                                                SDValue &Lo, SDValue &Hi) {
1732   SDLoc dl(N);
1733   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1734   EVT NVT = Lo.getValueType();
1735   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
1736   unsigned NVTBits = NVT.getSizeInBits();
1737   unsigned EVTBits = EVT.getSizeInBits();
1738
1739   if (NVTBits < EVTBits) {
1740     Hi = DAG.getNode(ISD::AssertZext, dl, NVT, Hi,
1741                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(),
1742                                                         EVTBits - NVTBits)));
1743   } else {
1744     Lo = DAG.getNode(ISD::AssertZext, dl, NVT, Lo, DAG.getValueType(EVT));
1745     // The high part must be zero, make it explicit.
1746     Hi = DAG.getConstant(0, NVT);
1747   }
1748 }
1749
1750 void DAGTypeLegalizer::ExpandIntRes_BSWAP(SDNode *N,
1751                                           SDValue &Lo, SDValue &Hi) {
1752   SDLoc dl(N);
1753   GetExpandedInteger(N->getOperand(0), Hi, Lo);  // Note swapped operands.
1754   Lo = DAG.getNode(ISD::BSWAP, dl, Lo.getValueType(), Lo);
1755   Hi = DAG.getNode(ISD::BSWAP, dl, Hi.getValueType(), Hi);
1756 }
1757
1758 void DAGTypeLegalizer::ExpandIntRes_Constant(SDNode *N,
1759                                              SDValue &Lo, SDValue &Hi) {
1760   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
1761   unsigned NBitWidth = NVT.getSizeInBits();
1762   auto Constant = cast<ConstantSDNode>(N);
1763   const APInt &Cst = Constant->getAPIntValue();
1764   bool IsTarget = Constant->isTargetOpcode();
1765   bool IsOpaque = Constant->isOpaque();
1766   Lo = DAG.getConstant(Cst.trunc(NBitWidth), NVT, IsTarget, IsOpaque);
1767   Hi = DAG.getConstant(Cst.lshr(NBitWidth).trunc(NBitWidth), NVT, IsTarget,
1768                        IsOpaque);
1769 }
1770
1771 void DAGTypeLegalizer::ExpandIntRes_CTLZ(SDNode *N,
1772                                          SDValue &Lo, SDValue &Hi) {
1773   SDLoc dl(N);
1774   // ctlz (HiLo) -> Hi != 0 ? ctlz(Hi) : (ctlz(Lo)+32)
1775   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1776   EVT NVT = Lo.getValueType();
1777
1778   SDValue HiNotZero = DAG.getSetCC(dl, getSetCCResultType(NVT), Hi,
1779                                    DAG.getConstant(0, NVT), ISD::SETNE);
1780
1781   SDValue LoLZ = DAG.getNode(N->getOpcode(), dl, NVT, Lo);
1782   SDValue HiLZ = DAG.getNode(ISD::CTLZ_ZERO_UNDEF, dl, NVT, Hi);
1783
1784   Lo = DAG.getSelect(dl, NVT, HiNotZero, HiLZ,
1785                      DAG.getNode(ISD::ADD, dl, NVT, LoLZ,
1786                                  DAG.getConstant(NVT.getSizeInBits(), NVT)));
1787   Hi = DAG.getConstant(0, NVT);
1788 }
1789
1790 void DAGTypeLegalizer::ExpandIntRes_CTPOP(SDNode *N,
1791                                           SDValue &Lo, SDValue &Hi) {
1792   SDLoc dl(N);
1793   // ctpop(HiLo) -> ctpop(Hi)+ctpop(Lo)
1794   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1795   EVT NVT = Lo.getValueType();
1796   Lo = DAG.getNode(ISD::ADD, dl, NVT, DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
1797                    DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
1798   Hi = DAG.getConstant(0, NVT);
1799 }
1800
1801 void DAGTypeLegalizer::ExpandIntRes_CTTZ(SDNode *N,
1802                                          SDValue &Lo, SDValue &Hi) {
1803   SDLoc dl(N);
1804   // cttz (HiLo) -> Lo != 0 ? cttz(Lo) : (cttz(Hi)+32)
1805   GetExpandedInteger(N->getOperand(0), Lo, Hi);
1806   EVT NVT = Lo.getValueType();
1807
1808   SDValue LoNotZero = DAG.getSetCC(dl, getSetCCResultType(NVT), Lo,
1809                                    DAG.getConstant(0, NVT), ISD::SETNE);
1810
1811   SDValue LoLZ = DAG.getNode(ISD::CTTZ_ZERO_UNDEF, dl, NVT, Lo);
1812   SDValue HiLZ = DAG.getNode(N->getOpcode(), dl, NVT, Hi);
1813
1814   Lo = DAG.getSelect(dl, NVT, LoNotZero, LoLZ,
1815                      DAG.getNode(ISD::ADD, dl, NVT, HiLZ,
1816                                  DAG.getConstant(NVT.getSizeInBits(), NVT)));
1817   Hi = DAG.getConstant(0, NVT);
1818 }
1819
1820 void DAGTypeLegalizer::ExpandIntRes_FP_TO_SINT(SDNode *N, SDValue &Lo,
1821                                                SDValue &Hi) {
1822   SDLoc dl(N);
1823   EVT VT = N->getValueType(0);
1824   SDValue Op = N->getOperand(0);
1825   RTLIB::Libcall LC = RTLIB::getFPTOSINT(Op.getValueType(), VT);
1826   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-sint conversion!");
1827   SplitInteger(TLI.makeLibCall(DAG, LC, VT, &Op, 1, true/*irrelevant*/,
1828                                dl).first,
1829                Lo, Hi);
1830 }
1831
1832 void DAGTypeLegalizer::ExpandIntRes_FP_TO_UINT(SDNode *N, SDValue &Lo,
1833                                                SDValue &Hi) {
1834   SDLoc dl(N);
1835   EVT VT = N->getValueType(0);
1836   SDValue Op = N->getOperand(0);
1837   RTLIB::Libcall LC = RTLIB::getFPTOUINT(Op.getValueType(), VT);
1838   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
1839   SplitInteger(TLI.makeLibCall(DAG, LC, VT, &Op, 1, false/*irrelevant*/,
1840                                dl).first,
1841                Lo, Hi);
1842 }
1843
1844 void DAGTypeLegalizer::ExpandIntRes_LOAD(LoadSDNode *N,
1845                                          SDValue &Lo, SDValue &Hi) {
1846   if (ISD::isNormalLoad(N)) {
1847     ExpandRes_NormalLoad(N, Lo, Hi);
1848     return;
1849   }
1850
1851   assert(ISD::isUNINDEXEDLoad(N) && "Indexed load during type legalization!");
1852
1853   EVT VT = N->getValueType(0);
1854   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1855   SDValue Ch  = N->getChain();
1856   SDValue Ptr = N->getBasePtr();
1857   ISD::LoadExtType ExtType = N->getExtensionType();
1858   unsigned Alignment = N->getAlignment();
1859   bool isVolatile = N->isVolatile();
1860   bool isNonTemporal = N->isNonTemporal();
1861   bool isInvariant = N->isInvariant();
1862   const MDNode *TBAAInfo = N->getTBAAInfo();
1863   SDLoc dl(N);
1864
1865   assert(NVT.isByteSized() && "Expanded type not byte sized!");
1866
1867   if (N->getMemoryVT().bitsLE(NVT)) {
1868     EVT MemVT = N->getMemoryVT();
1869
1870     Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getPointerInfo(),
1871                         MemVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
1872
1873     // Remember the chain.
1874     Ch = Lo.getValue(1);
1875
1876     if (ExtType == ISD::SEXTLOAD) {
1877       // The high part is obtained by SRA'ing all but one of the bits of the
1878       // lo part.
1879       unsigned LoSize = Lo.getValueType().getSizeInBits();
1880       Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
1881                        DAG.getConstant(LoSize-1, TLI.getPointerTy()));
1882     } else if (ExtType == ISD::ZEXTLOAD) {
1883       // The high part is just a zero.
1884       Hi = DAG.getConstant(0, NVT);
1885     } else {
1886       assert(ExtType == ISD::EXTLOAD && "Unknown extload!");
1887       // The high part is undefined.
1888       Hi = DAG.getUNDEF(NVT);
1889     }
1890   } else if (TLI.isLittleEndian()) {
1891     // Little-endian - low bits are at low addresses.
1892     Lo = DAG.getLoad(NVT, dl, Ch, Ptr, N->getPointerInfo(),
1893                      isVolatile, isNonTemporal, isInvariant, Alignment,
1894                      TBAAInfo);
1895
1896     unsigned ExcessBits =
1897       N->getMemoryVT().getSizeInBits() - NVT.getSizeInBits();
1898     EVT NEVT = EVT::getIntegerVT(*DAG.getContext(), ExcessBits);
1899
1900     // Increment the pointer to the other half.
1901     unsigned IncrementSize = NVT.getSizeInBits()/8;
1902     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1903                       DAG.getConstant(IncrementSize, Ptr.getValueType()));
1904     Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr,
1905                         N->getPointerInfo().getWithOffset(IncrementSize), NEVT,
1906                         isVolatile, isNonTemporal,
1907                         MinAlign(Alignment, IncrementSize), TBAAInfo);
1908
1909     // Build a factor node to remember that this load is independent of the
1910     // other one.
1911     Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1912                      Hi.getValue(1));
1913   } else {
1914     // Big-endian - high bits are at low addresses.  Favor aligned loads at
1915     // the cost of some bit-fiddling.
1916     EVT MemVT = N->getMemoryVT();
1917     unsigned EBytes = MemVT.getStoreSize();
1918     unsigned IncrementSize = NVT.getSizeInBits()/8;
1919     unsigned ExcessBits = (EBytes - IncrementSize)*8;
1920
1921     // Load both the high bits and maybe some of the low bits.
1922     Hi = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getPointerInfo(),
1923                         EVT::getIntegerVT(*DAG.getContext(),
1924                                           MemVT.getSizeInBits() - ExcessBits),
1925                         isVolatile, isNonTemporal, Alignment, TBAAInfo);
1926
1927     // Increment the pointer to the other half.
1928     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
1929                       DAG.getConstant(IncrementSize, Ptr.getValueType()));
1930     // Load the rest of the low bits.
1931     Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, NVT, Ch, Ptr,
1932                         N->getPointerInfo().getWithOffset(IncrementSize),
1933                         EVT::getIntegerVT(*DAG.getContext(), ExcessBits),
1934                         isVolatile, isNonTemporal,
1935                         MinAlign(Alignment, IncrementSize), TBAAInfo);
1936
1937     // Build a factor node to remember that this load is independent of the
1938     // other one.
1939     Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1940                      Hi.getValue(1));
1941
1942     if (ExcessBits < NVT.getSizeInBits()) {
1943       // Transfer low bits from the bottom of Hi to the top of Lo.
1944       Lo = DAG.getNode(ISD::OR, dl, NVT, Lo,
1945                        DAG.getNode(ISD::SHL, dl, NVT, Hi,
1946                                    DAG.getConstant(ExcessBits,
1947                                                    TLI.getPointerTy())));
1948       // Move high bits to the right position in Hi.
1949       Hi = DAG.getNode(ExtType == ISD::SEXTLOAD ? ISD::SRA : ISD::SRL, dl,
1950                        NVT, Hi,
1951                        DAG.getConstant(NVT.getSizeInBits() - ExcessBits,
1952                                        TLI.getPointerTy()));
1953     }
1954   }
1955
1956   // Legalized the chain result - switch anything that used the old chain to
1957   // use the new one.
1958   ReplaceValueWith(SDValue(N, 1), Ch);
1959 }
1960
1961 void DAGTypeLegalizer::ExpandIntRes_Logical(SDNode *N,
1962                                             SDValue &Lo, SDValue &Hi) {
1963   SDLoc dl(N);
1964   SDValue LL, LH, RL, RH;
1965   GetExpandedInteger(N->getOperand(0), LL, LH);
1966   GetExpandedInteger(N->getOperand(1), RL, RH);
1967   Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
1968   Hi = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LH, RH);
1969 }
1970
1971 void DAGTypeLegalizer::ExpandIntRes_MUL(SDNode *N,
1972                                         SDValue &Lo, SDValue &Hi) {
1973   EVT VT = N->getValueType(0);
1974   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
1975   SDLoc dl(N);
1976
1977   SDValue LL, LH, RL, RH;
1978   GetExpandedInteger(N->getOperand(0), LL, LH);
1979   GetExpandedInteger(N->getOperand(1), RL, RH);
1980
1981   if (TLI.expandMUL(N, Lo, Hi, NVT, DAG, LL, LH, RL, RH))
1982     return;
1983
1984   // If nothing else, we can make a libcall.
1985   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1986   if (VT == MVT::i16)
1987     LC = RTLIB::MUL_I16;
1988   else if (VT == MVT::i32)
1989     LC = RTLIB::MUL_I32;
1990   else if (VT == MVT::i64)
1991     LC = RTLIB::MUL_I64;
1992   else if (VT == MVT::i128)
1993     LC = RTLIB::MUL_I128;
1994   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported MUL!");
1995
1996   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
1997   SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, true/*irrelevant*/,
1998                                dl).first,
1999                Lo, Hi);
2000 }
2001
2002 void DAGTypeLegalizer::ExpandIntRes_SADDSUBO(SDNode *Node,
2003                                              SDValue &Lo, SDValue &Hi) {
2004   SDValue LHS = Node->getOperand(0);
2005   SDValue RHS = Node->getOperand(1);
2006   SDLoc dl(Node);
2007
2008   // Expand the result by simply replacing it with the equivalent
2009   // non-overflow-checking operation.
2010   SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
2011                             ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
2012                             LHS, RHS);
2013   SplitInteger(Sum, Lo, Hi);
2014
2015   // Compute the overflow.
2016   //
2017   //   LHSSign -> LHS >= 0
2018   //   RHSSign -> RHS >= 0
2019   //   SumSign -> Sum >= 0
2020   //
2021   //   Add:
2022   //   Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
2023   //   Sub:
2024   //   Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
2025   //
2026   EVT OType = Node->getValueType(1);
2027   SDValue Zero = DAG.getConstant(0, LHS.getValueType());
2028
2029   SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
2030   SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
2031   SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
2032                                     Node->getOpcode() == ISD::SADDO ?
2033                                     ISD::SETEQ : ISD::SETNE);
2034
2035   SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
2036   SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
2037
2038   SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
2039
2040   // Use the calculated overflow everywhere.
2041   ReplaceValueWith(SDValue(Node, 1), Cmp);
2042 }
2043
2044 void DAGTypeLegalizer::ExpandIntRes_SDIV(SDNode *N,
2045                                          SDValue &Lo, SDValue &Hi) {
2046   EVT VT = N->getValueType(0);
2047   SDLoc dl(N);
2048
2049   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2050   if (VT == MVT::i16)
2051     LC = RTLIB::SDIV_I16;
2052   else if (VT == MVT::i32)
2053     LC = RTLIB::SDIV_I32;
2054   else if (VT == MVT::i64)
2055     LC = RTLIB::SDIV_I64;
2056   else if (VT == MVT::i128)
2057     LC = RTLIB::SDIV_I128;
2058   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
2059
2060   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
2061   SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, true, dl).first, Lo, Hi);
2062 }
2063
2064 void DAGTypeLegalizer::ExpandIntRes_Shift(SDNode *N,
2065                                           SDValue &Lo, SDValue &Hi) {
2066   EVT VT = N->getValueType(0);
2067   SDLoc dl(N);
2068
2069   // If we can emit an efficient shift operation, do so now.  Check to see if
2070   // the RHS is a constant.
2071   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2072     return ExpandShiftByConstant(N, CN->getZExtValue(), Lo, Hi);
2073
2074   // If we can determine that the high bit of the shift is zero or one, even if
2075   // the low bits are variable, emit this shift in an optimized form.
2076   if (ExpandShiftWithKnownAmountBit(N, Lo, Hi))
2077     return;
2078
2079   // If this target supports shift_PARTS, use it.  First, map to the _PARTS opc.
2080   unsigned PartsOpc;
2081   if (N->getOpcode() == ISD::SHL) {
2082     PartsOpc = ISD::SHL_PARTS;
2083   } else if (N->getOpcode() == ISD::SRL) {
2084     PartsOpc = ISD::SRL_PARTS;
2085   } else {
2086     assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
2087     PartsOpc = ISD::SRA_PARTS;
2088   }
2089
2090   // Next check to see if the target supports this SHL_PARTS operation or if it
2091   // will custom expand it.
2092   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2093   TargetLowering::LegalizeAction Action = TLI.getOperationAction(PartsOpc, NVT);
2094   if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
2095       Action == TargetLowering::Custom) {
2096     // Expand the subcomponents.
2097     SDValue LHSL, LHSH;
2098     GetExpandedInteger(N->getOperand(0), LHSL, LHSH);
2099     EVT VT = LHSL.getValueType();
2100
2101     // If the shift amount operand is coming from a vector legalization it may
2102     // have an illegal type.  Fix that first by casting the operand, otherwise
2103     // the new SHL_PARTS operation would need further legalization.
2104     SDValue ShiftOp = N->getOperand(1);
2105     EVT ShiftTy = TLI.getShiftAmountTy(VT);
2106     assert(ShiftTy.getScalarType().getSizeInBits() >=
2107            Log2_32_Ceil(VT.getScalarType().getSizeInBits()) &&
2108            "ShiftAmountTy is too small to cover the range of this type!");
2109     if (ShiftOp.getValueType() != ShiftTy)
2110       ShiftOp = DAG.getZExtOrTrunc(ShiftOp, dl, ShiftTy);
2111
2112     SDValue Ops[] = { LHSL, LHSH, ShiftOp };
2113     Lo = DAG.getNode(PartsOpc, dl, DAG.getVTList(VT, VT), Ops);
2114     Hi = Lo.getValue(1);
2115     return;
2116   }
2117
2118   // Otherwise, emit a libcall.
2119   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2120   bool isSigned;
2121   if (N->getOpcode() == ISD::SHL) {
2122     isSigned = false; /*sign irrelevant*/
2123     if (VT == MVT::i16)
2124       LC = RTLIB::SHL_I16;
2125     else if (VT == MVT::i32)
2126       LC = RTLIB::SHL_I32;
2127     else if (VT == MVT::i64)
2128       LC = RTLIB::SHL_I64;
2129     else if (VT == MVT::i128)
2130       LC = RTLIB::SHL_I128;
2131   } else if (N->getOpcode() == ISD::SRL) {
2132     isSigned = false;
2133     if (VT == MVT::i16)
2134       LC = RTLIB::SRL_I16;
2135     else if (VT == MVT::i32)
2136       LC = RTLIB::SRL_I32;
2137     else if (VT == MVT::i64)
2138       LC = RTLIB::SRL_I64;
2139     else if (VT == MVT::i128)
2140       LC = RTLIB::SRL_I128;
2141   } else {
2142     assert(N->getOpcode() == ISD::SRA && "Unknown shift!");
2143     isSigned = true;
2144     if (VT == MVT::i16)
2145       LC = RTLIB::SRA_I16;
2146     else if (VT == MVT::i32)
2147       LC = RTLIB::SRA_I32;
2148     else if (VT == MVT::i64)
2149       LC = RTLIB::SRA_I64;
2150     else if (VT == MVT::i128)
2151       LC = RTLIB::SRA_I128;
2152   }
2153
2154   if (LC != RTLIB::UNKNOWN_LIBCALL && TLI.getLibcallName(LC)) {
2155     SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
2156     SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, isSigned, dl).first, Lo,
2157                  Hi);
2158     return;
2159   }
2160
2161   if (!ExpandShiftWithUnknownAmountBit(N, Lo, Hi))
2162     llvm_unreachable("Unsupported shift!");
2163 }
2164
2165 void DAGTypeLegalizer::ExpandIntRes_SIGN_EXTEND(SDNode *N,
2166                                                 SDValue &Lo, SDValue &Hi) {
2167   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2168   SDLoc dl(N);
2169   SDValue Op = N->getOperand(0);
2170   if (Op.getValueType().bitsLE(NVT)) {
2171     // The low part is sign extension of the input (degenerates to a copy).
2172     Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, N->getOperand(0));
2173     // The high part is obtained by SRA'ing all but one of the bits of low part.
2174     unsigned LoSize = NVT.getSizeInBits();
2175     Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
2176                      DAG.getConstant(LoSize-1, TLI.getPointerTy()));
2177   } else {
2178     // For example, extension of an i48 to an i64.  The operand type necessarily
2179     // promotes to the result type, so will end up being expanded too.
2180     assert(getTypeAction(Op.getValueType()) ==
2181            TargetLowering::TypePromoteInteger &&
2182            "Only know how to promote this result!");
2183     SDValue Res = GetPromotedInteger(Op);
2184     assert(Res.getValueType() == N->getValueType(0) &&
2185            "Operand over promoted?");
2186     // Split the promoted operand.  This will simplify when it is expanded.
2187     SplitInteger(Res, Lo, Hi);
2188     unsigned ExcessBits =
2189       Op.getValueType().getSizeInBits() - NVT.getSizeInBits();
2190     Hi = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Hi.getValueType(), Hi,
2191                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(),
2192                                                         ExcessBits)));
2193   }
2194 }
2195
2196 void DAGTypeLegalizer::
2197 ExpandIntRes_SIGN_EXTEND_INREG(SDNode *N, SDValue &Lo, SDValue &Hi) {
2198   SDLoc dl(N);
2199   GetExpandedInteger(N->getOperand(0), Lo, Hi);
2200   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
2201
2202   if (EVT.bitsLE(Lo.getValueType())) {
2203     // sext_inreg the low part if needed.
2204     Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Lo.getValueType(), Lo,
2205                      N->getOperand(1));
2206
2207     // The high part gets the sign extension from the lo-part.  This handles
2208     // things like sextinreg V:i64 from i8.
2209     Hi = DAG.getNode(ISD::SRA, dl, Hi.getValueType(), Lo,
2210                      DAG.getConstant(Hi.getValueType().getSizeInBits()-1,
2211                                      TLI.getPointerTy()));
2212   } else {
2213     // For example, extension of an i48 to an i64.  Leave the low part alone,
2214     // sext_inreg the high part.
2215     unsigned ExcessBits =
2216       EVT.getSizeInBits() - Lo.getValueType().getSizeInBits();
2217     Hi = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Hi.getValueType(), Hi,
2218                      DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(),
2219                                                         ExcessBits)));
2220   }
2221 }
2222
2223 void DAGTypeLegalizer::ExpandIntRes_SREM(SDNode *N,
2224                                          SDValue &Lo, SDValue &Hi) {
2225   EVT VT = N->getValueType(0);
2226   SDLoc dl(N);
2227
2228   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2229   if (VT == MVT::i16)
2230     LC = RTLIB::SREM_I16;
2231   else if (VT == MVT::i32)
2232     LC = RTLIB::SREM_I32;
2233   else if (VT == MVT::i64)
2234     LC = RTLIB::SREM_I64;
2235   else if (VT == MVT::i128)
2236     LC = RTLIB::SREM_I128;
2237   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
2238
2239   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
2240   SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, true, dl).first, Lo, Hi);
2241 }
2242
2243 void DAGTypeLegalizer::ExpandIntRes_TRUNCATE(SDNode *N,
2244                                              SDValue &Lo, SDValue &Hi) {
2245   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2246   SDLoc dl(N);
2247   Lo = DAG.getNode(ISD::TRUNCATE, dl, NVT, N->getOperand(0));
2248   Hi = DAG.getNode(ISD::SRL, dl,
2249                    N->getOperand(0).getValueType(), N->getOperand(0),
2250                    DAG.getConstant(NVT.getSizeInBits(), TLI.getPointerTy()));
2251   Hi = DAG.getNode(ISD::TRUNCATE, dl, NVT, Hi);
2252 }
2253
2254 void DAGTypeLegalizer::ExpandIntRes_UADDSUBO(SDNode *N,
2255                                              SDValue &Lo, SDValue &Hi) {
2256   SDValue LHS = N->getOperand(0);
2257   SDValue RHS = N->getOperand(1);
2258   SDLoc dl(N);
2259
2260   // Expand the result by simply replacing it with the equivalent
2261   // non-overflow-checking operation.
2262   SDValue Sum = DAG.getNode(N->getOpcode() == ISD::UADDO ?
2263                             ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
2264                             LHS, RHS);
2265   SplitInteger(Sum, Lo, Hi);
2266
2267   // Calculate the overflow: addition overflows iff a + b < a, and subtraction
2268   // overflows iff a - b > a.
2269   SDValue Ofl = DAG.getSetCC(dl, N->getValueType(1), Sum, LHS,
2270                              N->getOpcode () == ISD::UADDO ?
2271                              ISD::SETULT : ISD::SETUGT);
2272
2273   // Use the calculated overflow everywhere.
2274   ReplaceValueWith(SDValue(N, 1), Ofl);
2275 }
2276
2277 void DAGTypeLegalizer::ExpandIntRes_XMULO(SDNode *N,
2278                                           SDValue &Lo, SDValue &Hi) {
2279   EVT VT = N->getValueType(0);
2280   SDLoc dl(N);
2281
2282   // A divide for UMULO should be faster than a function call.
2283   if (N->getOpcode() == ISD::UMULO) {
2284     SDValue LHS = N->getOperand(0), RHS = N->getOperand(1);
2285
2286     SDValue MUL = DAG.getNode(ISD::MUL, dl, LHS.getValueType(), LHS, RHS);
2287     SplitInteger(MUL, Lo, Hi);
2288
2289     // A divide for UMULO will be faster than a function call. Select to
2290     // make sure we aren't using 0.
2291     SDValue isZero = DAG.getSetCC(dl, getSetCCResultType(VT),
2292                                   RHS, DAG.getConstant(0, VT), ISD::SETEQ);
2293     SDValue NotZero = DAG.getSelect(dl, VT, isZero,
2294                                     DAG.getConstant(1, VT), RHS);
2295     SDValue DIV = DAG.getNode(ISD::UDIV, dl, VT, MUL, NotZero);
2296     SDValue Overflow = DAG.getSetCC(dl, N->getValueType(1), DIV, LHS,
2297                                     ISD::SETNE);
2298     Overflow = DAG.getSelect(dl, N->getValueType(1), isZero,
2299                              DAG.getConstant(0, N->getValueType(1)),
2300                              Overflow);
2301     ReplaceValueWith(SDValue(N, 1), Overflow);
2302     return;
2303   }
2304
2305   Type *RetTy = VT.getTypeForEVT(*DAG.getContext());
2306   EVT PtrVT = TLI.getPointerTy();
2307   Type *PtrTy = PtrVT.getTypeForEVT(*DAG.getContext());
2308
2309   // Replace this with a libcall that will check overflow.
2310   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2311   if (VT == MVT::i32)
2312     LC = RTLIB::MULO_I32;
2313   else if (VT == MVT::i64)
2314     LC = RTLIB::MULO_I64;
2315   else if (VT == MVT::i128)
2316     LC = RTLIB::MULO_I128;
2317   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XMULO!");
2318
2319   SDValue Temp = DAG.CreateStackTemporary(PtrVT);
2320   // Temporary for the overflow value, default it to zero.
2321   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl,
2322                                DAG.getConstant(0, PtrVT), Temp,
2323                                MachinePointerInfo(), false, false, 0);
2324
2325   TargetLowering::ArgListTy Args;
2326   TargetLowering::ArgListEntry Entry;
2327   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
2328     EVT ArgVT = N->getOperand(i).getValueType();
2329     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
2330     Entry.Node = N->getOperand(i);
2331     Entry.Ty = ArgTy;
2332     Entry.isSExt = true;
2333     Entry.isZExt = false;
2334     Args.push_back(Entry);
2335   }
2336
2337   // Also pass the address of the overflow check.
2338   Entry.Node = Temp;
2339   Entry.Ty = PtrTy->getPointerTo();
2340   Entry.isSExt = true;
2341   Entry.isZExt = false;
2342   Args.push_back(Entry);
2343
2344   SDValue Func = DAG.getExternalSymbol(TLI.getLibcallName(LC), PtrVT);
2345
2346   TargetLowering::CallLoweringInfo CLI(DAG);
2347   CLI.setDebugLoc(dl).setChain(Chain)
2348     .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Func, std::move(Args), 0)
2349     .setSExtResult();
2350
2351   std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2352
2353   SplitInteger(CallInfo.first, Lo, Hi);
2354   SDValue Temp2 = DAG.getLoad(PtrVT, dl, CallInfo.second, Temp,
2355                               MachinePointerInfo(), false, false, false, 0);
2356   SDValue Ofl = DAG.getSetCC(dl, N->getValueType(1), Temp2,
2357                              DAG.getConstant(0, PtrVT),
2358                              ISD::SETNE);
2359   // Use the overflow from the libcall everywhere.
2360   ReplaceValueWith(SDValue(N, 1), Ofl);
2361 }
2362
2363 void DAGTypeLegalizer::ExpandIntRes_UDIV(SDNode *N,
2364                                          SDValue &Lo, SDValue &Hi) {
2365   EVT VT = N->getValueType(0);
2366   SDLoc dl(N);
2367
2368   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2369   if (VT == MVT::i16)
2370     LC = RTLIB::UDIV_I16;
2371   else if (VT == MVT::i32)
2372     LC = RTLIB::UDIV_I32;
2373   else if (VT == MVT::i64)
2374     LC = RTLIB::UDIV_I64;
2375   else if (VT == MVT::i128)
2376     LC = RTLIB::UDIV_I128;
2377   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported UDIV!");
2378
2379   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
2380   SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, false, dl).first, Lo, Hi);
2381 }
2382
2383 void DAGTypeLegalizer::ExpandIntRes_UREM(SDNode *N,
2384                                          SDValue &Lo, SDValue &Hi) {
2385   EVT VT = N->getValueType(0);
2386   SDLoc dl(N);
2387
2388   RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2389   if (VT == MVT::i16)
2390     LC = RTLIB::UREM_I16;
2391   else if (VT == MVT::i32)
2392     LC = RTLIB::UREM_I32;
2393   else if (VT == MVT::i64)
2394     LC = RTLIB::UREM_I64;
2395   else if (VT == MVT::i128)
2396     LC = RTLIB::UREM_I128;
2397   assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported UREM!");
2398
2399   SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
2400   SplitInteger(TLI.makeLibCall(DAG, LC, VT, Ops, 2, false, dl).first, Lo, Hi);
2401 }
2402
2403 void DAGTypeLegalizer::ExpandIntRes_ZERO_EXTEND(SDNode *N,
2404                                                 SDValue &Lo, SDValue &Hi) {
2405   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0));
2406   SDLoc dl(N);
2407   SDValue Op = N->getOperand(0);
2408   if (Op.getValueType().bitsLE(NVT)) {
2409     // The low part is zero extension of the input (degenerates to a copy).
2410     Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N->getOperand(0));
2411     Hi = DAG.getConstant(0, NVT);   // The high part is just a zero.
2412   } else {
2413     // For example, extension of an i48 to an i64.  The operand type necessarily
2414     // promotes to the result type, so will end up being expanded too.
2415     assert(getTypeAction(Op.getValueType()) ==
2416            TargetLowering::TypePromoteInteger &&
2417            "Only know how to promote this result!");
2418     SDValue Res = GetPromotedInteger(Op);
2419     assert(Res.getValueType() == N->getValueType(0) &&
2420            "Operand over promoted?");
2421     // Split the promoted operand.  This will simplify when it is expanded.
2422     SplitInteger(Res, Lo, Hi);
2423     unsigned ExcessBits =
2424       Op.getValueType().getSizeInBits() - NVT.getSizeInBits();
2425     Hi = DAG.getZeroExtendInReg(Hi, dl,
2426                                 EVT::getIntegerVT(*DAG.getContext(),
2427                                                   ExcessBits));
2428   }
2429 }
2430
2431 void DAGTypeLegalizer::ExpandIntRes_ATOMIC_LOAD(SDNode *N,
2432                                                 SDValue &Lo, SDValue &Hi) {
2433   SDLoc dl(N);
2434   EVT VT = cast<AtomicSDNode>(N)->getMemoryVT();
2435   SDVTList VTs = DAG.getVTList(VT, MVT::i1, MVT::Other);
2436   SDValue Zero = DAG.getConstant(0, VT);
2437   SDValue Swap = DAG.getAtomicCmpSwap(
2438       ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl,
2439       cast<AtomicSDNode>(N)->getMemoryVT(), VTs, N->getOperand(0),
2440       N->getOperand(1), Zero, Zero, cast<AtomicSDNode>(N)->getMemOperand(),
2441       cast<AtomicSDNode>(N)->getOrdering(),
2442       cast<AtomicSDNode>(N)->getOrdering(),
2443       cast<AtomicSDNode>(N)->getSynchScope());
2444
2445   ReplaceValueWith(SDValue(N, 0), Swap.getValue(0));
2446   ReplaceValueWith(SDValue(N, 1), Swap.getValue(2));
2447 }
2448
2449 //===----------------------------------------------------------------------===//
2450 //  Integer Operand Expansion
2451 //===----------------------------------------------------------------------===//
2452
2453 /// ExpandIntegerOperand - This method is called when the specified operand of
2454 /// the specified node is found to need expansion.  At this point, all of the
2455 /// result types of the node are known to be legal, but other operands of the
2456 /// node may need promotion or expansion as well as the specified one.
2457 bool DAGTypeLegalizer::ExpandIntegerOperand(SDNode *N, unsigned OpNo) {
2458   DEBUG(dbgs() << "Expand integer operand: "; N->dump(&DAG); dbgs() << "\n");
2459   SDValue Res = SDValue();
2460
2461   if (CustomLowerNode(N, N->getOperand(OpNo).getValueType(), false))
2462     return false;
2463
2464   switch (N->getOpcode()) {
2465   default:
2466   #ifndef NDEBUG
2467     dbgs() << "ExpandIntegerOperand Op #" << OpNo << ": ";
2468     N->dump(&DAG); dbgs() << "\n";
2469   #endif
2470     llvm_unreachable("Do not know how to expand this operator's operand!");
2471
2472   case ISD::BITCAST:           Res = ExpandOp_BITCAST(N); break;
2473   case ISD::BR_CC:             Res = ExpandIntOp_BR_CC(N); break;
2474   case ISD::BUILD_VECTOR:      Res = ExpandOp_BUILD_VECTOR(N); break;
2475   case ISD::EXTRACT_ELEMENT:   Res = ExpandOp_EXTRACT_ELEMENT(N); break;
2476   case ISD::INSERT_VECTOR_ELT: Res = ExpandOp_INSERT_VECTOR_ELT(N); break;
2477   case ISD::SCALAR_TO_VECTOR:  Res = ExpandOp_SCALAR_TO_VECTOR(N); break;
2478   case ISD::SELECT_CC:         Res = ExpandIntOp_SELECT_CC(N); break;
2479   case ISD::SETCC:             Res = ExpandIntOp_SETCC(N); break;
2480   case ISD::SINT_TO_FP:        Res = ExpandIntOp_SINT_TO_FP(N); break;
2481   case ISD::STORE:   Res = ExpandIntOp_STORE(cast<StoreSDNode>(N), OpNo); break;
2482   case ISD::TRUNCATE:          Res = ExpandIntOp_TRUNCATE(N); break;
2483   case ISD::UINT_TO_FP:        Res = ExpandIntOp_UINT_TO_FP(N); break;
2484
2485   case ISD::SHL:
2486   case ISD::SRA:
2487   case ISD::SRL:
2488   case ISD::ROTL:
2489   case ISD::ROTR:              Res = ExpandIntOp_Shift(N); break;
2490   case ISD::RETURNADDR:
2491   case ISD::FRAMEADDR:         Res = ExpandIntOp_RETURNADDR(N); break;
2492
2493   case ISD::ATOMIC_STORE:      Res = ExpandIntOp_ATOMIC_STORE(N); break;
2494   }
2495
2496   // If the result is null, the sub-method took care of registering results etc.
2497   if (!Res.getNode()) return false;
2498
2499   // If the result is N, the sub-method updated N in place.  Tell the legalizer
2500   // core about this.
2501   if (Res.getNode() == N)
2502     return true;
2503
2504   assert(Res.getValueType() == N->getValueType(0) && N->getNumValues() == 1 &&
2505          "Invalid operand expansion");
2506
2507   ReplaceValueWith(SDValue(N, 0), Res);
2508   return false;
2509 }
2510
2511 /// IntegerExpandSetCCOperands - Expand the operands of a comparison.  This code
2512 /// is shared among BR_CC, SELECT_CC, and SETCC handlers.
2513 void DAGTypeLegalizer::IntegerExpandSetCCOperands(SDValue &NewLHS,
2514                                                   SDValue &NewRHS,
2515                                                   ISD::CondCode &CCCode,
2516                                                   SDLoc dl) {
2517   SDValue LHSLo, LHSHi, RHSLo, RHSHi;
2518   GetExpandedInteger(NewLHS, LHSLo, LHSHi);
2519   GetExpandedInteger(NewRHS, RHSLo, RHSHi);
2520
2521   if (CCCode == ISD::SETEQ || CCCode == ISD::SETNE) {
2522     if (RHSLo == RHSHi) {
2523       if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo)) {
2524         if (RHSCST->isAllOnesValue()) {
2525           // Equality comparison to -1.
2526           NewLHS = DAG.getNode(ISD::AND, dl,
2527                                LHSLo.getValueType(), LHSLo, LHSHi);
2528           NewRHS = RHSLo;
2529           return;
2530         }
2531       }
2532     }
2533
2534     NewLHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
2535     NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
2536     NewLHS = DAG.getNode(ISD::OR, dl, NewLHS.getValueType(), NewLHS, NewRHS);
2537     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2538     return;
2539   }
2540
2541   // If this is a comparison of the sign bit, just look at the top part.
2542   // X > -1,  x < 0
2543   if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(NewRHS))
2544     if ((CCCode == ISD::SETLT && CST->isNullValue()) ||     // X < 0
2545         (CCCode == ISD::SETGT && CST->isAllOnesValue())) {  // X > -1
2546       NewLHS = LHSHi;
2547       NewRHS = RHSHi;
2548       return;
2549     }
2550
2551   // FIXME: This generated code sucks.
2552   ISD::CondCode LowCC;
2553   switch (CCCode) {
2554   default: llvm_unreachable("Unknown integer setcc!");
2555   case ISD::SETLT:
2556   case ISD::SETULT: LowCC = ISD::SETULT; break;
2557   case ISD::SETGT:
2558   case ISD::SETUGT: LowCC = ISD::SETUGT; break;
2559   case ISD::SETLE:
2560   case ISD::SETULE: LowCC = ISD::SETULE; break;
2561   case ISD::SETGE:
2562   case ISD::SETUGE: LowCC = ISD::SETUGE; break;
2563   }
2564
2565   // Tmp1 = lo(op1) < lo(op2)   // Always unsigned comparison
2566   // Tmp2 = hi(op1) < hi(op2)   // Signedness depends on operands
2567   // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
2568
2569   // NOTE: on targets without efficient SELECT of bools, we can always use
2570   // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
2571   TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, AfterLegalizeTypes, true,
2572                                                  nullptr);
2573   SDValue Tmp1, Tmp2;
2574   if (TLI.isTypeLegal(LHSLo.getValueType()) &&
2575       TLI.isTypeLegal(RHSLo.getValueType()))
2576     Tmp1 = TLI.SimplifySetCC(getSetCCResultType(LHSLo.getValueType()),
2577                              LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
2578   if (!Tmp1.getNode())
2579     Tmp1 = DAG.getSetCC(dl, getSetCCResultType(LHSLo.getValueType()),
2580                         LHSLo, RHSLo, LowCC);
2581   if (TLI.isTypeLegal(LHSHi.getValueType()) &&
2582       TLI.isTypeLegal(RHSHi.getValueType()))
2583     Tmp2 = TLI.SimplifySetCC(getSetCCResultType(LHSHi.getValueType()),
2584                              LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
2585   if (!Tmp2.getNode())
2586     Tmp2 = DAG.getNode(ISD::SETCC, dl,
2587                        getSetCCResultType(LHSHi.getValueType()),
2588                        LHSHi, RHSHi, DAG.getCondCode(CCCode));
2589
2590   ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
2591   ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
2592   if ((Tmp1C && Tmp1C->isNullValue()) ||
2593       (Tmp2C && Tmp2C->isNullValue() &&
2594        (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
2595         CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
2596       (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
2597        (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
2598         CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
2599     // low part is known false, returns high part.
2600     // For LE / GE, if high part is known false, ignore the low part.
2601     // For LT / GT, if high part is known true, ignore the low part.
2602     NewLHS = Tmp2;
2603     NewRHS = SDValue();
2604     return;
2605   }
2606
2607   NewLHS = TLI.SimplifySetCC(getSetCCResultType(LHSHi.getValueType()),
2608                              LHSHi, RHSHi, ISD::SETEQ, false,
2609                              DagCombineInfo, dl);
2610   if (!NewLHS.getNode())
2611     NewLHS = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()),
2612                           LHSHi, RHSHi, ISD::SETEQ);
2613   NewLHS = DAG.getSelect(dl, Tmp1.getValueType(),
2614                          NewLHS, Tmp1, Tmp2);
2615   NewRHS = SDValue();
2616 }
2617
2618 SDValue DAGTypeLegalizer::ExpandIntOp_BR_CC(SDNode *N) {
2619   SDValue NewLHS = N->getOperand(2), NewRHS = N->getOperand(3);
2620   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(1))->get();
2621   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, SDLoc(N));
2622
2623   // If ExpandSetCCOperands returned a scalar, we need to compare the result
2624   // against zero to select between true and false values.
2625   if (!NewRHS.getNode()) {
2626     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2627     CCCode = ISD::SETNE;
2628   }
2629
2630   // Update N to have the operands specified.
2631   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0),
2632                                 DAG.getCondCode(CCCode), NewLHS, NewRHS,
2633                                 N->getOperand(4)), 0);
2634 }
2635
2636 SDValue DAGTypeLegalizer::ExpandIntOp_SELECT_CC(SDNode *N) {
2637   SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1);
2638   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(4))->get();
2639   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, SDLoc(N));
2640
2641   // If ExpandSetCCOperands returned a scalar, we need to compare the result
2642   // against zero to select between true and false values.
2643   if (!NewRHS.getNode()) {
2644     NewRHS = DAG.getConstant(0, NewLHS.getValueType());
2645     CCCode = ISD::SETNE;
2646   }
2647
2648   // Update N to have the operands specified.
2649   return SDValue(DAG.UpdateNodeOperands(N, NewLHS, NewRHS,
2650                                 N->getOperand(2), N->getOperand(3),
2651                                 DAG.getCondCode(CCCode)), 0);
2652 }
2653
2654 SDValue DAGTypeLegalizer::ExpandIntOp_SETCC(SDNode *N) {
2655   SDValue NewLHS = N->getOperand(0), NewRHS = N->getOperand(1);
2656   ISD::CondCode CCCode = cast<CondCodeSDNode>(N->getOperand(2))->get();
2657   IntegerExpandSetCCOperands(NewLHS, NewRHS, CCCode, SDLoc(N));
2658
2659   // If ExpandSetCCOperands returned a scalar, use it.
2660   if (!NewRHS.getNode()) {
2661     assert(NewLHS.getValueType() == N->getValueType(0) &&
2662            "Unexpected setcc expansion!");
2663     return NewLHS;
2664   }
2665
2666   // Otherwise, update N to have the operands specified.
2667   return SDValue(DAG.UpdateNodeOperands(N, NewLHS, NewRHS,
2668                                 DAG.getCondCode(CCCode)), 0);
2669 }
2670
2671 SDValue DAGTypeLegalizer::ExpandIntOp_Shift(SDNode *N) {
2672   // The value being shifted is legal, but the shift amount is too big.
2673   // It follows that either the result of the shift is undefined, or the
2674   // upper half of the shift amount is zero.  Just use the lower half.
2675   SDValue Lo, Hi;
2676   GetExpandedInteger(N->getOperand(1), Lo, Hi);
2677   return SDValue(DAG.UpdateNodeOperands(N, N->getOperand(0), Lo), 0);
2678 }
2679
2680 SDValue DAGTypeLegalizer::ExpandIntOp_RETURNADDR(SDNode *N) {
2681   // The argument of RETURNADDR / FRAMEADDR builtin is 32 bit contant.  This
2682   // surely makes pretty nice problems on 8/16 bit targets. Just truncate this
2683   // constant to valid type.
2684   SDValue Lo, Hi;
2685   GetExpandedInteger(N->getOperand(0), Lo, Hi);
2686   return SDValue(DAG.UpdateNodeOperands(N, Lo), 0);
2687 }
2688
2689 SDValue DAGTypeLegalizer::ExpandIntOp_SINT_TO_FP(SDNode *N) {
2690   SDValue Op = N->getOperand(0);
2691   EVT DstVT = N->getValueType(0);
2692   RTLIB::Libcall LC = RTLIB::getSINTTOFP(Op.getValueType(), DstVT);
2693   assert(LC != RTLIB::UNKNOWN_LIBCALL &&
2694          "Don't know how to expand this SINT_TO_FP!");
2695   return TLI.makeLibCall(DAG, LC, DstVT, &Op, 1, true, SDLoc(N)).first;
2696 }
2697
2698 SDValue DAGTypeLegalizer::ExpandIntOp_STORE(StoreSDNode *N, unsigned OpNo) {
2699   if (ISD::isNormalStore(N))
2700     return ExpandOp_NormalStore(N, OpNo);
2701
2702   assert(ISD::isUNINDEXEDStore(N) && "Indexed store during type legalization!");
2703   assert(OpNo == 1 && "Can only expand the stored value so far");
2704
2705   EVT VT = N->getOperand(1).getValueType();
2706   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
2707   SDValue Ch  = N->getChain();
2708   SDValue Ptr = N->getBasePtr();
2709   unsigned Alignment = N->getAlignment();
2710   bool isVolatile = N->isVolatile();
2711   bool isNonTemporal = N->isNonTemporal();
2712   const MDNode *TBAAInfo = N->getTBAAInfo();
2713   SDLoc dl(N);
2714   SDValue Lo, Hi;
2715
2716   assert(NVT.isByteSized() && "Expanded type not byte sized!");
2717
2718   if (N->getMemoryVT().bitsLE(NVT)) {
2719     GetExpandedInteger(N->getValue(), Lo, Hi);
2720     return DAG.getTruncStore(Ch, dl, Lo, Ptr, N->getPointerInfo(),
2721                              N->getMemoryVT(), isVolatile, isNonTemporal,
2722                              Alignment, TBAAInfo);
2723   }
2724
2725   if (TLI.isLittleEndian()) {
2726     // Little-endian - low bits are at low addresses.
2727     GetExpandedInteger(N->getValue(), Lo, Hi);
2728
2729     Lo = DAG.getStore(Ch, dl, Lo, Ptr, N->getPointerInfo(),
2730                       isVolatile, isNonTemporal, Alignment, TBAAInfo);
2731
2732     unsigned ExcessBits =
2733       N->getMemoryVT().getSizeInBits() - NVT.getSizeInBits();
2734     EVT NEVT = EVT::getIntegerVT(*DAG.getContext(), ExcessBits);
2735
2736     // Increment the pointer to the other half.
2737     unsigned IncrementSize = NVT.getSizeInBits()/8;
2738     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
2739                       DAG.getConstant(IncrementSize, Ptr.getValueType()));
2740     Hi = DAG.getTruncStore(Ch, dl, Hi, Ptr,
2741                            N->getPointerInfo().getWithOffset(IncrementSize),
2742                            NEVT, isVolatile, isNonTemporal,
2743                            MinAlign(Alignment, IncrementSize), TBAAInfo);
2744     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
2745   }
2746
2747   // Big-endian - high bits are at low addresses.  Favor aligned stores at
2748   // the cost of some bit-fiddling.
2749   GetExpandedInteger(N->getValue(), Lo, Hi);
2750
2751   EVT ExtVT = N->getMemoryVT();
2752   unsigned EBytes = ExtVT.getStoreSize();
2753   unsigned IncrementSize = NVT.getSizeInBits()/8;
2754   unsigned ExcessBits = (EBytes - IncrementSize)*8;
2755   EVT HiVT = EVT::getIntegerVT(*DAG.getContext(),
2756                                ExtVT.getSizeInBits() - ExcessBits);
2757
2758   if (ExcessBits < NVT.getSizeInBits()) {
2759     // Transfer high bits from the top of Lo to the bottom of Hi.
2760     Hi = DAG.getNode(ISD::SHL, dl, NVT, Hi,
2761                      DAG.getConstant(NVT.getSizeInBits() - ExcessBits,
2762                                      TLI.getPointerTy()));
2763     Hi = DAG.getNode(ISD::OR, dl, NVT, Hi,
2764                      DAG.getNode(ISD::SRL, dl, NVT, Lo,
2765                                  DAG.getConstant(ExcessBits,
2766                                                  TLI.getPointerTy())));
2767   }
2768
2769   // Store both the high bits and maybe some of the low bits.
2770   Hi = DAG.getTruncStore(Ch, dl, Hi, Ptr, N->getPointerInfo(),
2771                          HiVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
2772
2773   // Increment the pointer to the other half.
2774   Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
2775                     DAG.getConstant(IncrementSize, Ptr.getValueType()));
2776   // Store the lowest ExcessBits bits in the second half.
2777   Lo = DAG.getTruncStore(Ch, dl, Lo, Ptr,
2778                          N->getPointerInfo().getWithOffset(IncrementSize),
2779                          EVT::getIntegerVT(*DAG.getContext(), ExcessBits),
2780                          isVolatile, isNonTemporal,
2781                          MinAlign(Alignment, IncrementSize), TBAAInfo);
2782   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
2783 }
2784
2785 SDValue DAGTypeLegalizer::ExpandIntOp_TRUNCATE(SDNode *N) {
2786   SDValue InL, InH;
2787   GetExpandedInteger(N->getOperand(0), InL, InH);
2788   // Just truncate the low part of the source.
2789   return DAG.getNode(ISD::TRUNCATE, SDLoc(N), N->getValueType(0), InL);
2790 }
2791
2792 SDValue DAGTypeLegalizer::ExpandIntOp_UINT_TO_FP(SDNode *N) {
2793   SDValue Op = N->getOperand(0);
2794   EVT SrcVT = Op.getValueType();
2795   EVT DstVT = N->getValueType(0);
2796   SDLoc dl(N);
2797
2798   // The following optimization is valid only if every value in SrcVT (when
2799   // treated as signed) is representable in DstVT.  Check that the mantissa
2800   // size of DstVT is >= than the number of bits in SrcVT -1.
2801   const fltSemantics &sem = DAG.EVTToAPFloatSemantics(DstVT);
2802   if (APFloat::semanticsPrecision(sem) >= SrcVT.getSizeInBits()-1 &&
2803       TLI.getOperationAction(ISD::SINT_TO_FP, SrcVT) == TargetLowering::Custom){
2804     // Do a signed conversion then adjust the result.
2805     SDValue SignedConv = DAG.getNode(ISD::SINT_TO_FP, dl, DstVT, Op);
2806     SignedConv = TLI.LowerOperation(SignedConv, DAG);
2807
2808     // The result of the signed conversion needs adjusting if the 'sign bit' of
2809     // the incoming integer was set.  To handle this, we dynamically test to see
2810     // if it is set, and, if so, add a fudge factor.
2811
2812     const uint64_t F32TwoE32  = 0x4F800000ULL;
2813     const uint64_t F32TwoE64  = 0x5F800000ULL;
2814     const uint64_t F32TwoE128 = 0x7F800000ULL;
2815
2816     APInt FF(32, 0);
2817     if (SrcVT == MVT::i32)
2818       FF = APInt(32, F32TwoE32);
2819     else if (SrcVT == MVT::i64)
2820       FF = APInt(32, F32TwoE64);
2821     else if (SrcVT == MVT::i128)
2822       FF = APInt(32, F32TwoE128);
2823     else
2824       llvm_unreachable("Unsupported UINT_TO_FP!");
2825
2826     // Check whether the sign bit is set.
2827     SDValue Lo, Hi;
2828     GetExpandedInteger(Op, Lo, Hi);
2829     SDValue SignSet = DAG.getSetCC(dl,
2830                                    getSetCCResultType(Hi.getValueType()),
2831                                    Hi, DAG.getConstant(0, Hi.getValueType()),
2832                                    ISD::SETLT);
2833
2834     // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
2835     SDValue FudgePtr = DAG.getConstantPool(
2836                                ConstantInt::get(*DAG.getContext(), FF.zext(64)),
2837                                            TLI.getPointerTy());
2838
2839     // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
2840     SDValue Zero = DAG.getIntPtrConstant(0);
2841     SDValue Four = DAG.getIntPtrConstant(4);
2842     if (TLI.isBigEndian()) std::swap(Zero, Four);
2843     SDValue Offset = DAG.getSelect(dl, Zero.getValueType(), SignSet,
2844                                    Zero, Four);
2845     unsigned Alignment = cast<ConstantPoolSDNode>(FudgePtr)->getAlignment();
2846     FudgePtr = DAG.getNode(ISD::ADD, dl, FudgePtr.getValueType(),
2847                            FudgePtr, Offset);
2848     Alignment = std::min(Alignment, 4u);
2849
2850     // Load the value out, extending it from f32 to the destination float type.
2851     // FIXME: Avoid the extend by constructing the right constant pool?
2852     SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, DstVT, DAG.getEntryNode(),
2853                                    FudgePtr,
2854                                    MachinePointerInfo::getConstantPool(),
2855                                    MVT::f32,
2856                                    false, false, Alignment);
2857     return DAG.getNode(ISD::FADD, dl, DstVT, SignedConv, Fudge);
2858   }
2859
2860   // Otherwise, use a libcall.
2861   RTLIB::Libcall LC = RTLIB::getUINTTOFP(SrcVT, DstVT);
2862   assert(LC != RTLIB::UNKNOWN_LIBCALL &&
2863          "Don't know how to expand this UINT_TO_FP!");
2864   return TLI.makeLibCall(DAG, LC, DstVT, &Op, 1, true, dl).first;
2865 }
2866
2867 SDValue DAGTypeLegalizer::ExpandIntOp_ATOMIC_STORE(SDNode *N) {
2868   SDLoc dl(N);
2869   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2870                                cast<AtomicSDNode>(N)->getMemoryVT(),
2871                                N->getOperand(0),
2872                                N->getOperand(1), N->getOperand(2),
2873                                cast<AtomicSDNode>(N)->getMemOperand(),
2874                                cast<AtomicSDNode>(N)->getOrdering(),
2875                                cast<AtomicSDNode>(N)->getSynchScope());
2876   return Swap.getValue(1);
2877 }
2878
2879
2880 SDValue DAGTypeLegalizer::PromoteIntRes_EXTRACT_SUBVECTOR(SDNode *N) {
2881   SDValue InOp0 = N->getOperand(0);
2882   EVT InVT = InOp0.getValueType();
2883
2884   EVT OutVT = N->getValueType(0);
2885   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
2886   assert(NOutVT.isVector() && "This type must be promoted to a vector type");
2887   unsigned OutNumElems = OutVT.getVectorNumElements();
2888   EVT NOutVTElem = NOutVT.getVectorElementType();
2889
2890   SDLoc dl(N);
2891   SDValue BaseIdx = N->getOperand(1);
2892
2893   SmallVector<SDValue, 8> Ops;
2894   Ops.reserve(OutNumElems);
2895   for (unsigned i = 0; i != OutNumElems; ++i) {
2896
2897     // Extract the element from the original vector.
2898     SDValue Index = DAG.getNode(ISD::ADD, dl, BaseIdx.getValueType(),
2899       BaseIdx, DAG.getConstant(i, BaseIdx.getValueType()));
2900     SDValue Ext = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
2901       InVT.getVectorElementType(), N->getOperand(0), Index);
2902
2903     SDValue Op = DAG.getNode(ISD::ANY_EXTEND, dl, NOutVTElem, Ext);
2904     // Insert the converted element to the new vector.
2905     Ops.push_back(Op);
2906   }
2907
2908   return DAG.getNode(ISD::BUILD_VECTOR, dl, NOutVT, Ops);
2909 }
2910
2911
2912 SDValue DAGTypeLegalizer::PromoteIntRes_VECTOR_SHUFFLE(SDNode *N) {
2913   ShuffleVectorSDNode *SV = cast<ShuffleVectorSDNode>(N);
2914   EVT VT = N->getValueType(0);
2915   SDLoc dl(N);
2916
2917   unsigned NumElts = VT.getVectorNumElements();
2918   SmallVector<int, 8> NewMask;
2919   for (unsigned i = 0; i != NumElts; ++i) {
2920     NewMask.push_back(SV->getMaskElt(i));
2921   }
2922
2923   SDValue V0 = GetPromotedInteger(N->getOperand(0));
2924   SDValue V1 = GetPromotedInteger(N->getOperand(1));
2925   EVT OutVT = V0.getValueType();
2926
2927   return DAG.getVectorShuffle(OutVT, dl, V0, V1, &NewMask[0]);
2928 }
2929
2930
2931 SDValue DAGTypeLegalizer::PromoteIntRes_BUILD_VECTOR(SDNode *N) {
2932   EVT OutVT = N->getValueType(0);
2933   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
2934   assert(NOutVT.isVector() && "This type must be promoted to a vector type");
2935   unsigned NumElems = N->getNumOperands();
2936   EVT NOutVTElem = NOutVT.getVectorElementType();
2937
2938   SDLoc dl(N);
2939
2940   SmallVector<SDValue, 8> Ops;
2941   Ops.reserve(NumElems);
2942   for (unsigned i = 0; i != NumElems; ++i) {
2943     SDValue Op;
2944     // BUILD_VECTOR integer operand types are allowed to be larger than the
2945     // result's element type. This may still be true after the promotion. For
2946     // example, we might be promoting (<v?i1> = BV <i32>, <i32>, ...) to
2947     // (v?i16 = BV <i32>, <i32>, ...), and we can't any_extend <i32> to <i16>.
2948     if (N->getOperand(i).getValueType().bitsLT(NOutVTElem))
2949       Op = DAG.getNode(ISD::ANY_EXTEND, dl, NOutVTElem, N->getOperand(i));
2950     else
2951       Op = N->getOperand(i);
2952     Ops.push_back(Op);
2953   }
2954
2955   return DAG.getNode(ISD::BUILD_VECTOR, dl, NOutVT, Ops);
2956 }
2957
2958 SDValue DAGTypeLegalizer::PromoteIntRes_SCALAR_TO_VECTOR(SDNode *N) {
2959
2960   SDLoc dl(N);
2961
2962   assert(!N->getOperand(0).getValueType().isVector() &&
2963          "Input must be a scalar");
2964
2965   EVT OutVT = N->getValueType(0);
2966   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
2967   assert(NOutVT.isVector() && "This type must be promoted to a vector type");
2968   EVT NOutVTElem = NOutVT.getVectorElementType();
2969
2970   SDValue Op = DAG.getNode(ISD::ANY_EXTEND, dl, NOutVTElem, N->getOperand(0));
2971
2972   return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, NOutVT, Op);
2973 }
2974
2975 SDValue DAGTypeLegalizer::PromoteIntRes_CONCAT_VECTORS(SDNode *N) {
2976   SDLoc dl(N);
2977
2978   EVT OutVT = N->getValueType(0);
2979   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
2980   assert(NOutVT.isVector() && "This type must be promoted to a vector type");
2981
2982   EVT InElemTy = OutVT.getVectorElementType();
2983   EVT OutElemTy = NOutVT.getVectorElementType();
2984
2985   unsigned NumElem = N->getOperand(0).getValueType().getVectorNumElements();
2986   unsigned NumOutElem = NOutVT.getVectorNumElements();
2987   unsigned NumOperands = N->getNumOperands();
2988   assert(NumElem * NumOperands == NumOutElem &&
2989          "Unexpected number of elements");
2990
2991   // Take the elements from the first vector.
2992   SmallVector<SDValue, 8> Ops(NumOutElem);
2993   for (unsigned i = 0; i < NumOperands; ++i) {
2994     SDValue Op = N->getOperand(i);
2995     for (unsigned j = 0; j < NumElem; ++j) {
2996       SDValue Ext = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
2997                                 InElemTy, Op, DAG.getConstant(j,
2998                                               TLI.getVectorIdxTy()));
2999       Ops[i * NumElem + j] = DAG.getNode(ISD::ANY_EXTEND, dl, OutElemTy, Ext);
3000     }
3001   }
3002
3003   return DAG.getNode(ISD::BUILD_VECTOR, dl, NOutVT, Ops);
3004 }
3005
3006 SDValue DAGTypeLegalizer::PromoteIntRes_INSERT_VECTOR_ELT(SDNode *N) {
3007   EVT OutVT = N->getValueType(0);
3008   EVT NOutVT = TLI.getTypeToTransformTo(*DAG.getContext(), OutVT);
3009   assert(NOutVT.isVector() && "This type must be promoted to a vector type");
3010
3011   EVT NOutVTElem = NOutVT.getVectorElementType();
3012
3013   SDLoc dl(N);
3014   SDValue V0 = GetPromotedInteger(N->getOperand(0));
3015
3016   SDValue ConvElem = DAG.getNode(ISD::ANY_EXTEND, dl,
3017     NOutVTElem, N->getOperand(1));
3018   return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NOutVT,
3019     V0, ConvElem, N->getOperand(2));
3020 }
3021
3022 SDValue DAGTypeLegalizer::PromoteIntOp_EXTRACT_VECTOR_ELT(SDNode *N) {
3023   SDLoc dl(N);
3024   SDValue V0 = GetPromotedInteger(N->getOperand(0));
3025   SDValue V1 = DAG.getZExtOrTrunc(N->getOperand(1), dl, TLI.getVectorIdxTy());
3026   SDValue Ext = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3027     V0->getValueType(0).getScalarType(), V0, V1);
3028
3029   // EXTRACT_VECTOR_ELT can return types which are wider than the incoming
3030   // element types. If this is the case then we need to expand the outgoing
3031   // value and not truncate it.
3032   return DAG.getAnyExtOrTrunc(Ext, dl, N->getValueType(0));
3033 }
3034
3035 SDValue DAGTypeLegalizer::PromoteIntOp_CONCAT_VECTORS(SDNode *N) {
3036   SDLoc dl(N);
3037   unsigned NumElems = N->getNumOperands();
3038
3039   EVT RetSclrTy = N->getValueType(0).getVectorElementType();
3040
3041   SmallVector<SDValue, 8> NewOps;
3042   NewOps.reserve(NumElems);
3043
3044   // For each incoming vector
3045   for (unsigned VecIdx = 0; VecIdx != NumElems; ++VecIdx) {
3046     SDValue Incoming = GetPromotedInteger(N->getOperand(VecIdx));
3047     EVT SclrTy = Incoming->getValueType(0).getVectorElementType();
3048     unsigned NumElem = Incoming->getValueType(0).getVectorNumElements();
3049
3050     for (unsigned i=0; i<NumElem; ++i) {
3051       // Extract element from incoming vector
3052       SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SclrTy,
3053       Incoming, DAG.getConstant(i, TLI.getVectorIdxTy()));
3054       SDValue Tr = DAG.getNode(ISD::TRUNCATE, dl, RetSclrTy, Ex);
3055       NewOps.push_back(Tr);
3056     }
3057   }
3058
3059   return DAG.getNode(ISD::BUILD_VECTOR, dl,  N->getValueType(0), NewOps);
3060 }