1 //===- SelectionDAG.cpp - Implement the SelectionDAG data structures ------===//
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 implements the SelectionDAG class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/CodeGen/SelectionDAG.h"
15 #include "SDNodeDbgValue.h"
16 #include "llvm/ADT/APFloat.h"
17 #include "llvm/ADT/APInt.h"
18 #include "llvm/ADT/APSInt.h"
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/ADT/BitVector.h"
21 #include "llvm/ADT/FoldingSet.h"
22 #include "llvm/ADT/None.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/Triple.h"
27 #include "llvm/ADT/Twine.h"
28 #include "llvm/Analysis/ValueTracking.h"
29 #include "llvm/CodeGen/ISDOpcodes.h"
30 #include "llvm/CodeGen/MachineBasicBlock.h"
31 #include "llvm/CodeGen/MachineConstantPool.h"
32 #include "llvm/CodeGen/MachineFrameInfo.h"
33 #include "llvm/CodeGen/MachineFunction.h"
34 #include "llvm/CodeGen/MachineMemOperand.h"
35 #include "llvm/CodeGen/RuntimeLibcalls.h"
36 #include "llvm/CodeGen/SelectionDAGAddressAnalysis.h"
37 #include "llvm/CodeGen/SelectionDAGNodes.h"
38 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
39 #include "llvm/CodeGen/TargetLowering.h"
40 #include "llvm/CodeGen/TargetRegisterInfo.h"
41 #include "llvm/CodeGen/TargetSubtargetInfo.h"
42 #include "llvm/CodeGen/ValueTypes.h"
43 #include "llvm/IR/Constant.h"
44 #include "llvm/IR/Constants.h"
45 #include "llvm/IR/DataLayout.h"
46 #include "llvm/IR/DebugInfoMetadata.h"
47 #include "llvm/IR/DebugLoc.h"
48 #include "llvm/IR/DerivedTypes.h"
49 #include "llvm/IR/Function.h"
50 #include "llvm/IR/GlobalValue.h"
51 #include "llvm/IR/Metadata.h"
52 #include "llvm/IR/Type.h"
53 #include "llvm/IR/Value.h"
54 #include "llvm/Support/Casting.h"
55 #include "llvm/Support/CodeGen.h"
56 #include "llvm/Support/Compiler.h"
57 #include "llvm/Support/Debug.h"
58 #include "llvm/Support/ErrorHandling.h"
59 #include "llvm/Support/KnownBits.h"
60 #include "llvm/Support/MachineValueType.h"
61 #include "llvm/Support/ManagedStatic.h"
62 #include "llvm/Support/MathExtras.h"
63 #include "llvm/Support/Mutex.h"
64 #include "llvm/Support/raw_ostream.h"
65 #include "llvm/Target/TargetMachine.h"
66 #include "llvm/Target/TargetOptions.h"
67 #include <algorithm>
68 #include <cassert>
69 #include <cstdint>
70 #include <cstdlib>
71 #include <limits>
72 #include <set>
73 #include <string>
74 #include <utility>
75 #include <vector>
76 
77 using namespace llvm;
78 
79 /// makeVTList - Return an instance of the SDVTList struct initialized with the
80 /// specified members.
81 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
82   SDVTList Res = {VTs, NumVTs};
83   return Res;
84 }
85 
86 // Default null implementations of the callbacks.
87 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
88 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
89 
90 #define DEBUG_TYPE "selectiondag"
91 
92 static cl::opt<bool> EnableMemCpyDAGOpt("enable-memcpy-dag-opt",
93        cl::Hidden, cl::init(true),
94        cl::desc("Gang up loads and stores generated by inlining of memcpy"));
95 
96 static cl::opt<int> MaxLdStGlue("ldstmemcpy-glue-max",
97        cl::desc("Number limit for gluing ld/st of memcpy."),
98        cl::Hidden, cl::init(0));
99 
100 static void NewSDValueDbgMsg(SDValue V, StringRef Msg, SelectionDAG *G) {
101   LLVM_DEBUG(dbgs() << Msg; V.getNode()->dump(G););
102 }
103 
104 //===----------------------------------------------------------------------===//
105 //                              ConstantFPSDNode Class
106 //===----------------------------------------------------------------------===//
107 
108 /// isExactlyValue - We don't rely on operator== working on double values, as
109 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
110 /// As such, this method can be used to do an exact bit-for-bit comparison of
111 /// two floating point values.
112 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
113   return getValueAPF().bitwiseIsEqual(V);
114 }
115 
116 bool ConstantFPSDNode::isValueValidForType(EVT VT,
117                                            const APFloat& Val) {
118   assert(VT.isFloatingPoint() && "Can only convert between FP types");
119 
120   // convert modifies in place, so make a copy.
121   APFloat Val2 = APFloat(Val);
122   bool losesInfo;
123   (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT),
124                       APFloat::rmNearestTiesToEven,
125                       &losesInfo);
126   return !losesInfo;
127 }
128 
129 //===----------------------------------------------------------------------===//
130 //                              ISD Namespace
131 //===----------------------------------------------------------------------===//
132 
133 bool ISD::isConstantSplatVector(const SDNode *N, APInt &SplatVal) {
134   auto *BV = dyn_cast<BuildVectorSDNode>(N);
135   if (!BV)
136     return false;
137 
138   APInt SplatUndef;
139   unsigned SplatBitSize;
140   bool HasUndefs;
141   unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
142   return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs,
143                              EltSize) &&
144          EltSize == SplatBitSize;
145 }
146 
147 // FIXME: AllOnes and AllZeros duplicate a lot of code. Could these be
148 // specializations of the more general isConstantSplatVector()?
149 
150 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
151   // Look through a bit convert.
152   while (N->getOpcode() == ISD::BITCAST)
153     N = N->getOperand(0).getNode();
154 
155   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
156 
157   unsigned i = 0, e = N->getNumOperands();
158 
159   // Skip over all of the undef values.
160   while (i != e && N->getOperand(i).isUndef())
161     ++i;
162 
163   // Do not accept an all-undef vector.
164   if (i == e) return false;
165 
166   // Do not accept build_vectors that aren't all constants or which have non-~0
167   // elements. We have to be a bit careful here, as the type of the constant
168   // may not be the same as the type of the vector elements due to type
169   // legalization (the elements are promoted to a legal type for the target and
170   // a vector of a type may be legal when the base element type is not).
171   // We only want to check enough bits to cover the vector elements, because
172   // we care if the resultant vector is all ones, not whether the individual
173   // constants are.
174   SDValue NotZero = N->getOperand(i);
175   unsigned EltSize = N->getValueType(0).getScalarSizeInBits();
176   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) {
177     if (CN->getAPIntValue().countTrailingOnes() < EltSize)
178       return false;
179   } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) {
180     if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
181       return false;
182   } else
183     return false;
184 
185   // Okay, we have at least one ~0 value, check to see if the rest match or are
186   // undefs. Even with the above element type twiddling, this should be OK, as
187   // the same type legalization should have applied to all the elements.
188   for (++i; i != e; ++i)
189     if (N->getOperand(i) != NotZero && !N->getOperand(i).isUndef())
190       return false;
191   return true;
192 }
193 
194 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
195   // Look through a bit convert.
196   while (N->getOpcode() == ISD::BITCAST)
197     N = N->getOperand(0).getNode();
198 
199   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
200 
201   bool IsAllUndef = true;
202   for (const SDValue &Op : N->op_values()) {
203     if (Op.isUndef())
204       continue;
205     IsAllUndef = false;
206     // Do not accept build_vectors that aren't all constants or which have non-0
207     // elements. We have to be a bit careful here, as the type of the constant
208     // may not be the same as the type of the vector elements due to type
209     // legalization (the elements are promoted to a legal type for the target
210     // and a vector of a type may be legal when the base element type is not).
211     // We only want to check enough bits to cover the vector elements, because
212     // we care if the resultant vector is all zeros, not whether the individual
213     // constants are.
214     unsigned EltSize = N->getValueType(0).getScalarSizeInBits();
215     if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op)) {
216       if (CN->getAPIntValue().countTrailingZeros() < EltSize)
217         return false;
218     } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Op)) {
219       if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize)
220         return false;
221     } else
222       return false;
223   }
224 
225   // Do not accept an all-undef vector.
226   if (IsAllUndef)
227     return false;
228   return true;
229 }
230 
231 bool ISD::isBuildVectorOfConstantSDNodes(const SDNode *N) {
232   if (N->getOpcode() != ISD::BUILD_VECTOR)
233     return false;
234 
235   for (const SDValue &Op : N->op_values()) {
236     if (Op.isUndef())
237       continue;
238     if (!isa<ConstantSDNode>(Op))
239       return false;
240   }
241   return true;
242 }
243 
244 bool ISD::isBuildVectorOfConstantFPSDNodes(const SDNode *N) {
245   if (N->getOpcode() != ISD::BUILD_VECTOR)
246     return false;
247 
248   for (const SDValue &Op : N->op_values()) {
249     if (Op.isUndef())
250       continue;
251     if (!isa<ConstantFPSDNode>(Op))
252       return false;
253   }
254   return true;
255 }
256 
257 bool ISD::allOperandsUndef(const SDNode *N) {
258   // Return false if the node has no operands.
259   // This is "logically inconsistent" with the definition of "all" but
260   // is probably the desired behavior.
261   if (N->getNumOperands() == 0)
262     return false;
263 
264   for (const SDValue &Op : N->op_values())
265     if (!Op.isUndef())
266       return false;
267 
268   return true;
269 }
270 
271 bool ISD::matchUnaryPredicate(SDValue Op,
272                               std::function<bool(ConstantSDNode *)> Match) {
273   if (auto *Cst = dyn_cast<ConstantSDNode>(Op))
274     return Match(Cst);
275 
276   if (ISD::BUILD_VECTOR != Op.getOpcode())
277     return false;
278 
279   EVT SVT = Op.getValueType().getScalarType();
280   for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
281     auto *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(i));
282     if (!Cst || Cst->getValueType(0) != SVT || !Match(Cst))
283       return false;
284   }
285   return true;
286 }
287 
288 bool ISD::matchBinaryPredicate(
289     SDValue LHS, SDValue RHS,
290     std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match) {
291   if (LHS.getValueType() != RHS.getValueType())
292     return false;
293 
294   if (auto *LHSCst = dyn_cast<ConstantSDNode>(LHS))
295     if (auto *RHSCst = dyn_cast<ConstantSDNode>(RHS))
296       return Match(LHSCst, RHSCst);
297 
298   if (ISD::BUILD_VECTOR != LHS.getOpcode() ||
299       ISD::BUILD_VECTOR != RHS.getOpcode())
300     return false;
301 
302   EVT SVT = LHS.getValueType().getScalarType();
303   for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
304     auto *LHSCst = dyn_cast<ConstantSDNode>(LHS.getOperand(i));
305     auto *RHSCst = dyn_cast<ConstantSDNode>(RHS.getOperand(i));
306     if (!LHSCst || !RHSCst)
307       return false;
308     if (LHSCst->getValueType(0) != SVT ||
309         LHSCst->getValueType(0) != RHSCst->getValueType(0))
310       return false;
311     if (!Match(LHSCst, RHSCst))
312       return false;
313   }
314   return true;
315 }
316 
317 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) {
318   switch (ExtType) {
319   case ISD::EXTLOAD:
320     return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND;
321   case ISD::SEXTLOAD:
322     return ISD::SIGN_EXTEND;
323   case ISD::ZEXTLOAD:
324     return ISD::ZERO_EXTEND;
325   default:
326     break;
327   }
328 
329   llvm_unreachable("Invalid LoadExtType");
330 }
331 
332 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
333   // To perform this operation, we just need to swap the L and G bits of the
334   // operation.
335   unsigned OldL = (Operation >> 2) & 1;
336   unsigned OldG = (Operation >> 1) & 1;
337   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
338                        (OldL << 1) |       // New G bit
339                        (OldG << 2));       // New L bit.
340 }
341 
342 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
343   unsigned Operation = Op;
344   if (isInteger)
345     Operation ^= 7;   // Flip L, G, E bits, but not U.
346   else
347     Operation ^= 15;  // Flip all of the condition bits.
348 
349   if (Operation > ISD::SETTRUE2)
350     Operation &= ~8;  // Don't let N and U bits get set.
351 
352   return ISD::CondCode(Operation);
353 }
354 
355 /// For an integer comparison, return 1 if the comparison is a signed operation
356 /// and 2 if the result is an unsigned comparison. Return zero if the operation
357 /// does not depend on the sign of the input (setne and seteq).
358 static int isSignedOp(ISD::CondCode Opcode) {
359   switch (Opcode) {
360   default: llvm_unreachable("Illegal integer setcc operation!");
361   case ISD::SETEQ:
362   case ISD::SETNE: return 0;
363   case ISD::SETLT:
364   case ISD::SETLE:
365   case ISD::SETGT:
366   case ISD::SETGE: return 1;
367   case ISD::SETULT:
368   case ISD::SETULE:
369   case ISD::SETUGT:
370   case ISD::SETUGE: return 2;
371   }
372 }
373 
374 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
375                                        bool IsInteger) {
376   if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
377     // Cannot fold a signed integer setcc with an unsigned integer setcc.
378     return ISD::SETCC_INVALID;
379 
380   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
381 
382   // If the N and U bits get set, then the resultant comparison DOES suddenly
383   // care about orderedness, and it is true when ordered.
384   if (Op > ISD::SETTRUE2)
385     Op &= ~16;     // Clear the U bit if the N bit is set.
386 
387   // Canonicalize illegal integer setcc's.
388   if (IsInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
389     Op = ISD::SETNE;
390 
391   return ISD::CondCode(Op);
392 }
393 
394 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
395                                         bool IsInteger) {
396   if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
397     // Cannot fold a signed setcc with an unsigned setcc.
398     return ISD::SETCC_INVALID;
399 
400   // Combine all of the condition bits.
401   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
402 
403   // Canonicalize illegal integer setcc's.
404   if (IsInteger) {
405     switch (Result) {
406     default: break;
407     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
408     case ISD::SETOEQ:                                 // SETEQ  & SETU[LG]E
409     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
410     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
411     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
412     }
413   }
414 
415   return Result;
416 }
417 
418 //===----------------------------------------------------------------------===//
419 //                           SDNode Profile Support
420 //===----------------------------------------------------------------------===//
421 
422 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
423 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
424   ID.AddInteger(OpC);
425 }
426 
427 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
428 /// solely with their pointer.
429 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
430   ID.AddPointer(VTList.VTs);
431 }
432 
433 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
434 static void AddNodeIDOperands(FoldingSetNodeID &ID,
435                               ArrayRef<SDValue> Ops) {
436   for (auto& Op : Ops) {
437     ID.AddPointer(Op.getNode());
438     ID.AddInteger(Op.getResNo());
439   }
440 }
441 
442 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
443 static void AddNodeIDOperands(FoldingSetNodeID &ID,
444                               ArrayRef<SDUse> Ops) {
445   for (auto& Op : Ops) {
446     ID.AddPointer(Op.getNode());
447     ID.AddInteger(Op.getResNo());
448   }
449 }
450 
451 static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned short OpC,
452                           SDVTList VTList, ArrayRef<SDValue> OpList) {
453   AddNodeIDOpcode(ID, OpC);
454   AddNodeIDValueTypes(ID, VTList);
455   AddNodeIDOperands(ID, OpList);
456 }
457 
458 /// If this is an SDNode with special info, add this info to the NodeID data.
459 static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
460   switch (N->getOpcode()) {
461   case ISD::TargetExternalSymbol:
462   case ISD::ExternalSymbol:
463   case ISD::MCSymbol:
464     llvm_unreachable("Should only be used on nodes with operands");
465   default: break;  // Normal nodes don't need extra info.
466   case ISD::TargetConstant:
467   case ISD::Constant: {
468     const ConstantSDNode *C = cast<ConstantSDNode>(N);
469     ID.AddPointer(C->getConstantIntValue());
470     ID.AddBoolean(C->isOpaque());
471     break;
472   }
473   case ISD::TargetConstantFP:
474   case ISD::ConstantFP:
475     ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
476     break;
477   case ISD::TargetGlobalAddress:
478   case ISD::GlobalAddress:
479   case ISD::TargetGlobalTLSAddress:
480   case ISD::GlobalTLSAddress: {
481     const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
482     ID.AddPointer(GA->getGlobal());
483     ID.AddInteger(GA->getOffset());
484     ID.AddInteger(GA->getTargetFlags());
485     break;
486   }
487   case ISD::BasicBlock:
488     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
489     break;
490   case ISD::Register:
491     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
492     break;
493   case ISD::RegisterMask:
494     ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask());
495     break;
496   case ISD::SRCVALUE:
497     ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
498     break;
499   case ISD::FrameIndex:
500   case ISD::TargetFrameIndex:
501     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
502     break;
503   case ISD::JumpTable:
504   case ISD::TargetJumpTable:
505     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
506     ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags());
507     break;
508   case ISD::ConstantPool:
509   case ISD::TargetConstantPool: {
510     const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
511     ID.AddInteger(CP->getAlignment());
512     ID.AddInteger(CP->getOffset());
513     if (CP->isMachineConstantPoolEntry())
514       CP->getMachineCPVal()->addSelectionDAGCSEId(ID);
515     else
516       ID.AddPointer(CP->getConstVal());
517     ID.AddInteger(CP->getTargetFlags());
518     break;
519   }
520   case ISD::TargetIndex: {
521     const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N);
522     ID.AddInteger(TI->getIndex());
523     ID.AddInteger(TI->getOffset());
524     ID.AddInteger(TI->getTargetFlags());
525     break;
526   }
527   case ISD::LOAD: {
528     const LoadSDNode *LD = cast<LoadSDNode>(N);
529     ID.AddInteger(LD->getMemoryVT().getRawBits());
530     ID.AddInteger(LD->getRawSubclassData());
531     ID.AddInteger(LD->getPointerInfo().getAddrSpace());
532     break;
533   }
534   case ISD::STORE: {
535     const StoreSDNode *ST = cast<StoreSDNode>(N);
536     ID.AddInteger(ST->getMemoryVT().getRawBits());
537     ID.AddInteger(ST->getRawSubclassData());
538     ID.AddInteger(ST->getPointerInfo().getAddrSpace());
539     break;
540   }
541   case ISD::MLOAD: {
542     const MaskedLoadSDNode *MLD = cast<MaskedLoadSDNode>(N);
543     ID.AddInteger(MLD->getMemoryVT().getRawBits());
544     ID.AddInteger(MLD->getRawSubclassData());
545     ID.AddInteger(MLD->getPointerInfo().getAddrSpace());
546     break;
547   }
548   case ISD::MSTORE: {
549     const MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N);
550     ID.AddInteger(MST->getMemoryVT().getRawBits());
551     ID.AddInteger(MST->getRawSubclassData());
552     ID.AddInteger(MST->getPointerInfo().getAddrSpace());
553     break;
554   }
555   case ISD::MGATHER: {
556     const MaskedGatherSDNode *MG = cast<MaskedGatherSDNode>(N);
557     ID.AddInteger(MG->getMemoryVT().getRawBits());
558     ID.AddInteger(MG->getRawSubclassData());
559     ID.AddInteger(MG->getPointerInfo().getAddrSpace());
560     break;
561   }
562   case ISD::MSCATTER: {
563     const MaskedScatterSDNode *MS = cast<MaskedScatterSDNode>(N);
564     ID.AddInteger(MS->getMemoryVT().getRawBits());
565     ID.AddInteger(MS->getRawSubclassData());
566     ID.AddInteger(MS->getPointerInfo().getAddrSpace());
567     break;
568   }
569   case ISD::ATOMIC_CMP_SWAP:
570   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
571   case ISD::ATOMIC_SWAP:
572   case ISD::ATOMIC_LOAD_ADD:
573   case ISD::ATOMIC_LOAD_SUB:
574   case ISD::ATOMIC_LOAD_AND:
575   case ISD::ATOMIC_LOAD_CLR:
576   case ISD::ATOMIC_LOAD_OR:
577   case ISD::ATOMIC_LOAD_XOR:
578   case ISD::ATOMIC_LOAD_NAND:
579   case ISD::ATOMIC_LOAD_MIN:
580   case ISD::ATOMIC_LOAD_MAX:
581   case ISD::ATOMIC_LOAD_UMIN:
582   case ISD::ATOMIC_LOAD_UMAX:
583   case ISD::ATOMIC_LOAD:
584   case ISD::ATOMIC_STORE: {
585     const AtomicSDNode *AT = cast<AtomicSDNode>(N);
586     ID.AddInteger(AT->getMemoryVT().getRawBits());
587     ID.AddInteger(AT->getRawSubclassData());
588     ID.AddInteger(AT->getPointerInfo().getAddrSpace());
589     break;
590   }
591   case ISD::PREFETCH: {
592     const MemSDNode *PF = cast<MemSDNode>(N);
593     ID.AddInteger(PF->getPointerInfo().getAddrSpace());
594     break;
595   }
596   case ISD::VECTOR_SHUFFLE: {
597     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
598     for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements();
599          i != e; ++i)
600       ID.AddInteger(SVN->getMaskElt(i));
601     break;
602   }
603   case ISD::TargetBlockAddress:
604   case ISD::BlockAddress: {
605     const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N);
606     ID.AddPointer(BA->getBlockAddress());
607     ID.AddInteger(BA->getOffset());
608     ID.AddInteger(BA->getTargetFlags());
609     break;
610   }
611   } // end switch (N->getOpcode())
612 
613   // Target specific memory nodes could also have address spaces to check.
614   if (N->isTargetMemoryOpcode())
615     ID.AddInteger(cast<MemSDNode>(N)->getPointerInfo().getAddrSpace());
616 }
617 
618 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
619 /// data.
620 static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
621   AddNodeIDOpcode(ID, N->getOpcode());
622   // Add the return value info.
623   AddNodeIDValueTypes(ID, N->getVTList());
624   // Add the operand info.
625   AddNodeIDOperands(ID, N->ops());
626 
627   // Handle SDNode leafs with special info.
628   AddNodeIDCustom(ID, N);
629 }
630 
631 //===----------------------------------------------------------------------===//
632 //                              SelectionDAG Class
633 //===----------------------------------------------------------------------===//
634 
635 /// doNotCSE - Return true if CSE should not be performed for this node.
636 static bool doNotCSE(SDNode *N) {
637   if (N->getValueType(0) == MVT::Glue)
638     return true; // Never CSE anything that produces a flag.
639 
640   switch (N->getOpcode()) {
641   default: break;
642   case ISD::HANDLENODE:
643   case ISD::EH_LABEL:
644     return true;   // Never CSE these nodes.
645   }
646 
647   // Check that remaining values produced are not flags.
648   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
649     if (N->getValueType(i) == MVT::Glue)
650       return true; // Never CSE anything that produces a flag.
651 
652   return false;
653 }
654 
655 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
656 /// SelectionDAG.
657 void SelectionDAG::RemoveDeadNodes() {
658   // Create a dummy node (which is not added to allnodes), that adds a reference
659   // to the root node, preventing it from being deleted.
660   HandleSDNode Dummy(getRoot());
661 
662   SmallVector<SDNode*, 128> DeadNodes;
663 
664   // Add all obviously-dead nodes to the DeadNodes worklist.
665   for (SDNode &Node : allnodes())
666     if (Node.use_empty())
667       DeadNodes.push_back(&Node);
668 
669   RemoveDeadNodes(DeadNodes);
670 
671   // If the root changed (e.g. it was a dead load, update the root).
672   setRoot(Dummy.getValue());
673 }
674 
675 /// RemoveDeadNodes - This method deletes the unreachable nodes in the
676 /// given list, and any nodes that become unreachable as a result.
677 void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) {
678 
679   // Process the worklist, deleting the nodes and adding their uses to the
680   // worklist.
681   while (!DeadNodes.empty()) {
682     SDNode *N = DeadNodes.pop_back_val();
683     // Skip to next node if we've already managed to delete the node. This could
684     // happen if replacing a node causes a node previously added to the node to
685     // be deleted.
686     if (N->getOpcode() == ISD::DELETED_NODE)
687       continue;
688 
689     for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
690       DUL->NodeDeleted(N, nullptr);
691 
692     // Take the node out of the appropriate CSE map.
693     RemoveNodeFromCSEMaps(N);
694 
695     // Next, brutally remove the operand list.  This is safe to do, as there are
696     // no cycles in the graph.
697     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
698       SDUse &Use = *I++;
699       SDNode *Operand = Use.getNode();
700       Use.set(SDValue());
701 
702       // Now that we removed this operand, see if there are no uses of it left.
703       if (Operand->use_empty())
704         DeadNodes.push_back(Operand);
705     }
706 
707     DeallocateNode(N);
708   }
709 }
710 
711 void SelectionDAG::RemoveDeadNode(SDNode *N){
712   SmallVector<SDNode*, 16> DeadNodes(1, N);
713 
714   // Create a dummy node that adds a reference to the root node, preventing
715   // it from being deleted.  (This matters if the root is an operand of the
716   // dead node.)
717   HandleSDNode Dummy(getRoot());
718 
719   RemoveDeadNodes(DeadNodes);
720 }
721 
722 void SelectionDAG::DeleteNode(SDNode *N) {
723   // First take this out of the appropriate CSE map.
724   RemoveNodeFromCSEMaps(N);
725 
726   // Finally, remove uses due to operands of this node, remove from the
727   // AllNodes list, and delete the node.
728   DeleteNodeNotInCSEMaps(N);
729 }
730 
731 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
732   assert(N->getIterator() != AllNodes.begin() &&
733          "Cannot delete the entry node!");
734   assert(N->use_empty() && "Cannot delete a node that is not dead!");
735 
736   // Drop all of the operands and decrement used node's use counts.
737   N->DropOperands();
738 
739   DeallocateNode(N);
740 }
741 
742 void SDDbgInfo::erase(const SDNode *Node) {
743   DbgValMapType::iterator I = DbgValMap.find(Node);
744   if (I == DbgValMap.end())
745     return;
746   for (auto &Val: I->second)
747     Val->setIsInvalidated();
748   DbgValMap.erase(I);
749 }
750 
751 void SelectionDAG::DeallocateNode(SDNode *N) {
752   // If we have operands, deallocate them.
753   removeOperands(N);
754 
755   NodeAllocator.Deallocate(AllNodes.remove(N));
756 
757   // Set the opcode to DELETED_NODE to help catch bugs when node
758   // memory is reallocated.
759   // FIXME: There are places in SDag that have grown a dependency on the opcode
760   // value in the released node.
761   __asan_unpoison_memory_region(&N->NodeType, sizeof(N->NodeType));
762   N->NodeType = ISD::DELETED_NODE;
763 
764   // If any of the SDDbgValue nodes refer to this SDNode, invalidate
765   // them and forget about that node.
766   DbgInfo->erase(N);
767 }
768 
769 #ifndef NDEBUG
770 /// VerifySDNode - Sanity check the given SDNode.  Aborts if it is invalid.
771 static void VerifySDNode(SDNode *N) {
772   switch (N->getOpcode()) {
773   default:
774     break;
775   case ISD::BUILD_PAIR: {
776     EVT VT = N->getValueType(0);
777     assert(N->getNumValues() == 1 && "Too many results!");
778     assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
779            "Wrong return type!");
780     assert(N->getNumOperands() == 2 && "Wrong number of operands!");
781     assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
782            "Mismatched operand types!");
783     assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
784            "Wrong operand type!");
785     assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
786            "Wrong return type size");
787     break;
788   }
789   case ISD::BUILD_VECTOR: {
790     assert(N->getNumValues() == 1 && "Too many results!");
791     assert(N->getValueType(0).isVector() && "Wrong return type!");
792     assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
793            "Wrong number of operands!");
794     EVT EltVT = N->getValueType(0).getVectorElementType();
795     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
796       assert((I->getValueType() == EltVT ||
797              (EltVT.isInteger() && I->getValueType().isInteger() &&
798               EltVT.bitsLE(I->getValueType()))) &&
799             "Wrong operand type!");
800       assert(I->getValueType() == N->getOperand(0).getValueType() &&
801              "Operands must all have the same type");
802     }
803     break;
804   }
805   }
806 }
807 #endif // NDEBUG
808 
809 /// Insert a newly allocated node into the DAG.
810 ///
811 /// Handles insertion into the all nodes list and CSE map, as well as
812 /// verification and other common operations when a new node is allocated.
813 void SelectionDAG::InsertNode(SDNode *N) {
814   AllNodes.push_back(N);
815 #ifndef NDEBUG
816   N->PersistentId = NextPersistentId++;
817   VerifySDNode(N);
818 #endif
819 }
820 
821 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
822 /// correspond to it.  This is useful when we're about to delete or repurpose
823 /// the node.  We don't want future request for structurally identical nodes
824 /// to return N anymore.
825 bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
826   bool Erased = false;
827   switch (N->getOpcode()) {
828   case ISD::HANDLENODE: return false;  // noop.
829   case ISD::CONDCODE:
830     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
831            "Cond code doesn't exist!");
832     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != nullptr;
833     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = nullptr;
834     break;
835   case ISD::ExternalSymbol:
836     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
837     break;
838   case ISD::TargetExternalSymbol: {
839     ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
840     Erased = TargetExternalSymbols.erase(
841                std::pair<std::string,unsigned char>(ESN->getSymbol(),
842                                                     ESN->getTargetFlags()));
843     break;
844   }
845   case ISD::MCSymbol: {
846     auto *MCSN = cast<MCSymbolSDNode>(N);
847     Erased = MCSymbols.erase(MCSN->getMCSymbol());
848     break;
849   }
850   case ISD::VALUETYPE: {
851     EVT VT = cast<VTSDNode>(N)->getVT();
852     if (VT.isExtended()) {
853       Erased = ExtendedValueTypeNodes.erase(VT);
854     } else {
855       Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != nullptr;
856       ValueTypeNodes[VT.getSimpleVT().SimpleTy] = nullptr;
857     }
858     break;
859   }
860   default:
861     // Remove it from the CSE Map.
862     assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
863     assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
864     Erased = CSEMap.RemoveNode(N);
865     break;
866   }
867 #ifndef NDEBUG
868   // Verify that the node was actually in one of the CSE maps, unless it has a
869   // flag result (which cannot be CSE'd) or is one of the special cases that are
870   // not subject to CSE.
871   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue &&
872       !N->isMachineOpcode() && !doNotCSE(N)) {
873     N->dump(this);
874     dbgs() << "\n";
875     llvm_unreachable("Node is not in map!");
876   }
877 #endif
878   return Erased;
879 }
880 
881 /// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
882 /// maps and modified in place. Add it back to the CSE maps, unless an identical
883 /// node already exists, in which case transfer all its users to the existing
884 /// node. This transfer can potentially trigger recursive merging.
885 void
886 SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) {
887   // For node types that aren't CSE'd, just act as if no identical node
888   // already exists.
889   if (!doNotCSE(N)) {
890     SDNode *Existing = CSEMap.GetOrInsertNode(N);
891     if (Existing != N) {
892       // If there was already an existing matching node, use ReplaceAllUsesWith
893       // to replace the dead one with the existing one.  This can cause
894       // recursive merging of other unrelated nodes down the line.
895       ReplaceAllUsesWith(N, Existing);
896 
897       // N is now dead. Inform the listeners and delete it.
898       for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
899         DUL->NodeDeleted(N, Existing);
900       DeleteNodeNotInCSEMaps(N);
901       return;
902     }
903   }
904 
905   // If the node doesn't already exist, we updated it.  Inform listeners.
906   for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
907     DUL->NodeUpdated(N);
908 }
909 
910 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
911 /// were replaced with those specified.  If this node is never memoized,
912 /// return null, otherwise return a pointer to the slot it would take.  If a
913 /// node already exists with these operands, the slot will be non-null.
914 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
915                                            void *&InsertPos) {
916   if (doNotCSE(N))
917     return nullptr;
918 
919   SDValue Ops[] = { Op };
920   FoldingSetNodeID ID;
921   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
922   AddNodeIDCustom(ID, N);
923   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
924   if (Node)
925     Node->intersectFlagsWith(N->getFlags());
926   return Node;
927 }
928 
929 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
930 /// were replaced with those specified.  If this node is never memoized,
931 /// return null, otherwise return a pointer to the slot it would take.  If a
932 /// node already exists with these operands, the slot will be non-null.
933 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
934                                            SDValue Op1, SDValue Op2,
935                                            void *&InsertPos) {
936   if (doNotCSE(N))
937     return nullptr;
938 
939   SDValue Ops[] = { Op1, Op2 };
940   FoldingSetNodeID ID;
941   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
942   AddNodeIDCustom(ID, N);
943   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
944   if (Node)
945     Node->intersectFlagsWith(N->getFlags());
946   return Node;
947 }
948 
949 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
950 /// were replaced with those specified.  If this node is never memoized,
951 /// return null, otherwise return a pointer to the slot it would take.  If a
952 /// node already exists with these operands, the slot will be non-null.
953 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
954                                            void *&InsertPos) {
955   if (doNotCSE(N))
956     return nullptr;
957 
958   FoldingSetNodeID ID;
959   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
960   AddNodeIDCustom(ID, N);
961   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
962   if (Node)
963     Node->intersectFlagsWith(N->getFlags());
964   return Node;
965 }
966 
967 unsigned SelectionDAG::getEVTAlignment(EVT VT) const {
968   Type *Ty = VT == MVT::iPTR ?
969                    PointerType::get(Type::getInt8Ty(*getContext()), 0) :
970                    VT.getTypeForEVT(*getContext());
971 
972   return getDataLayout().getABITypeAlignment(Ty);
973 }
974 
975 // EntryNode could meaningfully have debug info if we can find it...
976 SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL)
977     : TM(tm), OptLevel(OL),
978       EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
979       Root(getEntryNode()) {
980   InsertNode(&EntryNode);
981   DbgInfo = new SDDbgInfo();
982 }
983 
984 void SelectionDAG::init(MachineFunction &NewMF,
985                         OptimizationRemarkEmitter &NewORE,
986                         Pass *PassPtr, const TargetLibraryInfo *LibraryInfo,
987                         LegacyDivergenceAnalysis * Divergence) {
988   MF = &NewMF;
989   SDAGISelPass = PassPtr;
990   ORE = &NewORE;
991   TLI = getSubtarget().getTargetLowering();
992   TSI = getSubtarget().getSelectionDAGInfo();
993   LibInfo = LibraryInfo;
994   Context = &MF->getFunction().getContext();
995   DA = Divergence;
996 }
997 
998 SelectionDAG::~SelectionDAG() {
999   assert(!UpdateListeners && "Dangling registered DAGUpdateListeners");
1000   allnodes_clear();
1001   OperandRecycler.clear(OperandAllocator);
1002   delete DbgInfo;
1003 }
1004 
1005 void SelectionDAG::allnodes_clear() {
1006   assert(&*AllNodes.begin() == &EntryNode);
1007   AllNodes.remove(AllNodes.begin());
1008   while (!AllNodes.empty())
1009     DeallocateNode(&AllNodes.front());
1010 #ifndef NDEBUG
1011   NextPersistentId = 0;
1012 #endif
1013 }
1014 
1015 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
1016                                           void *&InsertPos) {
1017   SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
1018   if (N) {
1019     switch (N->getOpcode()) {
1020     default: break;
1021     case ISD::Constant:
1022     case ISD::ConstantFP:
1023       llvm_unreachable("Querying for Constant and ConstantFP nodes requires "
1024                        "debug location.  Use another overload.");
1025     }
1026   }
1027   return N;
1028 }
1029 
1030 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
1031                                           const SDLoc &DL, void *&InsertPos) {
1032   SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
1033   if (N) {
1034     switch (N->getOpcode()) {
1035     case ISD::Constant:
1036     case ISD::ConstantFP:
1037       // Erase debug location from the node if the node is used at several
1038       // different places. Do not propagate one location to all uses as it
1039       // will cause a worse single stepping debugging experience.
1040       if (N->getDebugLoc() != DL.getDebugLoc())
1041         N->setDebugLoc(DebugLoc());
1042       break;
1043     default:
1044       // When the node's point of use is located earlier in the instruction
1045       // sequence than its prior point of use, update its debug info to the
1046       // earlier location.
1047       if (DL.getIROrder() && DL.getIROrder() < N->getIROrder())
1048         N->setDebugLoc(DL.getDebugLoc());
1049       break;
1050     }
1051   }
1052   return N;
1053 }
1054 
1055 void SelectionDAG::clear() {
1056   allnodes_clear();
1057   OperandRecycler.clear(OperandAllocator);
1058   OperandAllocator.Reset();
1059   CSEMap.clear();
1060 
1061   ExtendedValueTypeNodes.clear();
1062   ExternalSymbols.clear();
1063   TargetExternalSymbols.clear();
1064   MCSymbols.clear();
1065   std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
1066             static_cast<CondCodeSDNode*>(nullptr));
1067   std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
1068             static_cast<SDNode*>(nullptr));
1069 
1070   EntryNode.UseList = nullptr;
1071   InsertNode(&EntryNode);
1072   Root = getEntryNode();
1073   DbgInfo->clear();
1074 }
1075 
1076 SDValue SelectionDAG::getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT) {
1077   return VT.bitsGT(Op.getValueType())
1078              ? getNode(ISD::FP_EXTEND, DL, VT, Op)
1079              : getNode(ISD::FP_ROUND, DL, VT, Op, getIntPtrConstant(0, DL));
1080 }
1081 
1082 SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1083   return VT.bitsGT(Op.getValueType()) ?
1084     getNode(ISD::ANY_EXTEND, DL, VT, Op) :
1085     getNode(ISD::TRUNCATE, DL, VT, Op);
1086 }
1087 
1088 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1089   return VT.bitsGT(Op.getValueType()) ?
1090     getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
1091     getNode(ISD::TRUNCATE, DL, VT, Op);
1092 }
1093 
1094 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1095   return VT.bitsGT(Op.getValueType()) ?
1096     getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
1097     getNode(ISD::TRUNCATE, DL, VT, Op);
1098 }
1099 
1100 SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT,
1101                                         EVT OpVT) {
1102   if (VT.bitsLE(Op.getValueType()))
1103     return getNode(ISD::TRUNCATE, SL, VT, Op);
1104 
1105   TargetLowering::BooleanContent BType = TLI->getBooleanContents(OpVT);
1106   return getNode(TLI->getExtendForContent(BType), SL, VT, Op);
1107 }
1108 
1109 SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) {
1110   assert(!VT.isVector() &&
1111          "getZeroExtendInReg should use the vector element type instead of "
1112          "the vector type!");
1113   if (Op.getValueType().getScalarType() == VT) return Op;
1114   unsigned BitWidth = Op.getScalarValueSizeInBits();
1115   APInt Imm = APInt::getLowBitsSet(BitWidth,
1116                                    VT.getSizeInBits());
1117   return getNode(ISD::AND, DL, Op.getValueType(), Op,
1118                  getConstant(Imm, DL, Op.getValueType()));
1119 }
1120 
1121 SDValue SelectionDAG::getAnyExtendVectorInReg(SDValue Op, const SDLoc &DL,
1122                                               EVT VT) {
1123   assert(VT.isVector() && "This DAG node is restricted to vector types.");
1124   assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
1125          "The sizes of the input and result must match in order to perform the "
1126          "extend in-register.");
1127   assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
1128          "The destination vector type must have fewer lanes than the input.");
1129   return getNode(ISD::ANY_EXTEND_VECTOR_INREG, DL, VT, Op);
1130 }
1131 
1132 SDValue SelectionDAG::getSignExtendVectorInReg(SDValue Op, const SDLoc &DL,
1133                                                EVT VT) {
1134   assert(VT.isVector() && "This DAG node is restricted to vector types.");
1135   assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
1136          "The sizes of the input and result must match in order to perform the "
1137          "extend in-register.");
1138   assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
1139          "The destination vector type must have fewer lanes than the input.");
1140   return getNode(ISD::SIGN_EXTEND_VECTOR_INREG, DL, VT, Op);
1141 }
1142 
1143 SDValue SelectionDAG::getZeroExtendVectorInReg(SDValue Op, const SDLoc &DL,
1144                                                EVT VT) {
1145   assert(VT.isVector() && "This DAG node is restricted to vector types.");
1146   assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
1147          "The sizes of the input and result must match in order to perform the "
1148          "extend in-register.");
1149   assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
1150          "The destination vector type must have fewer lanes than the input.");
1151   return getNode(ISD::ZERO_EXTEND_VECTOR_INREG, DL, VT, Op);
1152 }
1153 
1154 /// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
1155 SDValue SelectionDAG::getNOT(const SDLoc &DL, SDValue Val, EVT VT) {
1156   EVT EltVT = VT.getScalarType();
1157   SDValue NegOne =
1158     getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), DL, VT);
1159   return getNode(ISD::XOR, DL, VT, Val, NegOne);
1160 }
1161 
1162 SDValue SelectionDAG::getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT) {
1163   SDValue TrueValue = getBoolConstant(true, DL, VT, VT);
1164   return getNode(ISD::XOR, DL, VT, Val, TrueValue);
1165 }
1166 
1167 SDValue SelectionDAG::getBoolConstant(bool V, const SDLoc &DL, EVT VT,
1168                                       EVT OpVT) {
1169   if (!V)
1170     return getConstant(0, DL, VT);
1171 
1172   switch (TLI->getBooleanContents(OpVT)) {
1173   case TargetLowering::ZeroOrOneBooleanContent:
1174   case TargetLowering::UndefinedBooleanContent:
1175     return getConstant(1, DL, VT);
1176   case TargetLowering::ZeroOrNegativeOneBooleanContent:
1177     return getAllOnesConstant(DL, VT);
1178   }
1179   llvm_unreachable("Unexpected boolean content enum!");
1180 }
1181 
1182 SDValue SelectionDAG::getConstant(uint64_t Val, const SDLoc &DL, EVT VT,
1183                                   bool isT, bool isO) {
1184   EVT EltVT = VT.getScalarType();
1185   assert((EltVT.getSizeInBits() >= 64 ||
1186          (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
1187          "getConstant with a uint64_t value that doesn't fit in the type!");
1188   return getConstant(APInt(EltVT.getSizeInBits(), Val), DL, VT, isT, isO);
1189 }
1190 
1191 SDValue SelectionDAG::getConstant(const APInt &Val, const SDLoc &DL, EVT VT,
1192                                   bool isT, bool isO) {
1193   return getConstant(*ConstantInt::get(*Context, Val), DL, VT, isT, isO);
1194 }
1195 
1196 SDValue SelectionDAG::getConstant(const ConstantInt &Val, const SDLoc &DL,
1197                                   EVT VT, bool isT, bool isO) {
1198   assert(VT.isInteger() && "Cannot create FP integer constant!");
1199 
1200   EVT EltVT = VT.getScalarType();
1201   const ConstantInt *Elt = &Val;
1202 
1203   // In some cases the vector type is legal but the element type is illegal and
1204   // needs to be promoted, for example v8i8 on ARM.  In this case, promote the
1205   // inserted value (the type does not need to match the vector element type).
1206   // Any extra bits introduced will be truncated away.
1207   if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
1208       TargetLowering::TypePromoteInteger) {
1209    EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1210    APInt NewVal = Elt->getValue().zextOrTrunc(EltVT.getSizeInBits());
1211    Elt = ConstantInt::get(*getContext(), NewVal);
1212   }
1213   // In other cases the element type is illegal and needs to be expanded, for
1214   // example v2i64 on MIPS32. In this case, find the nearest legal type, split
1215   // the value into n parts and use a vector type with n-times the elements.
1216   // Then bitcast to the type requested.
1217   // Legalizing constants too early makes the DAGCombiner's job harder so we
1218   // only legalize if the DAG tells us we must produce legal types.
1219   else if (NewNodesMustHaveLegalTypes && VT.isVector() &&
1220            TLI->getTypeAction(*getContext(), EltVT) ==
1221            TargetLowering::TypeExpandInteger) {
1222     const APInt &NewVal = Elt->getValue();
1223     EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1224     unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits();
1225     unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits;
1226     EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts);
1227 
1228     // Check the temporary vector is the correct size. If this fails then
1229     // getTypeToTransformTo() probably returned a type whose size (in bits)
1230     // isn't a power-of-2 factor of the requested type size.
1231     assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits());
1232 
1233     SmallVector<SDValue, 2> EltParts;
1234     for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i) {
1235       EltParts.push_back(getConstant(NewVal.lshr(i * ViaEltSizeInBits)
1236                                            .zextOrTrunc(ViaEltSizeInBits), DL,
1237                                      ViaEltVT, isT, isO));
1238     }
1239 
1240     // EltParts is currently in little endian order. If we actually want
1241     // big-endian order then reverse it now.
1242     if (getDataLayout().isBigEndian())
1243       std::reverse(EltParts.begin(), EltParts.end());
1244 
1245     // The elements must be reversed when the element order is different
1246     // to the endianness of the elements (because the BITCAST is itself a
1247     // vector shuffle in this situation). However, we do not need any code to
1248     // perform this reversal because getConstant() is producing a vector
1249     // splat.
1250     // This situation occurs in MIPS MSA.
1251 
1252     SmallVector<SDValue, 8> Ops;
1253     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
1254       Ops.insert(Ops.end(), EltParts.begin(), EltParts.end());
1255 
1256     SDValue V = getNode(ISD::BITCAST, DL, VT, getBuildVector(ViaVecVT, DL, Ops));
1257     return V;
1258   }
1259 
1260   assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
1261          "APInt size does not match type size!");
1262   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
1263   FoldingSetNodeID ID;
1264   AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
1265   ID.AddPointer(Elt);
1266   ID.AddBoolean(isO);
1267   void *IP = nullptr;
1268   SDNode *N = nullptr;
1269   if ((N = FindNodeOrInsertPos(ID, DL, IP)))
1270     if (!VT.isVector())
1271       return SDValue(N, 0);
1272 
1273   if (!N) {
1274     N = newSDNode<ConstantSDNode>(isT, isO, Elt, EltVT);
1275     CSEMap.InsertNode(N, IP);
1276     InsertNode(N);
1277     NewSDValueDbgMsg(SDValue(N, 0), "Creating constant: ", this);
1278   }
1279 
1280   SDValue Result(N, 0);
1281   if (VT.isVector())
1282     Result = getSplatBuildVector(VT, DL, Result);
1283 
1284   return Result;
1285 }
1286 
1287 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, const SDLoc &DL,
1288                                         bool isTarget) {
1289   return getConstant(Val, DL, TLI->getPointerTy(getDataLayout()), isTarget);
1290 }
1291 
1292 SDValue SelectionDAG::getConstantFP(const APFloat &V, const SDLoc &DL, EVT VT,
1293                                     bool isTarget) {
1294   return getConstantFP(*ConstantFP::get(*getContext(), V), DL, VT, isTarget);
1295 }
1296 
1297 SDValue SelectionDAG::getConstantFP(const ConstantFP &V, const SDLoc &DL,
1298                                     EVT VT, bool isTarget) {
1299   assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
1300 
1301   EVT EltVT = VT.getScalarType();
1302 
1303   // Do the map lookup using the actual bit pattern for the floating point
1304   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1305   // we don't have issues with SNANs.
1306   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
1307   FoldingSetNodeID ID;
1308   AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
1309   ID.AddPointer(&V);
1310   void *IP = nullptr;
1311   SDNode *N = nullptr;
1312   if ((N = FindNodeOrInsertPos(ID, DL, IP)))
1313     if (!VT.isVector())
1314       return SDValue(N, 0);
1315 
1316   if (!N) {
1317     N = newSDNode<ConstantFPSDNode>(isTarget, &V, EltVT);
1318     CSEMap.InsertNode(N, IP);
1319     InsertNode(N);
1320   }
1321 
1322   SDValue Result(N, 0);
1323   if (VT.isVector())
1324     Result = getSplatBuildVector(VT, DL, Result);
1325   NewSDValueDbgMsg(Result, "Creating fp constant: ", this);
1326   return Result;
1327 }
1328 
1329 SDValue SelectionDAG::getConstantFP(double Val, const SDLoc &DL, EVT VT,
1330                                     bool isTarget) {
1331   EVT EltVT = VT.getScalarType();
1332   if (EltVT == MVT::f32)
1333     return getConstantFP(APFloat((float)Val), DL, VT, isTarget);
1334   else if (EltVT == MVT::f64)
1335     return getConstantFP(APFloat(Val), DL, VT, isTarget);
1336   else if (EltVT == MVT::f80 || EltVT == MVT::f128 || EltVT == MVT::ppcf128 ||
1337            EltVT == MVT::f16) {
1338     bool Ignored;
1339     APFloat APF = APFloat(Val);
1340     APF.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
1341                 &Ignored);
1342     return getConstantFP(APF, DL, VT, isTarget);
1343   } else
1344     llvm_unreachable("Unsupported type in getConstantFP");
1345 }
1346 
1347 SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, const SDLoc &DL,
1348                                        EVT VT, int64_t Offset, bool isTargetGA,
1349                                        unsigned char TargetFlags) {
1350   assert((TargetFlags == 0 || isTargetGA) &&
1351          "Cannot set target flags on target-independent globals");
1352 
1353   // Truncate (with sign-extension) the offset value to the pointer size.
1354   unsigned BitWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType());
1355   if (BitWidth < 64)
1356     Offset = SignExtend64(Offset, BitWidth);
1357 
1358   unsigned Opc;
1359   if (GV->isThreadLocal())
1360     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1361   else
1362     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
1363 
1364   FoldingSetNodeID ID;
1365   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1366   ID.AddPointer(GV);
1367   ID.AddInteger(Offset);
1368   ID.AddInteger(TargetFlags);
1369   void *IP = nullptr;
1370   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
1371     return SDValue(E, 0);
1372 
1373   auto *N = newSDNode<GlobalAddressSDNode>(
1374       Opc, DL.getIROrder(), DL.getDebugLoc(), GV, VT, Offset, TargetFlags);
1375   CSEMap.InsertNode(N, IP);
1376     InsertNode(N);
1377   return SDValue(N, 0);
1378 }
1379 
1380 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
1381   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
1382   FoldingSetNodeID ID;
1383   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1384   ID.AddInteger(FI);
1385   void *IP = nullptr;
1386   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1387     return SDValue(E, 0);
1388 
1389   auto *N = newSDNode<FrameIndexSDNode>(FI, VT, isTarget);
1390   CSEMap.InsertNode(N, IP);
1391   InsertNode(N);
1392   return SDValue(N, 0);
1393 }
1394 
1395 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
1396                                    unsigned char TargetFlags) {
1397   assert((TargetFlags == 0 || isTarget) &&
1398          "Cannot set target flags on target-independent jump tables");
1399   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1400   FoldingSetNodeID ID;
1401   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1402   ID.AddInteger(JTI);
1403   ID.AddInteger(TargetFlags);
1404   void *IP = nullptr;
1405   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1406     return SDValue(E, 0);
1407 
1408   auto *N = newSDNode<JumpTableSDNode>(JTI, VT, isTarget, TargetFlags);
1409   CSEMap.InsertNode(N, IP);
1410   InsertNode(N);
1411   return SDValue(N, 0);
1412 }
1413 
1414 SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
1415                                       unsigned Alignment, int Offset,
1416                                       bool isTarget,
1417                                       unsigned char TargetFlags) {
1418   assert((TargetFlags == 0 || isTarget) &&
1419          "Cannot set target flags on target-independent globals");
1420   if (Alignment == 0)
1421     Alignment = MF->getFunction().optForSize()
1422                     ? getDataLayout().getABITypeAlignment(C->getType())
1423                     : getDataLayout().getPrefTypeAlignment(C->getType());
1424   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1425   FoldingSetNodeID ID;
1426   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1427   ID.AddInteger(Alignment);
1428   ID.AddInteger(Offset);
1429   ID.AddPointer(C);
1430   ID.AddInteger(TargetFlags);
1431   void *IP = nullptr;
1432   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1433     return SDValue(E, 0);
1434 
1435   auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, Alignment,
1436                                           TargetFlags);
1437   CSEMap.InsertNode(N, IP);
1438   InsertNode(N);
1439   return SDValue(N, 0);
1440 }
1441 
1442 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
1443                                       unsigned Alignment, int Offset,
1444                                       bool isTarget,
1445                                       unsigned char TargetFlags) {
1446   assert((TargetFlags == 0 || isTarget) &&
1447          "Cannot set target flags on target-independent globals");
1448   if (Alignment == 0)
1449     Alignment = getDataLayout().getPrefTypeAlignment(C->getType());
1450   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1451   FoldingSetNodeID ID;
1452   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1453   ID.AddInteger(Alignment);
1454   ID.AddInteger(Offset);
1455   C->addSelectionDAGCSEId(ID);
1456   ID.AddInteger(TargetFlags);
1457   void *IP = nullptr;
1458   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1459     return SDValue(E, 0);
1460 
1461   auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, Alignment,
1462                                           TargetFlags);
1463   CSEMap.InsertNode(N, IP);
1464   InsertNode(N);
1465   return SDValue(N, 0);
1466 }
1467 
1468 SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1469                                      unsigned char TargetFlags) {
1470   FoldingSetNodeID ID;
1471   AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None);
1472   ID.AddInteger(Index);
1473   ID.AddInteger(Offset);
1474   ID.AddInteger(TargetFlags);
1475   void *IP = nullptr;
1476   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1477     return SDValue(E, 0);
1478 
1479   auto *N = newSDNode<TargetIndexSDNode>(Index, VT, Offset, TargetFlags);
1480   CSEMap.InsertNode(N, IP);
1481   InsertNode(N);
1482   return SDValue(N, 0);
1483 }
1484 
1485 SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
1486   FoldingSetNodeID ID;
1487   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
1488   ID.AddPointer(MBB);
1489   void *IP = nullptr;
1490   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1491     return SDValue(E, 0);
1492 
1493   auto *N = newSDNode<BasicBlockSDNode>(MBB);
1494   CSEMap.InsertNode(N, IP);
1495   InsertNode(N);
1496   return SDValue(N, 0);
1497 }
1498 
1499 SDValue SelectionDAG::getValueType(EVT VT) {
1500   if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1501       ValueTypeNodes.size())
1502     ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
1503 
1504   SDNode *&N = VT.isExtended() ?
1505     ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
1506 
1507   if (N) return SDValue(N, 0);
1508   N = newSDNode<VTSDNode>(VT);
1509   InsertNode(N);
1510   return SDValue(N, 0);
1511 }
1512 
1513 SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
1514   SDNode *&N = ExternalSymbols[Sym];
1515   if (N) return SDValue(N, 0);
1516   N = newSDNode<ExternalSymbolSDNode>(false, Sym, 0, VT);
1517   InsertNode(N);
1518   return SDValue(N, 0);
1519 }
1520 
1521 SDValue SelectionDAG::getMCSymbol(MCSymbol *Sym, EVT VT) {
1522   SDNode *&N = MCSymbols[Sym];
1523   if (N)
1524     return SDValue(N, 0);
1525   N = newSDNode<MCSymbolSDNode>(Sym, VT);
1526   InsertNode(N);
1527   return SDValue(N, 0);
1528 }
1529 
1530 SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
1531                                               unsigned char TargetFlags) {
1532   SDNode *&N =
1533     TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1534                                                                TargetFlags)];
1535   if (N) return SDValue(N, 0);
1536   N = newSDNode<ExternalSymbolSDNode>(true, Sym, TargetFlags, VT);
1537   InsertNode(N);
1538   return SDValue(N, 0);
1539 }
1540 
1541 SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
1542   if ((unsigned)Cond >= CondCodeNodes.size())
1543     CondCodeNodes.resize(Cond+1);
1544 
1545   if (!CondCodeNodes[Cond]) {
1546     auto *N = newSDNode<CondCodeSDNode>(Cond);
1547     CondCodeNodes[Cond] = N;
1548     InsertNode(N);
1549   }
1550 
1551   return SDValue(CondCodeNodes[Cond], 0);
1552 }
1553 
1554 /// Swaps the values of N1 and N2. Swaps all indices in the shuffle mask M that
1555 /// point at N1 to point at N2 and indices that point at N2 to point at N1.
1556 static void commuteShuffle(SDValue &N1, SDValue &N2, MutableArrayRef<int> M) {
1557   std::swap(N1, N2);
1558   ShuffleVectorSDNode::commuteMask(M);
1559 }
1560 
1561 SDValue SelectionDAG::getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1,
1562                                        SDValue N2, ArrayRef<int> Mask) {
1563   assert(VT.getVectorNumElements() == Mask.size() &&
1564            "Must have the same number of vector elements as mask elements!");
1565   assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1566          "Invalid VECTOR_SHUFFLE");
1567 
1568   // Canonicalize shuffle undef, undef -> undef
1569   if (N1.isUndef() && N2.isUndef())
1570     return getUNDEF(VT);
1571 
1572   // Validate that all indices in Mask are within the range of the elements
1573   // input to the shuffle.
1574   int NElts = Mask.size();
1575   assert(llvm::all_of(Mask,
1576                       [&](int M) { return M < (NElts * 2) && M >= -1; }) &&
1577          "Index out of range");
1578 
1579   // Copy the mask so we can do any needed cleanup.
1580   SmallVector<int, 8> MaskVec(Mask.begin(), Mask.end());
1581 
1582   // Canonicalize shuffle v, v -> v, undef
1583   if (N1 == N2) {
1584     N2 = getUNDEF(VT);
1585     for (int i = 0; i != NElts; ++i)
1586       if (MaskVec[i] >= NElts) MaskVec[i] -= NElts;
1587   }
1588 
1589   // Canonicalize shuffle undef, v -> v, undef.  Commute the shuffle mask.
1590   if (N1.isUndef())
1591     commuteShuffle(N1, N2, MaskVec);
1592 
1593   if (TLI->hasVectorBlend()) {
1594     // If shuffling a splat, try to blend the splat instead. We do this here so
1595     // that even when this arises during lowering we don't have to re-handle it.
1596     auto BlendSplat = [&](BuildVectorSDNode *BV, int Offset) {
1597       BitVector UndefElements;
1598       SDValue Splat = BV->getSplatValue(&UndefElements);
1599       if (!Splat)
1600         return;
1601 
1602       for (int i = 0; i < NElts; ++i) {
1603         if (MaskVec[i] < Offset || MaskVec[i] >= (Offset + NElts))
1604           continue;
1605 
1606         // If this input comes from undef, mark it as such.
1607         if (UndefElements[MaskVec[i] - Offset]) {
1608           MaskVec[i] = -1;
1609           continue;
1610         }
1611 
1612         // If we can blend a non-undef lane, use that instead.
1613         if (!UndefElements[i])
1614           MaskVec[i] = i + Offset;
1615       }
1616     };
1617     if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
1618       BlendSplat(N1BV, 0);
1619     if (auto *N2BV = dyn_cast<BuildVectorSDNode>(N2))
1620       BlendSplat(N2BV, NElts);
1621   }
1622 
1623   // Canonicalize all index into lhs, -> shuffle lhs, undef
1624   // Canonicalize all index into rhs, -> shuffle rhs, undef
1625   bool AllLHS = true, AllRHS = true;
1626   bool N2Undef = N2.isUndef();
1627   for (int i = 0; i != NElts; ++i) {
1628     if (MaskVec[i] >= NElts) {
1629       if (N2Undef)
1630         MaskVec[i] = -1;
1631       else
1632         AllLHS = false;
1633     } else if (MaskVec[i] >= 0) {
1634       AllRHS = false;
1635     }
1636   }
1637   if (AllLHS && AllRHS)
1638     return getUNDEF(VT);
1639   if (AllLHS && !N2Undef)
1640     N2 = getUNDEF(VT);
1641   if (AllRHS) {
1642     N1 = getUNDEF(VT);
1643     commuteShuffle(N1, N2, MaskVec);
1644   }
1645   // Reset our undef status after accounting for the mask.
1646   N2Undef = N2.isUndef();
1647   // Re-check whether both sides ended up undef.
1648   if (N1.isUndef() && N2Undef)
1649     return getUNDEF(VT);
1650 
1651   // If Identity shuffle return that node.
1652   bool Identity = true, AllSame = true;
1653   for (int i = 0; i != NElts; ++i) {
1654     if (MaskVec[i] >= 0 && MaskVec[i] != i) Identity = false;
1655     if (MaskVec[i] != MaskVec[0]) AllSame = false;
1656   }
1657   if (Identity && NElts)
1658     return N1;
1659 
1660   // Shuffling a constant splat doesn't change the result.
1661   if (N2Undef) {
1662     SDValue V = N1;
1663 
1664     // Look through any bitcasts. We check that these don't change the number
1665     // (and size) of elements and just changes their types.
1666     while (V.getOpcode() == ISD::BITCAST)
1667       V = V->getOperand(0);
1668 
1669     // A splat should always show up as a build vector node.
1670     if (auto *BV = dyn_cast<BuildVectorSDNode>(V)) {
1671       BitVector UndefElements;
1672       SDValue Splat = BV->getSplatValue(&UndefElements);
1673       // If this is a splat of an undef, shuffling it is also undef.
1674       if (Splat && Splat.isUndef())
1675         return getUNDEF(VT);
1676 
1677       bool SameNumElts =
1678           V.getValueType().getVectorNumElements() == VT.getVectorNumElements();
1679 
1680       // We only have a splat which can skip shuffles if there is a splatted
1681       // value and no undef lanes rearranged by the shuffle.
1682       if (Splat && UndefElements.none()) {
1683         // Splat of <x, x, ..., x>, return <x, x, ..., x>, provided that the
1684         // number of elements match or the value splatted is a zero constant.
1685         if (SameNumElts)
1686           return N1;
1687         if (auto *C = dyn_cast<ConstantSDNode>(Splat))
1688           if (C->isNullValue())
1689             return N1;
1690       }
1691 
1692       // If the shuffle itself creates a splat, build the vector directly.
1693       if (AllSame && SameNumElts) {
1694         EVT BuildVT = BV->getValueType(0);
1695         const SDValue &Splatted = BV->getOperand(MaskVec[0]);
1696         SDValue NewBV = getSplatBuildVector(BuildVT, dl, Splatted);
1697 
1698         // We may have jumped through bitcasts, so the type of the
1699         // BUILD_VECTOR may not match the type of the shuffle.
1700         if (BuildVT != VT)
1701           NewBV = getNode(ISD::BITCAST, dl, VT, NewBV);
1702         return NewBV;
1703       }
1704     }
1705   }
1706 
1707   FoldingSetNodeID ID;
1708   SDValue Ops[2] = { N1, N2 };
1709   AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops);
1710   for (int i = 0; i != NElts; ++i)
1711     ID.AddInteger(MaskVec[i]);
1712 
1713   void* IP = nullptr;
1714   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
1715     return SDValue(E, 0);
1716 
1717   // Allocate the mask array for the node out of the BumpPtrAllocator, since
1718   // SDNode doesn't have access to it.  This memory will be "leaked" when
1719   // the node is deallocated, but recovered when the NodeAllocator is released.
1720   int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
1721   std::copy(MaskVec.begin(), MaskVec.end(), MaskAlloc);
1722 
1723   auto *N = newSDNode<ShuffleVectorSDNode>(VT, dl.getIROrder(),
1724                                            dl.getDebugLoc(), MaskAlloc);
1725   createOperands(N, Ops);
1726 
1727   CSEMap.InsertNode(N, IP);
1728   InsertNode(N);
1729   SDValue V = SDValue(N, 0);
1730   NewSDValueDbgMsg(V, "Creating new node: ", this);
1731   return V;
1732 }
1733 
1734 SDValue SelectionDAG::getCommutedVectorShuffle(const ShuffleVectorSDNode &SV) {
1735   EVT VT = SV.getValueType(0);
1736   SmallVector<int, 8> MaskVec(SV.getMask().begin(), SV.getMask().end());
1737   ShuffleVectorSDNode::commuteMask(MaskVec);
1738 
1739   SDValue Op0 = SV.getOperand(0);
1740   SDValue Op1 = SV.getOperand(1);
1741   return getVectorShuffle(VT, SDLoc(&SV), Op1, Op0, MaskVec);
1742 }
1743 
1744 SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
1745   FoldingSetNodeID ID;
1746   AddNodeIDNode(ID, ISD::Register, getVTList(VT), None);
1747   ID.AddInteger(RegNo);
1748   void *IP = nullptr;
1749   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1750     return SDValue(E, 0);
1751 
1752   auto *N = newSDNode<RegisterSDNode>(RegNo, VT);
1753   N->SDNodeBits.IsDivergent = TLI->isSDNodeSourceOfDivergence(N, FLI, DA);
1754   CSEMap.InsertNode(N, IP);
1755   InsertNode(N);
1756   return SDValue(N, 0);
1757 }
1758 
1759 SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
1760   FoldingSetNodeID ID;
1761   AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None);
1762   ID.AddPointer(RegMask);
1763   void *IP = nullptr;
1764   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1765     return SDValue(E, 0);
1766 
1767   auto *N = newSDNode<RegisterMaskSDNode>(RegMask);
1768   CSEMap.InsertNode(N, IP);
1769   InsertNode(N);
1770   return SDValue(N, 0);
1771 }
1772 
1773 SDValue SelectionDAG::getEHLabel(const SDLoc &dl, SDValue Root,
1774                                  MCSymbol *Label) {
1775   return getLabelNode(ISD::EH_LABEL, dl, Root, Label);
1776 }
1777 
1778 SDValue SelectionDAG::getLabelNode(unsigned Opcode, const SDLoc &dl,
1779                                    SDValue Root, MCSymbol *Label) {
1780   FoldingSetNodeID ID;
1781   SDValue Ops[] = { Root };
1782   AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), Ops);
1783   ID.AddPointer(Label);
1784   void *IP = nullptr;
1785   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1786     return SDValue(E, 0);
1787 
1788   auto *N = newSDNode<LabelSDNode>(dl.getIROrder(), dl.getDebugLoc(), Label);
1789   createOperands(N, Ops);
1790 
1791   CSEMap.InsertNode(N, IP);
1792   InsertNode(N);
1793   return SDValue(N, 0);
1794 }
1795 
1796 SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
1797                                       int64_t Offset,
1798                                       bool isTarget,
1799                                       unsigned char TargetFlags) {
1800   unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
1801 
1802   FoldingSetNodeID ID;
1803   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1804   ID.AddPointer(BA);
1805   ID.AddInteger(Offset);
1806   ID.AddInteger(TargetFlags);
1807   void *IP = nullptr;
1808   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1809     return SDValue(E, 0);
1810 
1811   auto *N = newSDNode<BlockAddressSDNode>(Opc, VT, BA, Offset, TargetFlags);
1812   CSEMap.InsertNode(N, IP);
1813   InsertNode(N);
1814   return SDValue(N, 0);
1815 }
1816 
1817 SDValue SelectionDAG::getSrcValue(const Value *V) {
1818   assert((!V || V->getType()->isPointerTy()) &&
1819          "SrcValue is not a pointer?");
1820 
1821   FoldingSetNodeID ID;
1822   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
1823   ID.AddPointer(V);
1824 
1825   void *IP = nullptr;
1826   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1827     return SDValue(E, 0);
1828 
1829   auto *N = newSDNode<SrcValueSDNode>(V);
1830   CSEMap.InsertNode(N, IP);
1831   InsertNode(N);
1832   return SDValue(N, 0);
1833 }
1834 
1835 SDValue SelectionDAG::getMDNode(const MDNode *MD) {
1836   FoldingSetNodeID ID;
1837   AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
1838   ID.AddPointer(MD);
1839 
1840   void *IP = nullptr;
1841   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1842     return SDValue(E, 0);
1843 
1844   auto *N = newSDNode<MDNodeSDNode>(MD);
1845   CSEMap.InsertNode(N, IP);
1846   InsertNode(N);
1847   return SDValue(N, 0);
1848 }
1849 
1850 SDValue SelectionDAG::getBitcast(EVT VT, SDValue V) {
1851   if (VT == V.getValueType())
1852     return V;
1853 
1854   return getNode(ISD::BITCAST, SDLoc(V), VT, V);
1855 }
1856 
1857 SDValue SelectionDAG::getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr,
1858                                        unsigned SrcAS, unsigned DestAS) {
1859   SDValue Ops[] = {Ptr};
1860   FoldingSetNodeID ID;
1861   AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops);
1862   ID.AddInteger(SrcAS);
1863   ID.AddInteger(DestAS);
1864 
1865   void *IP = nullptr;
1866   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
1867     return SDValue(E, 0);
1868 
1869   auto *N = newSDNode<AddrSpaceCastSDNode>(dl.getIROrder(), dl.getDebugLoc(),
1870                                            VT, SrcAS, DestAS);
1871   createOperands(N, Ops);
1872 
1873   CSEMap.InsertNode(N, IP);
1874   InsertNode(N);
1875   return SDValue(N, 0);
1876 }
1877 
1878 /// getShiftAmountOperand - Return the specified value casted to
1879 /// the target's desired shift amount type.
1880 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
1881   EVT OpTy = Op.getValueType();
1882   EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout());
1883   if (OpTy == ShTy || OpTy.isVector()) return Op;
1884 
1885   return getZExtOrTrunc(Op, SDLoc(Op), ShTy);
1886 }
1887 
1888 SDValue SelectionDAG::expandVAArg(SDNode *Node) {
1889   SDLoc dl(Node);
1890   const TargetLowering &TLI = getTargetLoweringInfo();
1891   const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
1892   EVT VT = Node->getValueType(0);
1893   SDValue Tmp1 = Node->getOperand(0);
1894   SDValue Tmp2 = Node->getOperand(1);
1895   unsigned Align = Node->getConstantOperandVal(3);
1896 
1897   SDValue VAListLoad = getLoad(TLI.getPointerTy(getDataLayout()), dl, Tmp1,
1898                                Tmp2, MachinePointerInfo(V));
1899   SDValue VAList = VAListLoad;
1900 
1901   if (Align > TLI.getMinStackArgumentAlignment()) {
1902     assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
1903 
1904     VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
1905                      getConstant(Align - 1, dl, VAList.getValueType()));
1906 
1907     VAList = getNode(ISD::AND, dl, VAList.getValueType(), VAList,
1908                      getConstant(-(int64_t)Align, dl, VAList.getValueType()));
1909   }
1910 
1911   // Increment the pointer, VAList, to the next vaarg
1912   Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
1913                  getConstant(getDataLayout().getTypeAllocSize(
1914                                                VT.getTypeForEVT(*getContext())),
1915                              dl, VAList.getValueType()));
1916   // Store the incremented VAList to the legalized pointer
1917   Tmp1 =
1918       getStore(VAListLoad.getValue(1), dl, Tmp1, Tmp2, MachinePointerInfo(V));
1919   // Load the actual argument out of the pointer VAList
1920   return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo());
1921 }
1922 
1923 SDValue SelectionDAG::expandVACopy(SDNode *Node) {
1924   SDLoc dl(Node);
1925   const TargetLowering &TLI = getTargetLoweringInfo();
1926   // This defaults to loading a pointer from the input and storing it to the
1927   // output, returning the chain.
1928   const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
1929   const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
1930   SDValue Tmp1 =
1931       getLoad(TLI.getPointerTy(getDataLayout()), dl, Node->getOperand(0),
1932               Node->getOperand(2), MachinePointerInfo(VS));
1933   return getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
1934                   MachinePointerInfo(VD));
1935 }
1936 
1937 SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
1938   MachineFrameInfo &MFI = getMachineFunction().getFrameInfo();
1939   unsigned ByteSize = VT.getStoreSize();
1940   Type *Ty = VT.getTypeForEVT(*getContext());
1941   unsigned StackAlign =
1942       std::max((unsigned)getDataLayout().getPrefTypeAlignment(Ty), minAlign);
1943 
1944   int FrameIdx = MFI.CreateStackObject(ByteSize, StackAlign, false);
1945   return getFrameIndex(FrameIdx, TLI->getFrameIndexTy(getDataLayout()));
1946 }
1947 
1948 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
1949   unsigned Bytes = std::max(VT1.getStoreSize(), VT2.getStoreSize());
1950   Type *Ty1 = VT1.getTypeForEVT(*getContext());
1951   Type *Ty2 = VT2.getTypeForEVT(*getContext());
1952   const DataLayout &DL = getDataLayout();
1953   unsigned Align =
1954       std::max(DL.getPrefTypeAlignment(Ty1), DL.getPrefTypeAlignment(Ty2));
1955 
1956   MachineFrameInfo &MFI = getMachineFunction().getFrameInfo();
1957   int FrameIdx = MFI.CreateStackObject(Bytes, Align, false);
1958   return getFrameIndex(FrameIdx, TLI->getFrameIndexTy(getDataLayout()));
1959 }
1960 
1961 SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1, SDValue N2,
1962                                 ISD::CondCode Cond, const SDLoc &dl) {
1963   EVT OpVT = N1.getValueType();
1964 
1965   // These setcc operations always fold.
1966   switch (Cond) {
1967   default: break;
1968   case ISD::SETFALSE:
1969   case ISD::SETFALSE2: return getBoolConstant(false, dl, VT, OpVT);
1970   case ISD::SETTRUE:
1971   case ISD::SETTRUE2: return getBoolConstant(true, dl, VT, OpVT);
1972 
1973   case ISD::SETOEQ:
1974   case ISD::SETOGT:
1975   case ISD::SETOGE:
1976   case ISD::SETOLT:
1977   case ISD::SETOLE:
1978   case ISD::SETONE:
1979   case ISD::SETO:
1980   case ISD::SETUO:
1981   case ISD::SETUEQ:
1982   case ISD::SETUNE:
1983     assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
1984     break;
1985   }
1986 
1987   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) {
1988     const APInt &C2 = N2C->getAPIntValue();
1989     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1)) {
1990       const APInt &C1 = N1C->getAPIntValue();
1991 
1992       switch (Cond) {
1993       default: llvm_unreachable("Unknown integer setcc!");
1994       case ISD::SETEQ:  return getBoolConstant(C1 == C2, dl, VT, OpVT);
1995       case ISD::SETNE:  return getBoolConstant(C1 != C2, dl, VT, OpVT);
1996       case ISD::SETULT: return getBoolConstant(C1.ult(C2), dl, VT, OpVT);
1997       case ISD::SETUGT: return getBoolConstant(C1.ugt(C2), dl, VT, OpVT);
1998       case ISD::SETULE: return getBoolConstant(C1.ule(C2), dl, VT, OpVT);
1999       case ISD::SETUGE: return getBoolConstant(C1.uge(C2), dl, VT, OpVT);
2000       case ISD::SETLT:  return getBoolConstant(C1.slt(C2), dl, VT, OpVT);
2001       case ISD::SETGT:  return getBoolConstant(C1.sgt(C2), dl, VT, OpVT);
2002       case ISD::SETLE:  return getBoolConstant(C1.sle(C2), dl, VT, OpVT);
2003       case ISD::SETGE:  return getBoolConstant(C1.sge(C2), dl, VT, OpVT);
2004       }
2005     }
2006   }
2007   if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1)) {
2008     if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2)) {
2009       APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
2010       switch (Cond) {
2011       default: break;
2012       case ISD::SETEQ:  if (R==APFloat::cmpUnordered)
2013                           return getUNDEF(VT);
2014                         LLVM_FALLTHROUGH;
2015       case ISD::SETOEQ: return getBoolConstant(R==APFloat::cmpEqual, dl, VT,
2016                                                OpVT);
2017       case ISD::SETNE:  if (R==APFloat::cmpUnordered)
2018                           return getUNDEF(VT);
2019                         LLVM_FALLTHROUGH;
2020       case ISD::SETONE: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2021                                                R==APFloat::cmpLessThan, dl, VT,
2022                                                OpVT);
2023       case ISD::SETLT:  if (R==APFloat::cmpUnordered)
2024                           return getUNDEF(VT);
2025                         LLVM_FALLTHROUGH;
2026       case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT,
2027                                                OpVT);
2028       case ISD::SETGT:  if (R==APFloat::cmpUnordered)
2029                           return getUNDEF(VT);
2030                         LLVM_FALLTHROUGH;
2031       case ISD::SETOGT: return getBoolConstant(R==APFloat::cmpGreaterThan, dl,
2032                                                VT, OpVT);
2033       case ISD::SETLE:  if (R==APFloat::cmpUnordered)
2034                           return getUNDEF(VT);
2035                         LLVM_FALLTHROUGH;
2036       case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan ||
2037                                                R==APFloat::cmpEqual, dl, VT,
2038                                                OpVT);
2039       case ISD::SETGE:  if (R==APFloat::cmpUnordered)
2040                           return getUNDEF(VT);
2041                         LLVM_FALLTHROUGH;
2042       case ISD::SETOGE: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2043                                            R==APFloat::cmpEqual, dl, VT, OpVT);
2044       case ISD::SETO:   return getBoolConstant(R!=APFloat::cmpUnordered, dl, VT,
2045                                                OpVT);
2046       case ISD::SETUO:  return getBoolConstant(R==APFloat::cmpUnordered, dl, VT,
2047                                                OpVT);
2048       case ISD::SETUEQ: return getBoolConstant(R==APFloat::cmpUnordered ||
2049                                                R==APFloat::cmpEqual, dl, VT,
2050                                                OpVT);
2051       case ISD::SETUNE: return getBoolConstant(R!=APFloat::cmpEqual, dl, VT,
2052                                                OpVT);
2053       case ISD::SETULT: return getBoolConstant(R==APFloat::cmpUnordered ||
2054                                                R==APFloat::cmpLessThan, dl, VT,
2055                                                OpVT);
2056       case ISD::SETUGT: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2057                                                R==APFloat::cmpUnordered, dl, VT,
2058                                                OpVT);
2059       case ISD::SETULE: return getBoolConstant(R!=APFloat::cmpGreaterThan, dl,
2060                                                VT, OpVT);
2061       case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT,
2062                                                OpVT);
2063       }
2064     } else {
2065       // Ensure that the constant occurs on the RHS.
2066       ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond);
2067       MVT CompVT = N1.getValueType().getSimpleVT();
2068       if (!TLI->isCondCodeLegal(SwappedCond, CompVT))
2069         return SDValue();
2070 
2071       return getSetCC(dl, VT, N2, N1, SwappedCond);
2072     }
2073   }
2074 
2075   // Could not fold it.
2076   return SDValue();
2077 }
2078 
2079 /// See if the specified operand can be simplified with the knowledge that only
2080 /// the bits specified by Mask are used.
2081 SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &Mask) {
2082   switch (V.getOpcode()) {
2083   default:
2084     break;
2085   case ISD::Constant: {
2086     const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
2087     assert(CV && "Const value should be ConstSDNode.");
2088     const APInt &CVal = CV->getAPIntValue();
2089     APInt NewVal = CVal & Mask;
2090     if (NewVal != CVal)
2091       return getConstant(NewVal, SDLoc(V), V.getValueType());
2092     break;
2093   }
2094   case ISD::OR:
2095   case ISD::XOR:
2096     // If the LHS or RHS don't contribute bits to the or, drop them.
2097     if (MaskedValueIsZero(V.getOperand(0), Mask))
2098       return V.getOperand(1);
2099     if (MaskedValueIsZero(V.getOperand(1), Mask))
2100       return V.getOperand(0);
2101     break;
2102   case ISD::SRL:
2103     // Only look at single-use SRLs.
2104     if (!V.getNode()->hasOneUse())
2105       break;
2106     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
2107       // See if we can recursively simplify the LHS.
2108       unsigned Amt = RHSC->getZExtValue();
2109 
2110       // Watch out for shift count overflow though.
2111       if (Amt >= Mask.getBitWidth())
2112         break;
2113       APInt NewMask = Mask << Amt;
2114       if (SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask))
2115         return getNode(ISD::SRL, SDLoc(V), V.getValueType(), SimplifyLHS,
2116                        V.getOperand(1));
2117     }
2118     break;
2119   case ISD::AND: {
2120     // X & -1 -> X (ignoring bits which aren't demanded).
2121     ConstantSDNode *AndVal = isConstOrConstSplat(V.getOperand(1));
2122     if (AndVal && Mask.isSubsetOf(AndVal->getAPIntValue()))
2123       return V.getOperand(0);
2124     break;
2125   }
2126   case ISD::ANY_EXTEND: {
2127     SDValue Src = V.getOperand(0);
2128     unsigned SrcBitWidth = Src.getScalarValueSizeInBits();
2129     // Being conservative here - only peek through if we only demand bits in the
2130     // non-extended source (even though the extended bits are technically undef).
2131     if (Mask.getActiveBits() > SrcBitWidth)
2132       break;
2133     APInt SrcMask = Mask.trunc(SrcBitWidth);
2134     if (SDValue DemandedSrc = GetDemandedBits(Src, SrcMask))
2135       return getNode(ISD::ANY_EXTEND, SDLoc(V), V.getValueType(), DemandedSrc);
2136     break;
2137   }
2138   }
2139   return SDValue();
2140 }
2141 
2142 /// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
2143 /// use this predicate to simplify operations downstream.
2144 bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
2145   unsigned BitWidth = Op.getScalarValueSizeInBits();
2146   return MaskedValueIsZero(Op, APInt::getSignMask(BitWidth), Depth);
2147 }
2148 
2149 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
2150 /// this predicate to simplify operations downstream.  Mask is known to be zero
2151 /// for bits that V cannot have.
2152 bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
2153                                      unsigned Depth) const {
2154   return Mask.isSubsetOf(computeKnownBits(Op, Depth).Zero);
2155 }
2156 
2157 /// Helper function that checks to see if a node is a constant or a
2158 /// build vector of splat constants at least within the demanded elts.
2159 static ConstantSDNode *isConstOrDemandedConstSplat(SDValue N,
2160                                                    const APInt &DemandedElts) {
2161   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
2162     return CN;
2163   if (N.getOpcode() != ISD::BUILD_VECTOR)
2164     return nullptr;
2165   EVT VT = N.getValueType();
2166   ConstantSDNode *Cst = nullptr;
2167   unsigned NumElts = VT.getVectorNumElements();
2168   assert(DemandedElts.getBitWidth() == NumElts && "Unexpected vector size");
2169   for (unsigned i = 0; i != NumElts; ++i) {
2170     if (!DemandedElts[i])
2171       continue;
2172     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(i));
2173     if (!C || (Cst && Cst->getAPIntValue() != C->getAPIntValue()) ||
2174         C->getValueType(0) != VT.getScalarType())
2175       return nullptr;
2176     Cst = C;
2177   }
2178   return Cst;
2179 }
2180 
2181 /// If a SHL/SRA/SRL node has a constant or splat constant shift amount that
2182 /// is less than the element bit-width of the shift node, return it.
2183 static const APInt *getValidShiftAmountConstant(SDValue V) {
2184   if (ConstantSDNode *SA = isConstOrConstSplat(V.getOperand(1))) {
2185     // Shifting more than the bitwidth is not valid.
2186     const APInt &ShAmt = SA->getAPIntValue();
2187     if (ShAmt.ult(V.getScalarValueSizeInBits()))
2188       return &ShAmt;
2189   }
2190   return nullptr;
2191 }
2192 
2193 /// Determine which bits of Op are known to be either zero or one and return
2194 /// them in Known. For vectors, the known bits are those that are shared by
2195 /// every vector element.
2196 KnownBits SelectionDAG::computeKnownBits(SDValue Op, unsigned Depth) const {
2197   EVT VT = Op.getValueType();
2198   APInt DemandedElts = VT.isVector()
2199                            ? APInt::getAllOnesValue(VT.getVectorNumElements())
2200                            : APInt(1, 1);
2201   return computeKnownBits(Op, DemandedElts, Depth);
2202 }
2203 
2204 /// Determine which bits of Op are known to be either zero or one and return
2205 /// them in Known. The DemandedElts argument allows us to only collect the known
2206 /// bits that are shared by the requested vector elements.
2207 KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
2208                                          unsigned Depth) const {
2209   unsigned BitWidth = Op.getScalarValueSizeInBits();
2210 
2211   KnownBits Known(BitWidth);   // Don't know anything.
2212 
2213   if (auto *C = dyn_cast<ConstantSDNode>(Op)) {
2214     // We know all of the bits for a constant!
2215     Known.One = C->getAPIntValue();
2216     Known.Zero = ~Known.One;
2217     return Known;
2218   }
2219   if (auto *C = dyn_cast<ConstantFPSDNode>(Op)) {
2220     // We know all of the bits for a constant fp!
2221     Known.One = C->getValueAPF().bitcastToAPInt();
2222     Known.Zero = ~Known.One;
2223     return Known;
2224   }
2225 
2226   if (Depth == 6)
2227     return Known;  // Limit search depth.
2228 
2229   KnownBits Known2;
2230   unsigned NumElts = DemandedElts.getBitWidth();
2231 
2232   if (!DemandedElts)
2233     return Known;  // No demanded elts, better to assume we don't know anything.
2234 
2235   unsigned Opcode = Op.getOpcode();
2236   switch (Opcode) {
2237   case ISD::BUILD_VECTOR:
2238     // Collect the known bits that are shared by every demanded vector element.
2239     assert(NumElts == Op.getValueType().getVectorNumElements() &&
2240            "Unexpected vector size");
2241     Known.Zero.setAllBits(); Known.One.setAllBits();
2242     for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
2243       if (!DemandedElts[i])
2244         continue;
2245 
2246       SDValue SrcOp = Op.getOperand(i);
2247       Known2 = computeKnownBits(SrcOp, Depth + 1);
2248 
2249       // BUILD_VECTOR can implicitly truncate sources, we must handle this.
2250       if (SrcOp.getValueSizeInBits() != BitWidth) {
2251         assert(SrcOp.getValueSizeInBits() > BitWidth &&
2252                "Expected BUILD_VECTOR implicit truncation");
2253         Known2 = Known2.trunc(BitWidth);
2254       }
2255 
2256       // Known bits are the values that are shared by every demanded element.
2257       Known.One &= Known2.One;
2258       Known.Zero &= Known2.Zero;
2259 
2260       // If we don't know any bits, early out.
2261       if (Known.isUnknown())
2262         break;
2263     }
2264     break;
2265   case ISD::VECTOR_SHUFFLE: {
2266     // Collect the known bits that are shared by every vector element referenced
2267     // by the shuffle.
2268     APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
2269     Known.Zero.setAllBits(); Known.One.setAllBits();
2270     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
2271     assert(NumElts == SVN->getMask().size() && "Unexpected vector size");
2272     for (unsigned i = 0; i != NumElts; ++i) {
2273       if (!DemandedElts[i])
2274         continue;
2275 
2276       int M = SVN->getMaskElt(i);
2277       if (M < 0) {
2278         // For UNDEF elements, we don't know anything about the common state of
2279         // the shuffle result.
2280         Known.resetAll();
2281         DemandedLHS.clearAllBits();
2282         DemandedRHS.clearAllBits();
2283         break;
2284       }
2285 
2286       if ((unsigned)M < NumElts)
2287         DemandedLHS.setBit((unsigned)M % NumElts);
2288       else
2289         DemandedRHS.setBit((unsigned)M % NumElts);
2290     }
2291     // Known bits are the values that are shared by every demanded element.
2292     if (!!DemandedLHS) {
2293       SDValue LHS = Op.getOperand(0);
2294       Known2 = computeKnownBits(LHS, DemandedLHS, Depth + 1);
2295       Known.One &= Known2.One;
2296       Known.Zero &= Known2.Zero;
2297     }
2298     // If we don't know any bits, early out.
2299     if (Known.isUnknown())
2300       break;
2301     if (!!DemandedRHS) {
2302       SDValue RHS = Op.getOperand(1);
2303       Known2 = computeKnownBits(RHS, DemandedRHS, Depth + 1);
2304       Known.One &= Known2.One;
2305       Known.Zero &= Known2.Zero;
2306     }
2307     break;
2308   }
2309   case ISD::CONCAT_VECTORS: {
2310     // Split DemandedElts and test each of the demanded subvectors.
2311     Known.Zero.setAllBits(); Known.One.setAllBits();
2312     EVT SubVectorVT = Op.getOperand(0).getValueType();
2313     unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements();
2314     unsigned NumSubVectors = Op.getNumOperands();
2315     for (unsigned i = 0; i != NumSubVectors; ++i) {
2316       APInt DemandedSub = DemandedElts.lshr(i * NumSubVectorElts);
2317       DemandedSub = DemandedSub.trunc(NumSubVectorElts);
2318       if (!!DemandedSub) {
2319         SDValue Sub = Op.getOperand(i);
2320         Known2 = computeKnownBits(Sub, DemandedSub, Depth + 1);
2321         Known.One &= Known2.One;
2322         Known.Zero &= Known2.Zero;
2323       }
2324       // If we don't know any bits, early out.
2325       if (Known.isUnknown())
2326         break;
2327     }
2328     break;
2329   }
2330   case ISD::INSERT_SUBVECTOR: {
2331     // If we know the element index, demand any elements from the subvector and
2332     // the remainder from the src its inserted into, otherwise demand them all.
2333     SDValue Src = Op.getOperand(0);
2334     SDValue Sub = Op.getOperand(1);
2335     ConstantSDNode *SubIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2));
2336     unsigned NumSubElts = Sub.getValueType().getVectorNumElements();
2337     if (SubIdx && SubIdx->getAPIntValue().ule(NumElts - NumSubElts)) {
2338       Known.One.setAllBits();
2339       Known.Zero.setAllBits();
2340       uint64_t Idx = SubIdx->getZExtValue();
2341       APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx);
2342       if (!!DemandedSubElts) {
2343         Known = computeKnownBits(Sub, DemandedSubElts, Depth + 1);
2344         if (Known.isUnknown())
2345           break; // early-out.
2346       }
2347       APInt SubMask = APInt::getBitsSet(NumElts, Idx, Idx + NumSubElts);
2348       APInt DemandedSrcElts = DemandedElts & ~SubMask;
2349       if (!!DemandedSrcElts) {
2350         Known2 = computeKnownBits(Src, DemandedSrcElts, Depth + 1);
2351         Known.One &= Known2.One;
2352         Known.Zero &= Known2.Zero;
2353       }
2354     } else {
2355       Known = computeKnownBits(Sub, Depth + 1);
2356       if (Known.isUnknown())
2357         break; // early-out.
2358       Known2 = computeKnownBits(Src, Depth + 1);
2359       Known.One &= Known2.One;
2360       Known.Zero &= Known2.Zero;
2361     }
2362     break;
2363   }
2364   case ISD::EXTRACT_SUBVECTOR: {
2365     // If we know the element index, just demand that subvector elements,
2366     // otherwise demand them all.
2367     SDValue Src = Op.getOperand(0);
2368     ConstantSDNode *SubIdx = dyn_cast<ConstantSDNode>(Op.getOperand(1));
2369     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
2370     if (SubIdx && SubIdx->getAPIntValue().ule(NumSrcElts - NumElts)) {
2371       // Offset the demanded elts by the subvector index.
2372       uint64_t Idx = SubIdx->getZExtValue();
2373       APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx);
2374       Known = computeKnownBits(Src, DemandedSrc, Depth + 1);
2375     } else {
2376       Known = computeKnownBits(Src, Depth + 1);
2377     }
2378     break;
2379   }
2380   case ISD::BITCAST: {
2381     SDValue N0 = Op.getOperand(0);
2382     EVT SubVT = N0.getValueType();
2383     unsigned SubBitWidth = SubVT.getScalarSizeInBits();
2384 
2385     // Ignore bitcasts from unsupported types.
2386     if (!(SubVT.isInteger() || SubVT.isFloatingPoint()))
2387       break;
2388 
2389     // Fast handling of 'identity' bitcasts.
2390     if (BitWidth == SubBitWidth) {
2391       Known = computeKnownBits(N0, DemandedElts, Depth + 1);
2392       break;
2393     }
2394 
2395     bool IsLE = getDataLayout().isLittleEndian();
2396 
2397     // Bitcast 'small element' vector to 'large element' scalar/vector.
2398     if ((BitWidth % SubBitWidth) == 0) {
2399       assert(N0.getValueType().isVector() && "Expected bitcast from vector");
2400 
2401       // Collect known bits for the (larger) output by collecting the known
2402       // bits from each set of sub elements and shift these into place.
2403       // We need to separately call computeKnownBits for each set of
2404       // sub elements as the knownbits for each is likely to be different.
2405       unsigned SubScale = BitWidth / SubBitWidth;
2406       APInt SubDemandedElts(NumElts * SubScale, 0);
2407       for (unsigned i = 0; i != NumElts; ++i)
2408         if (DemandedElts[i])
2409           SubDemandedElts.setBit(i * SubScale);
2410 
2411       for (unsigned i = 0; i != SubScale; ++i) {
2412         Known2 = computeKnownBits(N0, SubDemandedElts.shl(i),
2413                          Depth + 1);
2414         unsigned Shifts = IsLE ? i : SubScale - 1 - i;
2415         Known.One |= Known2.One.zext(BitWidth).shl(SubBitWidth * Shifts);
2416         Known.Zero |= Known2.Zero.zext(BitWidth).shl(SubBitWidth * Shifts);
2417       }
2418     }
2419 
2420     // Bitcast 'large element' scalar/vector to 'small element' vector.
2421     if ((SubBitWidth % BitWidth) == 0) {
2422       assert(Op.getValueType().isVector() && "Expected bitcast to vector");
2423 
2424       // Collect known bits for the (smaller) output by collecting the known
2425       // bits from the overlapping larger input elements and extracting the
2426       // sub sections we actually care about.
2427       unsigned SubScale = SubBitWidth / BitWidth;
2428       APInt SubDemandedElts(NumElts / SubScale, 0);
2429       for (unsigned i = 0; i != NumElts; ++i)
2430         if (DemandedElts[i])
2431           SubDemandedElts.setBit(i / SubScale);
2432 
2433       Known2 = computeKnownBits(N0, SubDemandedElts, Depth + 1);
2434 
2435       Known.Zero.setAllBits(); Known.One.setAllBits();
2436       for (unsigned i = 0; i != NumElts; ++i)
2437         if (DemandedElts[i]) {
2438           unsigned Shifts = IsLE ? i : NumElts - 1 - i;
2439           unsigned Offset = (Shifts % SubScale) * BitWidth;
2440           Known.One &= Known2.One.lshr(Offset).trunc(BitWidth);
2441           Known.Zero &= Known2.Zero.lshr(Offset).trunc(BitWidth);
2442           // If we don't know any bits, early out.
2443           if (Known.isUnknown())
2444             break;
2445         }
2446     }
2447     break;
2448   }
2449   case ISD::AND:
2450     // If either the LHS or the RHS are Zero, the result is zero.
2451     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2452     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2453 
2454     // Output known-1 bits are only known if set in both the LHS & RHS.
2455     Known.One &= Known2.One;
2456     // Output known-0 are known to be clear if zero in either the LHS | RHS.
2457     Known.Zero |= Known2.Zero;
2458     break;
2459   case ISD::OR:
2460     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2461     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2462 
2463     // Output known-0 bits are only known if clear in both the LHS & RHS.
2464     Known.Zero &= Known2.Zero;
2465     // Output known-1 are known to be set if set in either the LHS | RHS.
2466     Known.One |= Known2.One;
2467     break;
2468   case ISD::XOR: {
2469     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2470     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2471 
2472     // Output known-0 bits are known if clear or set in both the LHS & RHS.
2473     APInt KnownZeroOut = (Known.Zero & Known2.Zero) | (Known.One & Known2.One);
2474     // Output known-1 are known to be set if set in only one of the LHS, RHS.
2475     Known.One = (Known.Zero & Known2.One) | (Known.One & Known2.Zero);
2476     Known.Zero = KnownZeroOut;
2477     break;
2478   }
2479   case ISD::MUL: {
2480     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2481     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2482 
2483     // If low bits are zero in either operand, output low known-0 bits.
2484     // Also compute a conservative estimate for high known-0 bits.
2485     // More trickiness is possible, but this is sufficient for the
2486     // interesting case of alignment computation.
2487     unsigned TrailZ = Known.countMinTrailingZeros() +
2488                       Known2.countMinTrailingZeros();
2489     unsigned LeadZ =  std::max(Known.countMinLeadingZeros() +
2490                                Known2.countMinLeadingZeros(),
2491                                BitWidth) - BitWidth;
2492 
2493     Known.resetAll();
2494     Known.Zero.setLowBits(std::min(TrailZ, BitWidth));
2495     Known.Zero.setHighBits(std::min(LeadZ, BitWidth));
2496     break;
2497   }
2498   case ISD::UDIV: {
2499     // For the purposes of computing leading zeros we can conservatively
2500     // treat a udiv as a logical right shift by the power of 2 known to
2501     // be less than the denominator.
2502     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2503     unsigned LeadZ = Known2.countMinLeadingZeros();
2504 
2505     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2506     unsigned RHSMaxLeadingZeros = Known2.countMaxLeadingZeros();
2507     if (RHSMaxLeadingZeros != BitWidth)
2508       LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
2509 
2510     Known.Zero.setHighBits(LeadZ);
2511     break;
2512   }
2513   case ISD::SELECT:
2514   case ISD::VSELECT:
2515     Known = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1);
2516     // If we don't know any bits, early out.
2517     if (Known.isUnknown())
2518       break;
2519     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth+1);
2520 
2521     // Only known if known in both the LHS and RHS.
2522     Known.One &= Known2.One;
2523     Known.Zero &= Known2.Zero;
2524     break;
2525   case ISD::SELECT_CC:
2526     Known = computeKnownBits(Op.getOperand(3), DemandedElts, Depth+1);
2527     // If we don't know any bits, early out.
2528     if (Known.isUnknown())
2529       break;
2530     Known2 = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1);
2531 
2532     // Only known if known in both the LHS and RHS.
2533     Known.One &= Known2.One;
2534     Known.Zero &= Known2.Zero;
2535     break;
2536   case ISD::SMULO:
2537   case ISD::UMULO:
2538   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
2539     if (Op.getResNo() != 1)
2540       break;
2541     // The boolean result conforms to getBooleanContents.
2542     // If we know the result of a setcc has the top bits zero, use this info.
2543     // We know that we have an integer-based boolean since these operations
2544     // are only available for integer.
2545     if (TLI->getBooleanContents(Op.getValueType().isVector(), false) ==
2546             TargetLowering::ZeroOrOneBooleanContent &&
2547         BitWidth > 1)
2548       Known.Zero.setBitsFrom(1);
2549     break;
2550   case ISD::SETCC:
2551     // If we know the result of a setcc has the top bits zero, use this info.
2552     if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
2553             TargetLowering::ZeroOrOneBooleanContent &&
2554         BitWidth > 1)
2555       Known.Zero.setBitsFrom(1);
2556     break;
2557   case ISD::SHL:
2558     if (const APInt *ShAmt = getValidShiftAmountConstant(Op)) {
2559       Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2560       unsigned Shift = ShAmt->getZExtValue();
2561       Known.Zero <<= Shift;
2562       Known.One <<= Shift;
2563       // Low bits are known zero.
2564       Known.Zero.setLowBits(Shift);
2565     }
2566     break;
2567   case ISD::SRL:
2568     if (const APInt *ShAmt = getValidShiftAmountConstant(Op)) {
2569       Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2570       unsigned Shift = ShAmt->getZExtValue();
2571       Known.Zero.lshrInPlace(Shift);
2572       Known.One.lshrInPlace(Shift);
2573       // High bits are known zero.
2574       Known.Zero.setHighBits(Shift);
2575     } else if (auto *BV = dyn_cast<BuildVectorSDNode>(Op.getOperand(1))) {
2576       // If the shift amount is a vector of constants see if we can bound
2577       // the number of upper zero bits.
2578       unsigned ShiftAmountMin = BitWidth;
2579       for (unsigned i = 0; i != BV->getNumOperands(); ++i) {
2580         if (auto *C = dyn_cast<ConstantSDNode>(BV->getOperand(i))) {
2581           const APInt &ShAmt = C->getAPIntValue();
2582           if (ShAmt.ult(BitWidth)) {
2583             ShiftAmountMin = std::min<unsigned>(ShiftAmountMin,
2584                                                 ShAmt.getZExtValue());
2585             continue;
2586           }
2587         }
2588         // Don't know anything.
2589         ShiftAmountMin = 0;
2590         break;
2591       }
2592 
2593       Known.Zero.setHighBits(ShiftAmountMin);
2594     }
2595     break;
2596   case ISD::SRA:
2597     if (const APInt *ShAmt = getValidShiftAmountConstant(Op)) {
2598       Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2599       unsigned Shift = ShAmt->getZExtValue();
2600       // Sign extend known zero/one bit (else is unknown).
2601       Known.Zero.ashrInPlace(Shift);
2602       Known.One.ashrInPlace(Shift);
2603     }
2604     break;
2605   case ISD::SIGN_EXTEND_INREG: {
2606     EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
2607     unsigned EBits = EVT.getScalarSizeInBits();
2608 
2609     // Sign extension.  Compute the demanded bits in the result that are not
2610     // present in the input.
2611     APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits);
2612 
2613     APInt InSignMask = APInt::getSignMask(EBits);
2614     APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
2615 
2616     // If the sign extended bits are demanded, we know that the sign
2617     // bit is demanded.
2618     InSignMask = InSignMask.zext(BitWidth);
2619     if (NewBits.getBoolValue())
2620       InputDemandedBits |= InSignMask;
2621 
2622     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2623     Known.One &= InputDemandedBits;
2624     Known.Zero &= InputDemandedBits;
2625 
2626     // If the sign bit of the input is known set or clear, then we know the
2627     // top bits of the result.
2628     if (Known.Zero.intersects(InSignMask)) {        // Input sign bit known clear
2629       Known.Zero |= NewBits;
2630       Known.One  &= ~NewBits;
2631     } else if (Known.One.intersects(InSignMask)) {  // Input sign bit known set
2632       Known.One  |= NewBits;
2633       Known.Zero &= ~NewBits;
2634     } else {                              // Input sign bit unknown
2635       Known.Zero &= ~NewBits;
2636       Known.One  &= ~NewBits;
2637     }
2638     break;
2639   }
2640   case ISD::CTTZ:
2641   case ISD::CTTZ_ZERO_UNDEF: {
2642     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2643     // If we have a known 1, its position is our upper bound.
2644     unsigned PossibleTZ = Known2.countMaxTrailingZeros();
2645     unsigned LowBits = Log2_32(PossibleTZ) + 1;
2646     Known.Zero.setBitsFrom(LowBits);
2647     break;
2648   }
2649   case ISD::CTLZ:
2650   case ISD::CTLZ_ZERO_UNDEF: {
2651     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2652     // If we have a known 1, its position is our upper bound.
2653     unsigned PossibleLZ = Known2.countMaxLeadingZeros();
2654     unsigned LowBits = Log2_32(PossibleLZ) + 1;
2655     Known.Zero.setBitsFrom(LowBits);
2656     break;
2657   }
2658   case ISD::CTPOP: {
2659     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2660     // If we know some of the bits are zero, they can't be one.
2661     unsigned PossibleOnes = Known2.countMaxPopulation();
2662     Known.Zero.setBitsFrom(Log2_32(PossibleOnes) + 1);
2663     break;
2664   }
2665   case ISD::LOAD: {
2666     LoadSDNode *LD = cast<LoadSDNode>(Op);
2667     // If this is a ZEXTLoad and we are looking at the loaded value.
2668     if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
2669       EVT VT = LD->getMemoryVT();
2670       unsigned MemBits = VT.getScalarSizeInBits();
2671       Known.Zero.setBitsFrom(MemBits);
2672     } else if (const MDNode *Ranges = LD->getRanges()) {
2673       if (LD->getExtensionType() == ISD::NON_EXTLOAD)
2674         computeKnownBitsFromRangeMetadata(*Ranges, Known);
2675     }
2676     break;
2677   }
2678   case ISD::ZERO_EXTEND_VECTOR_INREG: {
2679     EVT InVT = Op.getOperand(0).getValueType();
2680     APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements());
2681     Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1);
2682     Known = Known.zext(BitWidth);
2683     Known.Zero.setBitsFrom(InVT.getScalarSizeInBits());
2684     break;
2685   }
2686   case ISD::ZERO_EXTEND: {
2687     EVT InVT = Op.getOperand(0).getValueType();
2688     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2689     Known = Known.zext(BitWidth);
2690     Known.Zero.setBitsFrom(InVT.getScalarSizeInBits());
2691     break;
2692   }
2693   // TODO ISD::SIGN_EXTEND_VECTOR_INREG
2694   case ISD::SIGN_EXTEND: {
2695     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2696     // If the sign bit is known to be zero or one, then sext will extend
2697     // it to the top bits, else it will just zext.
2698     Known = Known.sext(BitWidth);
2699     break;
2700   }
2701   case ISD::ANY_EXTEND: {
2702     Known = computeKnownBits(Op.getOperand(0), Depth+1);
2703     Known = Known.zext(BitWidth);
2704     break;
2705   }
2706   case ISD::TRUNCATE: {
2707     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2708     Known = Known.trunc(BitWidth);
2709     break;
2710   }
2711   case ISD::AssertZext: {
2712     EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
2713     APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
2714     Known = computeKnownBits(Op.getOperand(0), Depth+1);
2715     Known.Zero |= (~InMask);
2716     Known.One  &= (~Known.Zero);
2717     break;
2718   }
2719   case ISD::FGETSIGN:
2720     // All bits are zero except the low bit.
2721     Known.Zero.setBitsFrom(1);
2722     break;
2723   case ISD::USUBO:
2724   case ISD::SSUBO:
2725     if (Op.getResNo() == 1) {
2726       // If we know the result of a setcc has the top bits zero, use this info.
2727       if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
2728               TargetLowering::ZeroOrOneBooleanContent &&
2729           BitWidth > 1)
2730         Known.Zero.setBitsFrom(1);
2731       break;
2732     }
2733     LLVM_FALLTHROUGH;
2734   case ISD::SUB:
2735   case ISD::SUBC: {
2736     if (ConstantSDNode *CLHS = isConstOrConstSplat(Op.getOperand(0))) {
2737       // We know that the top bits of C-X are clear if X contains less bits
2738       // than C (i.e. no wrap-around can happen).  For example, 20-X is
2739       // positive if we can prove that X is >= 0 and < 16.
2740       if (CLHS->getAPIntValue().isNonNegative()) {
2741         unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
2742         // NLZ can't be BitWidth with no sign bit
2743         APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
2744         Known2 = computeKnownBits(Op.getOperand(1), DemandedElts,
2745                          Depth + 1);
2746 
2747         // If all of the MaskV bits are known to be zero, then we know the
2748         // output top bits are zero, because we now know that the output is
2749         // from [0-C].
2750         if ((Known2.Zero & MaskV) == MaskV) {
2751           unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
2752           // Top bits known zero.
2753           Known.Zero.setHighBits(NLZ2);
2754         }
2755       }
2756     }
2757 
2758     // If low bits are know to be zero in both operands, then we know they are
2759     // going to be 0 in the result. Both addition and complement operations
2760     // preserve the low zero bits.
2761     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2762     unsigned KnownZeroLow = Known2.countMinTrailingZeros();
2763     if (KnownZeroLow == 0)
2764       break;
2765 
2766     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2767     KnownZeroLow = std::min(KnownZeroLow, Known2.countMinTrailingZeros());
2768     Known.Zero.setLowBits(KnownZeroLow);
2769     break;
2770   }
2771   case ISD::UADDO:
2772   case ISD::SADDO:
2773   case ISD::ADDCARRY:
2774     if (Op.getResNo() == 1) {
2775       // If we know the result of a setcc has the top bits zero, use this info.
2776       if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
2777               TargetLowering::ZeroOrOneBooleanContent &&
2778           BitWidth > 1)
2779         Known.Zero.setBitsFrom(1);
2780       break;
2781     }
2782     LLVM_FALLTHROUGH;
2783   case ISD::ADD:
2784   case ISD::ADDC:
2785   case ISD::ADDE: {
2786     // Output known-0 bits are known if clear or set in both the low clear bits
2787     // common to both LHS & RHS.  For example, 8+(X<<3) is known to have the
2788     // low 3 bits clear.
2789     // Output known-0 bits are also known if the top bits of each input are
2790     // known to be clear. For example, if one input has the top 10 bits clear
2791     // and the other has the top 8 bits clear, we know the top 7 bits of the
2792     // output must be clear.
2793     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2794     unsigned KnownZeroHigh = Known2.countMinLeadingZeros();
2795     unsigned KnownZeroLow = Known2.countMinTrailingZeros();
2796 
2797     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2798     KnownZeroHigh = std::min(KnownZeroHigh, Known2.countMinLeadingZeros());
2799     KnownZeroLow = std::min(KnownZeroLow, Known2.countMinTrailingZeros());
2800 
2801     if (Opcode == ISD::ADDE || Opcode == ISD::ADDCARRY) {
2802       // With ADDE and ADDCARRY, a carry bit may be added in, so we can only
2803       // use this information if we know (at least) that the low two bits are
2804       // clear. We then return to the caller that the low bit is unknown but
2805       // that other bits are known zero.
2806       if (KnownZeroLow >= 2)
2807         Known.Zero.setBits(1, KnownZeroLow);
2808       break;
2809     }
2810 
2811     Known.Zero.setLowBits(KnownZeroLow);
2812     if (KnownZeroHigh > 1)
2813       Known.Zero.setHighBits(KnownZeroHigh - 1);
2814     break;
2815   }
2816   case ISD::SREM:
2817     if (ConstantSDNode *Rem = isConstOrConstSplat(Op.getOperand(1))) {
2818       const APInt &RA = Rem->getAPIntValue().abs();
2819       if (RA.isPowerOf2()) {
2820         APInt LowBits = RA - 1;
2821         Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2822 
2823         // The low bits of the first operand are unchanged by the srem.
2824         Known.Zero = Known2.Zero & LowBits;
2825         Known.One = Known2.One & LowBits;
2826 
2827         // If the first operand is non-negative or has all low bits zero, then
2828         // the upper bits are all zero.
2829         if (Known2.Zero[BitWidth-1] || ((Known2.Zero & LowBits) == LowBits))
2830           Known.Zero |= ~LowBits;
2831 
2832         // If the first operand is negative and not all low bits are zero, then
2833         // the upper bits are all one.
2834         if (Known2.One[BitWidth-1] && ((Known2.One & LowBits) != 0))
2835           Known.One |= ~LowBits;
2836         assert((Known.Zero & Known.One) == 0&&"Bits known to be one AND zero?");
2837       }
2838     }
2839     break;
2840   case ISD::UREM: {
2841     if (ConstantSDNode *Rem = isConstOrConstSplat(Op.getOperand(1))) {
2842       const APInt &RA = Rem->getAPIntValue();
2843       if (RA.isPowerOf2()) {
2844         APInt LowBits = (RA - 1);
2845         Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2846 
2847         // The upper bits are all zero, the lower ones are unchanged.
2848         Known.Zero = Known2.Zero | ~LowBits;
2849         Known.One = Known2.One & LowBits;
2850         break;
2851       }
2852     }
2853 
2854     // Since the result is less than or equal to either operand, any leading
2855     // zero bits in either operand must also exist in the result.
2856     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2857     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2858 
2859     uint32_t Leaders =
2860         std::max(Known.countMinLeadingZeros(), Known2.countMinLeadingZeros());
2861     Known.resetAll();
2862     Known.Zero.setHighBits(Leaders);
2863     break;
2864   }
2865   case ISD::EXTRACT_ELEMENT: {
2866     Known = computeKnownBits(Op.getOperand(0), Depth+1);
2867     const unsigned Index = Op.getConstantOperandVal(1);
2868     const unsigned BitWidth = Op.getValueSizeInBits();
2869 
2870     // Remove low part of known bits mask
2871     Known.Zero = Known.Zero.getHiBits(Known.Zero.getBitWidth() - Index * BitWidth);
2872     Known.One = Known.One.getHiBits(Known.One.getBitWidth() - Index * BitWidth);
2873 
2874     // Remove high part of known bit mask
2875     Known = Known.trunc(BitWidth);
2876     break;
2877   }
2878   case ISD::EXTRACT_VECTOR_ELT: {
2879     SDValue InVec = Op.getOperand(0);
2880     SDValue EltNo = Op.getOperand(1);
2881     EVT VecVT = InVec.getValueType();
2882     const unsigned BitWidth = Op.getValueSizeInBits();
2883     const unsigned EltBitWidth = VecVT.getScalarSizeInBits();
2884     const unsigned NumSrcElts = VecVT.getVectorNumElements();
2885     // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
2886     // anything about the extended bits.
2887     if (BitWidth > EltBitWidth)
2888       Known = Known.trunc(EltBitWidth);
2889     ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
2890     if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts)) {
2891       // If we know the element index, just demand that vector element.
2892       unsigned Idx = ConstEltNo->getZExtValue();
2893       APInt DemandedElt = APInt::getOneBitSet(NumSrcElts, Idx);
2894       Known = computeKnownBits(InVec, DemandedElt, Depth + 1);
2895     } else {
2896       // Unknown element index, so ignore DemandedElts and demand them all.
2897       Known = computeKnownBits(InVec, Depth + 1);
2898     }
2899     if (BitWidth > EltBitWidth)
2900       Known = Known.zext(BitWidth);
2901     break;
2902   }
2903   case ISD::INSERT_VECTOR_ELT: {
2904     SDValue InVec = Op.getOperand(0);
2905     SDValue InVal = Op.getOperand(1);
2906     SDValue EltNo = Op.getOperand(2);
2907 
2908     ConstantSDNode *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
2909     if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
2910       // If we know the element index, split the demand between the
2911       // source vector and the inserted element.
2912       Known.Zero = Known.One = APInt::getAllOnesValue(BitWidth);
2913       unsigned EltIdx = CEltNo->getZExtValue();
2914 
2915       // If we demand the inserted element then add its common known bits.
2916       if (DemandedElts[EltIdx]) {
2917         Known2 = computeKnownBits(InVal, Depth + 1);
2918         Known.One &= Known2.One.zextOrTrunc(Known.One.getBitWidth());
2919         Known.Zero &= Known2.Zero.zextOrTrunc(Known.Zero.getBitWidth());
2920       }
2921 
2922       // If we demand the source vector then add its common known bits, ensuring
2923       // that we don't demand the inserted element.
2924       APInt VectorElts = DemandedElts & ~(APInt::getOneBitSet(NumElts, EltIdx));
2925       if (!!VectorElts) {
2926         Known2 = computeKnownBits(InVec, VectorElts, Depth + 1);
2927         Known.One &= Known2.One;
2928         Known.Zero &= Known2.Zero;
2929       }
2930     } else {
2931       // Unknown element index, so ignore DemandedElts and demand them all.
2932       Known = computeKnownBits(InVec, Depth + 1);
2933       Known2 = computeKnownBits(InVal, Depth + 1);
2934       Known.One &= Known2.One.zextOrTrunc(Known.One.getBitWidth());
2935       Known.Zero &= Known2.Zero.zextOrTrunc(Known.Zero.getBitWidth());
2936     }
2937     break;
2938   }
2939   case ISD::BITREVERSE: {
2940     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2941     Known.Zero = Known2.Zero.reverseBits();
2942     Known.One = Known2.One.reverseBits();
2943     break;
2944   }
2945   case ISD::BSWAP: {
2946     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2947     Known.Zero = Known2.Zero.byteSwap();
2948     Known.One = Known2.One.byteSwap();
2949     break;
2950   }
2951   case ISD::ABS: {
2952     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2953 
2954     // If the source's MSB is zero then we know the rest of the bits already.
2955     if (Known2.isNonNegative()) {
2956       Known.Zero = Known2.Zero;
2957       Known.One = Known2.One;
2958       break;
2959     }
2960 
2961     // We only know that the absolute values's MSB will be zero iff there is
2962     // a set bit that isn't the sign bit (otherwise it could be INT_MIN).
2963     Known2.One.clearSignBit();
2964     if (Known2.One.getBoolValue()) {
2965       Known.Zero = APInt::getSignMask(BitWidth);
2966       break;
2967     }
2968     break;
2969   }
2970   case ISD::UMIN: {
2971     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2972     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2973 
2974     // UMIN - we know that the result will have the maximum of the
2975     // known zero leading bits of the inputs.
2976     unsigned LeadZero = Known.countMinLeadingZeros();
2977     LeadZero = std::max(LeadZero, Known2.countMinLeadingZeros());
2978 
2979     Known.Zero &= Known2.Zero;
2980     Known.One &= Known2.One;
2981     Known.Zero.setHighBits(LeadZero);
2982     break;
2983   }
2984   case ISD::UMAX: {
2985     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
2986     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
2987 
2988     // UMAX - we know that the result will have the maximum of the
2989     // known one leading bits of the inputs.
2990     unsigned LeadOne = Known.countMinLeadingOnes();
2991     LeadOne = std::max(LeadOne, Known2.countMinLeadingOnes());
2992 
2993     Known.Zero &= Known2.Zero;
2994     Known.One &= Known2.One;
2995     Known.One.setHighBits(LeadOne);
2996     break;
2997   }
2998   case ISD::SMIN:
2999   case ISD::SMAX: {
3000     // If we have a clamp pattern, we know that the number of sign bits will be
3001     // the minimum of the clamp min/max range.
3002     bool IsMax = (Opcode == ISD::SMAX);
3003     ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr;
3004     if ((CstLow = isConstOrDemandedConstSplat(Op.getOperand(1), DemandedElts)))
3005       if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX))
3006         CstHigh = isConstOrDemandedConstSplat(Op.getOperand(0).getOperand(1),
3007                                               DemandedElts);
3008     if (CstLow && CstHigh) {
3009       if (!IsMax)
3010         std::swap(CstLow, CstHigh);
3011 
3012       const APInt &ValueLow = CstLow->getAPIntValue();
3013       const APInt &ValueHigh = CstHigh->getAPIntValue();
3014       if (ValueLow.sle(ValueHigh)) {
3015         unsigned LowSignBits = ValueLow.getNumSignBits();
3016         unsigned HighSignBits = ValueHigh.getNumSignBits();
3017         unsigned MinSignBits = std::min(LowSignBits, HighSignBits);
3018         if (ValueLow.isNegative() && ValueHigh.isNegative()) {
3019           Known.One.setHighBits(MinSignBits);
3020           break;
3021         }
3022         if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) {
3023           Known.Zero.setHighBits(MinSignBits);
3024           break;
3025         }
3026       }
3027     }
3028 
3029     // Fallback - just get the shared known bits of the operands.
3030     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3031     if (Known.isUnknown()) break; // Early-out
3032     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3033     Known.Zero &= Known2.Zero;
3034     Known.One &= Known2.One;
3035     break;
3036   }
3037   case ISD::FrameIndex:
3038   case ISD::TargetFrameIndex:
3039     TLI->computeKnownBitsForFrameIndex(Op, Known, DemandedElts, *this, Depth);
3040     break;
3041 
3042   default:
3043     if (Opcode < ISD::BUILTIN_OP_END)
3044       break;
3045     LLVM_FALLTHROUGH;
3046   case ISD::INTRINSIC_WO_CHAIN:
3047   case ISD::INTRINSIC_W_CHAIN:
3048   case ISD::INTRINSIC_VOID:
3049     // Allow the target to implement this method for its nodes.
3050     TLI->computeKnownBitsForTargetNode(Op, Known, DemandedElts, *this, Depth);
3051     break;
3052   }
3053 
3054   assert(!Known.hasConflict() && "Bits known to be one AND zero?");
3055   return Known;
3056 }
3057 
3058 SelectionDAG::OverflowKind SelectionDAG::computeOverflowKind(SDValue N0,
3059                                                              SDValue N1) const {
3060   // X + 0 never overflow
3061   if (isNullConstant(N1))
3062     return OFK_Never;
3063 
3064   KnownBits N1Known;
3065   computeKnownBits(N1, N1Known);
3066   if (N1Known.Zero.getBoolValue()) {
3067     KnownBits N0Known;
3068     computeKnownBits(N0, N0Known);
3069 
3070     bool overflow;
3071     (void)(~N0Known.Zero).uadd_ov(~N1Known.Zero, overflow);
3072     if (!overflow)
3073       return OFK_Never;
3074   }
3075 
3076   // mulhi + 1 never overflow
3077   if (N0.getOpcode() == ISD::UMUL_LOHI && N0.getResNo() == 1 &&
3078       (~N1Known.Zero & 0x01) == ~N1Known.Zero)
3079     return OFK_Never;
3080 
3081   if (N1.getOpcode() == ISD::UMUL_LOHI && N1.getResNo() == 1) {
3082     KnownBits N0Known;
3083     computeKnownBits(N0, N0Known);
3084 
3085     if ((~N0Known.Zero & 0x01) == ~N0Known.Zero)
3086       return OFK_Never;
3087   }
3088 
3089   return OFK_Sometime;
3090 }
3091 
3092 bool SelectionDAG::isKnownToBeAPowerOfTwo(SDValue Val) const {
3093   EVT OpVT = Val.getValueType();
3094   unsigned BitWidth = OpVT.getScalarSizeInBits();
3095 
3096   // Is the constant a known power of 2?
3097   if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Val))
3098     return Const->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2();
3099 
3100   // A left-shift of a constant one will have exactly one bit set because
3101   // shifting the bit off the end is undefined.
3102   if (Val.getOpcode() == ISD::SHL) {
3103     auto *C = isConstOrConstSplat(Val.getOperand(0));
3104     if (C && C->getAPIntValue() == 1)
3105       return true;
3106   }
3107 
3108   // Similarly, a logical right-shift of a constant sign-bit will have exactly
3109   // one bit set.
3110   if (Val.getOpcode() == ISD::SRL) {
3111     auto *C = isConstOrConstSplat(Val.getOperand(0));
3112     if (C && C->getAPIntValue().isSignMask())
3113       return true;
3114   }
3115 
3116   // Are all operands of a build vector constant powers of two?
3117   if (Val.getOpcode() == ISD::BUILD_VECTOR)
3118     if (llvm::all_of(Val->ops(), [BitWidth](SDValue E) {
3119           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(E))
3120             return C->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2();
3121           return false;
3122         }))
3123       return true;
3124 
3125   // More could be done here, though the above checks are enough
3126   // to handle some common cases.
3127 
3128   // Fall back to computeKnownBits to catch other known cases.
3129   KnownBits Known = computeKnownBits(Val);
3130   return (Known.countMaxPopulation() == 1) && (Known.countMinPopulation() == 1);
3131 }
3132 
3133 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const {
3134   EVT VT = Op.getValueType();
3135   APInt DemandedElts = VT.isVector()
3136                            ? APInt::getAllOnesValue(VT.getVectorNumElements())
3137                            : APInt(1, 1);
3138   return ComputeNumSignBits(Op, DemandedElts, Depth);
3139 }
3140 
3141 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, const APInt &DemandedElts,
3142                                           unsigned Depth) const {
3143   EVT VT = Op.getValueType();
3144   assert((VT.isInteger() || VT.isFloatingPoint()) && "Invalid VT!");
3145   unsigned VTBits = VT.getScalarSizeInBits();
3146   unsigned NumElts = DemandedElts.getBitWidth();
3147   unsigned Tmp, Tmp2;
3148   unsigned FirstAnswer = 1;
3149 
3150   if (auto *C = dyn_cast<ConstantSDNode>(Op)) {
3151     const APInt &Val = C->getAPIntValue();
3152     return Val.getNumSignBits();
3153   }
3154 
3155   if (Depth == 6)
3156     return 1;  // Limit search depth.
3157 
3158   if (!DemandedElts)
3159     return 1;  // No demanded elts, better to assume we don't know anything.
3160 
3161   unsigned Opcode = Op.getOpcode();
3162   switch (Opcode) {
3163   default: break;
3164   case ISD::AssertSext:
3165     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
3166     return VTBits-Tmp+1;
3167   case ISD::AssertZext:
3168     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
3169     return VTBits-Tmp;
3170 
3171   case ISD::BUILD_VECTOR:
3172     Tmp = VTBits;
3173     for (unsigned i = 0, e = Op.getNumOperands(); (i < e) && (Tmp > 1); ++i) {
3174       if (!DemandedElts[i])
3175         continue;
3176 
3177       SDValue SrcOp = Op.getOperand(i);
3178       Tmp2 = ComputeNumSignBits(Op.getOperand(i), Depth + 1);
3179 
3180       // BUILD_VECTOR can implicitly truncate sources, we must handle this.
3181       if (SrcOp.getValueSizeInBits() != VTBits) {
3182         assert(SrcOp.getValueSizeInBits() > VTBits &&
3183                "Expected BUILD_VECTOR implicit truncation");
3184         unsigned ExtraBits = SrcOp.getValueSizeInBits() - VTBits;
3185         Tmp2 = (Tmp2 > ExtraBits ? Tmp2 - ExtraBits : 1);
3186       }
3187       Tmp = std::min(Tmp, Tmp2);
3188     }
3189     return Tmp;
3190 
3191   case ISD::VECTOR_SHUFFLE: {
3192     // Collect the minimum number of sign bits that are shared by every vector
3193     // element referenced by the shuffle.
3194     APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
3195     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
3196     assert(NumElts == SVN->getMask().size() && "Unexpected vector size");
3197     for (unsigned i = 0; i != NumElts; ++i) {
3198       int M = SVN->getMaskElt(i);
3199       if (!DemandedElts[i])
3200         continue;
3201       // For UNDEF elements, we don't know anything about the common state of
3202       // the shuffle result.
3203       if (M < 0)
3204         return 1;
3205       if ((unsigned)M < NumElts)
3206         DemandedLHS.setBit((unsigned)M % NumElts);
3207       else
3208         DemandedRHS.setBit((unsigned)M % NumElts);
3209     }
3210     Tmp = std::numeric_limits<unsigned>::max();
3211     if (!!DemandedLHS)
3212       Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedLHS, Depth + 1);
3213     if (!!DemandedRHS) {
3214       Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedRHS, Depth + 1);
3215       Tmp = std::min(Tmp, Tmp2);
3216     }
3217     // If we don't know anything, early out and try computeKnownBits fall-back.
3218     if (Tmp == 1)
3219       break;
3220     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
3221     return Tmp;
3222   }
3223 
3224   case ISD::BITCAST: {
3225     SDValue N0 = Op.getOperand(0);
3226     EVT SrcVT = N0.getValueType();
3227     unsigned SrcBits = SrcVT.getScalarSizeInBits();
3228 
3229     // Ignore bitcasts from unsupported types..
3230     if (!(SrcVT.isInteger() || SrcVT.isFloatingPoint()))
3231       break;
3232 
3233     // Fast handling of 'identity' bitcasts.
3234     if (VTBits == SrcBits)
3235       return ComputeNumSignBits(N0, DemandedElts, Depth + 1);
3236 
3237     bool IsLE = getDataLayout().isLittleEndian();
3238 
3239     // Bitcast 'large element' scalar/vector to 'small element' vector.
3240     if ((SrcBits % VTBits) == 0) {
3241       assert(VT.isVector() && "Expected bitcast to vector");
3242 
3243       unsigned Scale = SrcBits / VTBits;
3244       APInt SrcDemandedElts(NumElts / Scale, 0);
3245       for (unsigned i = 0; i != NumElts; ++i)
3246         if (DemandedElts[i])
3247           SrcDemandedElts.setBit(i / Scale);
3248 
3249       // Fast case - sign splat can be simply split across the small elements.
3250       Tmp = ComputeNumSignBits(N0, SrcDemandedElts, Depth + 1);
3251       if (Tmp == SrcBits)
3252         return VTBits;
3253 
3254       // Slow case - determine how far the sign extends into each sub-element.
3255       Tmp2 = VTBits;
3256       for (unsigned i = 0; i != NumElts; ++i)
3257         if (DemandedElts[i]) {
3258           unsigned SubOffset = i % Scale;
3259           SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
3260           SubOffset = SubOffset * VTBits;
3261           if (Tmp <= SubOffset)
3262             return 1;
3263           Tmp2 = std::min(Tmp2, Tmp - SubOffset);
3264         }
3265       return Tmp2;
3266     }
3267     break;
3268   }
3269 
3270   case ISD::SIGN_EXTEND:
3271     Tmp = VTBits - Op.getOperand(0).getScalarValueSizeInBits();
3272     return ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1) + Tmp;
3273   case ISD::SIGN_EXTEND_INREG:
3274     // Max of the input and what this extends.
3275     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarSizeInBits();
3276     Tmp = VTBits-Tmp+1;
3277     Tmp2 = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
3278     return std::max(Tmp, Tmp2);
3279   case ISD::SIGN_EXTEND_VECTOR_INREG: {
3280     SDValue Src = Op.getOperand(0);
3281     EVT SrcVT = Src.getValueType();
3282     APInt DemandedSrcElts = DemandedElts.zextOrSelf(SrcVT.getVectorNumElements());
3283     Tmp = VTBits - SrcVT.getScalarSizeInBits();
3284     return ComputeNumSignBits(Src, DemandedSrcElts, Depth+1) + Tmp;
3285   }
3286 
3287   case ISD::SRA:
3288     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
3289     // SRA X, C   -> adds C sign bits.
3290     if (ConstantSDNode *C =
3291             isConstOrDemandedConstSplat(Op.getOperand(1), DemandedElts)) {
3292       APInt ShiftVal = C->getAPIntValue();
3293       ShiftVal += Tmp;
3294       Tmp = ShiftVal.uge(VTBits) ? VTBits : ShiftVal.getZExtValue();
3295     }
3296     return Tmp;
3297   case ISD::SHL:
3298     if (ConstantSDNode *C =
3299             isConstOrDemandedConstSplat(Op.getOperand(1), DemandedElts)) {
3300       // shl destroys sign bits.
3301       Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
3302       if (C->getAPIntValue().uge(VTBits) ||      // Bad shift.
3303           C->getAPIntValue().uge(Tmp)) break;    // Shifted all sign bits out.
3304       return Tmp - C->getZExtValue();
3305     }
3306     break;
3307   case ISD::AND:
3308   case ISD::OR:
3309   case ISD::XOR:    // NOT is handled here.
3310     // Logical binary ops preserve the number of sign bits at the worst.
3311     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
3312     if (Tmp != 1) {
3313       Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1);
3314       FirstAnswer = std::min(Tmp, Tmp2);
3315       // We computed what we know about the sign bits as our first
3316       // answer. Now proceed to the generic code that uses
3317       // computeKnownBits, and pick whichever answer is better.
3318     }
3319     break;
3320 
3321   case ISD::SELECT:
3322   case ISD::VSELECT:
3323     Tmp = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1);
3324     if (Tmp == 1) return 1;  // Early out.
3325     Tmp2 = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1);
3326     return std::min(Tmp, Tmp2);
3327   case ISD::SELECT_CC:
3328     Tmp = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1);
3329     if (Tmp == 1) return 1;  // Early out.
3330     Tmp2 = ComputeNumSignBits(Op.getOperand(3), DemandedElts, Depth+1);
3331     return std::min(Tmp, Tmp2);
3332 
3333   case ISD::SMIN:
3334   case ISD::SMAX: {
3335     // If we have a clamp pattern, we know that the number of sign bits will be
3336     // the minimum of the clamp min/max range.
3337     bool IsMax = (Opcode == ISD::SMAX);
3338     ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr;
3339     if ((CstLow = isConstOrDemandedConstSplat(Op.getOperand(1), DemandedElts)))
3340       if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX))
3341         CstHigh = isConstOrDemandedConstSplat(Op.getOperand(0).getOperand(1),
3342                                               DemandedElts);
3343     if (CstLow && CstHigh) {
3344       if (!IsMax)
3345         std::swap(CstLow, CstHigh);
3346       if (CstLow->getAPIntValue().sle(CstHigh->getAPIntValue())) {
3347         Tmp = CstLow->getAPIntValue().getNumSignBits();
3348         Tmp2 = CstHigh->getAPIntValue().getNumSignBits();
3349         return std::min(Tmp, Tmp2);
3350       }
3351     }
3352 
3353     // Fallback - just get the minimum number of sign bits of the operands.
3354     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth + 1);
3355     if (Tmp == 1)
3356       return 1;  // Early out.
3357     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth + 1);
3358     return std::min(Tmp, Tmp2);
3359   }
3360   case ISD::UMIN:
3361   case ISD::UMAX:
3362     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth + 1);
3363     if (Tmp == 1)
3364       return 1;  // Early out.
3365     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth + 1);
3366     return std::min(Tmp, Tmp2);
3367   case ISD::SADDO:
3368   case ISD::UADDO:
3369   case ISD::SSUBO:
3370   case ISD::USUBO:
3371   case ISD::SMULO:
3372   case ISD::UMULO:
3373     if (Op.getResNo() != 1)
3374       break;
3375     // The boolean result conforms to getBooleanContents.  Fall through.
3376     // If setcc returns 0/-1, all bits are sign bits.
3377     // We know that we have an integer-based boolean since these operations
3378     // are only available for integer.
3379     if (TLI->getBooleanContents(VT.isVector(), false) ==
3380         TargetLowering::ZeroOrNegativeOneBooleanContent)
3381       return VTBits;
3382     break;
3383   case ISD::SETCC:
3384     // If setcc returns 0/-1, all bits are sign bits.
3385     if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
3386         TargetLowering::ZeroOrNegativeOneBooleanContent)
3387       return VTBits;
3388     break;
3389   case ISD::ROTL:
3390   case ISD::ROTR:
3391     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
3392       unsigned RotAmt = C->getAPIntValue().urem(VTBits);
3393 
3394       // Handle rotate right by N like a rotate left by 32-N.
3395       if (Opcode == ISD::ROTR)
3396         RotAmt = (VTBits - RotAmt) % VTBits;
3397 
3398       // If we aren't rotating out all of the known-in sign bits, return the
3399       // number that are left.  This handles rotl(sext(x), 1) for example.
3400       Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
3401       if (Tmp > (RotAmt + 1)) return (Tmp - RotAmt);
3402     }
3403     break;
3404   case ISD::ADD:
3405   case ISD::ADDC:
3406     // Add can have at most one carry bit.  Thus we know that the output
3407     // is, at worst, one more bit than the inputs.
3408     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
3409     if (Tmp == 1) return 1;  // Early out.
3410 
3411     // Special case decrementing a value (ADD X, -1):
3412     if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
3413       if (CRHS->isAllOnesValue()) {
3414         KnownBits Known = computeKnownBits(Op.getOperand(0), Depth+1);
3415 
3416         // If the input is known to be 0 or 1, the output is 0/-1, which is all
3417         // sign bits set.
3418         if ((Known.Zero | 1).isAllOnesValue())
3419           return VTBits;
3420 
3421         // If we are subtracting one from a positive number, there is no carry
3422         // out of the result.
3423         if (Known.isNonNegative())
3424           return Tmp;
3425       }
3426 
3427     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
3428     if (Tmp2 == 1) return 1;
3429     return std::min(Tmp, Tmp2)-1;
3430 
3431   case ISD::SUB:
3432     Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
3433     if (Tmp2 == 1) return 1;
3434 
3435     // Handle NEG.
3436     if (ConstantSDNode *CLHS = isConstOrConstSplat(Op.getOperand(0)))
3437       if (CLHS->isNullValue()) {
3438         KnownBits Known = computeKnownBits(Op.getOperand(1), Depth+1);
3439         // If the input is known to be 0 or 1, the output is 0/-1, which is all
3440         // sign bits set.
3441         if ((Known.Zero | 1).isAllOnesValue())
3442           return VTBits;
3443 
3444         // If the input is known to be positive (the sign bit is known clear),
3445         // the output of the NEG has the same number of sign bits as the input.
3446         if (Known.isNonNegative())
3447           return Tmp2;
3448 
3449         // Otherwise, we treat this like a SUB.
3450       }
3451 
3452     // Sub can have at most one carry bit.  Thus we know that the output
3453     // is, at worst, one more bit than the inputs.
3454     Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
3455     if (Tmp == 1) return 1;  // Early out.
3456     return std::min(Tmp, Tmp2)-1;
3457   case ISD::TRUNCATE: {
3458     // Check if the sign bits of source go down as far as the truncated value.
3459     unsigned NumSrcBits = Op.getOperand(0).getScalarValueSizeInBits();
3460     unsigned NumSrcSignBits = ComputeNumSignBits(Op.getOperand(0), Depth + 1);
3461     if (NumSrcSignBits > (NumSrcBits - VTBits))
3462       return NumSrcSignBits - (NumSrcBits - VTBits);
3463     break;
3464   }
3465   case ISD::EXTRACT_ELEMENT: {
3466     const int KnownSign = ComputeNumSignBits(Op.getOperand(0), Depth+1);
3467     const int BitWidth = Op.getValueSizeInBits();
3468     const int Items = Op.getOperand(0).getValueSizeInBits() / BitWidth;
3469 
3470     // Get reverse index (starting from 1), Op1 value indexes elements from
3471     // little end. Sign starts at big end.
3472     const int rIndex = Items - 1 - Op.getConstantOperandVal(1);
3473 
3474     // If the sign portion ends in our element the subtraction gives correct
3475     // result. Otherwise it gives either negative or > bitwidth result
3476     return std::max(std::min(KnownSign - rIndex * BitWidth, BitWidth), 0);
3477   }
3478   case ISD::INSERT_VECTOR_ELT: {
3479     SDValue InVec = Op.getOperand(0);
3480     SDValue InVal = Op.getOperand(1);
3481     SDValue EltNo = Op.getOperand(2);
3482     unsigned NumElts = InVec.getValueType().getVectorNumElements();
3483 
3484     ConstantSDNode *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
3485     if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
3486       // If we know the element index, split the demand between the
3487       // source vector and the inserted element.
3488       unsigned EltIdx = CEltNo->getZExtValue();
3489 
3490       // If we demand the inserted element then get its sign bits.
3491       Tmp = std::numeric_limits<unsigned>::max();
3492       if (DemandedElts[EltIdx]) {
3493         // TODO - handle implicit truncation of inserted elements.
3494         if (InVal.getScalarValueSizeInBits() != VTBits)
3495           break;
3496         Tmp = ComputeNumSignBits(InVal, Depth + 1);
3497       }
3498 
3499       // If we demand the source vector then get its sign bits, and determine
3500       // the minimum.
3501       APInt VectorElts = DemandedElts;
3502       VectorElts.clearBit(EltIdx);
3503       if (!!VectorElts) {
3504         Tmp2 = ComputeNumSignBits(InVec, VectorElts, Depth + 1);
3505         Tmp = std::min(Tmp, Tmp2);
3506       }
3507     } else {
3508       // Unknown element index, so ignore DemandedElts and demand them all.
3509       Tmp = ComputeNumSignBits(InVec, Depth + 1);
3510       Tmp2 = ComputeNumSignBits(InVal, Depth + 1);
3511       Tmp = std::min(Tmp, Tmp2);
3512     }
3513     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
3514     return Tmp;
3515   }
3516   case ISD::EXTRACT_VECTOR_ELT: {
3517     SDValue InVec = Op.getOperand(0);
3518     SDValue EltNo = Op.getOperand(1);
3519     EVT VecVT = InVec.getValueType();
3520     const unsigned BitWidth = Op.getValueSizeInBits();
3521     const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits();
3522     const unsigned NumSrcElts = VecVT.getVectorNumElements();
3523 
3524     // If BitWidth > EltBitWidth the value is anyext:ed, and we do not know
3525     // anything about sign bits. But if the sizes match we can derive knowledge
3526     // about sign bits from the vector operand.
3527     if (BitWidth != EltBitWidth)
3528       break;
3529 
3530     // If we know the element index, just demand that vector element, else for
3531     // an unknown element index, ignore DemandedElts and demand them all.
3532     APInt DemandedSrcElts = APInt::getAllOnesValue(NumSrcElts);
3533     ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
3534     if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
3535       DemandedSrcElts =
3536           APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue());
3537 
3538     return ComputeNumSignBits(InVec, DemandedSrcElts, Depth + 1);
3539   }
3540   case ISD::EXTRACT_SUBVECTOR: {
3541     // If we know the element index, just demand that subvector elements,
3542     // otherwise demand them all.
3543     SDValue Src = Op.getOperand(0);
3544     ConstantSDNode *SubIdx = dyn_cast<ConstantSDNode>(Op.getOperand(1));
3545     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3546     if (SubIdx && SubIdx->getAPIntValue().ule(NumSrcElts - NumElts)) {
3547       // Offset the demanded elts by the subvector index.
3548       uint64_t Idx = SubIdx->getZExtValue();
3549       APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx);
3550       return ComputeNumSignBits(Src, DemandedSrc, Depth + 1);
3551     }
3552     return ComputeNumSignBits(Src, Depth + 1);
3553   }
3554   case ISD::CONCAT_VECTORS:
3555     // Determine the minimum number of sign bits across all demanded
3556     // elts of the input vectors. Early out if the result is already 1.
3557     Tmp = std::numeric_limits<unsigned>::max();
3558     EVT SubVectorVT = Op.getOperand(0).getValueType();
3559     unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements();
3560     unsigned NumSubVectors = Op.getNumOperands();
3561     for (unsigned i = 0; (i < NumSubVectors) && (Tmp > 1); ++i) {
3562       APInt DemandedSub = DemandedElts.lshr(i * NumSubVectorElts);
3563       DemandedSub = DemandedSub.trunc(NumSubVectorElts);
3564       if (!DemandedSub)
3565         continue;
3566       Tmp2 = ComputeNumSignBits(Op.getOperand(i), DemandedSub, Depth + 1);
3567       Tmp = std::min(Tmp, Tmp2);
3568     }
3569     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
3570     return Tmp;
3571   }
3572 
3573   // If we are looking at the loaded value of the SDNode.
3574   if (Op.getResNo() == 0) {
3575     // Handle LOADX separately here. EXTLOAD case will fallthrough.
3576     if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
3577       unsigned ExtType = LD->getExtensionType();
3578       switch (ExtType) {
3579         default: break;
3580         case ISD::SEXTLOAD:    // '17' bits known
3581           Tmp = LD->getMemoryVT().getScalarSizeInBits();
3582           return VTBits-Tmp+1;
3583         case ISD::ZEXTLOAD:    // '16' bits known
3584           Tmp = LD->getMemoryVT().getScalarSizeInBits();
3585           return VTBits-Tmp;
3586       }
3587     }
3588   }
3589 
3590   // Allow the target to implement this method for its nodes.
3591   if (Opcode >= ISD::BUILTIN_OP_END ||
3592       Opcode == ISD::INTRINSIC_WO_CHAIN ||
3593       Opcode == ISD::INTRINSIC_W_CHAIN ||
3594       Opcode == ISD::INTRINSIC_VOID) {
3595     unsigned NumBits =
3596         TLI->ComputeNumSignBitsForTargetNode(Op, DemandedElts, *this, Depth);
3597     if (NumBits > 1)
3598       FirstAnswer = std::max(FirstAnswer, NumBits);
3599   }
3600 
3601   // Finally, if we can prove that the top bits of the result are 0's or 1's,
3602   // use this information.
3603   KnownBits Known = computeKnownBits(Op, DemandedElts, Depth);
3604 
3605   APInt Mask;
3606   if (Known.isNonNegative()) {        // sign bit is 0
3607     Mask = Known.Zero;
3608   } else if (Known.isNegative()) {  // sign bit is 1;
3609     Mask = Known.One;
3610   } else {
3611     // Nothing known.
3612     return FirstAnswer;
3613   }
3614 
3615   // Okay, we know that the sign bit in Mask is set.  Use CLZ to determine
3616   // the number of identical bits in the top of the input value.
3617   Mask = ~Mask;
3618   Mask <<= Mask.getBitWidth()-VTBits;
3619   // Return # leading zeros.  We use 'min' here in case Val was zero before
3620   // shifting.  We don't want to return '64' as for an i32 "0".
3621   return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
3622 }
3623 
3624 bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
3625   if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
3626       !isa<ConstantSDNode>(Op.getOperand(1)))
3627     return false;
3628 
3629   if (Op.getOpcode() == ISD::OR &&
3630       !MaskedValueIsZero(Op.getOperand(0),
3631                      cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue()))
3632     return false;
3633 
3634   return true;
3635 }
3636 
3637 bool SelectionDAG::isKnownNeverNaN(SDValue Op, bool SNaN, unsigned Depth) const {
3638   // If we're told that NaNs won't happen, assume they won't.
3639   if (getTarget().Options.NoNaNsFPMath || Op->getFlags().hasNoNaNs())
3640     return true;
3641 
3642   if (Depth == 6)
3643     return false; // Limit search depth.
3644 
3645   // TODO: Handle vectors.
3646   // If the value is a constant, we can obviously see if it is a NaN or not.
3647   if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) {
3648     return !C->getValueAPF().isNaN() ||
3649            (SNaN && !C->getValueAPF().isSignaling());
3650   }
3651 
3652   unsigned Opcode = Op.getOpcode();
3653   switch (Opcode) {
3654   case ISD::FADD:
3655   case ISD::FSUB:
3656   case ISD::FMUL:
3657   case ISD::FDIV:
3658   case ISD::FREM:
3659   case ISD::FSIN:
3660   case ISD::FCOS: {
3661     if (SNaN)
3662       return true;
3663     // TODO: Need isKnownNeverInfinity
3664     return false;
3665   }
3666   case ISD::FCANONICALIZE:
3667   case ISD::FEXP:
3668   case ISD::FEXP2:
3669   case ISD::FTRUNC:
3670   case ISD::FFLOOR:
3671   case ISD::FCEIL:
3672   case ISD::FROUND:
3673   case ISD::FRINT:
3674   case ISD::FNEARBYINT: {
3675     if (SNaN)
3676       return true;
3677     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
3678   }
3679   case ISD::FABS:
3680   case ISD::FNEG:
3681   case ISD::FCOPYSIGN: {
3682     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
3683   }
3684   case ISD::SELECT:
3685     return isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) &&
3686            isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1);
3687   case ISD::FP_EXTEND:
3688   case ISD::FP_ROUND: {
3689     if (SNaN)
3690       return true;
3691     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
3692   }
3693   case ISD::SINT_TO_FP:
3694   case ISD::UINT_TO_FP:
3695     return true;
3696   case ISD::FMA:
3697   case ISD::FMAD: {
3698     if (SNaN)
3699       return true;
3700     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) &&
3701            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) &&
3702            isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1);
3703   }
3704   case ISD::FSQRT: // Need is known positive
3705   case ISD::FLOG:
3706   case ISD::FLOG2:
3707   case ISD::FLOG10:
3708   case ISD::FPOWI:
3709   case ISD::FPOW: {
3710     if (SNaN)
3711       return true;
3712     // TODO: Refine on operand
3713     return false;
3714   }
3715   case ISD::FMINNUM:
3716   case ISD::FMAXNUM: {
3717     // Only one needs to be known not-nan, since it will be returned if the
3718     // other ends up being one.
3719     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) ||
3720            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1);
3721   }
3722   case ISD::FMINNUM_IEEE:
3723   case ISD::FMAXNUM_IEEE: {
3724     if (SNaN)
3725       return true;
3726     // This can return a NaN if either operand is an sNaN, or if both operands
3727     // are NaN.
3728     return (isKnownNeverNaN(Op.getOperand(0), false, Depth + 1) &&
3729             isKnownNeverSNaN(Op.getOperand(1), Depth + 1)) ||
3730            (isKnownNeverNaN(Op.getOperand(1), false, Depth + 1) &&
3731             isKnownNeverSNaN(Op.getOperand(0), Depth + 1));
3732   }
3733   case ISD::FMINIMUM:
3734   case ISD::FMAXIMUM: {
3735     // TODO: Does this quiet or return the origina NaN as-is?
3736     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) &&
3737            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1);
3738   }
3739   case ISD::EXTRACT_VECTOR_ELT: {
3740     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
3741   }
3742   default:
3743     if (Opcode >= ISD::BUILTIN_OP_END ||
3744         Opcode == ISD::INTRINSIC_WO_CHAIN ||
3745         Opcode == ISD::INTRINSIC_W_CHAIN ||
3746         Opcode == ISD::INTRINSIC_VOID) {
3747       return TLI->isKnownNeverNaNForTargetNode(Op, *this, SNaN, Depth);
3748     }
3749 
3750     return false;
3751   }
3752 }
3753 
3754 bool SelectionDAG::isKnownNeverZeroFloat(SDValue Op) const {
3755   assert(Op.getValueType().isFloatingPoint() &&
3756          "Floating point type expected");
3757 
3758   // If the value is a constant, we can obviously see if it is a zero or not.
3759   // TODO: Add BuildVector support.
3760   if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
3761     return !C->isZero();
3762   return false;
3763 }
3764 
3765 bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
3766   assert(!Op.getValueType().isFloatingPoint() &&
3767          "Floating point types unsupported - use isKnownNeverZeroFloat");
3768 
3769   // If the value is a constant, we can obviously see if it is a zero or not.
3770   if (ISD::matchUnaryPredicate(
3771           Op, [](ConstantSDNode *C) { return !C->isNullValue(); }))
3772     return true;
3773 
3774   // TODO: Recognize more cases here.
3775   switch (Op.getOpcode()) {
3776   default: break;
3777   case ISD::OR:
3778     if (isKnownNeverZero(Op.getOperand(1)) ||
3779         isKnownNeverZero(Op.getOperand(0)))
3780       return true;
3781     break;
3782   }
3783 
3784   return false;
3785 }
3786 
3787 bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
3788   // Check the obvious case.
3789   if (A == B) return true;
3790 
3791   // For for negative and positive zero.
3792   if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
3793     if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
3794       if (CA->isZero() && CB->isZero()) return true;
3795 
3796   // Otherwise they may not be equal.
3797   return false;
3798 }
3799 
3800 // FIXME: unify with llvm::haveNoCommonBitsSet.
3801 // FIXME: could also handle masked merge pattern (X & ~M) op (Y & M)
3802 bool SelectionDAG::haveNoCommonBitsSet(SDValue A, SDValue B) const {
3803   assert(A.getValueType() == B.getValueType() &&
3804          "Values must have the same type");
3805   return (computeKnownBits(A).Zero | computeKnownBits(B).Zero).isAllOnesValue();
3806 }
3807 
3808 static SDValue FoldBUILD_VECTOR(const SDLoc &DL, EVT VT,
3809                                 ArrayRef<SDValue> Ops,
3810                                 SelectionDAG &DAG) {
3811   int NumOps = Ops.size();
3812   assert(NumOps != 0 && "Can't build an empty vector!");
3813   assert(VT.getVectorNumElements() == NumOps &&
3814          "Incorrect element count in BUILD_VECTOR!");
3815 
3816   // BUILD_VECTOR of UNDEFs is UNDEF.
3817   if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); }))
3818     return DAG.getUNDEF(VT);
3819 
3820   // BUILD_VECTOR of seq extract/insert from the same vector + type is Identity.
3821   SDValue IdentitySrc;
3822   bool IsIdentity = true;
3823   for (int i = 0; i != NumOps; ++i) {
3824     if (Ops[i].getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
3825         Ops[i].getOperand(0).getValueType() != VT ||
3826         (IdentitySrc && Ops[i].getOperand(0) != IdentitySrc) ||
3827         !isa<ConstantSDNode>(Ops[i].getOperand(1)) ||
3828         cast<ConstantSDNode>(Ops[i].getOperand(1))->getAPIntValue() != i) {
3829       IsIdentity = false;
3830       break;
3831     }
3832     IdentitySrc = Ops[i].getOperand(0);
3833   }
3834   if (IsIdentity)
3835     return IdentitySrc;
3836 
3837   return SDValue();
3838 }
3839 
3840 static SDValue FoldCONCAT_VECTORS(const SDLoc &DL, EVT VT,
3841                                   ArrayRef<SDValue> Ops,
3842                                   SelectionDAG &DAG) {
3843   assert(!Ops.empty() && "Can't concatenate an empty list of vectors!");
3844   assert(llvm::all_of(Ops,
3845                       [Ops](SDValue Op) {
3846                         return Ops[0].getValueType() == Op.getValueType();
3847                       }) &&
3848          "Concatenation of vectors with inconsistent value types!");
3849   assert((Ops.size() * Ops[0].getValueType().getVectorNumElements()) ==
3850              VT.getVectorNumElements() &&
3851          "Incorrect element count in vector concatenation!");
3852 
3853   if (Ops.size() == 1)
3854     return Ops[0];
3855 
3856   // Concat of UNDEFs is UNDEF.
3857   if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); }))
3858     return DAG.getUNDEF(VT);
3859 
3860   // A CONCAT_VECTOR with all UNDEF/BUILD_VECTOR operands can be
3861   // simplified to one big BUILD_VECTOR.
3862   // FIXME: Add support for SCALAR_TO_VECTOR as well.
3863   EVT SVT = VT.getScalarType();
3864   SmallVector<SDValue, 16> Elts;
3865   for (SDValue Op : Ops) {
3866     EVT OpVT = Op.getValueType();
3867     if (Op.isUndef())
3868       Elts.append(OpVT.getVectorNumElements(), DAG.getUNDEF(SVT));
3869     else if (Op.getOpcode() == ISD::BUILD_VECTOR)
3870       Elts.append(Op->op_begin(), Op->op_end());
3871     else
3872       return SDValue();
3873   }
3874 
3875   // BUILD_VECTOR requires all inputs to be of the same type, find the
3876   // maximum type and extend them all.
3877   for (SDValue Op : Elts)
3878     SVT = (SVT.bitsLT(Op.getValueType()) ? Op.getValueType() : SVT);
3879 
3880   if (SVT.bitsGT(VT.getScalarType()))
3881     for (SDValue &Op : Elts)
3882       Op = DAG.getTargetLoweringInfo().isZExtFree(Op.getValueType(), SVT)
3883                ? DAG.getZExtOrTrunc(Op, DL, SVT)
3884                : DAG.getSExtOrTrunc(Op, DL, SVT);
3885 
3886   SDValue V = DAG.getBuildVector(VT, DL, Elts);
3887   NewSDValueDbgMsg(V, "New node fold concat vectors: ", &DAG);
3888   return V;
3889 }
3890 
3891 /// Gets or creates the specified node.
3892 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT) {
3893   FoldingSetNodeID ID;
3894   AddNodeIDNode(ID, Opcode, getVTList(VT), None);
3895   void *IP = nullptr;
3896   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
3897     return SDValue(E, 0);
3898 
3899   auto *N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(),
3900                               getVTList(VT));
3901   CSEMap.InsertNode(N, IP);
3902 
3903   InsertNode(N);
3904   SDValue V = SDValue(N, 0);
3905   NewSDValueDbgMsg(V, "Creating new node: ", this);
3906   return V;
3907 }
3908 
3909 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
3910                               SDValue Operand, const SDNodeFlags Flags) {
3911   // Constant fold unary operations with an integer constant operand. Even
3912   // opaque constant will be folded, because the folding of unary operations
3913   // doesn't create new constants with different values. Nevertheless, the
3914   // opaque flag is preserved during folding to prevent future folding with
3915   // other constants.
3916   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand)) {
3917     const APInt &Val = C->getAPIntValue();
3918     switch (Opcode) {
3919     default: break;
3920     case ISD::SIGN_EXTEND:
3921       return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), DL, VT,
3922                          C->isTargetOpcode(), C->isOpaque());
3923     case ISD::TRUNCATE:
3924       if (C->isOpaque())
3925         break;
3926       LLVM_FALLTHROUGH;
3927     case ISD::ANY_EXTEND:
3928     case ISD::ZERO_EXTEND:
3929       return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), DL, VT,
3930                          C->isTargetOpcode(), C->isOpaque());
3931     case ISD::UINT_TO_FP:
3932     case ISD::SINT_TO_FP: {
3933       APFloat apf(EVTToAPFloatSemantics(VT),
3934                   APInt::getNullValue(VT.getSizeInBits()));
3935       (void)apf.convertFromAPInt(Val,
3936                                  Opcode==ISD::SINT_TO_FP,
3937                                  APFloat::rmNearestTiesToEven);
3938       return getConstantFP(apf, DL, VT);
3939     }
3940     case ISD::BITCAST:
3941       if (VT == MVT::f16 && C->getValueType(0) == MVT::i16)
3942         return getConstantFP(APFloat(APFloat::IEEEhalf(), Val), DL, VT);
3943       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
3944         return getConstantFP(APFloat(APFloat::IEEEsingle(), Val), DL, VT);
3945       if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
3946         return getConstantFP(APFloat(APFloat::IEEEdouble(), Val), DL, VT);
3947       if (VT == MVT::f128 && C->getValueType(0) == MVT::i128)
3948         return getConstantFP(APFloat(APFloat::IEEEquad(), Val), DL, VT);
3949       break;
3950     case ISD::ABS:
3951       return getConstant(Val.abs(), DL, VT, C->isTargetOpcode(),
3952                          C->isOpaque());
3953     case ISD::BITREVERSE:
3954       return getConstant(Val.reverseBits(), DL, VT, C->isTargetOpcode(),
3955                          C->isOpaque());
3956     case ISD::BSWAP:
3957       return getConstant(Val.byteSwap(), DL, VT, C->isTargetOpcode(),
3958                          C->isOpaque());
3959     case ISD::CTPOP:
3960       return getConstant(Val.countPopulation(), DL, VT, C->isTargetOpcode(),
3961                          C->isOpaque());
3962     case ISD::CTLZ:
3963     case ISD::CTLZ_ZERO_UNDEF:
3964       return getConstant(Val.countLeadingZeros(), DL, VT, C->isTargetOpcode(),
3965                          C->isOpaque());
3966     case ISD::CTTZ:
3967     case ISD::CTTZ_ZERO_UNDEF:
3968       return getConstant(Val.countTrailingZeros(), DL, VT, C->isTargetOpcode(),
3969                          C->isOpaque());
3970     case ISD::FP16_TO_FP: {
3971       bool Ignored;
3972       APFloat FPV(APFloat::IEEEhalf(),
3973                   (Val.getBitWidth() == 16) ? Val : Val.trunc(16));
3974 
3975       // This can return overflow, underflow, or inexact; we don't care.
3976       // FIXME need to be more flexible about rounding mode.
3977       (void)FPV.convert(EVTToAPFloatSemantics(VT),
3978                         APFloat::rmNearestTiesToEven, &Ignored);
3979       return getConstantFP(FPV, DL, VT);
3980     }
3981     }
3982   }
3983 
3984   // Constant fold unary operations with a floating point constant operand.
3985   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand)) {
3986     APFloat V = C->getValueAPF();    // make copy
3987     switch (Opcode) {
3988     case ISD::FNEG:
3989       V.changeSign();
3990       return getConstantFP(V, DL, VT);
3991     case ISD::FABS:
3992       V.clearSign();
3993       return getConstantFP(V, DL, VT);
3994     case ISD::FCEIL: {
3995       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
3996       if (fs == APFloat::opOK || fs == APFloat::opInexact)
3997         return getConstantFP(V, DL, VT);
3998       break;
3999     }
4000     case ISD::FTRUNC: {
4001       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
4002       if (fs == APFloat::opOK || fs == APFloat::opInexact)
4003         return getConstantFP(V, DL, VT);
4004       break;
4005     }
4006     case ISD::FFLOOR: {
4007       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
4008       if (fs == APFloat::opOK || fs == APFloat::opInexact)
4009         return getConstantFP(V, DL, VT);
4010       break;
4011     }
4012     case ISD::FP_EXTEND: {
4013       bool ignored;
4014       // This can return overflow, underflow, or inexact; we don't care.
4015       // FIXME need to be more flexible about rounding mode.
4016       (void)V.convert(EVTToAPFloatSemantics(VT),
4017                       APFloat::rmNearestTiesToEven, &ignored);
4018       return getConstantFP(V, DL, VT);
4019     }
4020     case ISD::FP_TO_SINT:
4021     case ISD::FP_TO_UINT: {
4022       bool ignored;
4023       APSInt IntVal(VT.getSizeInBits(), Opcode == ISD::FP_TO_UINT);
4024       // FIXME need to be more flexible about rounding mode.
4025       APFloat::opStatus s =
4026           V.convertToInteger(IntVal, APFloat::rmTowardZero, &ignored);
4027       if (s == APFloat::opInvalidOp) // inexact is OK, in fact usual
4028         break;
4029       return getConstant(IntVal, DL, VT);
4030     }
4031     case ISD::BITCAST:
4032       if (VT == MVT::i16 && C->getValueType(0) == MVT::f16)
4033         return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
4034       else if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
4035         return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
4036       else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
4037         return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT);
4038       break;
4039     case ISD::FP_TO_FP16: {
4040       bool Ignored;
4041       // This can return overflow, underflow, or inexact; we don't care.
4042       // FIXME need to be more flexible about rounding mode.
4043       (void)V.convert(APFloat::IEEEhalf(),
4044                       APFloat::rmNearestTiesToEven, &Ignored);
4045       return getConstant(V.bitcastToAPInt(), DL, VT);
4046     }
4047     }
4048   }
4049 
4050   // Constant fold unary operations with a vector integer or float operand.
4051   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Operand)) {
4052     if (BV->isConstant()) {
4053       switch (Opcode) {
4054       default:
4055         // FIXME: Entirely reasonable to perform folding of other unary
4056         // operations here as the need arises.
4057         break;
4058       case ISD::FNEG:
4059       case ISD::FABS:
4060       case ISD::FCEIL:
4061       case ISD::FTRUNC:
4062       case ISD::FFLOOR:
4063       case ISD::FP_EXTEND:
4064       case ISD::FP_TO_SINT:
4065       case ISD::FP_TO_UINT:
4066       case ISD::TRUNCATE:
4067       case ISD::ANY_EXTEND:
4068       case ISD::ZERO_EXTEND:
4069       case ISD::SIGN_EXTEND:
4070       case ISD::UINT_TO_FP:
4071       case ISD::SINT_TO_FP:
4072       case ISD::ABS:
4073       case ISD::BITREVERSE:
4074       case ISD::BSWAP:
4075       case ISD::CTLZ:
4076       case ISD::CTLZ_ZERO_UNDEF:
4077       case ISD::CTTZ:
4078       case ISD::CTTZ_ZERO_UNDEF:
4079       case ISD::CTPOP: {
4080         SDValue Ops = { Operand };
4081         if (SDValue Fold = FoldConstantVectorArithmetic(Opcode, DL, VT, Ops))
4082           return Fold;
4083       }
4084       }
4085     }
4086   }
4087 
4088   unsigned OpOpcode = Operand.getNode()->getOpcode();
4089   switch (Opcode) {
4090   case ISD::TokenFactor:
4091   case ISD::MERGE_VALUES:
4092   case ISD::CONCAT_VECTORS:
4093     return Operand;         // Factor, merge or concat of one node?  No need.
4094   case ISD::BUILD_VECTOR: {
4095     // Attempt to simplify BUILD_VECTOR.
4096     SDValue Ops[] = {Operand};
4097     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
4098       return V;
4099     break;
4100   }
4101   case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
4102   case ISD::FP_EXTEND:
4103     assert(VT.isFloatingPoint() &&
4104            Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
4105     if (Operand.getValueType() == VT) return Operand;  // noop conversion.
4106     assert((!VT.isVector() ||
4107             VT.getVectorNumElements() ==
4108             Operand.getValueType().getVectorNumElements()) &&
4109            "Vector element count mismatch!");
4110     assert(Operand.getValueType().bitsLT(VT) &&
4111            "Invalid fpext node, dst < src!");
4112     if (Operand.isUndef())
4113       return getUNDEF(VT);
4114     break;
4115   case ISD::SIGN_EXTEND:
4116     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
4117            "Invalid SIGN_EXTEND!");
4118     if (Operand.getValueType() == VT) return Operand;   // noop extension
4119     assert((!VT.isVector() ||
4120             VT.getVectorNumElements() ==
4121             Operand.getValueType().getVectorNumElements()) &&
4122            "Vector element count mismatch!");
4123     assert(Operand.getValueType().bitsLT(VT) &&
4124            "Invalid sext node, dst < src!");
4125     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
4126       return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
4127     else if (OpOpcode == ISD::UNDEF)
4128       // sext(undef) = 0, because the top bits will all be the same.
4129       return getConstant(0, DL, VT);
4130     break;
4131   case ISD::ZERO_EXTEND:
4132     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
4133            "Invalid ZERO_EXTEND!");
4134     if (Operand.getValueType() == VT) return Operand;   // noop extension
4135     assert((!VT.isVector() ||
4136             VT.getVectorNumElements() ==
4137             Operand.getValueType().getVectorNumElements()) &&
4138            "Vector element count mismatch!");
4139     assert(Operand.getValueType().bitsLT(VT) &&
4140            "Invalid zext node, dst < src!");
4141     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
4142       return getNode(ISD::ZERO_EXTEND, DL, VT, Operand.getOperand(0));
4143     else if (OpOpcode == ISD::UNDEF)
4144       // zext(undef) = 0, because the top bits will be zero.
4145       return getConstant(0, DL, VT);
4146     break;
4147   case ISD::ANY_EXTEND:
4148     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
4149            "Invalid ANY_EXTEND!");
4150     if (Operand.getValueType() == VT) return Operand;   // noop extension
4151     assert((!VT.isVector() ||
4152             VT.getVectorNumElements() ==
4153             Operand.getValueType().getVectorNumElements()) &&
4154            "Vector element count mismatch!");
4155     assert(Operand.getValueType().bitsLT(VT) &&
4156            "Invalid anyext node, dst < src!");
4157 
4158     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
4159         OpOpcode == ISD::ANY_EXTEND)
4160       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
4161       return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
4162     else if (OpOpcode == ISD::UNDEF)
4163       return getUNDEF(VT);
4164 
4165     // (ext (trunc x)) -> x
4166     if (OpOpcode == ISD::TRUNCATE) {
4167       SDValue OpOp = Operand.getOperand(0);
4168       if (OpOp.getValueType() == VT) {
4169         transferDbgValues(Operand, OpOp);
4170         return OpOp;
4171       }
4172     }
4173     break;
4174   case ISD::TRUNCATE:
4175     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
4176            "Invalid TRUNCATE!");
4177     if (Operand.getValueType() == VT) return Operand;   // noop truncate
4178     assert((!VT.isVector() ||
4179             VT.getVectorNumElements() ==
4180             Operand.getValueType().getVectorNumElements()) &&
4181            "Vector element count mismatch!");
4182     assert(Operand.getValueType().bitsGT(VT) &&
4183            "Invalid truncate node, src < dst!");
4184     if (OpOpcode == ISD::TRUNCATE)
4185       return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0));
4186     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
4187         OpOpcode == ISD::ANY_EXTEND) {
4188       // If the source is smaller than the dest, we still need an extend.
4189       if (Operand.getOperand(0).getValueType().getScalarType()
4190             .bitsLT(VT.getScalarType()))
4191         return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
4192       if (Operand.getOperand(0).getValueType().bitsGT(VT))
4193         return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0));
4194       return Operand.getOperand(0);
4195     }
4196     if (OpOpcode == ISD::UNDEF)
4197       return getUNDEF(VT);
4198     break;
4199   case ISD::ABS:
4200     assert(VT.isInteger() && VT == Operand.getValueType() &&
4201            "Invalid ABS!");
4202     if (OpOpcode == ISD::UNDEF)
4203       return getUNDEF(VT);
4204     break;
4205   case ISD::BSWAP:
4206     assert(VT.isInteger() && VT == Operand.getValueType() &&
4207            "Invalid BSWAP!");
4208     assert((VT.getScalarSizeInBits() % 16 == 0) &&
4209            "BSWAP types must be a multiple of 16 bits!");
4210     if (OpOpcode == ISD::UNDEF)
4211       return getUNDEF(VT);
4212     break;
4213   case ISD::BITREVERSE:
4214     assert(VT.isInteger() && VT == Operand.getValueType() &&
4215            "Invalid BITREVERSE!");
4216     if (OpOpcode == ISD::UNDEF)
4217       return getUNDEF(VT);
4218     break;
4219   case ISD::BITCAST:
4220     // Basic sanity checking.
4221     assert(VT.getSizeInBits() == Operand.getValueSizeInBits() &&
4222            "Cannot BITCAST between types of different sizes!");
4223     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
4224     if (OpOpcode == ISD::BITCAST)  // bitconv(bitconv(x)) -> bitconv(x)
4225       return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
4226     if (OpOpcode == ISD::UNDEF)
4227       return getUNDEF(VT);
4228     break;
4229   case ISD::SCALAR_TO_VECTOR:
4230     assert(VT.isVector() && !Operand.getValueType().isVector() &&
4231            (VT.getVectorElementType() == Operand.getValueType() ||
4232             (VT.getVectorElementType().isInteger() &&
4233              Operand.getValueType().isInteger() &&
4234              VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
4235            "Illegal SCALAR_TO_VECTOR node!");
4236     if (OpOpcode == ISD::UNDEF)
4237       return getUNDEF(VT);
4238     // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
4239     if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
4240         isa<ConstantSDNode>(Operand.getOperand(1)) &&
4241         Operand.getConstantOperandVal(1) == 0 &&
4242         Operand.getOperand(0).getValueType() == VT)
4243       return Operand.getOperand(0);
4244     break;
4245   case ISD::FNEG:
4246     // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0
4247     if ((getTarget().Options.UnsafeFPMath || Flags.hasNoSignedZeros()) &&
4248         OpOpcode == ISD::FSUB)
4249       return getNode(ISD::FSUB, DL, VT, Operand.getOperand(1),
4250                      Operand.getOperand(0), Flags);
4251     if (OpOpcode == ISD::FNEG)  // --X -> X
4252       return Operand.getOperand(0);
4253     break;
4254   case ISD::FABS:
4255     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
4256       return getNode(ISD::FABS, DL, VT, Operand.getOperand(0));
4257     break;
4258   }
4259 
4260   SDNode *N;
4261   SDVTList VTs = getVTList(VT);
4262   SDValue Ops[] = {Operand};
4263   if (VT != MVT::Glue) { // Don't CSE flag producing nodes
4264     FoldingSetNodeID ID;
4265     AddNodeIDNode(ID, Opcode, VTs, Ops);
4266     void *IP = nullptr;
4267     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
4268       E->intersectFlagsWith(Flags);
4269       return SDValue(E, 0);
4270     }
4271 
4272     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
4273     N->setFlags(Flags);
4274     createOperands(N, Ops);
4275     CSEMap.InsertNode(N, IP);
4276   } else {
4277     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
4278     createOperands(N, Ops);
4279   }
4280 
4281   InsertNode(N);
4282   SDValue V = SDValue(N, 0);
4283   NewSDValueDbgMsg(V, "Creating new node: ", this);
4284   return V;
4285 }
4286 
4287 static std::pair<APInt, bool> FoldValue(unsigned Opcode, const APInt &C1,
4288                                         const APInt &C2) {
4289   switch (Opcode) {
4290   case ISD::ADD:  return std::make_pair(C1 + C2, true);
4291   case ISD::SUB:  return std::make_pair(C1 - C2, true);
4292   case ISD::MUL:  return std::make_pair(C1 * C2, true);
4293   case ISD::AND:  return std::make_pair(C1 & C2, true);
4294   case ISD::OR:   return std::make_pair(C1 | C2, true);
4295   case ISD::XOR:  return std::make_pair(C1 ^ C2, true);
4296   case ISD::SHL:  return std::make_pair(C1 << C2, true);
4297   case ISD::SRL:  return std::make_pair(C1.lshr(C2), true);
4298   case ISD::SRA:  return std::make_pair(C1.ashr(C2), true);
4299   case ISD::ROTL: return std::make_pair(C1.rotl(C2), true);
4300   case ISD::ROTR: return std::make_pair(C1.rotr(C2), true);
4301   case ISD::SMIN: return std::make_pair(C1.sle(C2) ? C1 : C2, true);
4302   case ISD::SMAX: return std::make_pair(C1.sge(C2) ? C1 : C2, true);
4303   case ISD::UMIN: return std::make_pair(C1.ule(C2) ? C1 : C2, true);
4304   case ISD::UMAX: return std::make_pair(C1.uge(C2) ? C1 : C2, true);
4305   case ISD::UDIV:
4306     if (!C2.getBoolValue())
4307       break;
4308     return std::make_pair(C1.udiv(C2), true);
4309   case ISD::UREM:
4310     if (!C2.getBoolValue())
4311       break;
4312     return std::make_pair(C1.urem(C2), true);
4313   case ISD::SDIV:
4314     if (!C2.getBoolValue())
4315       break;
4316     return std::make_pair(C1.sdiv(C2), true);
4317   case ISD::SREM:
4318     if (!C2.getBoolValue())
4319       break;
4320     return std::make_pair(C1.srem(C2), true);
4321   }
4322   return std::make_pair(APInt(1, 0), false);
4323 }
4324 
4325 SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL,
4326                                              EVT VT, const ConstantSDNode *Cst1,
4327                                              const ConstantSDNode *Cst2) {
4328   if (Cst1->isOpaque() || Cst2->isOpaque())
4329     return SDValue();
4330 
4331   std::pair<APInt, bool> Folded = FoldValue(Opcode, Cst1->getAPIntValue(),
4332                                             Cst2->getAPIntValue());
4333   if (!Folded.second)
4334     return SDValue();
4335   return getConstant(Folded.first, DL, VT);
4336 }
4337 
4338 SDValue SelectionDAG::FoldSymbolOffset(unsigned Opcode, EVT VT,
4339                                        const GlobalAddressSDNode *GA,
4340                                        const SDNode *N2) {
4341   if (GA->getOpcode() != ISD::GlobalAddress)
4342     return SDValue();
4343   if (!TLI->isOffsetFoldingLegal(GA))
4344     return SDValue();
4345   const ConstantSDNode *Cst2 = dyn_cast<ConstantSDNode>(N2);
4346   if (!Cst2)
4347     return SDValue();
4348   int64_t Offset = Cst2->getSExtValue();
4349   switch (Opcode) {
4350   case ISD::ADD: break;
4351   case ISD::SUB: Offset = -uint64_t(Offset); break;
4352   default: return SDValue();
4353   }
4354   return getGlobalAddress(GA->getGlobal(), SDLoc(Cst2), VT,
4355                           GA->getOffset() + uint64_t(Offset));
4356 }
4357 
4358 bool SelectionDAG::isUndef(unsigned Opcode, ArrayRef<SDValue> Ops) {
4359   switch (Opcode) {
4360   case ISD::SDIV:
4361   case ISD::UDIV:
4362   case ISD::SREM:
4363   case ISD::UREM: {
4364     // If a divisor is zero/undef or any element of a divisor vector is
4365     // zero/undef, the whole op is undef.
4366     assert(Ops.size() == 2 && "Div/rem should have 2 operands");
4367     SDValue Divisor = Ops[1];
4368     if (Divisor.isUndef() || isNullConstant(Divisor))
4369       return true;
4370 
4371     return ISD::isBuildVectorOfConstantSDNodes(Divisor.getNode()) &&
4372            llvm::any_of(Divisor->op_values(),
4373                         [](SDValue V) { return V.isUndef() ||
4374                                         isNullConstant(V); });
4375     // TODO: Handle signed overflow.
4376   }
4377   // TODO: Handle oversized shifts.
4378   default:
4379     return false;
4380   }
4381 }
4382 
4383 SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL,
4384                                              EVT VT, SDNode *Cst1,
4385                                              SDNode *Cst2) {
4386   // If the opcode is a target-specific ISD node, there's nothing we can
4387   // do here and the operand rules may not line up with the below, so
4388   // bail early.
4389   if (Opcode >= ISD::BUILTIN_OP_END)
4390     return SDValue();
4391 
4392   if (isUndef(Opcode, {SDValue(Cst1, 0), SDValue(Cst2, 0)}))
4393     return getUNDEF(VT);
4394 
4395   // Handle the case of two scalars.
4396   if (const ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1)) {
4397     if (const ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2)) {
4398       SDValue Folded = FoldConstantArithmetic(Opcode, DL, VT, Scalar1, Scalar2);
4399       assert((!Folded || !VT.isVector()) &&
4400              "Can't fold vectors ops with scalar operands");
4401       return Folded;
4402     }
4403   }
4404 
4405   // fold (add Sym, c) -> Sym+c
4406   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Cst1))
4407     return FoldSymbolOffset(Opcode, VT, GA, Cst2);
4408   if (TLI->isCommutativeBinOp(Opcode))
4409     if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Cst2))
4410       return FoldSymbolOffset(Opcode, VT, GA, Cst1);
4411 
4412   // For vectors extract each constant element into Inputs so we can constant
4413   // fold them individually.
4414   BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1);
4415   BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2);
4416   if (!BV1 || !BV2)
4417     return SDValue();
4418 
4419   assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!");
4420 
4421   EVT SVT = VT.getScalarType();
4422   EVT LegalSVT = SVT;
4423   if (NewNodesMustHaveLegalTypes && LegalSVT.isInteger()) {
4424     LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT);
4425     if (LegalSVT.bitsLT(SVT))
4426       return SDValue();
4427   }
4428   SmallVector<SDValue, 4> Outputs;
4429   for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) {
4430     SDValue V1 = BV1->getOperand(I);
4431     SDValue V2 = BV2->getOperand(I);
4432 
4433     if (SVT.isInteger()) {
4434       if (V1->getValueType(0).bitsGT(SVT))
4435         V1 = getNode(ISD::TRUNCATE, DL, SVT, V1);
4436       if (V2->getValueType(0).bitsGT(SVT))
4437         V2 = getNode(ISD::TRUNCATE, DL, SVT, V2);
4438     }
4439 
4440     if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT)
4441       return SDValue();
4442 
4443     // Fold one vector element.
4444     SDValue ScalarResult = getNode(Opcode, DL, SVT, V1, V2);
4445     if (LegalSVT != SVT)
4446       ScalarResult = getNode(ISD::SIGN_EXTEND, DL, LegalSVT, ScalarResult);
4447 
4448     // Scalar folding only succeeded if the result is a constant or UNDEF.
4449     if (!ScalarResult.isUndef() && ScalarResult.getOpcode() != ISD::Constant &&
4450         ScalarResult.getOpcode() != ISD::ConstantFP)
4451       return SDValue();
4452     Outputs.push_back(ScalarResult);
4453   }
4454 
4455   assert(VT.getVectorNumElements() == Outputs.size() &&
4456          "Vector size mismatch!");
4457 
4458   // We may have a vector type but a scalar result. Create a splat.
4459   Outputs.resize(VT.getVectorNumElements(), Outputs.back());
4460 
4461   // Build a big vector out of the scalar elements we generated.
4462   return getBuildVector(VT, SDLoc(), Outputs);
4463 }
4464 
4465 // TODO: Merge with FoldConstantArithmetic
4466 SDValue SelectionDAG::FoldConstantVectorArithmetic(unsigned Opcode,
4467                                                    const SDLoc &DL, EVT VT,
4468                                                    ArrayRef<SDValue> Ops,
4469                                                    const SDNodeFlags Flags) {
4470   // If the opcode is a target-specific ISD node, there's nothing we can
4471   // do here and the operand rules may not line up with the below, so
4472   // bail early.
4473   if (Opcode >= ISD::BUILTIN_OP_END)
4474     return SDValue();
4475 
4476   if (isUndef(Opcode, Ops))
4477     return getUNDEF(VT);
4478 
4479   // We can only fold vectors - maybe merge with FoldConstantArithmetic someday?
4480   if (!VT.isVector())
4481     return SDValue();
4482 
4483   unsigned NumElts = VT.getVectorNumElements();
4484 
4485   auto IsScalarOrSameVectorSize = [&](const SDValue &Op) {
4486     return !Op.getValueType().isVector() ||
4487            Op.getValueType().getVectorNumElements() == NumElts;
4488   };
4489 
4490   auto IsConstantBuildVectorOrUndef = [&](const SDValue &Op) {
4491     BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op);
4492     return (Op.isUndef()) || (Op.getOpcode() == ISD::CONDCODE) ||
4493            (BV && BV->isConstant());
4494   };
4495 
4496   // All operands must be vector types with the same number of elements as
4497   // the result type and must be either UNDEF or a build vector of constant
4498   // or UNDEF scalars.
4499   if (!llvm::all_of(Ops, IsConstantBuildVectorOrUndef) ||
4500       !llvm::all_of(Ops, IsScalarOrSameVectorSize))
4501     return SDValue();
4502 
4503   // If we are comparing vectors, then the result needs to be a i1 boolean
4504   // that is then sign-extended back to the legal result type.
4505   EVT SVT = (Opcode == ISD::SETCC ? MVT::i1 : VT.getScalarType());
4506 
4507   // Find legal integer scalar type for constant promotion and
4508   // ensure that its scalar size is at least as large as source.
4509   EVT LegalSVT = VT.getScalarType();
4510   if (NewNodesMustHaveLegalTypes && LegalSVT.isInteger()) {
4511     LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT);
4512     if (LegalSVT.bitsLT(VT.getScalarType()))
4513       return SDValue();
4514   }
4515 
4516   // Constant fold each scalar lane separately.
4517   SmallVector<SDValue, 4> ScalarResults;
4518   for (unsigned i = 0; i != NumElts; i++) {
4519     SmallVector<SDValue, 4> ScalarOps;
4520     for (SDValue Op : Ops) {
4521       EVT InSVT = Op.getValueType().getScalarType();
4522       BuildVectorSDNode *InBV = dyn_cast<BuildVectorSDNode>(Op);
4523       if (!InBV) {
4524         // We've checked that this is UNDEF or a constant of some kind.
4525         if (Op.isUndef())
4526           ScalarOps.push_back(getUNDEF(InSVT));
4527         else
4528           ScalarOps.push_back(Op);
4529         continue;
4530       }
4531 
4532       SDValue ScalarOp = InBV->getOperand(i);
4533       EVT ScalarVT = ScalarOp.getValueType();
4534 
4535       // Build vector (integer) scalar operands may need implicit
4536       // truncation - do this before constant folding.
4537       if (ScalarVT.isInteger() && ScalarVT.bitsGT(InSVT))
4538         ScalarOp = getNode(ISD::TRUNCATE, DL, InSVT, ScalarOp);
4539 
4540       ScalarOps.push_back(ScalarOp);
4541     }
4542 
4543     // Constant fold the scalar operands.
4544     SDValue ScalarResult = getNode(Opcode, DL, SVT, ScalarOps, Flags);
4545 
4546     // Legalize the (integer) scalar constant if necessary.
4547     if (LegalSVT != SVT)
4548       ScalarResult = getNode(ISD::SIGN_EXTEND, DL, LegalSVT, ScalarResult);
4549 
4550     // Scalar folding only succeeded if the result is a constant or UNDEF.
4551     if (!ScalarResult.isUndef() && ScalarResult.getOpcode() != ISD::Constant &&
4552         ScalarResult.getOpcode() != ISD::ConstantFP)
4553       return SDValue();
4554     ScalarResults.push_back(ScalarResult);
4555   }
4556 
4557   SDValue V = getBuildVector(VT, DL, ScalarResults);
4558   NewSDValueDbgMsg(V, "New node fold constant vector: ", this);
4559   return V;
4560 }
4561 
4562 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
4563                               SDValue N1, SDValue N2, const SDNodeFlags Flags) {
4564   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4565   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
4566   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
4567   ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
4568 
4569   // Canonicalize constant to RHS if commutative.
4570   if (TLI->isCommutativeBinOp(Opcode)) {
4571     if (N1C && !N2C) {
4572       std::swap(N1C, N2C);
4573       std::swap(N1, N2);
4574     } else if (N1CFP && !N2CFP) {
4575       std::swap(N1CFP, N2CFP);
4576       std::swap(N1, N2);
4577     }
4578   }
4579 
4580   switch (Opcode) {
4581   default: break;
4582   case ISD::TokenFactor:
4583     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
4584            N2.getValueType() == MVT::Other && "Invalid token factor!");
4585     // Fold trivial token factors.
4586     if (N1.getOpcode() == ISD::EntryToken) return N2;
4587     if (N2.getOpcode() == ISD::EntryToken) return N1;
4588     if (N1 == N2) return N1;
4589     break;
4590   case ISD::BUILD_VECTOR: {
4591     // Attempt to simplify BUILD_VECTOR.
4592     SDValue Ops[] = {N1, N2};
4593     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
4594       return V;
4595     break;
4596   }
4597   case ISD::CONCAT_VECTORS: {
4598     // Attempt to fold CONCAT_VECTORS into BUILD_VECTOR or UNDEF.
4599     SDValue Ops[] = {N1, N2};
4600     if (SDValue V = FoldCONCAT_VECTORS(DL, VT, Ops, *this))
4601       return V;
4602     break;
4603   }
4604   case ISD::AND:
4605     assert(VT.isInteger() && "This operator does not apply to FP types!");
4606     assert(N1.getValueType() == N2.getValueType() &&
4607            N1.getValueType() == VT && "Binary operator types must match!");
4608     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
4609     // worth handling here.
4610     if (N2C && N2C->isNullValue())
4611       return N2;
4612     if (N2C && N2C->isAllOnesValue())  // X & -1 -> X
4613       return N1;
4614     break;
4615   case ISD::OR:
4616   case ISD::XOR:
4617   case ISD::ADD:
4618   case ISD::SUB:
4619     assert(VT.isInteger() && "This operator does not apply to FP types!");
4620     assert(N1.getValueType() == N2.getValueType() &&
4621            N1.getValueType() == VT && "Binary operator types must match!");
4622     // (X ^|+- 0) -> X.  This commonly occurs when legalizing i64 values, so
4623     // it's worth handling here.
4624     if (N2C && N2C->isNullValue())
4625       return N1;
4626     break;
4627   case ISD::UDIV:
4628   case ISD::UREM:
4629   case ISD::MULHU:
4630   case ISD::MULHS:
4631   case ISD::MUL:
4632   case ISD::SDIV:
4633   case ISD::SREM:
4634   case ISD::SMIN:
4635   case ISD::SMAX:
4636   case ISD::UMIN:
4637   case ISD::UMAX:
4638     assert(VT.isInteger() && "This operator does not apply to FP types!");
4639     assert(N1.getValueType() == N2.getValueType() &&
4640            N1.getValueType() == VT && "Binary operator types must match!");
4641     break;
4642   case ISD::FADD:
4643   case ISD::FSUB:
4644   case ISD::FMUL:
4645   case ISD::FDIV:
4646   case ISD::FREM:
4647     assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
4648     assert(N1.getValueType() == N2.getValueType() &&
4649            N1.getValueType() == VT && "Binary operator types must match!");
4650     break;
4651   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
4652     assert(N1.getValueType() == VT &&
4653            N1.getValueType().isFloatingPoint() &&
4654            N2.getValueType().isFloatingPoint() &&
4655            "Invalid FCOPYSIGN!");
4656     break;
4657   case ISD::SHL:
4658   case ISD::SRA:
4659   case ISD::SRL:
4660   case ISD::ROTL:
4661   case ISD::ROTR:
4662     assert(VT == N1.getValueType() &&
4663            "Shift operators return type must be the same as their first arg");
4664     assert(VT.isInteger() && N2.getValueType().isInteger() &&
4665            "Shifts only work on integers");
4666     assert((!VT.isVector() || VT == N2.getValueType()) &&
4667            "Vector shift amounts must be in the same as their first arg");
4668     // Verify that the shift amount VT is bit enough to hold valid shift
4669     // amounts.  This catches things like trying to shift an i1024 value by an
4670     // i8, which is easy to fall into in generic code that uses
4671     // TLI.getShiftAmount().
4672     assert(N2.getValueSizeInBits() >= Log2_32_Ceil(N1.getValueSizeInBits()) &&
4673            "Invalid use of small shift amount with oversized value!");
4674 
4675     // Always fold shifts of i1 values so the code generator doesn't need to
4676     // handle them.  Since we know the size of the shift has to be less than the
4677     // size of the value, the shift/rotate count is guaranteed to be zero.
4678     if (VT == MVT::i1)
4679       return N1;
4680     if (N2C && N2C->isNullValue())
4681       return N1;
4682     break;
4683   case ISD::FP_ROUND_INREG: {
4684     EVT EVT = cast<VTSDNode>(N2)->getVT();
4685     assert(VT == N1.getValueType() && "Not an inreg round!");
4686     assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
4687            "Cannot FP_ROUND_INREG integer types");
4688     assert(EVT.isVector() == VT.isVector() &&
4689            "FP_ROUND_INREG type should be vector iff the operand "
4690            "type is vector!");
4691     assert((!EVT.isVector() ||
4692             EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
4693            "Vector element counts must match in FP_ROUND_INREG");
4694     assert(EVT.bitsLE(VT) && "Not rounding down!");
4695     (void)EVT;
4696     if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
4697     break;
4698   }
4699   case ISD::FP_ROUND:
4700     assert(VT.isFloatingPoint() &&
4701            N1.getValueType().isFloatingPoint() &&
4702            VT.bitsLE(N1.getValueType()) &&
4703            N2C && (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) &&
4704            "Invalid FP_ROUND!");
4705     if (N1.getValueType() == VT) return N1;  // noop conversion.
4706     break;
4707   case ISD::AssertSext:
4708   case ISD::AssertZext: {
4709     EVT EVT = cast<VTSDNode>(N2)->getVT();
4710     assert(VT == N1.getValueType() && "Not an inreg extend!");
4711     assert(VT.isInteger() && EVT.isInteger() &&
4712            "Cannot *_EXTEND_INREG FP types");
4713     assert(!EVT.isVector() &&
4714            "AssertSExt/AssertZExt type should be the vector element type "
4715            "rather than the vector type!");
4716     assert(EVT.bitsLE(VT) && "Not extending!");
4717     if (VT == EVT) return N1; // noop assertion.
4718     break;
4719   }
4720   case ISD::SIGN_EXTEND_INREG: {
4721     EVT EVT = cast<VTSDNode>(N2)->getVT();
4722     assert(VT == N1.getValueType() && "Not an inreg extend!");
4723     assert(VT.isInteger() && EVT.isInteger() &&
4724            "Cannot *_EXTEND_INREG FP types");
4725     assert(EVT.isVector() == VT.isVector() &&
4726            "SIGN_EXTEND_INREG type should be vector iff the operand "
4727            "type is vector!");
4728     assert((!EVT.isVector() ||
4729             EVT.getVectorNumElements() == VT.getVectorNumElements()) &&
4730            "Vector element counts must match in SIGN_EXTEND_INREG");
4731     assert(EVT.bitsLE(VT) && "Not extending!");
4732     if (EVT == VT) return N1;  // Not actually extending
4733 
4734     auto SignExtendInReg = [&](APInt Val, llvm::EVT ConstantVT) {
4735       unsigned FromBits = EVT.getScalarSizeInBits();
4736       Val <<= Val.getBitWidth() - FromBits;
4737       Val.ashrInPlace(Val.getBitWidth() - FromBits);
4738       return getConstant(Val, DL, ConstantVT);
4739     };
4740 
4741     if (N1C) {
4742       const APInt &Val = N1C->getAPIntValue();
4743       return SignExtendInReg(Val, VT);
4744     }
4745     if (ISD::isBuildVectorOfConstantSDNodes(N1.getNode())) {
4746       SmallVector<SDValue, 8> Ops;
4747       llvm::EVT OpVT = N1.getOperand(0).getValueType();
4748       for (int i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
4749         SDValue Op = N1.getOperand(i);
4750         if (Op.isUndef()) {
4751           Ops.push_back(getUNDEF(OpVT));
4752           continue;
4753         }
4754         ConstantSDNode *C = cast<ConstantSDNode>(Op);
4755         APInt Val = C->getAPIntValue();
4756         Ops.push_back(SignExtendInReg(Val, OpVT));
4757       }
4758       return getBuildVector(VT, DL, Ops);
4759     }
4760     break;
4761   }
4762   case ISD::EXTRACT_VECTOR_ELT:
4763     assert(VT.getSizeInBits() >= N1.getValueType().getScalarSizeInBits() &&
4764            "The result of EXTRACT_VECTOR_ELT must be at least as wide as the \
4765              element type of the vector.");
4766 
4767     // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
4768     if (N1.isUndef())
4769       return getUNDEF(VT);
4770 
4771     // EXTRACT_VECTOR_ELT of out-of-bounds element is an UNDEF
4772     if (N2C && N2C->getAPIntValue().uge(N1.getValueType().getVectorNumElements()))
4773       return getUNDEF(VT);
4774 
4775     // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
4776     // expanding copies of large vectors from registers.
4777     if (N2C &&
4778         N1.getOpcode() == ISD::CONCAT_VECTORS &&
4779         N1.getNumOperands() > 0) {
4780       unsigned Factor =
4781         N1.getOperand(0).getValueType().getVectorNumElements();
4782       return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
4783                      N1.getOperand(N2C->getZExtValue() / Factor),
4784                      getConstant(N2C->getZExtValue() % Factor, DL,
4785                                  N2.getValueType()));
4786     }
4787 
4788     // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
4789     // expanding large vector constants.
4790     if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) {
4791       SDValue Elt = N1.getOperand(N2C->getZExtValue());
4792 
4793       if (VT != Elt.getValueType())
4794         // If the vector element type is not legal, the BUILD_VECTOR operands
4795         // are promoted and implicitly truncated, and the result implicitly
4796         // extended. Make that explicit here.
4797         Elt = getAnyExtOrTrunc(Elt, DL, VT);
4798 
4799       return Elt;
4800     }
4801 
4802     // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
4803     // operations are lowered to scalars.
4804     if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
4805       // If the indices are the same, return the inserted element else
4806       // if the indices are known different, extract the element from
4807       // the original vector.
4808       SDValue N1Op2 = N1.getOperand(2);
4809       ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2);
4810 
4811       if (N1Op2C && N2C) {
4812         if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
4813           if (VT == N1.getOperand(1).getValueType())
4814             return N1.getOperand(1);
4815           else
4816             return getSExtOrTrunc(N1.getOperand(1), DL, VT);
4817         }
4818 
4819         return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
4820       }
4821     }
4822 
4823     // EXTRACT_VECTOR_ELT of v1iX EXTRACT_SUBVECTOR could be formed
4824     // when vector types are scalarized and v1iX is legal.
4825     // vextract (v1iX extract_subvector(vNiX, Idx)) -> vextract(vNiX,Idx)
4826     if (N1.getOpcode() == ISD::EXTRACT_SUBVECTOR &&
4827         N1.getValueType().getVectorNumElements() == 1) {
4828       return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0),
4829                      N1.getOperand(1));
4830     }
4831     break;
4832   case ISD::EXTRACT_ELEMENT:
4833     assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
4834     assert(!N1.getValueType().isVector() && !VT.isVector() &&
4835            (N1.getValueType().isInteger() == VT.isInteger()) &&
4836            N1.getValueType() != VT &&
4837            "Wrong types for EXTRACT_ELEMENT!");
4838 
4839     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
4840     // 64-bit integers into 32-bit parts.  Instead of building the extract of
4841     // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
4842     if (N1.getOpcode() == ISD::BUILD_PAIR)
4843       return N1.getOperand(N2C->getZExtValue());
4844 
4845     // EXTRACT_ELEMENT of a constant int is also very common.
4846     if (N1C) {
4847       unsigned ElementSize = VT.getSizeInBits();
4848       unsigned Shift = ElementSize * N2C->getZExtValue();
4849       APInt ShiftedVal = N1C->getAPIntValue().lshr(Shift);
4850       return getConstant(ShiftedVal.trunc(ElementSize), DL, VT);
4851     }
4852     break;
4853   case ISD::EXTRACT_SUBVECTOR:
4854     if (VT.isSimple() && N1.getValueType().isSimple()) {
4855       assert(VT.isVector() && N1.getValueType().isVector() &&
4856              "Extract subvector VTs must be a vectors!");
4857       assert(VT.getVectorElementType() ==
4858              N1.getValueType().getVectorElementType() &&
4859              "Extract subvector VTs must have the same element type!");
4860       assert(VT.getSimpleVT() <= N1.getSimpleValueType() &&
4861              "Extract subvector must be from larger vector to smaller vector!");
4862 
4863       if (N2C) {
4864         assert((VT.getVectorNumElements() + N2C->getZExtValue()
4865                 <= N1.getValueType().getVectorNumElements())
4866                && "Extract subvector overflow!");
4867       }
4868 
4869       // Trivial extraction.
4870       if (VT.getSimpleVT() == N1.getSimpleValueType())
4871         return N1;
4872 
4873       // EXTRACT_SUBVECTOR of an UNDEF is an UNDEF.
4874       if (N1.isUndef())
4875         return getUNDEF(VT);
4876 
4877       // EXTRACT_SUBVECTOR of CONCAT_VECTOR can be simplified if the pieces of
4878       // the concat have the same type as the extract.
4879       if (N2C && N1.getOpcode() == ISD::CONCAT_VECTORS &&
4880           N1.getNumOperands() > 0 &&
4881           VT == N1.getOperand(0).getValueType()) {
4882         unsigned Factor = VT.getVectorNumElements();
4883         return N1.getOperand(N2C->getZExtValue() / Factor);
4884       }
4885 
4886       // EXTRACT_SUBVECTOR of INSERT_SUBVECTOR is often created
4887       // during shuffle legalization.
4888       if (N1.getOpcode() == ISD::INSERT_SUBVECTOR && N2 == N1.getOperand(2) &&
4889           VT == N1.getOperand(1).getValueType())
4890         return N1.getOperand(1);
4891     }
4892     break;
4893   }
4894 
4895   // Perform trivial constant folding.
4896   if (SDValue SV =
4897           FoldConstantArithmetic(Opcode, DL, VT, N1.getNode(), N2.getNode()))
4898     return SV;
4899 
4900   // Constant fold FP operations.
4901   bool HasFPExceptions = TLI->hasFloatingPointExceptions();
4902   if (N1CFP) {
4903     if (N2CFP) {
4904       APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
4905       APFloat::opStatus s;
4906       switch (Opcode) {
4907       case ISD::FADD:
4908         s = V1.add(V2, APFloat::rmNearestTiesToEven);
4909         if (!HasFPExceptions || s != APFloat::opInvalidOp)
4910           return getConstantFP(V1, DL, VT);
4911         break;
4912       case ISD::FSUB:
4913         s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
4914         if (!HasFPExceptions || s!=APFloat::opInvalidOp)
4915           return getConstantFP(V1, DL, VT);
4916         break;
4917       case ISD::FMUL:
4918         s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
4919         if (!HasFPExceptions || s!=APFloat::opInvalidOp)
4920           return getConstantFP(V1, DL, VT);
4921         break;
4922       case ISD::FDIV:
4923         s = V1.divide(V2, APFloat::rmNearestTiesToEven);
4924         if (!HasFPExceptions || (s!=APFloat::opInvalidOp &&
4925                                  s!=APFloat::opDivByZero)) {
4926           return getConstantFP(V1, DL, VT);
4927         }
4928         break;
4929       case ISD::FREM :
4930         s = V1.mod(V2);
4931         if (!HasFPExceptions || (s!=APFloat::opInvalidOp &&
4932                                  s!=APFloat::opDivByZero)) {
4933           return getConstantFP(V1, DL, VT);
4934         }
4935         break;
4936       case ISD::FCOPYSIGN:
4937         V1.copySign(V2);
4938         return getConstantFP(V1, DL, VT);
4939       default: break;
4940       }
4941     }
4942 
4943     if (Opcode == ISD::FP_ROUND) {
4944       APFloat V = N1CFP->getValueAPF();    // make copy
4945       bool ignored;
4946       // This can return overflow, underflow, or inexact; we don't care.
4947       // FIXME need to be more flexible about rounding mode.
4948       (void)V.convert(EVTToAPFloatSemantics(VT),
4949                       APFloat::rmNearestTiesToEven, &ignored);
4950       return getConstantFP(V, DL, VT);
4951     }
4952   }
4953 
4954   // Any FP binop with an undef operand is folded to NaN. This matches the
4955   // behavior of the IR optimizer.
4956   switch (Opcode) {
4957   case ISD::FADD:
4958   case ISD::FSUB:
4959   case ISD::FMUL:
4960   case ISD::FDIV:
4961   case ISD::FREM:
4962     if (N1.isUndef() || N2.isUndef())
4963       return getConstantFP(APFloat::getNaN(EVTToAPFloatSemantics(VT)), DL, VT);
4964   }
4965 
4966   // Canonicalize an UNDEF to the RHS, even over a constant.
4967   if (N1.isUndef()) {
4968     if (TLI->isCommutativeBinOp(Opcode)) {
4969       std::swap(N1, N2);
4970     } else {
4971       switch (Opcode) {
4972       case ISD::FP_ROUND_INREG:
4973       case ISD::SIGN_EXTEND_INREG:
4974       case ISD::SUB:
4975         return getUNDEF(VT);     // fold op(undef, arg2) -> undef
4976       case ISD::UDIV:
4977       case ISD::SDIV:
4978       case ISD::UREM:
4979       case ISD::SREM:
4980       case ISD::SRA:
4981       case ISD::SRL:
4982       case ISD::SHL:
4983         return getConstant(0, DL, VT);    // fold op(undef, arg2) -> 0
4984       }
4985     }
4986   }
4987 
4988   // Fold a bunch of operators when the RHS is undef.
4989   if (N2.isUndef()) {
4990     switch (Opcode) {
4991     case ISD::XOR:
4992       if (N1.isUndef())
4993         // Handle undef ^ undef -> 0 special case. This is a common
4994         // idiom (misuse).
4995         return getConstant(0, DL, VT);
4996       LLVM_FALLTHROUGH;
4997     case ISD::ADD:
4998     case ISD::ADDC:
4999     case ISD::ADDE:
5000     case ISD::SUB:
5001     case ISD::UDIV:
5002     case ISD::SDIV:
5003     case ISD::UREM:
5004     case ISD::SREM:
5005     case ISD::SRA:
5006     case ISD::SRL:
5007     case ISD::SHL:
5008       return getUNDEF(VT);       // fold op(arg1, undef) -> undef
5009     case ISD::MUL:
5010     case ISD::AND:
5011       return getConstant(0, DL, VT);  // fold op(arg1, undef) -> 0
5012     case ISD::OR:
5013       return getAllOnesConstant(DL, VT);
5014     }
5015   }
5016 
5017   // Memoize this node if possible.
5018   SDNode *N;
5019   SDVTList VTs = getVTList(VT);
5020   SDValue Ops[] = {N1, N2};
5021   if (VT != MVT::Glue) {
5022     FoldingSetNodeID ID;
5023     AddNodeIDNode(ID, Opcode, VTs, Ops);
5024     void *IP = nullptr;
5025     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
5026       E->intersectFlagsWith(Flags);
5027       return SDValue(E, 0);
5028     }
5029 
5030     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5031     N->setFlags(Flags);
5032     createOperands(N, Ops);
5033     CSEMap.InsertNode(N, IP);
5034   } else {
5035     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5036     createOperands(N, Ops);
5037   }
5038 
5039   InsertNode(N);
5040   SDValue V = SDValue(N, 0);
5041   NewSDValueDbgMsg(V, "Creating new node: ", this);
5042   return V;
5043 }
5044 
5045 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
5046                               SDValue N1, SDValue N2, SDValue N3,
5047                               const SDNodeFlags Flags) {
5048   // Perform various simplifications.
5049   switch (Opcode) {
5050   case ISD::FMA: {
5051     assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
5052     assert(N1.getValueType() == VT && N2.getValueType() == VT &&
5053            N3.getValueType() == VT && "FMA types must match!");
5054     ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5055     ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
5056     ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
5057     if (N1CFP && N2CFP && N3CFP) {
5058       APFloat  V1 = N1CFP->getValueAPF();
5059       const APFloat &V2 = N2CFP->getValueAPF();
5060       const APFloat &V3 = N3CFP->getValueAPF();
5061       APFloat::opStatus s =
5062         V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
5063       if (!TLI->hasFloatingPointExceptions() || s != APFloat::opInvalidOp)
5064         return getConstantFP(V1, DL, VT);
5065     }
5066     break;
5067   }
5068   case ISD::BUILD_VECTOR: {
5069     // Attempt to simplify BUILD_VECTOR.
5070     SDValue Ops[] = {N1, N2, N3};
5071     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
5072       return V;
5073     break;
5074   }
5075   case ISD::CONCAT_VECTORS: {
5076     // Attempt to fold CONCAT_VECTORS into BUILD_VECTOR or UNDEF.
5077     SDValue Ops[] = {N1, N2, N3};
5078     if (SDValue V = FoldCONCAT_VECTORS(DL, VT, Ops, *this))
5079       return V;
5080     break;
5081   }
5082   case ISD::SETCC: {
5083     assert(VT.isInteger() && "SETCC result type must be an integer!");
5084     assert(N1.getValueType() == N2.getValueType() &&
5085            "SETCC operands must have the same type!");
5086     assert(VT.isVector() == N1.getValueType().isVector() &&
5087            "SETCC type should be vector iff the operand type is vector!");
5088     assert((!VT.isVector() ||
5089             VT.getVectorNumElements() == N1.getValueType().getVectorNumElements()) &&
5090            "SETCC vector element counts must match!");
5091     // Use FoldSetCC to simplify SETCC's.
5092     if (SDValue V = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL))
5093       return V;
5094     // Vector constant folding.
5095     SDValue Ops[] = {N1, N2, N3};
5096     if (SDValue V = FoldConstantVectorArithmetic(Opcode, DL, VT, Ops)) {
5097       NewSDValueDbgMsg(V, "New node vector constant folding: ", this);
5098       return V;
5099     }
5100     break;
5101   }
5102   case ISD::SELECT:
5103     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1)) {
5104      if (N1C->getZExtValue())
5105        return N2;             // select true, X, Y -> X
5106      return N3;             // select false, X, Y -> Y
5107     }
5108 
5109     if (N2 == N3) return N2;   // select C, X, X -> X
5110     break;
5111   case ISD::VECTOR_SHUFFLE:
5112     llvm_unreachable("should use getVectorShuffle constructor!");
5113   case ISD::INSERT_VECTOR_ELT: {
5114     ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3);
5115     // INSERT_VECTOR_ELT into out-of-bounds element is an UNDEF
5116     if (N3C && N3C->getZExtValue() >= N1.getValueType().getVectorNumElements())
5117       return getUNDEF(VT);
5118     break;
5119   }
5120   case ISD::INSERT_SUBVECTOR: {
5121     SDValue Index = N3;
5122     if (VT.isSimple() && N1.getValueType().isSimple()
5123         && N2.getValueType().isSimple()) {
5124       assert(VT.isVector() && N1.getValueType().isVector() &&
5125              N2.getValueType().isVector() &&
5126              "Insert subvector VTs must be a vectors");
5127       assert(VT == N1.getValueType() &&
5128              "Dest and insert subvector source types must match!");
5129       assert(N2.getSimpleValueType() <= N1.getSimpleValueType() &&
5130              "Insert subvector must be from smaller vector to larger vector!");
5131       if (isa<ConstantSDNode>(Index)) {
5132         assert((N2.getValueType().getVectorNumElements() +
5133                 cast<ConstantSDNode>(Index)->getZExtValue()
5134                 <= VT.getVectorNumElements())
5135                && "Insert subvector overflow!");
5136       }
5137 
5138       // Trivial insertion.
5139       if (VT.getSimpleVT() == N2.getSimpleValueType())
5140         return N2;
5141     }
5142     break;
5143   }
5144   case ISD::BITCAST:
5145     // Fold bit_convert nodes from a type to themselves.
5146     if (N1.getValueType() == VT)
5147       return N1;
5148     break;
5149   }
5150 
5151   // Memoize node if it doesn't produce a flag.
5152   SDNode *N;
5153   SDVTList VTs = getVTList(VT);
5154   SDValue Ops[] = {N1, N2, N3};
5155   if (VT != MVT::Glue) {
5156     FoldingSetNodeID ID;
5157     AddNodeIDNode(ID, Opcode, VTs, Ops);
5158     void *IP = nullptr;
5159     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
5160       E->intersectFlagsWith(Flags);
5161       return SDValue(E, 0);
5162     }
5163 
5164     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5165     N->setFlags(Flags);
5166     createOperands(N, Ops);
5167     CSEMap.InsertNode(N, IP);
5168   } else {
5169     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5170     createOperands(N, Ops);
5171   }
5172 
5173   InsertNode(N);
5174   SDValue V = SDValue(N, 0);
5175   NewSDValueDbgMsg(V, "Creating new node: ", this);
5176   return V;
5177 }
5178 
5179 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
5180                               SDValue N1, SDValue N2, SDValue N3, SDValue N4) {
5181   SDValue Ops[] = { N1, N2, N3, N4 };
5182   return getNode(Opcode, DL, VT, Ops);
5183 }
5184 
5185 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
5186                               SDValue N1, SDValue N2, SDValue N3, SDValue N4,
5187                               SDValue N5) {
5188   SDValue Ops[] = { N1, N2, N3, N4, N5 };
5189   return getNode(Opcode, DL, VT, Ops);
5190 }
5191 
5192 /// getStackArgumentTokenFactor - Compute a TokenFactor to force all
5193 /// the incoming stack arguments to be loaded from the stack.
5194 SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
5195   SmallVector<SDValue, 8> ArgChains;
5196 
5197   // Include the original chain at the beginning of the list. When this is
5198   // used by target LowerCall hooks, this helps legalize find the
5199   // CALLSEQ_BEGIN node.
5200   ArgChains.push_back(Chain);
5201 
5202   // Add a chain value for each stack argument.
5203   for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(),
5204        UE = getEntryNode().getNode()->use_end(); U != UE; ++U)
5205     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
5206       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
5207         if (FI->getIndex() < 0)
5208           ArgChains.push_back(SDValue(L, 1));
5209 
5210   // Build a tokenfactor for all the chains.
5211   return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
5212 }
5213 
5214 /// getMemsetValue - Vectorized representation of the memset value
5215 /// operand.
5216 static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
5217                               const SDLoc &dl) {
5218   assert(!Value.isUndef());
5219 
5220   unsigned NumBits = VT.getScalarSizeInBits();
5221   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
5222     assert(C->getAPIntValue().getBitWidth() == 8);
5223     APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
5224     if (VT.isInteger()) {
5225       bool IsOpaque = VT.getSizeInBits() > 64 ||
5226           !DAG.getTargetLoweringInfo().isLegalStoreImmediate(C->getSExtValue());
5227       return DAG.getConstant(Val, dl, VT, false, IsOpaque);
5228     }
5229     return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), dl,
5230                              VT);
5231   }
5232 
5233   assert(Value.getValueType() == MVT::i8 && "memset with non-byte fill value?");
5234   EVT IntVT = VT.getScalarType();
5235   if (!IntVT.isInteger())
5236     IntVT = EVT::getIntegerVT(*DAG.getContext(), IntVT.getSizeInBits());
5237 
5238   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, IntVT, Value);
5239   if (NumBits > 8) {
5240     // Use a multiplication with 0x010101... to extend the input to the
5241     // required length.
5242     APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
5243     Value = DAG.getNode(ISD::MUL, dl, IntVT, Value,
5244                         DAG.getConstant(Magic, dl, IntVT));
5245   }
5246 
5247   if (VT != Value.getValueType() && !VT.isInteger())
5248     Value = DAG.getBitcast(VT.getScalarType(), Value);
5249   if (VT != Value.getValueType())
5250     Value = DAG.getSplatBuildVector(VT, dl, Value);
5251 
5252   return Value;
5253 }
5254 
5255 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
5256 /// used when a memcpy is turned into a memset when the source is a constant
5257 /// string ptr.
5258 static SDValue getMemsetStringVal(EVT VT, const SDLoc &dl, SelectionDAG &DAG,
5259                                   const TargetLowering &TLI,
5260                                   const ConstantDataArraySlice &Slice) {
5261   // Handle vector with all elements zero.
5262   if (Slice.Array == nullptr) {
5263     if (VT.isInteger())
5264       return DAG.getConstant(0, dl, VT);
5265     else if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128)
5266       return DAG.getConstantFP(0.0, dl, VT);
5267     else if (VT.isVector()) {
5268       unsigned NumElts = VT.getVectorNumElements();
5269       MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
5270       return DAG.getNode(ISD::BITCAST, dl, VT,
5271                          DAG.getConstant(0, dl,
5272                                          EVT::getVectorVT(*DAG.getContext(),
5273                                                           EltVT, NumElts)));
5274     } else
5275       llvm_unreachable("Expected type!");
5276   }
5277 
5278   assert(!VT.isVector() && "Can't handle vector type here!");
5279   unsigned NumVTBits = VT.getSizeInBits();
5280   unsigned NumVTBytes = NumVTBits / 8;
5281   unsigned NumBytes = std::min(NumVTBytes, unsigned(Slice.Length));
5282 
5283   APInt Val(NumVTBits, 0);
5284   if (DAG.getDataLayout().isLittleEndian()) {
5285     for (unsigned i = 0; i != NumBytes; ++i)
5286       Val |= (uint64_t)(unsigned char)Slice[i] << i*8;
5287   } else {
5288     for (unsigned i = 0; i != NumBytes; ++i)
5289       Val |= (uint64_t)(unsigned char)Slice[i] << (NumVTBytes-i-1)*8;
5290   }
5291 
5292   // If the "cost" of materializing the integer immediate is less than the cost
5293   // of a load, then it is cost effective to turn the load into the immediate.
5294   Type *Ty = VT.getTypeForEVT(*DAG.getContext());
5295   if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty))
5296     return DAG.getConstant(Val, dl, VT);
5297   return SDValue(nullptr, 0);
5298 }
5299 
5300 SDValue SelectionDAG::getMemBasePlusOffset(SDValue Base, unsigned Offset,
5301                                            const SDLoc &DL) {
5302   EVT VT = Base.getValueType();
5303   return getNode(ISD::ADD, DL, VT, Base, getConstant(Offset, DL, VT));
5304 }
5305 
5306 /// Returns true if memcpy source is constant data.
5307 static bool isMemSrcFromConstant(SDValue Src, ConstantDataArraySlice &Slice) {
5308   uint64_t SrcDelta = 0;
5309   GlobalAddressSDNode *G = nullptr;
5310   if (Src.getOpcode() == ISD::GlobalAddress)
5311     G = cast<GlobalAddressSDNode>(Src);
5312   else if (Src.getOpcode() == ISD::ADD &&
5313            Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
5314            Src.getOperand(1).getOpcode() == ISD::Constant) {
5315     G = cast<GlobalAddressSDNode>(Src.getOperand(0));
5316     SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
5317   }
5318   if (!G)
5319     return false;
5320 
5321   return getConstantDataArrayInfo(G->getGlobal(), Slice, 8,
5322                                   SrcDelta + G->getOffset());
5323 }
5324 
5325 /// Determines the optimal series of memory ops to replace the memset / memcpy.
5326 /// Return true if the number of memory ops is below the threshold (Limit).
5327 /// It returns the types of the sequence of memory ops to perform
5328 /// memset / memcpy by reference.
5329 static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps,
5330                                      unsigned Limit, uint64_t Size,
5331                                      unsigned DstAlign, unsigned SrcAlign,
5332                                      bool IsMemset,
5333                                      bool ZeroMemset,
5334                                      bool MemcpyStrSrc,
5335                                      bool AllowOverlap,
5336                                      unsigned DstAS, unsigned SrcAS,
5337                                      SelectionDAG &DAG,
5338                                      const TargetLowering &TLI) {
5339   assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
5340          "Expecting memcpy / memset source to meet alignment requirement!");
5341   // If 'SrcAlign' is zero, that means the memory operation does not need to
5342   // load the value, i.e. memset or memcpy from constant string. Otherwise,
5343   // it's the inferred alignment of the source. 'DstAlign', on the other hand,
5344   // is the specified alignment of the memory operation. If it is zero, that
5345   // means it's possible to change the alignment of the destination.
5346   // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does
5347   // not need to be loaded.
5348   EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
5349                                    IsMemset, ZeroMemset, MemcpyStrSrc,
5350                                    DAG.getMachineFunction());
5351 
5352   if (VT == MVT::Other) {
5353     // Use the largest integer type whose alignment constraints are satisfied.
5354     // We only need to check DstAlign here as SrcAlign is always greater or
5355     // equal to DstAlign (or zero).
5356     VT = MVT::i64;
5357     while (DstAlign && DstAlign < VT.getSizeInBits() / 8 &&
5358            !TLI.allowsMisalignedMemoryAccesses(VT, DstAS, DstAlign))
5359       VT = (MVT::SimpleValueType)(VT.getSimpleVT().SimpleTy - 1);
5360     assert(VT.isInteger());
5361 
5362     // Find the largest legal integer type.
5363     MVT LVT = MVT::i64;
5364     while (!TLI.isTypeLegal(LVT))
5365       LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1);
5366     assert(LVT.isInteger());
5367 
5368     // If the type we've chosen is larger than the largest legal integer type
5369     // then use that instead.
5370     if (VT.bitsGT(LVT))
5371       VT = LVT;
5372   }
5373 
5374   unsigned NumMemOps = 0;
5375   while (Size != 0) {
5376     unsigned VTSize = VT.getSizeInBits() / 8;
5377     while (VTSize > Size) {
5378       // For now, only use non-vector load / store's for the left-over pieces.
5379       EVT NewVT = VT;
5380       unsigned NewVTSize;
5381 
5382       bool Found = false;
5383       if (VT.isVector() || VT.isFloatingPoint()) {
5384         NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32;
5385         if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) &&
5386             TLI.isSafeMemOpType(NewVT.getSimpleVT()))
5387           Found = true;
5388         else if (NewVT == MVT::i64 &&
5389                  TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) &&
5390                  TLI.isSafeMemOpType(MVT::f64)) {
5391           // i64 is usually not legal on 32-bit targets, but f64 may be.
5392           NewVT = MVT::f64;
5393           Found = true;
5394         }
5395       }
5396 
5397       if (!Found) {
5398         do {
5399           NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1);
5400           if (NewVT == MVT::i8)
5401             break;
5402         } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT()));
5403       }
5404       NewVTSize = NewVT.getSizeInBits() / 8;
5405 
5406       // If the new VT cannot cover all of the remaining bits, then consider
5407       // issuing a (or a pair of) unaligned and overlapping load / store.
5408       // FIXME: Only does this for 64-bit or more since we don't have proper
5409       // cost model for unaligned load / store.
5410       bool Fast;
5411       if (NumMemOps && AllowOverlap &&
5412           VTSize >= 8 && NewVTSize < Size &&
5413           TLI.allowsMisalignedMemoryAccesses(VT, DstAS, DstAlign, &Fast) && Fast)
5414         VTSize = Size;
5415       else {
5416         VT = NewVT;
5417         VTSize = NewVTSize;
5418       }
5419     }
5420 
5421     if (++NumMemOps > Limit)
5422       return false;
5423 
5424     MemOps.push_back(VT);
5425     Size -= VTSize;
5426   }
5427 
5428   return true;
5429 }
5430 
5431 static bool shouldLowerMemFuncForSize(const MachineFunction &MF) {
5432   // On Darwin, -Os means optimize for size without hurting performance, so
5433   // only really optimize for size when -Oz (MinSize) is used.
5434   if (MF.getTarget().getTargetTriple().isOSDarwin())
5435     return MF.getFunction().optForMinSize();
5436   return MF.getFunction().optForSize();
5437 }
5438 
5439 static void chainLoadsAndStoresForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
5440                           SmallVector<SDValue, 32> &OutChains, unsigned From,
5441                           unsigned To, SmallVector<SDValue, 16> &OutLoadChains,
5442                           SmallVector<SDValue, 16> &OutStoreChains) {
5443   assert(OutLoadChains.size() && "Missing loads in memcpy inlining");
5444   assert(OutStoreChains.size() && "Missing stores in memcpy inlining");
5445   SmallVector<SDValue, 16> GluedLoadChains;
5446   for (unsigned i = From; i < To; ++i) {
5447     OutChains.push_back(OutLoadChains[i]);
5448     GluedLoadChains.push_back(OutLoadChains[i]);
5449   }
5450 
5451   // Chain for all loads.
5452   SDValue LoadToken = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5453                                   GluedLoadChains);
5454 
5455   for (unsigned i = From; i < To; ++i) {
5456     StoreSDNode *ST = dyn_cast<StoreSDNode>(OutStoreChains[i]);
5457     SDValue NewStore = DAG.getTruncStore(LoadToken, dl, ST->getValue(),
5458                                   ST->getBasePtr(), ST->getMemoryVT(),
5459                                   ST->getMemOperand());
5460     OutChains.push_back(NewStore);
5461   }
5462 }
5463 
5464 static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl,
5465                                        SDValue Chain, SDValue Dst, SDValue Src,
5466                                        uint64_t Size, unsigned Align,
5467                                        bool isVol, bool AlwaysInline,
5468                                        MachinePointerInfo DstPtrInfo,
5469                                        MachinePointerInfo SrcPtrInfo) {
5470   // Turn a memcpy of undef to nop.
5471   if (Src.isUndef())
5472     return Chain;
5473 
5474   // Expand memcpy to a series of load and store ops if the size operand falls
5475   // below a certain threshold.
5476   // TODO: In the AlwaysInline case, if the size is big then generate a loop
5477   // rather than maybe a humongous number of loads and stores.
5478   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5479   const DataLayout &DL = DAG.getDataLayout();
5480   LLVMContext &C = *DAG.getContext();
5481   std::vector<EVT> MemOps;
5482   bool DstAlignCanChange = false;
5483   MachineFunction &MF = DAG.getMachineFunction();
5484   MachineFrameInfo &MFI = MF.getFrameInfo();
5485   bool OptSize = shouldLowerMemFuncForSize(MF);
5486   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
5487   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
5488     DstAlignCanChange = true;
5489   unsigned SrcAlign = DAG.InferPtrAlignment(Src);
5490   if (Align > SrcAlign)
5491     SrcAlign = Align;
5492   ConstantDataArraySlice Slice;
5493   bool CopyFromConstant = isMemSrcFromConstant(Src, Slice);
5494   bool isZeroConstant = CopyFromConstant && Slice.Array == nullptr;
5495   unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
5496 
5497   if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
5498                                 (DstAlignCanChange ? 0 : Align),
5499                                 (isZeroConstant ? 0 : SrcAlign),
5500                                 false, false, CopyFromConstant, true,
5501                                 DstPtrInfo.getAddrSpace(),
5502                                 SrcPtrInfo.getAddrSpace(),
5503                                 DAG, TLI))
5504     return SDValue();
5505 
5506   if (DstAlignCanChange) {
5507     Type *Ty = MemOps[0].getTypeForEVT(C);
5508     unsigned NewAlign = (unsigned)DL.getABITypeAlignment(Ty);
5509 
5510     // Don't promote to an alignment that would require dynamic stack
5511     // realignment.
5512     const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
5513     if (!TRI->needsStackRealignment(MF))
5514       while (NewAlign > Align &&
5515              DL.exceedsNaturalStackAlignment(NewAlign))
5516           NewAlign /= 2;
5517 
5518     if (NewAlign > Align) {
5519       // Give the stack frame object a larger alignment if needed.
5520       if (MFI.getObjectAlignment(FI->getIndex()) < NewAlign)
5521         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
5522       Align = NewAlign;
5523     }
5524   }
5525 
5526   MachineMemOperand::Flags MMOFlags =
5527       isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone;
5528   SmallVector<SDValue, 16> OutLoadChains;
5529   SmallVector<SDValue, 16> OutStoreChains;
5530   SmallVector<SDValue, 32> OutChains;
5531   unsigned NumMemOps = MemOps.size();
5532   uint64_t SrcOff = 0, DstOff = 0;
5533   for (unsigned i = 0; i != NumMemOps; ++i) {
5534     EVT VT = MemOps[i];
5535     unsigned VTSize = VT.getSizeInBits() / 8;
5536     SDValue Value, Store;
5537 
5538     if (VTSize > Size) {
5539       // Issuing an unaligned load / store pair  that overlaps with the previous
5540       // pair. Adjust the offset accordingly.
5541       assert(i == NumMemOps-1 && i != 0);
5542       SrcOff -= VTSize - Size;
5543       DstOff -= VTSize - Size;
5544     }
5545 
5546     if (CopyFromConstant &&
5547         (isZeroConstant || (VT.isInteger() && !VT.isVector()))) {
5548       // It's unlikely a store of a vector immediate can be done in a single
5549       // instruction. It would require a load from a constantpool first.
5550       // We only handle zero vectors here.
5551       // FIXME: Handle other cases where store of vector immediate is done in
5552       // a single instruction.
5553       ConstantDataArraySlice SubSlice;
5554       if (SrcOff < Slice.Length) {
5555         SubSlice = Slice;
5556         SubSlice.move(SrcOff);
5557       } else {
5558         // This is an out-of-bounds access and hence UB. Pretend we read zero.
5559         SubSlice.Array = nullptr;
5560         SubSlice.Offset = 0;
5561         SubSlice.Length = VTSize;
5562       }
5563       Value = getMemsetStringVal(VT, dl, DAG, TLI, SubSlice);
5564       if (Value.getNode()) {
5565         Store = DAG.getStore(Chain, dl, Value,
5566                              DAG.getMemBasePlusOffset(Dst, DstOff, dl),
5567                              DstPtrInfo.getWithOffset(DstOff), Align,
5568                              MMOFlags);
5569         OutChains.push_back(Store);
5570       }
5571     }
5572 
5573     if (!Store.getNode()) {
5574       // The type might not be legal for the target.  This should only happen
5575       // if the type is smaller than a legal type, as on PPC, so the right
5576       // thing to do is generate a LoadExt/StoreTrunc pair.  These simplify
5577       // to Load/Store if NVT==VT.
5578       // FIXME does the case above also need this?
5579       EVT NVT = TLI.getTypeToTransformTo(C, VT);
5580       assert(NVT.bitsGE(VT));
5581 
5582       bool isDereferenceable =
5583         SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL);
5584       MachineMemOperand::Flags SrcMMOFlags = MMOFlags;
5585       if (isDereferenceable)
5586         SrcMMOFlags |= MachineMemOperand::MODereferenceable;
5587 
5588       Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain,
5589                              DAG.getMemBasePlusOffset(Src, SrcOff, dl),
5590                              SrcPtrInfo.getWithOffset(SrcOff), VT,
5591                              MinAlign(SrcAlign, SrcOff), SrcMMOFlags);
5592       OutLoadChains.push_back(Value.getValue(1));
5593 
5594       Store = DAG.getTruncStore(
5595           Chain, dl, Value, DAG.getMemBasePlusOffset(Dst, DstOff, dl),
5596           DstPtrInfo.getWithOffset(DstOff), VT, Align, MMOFlags);
5597       OutStoreChains.push_back(Store);
5598     }
5599     SrcOff += VTSize;
5600     DstOff += VTSize;
5601     Size -= VTSize;
5602   }
5603 
5604   unsigned GluedLdStLimit = MaxLdStGlue == 0 ?
5605                                 TLI.getMaxGluedStoresPerMemcpy() : MaxLdStGlue;
5606   unsigned NumLdStInMemcpy = OutStoreChains.size();
5607 
5608   if (NumLdStInMemcpy) {
5609     // It may be that memcpy might be converted to memset if it's memcpy
5610     // of constants. In such a case, we won't have loads and stores, but
5611     // just stores. In the absence of loads, there is nothing to gang up.
5612     if ((GluedLdStLimit <= 1) || !EnableMemCpyDAGOpt) {
5613       // If target does not care, just leave as it.
5614       for (unsigned i = 0; i < NumLdStInMemcpy; ++i) {
5615         OutChains.push_back(OutLoadChains[i]);
5616         OutChains.push_back(OutStoreChains[i]);
5617       }
5618     } else {
5619       // Ld/St less than/equal limit set by target.
5620       if (NumLdStInMemcpy <= GluedLdStLimit) {
5621           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0,
5622                                         NumLdStInMemcpy, OutLoadChains,
5623                                         OutStoreChains);
5624       } else {
5625         unsigned NumberLdChain =  NumLdStInMemcpy / GluedLdStLimit;
5626         unsigned RemainingLdStInMemcpy = NumLdStInMemcpy % GluedLdStLimit;
5627         unsigned GlueIter = 0;
5628 
5629         for (unsigned cnt = 0; cnt < NumberLdChain; ++cnt) {
5630           unsigned IndexFrom = NumLdStInMemcpy - GlueIter - GluedLdStLimit;
5631           unsigned IndexTo   = NumLdStInMemcpy - GlueIter;
5632 
5633           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, IndexFrom, IndexTo,
5634                                        OutLoadChains, OutStoreChains);
5635           GlueIter += GluedLdStLimit;
5636         }
5637 
5638         // Residual ld/st.
5639         if (RemainingLdStInMemcpy) {
5640           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0,
5641                                         RemainingLdStInMemcpy, OutLoadChains,
5642                                         OutStoreChains);
5643         }
5644       }
5645     }
5646   }
5647   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
5648 }
5649 
5650 static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl,
5651                                         SDValue Chain, SDValue Dst, SDValue Src,
5652                                         uint64_t Size, unsigned Align,
5653                                         bool isVol, bool AlwaysInline,
5654                                         MachinePointerInfo DstPtrInfo,
5655                                         MachinePointerInfo SrcPtrInfo) {
5656   // Turn a memmove of undef to nop.
5657   if (Src.isUndef())
5658     return Chain;
5659 
5660   // Expand memmove to a series of load and store ops if the size operand falls
5661   // below a certain threshold.
5662   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5663   const DataLayout &DL = DAG.getDataLayout();
5664   LLVMContext &C = *DAG.getContext();
5665   std::vector<EVT> MemOps;
5666   bool DstAlignCanChange = false;
5667   MachineFunction &MF = DAG.getMachineFunction();
5668   MachineFrameInfo &MFI = MF.getFrameInfo();
5669   bool OptSize = shouldLowerMemFuncForSize(MF);
5670   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
5671   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
5672     DstAlignCanChange = true;
5673   unsigned SrcAlign = DAG.InferPtrAlignment(Src);
5674   if (Align > SrcAlign)
5675     SrcAlign = Align;
5676   unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
5677 
5678   if (!FindOptimalMemOpLowering(MemOps, Limit, Size,
5679                                 (DstAlignCanChange ? 0 : Align), SrcAlign,
5680                                 false, false, false, false,
5681                                 DstPtrInfo.getAddrSpace(),
5682                                 SrcPtrInfo.getAddrSpace(),
5683                                 DAG, TLI))
5684     return SDValue();
5685 
5686   if (DstAlignCanChange) {
5687     Type *Ty = MemOps[0].getTypeForEVT(C);
5688     unsigned NewAlign = (unsigned)DL.getABITypeAlignment(Ty);
5689     if (NewAlign > Align) {
5690       // Give the stack frame object a larger alignment if needed.
5691       if (MFI.getObjectAlignment(FI->getIndex()) < NewAlign)
5692         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
5693       Align = NewAlign;
5694     }
5695   }
5696 
5697   MachineMemOperand::Flags MMOFlags =
5698       isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone;
5699   uint64_t SrcOff = 0, DstOff = 0;
5700   SmallVector<SDValue, 8> LoadValues;
5701   SmallVector<SDValue, 8> LoadChains;
5702   SmallVector<SDValue, 8> OutChains;
5703   unsigned NumMemOps = MemOps.size();
5704   for (unsigned i = 0; i < NumMemOps; i++) {
5705     EVT VT = MemOps[i];
5706     unsigned VTSize = VT.getSizeInBits() / 8;
5707     SDValue Value;
5708 
5709     bool isDereferenceable =
5710       SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL);
5711     MachineMemOperand::Flags SrcMMOFlags = MMOFlags;
5712     if (isDereferenceable)
5713       SrcMMOFlags |= MachineMemOperand::MODereferenceable;
5714 
5715     Value =
5716         DAG.getLoad(VT, dl, Chain, DAG.getMemBasePlusOffset(Src, SrcOff, dl),
5717                     SrcPtrInfo.getWithOffset(SrcOff), SrcAlign, SrcMMOFlags);
5718     LoadValues.push_back(Value);
5719     LoadChains.push_back(Value.getValue(1));
5720     SrcOff += VTSize;
5721   }
5722   Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
5723   OutChains.clear();
5724   for (unsigned i = 0; i < NumMemOps; i++) {
5725     EVT VT = MemOps[i];
5726     unsigned VTSize = VT.getSizeInBits() / 8;
5727     SDValue Store;
5728 
5729     Store = DAG.getStore(Chain, dl, LoadValues[i],
5730                          DAG.getMemBasePlusOffset(Dst, DstOff, dl),
5731                          DstPtrInfo.getWithOffset(DstOff), Align, MMOFlags);
5732     OutChains.push_back(Store);
5733     DstOff += VTSize;
5734   }
5735 
5736   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
5737 }
5738 
5739 /// Lower the call to 'memset' intrinsic function into a series of store
5740 /// operations.
5741 ///
5742 /// \param DAG Selection DAG where lowered code is placed.
5743 /// \param dl Link to corresponding IR location.
5744 /// \param Chain Control flow dependency.
5745 /// \param Dst Pointer to destination memory location.
5746 /// \param Src Value of byte to write into the memory.
5747 /// \param Size Number of bytes to write.
5748 /// \param Align Alignment of the destination in bytes.
5749 /// \param isVol True if destination is volatile.
5750 /// \param DstPtrInfo IR information on the memory pointer.
5751 /// \returns New head in the control flow, if lowering was successful, empty
5752 /// SDValue otherwise.
5753 ///
5754 /// The function tries to replace 'llvm.memset' intrinsic with several store
5755 /// operations and value calculation code. This is usually profitable for small
5756 /// memory size.
5757 static SDValue getMemsetStores(SelectionDAG &DAG, const SDLoc &dl,
5758                                SDValue Chain, SDValue Dst, SDValue Src,
5759                                uint64_t Size, unsigned Align, bool isVol,
5760                                MachinePointerInfo DstPtrInfo) {
5761   // Turn a memset of undef to nop.
5762   if (Src.isUndef())
5763     return Chain;
5764 
5765   // Expand memset to a series of load/store ops if the size operand
5766   // falls below a certain threshold.
5767   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5768   std::vector<EVT> MemOps;
5769   bool DstAlignCanChange = false;
5770   MachineFunction &MF = DAG.getMachineFunction();
5771   MachineFrameInfo &MFI = MF.getFrameInfo();
5772   bool OptSize = shouldLowerMemFuncForSize(MF);
5773   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
5774   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
5775     DstAlignCanChange = true;
5776   bool IsZeroVal =
5777     isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue();
5778   if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize),
5779                                 Size, (DstAlignCanChange ? 0 : Align), 0,
5780                                 true, IsZeroVal, false, true,
5781                                 DstPtrInfo.getAddrSpace(), ~0u,
5782                                 DAG, TLI))
5783     return SDValue();
5784 
5785   if (DstAlignCanChange) {
5786     Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
5787     unsigned NewAlign = (unsigned)DAG.getDataLayout().getABITypeAlignment(Ty);
5788     if (NewAlign > Align) {
5789       // Give the stack frame object a larger alignment if needed.
5790       if (MFI.getObjectAlignment(FI->getIndex()) < NewAlign)
5791         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
5792       Align = NewAlign;
5793     }
5794   }
5795 
5796   SmallVector<SDValue, 8> OutChains;
5797   uint64_t DstOff = 0;
5798   unsigned NumMemOps = MemOps.size();
5799 
5800   // Find the largest store and generate the bit pattern for it.
5801   EVT LargestVT = MemOps[0];
5802   for (unsigned i = 1; i < NumMemOps; i++)
5803     if (MemOps[i].bitsGT(LargestVT))
5804       LargestVT = MemOps[i];
5805   SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
5806 
5807   for (unsigned i = 0; i < NumMemOps; i++) {
5808     EVT VT = MemOps[i];
5809     unsigned VTSize = VT.getSizeInBits() / 8;
5810     if (VTSize > Size) {
5811       // Issuing an unaligned load / store pair  that overlaps with the previous
5812       // pair. Adjust the offset accordingly.
5813       assert(i == NumMemOps-1 && i != 0);
5814       DstOff -= VTSize - Size;
5815     }
5816 
5817     // If this store is smaller than the largest store see whether we can get
5818     // the smaller value for free with a truncate.
5819     SDValue Value = MemSetValue;
5820     if (VT.bitsLT(LargestVT)) {
5821       if (!LargestVT.isVector() && !VT.isVector() &&
5822           TLI.isTruncateFree(LargestVT, VT))
5823         Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
5824       else
5825         Value = getMemsetValue(Src, VT, DAG, dl);
5826     }
5827     assert(Value.getValueType() == VT && "Value with wrong type.");
5828     SDValue Store = DAG.getStore(
5829         Chain, dl, Value, DAG.getMemBasePlusOffset(Dst, DstOff, dl),
5830         DstPtrInfo.getWithOffset(DstOff), Align,
5831         isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone);
5832     OutChains.push_back(Store);
5833     DstOff += VT.getSizeInBits() / 8;
5834     Size -= VTSize;
5835   }
5836 
5837   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
5838 }
5839 
5840 static void checkAddrSpaceIsValidForLibcall(const TargetLowering *TLI,
5841                                             unsigned AS) {
5842   // Lowering memcpy / memset / memmove intrinsics to calls is only valid if all
5843   // pointer operands can be losslessly bitcasted to pointers of address space 0
5844   if (AS != 0 && !TLI->isNoopAddrSpaceCast(AS, 0)) {
5845     report_fatal_error("cannot lower memory intrinsic in address space " +
5846                        Twine(AS));
5847   }
5848 }
5849 
5850 SDValue SelectionDAG::getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst,
5851                                 SDValue Src, SDValue Size, unsigned Align,
5852                                 bool isVol, bool AlwaysInline, bool isTailCall,
5853                                 MachinePointerInfo DstPtrInfo,
5854                                 MachinePointerInfo SrcPtrInfo) {
5855   assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
5856 
5857   // Check to see if we should lower the memcpy to loads and stores first.
5858   // For cases within the target-specified limits, this is the best choice.
5859   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5860   if (ConstantSize) {
5861     // Memcpy with size zero? Just return the original chain.
5862     if (ConstantSize->isNullValue())
5863       return Chain;
5864 
5865     SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
5866                                              ConstantSize->getZExtValue(),Align,
5867                                 isVol, false, DstPtrInfo, SrcPtrInfo);
5868     if (Result.getNode())
5869       return Result;
5870   }
5871 
5872   // Then check to see if we should lower the memcpy with target-specific
5873   // code. If the target chooses to do this, this is the next best.
5874   if (TSI) {
5875     SDValue Result = TSI->EmitTargetCodeForMemcpy(
5876         *this, dl, Chain, Dst, Src, Size, Align, isVol, AlwaysInline,
5877         DstPtrInfo, SrcPtrInfo);
5878     if (Result.getNode())
5879       return Result;
5880   }
5881 
5882   // If we really need inline code and the target declined to provide it,
5883   // use a (potentially long) sequence of loads and stores.
5884   if (AlwaysInline) {
5885     assert(ConstantSize && "AlwaysInline requires a constant size!");
5886     return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
5887                                    ConstantSize->getZExtValue(), Align, isVol,
5888                                    true, DstPtrInfo, SrcPtrInfo);
5889   }
5890 
5891   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
5892   checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace());
5893 
5894   // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
5895   // memcpy is not guaranteed to be safe. libc memcpys aren't required to
5896   // respect volatile, so they may do things like read or write memory
5897   // beyond the given memory regions. But fixing this isn't easy, and most
5898   // people don't care.
5899 
5900   // Emit a library call.
5901   TargetLowering::ArgListTy Args;
5902   TargetLowering::ArgListEntry Entry;
5903   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
5904   Entry.Node = Dst; Args.push_back(Entry);
5905   Entry.Node = Src; Args.push_back(Entry);
5906   Entry.Node = Size; Args.push_back(Entry);
5907   // FIXME: pass in SDLoc
5908   TargetLowering::CallLoweringInfo CLI(*this);
5909   CLI.setDebugLoc(dl)
5910       .setChain(Chain)
5911       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY),
5912                     Dst.getValueType().getTypeForEVT(*getContext()),
5913                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
5914                                       TLI->getPointerTy(getDataLayout())),
5915                     std::move(Args))
5916       .setDiscardResult()
5917       .setTailCall(isTailCall);
5918 
5919   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
5920   return CallResult.second;
5921 }
5922 
5923 SDValue SelectionDAG::getAtomicMemcpy(SDValue Chain, const SDLoc &dl,
5924                                       SDValue Dst, unsigned DstAlign,
5925                                       SDValue Src, unsigned SrcAlign,
5926                                       SDValue Size, Type *SizeTy,
5927                                       unsigned ElemSz, bool isTailCall,
5928                                       MachinePointerInfo DstPtrInfo,
5929                                       MachinePointerInfo SrcPtrInfo) {
5930   // Emit a library call.
5931   TargetLowering::ArgListTy Args;
5932   TargetLowering::ArgListEntry Entry;
5933   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
5934   Entry.Node = Dst;
5935   Args.push_back(Entry);
5936 
5937   Entry.Node = Src;
5938   Args.push_back(Entry);
5939 
5940   Entry.Ty = SizeTy;
5941   Entry.Node = Size;
5942   Args.push_back(Entry);
5943 
5944   RTLIB::Libcall LibraryCall =
5945       RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(ElemSz);
5946   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
5947     report_fatal_error("Unsupported element size");
5948 
5949   TargetLowering::CallLoweringInfo CLI(*this);
5950   CLI.setDebugLoc(dl)
5951       .setChain(Chain)
5952       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
5953                     Type::getVoidTy(*getContext()),
5954                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
5955                                       TLI->getPointerTy(getDataLayout())),
5956                     std::move(Args))
5957       .setDiscardResult()
5958       .setTailCall(isTailCall);
5959 
5960   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
5961   return CallResult.second;
5962 }
5963 
5964 SDValue SelectionDAG::getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
5965                                  SDValue Src, SDValue Size, unsigned Align,
5966                                  bool isVol, bool isTailCall,
5967                                  MachinePointerInfo DstPtrInfo,
5968                                  MachinePointerInfo SrcPtrInfo) {
5969   assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
5970 
5971   // Check to see if we should lower the memmove to loads and stores first.
5972   // For cases within the target-specified limits, this is the best choice.
5973   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5974   if (ConstantSize) {
5975     // Memmove with size zero? Just return the original chain.
5976     if (ConstantSize->isNullValue())
5977       return Chain;
5978 
5979     SDValue Result =
5980       getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src,
5981                                ConstantSize->getZExtValue(), Align, isVol,
5982                                false, DstPtrInfo, SrcPtrInfo);
5983     if (Result.getNode())
5984       return Result;
5985   }
5986 
5987   // Then check to see if we should lower the memmove with target-specific
5988   // code. If the target chooses to do this, this is the next best.
5989   if (TSI) {
5990     SDValue Result = TSI->EmitTargetCodeForMemmove(
5991         *this, dl, Chain, Dst, Src, Size, Align, isVol, DstPtrInfo, SrcPtrInfo);
5992     if (Result.getNode())
5993       return Result;
5994   }
5995 
5996   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
5997   checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace());
5998 
5999   // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
6000   // not be safe.  See memcpy above for more details.
6001 
6002   // Emit a library call.
6003   TargetLowering::ArgListTy Args;
6004   TargetLowering::ArgListEntry Entry;
6005   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
6006   Entry.Node = Dst; Args.push_back(Entry);
6007   Entry.Node = Src; Args.push_back(Entry);
6008   Entry.Node = Size; Args.push_back(Entry);
6009   // FIXME:  pass in SDLoc
6010   TargetLowering::CallLoweringInfo CLI(*this);
6011   CLI.setDebugLoc(dl)
6012       .setChain(Chain)
6013       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
6014                     Dst.getValueType().getTypeForEVT(*getContext()),
6015                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
6016                                       TLI->getPointerTy(getDataLayout())),
6017                     std::move(Args))
6018       .setDiscardResult()
6019       .setTailCall(isTailCall);
6020 
6021   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
6022   return CallResult.second;
6023 }
6024 
6025 SDValue SelectionDAG::getAtomicMemmove(SDValue Chain, const SDLoc &dl,
6026                                        SDValue Dst, unsigned DstAlign,
6027                                        SDValue Src, unsigned SrcAlign,
6028                                        SDValue Size, Type *SizeTy,
6029                                        unsigned ElemSz, bool isTailCall,
6030                                        MachinePointerInfo DstPtrInfo,
6031                                        MachinePointerInfo SrcPtrInfo) {
6032   // Emit a library call.
6033   TargetLowering::ArgListTy Args;
6034   TargetLowering::ArgListEntry Entry;
6035   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
6036   Entry.Node = Dst;
6037   Args.push_back(Entry);
6038 
6039   Entry.Node = Src;
6040   Args.push_back(Entry);
6041 
6042   Entry.Ty = SizeTy;
6043   Entry.Node = Size;
6044   Args.push_back(Entry);
6045 
6046   RTLIB::Libcall LibraryCall =
6047       RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(ElemSz);
6048   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
6049     report_fatal_error("Unsupported element size");
6050 
6051   TargetLowering::CallLoweringInfo CLI(*this);
6052   CLI.setDebugLoc(dl)
6053       .setChain(Chain)
6054       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
6055                     Type::getVoidTy(*getContext()),
6056                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
6057                                       TLI->getPointerTy(getDataLayout())),
6058                     std::move(Args))
6059       .setDiscardResult()
6060       .setTailCall(isTailCall);
6061 
6062   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
6063   return CallResult.second;
6064 }
6065 
6066 SDValue SelectionDAG::getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
6067                                 SDValue Src, SDValue Size, unsigned Align,
6068                                 bool isVol, bool isTailCall,
6069                                 MachinePointerInfo DstPtrInfo) {
6070   assert(Align && "The SDAG layer expects explicit alignment and reserves 0");
6071 
6072   // Check to see if we should lower the memset to stores first.
6073   // For cases within the target-specified limits, this is the best choice.
6074   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6075   if (ConstantSize) {
6076     // Memset with size zero? Just return the original chain.
6077     if (ConstantSize->isNullValue())
6078       return Chain;
6079 
6080     SDValue Result =
6081       getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(),
6082                       Align, isVol, DstPtrInfo);
6083 
6084     if (Result.getNode())
6085       return Result;
6086   }
6087 
6088   // Then check to see if we should lower the memset with target-specific
6089   // code. If the target chooses to do this, this is the next best.
6090   if (TSI) {
6091     SDValue Result = TSI->EmitTargetCodeForMemset(
6092         *this, dl, Chain, Dst, Src, Size, Align, isVol, DstPtrInfo);
6093     if (Result.getNode())
6094       return Result;
6095   }
6096 
6097   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
6098 
6099   // Emit a library call.
6100   Type *IntPtrTy = getDataLayout().getIntPtrType(*getContext());
6101   TargetLowering::ArgListTy Args;
6102   TargetLowering::ArgListEntry Entry;
6103   Entry.Node = Dst; Entry.Ty = IntPtrTy;
6104   Args.push_back(Entry);
6105   Entry.Node = Src;
6106   Entry.Ty = Src.getValueType().getTypeForEVT(*getContext());
6107   Args.push_back(Entry);
6108   Entry.Node = Size;
6109   Entry.Ty = IntPtrTy;
6110   Args.push_back(Entry);
6111 
6112   // FIXME: pass in SDLoc
6113   TargetLowering::CallLoweringInfo CLI(*this);
6114   CLI.setDebugLoc(dl)
6115       .setChain(Chain)
6116       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET),
6117                     Dst.getValueType().getTypeForEVT(*getContext()),
6118                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
6119                                       TLI->getPointerTy(getDataLayout())),
6120                     std::move(Args))
6121       .setDiscardResult()
6122       .setTailCall(isTailCall);
6123 
6124   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
6125   return CallResult.second;
6126 }
6127 
6128 SDValue SelectionDAG::getAtomicMemset(SDValue Chain, const SDLoc &dl,
6129                                       SDValue Dst, unsigned DstAlign,
6130                                       SDValue Value, SDValue Size, Type *SizeTy,
6131                                       unsigned ElemSz, bool isTailCall,
6132                                       MachinePointerInfo DstPtrInfo) {
6133   // Emit a library call.
6134   TargetLowering::ArgListTy Args;
6135   TargetLowering::ArgListEntry Entry;
6136   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
6137   Entry.Node = Dst;
6138   Args.push_back(Entry);
6139 
6140   Entry.Ty = Type::getInt8Ty(*getContext());
6141   Entry.Node = Value;
6142   Args.push_back(Entry);
6143 
6144   Entry.Ty = SizeTy;
6145   Entry.Node = Size;
6146   Args.push_back(Entry);
6147 
6148   RTLIB::Libcall LibraryCall =
6149       RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(ElemSz);
6150   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
6151     report_fatal_error("Unsupported element size");
6152 
6153   TargetLowering::CallLoweringInfo CLI(*this);
6154   CLI.setDebugLoc(dl)
6155       .setChain(Chain)
6156       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
6157                     Type::getVoidTy(*getContext()),
6158                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
6159                                       TLI->getPointerTy(getDataLayout())),
6160                     std::move(Args))
6161       .setDiscardResult()
6162       .setTailCall(isTailCall);
6163 
6164   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
6165   return CallResult.second;
6166 }
6167 
6168 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
6169                                 SDVTList VTList, ArrayRef<SDValue> Ops,
6170                                 MachineMemOperand *MMO) {
6171   FoldingSetNodeID ID;
6172   ID.AddInteger(MemVT.getRawBits());
6173   AddNodeIDNode(ID, Opcode, VTList, Ops);
6174   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6175   void* IP = nullptr;
6176   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6177     cast<AtomicSDNode>(E)->refineAlignment(MMO);
6178     return SDValue(E, 0);
6179   }
6180 
6181   auto *N = newSDNode<AtomicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
6182                                     VTList, MemVT, MMO);
6183   createOperands(N, Ops);
6184 
6185   CSEMap.InsertNode(N, IP);
6186   InsertNode(N);
6187   return SDValue(N, 0);
6188 }
6189 
6190 SDValue SelectionDAG::getAtomicCmpSwap(
6191     unsigned Opcode, const SDLoc &dl, EVT MemVT, SDVTList VTs, SDValue Chain,
6192     SDValue Ptr, SDValue Cmp, SDValue Swp, MachinePointerInfo PtrInfo,
6193     unsigned Alignment, AtomicOrdering SuccessOrdering,
6194     AtomicOrdering FailureOrdering, SyncScope::ID SSID) {
6195   assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
6196          Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
6197   assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
6198 
6199   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
6200     Alignment = getEVTAlignment(MemVT);
6201 
6202   MachineFunction &MF = getMachineFunction();
6203 
6204   // FIXME: Volatile isn't really correct; we should keep track of atomic
6205   // orderings in the memoperand.
6206   auto Flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad |
6207                MachineMemOperand::MOStore;
6208   MachineMemOperand *MMO =
6209     MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment,
6210                             AAMDNodes(), nullptr, SSID, SuccessOrdering,
6211                             FailureOrdering);
6212 
6213   return getAtomicCmpSwap(Opcode, dl, MemVT, VTs, Chain, Ptr, Cmp, Swp, MMO);
6214 }
6215 
6216 SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl,
6217                                        EVT MemVT, SDVTList VTs, SDValue Chain,
6218                                        SDValue Ptr, SDValue Cmp, SDValue Swp,
6219                                        MachineMemOperand *MMO) {
6220   assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
6221          Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
6222   assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
6223 
6224   SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
6225   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
6226 }
6227 
6228 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
6229                                 SDValue Chain, SDValue Ptr, SDValue Val,
6230                                 const Value *PtrVal, unsigned Alignment,
6231                                 AtomicOrdering Ordering,
6232                                 SyncScope::ID SSID) {
6233   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
6234     Alignment = getEVTAlignment(MemVT);
6235 
6236   MachineFunction &MF = getMachineFunction();
6237   // An atomic store does not load. An atomic load does not store.
6238   // (An atomicrmw obviously both loads and stores.)
6239   // For now, atomics are considered to be volatile always, and they are
6240   // chained as such.
6241   // FIXME: Volatile isn't really correct; we should keep track of atomic
6242   // orderings in the memoperand.
6243   auto Flags = MachineMemOperand::MOVolatile;
6244   if (Opcode != ISD::ATOMIC_STORE)
6245     Flags |= MachineMemOperand::MOLoad;
6246   if (Opcode != ISD::ATOMIC_LOAD)
6247     Flags |= MachineMemOperand::MOStore;
6248 
6249   MachineMemOperand *MMO =
6250     MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags,
6251                             MemVT.getStoreSize(), Alignment, AAMDNodes(),
6252                             nullptr, SSID, Ordering);
6253 
6254   return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO);
6255 }
6256 
6257 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
6258                                 SDValue Chain, SDValue Ptr, SDValue Val,
6259                                 MachineMemOperand *MMO) {
6260   assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
6261           Opcode == ISD::ATOMIC_LOAD_SUB ||
6262           Opcode == ISD::ATOMIC_LOAD_AND ||
6263           Opcode == ISD::ATOMIC_LOAD_CLR ||
6264           Opcode == ISD::ATOMIC_LOAD_OR ||
6265           Opcode == ISD::ATOMIC_LOAD_XOR ||
6266           Opcode == ISD::ATOMIC_LOAD_NAND ||
6267           Opcode == ISD::ATOMIC_LOAD_MIN ||
6268           Opcode == ISD::ATOMIC_LOAD_MAX ||
6269           Opcode == ISD::ATOMIC_LOAD_UMIN ||
6270           Opcode == ISD::ATOMIC_LOAD_UMAX ||
6271           Opcode == ISD::ATOMIC_SWAP ||
6272           Opcode == ISD::ATOMIC_STORE) &&
6273          "Invalid Atomic Op");
6274 
6275   EVT VT = Val.getValueType();
6276 
6277   SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
6278                                                getVTList(VT, MVT::Other);
6279   SDValue Ops[] = {Chain, Ptr, Val};
6280   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
6281 }
6282 
6283 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
6284                                 EVT VT, SDValue Chain, SDValue Ptr,
6285                                 MachineMemOperand *MMO) {
6286   assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
6287 
6288   SDVTList VTs = getVTList(VT, MVT::Other);
6289   SDValue Ops[] = {Chain, Ptr};
6290   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
6291 }
6292 
6293 /// getMergeValues - Create a MERGE_VALUES node from the given operands.
6294 SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, const SDLoc &dl) {
6295   if (Ops.size() == 1)
6296     return Ops[0];
6297 
6298   SmallVector<EVT, 4> VTs;
6299   VTs.reserve(Ops.size());
6300   for (unsigned i = 0; i < Ops.size(); ++i)
6301     VTs.push_back(Ops[i].getValueType());
6302   return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops);
6303 }
6304 
6305 SDValue SelectionDAG::getMemIntrinsicNode(
6306     unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
6307     EVT MemVT, MachinePointerInfo PtrInfo, unsigned Align,
6308     MachineMemOperand::Flags Flags, unsigned Size) {
6309   if (Align == 0)  // Ensure that codegen never sees alignment 0
6310     Align = getEVTAlignment(MemVT);
6311 
6312   if (!Size)
6313     Size = MemVT.getStoreSize();
6314 
6315   MachineFunction &MF = getMachineFunction();
6316   MachineMemOperand *MMO =
6317     MF.getMachineMemOperand(PtrInfo, Flags, Size, Align);
6318 
6319   return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO);
6320 }
6321 
6322 SDValue SelectionDAG::getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
6323                                           SDVTList VTList,
6324                                           ArrayRef<SDValue> Ops, EVT MemVT,
6325                                           MachineMemOperand *MMO) {
6326   assert((Opcode == ISD::INTRINSIC_VOID ||
6327           Opcode == ISD::INTRINSIC_W_CHAIN ||
6328           Opcode == ISD::PREFETCH ||
6329           Opcode == ISD::LIFETIME_START ||
6330           Opcode == ISD::LIFETIME_END ||
6331           ((int)Opcode <= std::numeric_limits<int>::max() &&
6332            (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
6333          "Opcode is not a memory-accessing opcode!");
6334 
6335   // Memoize the node unless it returns a flag.
6336   MemIntrinsicSDNode *N;
6337   if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
6338     FoldingSetNodeID ID;
6339     AddNodeIDNode(ID, Opcode, VTList, Ops);
6340     ID.AddInteger(getSyntheticNodeSubclassData<MemIntrinsicSDNode>(
6341         Opcode, dl.getIROrder(), VTList, MemVT, MMO));
6342     ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6343     void *IP = nullptr;
6344     if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6345       cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
6346       return SDValue(E, 0);
6347     }
6348 
6349     N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
6350                                       VTList, MemVT, MMO);
6351     createOperands(N, Ops);
6352 
6353   CSEMap.InsertNode(N, IP);
6354   } else {
6355     N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
6356                                       VTList, MemVT, MMO);
6357     createOperands(N, Ops);
6358   }
6359   InsertNode(N);
6360   return SDValue(N, 0);
6361 }
6362 
6363 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
6364 /// MachinePointerInfo record from it.  This is particularly useful because the
6365 /// code generator has many cases where it doesn't bother passing in a
6366 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
6367 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info,
6368                                            SelectionDAG &DAG, SDValue Ptr,
6369                                            int64_t Offset = 0) {
6370   // If this is FI+Offset, we can model it.
6371   if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
6372     return MachinePointerInfo::getFixedStack(DAG.getMachineFunction(),
6373                                              FI->getIndex(), Offset);
6374 
6375   // If this is (FI+Offset1)+Offset2, we can model it.
6376   if (Ptr.getOpcode() != ISD::ADD ||
6377       !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
6378       !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
6379     return Info;
6380 
6381   int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
6382   return MachinePointerInfo::getFixedStack(
6383       DAG.getMachineFunction(), FI,
6384       Offset + cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
6385 }
6386 
6387 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
6388 /// MachinePointerInfo record from it.  This is particularly useful because the
6389 /// code generator has many cases where it doesn't bother passing in a
6390 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
6391 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info,
6392                                            SelectionDAG &DAG, SDValue Ptr,
6393                                            SDValue OffsetOp) {
6394   // If the 'Offset' value isn't a constant, we can't handle this.
6395   if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
6396     return InferPointerInfo(Info, DAG, Ptr, OffsetNode->getSExtValue());
6397   if (OffsetOp.isUndef())
6398     return InferPointerInfo(Info, DAG, Ptr);
6399   return Info;
6400 }
6401 
6402 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
6403                               EVT VT, const SDLoc &dl, SDValue Chain,
6404                               SDValue Ptr, SDValue Offset,
6405                               MachinePointerInfo PtrInfo, EVT MemVT,
6406                               unsigned Alignment,
6407                               MachineMemOperand::Flags MMOFlags,
6408                               const AAMDNodes &AAInfo, const MDNode *Ranges) {
6409   assert(Chain.getValueType() == MVT::Other &&
6410         "Invalid chain type");
6411   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
6412     Alignment = getEVTAlignment(MemVT);
6413 
6414   MMOFlags |= MachineMemOperand::MOLoad;
6415   assert((MMOFlags & MachineMemOperand::MOStore) == 0);
6416   // If we don't have a PtrInfo, infer the trivial frame index case to simplify
6417   // clients.
6418   if (PtrInfo.V.isNull())
6419     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr, Offset);
6420 
6421   MachineFunction &MF = getMachineFunction();
6422   MachineMemOperand *MMO = MF.getMachineMemOperand(
6423       PtrInfo, MMOFlags, MemVT.getStoreSize(), Alignment, AAInfo, Ranges);
6424   return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
6425 }
6426 
6427 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
6428                               EVT VT, const SDLoc &dl, SDValue Chain,
6429                               SDValue Ptr, SDValue Offset, EVT MemVT,
6430                               MachineMemOperand *MMO) {
6431   if (VT == MemVT) {
6432     ExtType = ISD::NON_EXTLOAD;
6433   } else if (ExtType == ISD::NON_EXTLOAD) {
6434     assert(VT == MemVT && "Non-extending load from different memory type!");
6435   } else {
6436     // Extending load.
6437     assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
6438            "Should only be an extending load, not truncating!");
6439     assert(VT.isInteger() == MemVT.isInteger() &&
6440            "Cannot convert from FP to Int or Int -> FP!");
6441     assert(VT.isVector() == MemVT.isVector() &&
6442            "Cannot use an ext load to convert to or from a vector!");
6443     assert((!VT.isVector() ||
6444             VT.getVectorNumElements() == MemVT.getVectorNumElements()) &&
6445            "Cannot use an ext load to change the number of vector elements!");
6446   }
6447 
6448   bool Indexed = AM != ISD::UNINDEXED;
6449   assert((Indexed || Offset.isUndef()) && "Unindexed load with an offset!");
6450 
6451   SDVTList VTs = Indexed ?
6452     getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
6453   SDValue Ops[] = { Chain, Ptr, Offset };
6454   FoldingSetNodeID ID;
6455   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops);
6456   ID.AddInteger(MemVT.getRawBits());
6457   ID.AddInteger(getSyntheticNodeSubclassData<LoadSDNode>(
6458       dl.getIROrder(), VTs, AM, ExtType, MemVT, MMO));
6459   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6460   void *IP = nullptr;
6461   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6462     cast<LoadSDNode>(E)->refineAlignment(MMO);
6463     return SDValue(E, 0);
6464   }
6465   auto *N = newSDNode<LoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
6466                                   ExtType, MemVT, MMO);
6467   createOperands(N, Ops);
6468 
6469   CSEMap.InsertNode(N, IP);
6470   InsertNode(N);
6471   SDValue V(N, 0);
6472   NewSDValueDbgMsg(V, "Creating new node: ", this);
6473   return V;
6474 }
6475 
6476 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain,
6477                               SDValue Ptr, MachinePointerInfo PtrInfo,
6478                               unsigned Alignment,
6479                               MachineMemOperand::Flags MMOFlags,
6480                               const AAMDNodes &AAInfo, const MDNode *Ranges) {
6481   SDValue Undef = getUNDEF(Ptr.getValueType());
6482   return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
6483                  PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges);
6484 }
6485 
6486 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain,
6487                               SDValue Ptr, MachineMemOperand *MMO) {
6488   SDValue Undef = getUNDEF(Ptr.getValueType());
6489   return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
6490                  VT, MMO);
6491 }
6492 
6493 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl,
6494                                  EVT VT, SDValue Chain, SDValue Ptr,
6495                                  MachinePointerInfo PtrInfo, EVT MemVT,
6496                                  unsigned Alignment,
6497                                  MachineMemOperand::Flags MMOFlags,
6498                                  const AAMDNodes &AAInfo) {
6499   SDValue Undef = getUNDEF(Ptr.getValueType());
6500   return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, PtrInfo,
6501                  MemVT, Alignment, MMOFlags, AAInfo);
6502 }
6503 
6504 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl,
6505                                  EVT VT, SDValue Chain, SDValue Ptr, EVT MemVT,
6506                                  MachineMemOperand *MMO) {
6507   SDValue Undef = getUNDEF(Ptr.getValueType());
6508   return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
6509                  MemVT, MMO);
6510 }
6511 
6512 SDValue SelectionDAG::getIndexedLoad(SDValue OrigLoad, const SDLoc &dl,
6513                                      SDValue Base, SDValue Offset,
6514                                      ISD::MemIndexedMode AM) {
6515   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
6516   assert(LD->getOffset().isUndef() && "Load is already a indexed load!");
6517   // Don't propagate the invariant or dereferenceable flags.
6518   auto MMOFlags =
6519       LD->getMemOperand()->getFlags() &
6520       ~(MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable);
6521   return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
6522                  LD->getChain(), Base, Offset, LD->getPointerInfo(),
6523                  LD->getMemoryVT(), LD->getAlignment(), MMOFlags,
6524                  LD->getAAInfo());
6525 }
6526 
6527 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
6528                                SDValue Ptr, MachinePointerInfo PtrInfo,
6529                                unsigned Alignment,
6530                                MachineMemOperand::Flags MMOFlags,
6531                                const AAMDNodes &AAInfo) {
6532   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
6533   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
6534     Alignment = getEVTAlignment(Val.getValueType());
6535 
6536   MMOFlags |= MachineMemOperand::MOStore;
6537   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
6538 
6539   if (PtrInfo.V.isNull())
6540     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
6541 
6542   MachineFunction &MF = getMachineFunction();
6543   MachineMemOperand *MMO = MF.getMachineMemOperand(
6544       PtrInfo, MMOFlags, Val.getValueType().getStoreSize(), Alignment, AAInfo);
6545   return getStore(Chain, dl, Val, Ptr, MMO);
6546 }
6547 
6548 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
6549                                SDValue Ptr, MachineMemOperand *MMO) {
6550   assert(Chain.getValueType() == MVT::Other &&
6551         "Invalid chain type");
6552   EVT VT = Val.getValueType();
6553   SDVTList VTs = getVTList(MVT::Other);
6554   SDValue Undef = getUNDEF(Ptr.getValueType());
6555   SDValue Ops[] = { Chain, Val, Ptr, Undef };
6556   FoldingSetNodeID ID;
6557   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
6558   ID.AddInteger(VT.getRawBits());
6559   ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
6560       dl.getIROrder(), VTs, ISD::UNINDEXED, false, VT, MMO));
6561   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6562   void *IP = nullptr;
6563   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6564     cast<StoreSDNode>(E)->refineAlignment(MMO);
6565     return SDValue(E, 0);
6566   }
6567   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
6568                                    ISD::UNINDEXED, false, VT, MMO);
6569   createOperands(N, Ops);
6570 
6571   CSEMap.InsertNode(N, IP);
6572   InsertNode(N);
6573   SDValue V(N, 0);
6574   NewSDValueDbgMsg(V, "Creating new node: ", this);
6575   return V;
6576 }
6577 
6578 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
6579                                     SDValue Ptr, MachinePointerInfo PtrInfo,
6580                                     EVT SVT, unsigned Alignment,
6581                                     MachineMemOperand::Flags MMOFlags,
6582                                     const AAMDNodes &AAInfo) {
6583   assert(Chain.getValueType() == MVT::Other &&
6584         "Invalid chain type");
6585   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
6586     Alignment = getEVTAlignment(SVT);
6587 
6588   MMOFlags |= MachineMemOperand::MOStore;
6589   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
6590 
6591   if (PtrInfo.V.isNull())
6592     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
6593 
6594   MachineFunction &MF = getMachineFunction();
6595   MachineMemOperand *MMO = MF.getMachineMemOperand(
6596       PtrInfo, MMOFlags, SVT.getStoreSize(), Alignment, AAInfo);
6597   return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
6598 }
6599 
6600 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
6601                                     SDValue Ptr, EVT SVT,
6602                                     MachineMemOperand *MMO) {
6603   EVT VT = Val.getValueType();
6604 
6605   assert(Chain.getValueType() == MVT::Other &&
6606         "Invalid chain type");
6607   if (VT == SVT)
6608     return getStore(Chain, dl, Val, Ptr, MMO);
6609 
6610   assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
6611          "Should only be a truncating store, not extending!");
6612   assert(VT.isInteger() == SVT.isInteger() &&
6613          "Can't do FP-INT conversion!");
6614   assert(VT.isVector() == SVT.isVector() &&
6615          "Cannot use trunc store to convert to or from a vector!");
6616   assert((!VT.isVector() ||
6617           VT.getVectorNumElements() == SVT.getVectorNumElements()) &&
6618          "Cannot use trunc store to change the number of vector elements!");
6619 
6620   SDVTList VTs = getVTList(MVT::Other);
6621   SDValue Undef = getUNDEF(Ptr.getValueType());
6622   SDValue Ops[] = { Chain, Val, Ptr, Undef };
6623   FoldingSetNodeID ID;
6624   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
6625   ID.AddInteger(SVT.getRawBits());
6626   ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
6627       dl.getIROrder(), VTs, ISD::UNINDEXED, true, SVT, MMO));
6628   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6629   void *IP = nullptr;
6630   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6631     cast<StoreSDNode>(E)->refineAlignment(MMO);
6632     return SDValue(E, 0);
6633   }
6634   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
6635                                    ISD::UNINDEXED, true, SVT, MMO);
6636   createOperands(N, Ops);
6637 
6638   CSEMap.InsertNode(N, IP);
6639   InsertNode(N);
6640   SDValue V(N, 0);
6641   NewSDValueDbgMsg(V, "Creating new node: ", this);
6642   return V;
6643 }
6644 
6645 SDValue SelectionDAG::getIndexedStore(SDValue OrigStore, const SDLoc &dl,
6646                                       SDValue Base, SDValue Offset,
6647                                       ISD::MemIndexedMode AM) {
6648   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
6649   assert(ST->getOffset().isUndef() && "Store is already a indexed store!");
6650   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
6651   SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
6652   FoldingSetNodeID ID;
6653   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
6654   ID.AddInteger(ST->getMemoryVT().getRawBits());
6655   ID.AddInteger(ST->getRawSubclassData());
6656   ID.AddInteger(ST->getPointerInfo().getAddrSpace());
6657   void *IP = nullptr;
6658   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
6659     return SDValue(E, 0);
6660 
6661   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
6662                                    ST->isTruncatingStore(), ST->getMemoryVT(),
6663                                    ST->getMemOperand());
6664   createOperands(N, Ops);
6665 
6666   CSEMap.InsertNode(N, IP);
6667   InsertNode(N);
6668   SDValue V(N, 0);
6669   NewSDValueDbgMsg(V, "Creating new node: ", this);
6670   return V;
6671 }
6672 
6673 SDValue SelectionDAG::getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain,
6674                                     SDValue Ptr, SDValue Mask, SDValue PassThru,
6675                                     EVT MemVT, MachineMemOperand *MMO,
6676                                     ISD::LoadExtType ExtTy, bool isExpanding) {
6677   SDVTList VTs = getVTList(VT, MVT::Other);
6678   SDValue Ops[] = { Chain, Ptr, Mask, PassThru };
6679   FoldingSetNodeID ID;
6680   AddNodeIDNode(ID, ISD::MLOAD, VTs, Ops);
6681   ID.AddInteger(VT.getRawBits());
6682   ID.AddInteger(getSyntheticNodeSubclassData<MaskedLoadSDNode>(
6683       dl.getIROrder(), VTs, ExtTy, isExpanding, MemVT, MMO));
6684   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6685   void *IP = nullptr;
6686   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6687     cast<MaskedLoadSDNode>(E)->refineAlignment(MMO);
6688     return SDValue(E, 0);
6689   }
6690   auto *N = newSDNode<MaskedLoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
6691                                         ExtTy, isExpanding, MemVT, MMO);
6692   createOperands(N, Ops);
6693 
6694   CSEMap.InsertNode(N, IP);
6695   InsertNode(N);
6696   SDValue V(N, 0);
6697   NewSDValueDbgMsg(V, "Creating new node: ", this);
6698   return V;
6699 }
6700 
6701 SDValue SelectionDAG::getMaskedStore(SDValue Chain, const SDLoc &dl,
6702                                      SDValue Val, SDValue Ptr, SDValue Mask,
6703                                      EVT MemVT, MachineMemOperand *MMO,
6704                                      bool IsTruncating, bool IsCompressing) {
6705   assert(Chain.getValueType() == MVT::Other &&
6706         "Invalid chain type");
6707   EVT VT = Val.getValueType();
6708   SDVTList VTs = getVTList(MVT::Other);
6709   SDValue Ops[] = { Chain, Val, Ptr, Mask };
6710   FoldingSetNodeID ID;
6711   AddNodeIDNode(ID, ISD::MSTORE, VTs, Ops);
6712   ID.AddInteger(VT.getRawBits());
6713   ID.AddInteger(getSyntheticNodeSubclassData<MaskedStoreSDNode>(
6714       dl.getIROrder(), VTs, IsTruncating, IsCompressing, MemVT, MMO));
6715   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6716   void *IP = nullptr;
6717   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6718     cast<MaskedStoreSDNode>(E)->refineAlignment(MMO);
6719     return SDValue(E, 0);
6720   }
6721   auto *N = newSDNode<MaskedStoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
6722                                          IsTruncating, IsCompressing, MemVT, MMO);
6723   createOperands(N, Ops);
6724 
6725   CSEMap.InsertNode(N, IP);
6726   InsertNode(N);
6727   SDValue V(N, 0);
6728   NewSDValueDbgMsg(V, "Creating new node: ", this);
6729   return V;
6730 }
6731 
6732 SDValue SelectionDAG::getMaskedGather(SDVTList VTs, EVT VT, const SDLoc &dl,
6733                                       ArrayRef<SDValue> Ops,
6734                                       MachineMemOperand *MMO) {
6735   assert(Ops.size() == 6 && "Incompatible number of operands");
6736 
6737   FoldingSetNodeID ID;
6738   AddNodeIDNode(ID, ISD::MGATHER, VTs, Ops);
6739   ID.AddInteger(VT.getRawBits());
6740   ID.AddInteger(getSyntheticNodeSubclassData<MaskedGatherSDNode>(
6741       dl.getIROrder(), VTs, VT, MMO));
6742   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6743   void *IP = nullptr;
6744   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6745     cast<MaskedGatherSDNode>(E)->refineAlignment(MMO);
6746     return SDValue(E, 0);
6747   }
6748 
6749   auto *N = newSDNode<MaskedGatherSDNode>(dl.getIROrder(), dl.getDebugLoc(),
6750                                           VTs, VT, MMO);
6751   createOperands(N, Ops);
6752 
6753   assert(N->getPassThru().getValueType() == N->getValueType(0) &&
6754          "Incompatible type of the PassThru value in MaskedGatherSDNode");
6755   assert(N->getMask().getValueType().getVectorNumElements() ==
6756              N->getValueType(0).getVectorNumElements() &&
6757          "Vector width mismatch between mask and data");
6758   assert(N->getIndex().getValueType().getVectorNumElements() >=
6759              N->getValueType(0).getVectorNumElements() &&
6760          "Vector width mismatch between index and data");
6761   assert(isa<ConstantSDNode>(N->getScale()) &&
6762          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
6763          "Scale should be a constant power of 2");
6764 
6765   CSEMap.InsertNode(N, IP);
6766   InsertNode(N);
6767   SDValue V(N, 0);
6768   NewSDValueDbgMsg(V, "Creating new node: ", this);
6769   return V;
6770 }
6771 
6772 SDValue SelectionDAG::getMaskedScatter(SDVTList VTs, EVT VT, const SDLoc &dl,
6773                                        ArrayRef<SDValue> Ops,
6774                                        MachineMemOperand *MMO) {
6775   assert(Ops.size() == 6 && "Incompatible number of operands");
6776 
6777   FoldingSetNodeID ID;
6778   AddNodeIDNode(ID, ISD::MSCATTER, VTs, Ops);
6779   ID.AddInteger(VT.getRawBits());
6780   ID.AddInteger(getSyntheticNodeSubclassData<MaskedScatterSDNode>(
6781       dl.getIROrder(), VTs, VT, MMO));
6782   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
6783   void *IP = nullptr;
6784   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
6785     cast<MaskedScatterSDNode>(E)->refineAlignment(MMO);
6786     return SDValue(E, 0);
6787   }
6788   auto *N = newSDNode<MaskedScatterSDNode>(dl.getIROrder(), dl.getDebugLoc(),
6789                                            VTs, VT, MMO);
6790   createOperands(N, Ops);
6791 
6792   assert(N->getMask().getValueType().getVectorNumElements() ==
6793              N->getValue().getValueType().getVectorNumElements() &&
6794          "Vector width mismatch between mask and data");
6795   assert(N->getIndex().getValueType().getVectorNumElements() >=
6796              N->getValue().getValueType().getVectorNumElements() &&
6797          "Vector width mismatch between index and data");
6798   assert(isa<ConstantSDNode>(N->getScale()) &&
6799          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
6800          "Scale should be a constant power of 2");
6801 
6802   CSEMap.InsertNode(N, IP);
6803   InsertNode(N);
6804   SDValue V(N, 0);
6805   NewSDValueDbgMsg(V, "Creating new node: ", this);
6806   return V;
6807 }
6808 
6809 SDValue SelectionDAG::getVAArg(EVT VT, const SDLoc &dl, SDValue Chain,
6810                                SDValue Ptr, SDValue SV, unsigned Align) {
6811   SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, dl, MVT::i32) };
6812   return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops);
6813 }
6814 
6815 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6816                               ArrayRef<SDUse> Ops) {
6817   switch (Ops.size()) {
6818   case 0: return getNode(Opcode, DL, VT);
6819   case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0]));
6820   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
6821   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
6822   default: break;
6823   }
6824 
6825   // Copy from an SDUse array into an SDValue array for use with
6826   // the regular getNode logic.
6827   SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end());
6828   return getNode(Opcode, DL, VT, NewOps);
6829 }
6830 
6831 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6832                               ArrayRef<SDValue> Ops, const SDNodeFlags Flags) {
6833   unsigned NumOps = Ops.size();
6834   switch (NumOps) {
6835   case 0: return getNode(Opcode, DL, VT);
6836   case 1: return getNode(Opcode, DL, VT, Ops[0], Flags);
6837   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Flags);
6838   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2], Flags);
6839   default: break;
6840   }
6841 
6842   switch (Opcode) {
6843   default: break;
6844   case ISD::BUILD_VECTOR:
6845     // Attempt to simplify BUILD_VECTOR.
6846     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
6847       return V;
6848     break;
6849   case ISD::CONCAT_VECTORS:
6850     // Attempt to fold CONCAT_VECTORS into BUILD_VECTOR or UNDEF.
6851     if (SDValue V = FoldCONCAT_VECTORS(DL, VT, Ops, *this))
6852       return V;
6853     break;
6854   case ISD::SELECT_CC:
6855     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
6856     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
6857            "LHS and RHS of condition must have same type!");
6858     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
6859            "True and False arms of SelectCC must have same type!");
6860     assert(Ops[2].getValueType() == VT &&
6861            "select_cc node must be of same type as true and false value!");
6862     break;
6863   case ISD::BR_CC:
6864     assert(NumOps == 5 && "BR_CC takes 5 operands!");
6865     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
6866            "LHS/RHS of comparison should match types!");
6867     break;
6868   }
6869 
6870   // Memoize nodes.
6871   SDNode *N;
6872   SDVTList VTs = getVTList(VT);
6873 
6874   if (VT != MVT::Glue) {
6875     FoldingSetNodeID ID;
6876     AddNodeIDNode(ID, Opcode, VTs, Ops);
6877     void *IP = nullptr;
6878 
6879     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
6880       return SDValue(E, 0);
6881 
6882     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6883     createOperands(N, Ops);
6884 
6885     CSEMap.InsertNode(N, IP);
6886   } else {
6887     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6888     createOperands(N, Ops);
6889   }
6890 
6891   InsertNode(N);
6892   SDValue V(N, 0);
6893   NewSDValueDbgMsg(V, "Creating new node: ", this);
6894   return V;
6895 }
6896 
6897 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL,
6898                               ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) {
6899   return getNode(Opcode, DL, getVTList(ResultTys), Ops);
6900 }
6901 
6902 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6903                               ArrayRef<SDValue> Ops) {
6904   if (VTList.NumVTs == 1)
6905     return getNode(Opcode, DL, VTList.VTs[0], Ops);
6906 
6907 #if 0
6908   switch (Opcode) {
6909   // FIXME: figure out how to safely handle things like
6910   // int foo(int x) { return 1 << (x & 255); }
6911   // int bar() { return foo(256); }
6912   case ISD::SRA_PARTS:
6913   case ISD::SRL_PARTS:
6914   case ISD::SHL_PARTS:
6915     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
6916         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
6917       return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
6918     else if (N3.getOpcode() == ISD::AND)
6919       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
6920         // If the and is only masking out bits that cannot effect the shift,
6921         // eliminate the and.
6922         unsigned NumBits = VT.getScalarSizeInBits()*2;
6923         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
6924           return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
6925       }
6926     break;
6927   }
6928 #endif
6929 
6930   // Memoize the node unless it returns a flag.
6931   SDNode *N;
6932   if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
6933     FoldingSetNodeID ID;
6934     AddNodeIDNode(ID, Opcode, VTList, Ops);
6935     void *IP = nullptr;
6936     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
6937       return SDValue(E, 0);
6938 
6939     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList);
6940     createOperands(N, Ops);
6941     CSEMap.InsertNode(N, IP);
6942   } else {
6943     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList);
6944     createOperands(N, Ops);
6945   }
6946   InsertNode(N);
6947   SDValue V(N, 0);
6948   NewSDValueDbgMsg(V, "Creating new node: ", this);
6949   return V;
6950 }
6951 
6952 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL,
6953                               SDVTList VTList) {
6954   return getNode(Opcode, DL, VTList, None);
6955 }
6956 
6957 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6958                               SDValue N1) {
6959   SDValue Ops[] = { N1 };
6960   return getNode(Opcode, DL, VTList, Ops);
6961 }
6962 
6963 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6964                               SDValue N1, SDValue N2) {
6965   SDValue Ops[] = { N1, N2 };
6966   return getNode(Opcode, DL, VTList, Ops);
6967 }
6968 
6969 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6970                               SDValue N1, SDValue N2, SDValue N3) {
6971   SDValue Ops[] = { N1, N2, N3 };
6972   return getNode(Opcode, DL, VTList, Ops);
6973 }
6974 
6975 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6976                               SDValue N1, SDValue N2, SDValue N3, SDValue N4) {
6977   SDValue Ops[] = { N1, N2, N3, N4 };
6978   return getNode(Opcode, DL, VTList, Ops);
6979 }
6980 
6981 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
6982                               SDValue N1, SDValue N2, SDValue N3, SDValue N4,
6983                               SDValue N5) {
6984   SDValue Ops[] = { N1, N2, N3, N4, N5 };
6985   return getNode(Opcode, DL, VTList, Ops);
6986 }
6987 
6988 SDVTList SelectionDAG::getVTList(EVT VT) {
6989   return makeVTList(SDNode::getValueTypeList(VT), 1);
6990 }
6991 
6992 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
6993   FoldingSetNodeID ID;
6994   ID.AddInteger(2U);
6995   ID.AddInteger(VT1.getRawBits());
6996   ID.AddInteger(VT2.getRawBits());
6997 
6998   void *IP = nullptr;
6999   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
7000   if (!Result) {
7001     EVT *Array = Allocator.Allocate<EVT>(2);
7002     Array[0] = VT1;
7003     Array[1] = VT2;
7004     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
7005     VTListMap.InsertNode(Result, IP);
7006   }
7007   return Result->getSDVTList();
7008 }
7009 
7010 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
7011   FoldingSetNodeID ID;
7012   ID.AddInteger(3U);
7013   ID.AddInteger(VT1.getRawBits());
7014   ID.AddInteger(VT2.getRawBits());
7015   ID.AddInteger(VT3.getRawBits());
7016 
7017   void *IP = nullptr;
7018   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
7019   if (!Result) {
7020     EVT *Array = Allocator.Allocate<EVT>(3);
7021     Array[0] = VT1;
7022     Array[1] = VT2;
7023     Array[2] = VT3;
7024     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
7025     VTListMap.InsertNode(Result, IP);
7026   }
7027   return Result->getSDVTList();
7028 }
7029 
7030 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
7031   FoldingSetNodeID ID;
7032   ID.AddInteger(4U);
7033   ID.AddInteger(VT1.getRawBits());
7034   ID.AddInteger(VT2.getRawBits());
7035   ID.AddInteger(VT3.getRawBits());
7036   ID.AddInteger(VT4.getRawBits());
7037 
7038   void *IP = nullptr;
7039   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
7040   if (!Result) {
7041     EVT *Array = Allocator.Allocate<EVT>(4);
7042     Array[0] = VT1;
7043     Array[1] = VT2;
7044     Array[2] = VT3;
7045     Array[3] = VT4;
7046     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
7047     VTListMap.InsertNode(Result, IP);
7048   }
7049   return Result->getSDVTList();
7050 }
7051 
7052 SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) {
7053   unsigned NumVTs = VTs.size();
7054   FoldingSetNodeID ID;
7055   ID.AddInteger(NumVTs);
7056   for (unsigned index = 0; index < NumVTs; index++) {
7057     ID.AddInteger(VTs[index].getRawBits());
7058   }
7059 
7060   void *IP = nullptr;
7061   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
7062   if (!Result) {
7063     EVT *Array = Allocator.Allocate<EVT>(NumVTs);
7064     std::copy(VTs.begin(), VTs.end(), Array);
7065     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
7066     VTListMap.InsertNode(Result, IP);
7067   }
7068   return Result->getSDVTList();
7069 }
7070 
7071 
7072 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
7073 /// specified operands.  If the resultant node already exists in the DAG,
7074 /// this does not modify the specified node, instead it returns the node that
7075 /// already exists.  If the resultant node does not exist in the DAG, the
7076 /// input node is returned.  As a degenerate case, if you specify the same
7077 /// input operands as the node already has, the input node is returned.
7078 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
7079   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
7080 
7081   // Check to see if there is no change.
7082   if (Op == N->getOperand(0)) return N;
7083 
7084   // See if the modified node already exists.
7085   void *InsertPos = nullptr;
7086   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
7087     return Existing;
7088 
7089   // Nope it doesn't.  Remove the node from its current place in the maps.
7090   if (InsertPos)
7091     if (!RemoveNodeFromCSEMaps(N))
7092       InsertPos = nullptr;
7093 
7094   // Now we update the operands.
7095   N->OperandList[0].set(Op);
7096 
7097   updateDivergence(N);
7098   // If this gets put into a CSE map, add it.
7099   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
7100   return N;
7101 }
7102 
7103 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
7104   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
7105 
7106   // Check to see if there is no change.
7107   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
7108     return N;   // No operands changed, just return the input node.
7109 
7110   // See if the modified node already exists.
7111   void *InsertPos = nullptr;
7112   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
7113     return Existing;
7114 
7115   // Nope it doesn't.  Remove the node from its current place in the maps.
7116   if (InsertPos)
7117     if (!RemoveNodeFromCSEMaps(N))
7118       InsertPos = nullptr;
7119 
7120   // Now we update the operands.
7121   if (N->OperandList[0] != Op1)
7122     N->OperandList[0].set(Op1);
7123   if (N->OperandList[1] != Op2)
7124     N->OperandList[1].set(Op2);
7125 
7126   updateDivergence(N);
7127   // If this gets put into a CSE map, add it.
7128   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
7129   return N;
7130 }
7131 
7132 SDNode *SelectionDAG::
7133 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
7134   SDValue Ops[] = { Op1, Op2, Op3 };
7135   return UpdateNodeOperands(N, Ops);
7136 }
7137 
7138 SDNode *SelectionDAG::
7139 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
7140                    SDValue Op3, SDValue Op4) {
7141   SDValue Ops[] = { Op1, Op2, Op3, Op4 };
7142   return UpdateNodeOperands(N, Ops);
7143 }
7144 
7145 SDNode *SelectionDAG::
7146 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
7147                    SDValue Op3, SDValue Op4, SDValue Op5) {
7148   SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
7149   return UpdateNodeOperands(N, Ops);
7150 }
7151 
7152 SDNode *SelectionDAG::
7153 UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) {
7154   unsigned NumOps = Ops.size();
7155   assert(N->getNumOperands() == NumOps &&
7156          "Update with wrong number of operands");
7157 
7158   // If no operands changed just return the input node.
7159   if (std::equal(Ops.begin(), Ops.end(), N->op_begin()))
7160     return N;
7161 
7162   // See if the modified node already exists.
7163   void *InsertPos = nullptr;
7164   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos))
7165     return Existing;
7166 
7167   // Nope it doesn't.  Remove the node from its current place in the maps.
7168   if (InsertPos)
7169     if (!RemoveNodeFromCSEMaps(N))
7170       InsertPos = nullptr;
7171 
7172   // Now we update the operands.
7173   for (unsigned i = 0; i != NumOps; ++i)
7174     if (N->OperandList[i] != Ops[i])
7175       N->OperandList[i].set(Ops[i]);
7176 
7177   updateDivergence(N);
7178   // If this gets put into a CSE map, add it.
7179   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
7180   return N;
7181 }
7182 
7183 /// DropOperands - Release the operands and set this node to have
7184 /// zero operands.
7185 void SDNode::DropOperands() {
7186   // Unlike the code in MorphNodeTo that does this, we don't need to
7187   // watch for dead nodes here.
7188   for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
7189     SDUse &Use = *I++;
7190     Use.set(SDValue());
7191   }
7192 }
7193 
7194 void SelectionDAG::setNodeMemRefs(MachineSDNode *N,
7195                                   ArrayRef<MachineMemOperand *> NewMemRefs) {
7196   if (NewMemRefs.empty()) {
7197     N->clearMemRefs();
7198     return;
7199   }
7200 
7201   // Check if we can avoid allocating by storing a single reference directly.
7202   if (NewMemRefs.size() == 1) {
7203     N->MemRefs = NewMemRefs[0];
7204     N->NumMemRefs = 1;
7205     return;
7206   }
7207 
7208   MachineMemOperand **MemRefsBuffer =
7209       Allocator.template Allocate<MachineMemOperand *>(NewMemRefs.size());
7210   std::copy(NewMemRefs.begin(), NewMemRefs.end(), MemRefsBuffer);
7211   N->MemRefs = MemRefsBuffer;
7212   N->NumMemRefs = static_cast<int>(NewMemRefs.size());
7213 }
7214 
7215 /// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
7216 /// machine opcode.
7217 ///
7218 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7219                                    EVT VT) {
7220   SDVTList VTs = getVTList(VT);
7221   return SelectNodeTo(N, MachineOpc, VTs, None);
7222 }
7223 
7224 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7225                                    EVT VT, SDValue Op1) {
7226   SDVTList VTs = getVTList(VT);
7227   SDValue Ops[] = { Op1 };
7228   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7229 }
7230 
7231 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7232                                    EVT VT, SDValue Op1,
7233                                    SDValue Op2) {
7234   SDVTList VTs = getVTList(VT);
7235   SDValue Ops[] = { Op1, Op2 };
7236   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7237 }
7238 
7239 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7240                                    EVT VT, SDValue Op1,
7241                                    SDValue Op2, SDValue Op3) {
7242   SDVTList VTs = getVTList(VT);
7243   SDValue Ops[] = { Op1, Op2, Op3 };
7244   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7245 }
7246 
7247 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7248                                    EVT VT, ArrayRef<SDValue> Ops) {
7249   SDVTList VTs = getVTList(VT);
7250   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7251 }
7252 
7253 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7254                                    EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) {
7255   SDVTList VTs = getVTList(VT1, VT2);
7256   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7257 }
7258 
7259 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7260                                    EVT VT1, EVT VT2) {
7261   SDVTList VTs = getVTList(VT1, VT2);
7262   return SelectNodeTo(N, MachineOpc, VTs, None);
7263 }
7264 
7265 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7266                                    EVT VT1, EVT VT2, EVT VT3,
7267                                    ArrayRef<SDValue> Ops) {
7268   SDVTList VTs = getVTList(VT1, VT2, VT3);
7269   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7270 }
7271 
7272 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7273                                    EVT VT1, EVT VT2,
7274                                    SDValue Op1, SDValue Op2) {
7275   SDVTList VTs = getVTList(VT1, VT2);
7276   SDValue Ops[] = { Op1, Op2 };
7277   return SelectNodeTo(N, MachineOpc, VTs, Ops);
7278 }
7279 
7280 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
7281                                    SDVTList VTs,ArrayRef<SDValue> Ops) {
7282   SDNode *New = MorphNodeTo(N, ~MachineOpc, VTs, Ops);
7283   // Reset the NodeID to -1.
7284   New->setNodeId(-1);
7285   if (New != N) {
7286     ReplaceAllUsesWith(N, New);
7287     RemoveDeadNode(N);
7288   }
7289   return New;
7290 }
7291 
7292 /// UpdateSDLocOnMergeSDNode - If the opt level is -O0 then it throws away
7293 /// the line number information on the merged node since it is not possible to
7294 /// preserve the information that operation is associated with multiple lines.
7295 /// This will make the debugger working better at -O0, were there is a higher
7296 /// probability having other instructions associated with that line.
7297 ///
7298 /// For IROrder, we keep the smaller of the two
7299 SDNode *SelectionDAG::UpdateSDLocOnMergeSDNode(SDNode *N, const SDLoc &OLoc) {
7300   DebugLoc NLoc = N->getDebugLoc();
7301   if (NLoc && OptLevel == CodeGenOpt::None && OLoc.getDebugLoc() != NLoc) {
7302     N->setDebugLoc(DebugLoc());
7303   }
7304   unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
7305   N->setIROrder(Order);
7306   return N;
7307 }
7308 
7309 /// MorphNodeTo - This *mutates* the specified node to have the specified
7310 /// return type, opcode, and operands.
7311 ///
7312 /// Note that MorphNodeTo returns the resultant node.  If there is already a
7313 /// node of the specified opcode and operands, it returns that node instead of
7314 /// the current one.  Note that the SDLoc need not be the same.
7315 ///
7316 /// Using MorphNodeTo is faster than creating a new node and swapping it in
7317 /// with ReplaceAllUsesWith both because it often avoids allocating a new
7318 /// node, and because it doesn't require CSE recalculation for any of
7319 /// the node's users.
7320 ///
7321 /// However, note that MorphNodeTo recursively deletes dead nodes from the DAG.
7322 /// As a consequence it isn't appropriate to use from within the DAG combiner or
7323 /// the legalizer which maintain worklists that would need to be updated when
7324 /// deleting things.
7325 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
7326                                   SDVTList VTs, ArrayRef<SDValue> Ops) {
7327   // If an identical node already exists, use it.
7328   void *IP = nullptr;
7329   if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
7330     FoldingSetNodeID ID;
7331     AddNodeIDNode(ID, Opc, VTs, Ops);
7332     if (SDNode *ON = FindNodeOrInsertPos(ID, SDLoc(N), IP))
7333       return UpdateSDLocOnMergeSDNode(ON, SDLoc(N));
7334   }
7335 
7336   if (!RemoveNodeFromCSEMaps(N))
7337     IP = nullptr;
7338 
7339   // Start the morphing.
7340   N->NodeType = Opc;
7341   N->ValueList = VTs.VTs;
7342   N->NumValues = VTs.NumVTs;
7343 
7344   // Clear the operands list, updating used nodes to remove this from their
7345   // use list.  Keep track of any operands that become dead as a result.
7346   SmallPtrSet<SDNode*, 16> DeadNodeSet;
7347   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
7348     SDUse &Use = *I++;
7349     SDNode *Used = Use.getNode();
7350     Use.set(SDValue());
7351     if (Used->use_empty())
7352       DeadNodeSet.insert(Used);
7353   }
7354 
7355   // For MachineNode, initialize the memory references information.
7356   if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N))
7357     MN->clearMemRefs();
7358 
7359   // Swap for an appropriately sized array from the recycler.
7360   removeOperands(N);
7361   createOperands(N, Ops);
7362 
7363   // Delete any nodes that are still dead after adding the uses for the
7364   // new operands.
7365   if (!DeadNodeSet.empty()) {
7366     SmallVector<SDNode *, 16> DeadNodes;
7367     for (SDNode *N : DeadNodeSet)
7368       if (N->use_empty())
7369         DeadNodes.push_back(N);
7370     RemoveDeadNodes(DeadNodes);
7371   }
7372 
7373   if (IP)
7374     CSEMap.InsertNode(N, IP);   // Memoize the new node.
7375   return N;
7376 }
7377 
7378 SDNode* SelectionDAG::mutateStrictFPToFP(SDNode *Node) {
7379   unsigned OrigOpc = Node->getOpcode();
7380   unsigned NewOpc;
7381   bool IsUnary = false;
7382   bool IsTernary = false;
7383   switch (OrigOpc) {
7384   default:
7385     llvm_unreachable("mutateStrictFPToFP called with unexpected opcode!");
7386   case ISD::STRICT_FADD: NewOpc = ISD::FADD; break;
7387   case ISD::STRICT_FSUB: NewOpc = ISD::FSUB; break;
7388   case ISD::STRICT_FMUL: NewOpc = ISD::FMUL; break;
7389   case ISD::STRICT_FDIV: NewOpc = ISD::FDIV; break;
7390   case ISD::STRICT_FREM: NewOpc = ISD::FREM; break;
7391   case ISD::STRICT_FMA: NewOpc = ISD::FMA; IsTernary = true; break;
7392   case ISD::STRICT_FSQRT: NewOpc = ISD::FSQRT; IsUnary = true; break;
7393   case ISD::STRICT_FPOW: NewOpc = ISD::FPOW; break;
7394   case ISD::STRICT_FPOWI: NewOpc = ISD::FPOWI; break;
7395   case ISD::STRICT_FSIN: NewOpc = ISD::FSIN; IsUnary = true; break;
7396   case ISD::STRICT_FCOS: NewOpc = ISD::FCOS; IsUnary = true; break;
7397   case ISD::STRICT_FEXP: NewOpc = ISD::FEXP; IsUnary = true; break;
7398   case ISD::STRICT_FEXP2: NewOpc = ISD::FEXP2; IsUnary = true; break;
7399   case ISD::STRICT_FLOG: NewOpc = ISD::FLOG; IsUnary = true; break;
7400   case ISD::STRICT_FLOG10: NewOpc = ISD::FLOG10; IsUnary = true; break;
7401   case ISD::STRICT_FLOG2: NewOpc = ISD::FLOG2; IsUnary = true; break;
7402   case ISD::STRICT_FRINT: NewOpc = ISD::FRINT; IsUnary = true; break;
7403   case ISD::STRICT_FNEARBYINT:
7404     NewOpc = ISD::FNEARBYINT;
7405     IsUnary = true;
7406     break;
7407   }
7408 
7409   // We're taking this node out of the chain, so we need to re-link things.
7410   SDValue InputChain = Node->getOperand(0);
7411   SDValue OutputChain = SDValue(Node, 1);
7412   ReplaceAllUsesOfValueWith(OutputChain, InputChain);
7413 
7414   SDVTList VTs = getVTList(Node->getOperand(1).getValueType());
7415   SDNode *Res = nullptr;
7416   if (IsUnary)
7417     Res = MorphNodeTo(Node, NewOpc, VTs, { Node->getOperand(1) });
7418   else if (IsTernary)
7419     Res = MorphNodeTo(Node, NewOpc, VTs, { Node->getOperand(1),
7420                                            Node->getOperand(2),
7421                                            Node->getOperand(3)});
7422   else
7423     Res = MorphNodeTo(Node, NewOpc, VTs, { Node->getOperand(1),
7424                                            Node->getOperand(2) });
7425 
7426   // MorphNodeTo can operate in two ways: if an existing node with the
7427   // specified operands exists, it can just return it.  Otherwise, it
7428   // updates the node in place to have the requested operands.
7429   if (Res == Node) {
7430     // If we updated the node in place, reset the node ID.  To the isel,
7431     // this should be just like a newly allocated machine node.
7432     Res->setNodeId(-1);
7433   } else {
7434     ReplaceAllUsesWith(Node, Res);
7435     RemoveDeadNode(Node);
7436   }
7437 
7438   return Res;
7439 }
7440 
7441 /// getMachineNode - These are used for target selectors to create a new node
7442 /// with specified return type(s), MachineInstr opcode, and operands.
7443 ///
7444 /// Note that getMachineNode returns the resultant node.  If there is already a
7445 /// node of the specified opcode and operands, it returns that node instead of
7446 /// the current one.
7447 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7448                                             EVT VT) {
7449   SDVTList VTs = getVTList(VT);
7450   return getMachineNode(Opcode, dl, VTs, None);
7451 }
7452 
7453 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7454                                             EVT VT, SDValue Op1) {
7455   SDVTList VTs = getVTList(VT);
7456   SDValue Ops[] = { Op1 };
7457   return getMachineNode(Opcode, dl, VTs, Ops);
7458 }
7459 
7460 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7461                                             EVT VT, SDValue Op1, SDValue Op2) {
7462   SDVTList VTs = getVTList(VT);
7463   SDValue Ops[] = { Op1, Op2 };
7464   return getMachineNode(Opcode, dl, VTs, Ops);
7465 }
7466 
7467 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7468                                             EVT VT, SDValue Op1, SDValue Op2,
7469                                             SDValue Op3) {
7470   SDVTList VTs = getVTList(VT);
7471   SDValue Ops[] = { Op1, Op2, Op3 };
7472   return getMachineNode(Opcode, dl, VTs, Ops);
7473 }
7474 
7475 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7476                                             EVT VT, ArrayRef<SDValue> Ops) {
7477   SDVTList VTs = getVTList(VT);
7478   return getMachineNode(Opcode, dl, VTs, Ops);
7479 }
7480 
7481 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7482                                             EVT VT1, EVT VT2, SDValue Op1,
7483                                             SDValue Op2) {
7484   SDVTList VTs = getVTList(VT1, VT2);
7485   SDValue Ops[] = { Op1, Op2 };
7486   return getMachineNode(Opcode, dl, VTs, Ops);
7487 }
7488 
7489 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7490                                             EVT VT1, EVT VT2, SDValue Op1,
7491                                             SDValue Op2, SDValue Op3) {
7492   SDVTList VTs = getVTList(VT1, VT2);
7493   SDValue Ops[] = { Op1, Op2, Op3 };
7494   return getMachineNode(Opcode, dl, VTs, Ops);
7495 }
7496 
7497 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7498                                             EVT VT1, EVT VT2,
7499                                             ArrayRef<SDValue> Ops) {
7500   SDVTList VTs = getVTList(VT1, VT2);
7501   return getMachineNode(Opcode, dl, VTs, Ops);
7502 }
7503 
7504 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7505                                             EVT VT1, EVT VT2, EVT VT3,
7506                                             SDValue Op1, SDValue Op2) {
7507   SDVTList VTs = getVTList(VT1, VT2, VT3);
7508   SDValue Ops[] = { Op1, Op2 };
7509   return getMachineNode(Opcode, dl, VTs, Ops);
7510 }
7511 
7512 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7513                                             EVT VT1, EVT VT2, EVT VT3,
7514                                             SDValue Op1, SDValue Op2,
7515                                             SDValue Op3) {
7516   SDVTList VTs = getVTList(VT1, VT2, VT3);
7517   SDValue Ops[] = { Op1, Op2, Op3 };
7518   return getMachineNode(Opcode, dl, VTs, Ops);
7519 }
7520 
7521 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7522                                             EVT VT1, EVT VT2, EVT VT3,
7523                                             ArrayRef<SDValue> Ops) {
7524   SDVTList VTs = getVTList(VT1, VT2, VT3);
7525   return getMachineNode(Opcode, dl, VTs, Ops);
7526 }
7527 
7528 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
7529                                             ArrayRef<EVT> ResultTys,
7530                                             ArrayRef<SDValue> Ops) {
7531   SDVTList VTs = getVTList(ResultTys);
7532   return getMachineNode(Opcode, dl, VTs, Ops);
7533 }
7534 
7535 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &DL,
7536                                             SDVTList VTs,
7537                                             ArrayRef<SDValue> Ops) {
7538   bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
7539   MachineSDNode *N;
7540   void *IP = nullptr;
7541 
7542   if (DoCSE) {
7543     FoldingSetNodeID ID;
7544     AddNodeIDNode(ID, ~Opcode, VTs, Ops);
7545     IP = nullptr;
7546     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
7547       return cast<MachineSDNode>(UpdateSDLocOnMergeSDNode(E, DL));
7548     }
7549   }
7550 
7551   // Allocate a new MachineSDNode.
7552   N = newSDNode<MachineSDNode>(~Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
7553   createOperands(N, Ops);
7554 
7555   if (DoCSE)
7556     CSEMap.InsertNode(N, IP);
7557 
7558   InsertNode(N);
7559   return N;
7560 }
7561 
7562 /// getTargetExtractSubreg - A convenience function for creating
7563 /// TargetOpcode::EXTRACT_SUBREG nodes.
7564 SDValue SelectionDAG::getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT,
7565                                              SDValue Operand) {
7566   SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32);
7567   SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
7568                                   VT, Operand, SRIdxVal);
7569   return SDValue(Subreg, 0);
7570 }
7571 
7572 /// getTargetInsertSubreg - A convenience function for creating
7573 /// TargetOpcode::INSERT_SUBREG nodes.
7574 SDValue SelectionDAG::getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT,
7575                                             SDValue Operand, SDValue Subreg) {
7576   SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32);
7577   SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
7578                                   VT, Operand, Subreg, SRIdxVal);
7579   return SDValue(Result, 0);
7580 }
7581 
7582 /// getNodeIfExists - Get the specified node if it's already available, or
7583 /// else return NULL.
7584 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
7585                                       ArrayRef<SDValue> Ops,
7586                                       const SDNodeFlags Flags) {
7587   if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
7588     FoldingSetNodeID ID;
7589     AddNodeIDNode(ID, Opcode, VTList, Ops);
7590     void *IP = nullptr;
7591     if (SDNode *E = FindNodeOrInsertPos(ID, SDLoc(), IP)) {
7592       E->intersectFlagsWith(Flags);
7593       return E;
7594     }
7595   }
7596   return nullptr;
7597 }
7598 
7599 /// getDbgValue - Creates a SDDbgValue node.
7600 ///
7601 /// SDNode
7602 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr,
7603                                       SDNode *N, unsigned R, bool IsIndirect,
7604                                       const DebugLoc &DL, unsigned O) {
7605   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
7606          "Expected inlined-at fields to agree");
7607   return new (DbgInfo->getAlloc())
7608       SDDbgValue(Var, Expr, N, R, IsIndirect, DL, O);
7609 }
7610 
7611 /// Constant
7612 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var,
7613                                               DIExpression *Expr,
7614                                               const Value *C,
7615                                               const DebugLoc &DL, unsigned O) {
7616   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
7617          "Expected inlined-at fields to agree");
7618   return new (DbgInfo->getAlloc()) SDDbgValue(Var, Expr, C, DL, O);
7619 }
7620 
7621 /// FrameIndex
7622 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var,
7623                                                 DIExpression *Expr, unsigned FI,
7624                                                 bool IsIndirect,
7625                                                 const DebugLoc &DL,
7626                                                 unsigned O) {
7627   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
7628          "Expected inlined-at fields to agree");
7629   return new (DbgInfo->getAlloc())
7630       SDDbgValue(Var, Expr, FI, IsIndirect, DL, O, SDDbgValue::FRAMEIX);
7631 }
7632 
7633 /// VReg
7634 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var,
7635                                           DIExpression *Expr,
7636                                           unsigned VReg, bool IsIndirect,
7637                                           const DebugLoc &DL, unsigned O) {
7638   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
7639          "Expected inlined-at fields to agree");
7640   return new (DbgInfo->getAlloc())
7641       SDDbgValue(Var, Expr, VReg, IsIndirect, DL, O, SDDbgValue::VREG);
7642 }
7643 
7644 void SelectionDAG::transferDbgValues(SDValue From, SDValue To,
7645                                      unsigned OffsetInBits, unsigned SizeInBits,
7646                                      bool InvalidateDbg) {
7647   SDNode *FromNode = From.getNode();
7648   SDNode *ToNode = To.getNode();
7649   assert(FromNode && ToNode && "Can't modify dbg values");
7650 
7651   // PR35338
7652   // TODO: assert(From != To && "Redundant dbg value transfer");
7653   // TODO: assert(FromNode != ToNode && "Intranode dbg value transfer");
7654   if (From == To || FromNode == ToNode)
7655     return;
7656 
7657   if (!FromNode->getHasDebugValue())
7658     return;
7659 
7660   SmallVector<SDDbgValue *, 2> ClonedDVs;
7661   for (SDDbgValue *Dbg : GetDbgValues(FromNode)) {
7662     if (Dbg->getKind() != SDDbgValue::SDNODE || Dbg->isInvalidated())
7663       continue;
7664 
7665     // TODO: assert(!Dbg->isInvalidated() && "Transfer of invalid dbg value");
7666 
7667     // Just transfer the dbg value attached to From.
7668     if (Dbg->getResNo() != From.getResNo())
7669       continue;
7670 
7671     DIVariable *Var = Dbg->getVariable();
7672     auto *Expr = Dbg->getExpression();
7673     // If a fragment is requested, update the expression.
7674     if (SizeInBits) {
7675       // When splitting a larger (e.g., sign-extended) value whose
7676       // lower bits are described with an SDDbgValue, do not attempt
7677       // to transfer the SDDbgValue to the upper bits.
7678       if (auto FI = Expr->getFragmentInfo())
7679         if (OffsetInBits + SizeInBits > FI->SizeInBits)
7680           continue;
7681       auto Fragment = DIExpression::createFragmentExpression(Expr, OffsetInBits,
7682                                                              SizeInBits);
7683       if (!Fragment)
7684         continue;
7685       Expr = *Fragment;
7686     }
7687     // Clone the SDDbgValue and move it to To.
7688     SDDbgValue *Clone =
7689         getDbgValue(Var, Expr, ToNode, To.getResNo(), Dbg->isIndirect(),
7690                     Dbg->getDebugLoc(), Dbg->getOrder());
7691     ClonedDVs.push_back(Clone);
7692 
7693     if (InvalidateDbg)
7694       Dbg->setIsInvalidated();
7695   }
7696 
7697   for (SDDbgValue *Dbg : ClonedDVs)
7698     AddDbgValue(Dbg, ToNode, false);
7699 }
7700 
7701 void SelectionDAG::salvageDebugInfo(SDNode &N) {
7702   if (!N.getHasDebugValue())
7703     return;
7704 
7705   SmallVector<SDDbgValue *, 2> ClonedDVs;
7706   for (auto DV : GetDbgValues(&N)) {
7707     if (DV->isInvalidated())
7708       continue;
7709     switch (N.getOpcode()) {
7710     default:
7711       break;
7712     case ISD::ADD:
7713       SDValue N0 = N.getOperand(0);
7714       SDValue N1 = N.getOperand(1);
7715       if (!isConstantIntBuildVectorOrConstantInt(N0) &&
7716           isConstantIntBuildVectorOrConstantInt(N1)) {
7717         uint64_t Offset = N.getConstantOperandVal(1);
7718         // Rewrite an ADD constant node into a DIExpression. Since we are
7719         // performing arithmetic to compute the variable's *value* in the
7720         // DIExpression, we need to mark the expression with a
7721         // DW_OP_stack_value.
7722         auto *DIExpr = DV->getExpression();
7723         DIExpr = DIExpression::prepend(DIExpr, DIExpression::NoDeref, Offset,
7724                                        DIExpression::NoDeref,
7725                                        DIExpression::WithStackValue);
7726         SDDbgValue *Clone =
7727             getDbgValue(DV->getVariable(), DIExpr, N0.getNode(), N0.getResNo(),
7728                         DV->isIndirect(), DV->getDebugLoc(), DV->getOrder());
7729         ClonedDVs.push_back(Clone);
7730         DV->setIsInvalidated();
7731         LLVM_DEBUG(dbgs() << "SALVAGE: Rewriting";
7732                    N0.getNode()->dumprFull(this);
7733                    dbgs() << " into " << *DIExpr << '\n');
7734       }
7735     }
7736   }
7737 
7738   for (SDDbgValue *Dbg : ClonedDVs)
7739     AddDbgValue(Dbg, Dbg->getSDNode(), false);
7740 }
7741 
7742 /// Creates a SDDbgLabel node.
7743 SDDbgLabel *SelectionDAG::getDbgLabel(DILabel *Label,
7744                                       const DebugLoc &DL, unsigned O) {
7745   assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) &&
7746          "Expected inlined-at fields to agree");
7747   return new (DbgInfo->getAlloc()) SDDbgLabel(Label, DL, O);
7748 }
7749 
7750 namespace {
7751 
7752 /// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
7753 /// pointed to by a use iterator is deleted, increment the use iterator
7754 /// so that it doesn't dangle.
7755 ///
7756 class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
7757   SDNode::use_iterator &UI;
7758   SDNode::use_iterator &UE;
7759 
7760   void NodeDeleted(SDNode *N, SDNode *E) override {
7761     // Increment the iterator as needed.
7762     while (UI != UE && N == *UI)
7763       ++UI;
7764   }
7765 
7766 public:
7767   RAUWUpdateListener(SelectionDAG &d,
7768                      SDNode::use_iterator &ui,
7769                      SDNode::use_iterator &ue)
7770     : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
7771 };
7772 
7773 } // end anonymous namespace
7774 
7775 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
7776 /// This can cause recursive merging of nodes in the DAG.
7777 ///
7778 /// This version assumes From has a single result value.
7779 ///
7780 void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
7781   SDNode *From = FromN.getNode();
7782   assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
7783          "Cannot replace with this method!");
7784   assert(From != To.getNode() && "Cannot replace uses of with self");
7785 
7786   // Preserve Debug Values
7787   transferDbgValues(FromN, To);
7788 
7789   // Iterate over all the existing uses of From. New uses will be added
7790   // to the beginning of the use list, which we avoid visiting.
7791   // This specifically avoids visiting uses of From that arise while the
7792   // replacement is happening, because any such uses would be the result
7793   // of CSE: If an existing node looks like From after one of its operands
7794   // is replaced by To, we don't want to replace of all its users with To
7795   // too. See PR3018 for more info.
7796   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
7797   RAUWUpdateListener Listener(*this, UI, UE);
7798   while (UI != UE) {
7799     SDNode *User = *UI;
7800 
7801     // This node is about to morph, remove its old self from the CSE maps.
7802     RemoveNodeFromCSEMaps(User);
7803 
7804     // A user can appear in a use list multiple times, and when this
7805     // happens the uses are usually next to each other in the list.
7806     // To help reduce the number of CSE recomputations, process all
7807     // the uses of this user that we can find this way.
7808     do {
7809       SDUse &Use = UI.getUse();
7810       ++UI;
7811       Use.set(To);
7812       if (To->isDivergent() != From->isDivergent())
7813         updateDivergence(User);
7814     } while (UI != UE && *UI == User);
7815     // Now that we have modified User, add it back to the CSE maps.  If it
7816     // already exists there, recursively merge the results together.
7817     AddModifiedNodeToCSEMaps(User);
7818   }
7819 
7820   // If we just RAUW'd the root, take note.
7821   if (FromN == getRoot())
7822     setRoot(To);
7823 }
7824 
7825 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
7826 /// This can cause recursive merging of nodes in the DAG.
7827 ///
7828 /// This version assumes that for each value of From, there is a
7829 /// corresponding value in To in the same position with the same type.
7830 ///
7831 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
7832 #ifndef NDEBUG
7833   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
7834     assert((!From->hasAnyUseOfValue(i) ||
7835             From->getValueType(i) == To->getValueType(i)) &&
7836            "Cannot use this version of ReplaceAllUsesWith!");
7837 #endif
7838 
7839   // Handle the trivial case.
7840   if (From == To)
7841     return;
7842 
7843   // Preserve Debug Info. Only do this if there's a use.
7844   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
7845     if (From->hasAnyUseOfValue(i)) {
7846       assert((i < To->getNumValues()) && "Invalid To location");
7847       transferDbgValues(SDValue(From, i), SDValue(To, i));
7848     }
7849 
7850   // Iterate over just the existing users of From. See the comments in
7851   // the ReplaceAllUsesWith above.
7852   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
7853   RAUWUpdateListener Listener(*this, UI, UE);
7854   while (UI != UE) {
7855     SDNode *User = *UI;
7856 
7857     // This node is about to morph, remove its old self from the CSE maps.
7858     RemoveNodeFromCSEMaps(User);
7859 
7860     // A user can appear in a use list multiple times, and when this
7861     // happens the uses are usually next to each other in the list.
7862     // To help reduce the number of CSE recomputations, process all
7863     // the uses of this user that we can find this way.
7864     do {
7865       SDUse &Use = UI.getUse();
7866       ++UI;
7867       Use.setNode(To);
7868       if (To->isDivergent() != From->isDivergent())
7869         updateDivergence(User);
7870     } while (UI != UE && *UI == User);
7871 
7872     // Now that we have modified User, add it back to the CSE maps.  If it
7873     // already exists there, recursively merge the results together.
7874     AddModifiedNodeToCSEMaps(User);
7875   }
7876 
7877   // If we just RAUW'd the root, take note.
7878   if (From == getRoot().getNode())
7879     setRoot(SDValue(To, getRoot().getResNo()));
7880 }
7881 
7882 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
7883 /// This can cause recursive merging of nodes in the DAG.
7884 ///
7885 /// This version can replace From with any result values.  To must match the
7886 /// number and types of values returned by From.
7887 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
7888   if (From->getNumValues() == 1)  // Handle the simple case efficiently.
7889     return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
7890 
7891   // Preserve Debug Info.
7892   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
7893     transferDbgValues(SDValue(From, i), To[i]);
7894 
7895   // Iterate over just the existing users of From. See the comments in
7896   // the ReplaceAllUsesWith above.
7897   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
7898   RAUWUpdateListener Listener(*this, UI, UE);
7899   while (UI != UE) {
7900     SDNode *User = *UI;
7901 
7902     // This node is about to morph, remove its old self from the CSE maps.
7903     RemoveNodeFromCSEMaps(User);
7904 
7905     // A user can appear in a use list multiple times, and when this happens the
7906     // uses are usually next to each other in the list.  To help reduce the
7907     // number of CSE and divergence recomputations, process all the uses of this
7908     // user that we can find this way.
7909     bool To_IsDivergent = false;
7910     do {
7911       SDUse &Use = UI.getUse();
7912       const SDValue &ToOp = To[Use.getResNo()];
7913       ++UI;
7914       Use.set(ToOp);
7915       To_IsDivergent |= ToOp->isDivergent();
7916     } while (UI != UE && *UI == User);
7917 
7918     if (To_IsDivergent != From->isDivergent())
7919       updateDivergence(User);
7920 
7921     // Now that we have modified User, add it back to the CSE maps.  If it
7922     // already exists there, recursively merge the results together.
7923     AddModifiedNodeToCSEMaps(User);
7924   }
7925 
7926   // If we just RAUW'd the root, take note.
7927   if (From == getRoot().getNode())
7928     setRoot(SDValue(To[getRoot().getResNo()]));
7929 }
7930 
7931 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
7932 /// uses of other values produced by From.getNode() alone.  The Deleted
7933 /// vector is handled the same way as for ReplaceAllUsesWith.
7934 void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
7935   // Handle the really simple, really trivial case efficiently.
7936   if (From == To) return;
7937 
7938   // Handle the simple, trivial, case efficiently.
7939   if (From.getNode()->getNumValues() == 1) {
7940     ReplaceAllUsesWith(From, To);
7941     return;
7942   }
7943 
7944   // Preserve Debug Info.
7945   transferDbgValues(From, To);
7946 
7947   // Iterate over just the existing users of From. See the comments in
7948   // the ReplaceAllUsesWith above.
7949   SDNode::use_iterator UI = From.getNode()->use_begin(),
7950                        UE = From.getNode()->use_end();
7951   RAUWUpdateListener Listener(*this, UI, UE);
7952   while (UI != UE) {
7953     SDNode *User = *UI;
7954     bool UserRemovedFromCSEMaps = false;
7955 
7956     // A user can appear in a use list multiple times, and when this
7957     // happens the uses are usually next to each other in the list.
7958     // To help reduce the number of CSE recomputations, process all
7959     // the uses of this user that we can find this way.
7960     do {
7961       SDUse &Use = UI.getUse();
7962 
7963       // Skip uses of different values from the same node.
7964       if (Use.getResNo() != From.getResNo()) {
7965         ++UI;
7966         continue;
7967       }
7968 
7969       // If this node hasn't been modified yet, it's still in the CSE maps,
7970       // so remove its old self from the CSE maps.
7971       if (!UserRemovedFromCSEMaps) {
7972         RemoveNodeFromCSEMaps(User);
7973         UserRemovedFromCSEMaps = true;
7974       }
7975 
7976       ++UI;
7977       Use.set(To);
7978       if (To->isDivergent() != From->isDivergent())
7979         updateDivergence(User);
7980     } while (UI != UE && *UI == User);
7981     // We are iterating over all uses of the From node, so if a use
7982     // doesn't use the specific value, no changes are made.
7983     if (!UserRemovedFromCSEMaps)
7984       continue;
7985 
7986     // Now that we have modified User, add it back to the CSE maps.  If it
7987     // already exists there, recursively merge the results together.
7988     AddModifiedNodeToCSEMaps(User);
7989   }
7990 
7991   // If we just RAUW'd the root, take note.
7992   if (From == getRoot())
7993     setRoot(To);
7994 }
7995 
7996 namespace {
7997 
7998   /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
7999   /// to record information about a use.
8000   struct UseMemo {
8001     SDNode *User;
8002     unsigned Index;
8003     SDUse *Use;
8004   };
8005 
8006   /// operator< - Sort Memos by User.
8007   bool operator<(const UseMemo &L, const UseMemo &R) {
8008     return (intptr_t)L.User < (intptr_t)R.User;
8009   }
8010 
8011 } // end anonymous namespace
8012 
8013 void SelectionDAG::updateDivergence(SDNode * N)
8014 {
8015   if (TLI->isSDNodeAlwaysUniform(N))
8016     return;
8017   bool IsDivergent = TLI->isSDNodeSourceOfDivergence(N, FLI, DA);
8018   for (auto &Op : N->ops()) {
8019     if (Op.Val.getValueType() != MVT::Other)
8020       IsDivergent |= Op.getNode()->isDivergent();
8021   }
8022   if (N->SDNodeBits.IsDivergent != IsDivergent) {
8023     N->SDNodeBits.IsDivergent = IsDivergent;
8024     for (auto U : N->uses()) {
8025       updateDivergence(U);
8026     }
8027   }
8028 }
8029 
8030 
8031 void SelectionDAG::CreateTopologicalOrder(std::vector<SDNode*>& Order) {
8032   DenseMap<SDNode *, unsigned> Degree;
8033   Order.reserve(AllNodes.size());
8034   for (auto & N : allnodes()) {
8035     unsigned NOps = N.getNumOperands();
8036     Degree[&N] = NOps;
8037     if (0 == NOps)
8038       Order.push_back(&N);
8039   }
8040   for (std::vector<SDNode *>::iterator I = Order.begin();
8041   I!=Order.end();++I) {
8042     SDNode * N = *I;
8043     for (auto U : N->uses()) {
8044       unsigned &UnsortedOps = Degree[U];
8045       if (0 == --UnsortedOps)
8046         Order.push_back(U);
8047     }
8048   }
8049 }
8050 
8051 #ifndef NDEBUG
8052 void SelectionDAG::VerifyDAGDiverence()
8053 {
8054   std::vector<SDNode*> TopoOrder;
8055   CreateTopologicalOrder(TopoOrder);
8056   const TargetLowering &TLI = getTargetLoweringInfo();
8057   DenseMap<const SDNode *, bool> DivergenceMap;
8058   for (auto &N : allnodes()) {
8059     DivergenceMap[&N] = false;
8060   }
8061   for (auto N : TopoOrder) {
8062     bool IsDivergent = DivergenceMap[N];
8063     bool IsSDNodeDivergent = TLI.isSDNodeSourceOfDivergence(N, FLI, DA);
8064     for (auto &Op : N->ops()) {
8065       if (Op.Val.getValueType() != MVT::Other)
8066         IsSDNodeDivergent |= DivergenceMap[Op.getNode()];
8067     }
8068     if (!IsDivergent && IsSDNodeDivergent && !TLI.isSDNodeAlwaysUniform(N)) {
8069       DivergenceMap[N] = true;
8070     }
8071   }
8072   for (auto &N : allnodes()) {
8073     (void)N;
8074     assert(DivergenceMap[&N] == N.isDivergent() &&
8075            "Divergence bit inconsistency detected\n");
8076   }
8077 }
8078 #endif
8079 
8080 
8081 /// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
8082 /// uses of other values produced by From.getNode() alone.  The same value
8083 /// may appear in both the From and To list.  The Deleted vector is
8084 /// handled the same way as for ReplaceAllUsesWith.
8085 void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
8086                                               const SDValue *To,
8087                                               unsigned Num){
8088   // Handle the simple, trivial case efficiently.
8089   if (Num == 1)
8090     return ReplaceAllUsesOfValueWith(*From, *To);
8091 
8092   transferDbgValues(*From, *To);
8093 
8094   // Read up all the uses and make records of them. This helps
8095   // processing new uses that are introduced during the
8096   // replacement process.
8097   SmallVector<UseMemo, 4> Uses;
8098   for (unsigned i = 0; i != Num; ++i) {
8099     unsigned FromResNo = From[i].getResNo();
8100     SDNode *FromNode = From[i].getNode();
8101     for (SDNode::use_iterator UI = FromNode->use_begin(),
8102          E = FromNode->use_end(); UI != E; ++UI) {
8103       SDUse &Use = UI.getUse();
8104       if (Use.getResNo() == FromResNo) {
8105         UseMemo Memo = { *UI, i, &Use };
8106         Uses.push_back(Memo);
8107       }
8108     }
8109   }
8110 
8111   // Sort the uses, so that all the uses from a given User are together.
8112   llvm::sort(Uses);
8113 
8114   for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
8115        UseIndex != UseIndexEnd; ) {
8116     // We know that this user uses some value of From.  If it is the right
8117     // value, update it.
8118     SDNode *User = Uses[UseIndex].User;
8119 
8120     // This node is about to morph, remove its old self from the CSE maps.
8121     RemoveNodeFromCSEMaps(User);
8122 
8123     // The Uses array is sorted, so all the uses for a given User
8124     // are next to each other in the list.
8125     // To help reduce the number of CSE recomputations, process all
8126     // the uses of this user that we can find this way.
8127     do {
8128       unsigned i = Uses[UseIndex].Index;
8129       SDUse &Use = *Uses[UseIndex].Use;
8130       ++UseIndex;
8131 
8132       Use.set(To[i]);
8133     } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
8134 
8135     // Now that we have modified User, add it back to the CSE maps.  If it
8136     // already exists there, recursively merge the results together.
8137     AddModifiedNodeToCSEMaps(User);
8138   }
8139 }
8140 
8141 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
8142 /// based on their topological order. It returns the maximum id and a vector
8143 /// of the SDNodes* in assigned order by reference.
8144 unsigned SelectionDAG::AssignTopologicalOrder() {
8145   unsigned DAGSize = 0;
8146 
8147   // SortedPos tracks the progress of the algorithm. Nodes before it are
8148   // sorted, nodes after it are unsorted. When the algorithm completes
8149   // it is at the end of the list.
8150   allnodes_iterator SortedPos = allnodes_begin();
8151 
8152   // Visit all the nodes. Move nodes with no operands to the front of
8153   // the list immediately. Annotate nodes that do have operands with their
8154   // operand count. Before we do this, the Node Id fields of the nodes
8155   // may contain arbitrary values. After, the Node Id fields for nodes
8156   // before SortedPos will contain the topological sort index, and the
8157   // Node Id fields for nodes At SortedPos and after will contain the
8158   // count of outstanding operands.
8159   for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
8160     SDNode *N = &*I++;
8161     checkForCycles(N, this);
8162     unsigned Degree = N->getNumOperands();
8163     if (Degree == 0) {
8164       // A node with no uses, add it to the result array immediately.
8165       N->setNodeId(DAGSize++);
8166       allnodes_iterator Q(N);
8167       if (Q != SortedPos)
8168         SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
8169       assert(SortedPos != AllNodes.end() && "Overran node list");
8170       ++SortedPos;
8171     } else {
8172       // Temporarily use the Node Id as scratch space for the degree count.
8173       N->setNodeId(Degree);
8174     }
8175   }
8176 
8177   // Visit all the nodes. As we iterate, move nodes into sorted order,
8178   // such that by the time the end is reached all nodes will be sorted.
8179   for (SDNode &Node : allnodes()) {
8180     SDNode *N = &Node;
8181     checkForCycles(N, this);
8182     // N is in sorted position, so all its uses have one less operand
8183     // that needs to be sorted.
8184     for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
8185          UI != UE; ++UI) {
8186       SDNode *P = *UI;
8187       unsigned Degree = P->getNodeId();
8188       assert(Degree != 0 && "Invalid node degree");
8189       --Degree;
8190       if (Degree == 0) {
8191         // All of P's operands are sorted, so P may sorted now.
8192         P->setNodeId(DAGSize++);
8193         if (P->getIterator() != SortedPos)
8194           SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
8195         assert(SortedPos != AllNodes.end() && "Overran node list");
8196         ++SortedPos;
8197       } else {
8198         // Update P's outstanding operand count.
8199         P->setNodeId(Degree);
8200       }
8201     }
8202     if (Node.getIterator() == SortedPos) {
8203 #ifndef NDEBUG
8204       allnodes_iterator I(N);
8205       SDNode *S = &*++I;
8206       dbgs() << "Overran sorted position:\n";
8207       S->dumprFull(this); dbgs() << "\n";
8208       dbgs() << "Checking if this is due to cycles\n";
8209       checkForCycles(this, true);
8210 #endif
8211       llvm_unreachable(nullptr);
8212     }
8213   }
8214 
8215   assert(SortedPos == AllNodes.end() &&
8216          "Topological sort incomplete!");
8217   assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
8218          "First node in topological sort is not the entry token!");
8219   assert(AllNodes.front().getNodeId() == 0 &&
8220          "First node in topological sort has non-zero id!");
8221   assert(AllNodes.front().getNumOperands() == 0 &&
8222          "First node in topological sort has operands!");
8223   assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
8224          "Last node in topologic sort has unexpected id!");
8225   assert(AllNodes.back().use_empty() &&
8226          "Last node in topologic sort has users!");
8227   assert(DAGSize == allnodes_size() && "Node count mismatch!");
8228   return DAGSize;
8229 }
8230 
8231 /// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
8232 /// value is produced by SD.
8233 void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) {
8234   if (SD) {
8235     assert(DbgInfo->getSDDbgValues(SD).empty() || SD->getHasDebugValue());
8236     SD->setHasDebugValue(true);
8237   }
8238   DbgInfo->add(DB, SD, isParameter);
8239 }
8240 
8241 void SelectionDAG::AddDbgLabel(SDDbgLabel *DB) {
8242   DbgInfo->add(DB);
8243 }
8244 
8245 SDValue SelectionDAG::makeEquivalentMemoryOrdering(LoadSDNode *OldLoad,
8246                                                    SDValue NewMemOp) {
8247   assert(isa<MemSDNode>(NewMemOp.getNode()) && "Expected a memop node");
8248   // The new memory operation must have the same position as the old load in
8249   // terms of memory dependency. Create a TokenFactor for the old load and new
8250   // memory operation and update uses of the old load's output chain to use that
8251   // TokenFactor.
8252   SDValue OldChain = SDValue(OldLoad, 1);
8253   SDValue NewChain = SDValue(NewMemOp.getNode(), 1);
8254   if (!OldLoad->hasAnyUseOfValue(1))
8255     return NewChain;
8256 
8257   SDValue TokenFactor =
8258       getNode(ISD::TokenFactor, SDLoc(OldLoad), MVT::Other, OldChain, NewChain);
8259   ReplaceAllUsesOfValueWith(OldChain, TokenFactor);
8260   UpdateNodeOperands(TokenFactor.getNode(), OldChain, NewChain);
8261   return TokenFactor;
8262 }
8263 
8264 //===----------------------------------------------------------------------===//
8265 //                              SDNode Class
8266 //===----------------------------------------------------------------------===//
8267 
8268 bool llvm::isNullConstant(SDValue V) {
8269   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
8270   return Const != nullptr && Const->isNullValue();
8271 }
8272 
8273 bool llvm::isNullFPConstant(SDValue V) {
8274   ConstantFPSDNode *Const = dyn_cast<ConstantFPSDNode>(V);
8275   return Const != nullptr && Const->isZero() && !Const->isNegative();
8276 }
8277 
8278 bool llvm::isAllOnesConstant(SDValue V) {
8279   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
8280   return Const != nullptr && Const->isAllOnesValue();
8281 }
8282 
8283 bool llvm::isOneConstant(SDValue V) {
8284   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
8285   return Const != nullptr && Const->isOne();
8286 }
8287 
8288 SDValue llvm::peekThroughBitcasts(SDValue V) {
8289   while (V.getOpcode() == ISD::BITCAST)
8290     V = V.getOperand(0);
8291   return V;
8292 }
8293 
8294 SDValue llvm::peekThroughOneUseBitcasts(SDValue V) {
8295   while (V.getOpcode() == ISD::BITCAST && V.getOperand(0).hasOneUse())
8296     V = V.getOperand(0);
8297   return V;
8298 }
8299 
8300 bool llvm::isBitwiseNot(SDValue V) {
8301   if (V.getOpcode() != ISD::XOR)
8302     return false;
8303   ConstantSDNode *C = isConstOrConstSplat(peekThroughBitcasts(V.getOperand(1)));
8304   return C && C->isAllOnesValue();
8305 }
8306 
8307 ConstantSDNode *llvm::isConstOrConstSplat(SDValue N, bool AllowUndefs) {
8308   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
8309     return CN;
8310 
8311   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
8312     BitVector UndefElements;
8313     ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements);
8314 
8315     // BuildVectors can truncate their operands. Ignore that case here.
8316     if (CN && (UndefElements.none() || AllowUndefs) &&
8317         CN->getValueType(0) == N.getValueType().getScalarType())
8318       return CN;
8319   }
8320 
8321   return nullptr;
8322 }
8323 
8324 ConstantFPSDNode *llvm::isConstOrConstSplatFP(SDValue N, bool AllowUndefs) {
8325   if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N))
8326     return CN;
8327 
8328   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
8329     BitVector UndefElements;
8330     ConstantFPSDNode *CN = BV->getConstantFPSplatNode(&UndefElements);
8331     if (CN && (UndefElements.none() || AllowUndefs))
8332       return CN;
8333   }
8334 
8335   return nullptr;
8336 }
8337 
8338 HandleSDNode::~HandleSDNode() {
8339   DropOperands();
8340 }
8341 
8342 GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
8343                                          const DebugLoc &DL,
8344                                          const GlobalValue *GA, EVT VT,
8345                                          int64_t o, unsigned char TF)
8346     : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
8347   TheGlobal = GA;
8348 }
8349 
8350 AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl,
8351                                          EVT VT, unsigned SrcAS,
8352                                          unsigned DestAS)
8353     : SDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT)),
8354       SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
8355 
8356 MemSDNode::MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl,
8357                      SDVTList VTs, EVT memvt, MachineMemOperand *mmo)
8358     : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
8359   MemSDNodeBits.IsVolatile = MMO->isVolatile();
8360   MemSDNodeBits.IsNonTemporal = MMO->isNonTemporal();
8361   MemSDNodeBits.IsDereferenceable = MMO->isDereferenceable();
8362   MemSDNodeBits.IsInvariant = MMO->isInvariant();
8363 
8364   // We check here that the size of the memory operand fits within the size of
8365   // the MMO. This is because the MMO might indicate only a possible address
8366   // range instead of specifying the affected memory addresses precisely.
8367   assert(memvt.getStoreSize() <= MMO->getSize() && "Size mismatch!");
8368 }
8369 
8370 /// Profile - Gather unique data for the node.
8371 ///
8372 void SDNode::Profile(FoldingSetNodeID &ID) const {
8373   AddNodeIDNode(ID, this);
8374 }
8375 
8376 namespace {
8377 
8378   struct EVTArray {
8379     std::vector<EVT> VTs;
8380 
8381     EVTArray() {
8382       VTs.reserve(MVT::LAST_VALUETYPE);
8383       for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i)
8384         VTs.push_back(MVT((MVT::SimpleValueType)i));
8385     }
8386   };
8387 
8388 } // end anonymous namespace
8389 
8390 static ManagedStatic<std::set<EVT, EVT::compareRawBits>> EVTs;
8391 static ManagedStatic<EVTArray> SimpleVTArray;
8392 static ManagedStatic<sys::SmartMutex<true>> VTMutex;
8393 
8394 /// getValueTypeList - Return a pointer to the specified value type.
8395 ///
8396 const EVT *SDNode::getValueTypeList(EVT VT) {
8397   if (VT.isExtended()) {
8398     sys::SmartScopedLock<true> Lock(*VTMutex);
8399     return &(*EVTs->insert(VT).first);
8400   } else {
8401     assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE &&
8402            "Value type out of range!");
8403     return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
8404   }
8405 }
8406 
8407 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
8408 /// indicated value.  This method ignores uses of other values defined by this
8409 /// operation.
8410 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
8411   assert(Value < getNumValues() && "Bad value!");
8412 
8413   // TODO: Only iterate over uses of a given value of the node
8414   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
8415     if (UI.getUse().getResNo() == Value) {
8416       if (NUses == 0)
8417         return false;
8418       --NUses;
8419     }
8420   }
8421 
8422   // Found exactly the right number of uses?
8423   return NUses == 0;
8424 }
8425 
8426 /// hasAnyUseOfValue - Return true if there are any use of the indicated
8427 /// value. This method ignores uses of other values defined by this operation.
8428 bool SDNode::hasAnyUseOfValue(unsigned Value) const {
8429   assert(Value < getNumValues() && "Bad value!");
8430 
8431   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
8432     if (UI.getUse().getResNo() == Value)
8433       return true;
8434 
8435   return false;
8436 }
8437 
8438 /// isOnlyUserOf - Return true if this node is the only use of N.
8439 bool SDNode::isOnlyUserOf(const SDNode *N) const {
8440   bool Seen = false;
8441   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
8442     SDNode *User = *I;
8443     if (User == this)
8444       Seen = true;
8445     else
8446       return false;
8447   }
8448 
8449   return Seen;
8450 }
8451 
8452 /// Return true if the only users of N are contained in Nodes.
8453 bool SDNode::areOnlyUsersOf(ArrayRef<const SDNode *> Nodes, const SDNode *N) {
8454   bool Seen = false;
8455   for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
8456     SDNode *User = *I;
8457     if (llvm::any_of(Nodes,
8458                      [&User](const SDNode *Node) { return User == Node; }))
8459       Seen = true;
8460     else
8461       return false;
8462   }
8463 
8464   return Seen;
8465 }
8466 
8467 /// isOperand - Return true if this node is an operand of N.
8468 bool SDValue::isOperandOf(const SDNode *N) const {
8469   for (const SDValue &Op : N->op_values())
8470     if (*this == Op)
8471       return true;
8472   return false;
8473 }
8474 
8475 bool SDNode::isOperandOf(const SDNode *N) const {
8476   for (const SDValue &Op : N->op_values())
8477     if (this == Op.getNode())
8478       return true;
8479   return false;
8480 }
8481 
8482 /// reachesChainWithoutSideEffects - Return true if this operand (which must
8483 /// be a chain) reaches the specified operand without crossing any
8484 /// side-effecting instructions on any chain path.  In practice, this looks
8485 /// through token factors and non-volatile loads.  In order to remain efficient,
8486 /// this only looks a couple of nodes in, it does not do an exhaustive search.
8487 ///
8488 /// Note that we only need to examine chains when we're searching for
8489 /// side-effects; SelectionDAG requires that all side-effects are represented
8490 /// by chains, even if another operand would force a specific ordering. This
8491 /// constraint is necessary to allow transformations like splitting loads.
8492 bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
8493                                              unsigned Depth) const {
8494   if (*this == Dest) return true;
8495 
8496   // Don't search too deeply, we just want to be able to see through
8497   // TokenFactor's etc.
8498   if (Depth == 0) return false;
8499 
8500   // If this is a token factor, all inputs to the TF happen in parallel.
8501   if (getOpcode() == ISD::TokenFactor) {
8502     // First, try a shallow search.
8503     if (is_contained((*this)->ops(), Dest)) {
8504       // We found the chain we want as an operand of this TokenFactor.
8505       // Essentially, we reach the chain without side-effects if we could
8506       // serialize the TokenFactor into a simple chain of operations with
8507       // Dest as the last operation. This is automatically true if the
8508       // chain has one use: there are no other ordering constraints.
8509       // If the chain has more than one use, we give up: some other
8510       // use of Dest might force a side-effect between Dest and the current
8511       // node.
8512       if (Dest.hasOneUse())
8513         return true;
8514     }
8515     // Next, try a deep search: check whether every operand of the TokenFactor
8516     // reaches Dest.
8517     return llvm::all_of((*this)->ops(), [=](SDValue Op) {
8518       return Op.reachesChainWithoutSideEffects(Dest, Depth - 1);
8519     });
8520   }
8521 
8522   // Loads don't have side effects, look through them.
8523   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
8524     if (!Ld->isVolatile())
8525       return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
8526   }
8527   return false;
8528 }
8529 
8530 bool SDNode::hasPredecessor(const SDNode *N) const {
8531   SmallPtrSet<const SDNode *, 32> Visited;
8532   SmallVector<const SDNode *, 16> Worklist;
8533   Worklist.push_back(this);
8534   return hasPredecessorHelper(N, Visited, Worklist);
8535 }
8536 
8537 void SDNode::intersectFlagsWith(const SDNodeFlags Flags) {
8538   this->Flags.intersectWith(Flags);
8539 }
8540 
8541 SDValue
8542 SelectionDAG::matchBinOpReduction(SDNode *Extract, ISD::NodeType &BinOp,
8543                                   ArrayRef<ISD::NodeType> CandidateBinOps) {
8544   // The pattern must end in an extract from index 0.
8545   if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
8546       !isNullConstant(Extract->getOperand(1)))
8547     return SDValue();
8548 
8549   SDValue Op = Extract->getOperand(0);
8550   unsigned Stages = Log2_32(Op.getValueType().getVectorNumElements());
8551 
8552   // Match against one of the candidate binary ops.
8553   if (llvm::none_of(CandidateBinOps, [Op](ISD::NodeType BinOp) {
8554         return Op.getOpcode() == unsigned(BinOp);
8555       }))
8556     return SDValue();
8557 
8558   // At each stage, we're looking for something that looks like:
8559   // %s = shufflevector <8 x i32> %op, <8 x i32> undef,
8560   //                    <8 x i32> <i32 2, i32 3, i32 undef, i32 undef,
8561   //                               i32 undef, i32 undef, i32 undef, i32 undef>
8562   // %a = binop <8 x i32> %op, %s
8563   // Where the mask changes according to the stage. E.g. for a 3-stage pyramid,
8564   // we expect something like:
8565   // <4,5,6,7,u,u,u,u>
8566   // <2,3,u,u,u,u,u,u>
8567   // <1,u,u,u,u,u,u,u>
8568   unsigned CandidateBinOp = Op.getOpcode();
8569   for (unsigned i = 0; i < Stages; ++i) {
8570     if (Op.getOpcode() != CandidateBinOp)
8571       return SDValue();
8572 
8573     SDValue Op0 = Op.getOperand(0);
8574     SDValue Op1 = Op.getOperand(1);
8575 
8576     ShuffleVectorSDNode *Shuffle = dyn_cast<ShuffleVectorSDNode>(Op0);
8577     if (Shuffle) {
8578       Op = Op1;
8579     } else {
8580       Shuffle = dyn_cast<ShuffleVectorSDNode>(Op1);
8581       Op = Op0;
8582     }
8583 
8584     // The first operand of the shuffle should be the same as the other operand
8585     // of the binop.
8586     if (!Shuffle || Shuffle->getOperand(0) != Op)
8587       return SDValue();
8588 
8589     // Verify the shuffle has the expected (at this stage of the pyramid) mask.
8590     for (int Index = 0, MaskEnd = 1 << i; Index < MaskEnd; ++Index)
8591       if (Shuffle->getMaskElt(Index) != MaskEnd + Index)
8592         return SDValue();
8593   }
8594 
8595   BinOp = (ISD::NodeType)CandidateBinOp;
8596   return Op;
8597 }
8598 
8599 SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
8600   assert(N->getNumValues() == 1 &&
8601          "Can't unroll a vector with multiple results!");
8602 
8603   EVT VT = N->getValueType(0);
8604   unsigned NE = VT.getVectorNumElements();
8605   EVT EltVT = VT.getVectorElementType();
8606   SDLoc dl(N);
8607 
8608   SmallVector<SDValue, 8> Scalars;
8609   SmallVector<SDValue, 4> Operands(N->getNumOperands());
8610 
8611   // If ResNE is 0, fully unroll the vector op.
8612   if (ResNE == 0)
8613     ResNE = NE;
8614   else if (NE > ResNE)
8615     NE = ResNE;
8616 
8617   unsigned i;
8618   for (i= 0; i != NE; ++i) {
8619     for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
8620       SDValue Operand = N->getOperand(j);
8621       EVT OperandVT = Operand.getValueType();
8622       if (OperandVT.isVector()) {
8623         // A vector operand; extract a single element.
8624         EVT OperandEltVT = OperandVT.getVectorElementType();
8625         Operands[j] =
8626             getNode(ISD::EXTRACT_VECTOR_ELT, dl, OperandEltVT, Operand,
8627                     getConstant(i, dl, TLI->getVectorIdxTy(getDataLayout())));
8628       } else {
8629         // A scalar operand; just use it as is.
8630         Operands[j] = Operand;
8631       }
8632     }
8633 
8634     switch (N->getOpcode()) {
8635     default: {
8636       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands,
8637                                 N->getFlags()));
8638       break;
8639     }
8640     case ISD::VSELECT:
8641       Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands));
8642       break;
8643     case ISD::SHL:
8644     case ISD::SRA:
8645     case ISD::SRL:
8646     case ISD::ROTL:
8647     case ISD::ROTR:
8648       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
8649                                getShiftAmountOperand(Operands[0].getValueType(),
8650                                                      Operands[1])));
8651       break;
8652     case ISD::SIGN_EXTEND_INREG:
8653     case ISD::FP_ROUND_INREG: {
8654       EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
8655       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
8656                                 Operands[0],
8657                                 getValueType(ExtVT)));
8658     }
8659     }
8660   }
8661 
8662   for (; i < ResNE; ++i)
8663     Scalars.push_back(getUNDEF(EltVT));
8664 
8665   EVT VecVT = EVT::getVectorVT(*getContext(), EltVT, ResNE);
8666   return getBuildVector(VecVT, dl, Scalars);
8667 }
8668 
8669 bool SelectionDAG::areNonVolatileConsecutiveLoads(LoadSDNode *LD,
8670                                                   LoadSDNode *Base,
8671                                                   unsigned Bytes,
8672                                                   int Dist) const {
8673   if (LD->isVolatile() || Base->isVolatile())
8674     return false;
8675   if (LD->isIndexed() || Base->isIndexed())
8676     return false;
8677   if (LD->getChain() != Base->getChain())
8678     return false;
8679   EVT VT = LD->getValueType(0);
8680   if (VT.getSizeInBits() / 8 != Bytes)
8681     return false;
8682 
8683   auto BaseLocDecomp = BaseIndexOffset::match(Base, *this);
8684   auto LocDecomp = BaseIndexOffset::match(LD, *this);
8685 
8686   int64_t Offset = 0;
8687   if (BaseLocDecomp.equalBaseIndex(LocDecomp, *this, Offset))
8688     return (Dist * Bytes == Offset);
8689   return false;
8690 }
8691 
8692 /// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if
8693 /// it cannot be inferred.
8694 unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const {
8695   // If this is a GlobalAddress + cst, return the alignment.
8696   const GlobalValue *GV;
8697   int64_t GVOffset = 0;
8698   if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
8699     unsigned IdxWidth = getDataLayout().getIndexTypeSizeInBits(GV->getType());
8700     KnownBits Known(IdxWidth);
8701     llvm::computeKnownBits(GV, Known, getDataLayout());
8702     unsigned AlignBits = Known.countMinTrailingZeros();
8703     unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0;
8704     if (Align)
8705       return MinAlign(Align, GVOffset);
8706   }
8707 
8708   // If this is a direct reference to a stack slot, use information about the
8709   // stack slot's alignment.
8710   int FrameIdx = 1 << 31;
8711   int64_t FrameOffset = 0;
8712   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
8713     FrameIdx = FI->getIndex();
8714   } else if (isBaseWithConstantOffset(Ptr) &&
8715              isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
8716     // Handle FI+Cst
8717     FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
8718     FrameOffset = Ptr.getConstantOperandVal(1);
8719   }
8720 
8721   if (FrameIdx != (1 << 31)) {
8722     const MachineFrameInfo &MFI = getMachineFunction().getFrameInfo();
8723     unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx),
8724                                     FrameOffset);
8725     return FIInfoAlign;
8726   }
8727 
8728   return 0;
8729 }
8730 
8731 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
8732 /// which is split (or expanded) into two not necessarily identical pieces.
8733 std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const {
8734   // Currently all types are split in half.
8735   EVT LoVT, HiVT;
8736   if (!VT.isVector())
8737     LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT);
8738   else
8739     LoVT = HiVT = VT.getHalfNumVectorElementsVT(*getContext());
8740 
8741   return std::make_pair(LoVT, HiVT);
8742 }
8743 
8744 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
8745 /// low/high part.
8746 std::pair<SDValue, SDValue>
8747 SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT,
8748                           const EVT &HiVT) {
8749   assert(LoVT.getVectorNumElements() + HiVT.getVectorNumElements() <=
8750          N.getValueType().getVectorNumElements() &&
8751          "More vector elements requested than available!");
8752   SDValue Lo, Hi;
8753   Lo = getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N,
8754                getConstant(0, DL, TLI->getVectorIdxTy(getDataLayout())));
8755   Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N,
8756                getConstant(LoVT.getVectorNumElements(), DL,
8757                            TLI->getVectorIdxTy(getDataLayout())));
8758   return std::make_pair(Lo, Hi);
8759 }
8760 
8761 void SelectionDAG::ExtractVectorElements(SDValue Op,
8762                                          SmallVectorImpl<SDValue> &Args,
8763                                          unsigned Start, unsigned Count) {
8764   EVT VT = Op.getValueType();
8765   if (Count == 0)
8766     Count = VT.getVectorNumElements();
8767 
8768   EVT EltVT = VT.getVectorElementType();
8769   EVT IdxTy = TLI->getVectorIdxTy(getDataLayout());
8770   SDLoc SL(Op);
8771   for (unsigned i = Start, e = Start + Count; i != e; ++i) {
8772     Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT,
8773                            Op, getConstant(i, SL, IdxTy)));
8774   }
8775 }
8776 
8777 // getAddressSpace - Return the address space this GlobalAddress belongs to.
8778 unsigned GlobalAddressSDNode::getAddressSpace() const {
8779   return getGlobal()->getType()->getAddressSpace();
8780 }
8781 
8782 Type *ConstantPoolSDNode::getType() const {
8783   if (isMachineConstantPoolEntry())
8784     return Val.MachineCPVal->getType();
8785   return Val.ConstVal->getType();
8786 }
8787 
8788 bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
8789                                         unsigned &SplatBitSize,
8790                                         bool &HasAnyUndefs,
8791                                         unsigned MinSplatBits,
8792                                         bool IsBigEndian) const {
8793   EVT VT = getValueType(0);
8794   assert(VT.isVector() && "Expected a vector type");
8795   unsigned VecWidth = VT.getSizeInBits();
8796   if (MinSplatBits > VecWidth)
8797     return false;
8798 
8799   // FIXME: The widths are based on this node's type, but build vectors can
8800   // truncate their operands.
8801   SplatValue = APInt(VecWidth, 0);
8802   SplatUndef = APInt(VecWidth, 0);
8803 
8804   // Get the bits. Bits with undefined values (when the corresponding element
8805   // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
8806   // in SplatValue. If any of the values are not constant, give up and return
8807   // false.
8808   unsigned int NumOps = getNumOperands();
8809   assert(NumOps > 0 && "isConstantSplat has 0-size build vector");
8810   unsigned EltWidth = VT.getScalarSizeInBits();
8811 
8812   for (unsigned j = 0; j < NumOps; ++j) {
8813     unsigned i = IsBigEndian ? NumOps - 1 - j : j;
8814     SDValue OpVal = getOperand(i);
8815     unsigned BitPos = j * EltWidth;
8816 
8817     if (OpVal.isUndef())
8818       SplatUndef.setBits(BitPos, BitPos + EltWidth);
8819     else if (auto *CN = dyn_cast<ConstantSDNode>(OpVal))
8820       SplatValue.insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos);
8821     else if (auto *CN = dyn_cast<ConstantFPSDNode>(OpVal))
8822       SplatValue.insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos);
8823     else
8824       return false;
8825   }
8826 
8827   // The build_vector is all constants or undefs. Find the smallest element
8828   // size that splats the vector.
8829   HasAnyUndefs = (SplatUndef != 0);
8830 
8831   // FIXME: This does not work for vectors with elements less than 8 bits.
8832   while (VecWidth > 8) {
8833     unsigned HalfSize = VecWidth / 2;
8834     APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize);
8835     APInt LowValue = SplatValue.trunc(HalfSize);
8836     APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize);
8837     APInt LowUndef = SplatUndef.trunc(HalfSize);
8838 
8839     // If the two halves do not match (ignoring undef bits), stop here.
8840     if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
8841         MinSplatBits > HalfSize)
8842       break;
8843 
8844     SplatValue = HighValue | LowValue;
8845     SplatUndef = HighUndef & LowUndef;
8846 
8847     VecWidth = HalfSize;
8848   }
8849 
8850   SplatBitSize = VecWidth;
8851   return true;
8852 }
8853 
8854 SDValue BuildVectorSDNode::getSplatValue(BitVector *UndefElements) const {
8855   if (UndefElements) {
8856     UndefElements->clear();
8857     UndefElements->resize(getNumOperands());
8858   }
8859   SDValue Splatted;
8860   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
8861     SDValue Op = getOperand(i);
8862     if (Op.isUndef()) {
8863       if (UndefElements)
8864         (*UndefElements)[i] = true;
8865     } else if (!Splatted) {
8866       Splatted = Op;
8867     } else if (Splatted != Op) {
8868       return SDValue();
8869     }
8870   }
8871 
8872   if (!Splatted) {
8873     assert(getOperand(0).isUndef() &&
8874            "Can only have a splat without a constant for all undefs.");
8875     return getOperand(0);
8876   }
8877 
8878   return Splatted;
8879 }
8880 
8881 ConstantSDNode *
8882 BuildVectorSDNode::getConstantSplatNode(BitVector *UndefElements) const {
8883   return dyn_cast_or_null<ConstantSDNode>(getSplatValue(UndefElements));
8884 }
8885 
8886 ConstantFPSDNode *
8887 BuildVectorSDNode::getConstantFPSplatNode(BitVector *UndefElements) const {
8888   return dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements));
8889 }
8890 
8891 int32_t
8892 BuildVectorSDNode::getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements,
8893                                                    uint32_t BitWidth) const {
8894   if (ConstantFPSDNode *CN =
8895           dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements))) {
8896     bool IsExact;
8897     APSInt IntVal(BitWidth);
8898     const APFloat &APF = CN->getValueAPF();
8899     if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) !=
8900             APFloat::opOK ||
8901         !IsExact)
8902       return -1;
8903 
8904     return IntVal.exactLogBase2();
8905   }
8906   return -1;
8907 }
8908 
8909 bool BuildVectorSDNode::isConstant() const {
8910   for (const SDValue &Op : op_values()) {
8911     unsigned Opc = Op.getOpcode();
8912     if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP)
8913       return false;
8914   }
8915   return true;
8916 }
8917 
8918 bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
8919   // Find the first non-undef value in the shuffle mask.
8920   unsigned i, e;
8921   for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
8922     /* search */;
8923 
8924   assert(i != e && "VECTOR_SHUFFLE node with all undef indices!");
8925 
8926   // Make sure all remaining elements are either undef or the same as the first
8927   // non-undef value.
8928   for (int Idx = Mask[i]; i != e; ++i)
8929     if (Mask[i] >= 0 && Mask[i] != Idx)
8930       return false;
8931   return true;
8932 }
8933 
8934 // Returns the SDNode if it is a constant integer BuildVector
8935 // or constant integer.
8936 SDNode *SelectionDAG::isConstantIntBuildVectorOrConstantInt(SDValue N) {
8937   if (isa<ConstantSDNode>(N))
8938     return N.getNode();
8939   if (ISD::isBuildVectorOfConstantSDNodes(N.getNode()))
8940     return N.getNode();
8941   // Treat a GlobalAddress supporting constant offset folding as a
8942   // constant integer.
8943   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N))
8944     if (GA->getOpcode() == ISD::GlobalAddress &&
8945         TLI->isOffsetFoldingLegal(GA))
8946       return GA;
8947   return nullptr;
8948 }
8949 
8950 SDNode *SelectionDAG::isConstantFPBuildVectorOrConstantFP(SDValue N) {
8951   if (isa<ConstantFPSDNode>(N))
8952     return N.getNode();
8953 
8954   if (ISD::isBuildVectorOfConstantFPSDNodes(N.getNode()))
8955     return N.getNode();
8956 
8957   return nullptr;
8958 }
8959 
8960 void SelectionDAG::createOperands(SDNode *Node, ArrayRef<SDValue> Vals) {
8961   assert(!Node->OperandList && "Node already has operands");
8962   SDUse *Ops = OperandRecycler.allocate(
8963     ArrayRecycler<SDUse>::Capacity::get(Vals.size()), OperandAllocator);
8964 
8965   bool IsDivergent = false;
8966   for (unsigned I = 0; I != Vals.size(); ++I) {
8967     Ops[I].setUser(Node);
8968     Ops[I].setInitial(Vals[I]);
8969     if (Ops[I].Val.getValueType() != MVT::Other) // Skip Chain. It does not carry divergence.
8970       IsDivergent = IsDivergent || Ops[I].getNode()->isDivergent();
8971   }
8972   Node->NumOperands = Vals.size();
8973   Node->OperandList = Ops;
8974   IsDivergent |= TLI->isSDNodeSourceOfDivergence(Node, FLI, DA);
8975   if (!TLI->isSDNodeAlwaysUniform(Node))
8976     Node->SDNodeBits.IsDivergent = IsDivergent;
8977   checkForCycles(Node);
8978 }
8979 
8980 #ifndef NDEBUG
8981 static void checkForCyclesHelper(const SDNode *N,
8982                                  SmallPtrSetImpl<const SDNode*> &Visited,
8983                                  SmallPtrSetImpl<const SDNode*> &Checked,
8984                                  const llvm::SelectionDAG *DAG) {
8985   // If this node has already been checked, don't check it again.
8986   if (Checked.count(N))
8987     return;
8988 
8989   // If a node has already been visited on this depth-first walk, reject it as
8990   // a cycle.
8991   if (!Visited.insert(N).second) {
8992     errs() << "Detected cycle in SelectionDAG\n";
8993     dbgs() << "Offending node:\n";
8994     N->dumprFull(DAG); dbgs() << "\n";
8995     abort();
8996   }
8997 
8998   for (const SDValue &Op : N->op_values())
8999     checkForCyclesHelper(Op.getNode(), Visited, Checked, DAG);
9000 
9001   Checked.insert(N);
9002   Visited.erase(N);
9003 }
9004 #endif
9005 
9006 void llvm::checkForCycles(const llvm::SDNode *N,
9007                           const llvm::SelectionDAG *DAG,
9008                           bool force) {
9009 #ifndef NDEBUG
9010   bool check = force;
9011 #ifdef EXPENSIVE_CHECKS
9012   check = true;
9013 #endif  // EXPENSIVE_CHECKS
9014   if (check) {
9015     assert(N && "Checking nonexistent SDNode");
9016     SmallPtrSet<const SDNode*, 32> visited;
9017     SmallPtrSet<const SDNode*, 32> checked;
9018     checkForCyclesHelper(N, visited, checked, DAG);
9019   }
9020 #endif  // !NDEBUG
9021 }
9022 
9023 void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) {
9024   checkForCycles(DAG->getRoot().getNode(), DAG, force);
9025 }
9026