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